Version Description
This update adds major improvements and bugfixes.
Download this release
Release Info
Developer | arnaudbroes |
Plugin | All in One SEO Pack |
Version | 4.1.4.4 |
Comparing to | |
See all releases |
Code changes from version 4.1.4.3 to 4.1.4.4
- all_in_one_seo_pack.php +1 -1
- app/Common/Models/Post.php +2 -1
- app/Lite/Admin/Connect.php +32 -0
- 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/headline-analyzer.css +1 -1
- dist/Lite/assets/css/headline-analyzer.css.gz +0 -0
- dist/Lite/assets/js/headline-analyzer.js +1 -1
- dist/Lite/assets/js/headline-analyzer.js.gz +0 -0
- dist/Lite/assets/js/link-format-block-old.js +1 -1
- dist/Lite/assets/js/link-format-block-old.js.gz +0 -0
- dist/Lite/assets/js/link-format-block.js +1 -1
- dist/Lite/assets/js/link-format-block.js.gz +0 -0
- dist/Lite/assets/js/link-format-classic.js +1 -1
- dist/Lite/assets/js/link-format-classic.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 +3797 -3755
- languages/aioseo-lite.pot +3483 -3267
all_in_one_seo_pack.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: SEO for WordPress. Features like XML Sitemaps, SEO for custom post types, SEO for blogs, business sites, ecommerce sites, and much more. More than 80 million downloads since 2007.
|
6 |
* Author: All in One SEO Team
|
7 |
* Author URI: https://aioseo.com/
|
8 |
-
* Version: 4.1.4.
|
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 80 million downloads since 2007.
|
6 |
* Author: All in One SEO Team
|
7 |
* Author URI: https://aioseo.com/
|
8 |
+
* Version: 4.1.4.4
|
9 |
* Text Domain: all-in-one-seo-pack
|
10 |
* Domain Path: /i18n/
|
11 |
*
|
app/Common/Models/Post.php
CHANGED
@@ -75,7 +75,8 @@ class Post extends Model {
|
|
75 |
->model( 'AIOSEO\\Plugin\\Common\\Models\\Post' );
|
76 |
|
77 |
if ( ! $post->exists() ) {
|
78 |
-
$post =
|
|
|
79 |
}
|
80 |
|
81 |
return $post;
|
75 |
->model( 'AIOSEO\\Plugin\\Common\\Models\\Post' );
|
76 |
|
77 |
if ( ! $post->exists() ) {
|
78 |
+
$post->post_id = $postId;
|
79 |
+
$post = self::setDynamicDefaults( $post, $postId );
|
80 |
}
|
81 |
|
82 |
return $post;
|
app/Lite/Admin/Connect.php
CHANGED
@@ -331,6 +331,9 @@ class Connect {
|
|
331 |
'v' => 1,
|
332 |
], defined( 'AIOSEO_UPGRADE_URL' ) ? AIOSEO_UPGRADE_URL : 'https://upgrade.aioseo.com' );
|
333 |
|
|
|
|
|
|
|
334 |
return [
|
335 |
'url' => $url,
|
336 |
];
|
@@ -410,6 +413,8 @@ class Connect {
|
|
410 |
if ( ! is_wp_error( $active ) ) {
|
411 |
aioseo()->internalOptions->internal->connect->reset();
|
412 |
|
|
|
|
|
413 |
deactivate_plugins( plugin_basename( AIOSEO_FILE ), false, $network );
|
414 |
|
415 |
wp_send_json_success( $success );
|
@@ -454,8 +459,35 @@ class Connect {
|
|
454 |
|
455 |
aioseo()->internalOptions->internal->connect->reset();
|
456 |
|
|
|
|
|
457 |
deactivate_plugins( plugin_basename( AIOSEO_FILE ), false, $network );
|
458 |
|
459 |
wp_send_json_success( $success );
|
460 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
461 |
}
|
331 |
'v' => 1,
|
332 |
], defined( 'AIOSEO_UPGRADE_URL' ) ? AIOSEO_UPGRADE_URL : 'https://upgrade.aioseo.com' );
|
333 |
|
334 |
+
// We're storing the ID of the user who is installing Pro so that we can add capabilties for him after upgrading.
|
335 |
+
aioseo()->transients->update( 'connect_active_user', get_current_user_id(), 15 * MINUTE_IN_SECONDS );
|
336 |
+
|
337 |
return [
|
338 |
'url' => $url,
|
339 |
];
|
413 |
if ( ! is_wp_error( $active ) ) {
|
414 |
aioseo()->internalOptions->internal->connect->reset();
|
415 |
|
416 |
+
$this->addCapabilitiesOnUpgrade();
|
417 |
+
|
418 |
deactivate_plugins( plugin_basename( AIOSEO_FILE ), false, $network );
|
419 |
|
420 |
wp_send_json_success( $success );
|
459 |
|
460 |
aioseo()->internalOptions->internal->connect->reset();
|
461 |
|
462 |
+
$this->addCapabilitiesOnUpgrade();
|
463 |
+
|
464 |
deactivate_plugins( plugin_basename( AIOSEO_FILE ), false, $network );
|
465 |
|
466 |
wp_send_json_success( $success );
|
467 |
}
|
468 |
+
|
469 |
+
/**
|
470 |
+
* Adds our capabilities to all roles on the next request and the installing user on the current request after upgrading to Pro.
|
471 |
+
* See #2267 and #2288 for context.
|
472 |
+
*
|
473 |
+
* @since 4.1.4.4
|
474 |
+
*
|
475 |
+
* @return void
|
476 |
+
*/
|
477 |
+
private function addCapabilitiesOnUpgrade() {
|
478 |
+
// We need to set this transient here because the regular activation hooks won't run and Pro otherwise won't clear the cache and add the required capabilities.
|
479 |
+
aioseo()->transients->update( 'pro_just_deactivated_lite', true );
|
480 |
+
|
481 |
+
// Doing the above isn't sufficient because the logged in user will be lacking the capabilities on the first request and see an error. Therefore, we add them manually just for him.
|
482 |
+
$userId = aioseo()->transients->get( 'connect_active_user' );
|
483 |
+
$user = get_userdata( $userId );
|
484 |
+
if ( is_object( $user ) ) {
|
485 |
+
$capabilities = aioseo()->access->getCapabilityList();
|
486 |
+
foreach ( $capabilities as $capability ) {
|
487 |
+
$user->add_cap( $capability );
|
488 |
+
}
|
489 |
+
}
|
490 |
+
|
491 |
+
aioseo()->transients->delete( 'connect_active_user' );
|
492 |
+
}
|
493 |
}
|
dist/Lite/assets/css/aioseo-admin-bar.css
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
-
/*! ! built on Tuesday, September
|
2 |
#wpadminbar #wp-admin-bar-aioseo-main .aioseo-logo.svg{float:left;width:26px;height:30px;background-repeat:no-repeat;background-position:0 6px;background-size:20px;background-image:url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjAgMjAiIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgZmlsbD0iI2ZmZiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBjbGFzcz0iYWlvc2VvLWdlYXIiPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOS45ODU0MiAxOS45NzA4QzE1LjUwMDIgMTkuOTcwOCAxOS45NzA4IDE1LjUwMDIgMTkuOTcwOCA5Ljk4NTQyQzE5Ljk3MDggNC40NzA2MyAxNS41MDAyIDAgOS45ODU0MiAwQzQuNDcwNjMgMCAwIDQuNDcwNjMgMCA5Ljk4NTQyQzAgMTUuNTAwMiA0LjQ3MDYzIDE5Ljk3MDggOS45ODU0MiAxOS45NzA4Wk04LjM5NTQxIDMuNjU0NjRDOC4yNjAxNiAzLjQ0ODUgOC4wMDk2IDMuMzUyMTEgNy43Nzk4NSAzLjQzMzI3QzcuNTE4MTYgMy41MjU3MiA3LjI2MjE4IDMuNjM0NDUgNy4wMTM0OSAzLjc1ODhDNi43OTUxOSAzLjg2Nzk2IDYuNjg1NjYgNC4xMTczMSA2LjczMzcyIDQuMzYwNDlMNi45MDQ5MyA1LjIyNjk0QzYuOTQ5IDUuNDQ5OTYgNi44NTggNS42NzYzIDYuNjg1MjIgNS44MjAwOUM2LjQxMjE2IDYuMDQ3MzQgNi4xNjAwNyA2LjMwNDI2IDUuOTM0MjEgNi41ODg2NEM1Ljc5MzgzIDYuNzY1MzkgNS41NzIzMyA2Ljg1OTA3IDUuMzUzNjEgNi44MTQ4OUw0LjUwNDI0IDYuNjQzM0M0LjI2NTY0IDYuNTk1MSA0LjAyMTU3IDYuNzA3ODggMy45MTU0NCA2LjkzMTIxQzMuODU1NDkgNy4wNTczOCAzLjc5ODg5IDcuMTg2MiAzLjc0NTgzIDcuMzE3NThDMy42OTI3NiA3LjQ0ODk2IDMuNjQzOTcgNy41ODEwNSAzLjU5OTM4IDcuNzEzNjlDMy41MjA0OCA3Ljk0ODQ3IDMuNjE1NzkgOC4yMDM5OCAzLjgxODM5IDguMzQxMzNMNC41Mzk1OCA4LjgzMDI3QzQuNzI1MjkgOC45NTYxNyA0LjgxNzc4IDkuMTgxOSA0Ljc5NTM0IDkuNDA4MjZDNC43NTkyNSA5Ljc3MjQ0IDQuNzYwNzIgMTAuMTM2IDQuNzk3NTYgMTAuNDkzNkM0LjgyMDg3IDEwLjcxOTggNC43MjkxNSAxMC45NDU5IDQuNTQzODggMTEuMDcyNEwzLjgyNDA4IDExLjU2NDJDMy42MjIwNSAxMS43MDIyIDMuNTI3NTkgMTEuOTU3OSAzLjYwNzEzIDEyLjE5MjNDMy42OTc3NCAxMi40NTkzIDMuODA0MyAxMi43MjA1IDMuOTI2MTUgMTIuOTc0M0M0LjAzMzEzIDEzLjE5NzEgNC4yNzc0OSAxMy4zMDg4IDQuNTE1ODEgMTMuMjU5OEw1LjM2NDk1IDEzLjA4NTFDNS41ODM1IDEzLjA0MDEgNS44MDUzMyAxMy4xMzMgNS45NDYyMyAxMy4zMDkzQzYuMTY4OTMgMTMuNTg3OSA2LjQyMDcxIDEzLjg0NTEgNi42OTk0IDE0LjA3NTZDNi44NzI2MSAxNC4yMTg4IDYuOTY0NDIgMTQuNDQ0OCA2LjkyMTEyIDE0LjY2OEw2Ljc1Mjk2IDE1LjUzNDhDNi43MDU3MiAxNS43NzgyIDYuODE2MjUgMTYuMDI3MyA3LjAzNTExIDE2LjEzNTZDNy4xNTg3NiAxNi4xOTY3IDcuMjg1IDE2LjI1NDUgNy40MTM3NSAxNi4zMDg2QzcuNTQyNTEgMTYuMzYyOCA3LjY3MTk2IDE2LjQxMjYgNy44MDE5NSAxNi40NTgxQzguMTgyMjQgMTYuNTkxMiA4LjcxNDQ5IDE2LjExNDcgOS4xMDggMTUuNzYyNUM5LjMwMjA1IDE1LjU4ODggOS40MjE3NCAxNS4zNDMgOS40MjMwMSAxNS4wNzk4QzkuNDIzMDEgMTUuMDc4NCA5LjQyMzAyIDE1LjA3NyA5LjQyMzAyIDE1LjA3NTZMOS40MjMwMSAxMy42MjYzQzkuNDIzMDEgMTMuNjEwOSA5LjQyMzYgMTMuNTk1NyA5LjQyNDc2IDEzLjU4MDZDOC4yNjI0OCAxMy4yOTcxIDcuMzk4MzggMTIuMjMwMSA3LjM5ODM4IDEwLjk1NzJWOS40MTgyM0M3LjM5ODM4IDkuMzAxMjUgNy40OTEzMSA5LjIwNjQyIDcuNjA1OTYgOS4yMDY0Mkg4LjMyNTg0VjcuNjkyMkM4LjMyNTg0IDcuNDgzMTIgOC40OTE5MyA3LjMxMzY0IDguNjk2ODMgNy4zMTM2NEM4LjkwMTcxIDcuMzEzNjQgOS4wNjc4MSA3LjQ4MzEyIDkuMDY3ODEgNy42OTIyVjkuMjA2NDJIMTEuMDE1NVY3LjY5MjJDMTEuMDE1NSA3LjQ4MzEyIDExLjE4MTYgNy4zMTM2NCAxMS4zODY1IDcuMzEzNjRDMTEuNTkxNCA3LjMxMzY0IDExLjc1NzUgNy40ODMxMiAxMS43NTc1IDcuNjkyMlY5LjIwNjQySDEyLjQ3NzNDMTIuNTkyIDkuMjA2NDIgMTIuNjg0OSA5LjMwMTI1IDEyLjY4NDkgOS40MTgyM1YxMC45NTcyQzEyLjY4NDkgMTIuMjcwNCAxMS43NjUzIDEzLjM2NDMgMTAuNTQ3NCAxMy42MDUxQzEwLjU0NzcgMTMuNjEyMSAxMC41NDc4IDEzLjYxOTIgMTAuNTQ3OCAxMy42MjYzTDEwLjU0NzggMTUuMDY5NEMxMC41NDc4IDE1LjMzNzcgMTAuNjcxMSAxNS41ODc5IDEwLjg3MSAxNS43NjIyQzExLjI3MTUgMTYuMTExNSAxMS44MTI5IDE2LjU4MzcgMTIuMTkxIDE2LjQ1MDJDMTIuNDUyNyAxNi4zNTc3IDEyLjcwODYgMTYuMjQ5IDEyLjk1NzMgMTYuMTI0NkMxMy4xNzU2IDE2LjAxNTUgMTMuMjg1MiAxNS43NjYxIDEzLjIzNzEgMTUuNTIyOUwxMy4wNjU5IDE0LjY1NjVDMTMuMDIxOCAxNC40MzM0IDEzLjExMjggMTQuMjA3MSAxMy4yODU2IDE0LjA2MzNDMTMuNTU4NyAxMy44MzYxIDEzLjgxMDcgMTMuNTc5MiAxNC4wMzY2IDEzLjI5NDhDMTQuMTc3IDEzLjExOCAxNC4zOTg1IDEzLjAyNDQgMTQuNjE3MiAxMy4wNjg1TDE1LjQ2NjYgMTMuMjQwMUMxNS43MDUyIDEzLjI4ODMgMTUuOTQ5MyAxMy4xNzU2IDE2LjA1NTQgMTIuOTUyMkMxNi4xMTUzIDEyLjgyNjEgMTYuMTcxOSAxMi42OTcyIDE2LjIyNSAxMi41NjU5QzE2LjI3ODEgMTIuNDM0NSAxNi4zMjY5IDEyLjMwMjQgMTYuMzcxNCAxMi4xNjk4QzE2LjQ1MDMgMTEuOTM1IDE2LjM1NSAxMS42Nzk1IDE2LjE1MjQgMTEuNTQyMUwxNS40MzEyIDExLjA1MzJDMTUuMjQ1NSAxMC45MjczIDE1LjE1MyAxMC43MDE1IDE1LjE3NTUgMTAuNDc1MkMxNS4yMTE2IDEwLjExMSAxNS4yMTAxIDkuNzQ3NDQgMTUuMTczMyA5LjM4OTg2QzE1LjE0OTkgOS4xNjM2MSAxNS4yNDE3IDguOTM3NTcgMTUuNDI2OSA4LjgxMUwxNi4xNDY3IDguMzE5MjdDMTYuMzQ4OCA4LjE4MTI2IDE2LjQ0MzIgNy45MjU1OCAxNi4zNjM3IDcuNjkxMTVDMTYuMjczMSA3LjQyNDExIDE2LjE2NjUgNy4xNjI5MiAxNi4wNDQ3IDYuOTA5MTVDMTUuOTM3NyA2LjY4NjM4IDE1LjY5MzMgNi41NzQ2MiAxNS40NTUgNi42MjM2NkwxNC42MDU5IDYuNzk4MzdDMTQuMzg3MyA2Ljg0MzM0IDE0LjE2NTUgNi43NTA0OCAxNC4wMjQ2IDYuNTc0MThDMTMuODAxOSA2LjI5NTU0IDEzLjU1MDEgNi4wMzgzMiAxMy4yNzE0IDUuODA3ODRDMTMuMDk4MiA1LjY2NDYgMTMuMDA2NCA1LjQzODU4IDEzLjA0OTcgNS4yMTU0TDEzLjIxNzkgNC4zNDg2OEMxMy4yNjUxIDQuMTA1MjEgMTMuMTU0NiAzLjg1NjE2IDEyLjkzNTcgMy43NDc4N0MxMi44MTIxIDMuNjg2NjkgMTIuNjg1OCAzLjYyODk1IDEyLjU1NzEgMy41NzQ4QzEyLjQyODMgMy41MjA2NSAxMi4yOTg5IDMuNDcwODYgMTIuMTY4OSAzLjQyNTM3QzExLjkzODggMy4zNDQ4NSAxMS42ODg0IDMuNDQyMTEgMTEuNTUzOCAzLjY0ODg0TDExLjA3NDYgNC4zODQ3NUMxMC45NTEzIDQuNTc0MjUgMTAuNzMgNC42Njg2MiAxMC41MDgyIDQuNjQ1NzNDMTAuMTUxMyA0LjYwODkgOS43OTUwMiA0LjYxMDM5IDkuNDQ0NTkgNC42NDc5OUM5LjIyMjg2IDQuNjcxNzcgOS4wMDEzNCA0LjU3ODE4IDguODc3MzEgNC4zODkxM0w4LjM5NTQxIDMuNjU0NjRaIiBmaWxsPSIjZmZmIiAvPjwvc3ZnPg==") !important}#wpadminbar #wp-admin-bar-aioseo-main.new-notifications>.ab-item{background:#2c3338;color:#72aee6}#wpadminbar #wp-admin-bar-aioseo-pro-upgrade a{background-color:#1DA867;padding-bottom:5px}#wpadminbar #wp-admin-bar-aioseo-pro-upgrade a span{font-weight:600}#wpadminbar #wp-admin-bar-aioseo-pro-license a{background-color:#DF2A4A;padding-bottom:5px}#wpadminbar #wp-admin-bar-aioseo-pro-license a span{font-weight:600}#wpadminbar .aioseo-menu-notification-counter{display:inline-flex;vertical-align:top;box-sizing:border-box;margin:7px 0 0 5px;padding:0;min-width:18px;height:18px;border-radius:9px;background-color:#ca4a1f;color:#fff;font-size:11px;line-height:1.6;text-align:center;justify-content:center}#wpadminbar .aioseo-menu-notification-counter span{line-height:1;font-size:11px}#wpadminbar .aioseo-menu-notification-indicator{float:right;margin:10px 0 0;width:8px;height:8px;border-radius:50%;background-color:#ca4a1f;line-height:1.6;animation:aioseo-menu-notification-indicator-pulse 1.5s infinite}#toplevel_page_aioseo .aioseo-menu-notification-indicator{float:right;margin:6px 0 0;width:8px;height:8px;border-radius:50%;background-color:#ca4a1f;line-height:1.6;animation:aioseo-menu-notification-indicator-pulse 1.5s infinite}@keyframes aioseo-menu-notification-indicator-pulse{0%{box-shadow:0 0 0 0px rgba(202,74,31,0.5)}100%{box-shadow:0 0 0 10px rgba(202,74,31,0)}}@media screen and (max-width: 782px){#wpadminbar #wp-admin-bar-aioseo-main{display:block;position:static}#wpadminbar #wp-admin-bar-aioseo-main .ab-item .text{display:none}#wpadminbar #wp-admin-bar-aioseo-main .aioseo-logo.svg{width:52px;height:46px;background-position:50% 8px;background-size:30px}}
|
3 |
|
1 |
+
/*! ! built on Tuesday, September 21st 2021, 9:50:25 pm */
|
2 |
#wpadminbar #wp-admin-bar-aioseo-main .aioseo-logo.svg{float:left;width:26px;height:30px;background-repeat:no-repeat;background-position:0 6px;background-size:20px;background-image:url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjAgMjAiIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgZmlsbD0iI2ZmZiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBjbGFzcz0iYWlvc2VvLWdlYXIiPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOS45ODU0MiAxOS45NzA4QzE1LjUwMDIgMTkuOTcwOCAxOS45NzA4IDE1LjUwMDIgMTkuOTcwOCA5Ljk4NTQyQzE5Ljk3MDggNC40NzA2MyAxNS41MDAyIDAgOS45ODU0MiAwQzQuNDcwNjMgMCAwIDQuNDcwNjMgMCA5Ljk4NTQyQzAgMTUuNTAwMiA0LjQ3MDYzIDE5Ljk3MDggOS45ODU0MiAxOS45NzA4Wk04LjM5NTQxIDMuNjU0NjRDOC4yNjAxNiAzLjQ0ODUgOC4wMDk2IDMuMzUyMTEgNy43Nzk4NSAzLjQzMzI3QzcuNTE4MTYgMy41MjU3MiA3LjI2MjE4IDMuNjM0NDUgNy4wMTM0OSAzLjc1ODhDNi43OTUxOSAzLjg2Nzk2IDYuNjg1NjYgNC4xMTczMSA2LjczMzcyIDQuMzYwNDlMNi45MDQ5MyA1LjIyNjk0QzYuOTQ5IDUuNDQ5OTYgNi44NTggNS42NzYzIDYuNjg1MjIgNS44MjAwOUM2LjQxMjE2IDYuMDQ3MzQgNi4xNjAwNyA2LjMwNDI2IDUuOTM0MjEgNi41ODg2NEM1Ljc5MzgzIDYuNzY1MzkgNS41NzIzMyA2Ljg1OTA3IDUuMzUzNjEgNi44MTQ4OUw0LjUwNDI0IDYuNjQzM0M0LjI2NTY0IDYuNTk1MSA0LjAyMTU3IDYuNzA3ODggMy45MTU0NCA2LjkzMTIxQzMuODU1NDkgNy4wNTczOCAzLjc5ODg5IDcuMTg2MiAzLjc0NTgzIDcuMzE3NThDMy42OTI3NiA3LjQ0ODk2IDMuNjQzOTcgNy41ODEwNSAzLjU5OTM4IDcuNzEzNjlDMy41MjA0OCA3Ljk0ODQ3IDMuNjE1NzkgOC4yMDM5OCAzLjgxODM5IDguMzQxMzNMNC41Mzk1OCA4LjgzMDI3QzQuNzI1MjkgOC45NTYxNyA0LjgxNzc4IDkuMTgxOSA0Ljc5NTM0IDkuNDA4MjZDNC43NTkyNSA5Ljc3MjQ0IDQuNzYwNzIgMTAuMTM2IDQuNzk3NTYgMTAuNDkzNkM0LjgyMDg3IDEwLjcxOTggNC43MjkxNSAxMC45NDU5IDQuNTQzODggMTEuMDcyNEwzLjgyNDA4IDExLjU2NDJDMy42MjIwNSAxMS43MDIyIDMuNTI3NTkgMTEuOTU3OSAzLjYwNzEzIDEyLjE5MjNDMy42OTc3NCAxMi40NTkzIDMuODA0MyAxMi43MjA1IDMuOTI2MTUgMTIuOTc0M0M0LjAzMzEzIDEzLjE5NzEgNC4yNzc0OSAxMy4zMDg4IDQuNTE1ODEgMTMuMjU5OEw1LjM2NDk1IDEzLjA4NTFDNS41ODM1IDEzLjA0MDEgNS44MDUzMyAxMy4xMzMgNS45NDYyMyAxMy4zMDkzQzYuMTY4OTMgMTMuNTg3OSA2LjQyMDcxIDEzLjg0NTEgNi42OTk0IDE0LjA3NTZDNi44NzI2MSAxNC4yMTg4IDYuOTY0NDIgMTQuNDQ0OCA2LjkyMTEyIDE0LjY2OEw2Ljc1Mjk2IDE1LjUzNDhDNi43MDU3MiAxNS43NzgyIDYuODE2MjUgMTYuMDI3MyA3LjAzNTExIDE2LjEzNTZDNy4xNTg3NiAxNi4xOTY3IDcuMjg1IDE2LjI1NDUgNy40MTM3NSAxNi4zMDg2QzcuNTQyNTEgMTYuMzYyOCA3LjY3MTk2IDE2LjQxMjYgNy44MDE5NSAxNi40NTgxQzguMTgyMjQgMTYuNTkxMiA4LjcxNDQ5IDE2LjExNDcgOS4xMDggMTUuNzYyNUM5LjMwMjA1IDE1LjU4ODggOS40MjE3NCAxNS4zNDMgOS40MjMwMSAxNS4wNzk4QzkuNDIzMDEgMTUuMDc4NCA5LjQyMzAyIDE1LjA3NyA5LjQyMzAyIDE1LjA3NTZMOS40MjMwMSAxMy42MjYzQzkuNDIzMDEgMTMuNjEwOSA5LjQyMzYgMTMuNTk1NyA5LjQyNDc2IDEzLjU4MDZDOC4yNjI0OCAxMy4yOTcxIDcuMzk4MzggMTIuMjMwMSA3LjM5ODM4IDEwLjk1NzJWOS40MTgyM0M3LjM5ODM4IDkuMzAxMjUgNy40OTEzMSA5LjIwNjQyIDcuNjA1OTYgOS4yMDY0Mkg4LjMyNTg0VjcuNjkyMkM4LjMyNTg0IDcuNDgzMTIgOC40OTE5MyA3LjMxMzY0IDguNjk2ODMgNy4zMTM2NEM4LjkwMTcxIDcuMzEzNjQgOS4wNjc4MSA3LjQ4MzEyIDkuMDY3ODEgNy42OTIyVjkuMjA2NDJIMTEuMDE1NVY3LjY5MjJDMTEuMDE1NSA3LjQ4MzEyIDExLjE4MTYgNy4zMTM2NCAxMS4zODY1IDcuMzEzNjRDMTEuNTkxNCA3LjMxMzY0IDExLjc1NzUgNy40ODMxMiAxMS43NTc1IDcuNjkyMlY5LjIwNjQySDEyLjQ3NzNDMTIuNTkyIDkuMjA2NDIgMTIuNjg0OSA5LjMwMTI1IDEyLjY4NDkgOS40MTgyM1YxMC45NTcyQzEyLjY4NDkgMTIuMjcwNCAxMS43NjUzIDEzLjM2NDMgMTAuNTQ3NCAxMy42MDUxQzEwLjU0NzcgMTMuNjEyMSAxMC41NDc4IDEzLjYxOTIgMTAuNTQ3OCAxMy42MjYzTDEwLjU0NzggMTUuMDY5NEMxMC41NDc4IDE1LjMzNzcgMTAuNjcxMSAxNS41ODc5IDEwLjg3MSAxNS43NjIyQzExLjI3MTUgMTYuMTExNSAxMS44MTI5IDE2LjU4MzcgMTIuMTkxIDE2LjQ1MDJDMTIuNDUyNyAxNi4zNTc3IDEyLjcwODYgMTYuMjQ5IDEyLjk1NzMgMTYuMTI0NkMxMy4xNzU2IDE2LjAxNTUgMTMuMjg1MiAxNS43NjYxIDEzLjIzNzEgMTUuNTIyOUwxMy4wNjU5IDE0LjY1NjVDMTMuMDIxOCAxNC40MzM0IDEzLjExMjggMTQuMjA3MSAxMy4yODU2IDE0LjA2MzNDMTMuNTU4NyAxMy44MzYxIDEzLjgxMDcgMTMuNTc5MiAxNC4wMzY2IDEzLjI5NDhDMTQuMTc3IDEzLjExOCAxNC4zOTg1IDEzLjAyNDQgMTQuNjE3MiAxMy4wNjg1TDE1LjQ2NjYgMTMuMjQwMUMxNS43MDUyIDEzLjI4ODMgMTUuOTQ5MyAxMy4xNzU2IDE2LjA1NTQgMTIuOTUyMkMxNi4xMTUzIDEyLjgyNjEgMTYuMTcxOSAxMi42OTcyIDE2LjIyNSAxMi41NjU5QzE2LjI3ODEgMTIuNDM0NSAxNi4zMjY5IDEyLjMwMjQgMTYuMzcxNCAxMi4xNjk4QzE2LjQ1MDMgMTEuOTM1IDE2LjM1NSAxMS42Nzk1IDE2LjE1MjQgMTEuNTQyMUwxNS40MzEyIDExLjA1MzJDMTUuMjQ1NSAxMC45MjczIDE1LjE1MyAxMC43MDE1IDE1LjE3NTUgMTAuNDc1MkMxNS4yMTE2IDEwLjExMSAxNS4yMTAxIDkuNzQ3NDQgMTUuMTczMyA5LjM4OTg2QzE1LjE0OTkgOS4xNjM2MSAxNS4yNDE3IDguOTM3NTcgMTUuNDI2OSA4LjgxMUwxNi4xNDY3IDguMzE5MjdDMTYuMzQ4OCA4LjE4MTI2IDE2LjQ0MzIgNy45MjU1OCAxNi4zNjM3IDcuNjkxMTVDMTYuMjczMSA3LjQyNDExIDE2LjE2NjUgNy4xNjI5MiAxNi4wNDQ3IDYuOTA5MTVDMTUuOTM3NyA2LjY4NjM4IDE1LjY5MzMgNi41NzQ2MiAxNS40NTUgNi42MjM2NkwxNC42MDU5IDYuNzk4MzdDMTQuMzg3MyA2Ljg0MzM0IDE0LjE2NTUgNi43NTA0OCAxNC4wMjQ2IDYuNTc0MThDMTMuODAxOSA2LjI5NTU0IDEzLjU1MDEgNi4wMzgzMiAxMy4yNzE0IDUuODA3ODRDMTMuMDk4MiA1LjY2NDYgMTMuMDA2NCA1LjQzODU4IDEzLjA0OTcgNS4yMTU0TDEzLjIxNzkgNC4zNDg2OEMxMy4yNjUxIDQuMTA1MjEgMTMuMTU0NiAzLjg1NjE2IDEyLjkzNTcgMy43NDc4N0MxMi44MTIxIDMuNjg2NjkgMTIuNjg1OCAzLjYyODk1IDEyLjU1NzEgMy41NzQ4QzEyLjQyODMgMy41MjA2NSAxMi4yOTg5IDMuNDcwODYgMTIuMTY4OSAzLjQyNTM3QzExLjkzODggMy4zNDQ4NSAxMS42ODg0IDMuNDQyMTEgMTEuNTUzOCAzLjY0ODg0TDExLjA3NDYgNC4zODQ3NUMxMC45NTEzIDQuNTc0MjUgMTAuNzMgNC42Njg2MiAxMC41MDgyIDQuNjQ1NzNDMTAuMTUxMyA0LjYwODkgOS43OTUwMiA0LjYxMDM5IDkuNDQ0NTkgNC42NDc5OUM5LjIyMjg2IDQuNjcxNzcgOS4wMDEzNCA0LjU3ODE4IDguODc3MzEgNC4zODkxM0w4LjM5NTQxIDMuNjU0NjRaIiBmaWxsPSIjZmZmIiAvPjwvc3ZnPg==") !important}#wpadminbar #wp-admin-bar-aioseo-main.new-notifications>.ab-item{background:#2c3338;color:#72aee6}#wpadminbar #wp-admin-bar-aioseo-pro-upgrade a{background-color:#1DA867;padding-bottom:5px}#wpadminbar #wp-admin-bar-aioseo-pro-upgrade a span{font-weight:600}#wpadminbar #wp-admin-bar-aioseo-pro-license a{background-color:#DF2A4A;padding-bottom:5px}#wpadminbar #wp-admin-bar-aioseo-pro-license a span{font-weight:600}#wpadminbar .aioseo-menu-notification-counter{display:inline-flex;vertical-align:top;box-sizing:border-box;margin:7px 0 0 5px;padding:0;min-width:18px;height:18px;border-radius:9px;background-color:#ca4a1f;color:#fff;font-size:11px;line-height:1.6;text-align:center;justify-content:center}#wpadminbar .aioseo-menu-notification-counter span{line-height:1;font-size:11px}#wpadminbar .aioseo-menu-notification-indicator{float:right;margin:10px 0 0;width:8px;height:8px;border-radius:50%;background-color:#ca4a1f;line-height:1.6;animation:aioseo-menu-notification-indicator-pulse 1.5s infinite}#toplevel_page_aioseo .aioseo-menu-notification-indicator{float:right;margin:6px 0 0;width:8px;height:8px;border-radius:50%;background-color:#ca4a1f;line-height:1.6;animation:aioseo-menu-notification-indicator-pulse 1.5s infinite}@keyframes aioseo-menu-notification-indicator-pulse{0%{box-shadow:0 0 0 0px rgba(202,74,31,0.5)}100%{box-shadow:0 0 0 10px rgba(202,74,31,0)}}@media screen and (max-width: 782px){#wpadminbar #wp-admin-bar-aioseo-main{display:block;position:static}#wpadminbar #wp-admin-bar-aioseo-main .ab-item .text{display:none}#wpadminbar #wp-admin-bar-aioseo-main .aioseo-logo.svg{width:52px;height:46px;background-position:50% 8px;background-size:30px}}
|
3 |
|
dist/Lite/assets/css/aioseo-admin-bar.css.gz
CHANGED
Binary file
|
dist/Lite/assets/css/headline-analyzer.css
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
-
/*! ! built on Tuesday, September
|
2 |
.aioseo-inline-buttons{display:grid;grid-template-columns:repeat(2, 1fr)}.aioseo-switcher-button{border:0;border-radius:0;font-size:14px;font-weight:normal;color:#434960;padding:16px 10px;box-shadow:0px 2px 0px #e8e8eb;cursor:pointer;text-align:left;white-space:nowrap;position:relative;transition:0.4s cubic-bezier(0.4, 0, 0.2, 1);background:#fafafa}.aioseo-switcher-button:before{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;opacity:0;transition:0.4s cubic-bezier(0.4, 0, 0.2, 1);will-change:background-color,opacity;content:" "}.aioseo-switcher-button.active:before,.aioseo-switcher-button:hover:before,.aioseo-switcher-button:active:before{background-color:currentColor;opacity:.12}.aioseo-switcher-button.active{font-weight:700;color:#141B38;box-shadow:0px 2px 0px #005AE0}.aioseo-headline-analyzer-wrapper{position:relative}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-pie-chart-container{position:relative;width:200px;height:200px;margin:0 auto;margin-bottom:18px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-pie-chart-container .aioseo-headline-analyzer-total-out-of-score{font-size:18px;color:#8c8f9a;font-weight:600;z-index:0}.aioseo-headline-analyzer-wrapper .components-panel__body.is-opened svg.components-panel__arrow{transform:rotate(0deg)}.aioseo-headline-analyzer-wrapper .components-panel__body svg.components-panel__arrow{transform:rotate(-90deg);top:50%;margin-top:-12px;transition:.3s}.aioseo-headline-analyzer-wrapper p{font-size:13px;color:#434960;margin-bottom:16px}.aioseo-headline-analyzer-wrapper p>strong{font-size:13px;font-weight:700}.aioseo-headline-analyzer-wrapper .green{color:#00aa63}.aioseo-headline-analyzer-wrapper .orange{color:#f18200}.aioseo-headline-analyzer-wrapper .red{color:#df2a4a}.aioseo-headline-analyzer-wrapper .green-bg{background:#00aa63}.aioseo-headline-analyzer-wrapper .orange-bg{background:#f18200}.aioseo-headline-analyzer-wrapper .red-bg{background:#df2a4a}.aioseo-headline-analyzer-wrapper .components-panel__body-toggle.components-button{font-weight:700;color:#141B38;padding:18px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-empty-title-warning{text-align:center;padding:0 20px;margin:20px 0;font-size:13px;color:#141B38}.aioseo-headline-analyzer-wrapper .components-panel__body.is-opened>.components-panel__body-title{margin:0}.aioseo-headline-analyzer-wrapper .components-panel__body.is-opened{padding:0}.aioseo-headline-analyzer-wrapper .components-panel__body.is-opened .aioseo-headline-analyzer-words-block,.aioseo-headline-analyzer-wrapper .components-panel__body.is-opened .aioseo-headline-analyzer-panel-first-block{padding:0 16px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-score.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-sentiment.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-previous-scores.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-character-count.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-tab-new-score.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-tab-new-score-form.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-word-count.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-beginning-ending-words.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-tab-new-score.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-search-preview.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-types.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-word-balance.is-opened .components-panel__body-title{border-bottom:1px solid #e8e8eb;margin-bottom:16px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-current-score,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-score-status{position:absolute;top:45%;left:0;right:0;text-align:center;font-size:50px;line-height:0%;z-index:0;font-weight:700}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-current-score p,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-score-status p{margin-bottom:0}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel{top:calc(58% + 16px)}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-score-status{top:65%;font-size:16px;z-index:0}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-current-score-tab p{text-align:center}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-current-score-tab .aioseo-headline-analyzer-current-title{text-align:center;font-size:16px;color:#141B38;margin:0 0 24px 0;line-height:1.4}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel h4{text-align:center;font-size:16px;color:#141B38;margin:0 0 28px 0;line-height:1.4}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel .aioseo-headline-analyzer-pie-chart-container{position:relative;width:200px;height:200px;margin:0 auto;margin-bottom:18px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel .aioseo-headline-analyzer-pie-chart-container .aioseo-headline-analyzer-new-score{position:absolute;top:calc(38% + 16px);left:0;right:0;text-align:center;font-size:50px;font-weight:700;line-height:0%;z-index:10}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel .aioseo-headline-analyzer-pie-chart-container .aioseo-headline-analyzer-new-score p{margin-bottom:0}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel .current-score{border-top:1px solid #E8E8EB;padding-top:24px;display:flex;align-items:center;flex-direction:row}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel .current-score .aioseo-headline-analyzer-score{min-height:40px;min-width:40px;font-weight:700;color:#ffffff;margin-right:16px;text-align:center;line-height:40px;border-radius:50%;font-size:18px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel .current-score h5{font-weight:400;color:#8C8F9A;margin-top:0;margin-bottom:8px;font-size:13px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel .current-score p{margin-top:8px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-tab{margin-bottom:6px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-form-block{padding:6px 12px 22px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-input-field{margin-bottom:10px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-input-field .components-base-control__label{display:block;max-width:100%;font-size:13px;margin:0 0 10px;color:#434960}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-input-field input{padding:11px 12px;font-size:13px;border:1px solid #D0D1D7;color:#393f4c;border-radius:3px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-button{font-size:14px;border-radius:4px;padding:0;height:40px;background:#005AE0;width:100%;justify-content:center;color:#ffffff;font-weight:600;border:1px solid transparent;transition:background-color .2s ease;opacity:1}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-button:disabled{border:1px solid #dcdde1;background-color:#f3f4f5;color:#8c8f9a;cursor:default}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-button:disabled:hover{color:#8c8f9a}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-button:hover,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-button:focus,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-button:visited{color:#ffffff;box-shadow:none}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-score-difference{font-weight:700;position:absolute;left:0;top:16%;right:0;text-align:center;width:42px;height:26px;margin:0 auto;font-size:16px;line-height:26px;border-radius:4px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-score-difference.red{background:#fbe9ec}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-score-difference.orange{background:#FCFAE8}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-score-difference.green{background:#CBEAE1}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-previous-scores{margin:0 !important}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-previous-scores li{margin-bottom:16px;cursor:pointer;display:flex;flex-direction:row;align-items:center;color:#434960;font-size:13px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-previous-scores li span.aioseo-headline-analyzer-score{min-height:24px;min-width:24px;margin-right:8px;font-size:11px;text-align:center;line-height:24px;border-radius:50%;color:#ffffff;font-weight:700}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-previous-scores li span.aioseo-headline-analyzer-score-text{flex-basis:calc(100% - 32px)}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-has-icon .components-panel__body-toggle .components-panel__icon{position:absolute;right:52px;top:50%;margin-top:-10px}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-has-icon.red .components-panel__body-toggle .components-panel__icon path{fill:#df2a4a}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-has-icon.orange .components-panel__body-toggle .components-panel__icon path{fill:#f18200}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-has-icon.green .components-panel__body-toggle .components-panel__icon path{fill:#00aa63}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-has-icon-alternative{position:relative}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-has-icon-alternative .aioseo-headline-analyzer-panel-icon-alternative{position:absolute;top:14px;right:40px;font-weight:700}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-word-balance .components-panel__row,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-sentiment .components-panel__row,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-types .components-panel__row,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-character-count .components-panel__row,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-word-count .components-panel__row,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-beginning-ending-words .components-panel__row,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row{display:block}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-word-balance .components-panel__row h4,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-sentiment .components-panel__row h4,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-types .components-panel__row h4,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-character-count .components-panel__row h4,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-word-count .components-panel__row h4,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-beginning-ending-words .components-panel__row h4,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row h4{font-size:16px;color:#141B38;font-weight:700;margin:0 0 16px 0}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block{margin-top:16px;border-bottom:1px solid #e8e8eb}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block h5{font-size:13px;color:#434960;margin-top:0;margin-bottom:16px;font-weight:700}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-block-data{overflow:hidden;display:flex;flex-direction:row}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-block-data span{display:block;float:left;flex-basis:70%;z-index:0}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-block-data span.aioseo-headline-analyzer-words-block-percentage{font-size:28px;font-weight:700;flex-basis:25%;justify-content:flex-start;align-items:center;display:flex;margin-right:11px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-block-data span.aioseo-headline-analyzer-words-block-goal{width:100%;font-size:13px;font-weight:400;color:#8C8F9A}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-block-data span.aioseo-headline-analyzer-words-block-progressbar{width:100%;position:relative;height:4px;margin-top:4px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-block-data span.aioseo-headline-analyzer-words-block-progressbar .aioseo-headline-analyzer-progressbar-bg{width:100%;background:#EEF0F2;height:4px;z-index:9;position:absolute;top:0;left:0;border-radius:30px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-block-data span.aioseo-headline-analyzer-words-block-progressbar .aioseo-headline-analyzer-progressbar-part{position:absolute;height:4px;top:0;left:0;z-index:10;border-radius:30px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-tag-list{margin:0;padding:0;list-style:none;display:block;margin-top:16px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-tag-list li{display:inline-block;font-size:13px;font-weight:700;color:#434960;background:#F3F4F5;border-radius:3px;padding:4px 9px;margin-right:8px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-guideline{margin-top:8px;color:#4f4f4f}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-character-length>span,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-word-length>span{width:36px;height:48px;display:inline-block;background:#e8e8eb;text-align:center;line-height:48px;font-size:28px;color:#2c324c;font-weight:700;margin-right:4px;border-radius:4px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-character-length>span.character-zero,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-word-length>span.character-zero{color:#D0D1D7}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-status-on-character-length,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-status-on-word-length{display:block;font-weight:700;font-size:16px;color:#141b38;margin-bottom:16px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-character-count-container,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-word-counter{margin-bottom:16px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-character-count p{text-align:left}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-character-count .aioseo-headline-analyzer-pie-chart-container{position:relative;width:200px;height:80px;margin:0 auto;margin-bottom:18px;margin-left:-40px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-character-count .aioseo-headline-analyzer-pie-chart-container .aioseo-headline-analyzer-character-length{position:absolute;top:50%;left:0;right:0;text-align:center;font-size:30px;line-height:0%;z-index:10}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-character-count .aioseo-headline-analyzer-pie-chart-container .aioseo-headline-analyzer-status-on-character-length{position:absolute;left:144px;top:50%;font-size:16px;color:#141B38;margin:-9px 0 0 0;font-weight:700;width:130px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-word-count p{text-align:left}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-word-count .aioseo-headline-analyzer-pie-chart-container{position:relative;width:200px;height:80px;margin:0 auto;margin-bottom:18px;margin-left:-40px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-word-count .aioseo-headline-analyzer-pie-chart-container .aioseo-headline-analyzer-word-length{position:absolute;top:50%;left:0;right:0;text-align:center;font-size:30px;line-height:0%;z-index:10}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-word-count .aioseo-headline-analyzer-pie-chart-container .aioseo-headline-analyzer-status-on-word-length{position:absolute;left:144px;top:50%;font-size:16px;color:#141B38;margin:-9px 0 0 0;font-weight:700;width:130px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-beginning-ending-words .aioseo-headline-analyzer-words{display:block;margin-bottom:18px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-beginning-ending-words .aioseo-headline-analyzer-words span{font-size:13px;color:#434960;background:#f3f4f5;border-radius:3px;padding:4px 8px;font-weight:700;display:inline-block}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-beginning-ending-words .aioseo-headline-analyzer-words-guideline{margin-top:20px}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-beginning-ending-words .aioseo-headline-analyzer-word-ending-title,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-beginning-ending-words .aioseo-headline-analyzer-word-begining-title{font-weight:700;font-size:13px;color:#141b38;margin-bottom:12px;list-style:initial;margin:0 16px 8px 16px;padding:0 0 0 8px}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-beginning-ending-words .aioseo-headline-analyzer-word-ending-title li,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-beginning-ending-words .aioseo-headline-analyzer-word-begining-title li{margin:0}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row .aioseo-headline-analyzer-search-prevew-wrap{background:#ffffff;border:0.837954px solid #e8e8eb;padding:8px;margin-bottom:16px}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row h4{color:#1a0dab;font-size:16px;margin-top:0 !important;text-transform:none;margin-bottom:5px;font-weight:500}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row .aioseo-headline-analyzer-post-url{margin-bottom:5px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row .aioseo-headline-analyzer-post-url a{color:#3c4043;font-size:13px;text-decoration:none}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row .aioseo-headline-analyzer-post-url a:hover{opacity:0.8}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row p{font-size:12px;color:#434960;margin:0px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-types .aioseo-headline-analyzer-panel-types-title{display:block;width:100%;font-size:14px;color:#141B38}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-types .aioseo-headline-analyzer-panel-types-title span{float:right;margin-right:25px;color:#141B38;font-size:13px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-types p a{color:#005AE0;text-decoration:none}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-types p a span{text-decoration:underline}.edit-post-header__settings button.components-button[aioseo-button-color]{display:flex;align-items:center}.edit-post-header__settings button.components-button[aioseo-button-color] svg{max-width:22px;max-height:20px;margin-right:8px}.edit-post-header__settings button.components-button[aioseo-button-color] span{color:#fff;font-weight:700}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]{border:1px solid #df2a4a}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:active,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:focus,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"].is-pressed{background:#df2a4a !important}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:active svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:focus svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"].is-pressed svg path{fill:#fff}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"] svg path{fill:#df2a4a}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"] span{color:#df2a4a}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]{border:1px solid #f18200}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:active,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:focus,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"].is-pressed{background:#f18200 !important}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:active svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:focus svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"].is-pressed svg path{fill:#fff}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"] svg path{fill:#f08629}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"] span{color:#f18200}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]{border:1px solid #1ec185}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:active,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:focus,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"].is-pressed{background:#1ec185 !important}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:active svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:focus svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"].is-pressed svg path{fill:#fff}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"] svg path{fill:#1ec185}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"] span{color:#1bb17a}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:active,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:focus,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"].is-pressed,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:active,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:focus,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"].is-pressed,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:active,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:focus,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"].is-pressed{box-shadow:none !important}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:active svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:focus svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"].is-pressed svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:active svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:focus svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"].is-pressed svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:active svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:focus svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"].is-pressed svg path{fill:#fff !important}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:active span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:focus span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"].is-pressed span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:active span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:focus span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"].is-pressed span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:active span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:focus span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"].is-pressed span{color:#fff}.edit-post-sidebar{scroll-behavior:smooth}.aioseo-headline-analyzer-current-score-content>p{font-weight:700}.aioseo-headline-analyzer-bottom-notice{padding:16px;background:#E6EEFC;margin:16px;border-radius:3px;font-size:13px;color:#141B38}.aioseo-headline-analyzer-bottom-notice p{text-align:left}.aioseo-headline-analyzer-bottom-notice p a{color:#005AE0;text-decoration:none}.aioseo-headline-analyzer-bottom-notice p a span{text-decoration:underline}.aioseo-donut-container{display:flex;align-items:center;justify-content:center}.aioseo-donut-container .aioseo-seo-headline-analyzer-score__circle{animation:aioseo-seo-site-score-fill 1s reverse;transform:rotate(-180deg);transform-origin:center}
|
3 |
|
1 |
+
/*! ! built on Tuesday, September 21st 2021, 9:50:25 pm */
|
2 |
.aioseo-inline-buttons{display:grid;grid-template-columns:repeat(2, 1fr)}.aioseo-switcher-button{border:0;border-radius:0;font-size:14px;font-weight:normal;color:#434960;padding:16px 10px;box-shadow:0px 2px 0px #e8e8eb;cursor:pointer;text-align:left;white-space:nowrap;position:relative;transition:0.4s cubic-bezier(0.4, 0, 0.2, 1);background:#fafafa}.aioseo-switcher-button:before{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;opacity:0;transition:0.4s cubic-bezier(0.4, 0, 0.2, 1);will-change:background-color,opacity;content:" "}.aioseo-switcher-button.active:before,.aioseo-switcher-button:hover:before,.aioseo-switcher-button:active:before{background-color:currentColor;opacity:.12}.aioseo-switcher-button.active{font-weight:700;color:#141B38;box-shadow:0px 2px 0px #005AE0}.aioseo-headline-analyzer-wrapper{position:relative}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-pie-chart-container{position:relative;width:200px;height:200px;margin:0 auto;margin-bottom:18px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-pie-chart-container .aioseo-headline-analyzer-total-out-of-score{font-size:18px;color:#8c8f9a;font-weight:600;z-index:0}.aioseo-headline-analyzer-wrapper .components-panel__body.is-opened svg.components-panel__arrow{transform:rotate(0deg)}.aioseo-headline-analyzer-wrapper .components-panel__body svg.components-panel__arrow{transform:rotate(-90deg);top:50%;margin-top:-12px;transition:.3s}.aioseo-headline-analyzer-wrapper p{font-size:13px;color:#434960;margin-bottom:16px}.aioseo-headline-analyzer-wrapper p>strong{font-size:13px;font-weight:700}.aioseo-headline-analyzer-wrapper .green{color:#00aa63}.aioseo-headline-analyzer-wrapper .orange{color:#f18200}.aioseo-headline-analyzer-wrapper .red{color:#df2a4a}.aioseo-headline-analyzer-wrapper .green-bg{background:#00aa63}.aioseo-headline-analyzer-wrapper .orange-bg{background:#f18200}.aioseo-headline-analyzer-wrapper .red-bg{background:#df2a4a}.aioseo-headline-analyzer-wrapper .components-panel__body-toggle.components-button{font-weight:700;color:#141B38;padding:18px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-empty-title-warning{text-align:center;padding:0 20px;margin:20px 0;font-size:13px;color:#141B38}.aioseo-headline-analyzer-wrapper .components-panel__body.is-opened>.components-panel__body-title{margin:0}.aioseo-headline-analyzer-wrapper .components-panel__body.is-opened{padding:0}.aioseo-headline-analyzer-wrapper .components-panel__body.is-opened .aioseo-headline-analyzer-words-block,.aioseo-headline-analyzer-wrapper .components-panel__body.is-opened .aioseo-headline-analyzer-panel-first-block{padding:0 16px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-score.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-sentiment.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-previous-scores.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-character-count.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-tab-new-score.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-tab-new-score-form.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-word-count.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-beginning-ending-words.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-tab-new-score.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-search-preview.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-types.is-opened .components-panel__body-title,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-word-balance.is-opened .components-panel__body-title{border-bottom:1px solid #e8e8eb;margin-bottom:16px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-current-score,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-score-status{position:absolute;top:45%;left:0;right:0;text-align:center;font-size:50px;line-height:0%;z-index:0;font-weight:700}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-current-score p,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-score-status p{margin-bottom:0}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel{top:calc(58% + 16px)}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-score-status{top:65%;font-size:16px;z-index:0}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-current-score-tab p{text-align:center}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-current-score-tab .aioseo-headline-analyzer-current-title{text-align:center;font-size:16px;color:#141B38;margin:0 0 24px 0;line-height:1.4}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel h4{text-align:center;font-size:16px;color:#141B38;margin:0 0 28px 0;line-height:1.4}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel .aioseo-headline-analyzer-pie-chart-container{position:relative;width:200px;height:200px;margin:0 auto;margin-bottom:18px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel .aioseo-headline-analyzer-pie-chart-container .aioseo-headline-analyzer-new-score{position:absolute;top:calc(38% + 16px);left:0;right:0;text-align:center;font-size:50px;font-weight:700;line-height:0%;z-index:10}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel .aioseo-headline-analyzer-pie-chart-container .aioseo-headline-analyzer-new-score p{margin-bottom:0}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel .current-score{border-top:1px solid #E8E8EB;padding-top:24px;display:flex;align-items:center;flex-direction:row}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel .current-score .aioseo-headline-analyzer-score{min-height:40px;min-width:40px;font-weight:700;color:#ffffff;margin-right:16px;text-align:center;line-height:40px;border-radius:50%;font-size:18px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel .current-score h5{font-weight:400;color:#8C8F9A;margin-top:0;margin-bottom:8px;font-size:13px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-panel .current-score p{margin-top:8px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-tab{margin-bottom:6px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-new-score-form-block{padding:6px 12px 22px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-input-field{margin-bottom:10px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-input-field .components-base-control__label{display:block;max-width:100%;font-size:13px;margin:0 0 10px;color:#434960}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-input-field input{padding:11px 12px;font-size:13px;border:1px solid #D0D1D7;color:#393f4c;border-radius:3px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-button{font-size:14px;border-radius:4px;padding:0;height:40px;background:#005AE0;width:100%;justify-content:center;color:#ffffff;font-weight:600;border:1px solid transparent;transition:background-color .2s ease;opacity:1}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-button:disabled{border:1px solid #dcdde1;background-color:#f3f4f5;color:#8c8f9a;cursor:default}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-button:disabled:hover{color:#8c8f9a}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-button:hover,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-button:focus,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-button:visited{color:#ffffff;box-shadow:none}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-score-difference{font-weight:700;position:absolute;left:0;top:16%;right:0;text-align:center;width:42px;height:26px;margin:0 auto;font-size:16px;line-height:26px;border-radius:4px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-score-difference.red{background:#fbe9ec}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-score-difference.orange{background:#FCFAE8}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-score-difference.green{background:#CBEAE1}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-previous-scores{margin:0 !important}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-previous-scores li{margin-bottom:16px;cursor:pointer;display:flex;flex-direction:row;align-items:center;color:#434960;font-size:13px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-previous-scores li span.aioseo-headline-analyzer-score{min-height:24px;min-width:24px;margin-right:8px;font-size:11px;text-align:center;line-height:24px;border-radius:50%;color:#ffffff;font-weight:700}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-previous-scores li span.aioseo-headline-analyzer-score-text{flex-basis:calc(100% - 32px)}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-has-icon .components-panel__body-toggle .components-panel__icon{position:absolute;right:52px;top:50%;margin-top:-10px}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-has-icon.red .components-panel__body-toggle .components-panel__icon path{fill:#df2a4a}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-has-icon.orange .components-panel__body-toggle .components-panel__icon path{fill:#f18200}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-has-icon.green .components-panel__body-toggle .components-panel__icon path{fill:#00aa63}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-has-icon-alternative{position:relative}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-has-icon-alternative .aioseo-headline-analyzer-panel-icon-alternative{position:absolute;top:14px;right:40px;font-weight:700}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-word-balance .components-panel__row,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-sentiment .components-panel__row,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-types .components-panel__row,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-character-count .components-panel__row,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-word-count .components-panel__row,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-beginning-ending-words .components-panel__row,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row{display:block}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-word-balance .components-panel__row h4,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-sentiment .components-panel__row h4,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-types .components-panel__row h4,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-character-count .components-panel__row h4,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-word-count .components-panel__row h4,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-beginning-ending-words .components-panel__row h4,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row h4{font-size:16px;color:#141B38;font-weight:700;margin:0 0 16px 0}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block{margin-top:16px;border-bottom:1px solid #e8e8eb}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block h5{font-size:13px;color:#434960;margin-top:0;margin-bottom:16px;font-weight:700}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-block-data{overflow:hidden;display:flex;flex-direction:row}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-block-data span{display:block;float:left;flex-basis:70%;z-index:0}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-block-data span.aioseo-headline-analyzer-words-block-percentage{font-size:28px;font-weight:700;flex-basis:25%;justify-content:flex-start;align-items:center;display:flex;margin-right:11px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-block-data span.aioseo-headline-analyzer-words-block-goal{width:100%;font-size:13px;font-weight:400;color:#8C8F9A}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-block-data span.aioseo-headline-analyzer-words-block-progressbar{width:100%;position:relative;height:4px;margin-top:4px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-block-data span.aioseo-headline-analyzer-words-block-progressbar .aioseo-headline-analyzer-progressbar-bg{width:100%;background:#EEF0F2;height:4px;z-index:9;position:absolute;top:0;left:0;border-radius:30px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-block-data span.aioseo-headline-analyzer-words-block-progressbar .aioseo-headline-analyzer-progressbar-part{position:absolute;height:4px;top:0;left:0;z-index:10;border-radius:30px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-tag-list{margin:0;padding:0;list-style:none;display:block;margin-top:16px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-tag-list li{display:inline-block;font-size:13px;font-weight:700;color:#434960;background:#F3F4F5;border-radius:3px;padding:4px 9px;margin-right:8px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-words-block .aioseo-headline-analyzer-words-guideline{margin-top:8px;color:#4f4f4f}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-character-length>span,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-word-length>span{width:36px;height:48px;display:inline-block;background:#e8e8eb;text-align:center;line-height:48px;font-size:28px;color:#2c324c;font-weight:700;margin-right:4px;border-radius:4px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-character-length>span.character-zero,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-word-length>span.character-zero{color:#D0D1D7}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-status-on-character-length,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-status-on-word-length{display:block;font-weight:700;font-size:16px;color:#141b38;margin-bottom:16px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-character-count-container,.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-word-counter{margin-bottom:16px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-character-count p{text-align:left}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-character-count .aioseo-headline-analyzer-pie-chart-container{position:relative;width:200px;height:80px;margin:0 auto;margin-bottom:18px;margin-left:-40px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-character-count .aioseo-headline-analyzer-pie-chart-container .aioseo-headline-analyzer-character-length{position:absolute;top:50%;left:0;right:0;text-align:center;font-size:30px;line-height:0%;z-index:10}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-character-count .aioseo-headline-analyzer-pie-chart-container .aioseo-headline-analyzer-status-on-character-length{position:absolute;left:144px;top:50%;font-size:16px;color:#141B38;margin:-9px 0 0 0;font-weight:700;width:130px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-word-count p{text-align:left}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-word-count .aioseo-headline-analyzer-pie-chart-container{position:relative;width:200px;height:80px;margin:0 auto;margin-bottom:18px;margin-left:-40px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-word-count .aioseo-headline-analyzer-pie-chart-container .aioseo-headline-analyzer-word-length{position:absolute;top:50%;left:0;right:0;text-align:center;font-size:30px;line-height:0%;z-index:10}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-word-count .aioseo-headline-analyzer-pie-chart-container .aioseo-headline-analyzer-status-on-word-length{position:absolute;left:144px;top:50%;font-size:16px;color:#141B38;margin:-9px 0 0 0;font-weight:700;width:130px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-beginning-ending-words .aioseo-headline-analyzer-words{display:block;margin-bottom:18px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-beginning-ending-words .aioseo-headline-analyzer-words span{font-size:13px;color:#434960;background:#f3f4f5;border-radius:3px;padding:4px 8px;font-weight:700;display:inline-block}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-beginning-ending-words .aioseo-headline-analyzer-words-guideline{margin-top:20px}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-beginning-ending-words .aioseo-headline-analyzer-word-ending-title,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-beginning-ending-words .aioseo-headline-analyzer-word-begining-title{font-weight:700;font-size:13px;color:#141b38;margin-bottom:12px;list-style:initial;margin:0 16px 8px 16px;padding:0 0 0 8px}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-beginning-ending-words .aioseo-headline-analyzer-word-ending-title li,.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-beginning-ending-words .aioseo-headline-analyzer-word-begining-title li{margin:0}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row .aioseo-headline-analyzer-search-prevew-wrap{background:#ffffff;border:0.837954px solid #e8e8eb;padding:8px;margin-bottom:16px}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row h4{color:#1a0dab;font-size:16px;margin-top:0 !important;text-transform:none;margin-bottom:5px;font-weight:500}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row .aioseo-headline-analyzer-post-url{margin-bottom:5px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row .aioseo-headline-analyzer-post-url a{color:#3c4043;font-size:13px;text-decoration:none}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row .aioseo-headline-analyzer-post-url a:hover{opacity:0.8}.aioseo-headline-analyzer-wrapper .components-panel__body.aioseo-headline-analyzer-panel-search-preview .components-panel__row p{font-size:12px;color:#434960;margin:0px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-types .aioseo-headline-analyzer-panel-types-title{display:block;width:100%;font-size:14px;color:#141B38}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-types .aioseo-headline-analyzer-panel-types-title span{float:right;margin-right:25px;color:#141B38;font-size:13px}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-types p a{color:#005AE0;text-decoration:none}.aioseo-headline-analyzer-wrapper .aioseo-headline-analyzer-panel-types p a span{text-decoration:underline}.edit-post-header__settings button.components-button[aioseo-button-color]{display:flex;align-items:center}.edit-post-header__settings button.components-button[aioseo-button-color] svg{max-width:22px;max-height:20px;margin-right:8px}.edit-post-header__settings button.components-button[aioseo-button-color] span{color:#fff;font-weight:700}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]{border:1px solid #df2a4a}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:active,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:focus,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"].is-pressed{background:#df2a4a !important}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:active svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:focus svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"].is-pressed svg path{fill:#fff}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"] svg path{fill:#df2a4a}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"] span{color:#df2a4a}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]{border:1px solid #f18200}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:active,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:focus,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"].is-pressed{background:#f18200 !important}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:active svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:focus svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"].is-pressed svg path{fill:#fff}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"] svg path{fill:#f08629}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"] span{color:#f18200}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]{border:1px solid #1ec185}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:active,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:focus,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"].is-pressed{background:#1ec185 !important}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:active svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:focus svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"].is-pressed svg path{fill:#fff}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"] svg path{fill:#1ec185}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"] span{color:#1bb17a}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:active,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:focus,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"].is-pressed,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:active,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:focus,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"].is-pressed,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:active,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:focus,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"].is-pressed{box-shadow:none !important}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:active svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:focus svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"].is-pressed svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:active svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:focus svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"].is-pressed svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:active svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:focus svg path,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"].is-pressed svg path{fill:#fff !important}.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:active span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"]:focus span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="red"].is-pressed span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:active span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"]:focus span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="green"].is-pressed span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:active span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"]:focus span,.edit-post-header__settings button.components-button[aioseo-button-color][aioseo-button-color="orange"].is-pressed span{color:#fff}.edit-post-sidebar{scroll-behavior:smooth}.aioseo-headline-analyzer-current-score-content>p{font-weight:700}.aioseo-headline-analyzer-bottom-notice{padding:16px;background:#E6EEFC;margin:16px;border-radius:3px;font-size:13px;color:#141B38}.aioseo-headline-analyzer-bottom-notice p{text-align:left}.aioseo-headline-analyzer-bottom-notice p a{color:#005AE0;text-decoration:none}.aioseo-headline-analyzer-bottom-notice p a span{text-decoration:underline}.aioseo-donut-container{display:flex;align-items:center;justify-content:center}.aioseo-donut-container .aioseo-seo-headline-analyzer-score__circle{animation:aioseo-seo-site-score-fill 1s reverse;transform:rotate(-180deg);transform-origin:center}
|
3 |
|
dist/Lite/assets/css/headline-analyzer.css.gz
CHANGED
Binary file
|
dist/Lite/assets/js/headline-analyzer.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1 |
-
/*! ! built on Tuesday, September
|
2 |
!function(e){var t={};function n(r){if(t[r])return t[r].exports;var a=t[r]={i:r,l:!1,exports:{}};return e[r].call(a.exports,a,a.exports,n),a.l=!0,a.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var a in e)n.d(r,a,function(t){return e[t]}.bind(null,a));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=66)}([function(e,t){e.exports=window.wp.element},,function(e,t,n){var r;!function(){"use strict";var n={}.hasOwnProperty;function a(){for(var e=[],t=0;t<arguments.length;t++){var r=arguments[t];if(r){var o,i=typeof r;if("string"==i||"number"==i)e.push(r);else if(Array.isArray(r))!r.length||(o=a.apply(null,r))&&e.push(o);else if("object"==i)if(r.toString===Object.prototype.toString)for(var s in r)n.call(r,s)&&r[s]&&e.push(s);else e.push(r.toString())}}return e.join(" ")}e.exports?(a.default=a,e.exports=a):void 0===(r=function(){return a}.apply(t,[]))||(e.exports=r)}()},,,,,,,function(e,t,n){"use strict";var r=n(0);(n={}).headline=Object(r.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M15.817 2H22v.038l-6.183 4.226V2.001zm-7.62 9.473V2H2.016v4.683-.267l6.126 5.094.057-.038zm-6.182 5.061l6.183 4.213v1.252H2.015v-5.465zm13.802-.857L22 11.559v10.437h-6.183v-6.32z",fill:"#141B38"}),Object(r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8.198 11.435l-.057.039L2.016 6.38v.265-4.644h6.182v9.434zm0 9.226L2.015 16.45v5.55h6.183v-1.337zm7.62-5.07L22 11.474v10.522h-6.183v-6.405zM22 2.001l-6.183 4.226V2H22z",fill:"#141B38"}),Object(r.createElement)("path",{d:"M8.141 13.537L22 4.064v5.432l-13.8 9.19L2 14.46l.016-6.018 6.125 5.094z",fill:"#141B38"})),n.headlineBlack=Object(r.createElement)("svg",{width:"15",height:"14",viewBox:"0 0 15 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{d:"M13.5 2V12H14.5C14.6458 12 14.7604 12.0521 14.8438 12.1562C14.9479 12.2396 15 12.3542 15 12.5V13.5C15 13.6458 14.9479 13.7604 14.8438 13.8438C14.7604 13.9479 14.6458 14 14.5 14H9.5C9.35417 14 9.22917 13.9479 9.125 13.8438C9.04167 13.7604 9 13.6458 9 13.5V12.5C9 12.3542 9.04167 12.2396 9.125 12.1562C9.22917 12.0521 9.35417 12 9.5 12H10.5V8H4.5V12H5.5C5.64583 12 5.76042 12.0521 5.84375 12.1562C5.94792 12.2396 6 12.3542 6 12.5V13.5C6 13.6458 5.94792 13.7604 5.84375 13.8438C5.76042 13.9479 5.64583 14 5.5 14H0.5C0.354167 14 0.229167 13.9479 0.125 13.8438C0.0416667 13.7604 0 13.6458 0 13.5V12.5C0 12.3542 0.0416667 12.2396 0.125 12.1562C0.229167 12.0521 0.354167 12 0.5 12H1.5V2H0.5C0.354167 2 0.229167 1.95833 0.125 1.875C0.0416667 1.77083 0 1.64583 0 1.5V0.5C0 0.354167 0.0416667 0.239583 0.125 0.15625C0.229167 0.0520833 0.354167 0 0.5 0H5.5C5.64583 0 5.76042 0.0520833 5.84375 0.15625C5.94792 0.239583 6 0.354167 6 0.5V1.5C6 1.64583 5.94792 1.77083 5.84375 1.875C5.76042 1.95833 5.64583 2 5.5 2H4.5V6H10.5V2H9.5C9.35417 2 9.22917 1.95833 9.125 1.875C9.04167 1.77083 9 1.64583 9 1.5V0.5C9 0.354167 9.04167 0.239583 9.125 0.15625C9.22917 0.0520833 9.35417 0 9.5 0H14.5C14.6458 0 14.7604 0.0520833 14.8438 0.15625C14.9479 0.239583 15 0.354167 15 0.5V1.5C15 1.64583 14.9479 1.77083 14.8438 1.875C14.7604 1.95833 14.6458 2 14.5 2H13.5Z",fill:"#000"})),n.warning=Object(r.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.99 0C4.47 0 0 4.48 0 10C0 15.52 4.47 20 9.99 20C15.52 20 20 15.52 20 10C20 4.48 15.52 0 9.99 0ZM11 5.00002H9V11H11V5.00002ZM11 13H9V15H11V13ZM2.00002 10C2.00002 14.42 5.58002 18 10 18C14.42 18 18 14.42 18 10C18 5.58002 14.42 2.00002 10 2.00002C5.58002 2.00002 2.00002 5.58002 2.00002 10Z",fill:"#005AE0"})),n.smile=Object(r.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.99 0C4.47 0 0 4.48 0 10C0 15.52 4.47 20 9.99 20C15.52 20 20 15.52 20 10C20 4.48 15.52 0 9.99 0ZM6.5 6C5.67157 6 5 6.67157 5 7.5C5 8.32843 5.67157 9 6.5 9C7.32843 9 8 8.32843 8 7.5C8 6.67157 7.32843 6 6.5 6ZM13.5 6C12.6716 6 12 6.67157 12 7.5C12 8.32843 12.6716 9 13.5 9C14.3284 9 15 8.32843 15 7.5C15 6.67157 14.3284 6 13.5 6ZM6.55 12C7.25 13.19 8.52 14 10 14C11.48 14 12.75 13.19 13.45 12H15.12C14.32 14.05 12.33 15.5 10 15.5C7.67 15.5 5.68 14.05 4.88 12H6.55ZM2 10C2 14.42 5.58 18 10 18C14.42 18 18 14.42 18 10C18 5.58 14.42 2 10 2C5.58 2 2 5.58 2 10Z",fill:"#00AA63"})),n.neutral=Object(r.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.99 0C4.47 0 0 4.48 0 10C0 15.52 4.47 20 9.99 20C15.52 20 20 15.52 20 10C20 4.48 15.52 0 9.99 0ZM5 7.5C5 6.67157 5.67157 6 6.5 6C7.32843 6 8 6.67157 8 7.5C8 8.32843 7.32843 9 6.5 9C5.67157 9 5 8.32843 5 7.5ZM13.5 6C12.6716 6 12 6.67157 12 7.5C12 8.32843 12.6716 9 13.5 9C14.3284 9 15 8.32843 15 7.5C15 6.67157 14.3284 6 13.5 6ZM7 13.5V12H13V13.5H7ZM2 10C2 14.42 5.58 18 10 18C14.42 18 18 14.42 18 10C18 5.58 14.42 2 10 2C5.58 2 2 5.58 2 10Z",fill:"#005AE0"})),n.negative=Object(r.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.99 0C4.47 0 0 4.48 0 10C0 15.52 4.47 20 9.99 20C15.52 20 20 15.52 20 10C20 4.48 15.52 0 9.99 0ZM6.5 6C5.67157 6 5 6.67157 5 7.5C5 8.32843 5.67157 9 6.5 9C7.32843 9 8 8.32843 8 7.5C8 6.67157 7.32843 6 6.5 6ZM13.5 6C12.6716 6 12 6.67157 12 7.5C12 8.32843 12.6716 9 13.5 9C14.3284 9 15 8.32843 15 7.5C15 6.67157 14.3284 6 13.5 6ZM4.88 15.5C5.68 13.45 7.67 12 10 12C12.33 12 14.32 13.45 15.12 15.5H13.45C12.75 14.31 11.48 13.5 10 13.5C8.52 13.5 7.24 14.31 6.55 15.5H4.88ZM2 10C2 14.42 5.58 18 10 18C14.42 18 18 14.42 18 10C18 5.58 14.42 2 10 2C5.58 2 2 5.58 2 10Z",fill:"#DF2A4A"})),n.check=Object(r.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10 0C4.48 0 0 4.48 0 10C0 15.52 4.48 20 10 20C15.52 20 20 15.52 20 10C20 4.48 15.52 0 10 0ZM10 18C5.59 18 2 14.41 2 10C2 5.59 5.59 2 10 2C14.41 2 18 5.59 18 10C18 14.41 14.41 18 10 18ZM8 12.17L14.59 5.58L16 7L8 15L4 11L5.41 9.59L8 12.17Z",fill:"#00AA63"})),t.a=n},function(e,t){var n,r;e=e.exports={};function a(){throw new Error("setTimeout has not been defined")}function o(){throw new Error("clearTimeout has not been defined")}function i(e){if(n===setTimeout)return setTimeout(e,0);if((n===a||!n)&&setTimeout)return n=setTimeout,setTimeout(e,0);try{return n(e,0)}catch(t){try{return n.call(null,e,0)}catch(t){return n.call(this,e,0)}}}!function(){try{n="function"==typeof setTimeout?setTimeout:a}catch(e){n=a}try{r="function"==typeof clearTimeout?clearTimeout:o}catch(e){r=o}}();var s,l=[],c=!1,u=-1;function d(){c&&s&&(c=!1,s.length?l=s.concat(l):u=-1,l.length&&h())}function h(){if(!c){var e=i(d);c=!0;for(var t=l.length;t;){for(s=l,l=[];++u<t;)s&&s[u].run();u=-1,t=l.length}s=null,c=!1,function(e){if(r===clearTimeout)return clearTimeout(e);if((r===o||!r)&&clearTimeout)return r=clearTimeout,clearTimeout(e);try{r(e)}catch(t){try{return r.call(null,e)}catch(t){return r.call(this,e)}}}(e)}}function p(e,t){this.fun=e,this.array=t}function f(){}e.nextTick=function(e){var t=new Array(arguments.length-1);if(1<arguments.length)for(var n=1;n<arguments.length;n++)t[n-1]=arguments[n];l.push(new p(e,t)),1!==l.length||c||i(h)},p.prototype.run=function(){this.fun.apply(null,this.array)},e.title="browser",e.browser=!0,e.env={},e.argv=[],e.version="",e.versions={},e.on=f,e.addListener=f,e.once=f,e.off=f,e.removeListener=f,e.removeAllListeners=f,e.emit=f,e.prependListener=f,e.prependOnceListener=f,e.listeners=function(e){return[]},e.binding=function(e){throw new Error("process.binding is not supported")},e.cwd=function(){return"/"},e.chdir=function(e){throw new Error("process.chdir is not supported")},e.umask=function(){return 0}},,,,,,,,,,,,function(e,t,n){"use strict";n.d(t,"a",(function(){return o})),n.d(t,"b",(function(){return i}));t=n(44);var r,a=n.n(t),o=function(e,t){return function(){for(var n=arguments.length,a=new Array(n),o=0;o<n;o++)a[o]=arguments[o];clearTimeout(r),r=setTimeout((function(){return e.apply(void 0,a)}),t)}.call()},i=function(e){return a.a.agent().set("X-WP-Nonce",e).use((function(e){e.on("response",(function(e){(401===e.status||403===e.status)&&console.error(e)}))}))}},,,function(e,t,n){"use strict";(function(e){var r=n(0),a=n(2),o=n.n(a),i=window.wp.i18n.__;t.a=function(t){var n=i("Goal: ",e.env.VUE_APP_TEXTDOMAIN),a={width:t.value+"%"};return Object(r.createElement)("div",{className:"aioseo-headline-analyzer-words-block"},Object(r.createElement)("h5",null,t.title),Object(r.createElement)("div",{className:"aioseo-headline-analyzer-words-block-data"},Object(r.createElement)("span",{className:o()("aioseo-headline-analyzer-words-block-percentage",t.classOnScore)},t.value,"%"),Object(r.createElement)("span",{className:o()("aioseo-headline-analyzer-words-block-percentage-right-column",t.classOnScore)},Object(r.createElement)("span",{className:"aioseo-headline-analyzer-words-block-goal"},n," ",t.goalValue),Object(r.createElement)("span",{className:"aioseo-headline-analyzer-words-block-progressbar"},Object(r.createElement)("span",{className:"aioseo-headline-analyzer-progressbar-bg"}),Object(r.createElement)("span",{className:o()("aioseo-headline-analyzer-progressbar-part",t.classOnScoreBg),style:a})))),Object(r.createElement)("ul",{className:"aioseo-headline-analyzer-words-tag-list"},0<t.words.length?t.words.map((function(e,t){return Object(r.createElement)("li",{key:t},e)})):""),Object(r.createElement)("p",{className:"aioseo-headline-analyzer-words-guideline"},t.guideLine))}}).call(this,n(10))},function(e,t,n){var r=n(68),a=n(69),o=n(33),i=n(70);e.exports=function(e,t){return r(e)||a(e,t)||o(e,t)||i()},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,n){var r=n(71),a=n(72),o=n(33),i=n(73);e.exports=function(e){return r(e)||a(e)||o(e)||i()},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,n){"use strict";var r=n(0),a=window.wp.element.Fragment;t.a=function(e){var t=e.barScore;e=e.color;return Object(r.createElement)(a,null,Object(r.createElement)("div",{className:"aioseo-donut-container",style:{flexDirection:"column"}},Object(r.createElement)("svg",{className:"aioseo-donut-score-svg",viewBox:"0 0 33.83098862 33.83098862",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("circle",{className:"aioseo-seo-headline-analyzer-score__background",stroke:"#e8e8eb",strokeWidth:"2",fill:"none",cx:"16.91549431",cy:"16.91549431",r:"15.91549431"}),Object(r.createElement)("circle",{className:"aioseo-seo-headline-analyzer-score__circle",stroke:e,strokeWidth:"2",strokeDasharray:"".concat(t,", 100"),strokeLinecap:"round",fill:"none",cx:"16.91549431",cy:"16.91549431",r:"15.91549431"}))))}},,,,,function(e,t,n){var r=n(34);e.exports=function(e,t){if(e){if("string"==typeof e)return r(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Map"===(n="Object"===n&&e.constructor?e.constructor.name:n)||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?r(e,t):void 0}},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=function(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,n){"use strict";function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}e.exports=function(e){return null!==e&&"object"===r(e)}},,,,,,,,function(e,t){e.exports=function(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,n){"use strict";function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var a="undefined"!=typeof window?window:"undefined"==typeof self?void console.warn("Using browser-only version of superagent in non-browser environment"):self,o=n(74),i=n(75),s=n(76),l=n(35),c=n(77),u=n(79);function d(){}e.exports=function(e,n){return"function"==typeof n?new t.Request("GET",e).end(n):1===arguments.length?new t.Request("GET",e):new t.Request(e,n)};var h=t=e.exports;t.Request=w,h.getXHR=function(){if(a.XMLHttpRequest&&(!a.location||"file:"!==a.location.protocol||!a.ActiveXObject))return new XMLHttpRequest;try{return new ActiveXObject("Microsoft.XMLHTTP")}catch(e){}try{return new ActiveXObject("Msxml2.XMLHTTP.6.0")}catch(e){}try{return new ActiveXObject("Msxml2.XMLHTTP.3.0")}catch(e){}try{return new ActiveXObject("Msxml2.XMLHTTP")}catch(e){}throw new Error("Browser-only version of superagent could not find XHR")};var p="".trim?function(e){return e.trim()}:function(e){return e.replace(/(^\s*|\s*$)/g,"")};function f(e){if(!l(e))return e;var t,n=[];for(t in e)Object.prototype.hasOwnProperty.call(e,t)&&function e(t,n,r){if(void 0!==r)if(null!==r)if(Array.isArray(r))r.forEach((function(r){e(t,n,r)}));else if(l(r))for(var a in r)Object.prototype.hasOwnProperty.call(r,a)&&e(t,"".concat(n,"[").concat(a,"]"),r[a]);else t.push(encodeURI(n)+"="+encodeURIComponent(r));else t.push(encodeURI(n))}(n,t,e[t]);return n.join("&")}function m(e){for(var t,n,r={},a=e.split("&"),o=0,i=a.length;o<i;++o)-1===(n=(t=a[o]).indexOf("="))?r[decodeURIComponent(t)]="":r[decodeURIComponent(t.slice(0,n))]=decodeURIComponent(t.slice(n+1));return r}function y(e){return/[/+]json($|[^-\w])/.test(e)}function b(e){this.req=e,this.xhr=this.req.xhr,this.text="HEAD"!==this.req.method&&(""===this.xhr.responseType||"text"===this.xhr.responseType)||void 0===this.xhr.responseType?this.xhr.responseText:null,this.statusText=this.req.xhr.statusText;var t=this.xhr.status;this._setStatusProperties(t=1223===t?204:t),this.headers=function(e){for(var t,n,r,a=e.split(/\r?\n/),o={},i=0,s=a.length;i<s;++i)-1!==(r=(t=a[i]).indexOf(":"))&&(n=t.slice(0,r).toLowerCase(),r=p(t.slice(r+1)),o[n]=r);return o}(this.xhr.getAllResponseHeaders()),this.header=this.headers,this.header["content-type"]=this.xhr.getResponseHeader("content-type"),this._setHeaderProperties(this.header),null===this.text&&e._responseType?this.body=this.xhr.response:this.body="HEAD"===this.req.method?null:this._parseBody(this.text||this.xhr.response)}function w(e,t){var n=this;this._query=this._query||[],this.method=e,this.url=t,this.header={},this._header={},this.on("end",(function(){var e,t=null,r=null;try{r=new b(n)}catch(r){return(t=new Error("Parser is unable to parse the response")).parse=!0,t.original=r,n.xhr?(t.rawResponse=void 0===n.xhr.responseType?n.xhr.responseText:n.xhr.response,t.status=n.xhr.status||null,t.statusCode=t.status):(t.rawResponse=null,t.status=null),n.callback(t)}n.emit("response",r);try{n._isResponseOK(r)||(e=new Error(r.statusText||r.text||"Unsuccessful HTTP response"))}catch(r){e=r}e?(e.original=t,e.response=r,e.status=r.status,n.callback(e,r)):n.callback(null,r)}))}function g(e,t,n){return e=h("DELETE",e),"function"==typeof t&&(n=t,t=null),t&&e.send(t),n&&e.end(n),e}h.serializeObject=f,h.parseString=m,h.types={html:"text/html",json:"application/json",xml:"text/xml",urlencoded:"application/x-www-form-urlencoded",form:"application/x-www-form-urlencoded","form-data":"application/x-www-form-urlencoded"},h.serialize={"application/x-www-form-urlencoded":f,"application/json":i},h.parse={"application/x-www-form-urlencoded":m,"application/json":JSON.parse},c(b.prototype),b.prototype._parseBody=function(e){var t=h.parse[this.type];return this.req._parser?this.req._parser(this,e):(t=!t&&y(this.type)?h.parse["application/json"]:t)&&e&&(0<e.length||e instanceof Object)?t(e):null},b.prototype.toError=function(){var e=(n=this.req).method,t=n.url,n="cannot ".concat(e," ").concat(t," (").concat(this.status,")");return(n=new Error(n)).status=this.status,n.method=e,n.url=t,n},h.Response=b,o(w.prototype),s(w.prototype),w.prototype.type=function(e){return this.set("Content-Type",h.types[e]||e),this},w.prototype.accept=function(e){return this.set("Accept",h.types[e]||e),this},w.prototype.auth=function(e,t,n){return"object"===r(t=1===arguments.length?"":t)&&null!==t&&(n=t,t=""),n=n||{type:"function"==typeof btoa?"basic":"auto"},this._auth(e,t,n,(function(e){if("function"==typeof btoa)return btoa(e);throw new Error("Cannot use basic auth, btoa is not a function")}))},w.prototype.query=function(e){return(e="string"!=typeof e?f(e):e)&&this._query.push(e),this},w.prototype.attach=function(e,t,n){if(t){if(this._data)throw new Error("superagent can't mix .send() and .attach()");this._getFormData().append(e,t,n||t.name)}return this},w.prototype._getFormData=function(){return this._formData||(this._formData=new a.FormData),this._formData},w.prototype.callback=function(e,t){if(this._shouldRetry(e,t))return this._retry();var n=this._callback;this.clearTimeout(),e&&(this._maxRetries&&(e.retries=this._retries-1),this.emit("error",e)),n(e,t)},w.prototype.crossDomainError=function(){var e=new Error("Request has been terminated\nPossible causes: the network is offline, Origin is not allowed by Access-Control-Allow-Origin, the page is being unloaded, etc.");e.crossDomain=!0,e.status=this.status,e.method=this.method,e.url=this.url,this.callback(e)},w.prototype.buffer=w.prototype.ca=w.prototype.agent=function(){return console.warn("This is not supported in browser version of superagent"),this},w.prototype.pipe=w.prototype.write=function(){throw new Error("Streaming is not supported in browser version of superagent")},w.prototype._isHost=function(e){return e&&"object"===r(e)&&!Array.isArray(e)&&"[object Object]"!==Object.prototype.toString.call(e)},w.prototype.end=function(e){this._endCalled&&console.warn("Warning: .end() was called twice. This is not supported in superagent"),this._endCalled=!0,this._callback=e||d,this._finalizeQueryString(),this._end()},w.prototype._setUploadTimeout=function(){var e=this;this._uploadTimeout&&!this._uploadTimeoutTimer&&(this._uploadTimeoutTimer=setTimeout((function(){e._timeoutError("Upload timeout of ",e._uploadTimeout,"ETIMEDOUT")}),this._uploadTimeout))},w.prototype._end=function(){if(this._aborted)return this.callback(new Error("The request has been aborted even before .end() was called"));var e=this;this.xhr=h.getXHR();var t=this.xhr,n=this._formData||this._data;this._setTimeouts(),t.onreadystatechange=function(){var n,r=t.readyState;if(2<=r&&e._responseTimeoutTimer&&clearTimeout(e._responseTimeoutTimer),4===r){try{n=t.status}catch(r){n=0}if(!n)return e.timedout||e._aborted?void 0:e.crossDomainError();e.emit("end")}};var r,a,o=function(t,n){0<n.total&&(n.percent=n.loaded/n.total*100,100===n.percent&&clearTimeout(e._uploadTimeoutTimer)),n.direction=t,e.emit("progress",n)};if(this.hasListeners("progress"))try{t.addEventListener("progress",o.bind(null,"download")),t.upload&&t.upload.addEventListener("progress",o.bind(null,"upload"))}catch(n){}t.upload&&this._setUploadTimeout();try{this.username&&this.password?t.open(this.method,this.url,!0,this.username,this.password):t.open(this.method,this.url,!0)}catch(n){return this.callback(n)}for(a in this._withCredentials&&(t.withCredentials=!0),this._formData||"GET"===this.method||"HEAD"===this.method||"string"==typeof n||this._isHost(n)||(r=this._header["content-type"],(o=!(o=this._serializer||h.serialize[r?r.split(";")[0]:""])&&y(r)?h.serialize["application/json"]:o)&&(n=o(n))),this.header)null!==this.header[a]&&Object.prototype.hasOwnProperty.call(this.header,a)&&t.setRequestHeader(a,this.header[a]);this._responseType&&(t.responseType=this._responseType),this.emit("request",this),t.send(void 0===n?null:n)},h.agent=function(){return new u},["GET","POST","OPTIONS","PATCH","PUT","DELETE"].forEach((function(e){u.prototype[e.toLowerCase()]=function(t,n){return t=new h.Request(e,t),this._setDefaults(t),n&&t.end(n),t}})),u.prototype.del=u.prototype.delete,h.get=function(e,t,n){return e=h("GET",e),"function"==typeof t&&(n=t,t=null),t&&e.query(t),n&&e.end(n),e},h.head=function(e,t,n){return e=h("HEAD",e),"function"==typeof t&&(n=t,t=null),t&&e.query(t),n&&e.end(n),e},h.options=function(e,t,n){return e=h("OPTIONS",e),"function"==typeof t&&(n=t,t=null),t&&e.send(t),n&&e.end(n),e},h.del=g,h.delete=g,h.patch=function(e,t,n){return e=h("PATCH",e),"function"==typeof t&&(n=t,t=null),t&&e.send(t),n&&e.end(n),e},h.post=function(e,t,n){return e=h("POST",e),"function"==typeof t&&(n=t,t=null),t&&e.send(t),n&&e.end(n),e},h.put=function(e,t,n){return e=h("PUT",e),"function"==typeof t&&(n=t,t=null),t&&e.send(t),n&&e.end(n),e}},function(e,t,n){"use strict";(function(e){var r=n(26),a=n.n(r),o=n(0),i=(r=n(2),n.n(r)),s=n(46),l=n(47),c=n(48),u=window.wp.i18n.__,d=(r=window.wp.element).Fragment,h=r.useState,p=r.useEffect;t.a=function(t){var n=u("Current Score",e.env.VUE_APP_TEXTDOMAIN),r=u("Try New Headline",e.env.VUE_APP_TEXTDOMAIN),f=h("current-score"),m=(f=a()(f,2))[0],y=f[1];f=void 0!==t.analyzer.isNewData&&t.analyzer.isNewData;return p((function(){t.setAnalyzer({activeTab:m})}),[m]),Object(o.createElement)(d,null,Object(o.createElement)("div",{className:"aioseo-inline-buttons"},Object(o.createElement)("button",{onClick:function(){return y("current-score")},className:i()("aioseo-switcher-button",{active:"current-score"===m})},n),Object(o.createElement)("button",{onClick:function(){return y("new-headline")},className:i()("aioseo-switcher-button",{active:"new-headline"===m})},r)),"new-headline"===m?Object(o.createElement)(d,null,Object(o.createElement)(l.a,{analyzer:t.analyzer,setAnalyzer:t.setAnalyzer})):Object(o.createElement)(s.a,{analyzer:t.analyzer}),f?Object(o.createElement)(c.a,{analyzer:t.analyzer}):"")}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=n(2),o=n.n(a),i=n(28),s=window.wp.i18n.__,l=window.wp.element.Fragment,c=(a=window.wp.components).PanelBody,u=a.PanelRow,d=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){var t,n=e.analyzer.currentHeadlineData.sentence,a=s("Score",d),h=s("A good score is between 40 and 60. For best results, you should strive for 70 and above.",d),p=e.analyzer.currentHeadlineData.score,f=p<40?"red":p<=60?"orange":"green";e="red"==f?"#df2a4a":"orange"==f?"#F2994A":"#00aa63";switch(!0){case p<25:t=Object(r.createElement)("span",null,s("Not Looking Great",d));break;case p<50:t=Object(r.createElement)("span",null,s("Could Be Better",d));break;case p<60:t=Object(r.createElement)("span",null,s("Getting There",d));break;case p<75:t=Object(r.createElement)("span",null,s("Looks Good! 👍👍",d));break;case 75<p:t=Object(r.createElement)("span",null,s("Super! 🔥🔥🔥",d));break;default:t=!1}return Object(r.createElement)(l,null,Object(r.createElement)(c,{className:"aioseo-headline-analyzer-panel-score",title:a},Object(r.createElement)(u,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-current-score-tab aioseo-headline-analyzer-panel-first-block"},Object(r.createElement)("h4",{className:"aioseo-headline-analyzer-current-title"},"“",n,"”"),Object(r.createElement)("div",{className:"aioseo-headline-analyzer-pie-chart-container"},Object(r.createElement)("div",{className:o()("aioseo-headline-analyzer-current-score",f)},p,Object(r.createElement)("span",{className:"aioseo-headline-analyzer-total-out-of-score"},"/ 100")),t&&Object(r.createElement)("div",{className:o()("aioseo-headline-analyzer-score-status",f)},t),Object(r.createElement)(i.a,{barScore:p,color:e})),Object(r.createElement)("p",null,h)))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(27),a=n.n(r),o=n(0),i=n(22),s=(r=n(2),n.n(r)),l=window.wp.i18n.__,c=window.wp.element.Fragment,u=(r=window.wp.components).PanelBody,d=r.PanelRow,h=r.TextControl,p=r.Button,f=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){function t(t){(t=t.trim())&&Object(i.b)(window.aioseo.nonce).post("".concat(window.aioseo.urls.restUrl,"aioseo/v1/analyze_headline")).send({title:t}).then((function(t){e.setAnalyzer({newHeadlineData:t.body,headlineData:t.body,previousHeadlinesData:[e.analyzer.headlineData].concat(a()(b)),isNewData:!0})})).catch((function(t){e.setAnalyzer({isNewData:!1}),console.log(t)}))}var n=l("Try New Headline",f),r=l("Enter a different headline than your post title to see how it compares.",f),m=l("Analyze Headline",f),y=void 0!==e.analyzer.newHeadline?e.analyzer.newHeadline:"",b=void 0!==e.analyzer.previousHeadlinesData?e.analyzer.previousHeadlinesData:[],w=!y;return Object(o.createElement)(c,null,Object(o.createElement)(u,{title:n,className:s()("aioseo-headline-analyzer-panel-tab-new-score-form")},Object(o.createElement)(d,null,Object(o.createElement)("div",{className:"aioseo-headline-analyzer-new-tab"},Object(o.createElement)("div",{className:"aioseo-headline-analyzer-new-score-form-block"},Object(o.createElement)("form",{onSubmit:function(e){e.preventDefault(),t(y)}},Object(o.createElement)(h,{label:r,value:y,onChange:function(t){" "!==t&&e.setAnalyzer({newHeadline:t})},className:"aioseo-headline-analyzer-input-field"}),Object(o.createElement)(p,{className:s()("aioseo-headline-analyzer-button"),onClick:function(){t(y)},disabled:w},m)))))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=n(2),o=n.n(a),i=n(28),s=window.wp.i18n.__,l=window.wp.element.Fragment,c=(a=window.wp.components).PanelBody,u=a.PanelRow,d=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){var t,n=e.analyzer.currentHeadlineData.sentence,a=s("New Score",d),h=s("A good score is between 40 and 60. For best results, you should strive for 70 and above.",d),p=s("Current Score",d),f=void 0!==e.analyzer.newHeadlineData?e.analyzer.newHeadlineData.sentence:"",m=void 0!==e.analyzer.newHeadlineData?e.analyzer.newHeadlineData.score:"",y=void 0!==e.analyzer.currentHeadlineData.score?e.analyzer.currentHeadlineData.score:"",b=m<40?"red":m<=60?"orange":"green",w="red"==b?"#df2a4a":"orange"==b?"#F2994A":"#00aa63",g=y<40?"red-bg":y<=60?"orange-bg":"green-bg";e=Math.abs(m-y);switch(!0){case m<25:t=Object(r.createElement)("span",null,s("Not Looking Great",d));break;case m<50:t=Object(r.createElement)("span",null,s("Could Be Better",d));break;case m<60:t=Object(r.createElement)("span",null,s("Getting There",d));break;case m<75:t=Object(r.createElement)("span",null,s("Looks Good! 👍👍",d));break;case 75<m:t=Object(r.createElement)("span",null,s("Super! 🔥🔥🔥",d));break;default:t=!1}return Object(r.createElement)(l,null,Object(r.createElement)(c,{title:a,className:"aioseo-headline-analyzer-panel-tab-new-score"},Object(r.createElement)(u,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},Object(r.createElement)("div",{className:"aioseo-headline-analyzer-new-score-panel"},Object(r.createElement)("p",null,h),Object(r.createElement)("h4",null,"“",f,"”"),Object(r.createElement)("div",{className:"aioseo-headline-analyzer-pie-chart-container"},Object(r.createElement)("span",{className:o()("aioseo-headline-analyzer-new-score",b)},m),Object(r.createElement)(i.a,{barScore:m,color:w}),Object(r.createElement)("span",{className:o()("aioseo-headline-analyzer-score-difference",b)},y<m?"+ ":m===y?"":"- ",e),t&&Object(r.createElement)("div",{className:o()("aioseo-headline-analyzer-score-status",b)},t)),Object(r.createElement)("div",{className:"current-score"},Object(r.createElement)("span",{className:o()("aioseo-headline-analyzer-score",g)},y),Object(r.createElement)("div",{className:"aioseo-headline-analyzer-current-score-content"},Object(r.createElement)("h5",null,p),Object(r.createElement)("p",null,n))))))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=n(2),o=n.n(a),i=window.wp.i18n.__,s=window.wp.element.Fragment,l=(a=window.wp.components).PanelBody,c=a.PanelRow;t.a=function(t){var n=i("Previous Scores",e.env.VUE_APP_TEXTDOMAIN),a="undefined"!==t.analyzer.previousHeadlinesData?t.analyzer.previousHeadlinesData:[],u=document.querySelector(".edit-post-sidebar"),d="current-score"===("undefined"!==t.analyzer.activeTab?t.analyzer.activeTab:"current-score")?390:300;return Object(r.createElement)(s,null,Object(r.createElement)(l,{title:n,className:"aioseo-headline-analyzer-panel-previous-scores"},Object(r.createElement)(c,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},Object(r.createElement)("ul",{className:"aioseo-headline-analyzer-previous-scores"},a.map((function(e,n){if(n<10&&(void 0!==e.sentence||void 0!==e.score)){var i=e.score<40?"red-bg":e.score<=60?"orange-bg":"green-bg";return Object(r.createElement)("li",{key:n,onClick:function(){t.setAnalyzer({newHeadlineData:a[n],headlineData:a[n],newHeadline:a[n].sentence,isNewData:!0}),u&&(u.scrollTop=d)}},Object(r.createElement)("span",{className:o()("aioseo-headline-analyzer-score",i)},e.score),Object(r.createElement)("span",{className:"aioseo-headline-analyzer-score-text"},e.sentence))}return null})))))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=n(9),o=n(2),i=n.n(o),s=n(25),l=window.wp.i18n.__,c=window.wp.element.Fragment,u=(o=window.wp.components).PanelBody,d=o.PanelRow,h=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){var t,n=l("Word Balance",h),o=l("Compare the percentages of your results to the goal for each category and adjust as necessary.",h),p=e.data.score,f=e.data.score<40?"red":e.data.score<=60?"orange":"green",m=0===e.data.result.commonWordsPercentage?"red":e.data.result.commonWordsPercentage<.2?"orange":"green",y=0===e.data.result.commonWordsPercentage?"red-bg":e.data.result.commonWordsPercentage<.2?"orange-bg":"green-bg",b=e.data.result.commonWordsPercentage<.2?l("Your headline would be more likely to get clicks if it had more common words.",h):l("Headlines with 20-30% common words are more likely to get clicks.",h),w=0===e.data.result.uncommonWordsPercentage?"red":e.data.result.uncommonWordsPercentage<.1?"orange":"green",g=0===e.data.result.uncommonWordsPercentage?"red-bg":e.data.result.uncommonWordsPercentage<.1?"orange-bg":"green-bg",v=e.data.result.uncommonWordsPercentage<.1?l("Your headline would be more likely to get clicks if it had more uncommon words.",h):l("Headlines with uncommon words are more likely to get clicks.",h),E=0===e.data.result.emotionalWordsPercentage?"red":e.data.result.emotionalWordsPercentage<.1?"orange":"green",O=0===e.data.result.emotionalWordsPercentage?"red-bg":e.data.result.emotionalWordsPercentage<.1?"orange-bg":"green-bg",j=l("Emotionally triggered headlines are likely to drive more clicks.",h),_=0===e.data.result.powerWords.length?"orange":"green",T=0===e.data.result.powerWords.length?"orange":"green-bg",x=l("Headlines with Power Words are more likely to get clicks.",h),C=l("Common Words",h),z=l("20-30%",h),k=l("Uncommon Words",h),P=l("10-20%",h),A=l("Emotional Words",h),N=l("10-15%",h),S=l("Power Words",h),D=l("At least one",h);switch(!0){case p<25:t=Object(r.createElement)("span",null,l("Not Looking Great",h));break;case p<50:t=Object(r.createElement)("span",null,l("Could Be Better",h));break;case p<60:t=Object(r.createElement)("span",null,l("Getting There",h));break;case p<75:t=Object(r.createElement)("span",null,l("Looks Good! 👍👍",h));break;case 75<p:t=Object(r.createElement)("span",null,l("Super! 🔥🔥🔥",h));break;default:t=!1}return Object(r.createElement)(c,null,Object(r.createElement)(u,{title:n,className:i()("aioseo-headline-analyzer-panel-word-balance","aioseo-headline-analyzer-panel-has-icon",f),icon:"green"==f?a.a.check:a.a.warning},Object(r.createElement)(d,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-words-block"},Object(r.createElement)("h4",null,t),Object(r.createElement)("p",null,o)),Object(r.createElement)(s.a,{title:C,value:Math.round(100*e.data.result.commonWordsPercentage),goalValue:z,words:e.data.result.commonWords,guideLine:b,classOnScore:m,classOnScoreBg:y}),Object(r.createElement)(s.a,{title:k,value:Math.round(100*e.data.result.uncommonWordsPercentage),goalValue:P,words:e.data.result.uncommonWords,guideLine:v,classOnScore:w,classOnScoreBg:g}),Object(r.createElement)(s.a,{title:A,value:Math.round(100*e.data.result.emotionalWordsPercentage),goalValue:N,words:e.data.result.emotionWords,guideLine:j,classOnScore:E,classOnScoreBg:O}),Object(r.createElement)(s.a,{title:S,value:Math.round(100*e.data.result.powerWordsPercentage),goalValue:D,words:e.data.result.powerWords,guideLine:x,classOnScore:_,classOnScoreBg:T}))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=n(9),o=n(2),i=n.n(o),s=window.wp.i18n.__,l=window.wp.element.Fragment,c=(o=window.wp.components).PanelBody,u=o.PanelRow,d=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){var t=s("Your headline has a neutral sentiment.",d),n=s("Headlines that are strongly positive or negative tend to get more engagement then neutral ones.",d),o=s("Your headline has a positive sentiment.",d),h=s("Positive headlines tend to get better engagement than neutral or negative ones.",d),p=s("Your headline has a negative sentiment.",d),f=s("Negative headlines are attention-grabbing and tend to perform better than neutral ones.",d),m=s("Sentiment",d),y="neu"===e.data.result.sentiment?s("Neutral",d):"pos"===e.data.result.sentiment?s("Positive",d):s("Negative",d),b="neu"===e.data.result.sentiment?a.a.neutral:"pos"===e.data.result.sentiment?a.a.smile:a.a.negative,w="neu"===e.data.result.sentiment?"orange":"pos"===e.data.result.sentiment?"green":"red";return Object(r.createElement)(l,null,Object(r.createElement)(c,{title:m,className:i()("aioseo-headline-analyzer-panel-sentiment","aioseo-headline-analyzer-panel-has-icon",w),icon:b},Object(r.createElement)(u,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},Object(r.createElement)("h4",null,y),"neu"===e.data.result.sentiment?Object(r.createElement)("p",null,Object(r.createElement)("strong",null,t),Object(r.createElement)("br",null),n):"","pos"===e.data.result.sentiment?Object(r.createElement)("p",null,Object(r.createElement)("strong",null,o),Object(r.createElement)("br",null),h):"","neg"===e.data.result.sentiment?Object(r.createElement)("p",null,Object(r.createElement)("strong",null,p),Object(r.createElement)("br",null)," ",f):""))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r,a=n(0),o=(r=window.wp.i18n).__,i=r.sprintf,s=window.wp.element.Fragment,l=(r=window.wp.components).PanelBody,c=r.PanelRow;t.a=function(t){var n=t.data.result.headlineTypes.join(", "),r=o("Headline Type",e.env.VUE_APP_TEXTDOMAIN);t=Object(a.createElement)("span",{className:"aioseo-headline-analyzer-panel-types-title"},r,Object(a.createElement)("span",null,n)),r=i(o("Headlines that are lists and how-to get more engagement on average than other types of headlines. %1sRead more about %2sdifferent types of headlines here%3s →%4s",e.env.VUE_APP_TEXTDOMAIN),"<br/><br/>",'<a href="https://optinmonster.com/why-these-21-headlines-went-viral-and-how-you-can-copy-their-success/" target="_blank" className="aioseo-headline-analyzer-link"><span>',"</span>","</a>");return Object(a.createElement)(s,null,Object(a.createElement)(l,{title:t,className:"aioseo-headline-analyzer-panel-types"},Object(a.createElement)(c,null,Object(a.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},Object(a.createElement)("h4",null,n),Object(a.createElement)("p",{dangerouslySetInnerHTML:{__html:r}})))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=n(9),o=n(2),i=n.n(o);function s(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(e){if("string"==typeof e)return l(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Map"===(n="Object"===n&&e.constructor?e.constructor.name:n)||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?l(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0;return{s:t=function(){},n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:t}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,o=!0,i=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return o=e.done,e},e:function(e){i=!0,a=e},f:function(){try{o||null==n.return||n.return()}finally{if(i)throw a}}}}function l(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var c=window.wp.i18n.__,u=window.wp.element.Fragment,d=(o=window.wp.components).PanelBody,h=o.PanelRow,p=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){var t=c("Character Count",p),n=e.data.result.length,o=n.toString(),l="",f="",m=(e="","");if(1===o.length&&(m='<span class="character-zero">0</span><span class="character-zero">0</span><span>'.concat(n,"</span>")),2===o.length){m='<span class="character-zero">0</span>';var y,b=s(o);try{for(b.s();!(y=b.n()).done;){var w=y.value;m+="<span>".concat(w,"</span>")}}catch(e){b.e(e)}finally{b.f()}}if(3===n.toString().length){var g,v=s(o);try{for(v.s();!(g=v.n()).done;){var E=g.value;m+="<span>".concat(E,"</span>")}}catch(e){v.e(e)}finally{v.f()}}return n<=19?l="red":20<=n&&n<=34?l="orange":35<=n&&n<=66?l="green":67<=n&&n<=79?l="orange":80<=n&&(l="red"),n<=34?(f=c("Too Short 🙃",p),e=c("You have space to add more keywords and power words to boost your rankings and click-through rate.",p)):35<=n&&n<=66?(f=c("Good 🙂",p),e=c("Headlines that are about 55 characters long will display fully in search results and tend to get more clicks.",p)):67<=n&&(f=c("Too Long 😑",p),e=c("At this length, it will get cut off in search results. Try reducing it to about 55 characters.",p)),Object(r.createElement)(u,null,Object(r.createElement)(d,{title:t,className:i()("aioseo-headline-analyzer-panel-character-count","aioseo-headline-analyzer-panel-has-icon",l),icon:"green"===l?a.a.check:a.a.warning},Object(r.createElement)(h,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},Object(r.createElement)("div",{className:"aioseo-headline-analyzer-character-count-container"},Object(r.createElement)("span",{className:"aioseo-headline-analyzer-status-on-character-length"},f),Object(r.createElement)("span",{className:i()("aioseo-headline-analyzer-character-length",l),dangerouslySetInnerHTML:{__html:m}})),Object(r.createElement)("p",null,e)))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=n(9),o=n(2),i=n.n(o);function s(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(e){if("string"==typeof e)return l(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Map"===(n="Object"===n&&e.constructor?e.constructor.name:n)||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?l(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0;return{s:t=function(){},n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:t}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,o=!0,i=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return o=e.done,e},e:function(e){i=!0,a=e},f:function(){try{o||null==n.return||n.return()}finally{if(i)throw a}}}}function l(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var c=window.wp.i18n.__,u=window.wp.element.Fragment,d=(o=window.wp.components).PanelBody,h=o.PanelRow,p=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){var t=c("Word Count",p),n=e.data.result.wordCount,o=n.toString(),l="",f="",m=(e="","");if(1===o.length&&(m='<span class="character-zero">0</span><span class="character-zero">0</span><span>'.concat(n,"</span>")),2===o.length){m='<span class="character-zero">0</span>';var y,b=s(o);try{for(b.s();!(y=b.n()).done;){var w=y.value;m+="<span>".concat(w,"</span>")}}catch(e){b.e(e)}finally{b.f()}}if(3===o.length){var g,v=s(o);try{for(v.s();!(g=v.n()).done;){var E=g.value;m+="<span>".concat(E,"</span>")}}catch(e){v.e(e)}finally{v.f()}}return n<=4?(l="red",f=c("Not Enough Words 🙃",p),e=c("Your headline doesn’t use enough words. You have more space to add keywords and power words to improve your SEO and get more engagement.",p)):5<=n&&n<=9?(l="green",f=c("Good 🙂",p),e=c("Your headline has the right amount of words. Headlines are more likely to be clicked on in search results if they have about 6 words.",p)):10<=n&&n<=11?(l="orange",f=c("Reduce Word Count 🙂",p)):(l="red",f=c("Too Many Words 😑",p),e=c("Your headline has too many words. Long headlines will get cut off in search results and won’t get as many clicks.",p)),Object(r.createElement)(u,null,Object(r.createElement)(d,{title:t,className:i()("aioseo-headline-analyzer-panel-word-count","aioseo-headline-analyzer-panel-has-icon",l),icon:"green"===l?a.a.check:a.a.warning},Object(r.createElement)(h,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},Object(r.createElement)("div",{className:"aioseo-headline-analyzer-word-counter"},Object(r.createElement)("span",{className:"aioseo-headline-analyzer-status-on-word-length"},f),Object(r.createElement)("span",{className:i()("aioseo-headline-analyzer-word-length",l),dangerouslySetInnerHTML:{__html:m}})),Object(r.createElement)("p",null,e)))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=window.wp.i18n.__,o=window.wp.element.Fragment,i=window.wp.components,s=i.PanelBody,l=i.PanelRow,c=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){var t=a("Beginning & Ending Words",c),n=e.data.result.originalExplodedHeadline,i=a("Most readers only look at the first and last 3 words of a headline before deciding whether to click.",c),u="";e="";return 6<=n.length?(u=n.slice(0,3).join(" "),e=n.slice(-3).join(" ")):3<n.length&&n.length<=5?(u=n.slice(0,3).join(" "),e=n.slice(3).join(" ")):u=n.slice(0,3).join(" "),Object(r.createElement)(o,null,Object(r.createElement)(s,{title:t,className:"aioseo-headline-analyzer-panel-beginning-ending-words"},Object(r.createElement)(l,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},u?Object(r.createElement)(o,null,Object(r.createElement)("ul",{className:"aioseo-headline-analyzer-word-begining-title"},Object(r.createElement)("li",null,a("Beginning Words",c))),Object(r.createElement)("div",{className:"aioseo-headline-analyzer-words beginning"},Object(r.createElement)("span",null,u))):"",e?Object(r.createElement)(o,null,Object(r.createElement)("ul",{className:"aioseo-headline-analyzer-word-ending-title"},Object(r.createElement)("li",null,a("Ending Words",c))),Object(r.createElement)("div",{className:"aioseo-headline-analyzer-words ending"},Object(r.createElement)("span",null,e))):"",Object(r.createElement)("p",{className:"aioseo-headline-analyzer-words-guideline"},i)))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(57),a=n.n(r),o=n(0),i=window.wp.i18n.__,s=window.wp.element.Fragment,l=(r=window.wp.components).PanelBody,c=r.PanelRow,u=window.wp.data.select;t.a=function(t){var n=i("Search Preview",e.env.VUE_APP_TEXTDOMAIN),r=i("Here is how your headline will look like in Google search results page.",e.env.VUE_APP_TEXTDOMAIN),d=u("core/editor").getPermalink(),h={href:d};return Object(o.createElement)(s,null,Object(o.createElement)(l,{title:n,className:"aioseo-headline-analyzer-panel-search-preview"},Object(o.createElement)(c,null,Object(o.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},Object(o.createElement)("div",{className:"aioseo-headline-analyzer-search-prevew-wrap"},Object(o.createElement)("p",{className:"aioseo-headline-analyzer-post-url"},Object(o.createElement)("a",a()({},h,{target:"_blank"}),d)),Object(o.createElement)("h4",null,t.data.sentence),Object(o.createElement)("p",null,r))))))}}).call(this,n(10))},function(e,t){function n(){return e.exports=n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n,r=arguments[t];for(n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},e.exports.default=e.exports,e.exports.__esModule=!0,n.apply(this,arguments)}e.exports=n,e.exports.default=e.exports,e.exports.__esModule=!0},,,,,,,,,function(e,t,n){n(67),e.exports=n(80)},function(e,t,n){"use strict";n.r(t),function(e){var t=n(26),r=n.n(t),a=n(27),o=n.n(a),i=n(43),s=n.n(i),l=n(0),c=(t=n(9),n(22)),u=n(45),d=n(49),h=n(50),p=n(51),f=n(52),m=n(53),y=n(54),b=n(55),w=n(56);function g(e,t){var n,r=Object.keys(e);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(e),t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)),r}function v(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?g(Object(n),!0).forEach((function(t){s()(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):g(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var E=(a=window.wp.i18n).__,O=a.sprintf,j=(i=window.wp.element).Fragment,_=i.useState,T=i.useEffect,x=(a=window.wp.plugins.registerPlugin,(i=window.wp.editPost).PluginSidebar),C=i.PluginSidebarMoreMenuItem,z=window.wp.data.select,k=e.env.VUE_APP_TEXTDOMAIN;a("aioseo-headline-analyzer",{icon:t.a.headline,render:function(){function e(){t?Object(c.b)(window.aioseo.nonce).post("".concat(window.aioseo.urls.restUrl,"aioseo/v1/analyze_headline")).send({title:t}).then((function(e){var t={dataExist:!1};e.body.analysed&&(t.currentHeadlineData=e.body,t.headlineData=e.body,t.dataExist=!0,void 0!==g.headlineData&&(t.previousHeadlinesData=[g.headlineData].concat(o()(A)))),P(v(v({},g),t))})).catch((function(e){P(v(v({},g),{dataExist:!1})),console.log("Couldn't fetch score for headline:",e)})):P(v(v({},g),{dataExist:!1}))}var t=z("core/editor").getEditedPostAttribute("title");T(e,[]),window.wp.data.subscribe((function(){t!==z("core/editor").getEditedPostAttribute("title")&&(t=z("core/editor").getEditedPostAttribute("title"),Object(c.a)(e,2e3))}));var n=E("SEO Headline Analyzer",k),a=E("Write your post title to see the analyzer data. This Headline Analyzer tool enables you to write irresistible SEO headlines that drive traffic, shares, and rank better in search results.",k),i=_({}),s=r()(i,2),g=s[0],P=s[1],A=void 0!==g.previousHeadlinesData?g.previousHeadlinesData:[],N=O(E("This headline analyzer is part of AIOSEO to help you increase your traffic. %1sAnalyze your site further here%2s →%3s",k),O('<a href="%1$s" className="aioseo-headline-analyzer-link" target="_blank"><span>',window.aioseo.urls.aio.seoAnalysis),"</span>","</a>"),S=document.querySelector(".components-button[aria-label='".concat(n,"'] svg"));S&&(i=document.createElement("span"),g.dataExist&&void 0!==g.currentHeadlineData.score?(s=g.currentHeadlineData.score,S.parentNode.setAttribute("aioseo-button-color",s<40?"red":s<=60?"orange":"green"),S.nextElementSibling?S.nextElementSibling.innerHTML="".concat(s,"/100"):(i.innerHTML="".concat(s,"/100"),S.parentNode.insertBefore(i,S.nextSibling))):(S.parentNode.setAttribute("aioseo-button-color","red"),S.nextElementSibling?S.nextElementSibling.innerHTML="00/100":(i.innerHTML="00/100",S.parentNode.insertBefore(i,S.nextSibling)))),!(S=document.querySelector(".aioseo-headline-analyzer-wrapper"))||(D=S.parentNode.querySelectorAll(".components-panel__header"))&&D.forEach((function(e){(e=e.querySelector('[aria-pressed="true"]'))&&null!==e&&(e.style.display="none")}));var D=function(e){P(v(v({},g),e))};return Object(l.createElement)(j,null,Object(l.createElement)(C,{target:"aioseo-headline-analyzer"},n),Object(l.createElement)(x,{name:"aioseo-headline-analyzer",title:n,className:"aioseo-headline-analyzer-wrapper"},void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(u.a,{analyzer:g,setAnalyzer:D}):Object(l.createElement)("p",{className:"aioseo-headline-analyzer-empty-title-warning"},a),void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed&&0<A.length?Object(l.createElement)(d.a,{analyzer:g,setAnalyzer:D}):"",void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(h.a,{data:g.headlineData}):"",void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(p.a,{data:g.headlineData}):"",void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(f.a,{data:g.headlineData}):"",void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(m.a,{data:g.headlineData}):"",void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(y.a,{data:g.headlineData}):"",void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(b.a,{data:g.headlineData}):"",void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(w.a,{data:g.headlineData}):"",Object(l.createElement)("div",{className:"aioseo-headline-analyzer-bottom-notice"},Object(l.createElement)("p",{dangerouslySetInnerHTML:{__html:N}}))))}})}.call(this,n(10))},function(e,t){e.exports=function(e){if(Array.isArray(e))return e},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,a,o=[],i=!0,s=!1;try{for(n=n.call(e);!(i=(r=n.next()).done)&&(o.push(r.value),!t||o.length!==t);i=!0);}catch(e){s=!0,a=e}finally{try{i||null==n.return||n.return()}finally{if(s)throw a}}return o}},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,n){var r=n(34);e.exports=function(e){if(Array.isArray(e))return r(e)},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,n){function r(e){if(e)return function(e){for(var t in r.prototype)e[t]=r.prototype[t];return e}(e)}(e.exports=r).prototype.on=r.prototype.addEventListener=function(e,t){return this._callbacks=this._callbacks||{},(this._callbacks["$"+e]=this._callbacks["$"+e]||[]).push(t),this},r.prototype.once=function(e,t){function n(){this.off(e,n),t.apply(this,arguments)}return n.fn=t,this.on(e,n),this},r.prototype.off=r.prototype.removeListener=r.prototype.removeAllListeners=r.prototype.removeEventListener=function(e,t){if(this._callbacks=this._callbacks||{},0==arguments.length)return this._callbacks={},this;var n,r=this._callbacks["$"+e];if(!r)return this;if(1==arguments.length)return delete this._callbacks["$"+e],this;for(var a=0;a<r.length;a++)if((n=r[a])===t||n.fn===t){r.splice(a,1);break}return 0===r.length&&delete this._callbacks["$"+e],this},r.prototype.emit=function(e){this._callbacks=this._callbacks||{};for(var t=new Array(arguments.length-1),n=this._callbacks["$"+e],r=1;r<arguments.length;r++)t[r-1]=arguments[r];if(n){r=0;for(var a=(n=n.slice(0)).length;r<a;++r)n[r].apply(this,t)}return this},r.prototype.listeners=function(e){return this._callbacks=this._callbacks||{},this._callbacks["$"+e]||[]},r.prototype.hasListeners=function(e){return!!this.listeners(e).length}},function(e,t){((e.exports=a).default=a).stable=i,a.stableStringify=i;var n=[],r=[];function a(e,t,a){for(function e(t,a,o,i){var s;if("object"==typeof t&&null!==t){for(s=0;s<o.length;s++)if(o[s]===t){var l=Object.getOwnPropertyDescriptor(i,a);return void(void 0!==l.get?l.configurable?(Object.defineProperty(i,a,{value:"[Circular]"}),n.push([i,a,t,l])):r.push([t,a]):(i[a]="[Circular]",n.push([i,a,t])))}if(o.push(t),Array.isArray(t))for(s=0;s<t.length;s++)e(t[s],s,o,t);else{var c=Object.keys(t);for(s=0;s<c.length;s++){var u=c[s];e(t[u],u,o,t)}}o.pop()}}(e,"",[],void 0),a=0===r.length?JSON.stringify(e,t,a):JSON.stringify(e,s(t),a);0!==n.length;){var o=n.pop();4===o.length?Object.defineProperty(o[0],o[1],o[3]):o[0][o[1]]=o[2]}return a}function o(e,t){return e<t?-1:t<e?1:0}function i(e,t,a){for(e=function e(t,a,i,s){var l;if("object"==typeof t&&null!==t){for(l=0;l<i.length;l++)if(i[l]===t){var c=Object.getOwnPropertyDescriptor(s,a);return void(void 0!==c.get?c.configurable?(Object.defineProperty(s,a,{value:"[Circular]"}),n.push([s,a,t,c])):r.push([t,a]):(s[a]="[Circular]",n.push([s,a,t])))}if("function"!=typeof t.toJSON){if(i.push(t),Array.isArray(t))for(l=0;l<t.length;l++)e(t[l],l,i,t);else{var u={},d=Object.keys(t).sort(o);for(l=0;l<d.length;l++){var h=d[l];e(t[h],h,i,t),u[h]=t[h]}if(void 0===s)return u;n.push([s,a,t]),s[a]=u}i.pop()}}}(e,"",[],void 0)||e,a=0===r.length?JSON.stringify(e,t,a):JSON.stringify(e,s(t),a);0!==n.length;){var i=n.pop();4===i.length?Object.defineProperty(i[0],i[1],i[3]):i[0][i[1]]=i[2]}return a}function s(e){return e=void 0!==e?e:function(e,t){return t},function(t,n){if(0<r.length)for(var a=0;a<r.length;a++){var o=r[a];if(o[1]===t&&o[0]===n){n="[Circular]",r.splice(a,1);break}}return e.call(this,t,n)}}},function(e,t,n){"use strict";function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var a=n(35);function o(e){if(e)return function(e){for(var t in o.prototype)Object.prototype.hasOwnProperty.call(o.prototype,t)&&(e[t]=o.prototype[t]);return e}(e)}(e.exports=o).prototype.clearTimeout=function(){return clearTimeout(this._timer),clearTimeout(this._responseTimeoutTimer),clearTimeout(this._uploadTimeoutTimer),delete this._timer,delete this._responseTimeoutTimer,delete this._uploadTimeoutTimer,this},o.prototype.parse=function(e){return this._parser=e,this},o.prototype.responseType=function(e){return this._responseType=e,this},o.prototype.serialize=function(e){return this._serializer=e,this},o.prototype.timeout=function(e){if(!e||"object"!==r(e))return this._timeout=e,this._responseTimeout=0,this._uploadTimeout=0,this;for(var t in e)if(Object.prototype.hasOwnProperty.call(e,t))switch(t){case"deadline":this._timeout=e.deadline;break;case"response":this._responseTimeout=e.response;break;case"upload":this._uploadTimeout=e.upload;break;default:console.warn("Unknown timeout option",t)}return this},o.prototype.retry=function(e,t){return this._maxRetries=e=(e=0===arguments.length||!0===e?1:e)<=0?0:e,this._retries=0,this._retryCallback=t,this};var i=["ECONNRESET","ETIMEDOUT","EADDRINFO","ESOCKETTIMEDOUT"];o.prototype._shouldRetry=function(e,t){if(!this._maxRetries||this._retries++>=this._maxRetries)return!1;if(this._retryCallback)try{var n=this._retryCallback(e,t);if(!0===n)return!0;if(!1===n)return!1}catch(e){console.error(e)}if(t&&t.status&&500<=t.status&&501!==t.status)return!0;if(e){if(e.code&&i.includes(e.code))return!0;if(e.timeout&&"ECONNABORTED"===e.code)return!0;if(e.crossDomain)return!0}return!1},o.prototype._retry=function(){return this.clearTimeout(),this.req&&(this.req=null,this.req=this.request()),this._aborted=!1,this.timedout=!1,this.timedoutError=null,this._end()},o.prototype.then=function(e,t){var n,r=this;return this._fullfilledPromise||((n=this)._endCalled&&console.warn("Warning: superagent request was sent twice, because both .end() and .then() were called. Never call .end() if you use promises"),this._fullfilledPromise=new Promise((function(e,t){n.on("abort",(function(){var e;r.timedout&&r.timedoutError?t(r.timedoutError):((e=new Error("Aborted")).code="ABORTED",e.status=r.status,e.method=r.method,e.url=r.url,t(e))})),n.end((function(n,r){n?t(n):e(r)}))}))),this._fullfilledPromise.then(e,t)},o.prototype.catch=function(e){return this.then(void 0,e)},o.prototype.use=function(e){return e(this),this},o.prototype.ok=function(e){if("function"!=typeof e)throw new Error("Callback required");return this._okCallback=e,this},o.prototype._isResponseOK=function(e){return!!e&&(this._okCallback?this._okCallback(e):200<=e.status&&e.status<300)},o.prototype.getHeader=o.prototype.get=function(e){return this._header[e.toLowerCase()]},o.prototype.set=function(e,t){if(a(e)){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&this.set(n,e[n]);return this}return this._header[e.toLowerCase()]=t,this.header[e]=t,this},o.prototype.unset=function(e){return delete this._header[e.toLowerCase()],delete this.header[e],this},o.prototype.field=function(e,t){if(null==e)throw new Error(".field(name, val) name can not be empty");if(this._data)throw new Error(".field() can't be used if .send() is used. Please use only .send() or only .field() & .attach()");if(a(e)){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&this.field(n,e[n]);return this}if(Array.isArray(t)){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&this.field(e,t[r]);return this}if(null==t)throw new Error(".field(name, val) val can not be empty");return"boolean"==typeof t&&(t=String(t)),this._getFormData().append(e,t),this},o.prototype.abort=function(){return this._aborted||(this._aborted=!0,this.xhr&&this.xhr.abort(),this.req&&this.req.abort(),this.clearTimeout(),this.emit("abort")),this},o.prototype._auth=function(e,t,n,r){switch(n.type){case"basic":this.set("Authorization","Basic ".concat(r("".concat(e,":").concat(t))));break;case"auto":this.username=e,this.password=t;break;case"bearer":this.set("Authorization","Bearer ".concat(e))}return this},o.prototype.withCredentials=function(e){return this._withCredentials=e=void 0===e||e,this},o.prototype.redirects=function(e){return this._maxRedirects=e,this},o.prototype.maxResponseSize=function(e){if("number"!=typeof e)throw new TypeError("Invalid argument");return this._maxResponseSize=e,this},o.prototype.toJSON=function(){return{method:this.method,url:this.url,data:this._data,headers:this._header}},o.prototype.send=function(e){var t=a(e),n=this._header["content-type"];if(this._formData)throw new Error(".send() can't be used if .attach() or .field() is used. Please use only .send() or only .field() & .attach()");if(t&&!this._data)Array.isArray(e)?this._data=[]:this._isHost(e)||(this._data={});else if(e&&this._data&&this._isHost(this._data))throw new Error("Can't merge these send calls");if(t&&a(this._data))for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&(this._data[r]=e[r]);else"string"==typeof e?(n||this.type("form"),n=this._header["content-type"],this._data="application/x-www-form-urlencoded"===n?this._data?"".concat(this._data,"&").concat(e):e:(this._data||"")+e):this._data=e;return!t||this._isHost(e)||n||this.type("json"),this},o.prototype.sortQuery=function(e){return this._sort=void 0===e||e,this},o.prototype._finalizeQueryString=function(){var e,t=this._query.join("&");t&&(this.url+=(this.url.includes("?")?"&":"?")+t),this._query.length=0,!this._sort||0<=(e=this.url.indexOf("?"))&&(t=this.url.slice(e+1).split("&"),"function"==typeof this._sort?t.sort(this._sort):t.sort(),this.url=this.url.slice(0,e)+"?"+t.join("&"))},o.prototype._appendQueryString=function(){console.warn("Unsupported")},o.prototype._timeoutError=function(e,t,n){this._aborted||((e=new Error("".concat(e+t,"ms exceeded"))).timeout=t,e.code="ECONNABORTED",e.errno=n,this.timedout=!0,this.timedoutError=e,this.abort(),this.callback(e))},o.prototype._setTimeouts=function(){var e=this;this._timeout&&!this._timer&&(this._timer=setTimeout((function(){e._timeoutError("Timeout of ",e._timeout,"ETIME")}),this._timeout)),this._responseTimeout&&!this._responseTimeoutTimer&&(this._responseTimeoutTimer=setTimeout((function(){e._timeoutError("Response timeout of ",e._responseTimeout,"ETIMEDOUT")}),this._responseTimeout))}},function(e,t,n){"use strict";var r=n(78);function a(e){if(e)return function(e){for(var t in a.prototype)Object.prototype.hasOwnProperty.call(a.prototype,t)&&(e[t]=a.prototype[t]);return e}(e)}(e.exports=a).prototype.get=function(e){return this.header[e.toLowerCase()]},a.prototype._setHeaderProperties=function(e){var t=e["content-type"]||"";this.type=r.type(t);var n,a=r.params(t);for(n in a)Object.prototype.hasOwnProperty.call(a,n)&&(this[n]=a[n]);this.links={};try{e.link&&(this.links=r.parseLinks(e.link))}catch(e){}},a.prototype._setStatusProperties=function(e){var t=e/100|0;this.statusCode=e,this.status=this.statusCode,this.statusType=t,this.info=1==t,this.ok=2==t,this.redirect=3==t,this.clientError=4==t,this.serverError=5==t,this.error=(4==t||5==t)&&this.toError(),this.created=201===e,this.accepted=202===e,this.noContent=204===e,this.badRequest=400===e,this.unauthorized=401===e,this.notAcceptable=406===e,this.forbidden=403===e,this.notFound=404===e,this.unprocessableEntity=422===e}},function(e,t,n){"use strict";t.type=function(e){return e.split(/ *; */).shift()},t.params=function(e){return e.split(/ *; */).reduce((function(e,t){t=(n=t.split(/ *= */)).shift();var n=n.shift();return t&&n&&(e[t]=n),e}),{})},t.parseLinks=function(e){return e.split(/ *, */).reduce((function(e,t){var n=t.split(/ *; */);t=n[0].slice(1,-1);return e[n[1].split(/ *= */)[1].slice(1,-1)]=t,e}),{})},t.cleanHeader=function(e,t){return delete e["content-type"],delete e["content-length"],delete e["transfer-encoding"],delete e.host,t&&(delete e.authorization,delete e.cookie),e}},function(e,t,n){"use strict";function r(){this._defaults=[]}["use","on","once","set","query","type","accept","auth","withCredentials","sortQuery","retry","ok","redirects","timeout","buffer","serialize","parse","ca","key","pfx","cert","disableTLSCerts"].forEach((function(e){r.prototype[e]=function(){for(var t=arguments.length,n=new Array(t),r=0;r<t;r++)n[r]=arguments[r];return this._defaults.push({fn:e,args:n}),this}})),r.prototype._setDefaults=function(e){this._defaults.forEach((function(t){e[t.fn].apply(e,function(e){return function(e){if(Array.isArray(e)){for(var t=0,n=new Array(e.length);t<e.length;t++)n[t]=e[t];return n}}(e)||function(e){if(Symbol.iterator in Object(e)||"[object Arguments]"===Object.prototype.toString.call(e))return Array.from(e)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance")}()}(t.args))}))},e.exports=r},function(e,t,n){"use strict";n.r(t)}]);
|
1 |
+
/*! ! built on Tuesday, September 21st 2021, 9:50:25 pm */
|
2 |
!function(e){var t={};function n(r){if(t[r])return t[r].exports;var a=t[r]={i:r,l:!1,exports:{}};return e[r].call(a.exports,a,a.exports,n),a.l=!0,a.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var a in e)n.d(r,a,function(t){return e[t]}.bind(null,a));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=66)}([function(e,t){e.exports=window.wp.element},,function(e,t,n){var r;!function(){"use strict";var n={}.hasOwnProperty;function a(){for(var e=[],t=0;t<arguments.length;t++){var r=arguments[t];if(r){var o,i=typeof r;if("string"==i||"number"==i)e.push(r);else if(Array.isArray(r))!r.length||(o=a.apply(null,r))&&e.push(o);else if("object"==i)if(r.toString===Object.prototype.toString)for(var s in r)n.call(r,s)&&r[s]&&e.push(s);else e.push(r.toString())}}return e.join(" ")}e.exports?(a.default=a,e.exports=a):void 0===(r=function(){return a}.apply(t,[]))||(e.exports=r)}()},,,,,,,function(e,t,n){"use strict";var r=n(0);(n={}).headline=Object(r.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M15.817 2H22v.038l-6.183 4.226V2.001zm-7.62 9.473V2H2.016v4.683-.267l6.126 5.094.057-.038zm-6.182 5.061l6.183 4.213v1.252H2.015v-5.465zm13.802-.857L22 11.559v10.437h-6.183v-6.32z",fill:"#141B38"}),Object(r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8.198 11.435l-.057.039L2.016 6.38v.265-4.644h6.182v9.434zm0 9.226L2.015 16.45v5.55h6.183v-1.337zm7.62-5.07L22 11.474v10.522h-6.183v-6.405zM22 2.001l-6.183 4.226V2H22z",fill:"#141B38"}),Object(r.createElement)("path",{d:"M8.141 13.537L22 4.064v5.432l-13.8 9.19L2 14.46l.016-6.018 6.125 5.094z",fill:"#141B38"})),n.headlineBlack=Object(r.createElement)("svg",{width:"15",height:"14",viewBox:"0 0 15 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{d:"M13.5 2V12H14.5C14.6458 12 14.7604 12.0521 14.8438 12.1562C14.9479 12.2396 15 12.3542 15 12.5V13.5C15 13.6458 14.9479 13.7604 14.8438 13.8438C14.7604 13.9479 14.6458 14 14.5 14H9.5C9.35417 14 9.22917 13.9479 9.125 13.8438C9.04167 13.7604 9 13.6458 9 13.5V12.5C9 12.3542 9.04167 12.2396 9.125 12.1562C9.22917 12.0521 9.35417 12 9.5 12H10.5V8H4.5V12H5.5C5.64583 12 5.76042 12.0521 5.84375 12.1562C5.94792 12.2396 6 12.3542 6 12.5V13.5C6 13.6458 5.94792 13.7604 5.84375 13.8438C5.76042 13.9479 5.64583 14 5.5 14H0.5C0.354167 14 0.229167 13.9479 0.125 13.8438C0.0416667 13.7604 0 13.6458 0 13.5V12.5C0 12.3542 0.0416667 12.2396 0.125 12.1562C0.229167 12.0521 0.354167 12 0.5 12H1.5V2H0.5C0.354167 2 0.229167 1.95833 0.125 1.875C0.0416667 1.77083 0 1.64583 0 1.5V0.5C0 0.354167 0.0416667 0.239583 0.125 0.15625C0.229167 0.0520833 0.354167 0 0.5 0H5.5C5.64583 0 5.76042 0.0520833 5.84375 0.15625C5.94792 0.239583 6 0.354167 6 0.5V1.5C6 1.64583 5.94792 1.77083 5.84375 1.875C5.76042 1.95833 5.64583 2 5.5 2H4.5V6H10.5V2H9.5C9.35417 2 9.22917 1.95833 9.125 1.875C9.04167 1.77083 9 1.64583 9 1.5V0.5C9 0.354167 9.04167 0.239583 9.125 0.15625C9.22917 0.0520833 9.35417 0 9.5 0H14.5C14.6458 0 14.7604 0.0520833 14.8438 0.15625C14.9479 0.239583 15 0.354167 15 0.5V1.5C15 1.64583 14.9479 1.77083 14.8438 1.875C14.7604 1.95833 14.6458 2 14.5 2H13.5Z",fill:"#000"})),n.warning=Object(r.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.99 0C4.47 0 0 4.48 0 10C0 15.52 4.47 20 9.99 20C15.52 20 20 15.52 20 10C20 4.48 15.52 0 9.99 0ZM11 5.00002H9V11H11V5.00002ZM11 13H9V15H11V13ZM2.00002 10C2.00002 14.42 5.58002 18 10 18C14.42 18 18 14.42 18 10C18 5.58002 14.42 2.00002 10 2.00002C5.58002 2.00002 2.00002 5.58002 2.00002 10Z",fill:"#005AE0"})),n.smile=Object(r.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.99 0C4.47 0 0 4.48 0 10C0 15.52 4.47 20 9.99 20C15.52 20 20 15.52 20 10C20 4.48 15.52 0 9.99 0ZM6.5 6C5.67157 6 5 6.67157 5 7.5C5 8.32843 5.67157 9 6.5 9C7.32843 9 8 8.32843 8 7.5C8 6.67157 7.32843 6 6.5 6ZM13.5 6C12.6716 6 12 6.67157 12 7.5C12 8.32843 12.6716 9 13.5 9C14.3284 9 15 8.32843 15 7.5C15 6.67157 14.3284 6 13.5 6ZM6.55 12C7.25 13.19 8.52 14 10 14C11.48 14 12.75 13.19 13.45 12H15.12C14.32 14.05 12.33 15.5 10 15.5C7.67 15.5 5.68 14.05 4.88 12H6.55ZM2 10C2 14.42 5.58 18 10 18C14.42 18 18 14.42 18 10C18 5.58 14.42 2 10 2C5.58 2 2 5.58 2 10Z",fill:"#00AA63"})),n.neutral=Object(r.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.99 0C4.47 0 0 4.48 0 10C0 15.52 4.47 20 9.99 20C15.52 20 20 15.52 20 10C20 4.48 15.52 0 9.99 0ZM5 7.5C5 6.67157 5.67157 6 6.5 6C7.32843 6 8 6.67157 8 7.5C8 8.32843 7.32843 9 6.5 9C5.67157 9 5 8.32843 5 7.5ZM13.5 6C12.6716 6 12 6.67157 12 7.5C12 8.32843 12.6716 9 13.5 9C14.3284 9 15 8.32843 15 7.5C15 6.67157 14.3284 6 13.5 6ZM7 13.5V12H13V13.5H7ZM2 10C2 14.42 5.58 18 10 18C14.42 18 18 14.42 18 10C18 5.58 14.42 2 10 2C5.58 2 2 5.58 2 10Z",fill:"#005AE0"})),n.negative=Object(r.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.99 0C4.47 0 0 4.48 0 10C0 15.52 4.47 20 9.99 20C15.52 20 20 15.52 20 10C20 4.48 15.52 0 9.99 0ZM6.5 6C5.67157 6 5 6.67157 5 7.5C5 8.32843 5.67157 9 6.5 9C7.32843 9 8 8.32843 8 7.5C8 6.67157 7.32843 6 6.5 6ZM13.5 6C12.6716 6 12 6.67157 12 7.5C12 8.32843 12.6716 9 13.5 9C14.3284 9 15 8.32843 15 7.5C15 6.67157 14.3284 6 13.5 6ZM4.88 15.5C5.68 13.45 7.67 12 10 12C12.33 12 14.32 13.45 15.12 15.5H13.45C12.75 14.31 11.48 13.5 10 13.5C8.52 13.5 7.24 14.31 6.55 15.5H4.88ZM2 10C2 14.42 5.58 18 10 18C14.42 18 18 14.42 18 10C18 5.58 14.42 2 10 2C5.58 2 2 5.58 2 10Z",fill:"#DF2A4A"})),n.check=Object(r.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10 0C4.48 0 0 4.48 0 10C0 15.52 4.48 20 10 20C15.52 20 20 15.52 20 10C20 4.48 15.52 0 10 0ZM10 18C5.59 18 2 14.41 2 10C2 5.59 5.59 2 10 2C14.41 2 18 5.59 18 10C18 14.41 14.41 18 10 18ZM8 12.17L14.59 5.58L16 7L8 15L4 11L5.41 9.59L8 12.17Z",fill:"#00AA63"})),t.a=n},function(e,t){var n,r;e=e.exports={};function a(){throw new Error("setTimeout has not been defined")}function o(){throw new Error("clearTimeout has not been defined")}function i(e){if(n===setTimeout)return setTimeout(e,0);if((n===a||!n)&&setTimeout)return n=setTimeout,setTimeout(e,0);try{return n(e,0)}catch(t){try{return n.call(null,e,0)}catch(t){return n.call(this,e,0)}}}!function(){try{n="function"==typeof setTimeout?setTimeout:a}catch(e){n=a}try{r="function"==typeof clearTimeout?clearTimeout:o}catch(e){r=o}}();var s,l=[],c=!1,u=-1;function d(){c&&s&&(c=!1,s.length?l=s.concat(l):u=-1,l.length&&h())}function h(){if(!c){var e=i(d);c=!0;for(var t=l.length;t;){for(s=l,l=[];++u<t;)s&&s[u].run();u=-1,t=l.length}s=null,c=!1,function(e){if(r===clearTimeout)return clearTimeout(e);if((r===o||!r)&&clearTimeout)return r=clearTimeout,clearTimeout(e);try{r(e)}catch(t){try{return r.call(null,e)}catch(t){return r.call(this,e)}}}(e)}}function p(e,t){this.fun=e,this.array=t}function f(){}e.nextTick=function(e){var t=new Array(arguments.length-1);if(1<arguments.length)for(var n=1;n<arguments.length;n++)t[n-1]=arguments[n];l.push(new p(e,t)),1!==l.length||c||i(h)},p.prototype.run=function(){this.fun.apply(null,this.array)},e.title="browser",e.browser=!0,e.env={},e.argv=[],e.version="",e.versions={},e.on=f,e.addListener=f,e.once=f,e.off=f,e.removeListener=f,e.removeAllListeners=f,e.emit=f,e.prependListener=f,e.prependOnceListener=f,e.listeners=function(e){return[]},e.binding=function(e){throw new Error("process.binding is not supported")},e.cwd=function(){return"/"},e.chdir=function(e){throw new Error("process.chdir is not supported")},e.umask=function(){return 0}},,,,,,,,,,,,function(e,t,n){"use strict";n.d(t,"a",(function(){return o})),n.d(t,"b",(function(){return i}));t=n(44);var r,a=n.n(t),o=function(e,t){return function(){for(var n=arguments.length,a=new Array(n),o=0;o<n;o++)a[o]=arguments[o];clearTimeout(r),r=setTimeout((function(){return e.apply(void 0,a)}),t)}.call()},i=function(e){return a.a.agent().set("X-WP-Nonce",e).use((function(e){e.on("response",(function(e){(401===e.status||403===e.status)&&console.error(e)}))}))}},,,function(e,t,n){"use strict";(function(e){var r=n(0),a=n(2),o=n.n(a),i=window.wp.i18n.__;t.a=function(t){var n=i("Goal: ",e.env.VUE_APP_TEXTDOMAIN),a={width:t.value+"%"};return Object(r.createElement)("div",{className:"aioseo-headline-analyzer-words-block"},Object(r.createElement)("h5",null,t.title),Object(r.createElement)("div",{className:"aioseo-headline-analyzer-words-block-data"},Object(r.createElement)("span",{className:o()("aioseo-headline-analyzer-words-block-percentage",t.classOnScore)},t.value,"%"),Object(r.createElement)("span",{className:o()("aioseo-headline-analyzer-words-block-percentage-right-column",t.classOnScore)},Object(r.createElement)("span",{className:"aioseo-headline-analyzer-words-block-goal"},n," ",t.goalValue),Object(r.createElement)("span",{className:"aioseo-headline-analyzer-words-block-progressbar"},Object(r.createElement)("span",{className:"aioseo-headline-analyzer-progressbar-bg"}),Object(r.createElement)("span",{className:o()("aioseo-headline-analyzer-progressbar-part",t.classOnScoreBg),style:a})))),Object(r.createElement)("ul",{className:"aioseo-headline-analyzer-words-tag-list"},0<t.words.length?t.words.map((function(e,t){return Object(r.createElement)("li",{key:t},e)})):""),Object(r.createElement)("p",{className:"aioseo-headline-analyzer-words-guideline"},t.guideLine))}}).call(this,n(10))},function(e,t,n){var r=n(68),a=n(69),o=n(33),i=n(70);e.exports=function(e,t){return r(e)||a(e,t)||o(e,t)||i()},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,n){var r=n(71),a=n(72),o=n(33),i=n(73);e.exports=function(e){return r(e)||a(e)||o(e)||i()},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,n){"use strict";var r=n(0),a=window.wp.element.Fragment;t.a=function(e){var t=e.barScore;e=e.color;return Object(r.createElement)(a,null,Object(r.createElement)("div",{className:"aioseo-donut-container",style:{flexDirection:"column"}},Object(r.createElement)("svg",{className:"aioseo-donut-score-svg",viewBox:"0 0 33.83098862 33.83098862",xmlns:"http://www.w3.org/2000/svg"},Object(r.createElement)("circle",{className:"aioseo-seo-headline-analyzer-score__background",stroke:"#e8e8eb",strokeWidth:"2",fill:"none",cx:"16.91549431",cy:"16.91549431",r:"15.91549431"}),Object(r.createElement)("circle",{className:"aioseo-seo-headline-analyzer-score__circle",stroke:e,strokeWidth:"2",strokeDasharray:"".concat(t,", 100"),strokeLinecap:"round",fill:"none",cx:"16.91549431",cy:"16.91549431",r:"15.91549431"}))))}},,,,,function(e,t,n){var r=n(34);e.exports=function(e,t){if(e){if("string"==typeof e)return r(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Map"===(n="Object"===n&&e.constructor?e.constructor.name:n)||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?r(e,t):void 0}},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=function(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,n){"use strict";function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}e.exports=function(e){return null!==e&&"object"===r(e)}},,,,,,,,function(e,t){e.exports=function(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,n){"use strict";function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var a="undefined"!=typeof window?window:"undefined"==typeof self?void console.warn("Using browser-only version of superagent in non-browser environment"):self,o=n(74),i=n(75),s=n(76),l=n(35),c=n(77),u=n(79);function d(){}e.exports=function(e,n){return"function"==typeof n?new t.Request("GET",e).end(n):1===arguments.length?new t.Request("GET",e):new t.Request(e,n)};var h=t=e.exports;t.Request=w,h.getXHR=function(){if(a.XMLHttpRequest&&(!a.location||"file:"!==a.location.protocol||!a.ActiveXObject))return new XMLHttpRequest;try{return new ActiveXObject("Microsoft.XMLHTTP")}catch(e){}try{return new ActiveXObject("Msxml2.XMLHTTP.6.0")}catch(e){}try{return new ActiveXObject("Msxml2.XMLHTTP.3.0")}catch(e){}try{return new ActiveXObject("Msxml2.XMLHTTP")}catch(e){}throw new Error("Browser-only version of superagent could not find XHR")};var p="".trim?function(e){return e.trim()}:function(e){return e.replace(/(^\s*|\s*$)/g,"")};function f(e){if(!l(e))return e;var t,n=[];for(t in e)Object.prototype.hasOwnProperty.call(e,t)&&function e(t,n,r){if(void 0!==r)if(null!==r)if(Array.isArray(r))r.forEach((function(r){e(t,n,r)}));else if(l(r))for(var a in r)Object.prototype.hasOwnProperty.call(r,a)&&e(t,"".concat(n,"[").concat(a,"]"),r[a]);else t.push(encodeURI(n)+"="+encodeURIComponent(r));else t.push(encodeURI(n))}(n,t,e[t]);return n.join("&")}function m(e){for(var t,n,r={},a=e.split("&"),o=0,i=a.length;o<i;++o)-1===(n=(t=a[o]).indexOf("="))?r[decodeURIComponent(t)]="":r[decodeURIComponent(t.slice(0,n))]=decodeURIComponent(t.slice(n+1));return r}function y(e){return/[/+]json($|[^-\w])/.test(e)}function b(e){this.req=e,this.xhr=this.req.xhr,this.text="HEAD"!==this.req.method&&(""===this.xhr.responseType||"text"===this.xhr.responseType)||void 0===this.xhr.responseType?this.xhr.responseText:null,this.statusText=this.req.xhr.statusText;var t=this.xhr.status;this._setStatusProperties(t=1223===t?204:t),this.headers=function(e){for(var t,n,r,a=e.split(/\r?\n/),o={},i=0,s=a.length;i<s;++i)-1!==(r=(t=a[i]).indexOf(":"))&&(n=t.slice(0,r).toLowerCase(),r=p(t.slice(r+1)),o[n]=r);return o}(this.xhr.getAllResponseHeaders()),this.header=this.headers,this.header["content-type"]=this.xhr.getResponseHeader("content-type"),this._setHeaderProperties(this.header),null===this.text&&e._responseType?this.body=this.xhr.response:this.body="HEAD"===this.req.method?null:this._parseBody(this.text||this.xhr.response)}function w(e,t){var n=this;this._query=this._query||[],this.method=e,this.url=t,this.header={},this._header={},this.on("end",(function(){var e,t=null,r=null;try{r=new b(n)}catch(r){return(t=new Error("Parser is unable to parse the response")).parse=!0,t.original=r,n.xhr?(t.rawResponse=void 0===n.xhr.responseType?n.xhr.responseText:n.xhr.response,t.status=n.xhr.status||null,t.statusCode=t.status):(t.rawResponse=null,t.status=null),n.callback(t)}n.emit("response",r);try{n._isResponseOK(r)||(e=new Error(r.statusText||r.text||"Unsuccessful HTTP response"))}catch(r){e=r}e?(e.original=t,e.response=r,e.status=r.status,n.callback(e,r)):n.callback(null,r)}))}function g(e,t,n){return e=h("DELETE",e),"function"==typeof t&&(n=t,t=null),t&&e.send(t),n&&e.end(n),e}h.serializeObject=f,h.parseString=m,h.types={html:"text/html",json:"application/json",xml:"text/xml",urlencoded:"application/x-www-form-urlencoded",form:"application/x-www-form-urlencoded","form-data":"application/x-www-form-urlencoded"},h.serialize={"application/x-www-form-urlencoded":f,"application/json":i},h.parse={"application/x-www-form-urlencoded":m,"application/json":JSON.parse},c(b.prototype),b.prototype._parseBody=function(e){var t=h.parse[this.type];return this.req._parser?this.req._parser(this,e):(t=!t&&y(this.type)?h.parse["application/json"]:t)&&e&&(0<e.length||e instanceof Object)?t(e):null},b.prototype.toError=function(){var e=(n=this.req).method,t=n.url,n="cannot ".concat(e," ").concat(t," (").concat(this.status,")");return(n=new Error(n)).status=this.status,n.method=e,n.url=t,n},h.Response=b,o(w.prototype),s(w.prototype),w.prototype.type=function(e){return this.set("Content-Type",h.types[e]||e),this},w.prototype.accept=function(e){return this.set("Accept",h.types[e]||e),this},w.prototype.auth=function(e,t,n){return"object"===r(t=1===arguments.length?"":t)&&null!==t&&(n=t,t=""),n=n||{type:"function"==typeof btoa?"basic":"auto"},this._auth(e,t,n,(function(e){if("function"==typeof btoa)return btoa(e);throw new Error("Cannot use basic auth, btoa is not a function")}))},w.prototype.query=function(e){return(e="string"!=typeof e?f(e):e)&&this._query.push(e),this},w.prototype.attach=function(e,t,n){if(t){if(this._data)throw new Error("superagent can't mix .send() and .attach()");this._getFormData().append(e,t,n||t.name)}return this},w.prototype._getFormData=function(){return this._formData||(this._formData=new a.FormData),this._formData},w.prototype.callback=function(e,t){if(this._shouldRetry(e,t))return this._retry();var n=this._callback;this.clearTimeout(),e&&(this._maxRetries&&(e.retries=this._retries-1),this.emit("error",e)),n(e,t)},w.prototype.crossDomainError=function(){var e=new Error("Request has been terminated\nPossible causes: the network is offline, Origin is not allowed by Access-Control-Allow-Origin, the page is being unloaded, etc.");e.crossDomain=!0,e.status=this.status,e.method=this.method,e.url=this.url,this.callback(e)},w.prototype.buffer=w.prototype.ca=w.prototype.agent=function(){return console.warn("This is not supported in browser version of superagent"),this},w.prototype.pipe=w.prototype.write=function(){throw new Error("Streaming is not supported in browser version of superagent")},w.prototype._isHost=function(e){return e&&"object"===r(e)&&!Array.isArray(e)&&"[object Object]"!==Object.prototype.toString.call(e)},w.prototype.end=function(e){this._endCalled&&console.warn("Warning: .end() was called twice. This is not supported in superagent"),this._endCalled=!0,this._callback=e||d,this._finalizeQueryString(),this._end()},w.prototype._setUploadTimeout=function(){var e=this;this._uploadTimeout&&!this._uploadTimeoutTimer&&(this._uploadTimeoutTimer=setTimeout((function(){e._timeoutError("Upload timeout of ",e._uploadTimeout,"ETIMEDOUT")}),this._uploadTimeout))},w.prototype._end=function(){if(this._aborted)return this.callback(new Error("The request has been aborted even before .end() was called"));var e=this;this.xhr=h.getXHR();var t=this.xhr,n=this._formData||this._data;this._setTimeouts(),t.onreadystatechange=function(){var n,r=t.readyState;if(2<=r&&e._responseTimeoutTimer&&clearTimeout(e._responseTimeoutTimer),4===r){try{n=t.status}catch(r){n=0}if(!n)return e.timedout||e._aborted?void 0:e.crossDomainError();e.emit("end")}};var r,a,o=function(t,n){0<n.total&&(n.percent=n.loaded/n.total*100,100===n.percent&&clearTimeout(e._uploadTimeoutTimer)),n.direction=t,e.emit("progress",n)};if(this.hasListeners("progress"))try{t.addEventListener("progress",o.bind(null,"download")),t.upload&&t.upload.addEventListener("progress",o.bind(null,"upload"))}catch(n){}t.upload&&this._setUploadTimeout();try{this.username&&this.password?t.open(this.method,this.url,!0,this.username,this.password):t.open(this.method,this.url,!0)}catch(n){return this.callback(n)}for(a in this._withCredentials&&(t.withCredentials=!0),this._formData||"GET"===this.method||"HEAD"===this.method||"string"==typeof n||this._isHost(n)||(r=this._header["content-type"],(o=!(o=this._serializer||h.serialize[r?r.split(";")[0]:""])&&y(r)?h.serialize["application/json"]:o)&&(n=o(n))),this.header)null!==this.header[a]&&Object.prototype.hasOwnProperty.call(this.header,a)&&t.setRequestHeader(a,this.header[a]);this._responseType&&(t.responseType=this._responseType),this.emit("request",this),t.send(void 0===n?null:n)},h.agent=function(){return new u},["GET","POST","OPTIONS","PATCH","PUT","DELETE"].forEach((function(e){u.prototype[e.toLowerCase()]=function(t,n){return t=new h.Request(e,t),this._setDefaults(t),n&&t.end(n),t}})),u.prototype.del=u.prototype.delete,h.get=function(e,t,n){return e=h("GET",e),"function"==typeof t&&(n=t,t=null),t&&e.query(t),n&&e.end(n),e},h.head=function(e,t,n){return e=h("HEAD",e),"function"==typeof t&&(n=t,t=null),t&&e.query(t),n&&e.end(n),e},h.options=function(e,t,n){return e=h("OPTIONS",e),"function"==typeof t&&(n=t,t=null),t&&e.send(t),n&&e.end(n),e},h.del=g,h.delete=g,h.patch=function(e,t,n){return e=h("PATCH",e),"function"==typeof t&&(n=t,t=null),t&&e.send(t),n&&e.end(n),e},h.post=function(e,t,n){return e=h("POST",e),"function"==typeof t&&(n=t,t=null),t&&e.send(t),n&&e.end(n),e},h.put=function(e,t,n){return e=h("PUT",e),"function"==typeof t&&(n=t,t=null),t&&e.send(t),n&&e.end(n),e}},function(e,t,n){"use strict";(function(e){var r=n(26),a=n.n(r),o=n(0),i=(r=n(2),n.n(r)),s=n(46),l=n(47),c=n(48),u=window.wp.i18n.__,d=(r=window.wp.element).Fragment,h=r.useState,p=r.useEffect;t.a=function(t){var n=u("Current Score",e.env.VUE_APP_TEXTDOMAIN),r=u("Try New Headline",e.env.VUE_APP_TEXTDOMAIN),f=h("current-score"),m=(f=a()(f,2))[0],y=f[1];f=void 0!==t.analyzer.isNewData&&t.analyzer.isNewData;return p((function(){t.setAnalyzer({activeTab:m})}),[m]),Object(o.createElement)(d,null,Object(o.createElement)("div",{className:"aioseo-inline-buttons"},Object(o.createElement)("button",{onClick:function(){return y("current-score")},className:i()("aioseo-switcher-button",{active:"current-score"===m})},n),Object(o.createElement)("button",{onClick:function(){return y("new-headline")},className:i()("aioseo-switcher-button",{active:"new-headline"===m})},r)),"new-headline"===m?Object(o.createElement)(d,null,Object(o.createElement)(l.a,{analyzer:t.analyzer,setAnalyzer:t.setAnalyzer})):Object(o.createElement)(s.a,{analyzer:t.analyzer}),f?Object(o.createElement)(c.a,{analyzer:t.analyzer}):"")}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=n(2),o=n.n(a),i=n(28),s=window.wp.i18n.__,l=window.wp.element.Fragment,c=(a=window.wp.components).PanelBody,u=a.PanelRow,d=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){var t,n=e.analyzer.currentHeadlineData.sentence,a=s("Score",d),h=s("A good score is between 40 and 60. For best results, you should strive for 70 and above.",d),p=e.analyzer.currentHeadlineData.score,f=p<40?"red":p<=60?"orange":"green";e="red"==f?"#df2a4a":"orange"==f?"#F2994A":"#00aa63";switch(!0){case p<25:t=Object(r.createElement)("span",null,s("Not Looking Great",d));break;case p<50:t=Object(r.createElement)("span",null,s("Could Be Better",d));break;case p<60:t=Object(r.createElement)("span",null,s("Getting There",d));break;case p<75:t=Object(r.createElement)("span",null,s("Looks Good! 👍👍",d));break;case 75<p:t=Object(r.createElement)("span",null,s("Super! 🔥🔥🔥",d));break;default:t=!1}return Object(r.createElement)(l,null,Object(r.createElement)(c,{className:"aioseo-headline-analyzer-panel-score",title:a},Object(r.createElement)(u,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-current-score-tab aioseo-headline-analyzer-panel-first-block"},Object(r.createElement)("h4",{className:"aioseo-headline-analyzer-current-title"},"“",n,"”"),Object(r.createElement)("div",{className:"aioseo-headline-analyzer-pie-chart-container"},Object(r.createElement)("div",{className:o()("aioseo-headline-analyzer-current-score",f)},p,Object(r.createElement)("span",{className:"aioseo-headline-analyzer-total-out-of-score"},"/ 100")),t&&Object(r.createElement)("div",{className:o()("aioseo-headline-analyzer-score-status",f)},t),Object(r.createElement)(i.a,{barScore:p,color:e})),Object(r.createElement)("p",null,h)))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(27),a=n.n(r),o=n(0),i=n(22),s=(r=n(2),n.n(r)),l=window.wp.i18n.__,c=window.wp.element.Fragment,u=(r=window.wp.components).PanelBody,d=r.PanelRow,h=r.TextControl,p=r.Button,f=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){function t(t){(t=t.trim())&&Object(i.b)(window.aioseo.nonce).post("".concat(window.aioseo.urls.restUrl,"aioseo/v1/analyze_headline")).send({title:t}).then((function(t){e.setAnalyzer({newHeadlineData:t.body,headlineData:t.body,previousHeadlinesData:[e.analyzer.headlineData].concat(a()(b)),isNewData:!0})})).catch((function(t){e.setAnalyzer({isNewData:!1}),console.log(t)}))}var n=l("Try New Headline",f),r=l("Enter a different headline than your post title to see how it compares.",f),m=l("Analyze Headline",f),y=void 0!==e.analyzer.newHeadline?e.analyzer.newHeadline:"",b=void 0!==e.analyzer.previousHeadlinesData?e.analyzer.previousHeadlinesData:[],w=!y;return Object(o.createElement)(c,null,Object(o.createElement)(u,{title:n,className:s()("aioseo-headline-analyzer-panel-tab-new-score-form")},Object(o.createElement)(d,null,Object(o.createElement)("div",{className:"aioseo-headline-analyzer-new-tab"},Object(o.createElement)("div",{className:"aioseo-headline-analyzer-new-score-form-block"},Object(o.createElement)("form",{onSubmit:function(e){e.preventDefault(),t(y)}},Object(o.createElement)(h,{label:r,value:y,onChange:function(t){" "!==t&&e.setAnalyzer({newHeadline:t})},className:"aioseo-headline-analyzer-input-field"}),Object(o.createElement)(p,{className:s()("aioseo-headline-analyzer-button"),onClick:function(){t(y)},disabled:w},m)))))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=n(2),o=n.n(a),i=n(28),s=window.wp.i18n.__,l=window.wp.element.Fragment,c=(a=window.wp.components).PanelBody,u=a.PanelRow,d=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){var t,n=e.analyzer.currentHeadlineData.sentence,a=s("New Score",d),h=s("A good score is between 40 and 60. For best results, you should strive for 70 and above.",d),p=s("Current Score",d),f=void 0!==e.analyzer.newHeadlineData?e.analyzer.newHeadlineData.sentence:"",m=void 0!==e.analyzer.newHeadlineData?e.analyzer.newHeadlineData.score:"",y=void 0!==e.analyzer.currentHeadlineData.score?e.analyzer.currentHeadlineData.score:"",b=m<40?"red":m<=60?"orange":"green",w="red"==b?"#df2a4a":"orange"==b?"#F2994A":"#00aa63",g=y<40?"red-bg":y<=60?"orange-bg":"green-bg";e=Math.abs(m-y);switch(!0){case m<25:t=Object(r.createElement)("span",null,s("Not Looking Great",d));break;case m<50:t=Object(r.createElement)("span",null,s("Could Be Better",d));break;case m<60:t=Object(r.createElement)("span",null,s("Getting There",d));break;case m<75:t=Object(r.createElement)("span",null,s("Looks Good! 👍👍",d));break;case 75<m:t=Object(r.createElement)("span",null,s("Super! 🔥🔥🔥",d));break;default:t=!1}return Object(r.createElement)(l,null,Object(r.createElement)(c,{title:a,className:"aioseo-headline-analyzer-panel-tab-new-score"},Object(r.createElement)(u,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},Object(r.createElement)("div",{className:"aioseo-headline-analyzer-new-score-panel"},Object(r.createElement)("p",null,h),Object(r.createElement)("h4",null,"“",f,"”"),Object(r.createElement)("div",{className:"aioseo-headline-analyzer-pie-chart-container"},Object(r.createElement)("span",{className:o()("aioseo-headline-analyzer-new-score",b)},m),Object(r.createElement)(i.a,{barScore:m,color:w}),Object(r.createElement)("span",{className:o()("aioseo-headline-analyzer-score-difference",b)},y<m?"+ ":m===y?"":"- ",e),t&&Object(r.createElement)("div",{className:o()("aioseo-headline-analyzer-score-status",b)},t)),Object(r.createElement)("div",{className:"current-score"},Object(r.createElement)("span",{className:o()("aioseo-headline-analyzer-score",g)},y),Object(r.createElement)("div",{className:"aioseo-headline-analyzer-current-score-content"},Object(r.createElement)("h5",null,p),Object(r.createElement)("p",null,n))))))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=n(2),o=n.n(a),i=window.wp.i18n.__,s=window.wp.element.Fragment,l=(a=window.wp.components).PanelBody,c=a.PanelRow;t.a=function(t){var n=i("Previous Scores",e.env.VUE_APP_TEXTDOMAIN),a="undefined"!==t.analyzer.previousHeadlinesData?t.analyzer.previousHeadlinesData:[],u=document.querySelector(".edit-post-sidebar"),d="current-score"===("undefined"!==t.analyzer.activeTab?t.analyzer.activeTab:"current-score")?390:300;return Object(r.createElement)(s,null,Object(r.createElement)(l,{title:n,className:"aioseo-headline-analyzer-panel-previous-scores"},Object(r.createElement)(c,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},Object(r.createElement)("ul",{className:"aioseo-headline-analyzer-previous-scores"},a.map((function(e,n){if(n<10&&(void 0!==e.sentence||void 0!==e.score)){var i=e.score<40?"red-bg":e.score<=60?"orange-bg":"green-bg";return Object(r.createElement)("li",{key:n,onClick:function(){t.setAnalyzer({newHeadlineData:a[n],headlineData:a[n],newHeadline:a[n].sentence,isNewData:!0}),u&&(u.scrollTop=d)}},Object(r.createElement)("span",{className:o()("aioseo-headline-analyzer-score",i)},e.score),Object(r.createElement)("span",{className:"aioseo-headline-analyzer-score-text"},e.sentence))}return null})))))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=n(9),o=n(2),i=n.n(o),s=n(25),l=window.wp.i18n.__,c=window.wp.element.Fragment,u=(o=window.wp.components).PanelBody,d=o.PanelRow,h=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){var t,n=l("Word Balance",h),o=l("Compare the percentages of your results to the goal for each category and adjust as necessary.",h),p=e.data.score,f=e.data.score<40?"red":e.data.score<=60?"orange":"green",m=0===e.data.result.commonWordsPercentage?"red":e.data.result.commonWordsPercentage<.2?"orange":"green",y=0===e.data.result.commonWordsPercentage?"red-bg":e.data.result.commonWordsPercentage<.2?"orange-bg":"green-bg",b=e.data.result.commonWordsPercentage<.2?l("Your headline would be more likely to get clicks if it had more common words.",h):l("Headlines with 20-30% common words are more likely to get clicks.",h),w=0===e.data.result.uncommonWordsPercentage?"red":e.data.result.uncommonWordsPercentage<.1?"orange":"green",g=0===e.data.result.uncommonWordsPercentage?"red-bg":e.data.result.uncommonWordsPercentage<.1?"orange-bg":"green-bg",v=e.data.result.uncommonWordsPercentage<.1?l("Your headline would be more likely to get clicks if it had more uncommon words.",h):l("Headlines with uncommon words are more likely to get clicks.",h),E=0===e.data.result.emotionalWordsPercentage?"red":e.data.result.emotionalWordsPercentage<.1?"orange":"green",O=0===e.data.result.emotionalWordsPercentage?"red-bg":e.data.result.emotionalWordsPercentage<.1?"orange-bg":"green-bg",j=l("Emotionally triggered headlines are likely to drive more clicks.",h),_=0===e.data.result.powerWords.length?"orange":"green",T=0===e.data.result.powerWords.length?"orange":"green-bg",x=l("Headlines with Power Words are more likely to get clicks.",h),C=l("Common Words",h),z=l("20-30%",h),k=l("Uncommon Words",h),P=l("10-20%",h),A=l("Emotional Words",h),N=l("10-15%",h),S=l("Power Words",h),D=l("At least one",h);switch(!0){case p<25:t=Object(r.createElement)("span",null,l("Not Looking Great",h));break;case p<50:t=Object(r.createElement)("span",null,l("Could Be Better",h));break;case p<60:t=Object(r.createElement)("span",null,l("Getting There",h));break;case p<75:t=Object(r.createElement)("span",null,l("Looks Good! 👍👍",h));break;case 75<p:t=Object(r.createElement)("span",null,l("Super! 🔥🔥🔥",h));break;default:t=!1}return Object(r.createElement)(c,null,Object(r.createElement)(u,{title:n,className:i()("aioseo-headline-analyzer-panel-word-balance","aioseo-headline-analyzer-panel-has-icon",f),icon:"green"==f?a.a.check:a.a.warning},Object(r.createElement)(d,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-words-block"},Object(r.createElement)("h4",null,t),Object(r.createElement)("p",null,o)),Object(r.createElement)(s.a,{title:C,value:Math.round(100*e.data.result.commonWordsPercentage),goalValue:z,words:e.data.result.commonWords,guideLine:b,classOnScore:m,classOnScoreBg:y}),Object(r.createElement)(s.a,{title:k,value:Math.round(100*e.data.result.uncommonWordsPercentage),goalValue:P,words:e.data.result.uncommonWords,guideLine:v,classOnScore:w,classOnScoreBg:g}),Object(r.createElement)(s.a,{title:A,value:Math.round(100*e.data.result.emotionalWordsPercentage),goalValue:N,words:e.data.result.emotionWords,guideLine:j,classOnScore:E,classOnScoreBg:O}),Object(r.createElement)(s.a,{title:S,value:Math.round(100*e.data.result.powerWordsPercentage),goalValue:D,words:e.data.result.powerWords,guideLine:x,classOnScore:_,classOnScoreBg:T}))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=n(9),o=n(2),i=n.n(o),s=window.wp.i18n.__,l=window.wp.element.Fragment,c=(o=window.wp.components).PanelBody,u=o.PanelRow,d=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){var t=s("Your headline has a neutral sentiment.",d),n=s("Headlines that are strongly positive or negative tend to get more engagement then neutral ones.",d),o=s("Your headline has a positive sentiment.",d),h=s("Positive headlines tend to get better engagement than neutral or negative ones.",d),p=s("Your headline has a negative sentiment.",d),f=s("Negative headlines are attention-grabbing and tend to perform better than neutral ones.",d),m=s("Sentiment",d),y="neu"===e.data.result.sentiment?s("Neutral",d):"pos"===e.data.result.sentiment?s("Positive",d):s("Negative",d),b="neu"===e.data.result.sentiment?a.a.neutral:"pos"===e.data.result.sentiment?a.a.smile:a.a.negative,w="neu"===e.data.result.sentiment?"orange":"pos"===e.data.result.sentiment?"green":"red";return Object(r.createElement)(l,null,Object(r.createElement)(c,{title:m,className:i()("aioseo-headline-analyzer-panel-sentiment","aioseo-headline-analyzer-panel-has-icon",w),icon:b},Object(r.createElement)(u,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},Object(r.createElement)("h4",null,y),"neu"===e.data.result.sentiment?Object(r.createElement)("p",null,Object(r.createElement)("strong",null,t),Object(r.createElement)("br",null),n):"","pos"===e.data.result.sentiment?Object(r.createElement)("p",null,Object(r.createElement)("strong",null,o),Object(r.createElement)("br",null),h):"","neg"===e.data.result.sentiment?Object(r.createElement)("p",null,Object(r.createElement)("strong",null,p),Object(r.createElement)("br",null)," ",f):""))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r,a=n(0),o=(r=window.wp.i18n).__,i=r.sprintf,s=window.wp.element.Fragment,l=(r=window.wp.components).PanelBody,c=r.PanelRow;t.a=function(t){var n=t.data.result.headlineTypes.join(", "),r=o("Headline Type",e.env.VUE_APP_TEXTDOMAIN);t=Object(a.createElement)("span",{className:"aioseo-headline-analyzer-panel-types-title"},r,Object(a.createElement)("span",null,n)),r=i(o("Headlines that are lists and how-to get more engagement on average than other types of headlines. %1sRead more about %2sdifferent types of headlines here%3s →%4s",e.env.VUE_APP_TEXTDOMAIN),"<br/><br/>",'<a href="https://optinmonster.com/why-these-21-headlines-went-viral-and-how-you-can-copy-their-success/" target="_blank" className="aioseo-headline-analyzer-link"><span>',"</span>","</a>");return Object(a.createElement)(s,null,Object(a.createElement)(l,{title:t,className:"aioseo-headline-analyzer-panel-types"},Object(a.createElement)(c,null,Object(a.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},Object(a.createElement)("h4",null,n),Object(a.createElement)("p",{dangerouslySetInnerHTML:{__html:r}})))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=n(9),o=n(2),i=n.n(o);function s(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(e){if("string"==typeof e)return l(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Map"===(n="Object"===n&&e.constructor?e.constructor.name:n)||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?l(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0;return{s:t=function(){},n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:t}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,o=!0,i=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return o=e.done,e},e:function(e){i=!0,a=e},f:function(){try{o||null==n.return||n.return()}finally{if(i)throw a}}}}function l(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var c=window.wp.i18n.__,u=window.wp.element.Fragment,d=(o=window.wp.components).PanelBody,h=o.PanelRow,p=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){var t=c("Character Count",p),n=e.data.result.length,o=n.toString(),l="",f="",m=(e="","");if(1===o.length&&(m='<span class="character-zero">0</span><span class="character-zero">0</span><span>'.concat(n,"</span>")),2===o.length){m='<span class="character-zero">0</span>';var y,b=s(o);try{for(b.s();!(y=b.n()).done;){var w=y.value;m+="<span>".concat(w,"</span>")}}catch(e){b.e(e)}finally{b.f()}}if(3===n.toString().length){var g,v=s(o);try{for(v.s();!(g=v.n()).done;){var E=g.value;m+="<span>".concat(E,"</span>")}}catch(e){v.e(e)}finally{v.f()}}return n<=19?l="red":20<=n&&n<=34?l="orange":35<=n&&n<=66?l="green":67<=n&&n<=79?l="orange":80<=n&&(l="red"),n<=34?(f=c("Too Short 🙃",p),e=c("You have space to add more keywords and power words to boost your rankings and click-through rate.",p)):35<=n&&n<=66?(f=c("Good 🙂",p),e=c("Headlines that are about 55 characters long will display fully in search results and tend to get more clicks.",p)):67<=n&&(f=c("Too Long 😑",p),e=c("At this length, it will get cut off in search results. Try reducing it to about 55 characters.",p)),Object(r.createElement)(u,null,Object(r.createElement)(d,{title:t,className:i()("aioseo-headline-analyzer-panel-character-count","aioseo-headline-analyzer-panel-has-icon",l),icon:"green"===l?a.a.check:a.a.warning},Object(r.createElement)(h,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},Object(r.createElement)("div",{className:"aioseo-headline-analyzer-character-count-container"},Object(r.createElement)("span",{className:"aioseo-headline-analyzer-status-on-character-length"},f),Object(r.createElement)("span",{className:i()("aioseo-headline-analyzer-character-length",l),dangerouslySetInnerHTML:{__html:m}})),Object(r.createElement)("p",null,e)))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=n(9),o=n(2),i=n.n(o);function s(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(e){if("string"==typeof e)return l(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Map"===(n="Object"===n&&e.constructor?e.constructor.name:n)||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?l(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0;return{s:t=function(){},n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:t}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,o=!0,i=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return o=e.done,e},e:function(e){i=!0,a=e},f:function(){try{o||null==n.return||n.return()}finally{if(i)throw a}}}}function l(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var c=window.wp.i18n.__,u=window.wp.element.Fragment,d=(o=window.wp.components).PanelBody,h=o.PanelRow,p=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){var t=c("Word Count",p),n=e.data.result.wordCount,o=n.toString(),l="",f="",m=(e="","");if(1===o.length&&(m='<span class="character-zero">0</span><span class="character-zero">0</span><span>'.concat(n,"</span>")),2===o.length){m='<span class="character-zero">0</span>';var y,b=s(o);try{for(b.s();!(y=b.n()).done;){var w=y.value;m+="<span>".concat(w,"</span>")}}catch(e){b.e(e)}finally{b.f()}}if(3===o.length){var g,v=s(o);try{for(v.s();!(g=v.n()).done;){var E=g.value;m+="<span>".concat(E,"</span>")}}catch(e){v.e(e)}finally{v.f()}}return n<=4?(l="red",f=c("Not Enough Words 🙃",p),e=c("Your headline doesn’t use enough words. You have more space to add keywords and power words to improve your SEO and get more engagement.",p)):5<=n&&n<=9?(l="green",f=c("Good 🙂",p),e=c("Your headline has the right amount of words. Headlines are more likely to be clicked on in search results if they have about 6 words.",p)):10<=n&&n<=11?(l="orange",f=c("Reduce Word Count 🙂",p)):(l="red",f=c("Too Many Words 😑",p),e=c("Your headline has too many words. Long headlines will get cut off in search results and won’t get as many clicks.",p)),Object(r.createElement)(u,null,Object(r.createElement)(d,{title:t,className:i()("aioseo-headline-analyzer-panel-word-count","aioseo-headline-analyzer-panel-has-icon",l),icon:"green"===l?a.a.check:a.a.warning},Object(r.createElement)(h,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},Object(r.createElement)("div",{className:"aioseo-headline-analyzer-word-counter"},Object(r.createElement)("span",{className:"aioseo-headline-analyzer-status-on-word-length"},f),Object(r.createElement)("span",{className:i()("aioseo-headline-analyzer-word-length",l),dangerouslySetInnerHTML:{__html:m}})),Object(r.createElement)("p",null,e)))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(0),a=window.wp.i18n.__,o=window.wp.element.Fragment,i=window.wp.components,s=i.PanelBody,l=i.PanelRow,c=e.env.VUE_APP_TEXTDOMAIN;t.a=function(e){var t=a("Beginning & Ending Words",c),n=e.data.result.originalExplodedHeadline,i=a("Most readers only look at the first and last 3 words of a headline before deciding whether to click.",c),u="";e="";return 6<=n.length?(u=n.slice(0,3).join(" "),e=n.slice(-3).join(" ")):3<n.length&&n.length<=5?(u=n.slice(0,3).join(" "),e=n.slice(3).join(" ")):u=n.slice(0,3).join(" "),Object(r.createElement)(o,null,Object(r.createElement)(s,{title:t,className:"aioseo-headline-analyzer-panel-beginning-ending-words"},Object(r.createElement)(l,null,Object(r.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},u?Object(r.createElement)(o,null,Object(r.createElement)("ul",{className:"aioseo-headline-analyzer-word-begining-title"},Object(r.createElement)("li",null,a("Beginning Words",c))),Object(r.createElement)("div",{className:"aioseo-headline-analyzer-words beginning"},Object(r.createElement)("span",null,u))):"",e?Object(r.createElement)(o,null,Object(r.createElement)("ul",{className:"aioseo-headline-analyzer-word-ending-title"},Object(r.createElement)("li",null,a("Ending Words",c))),Object(r.createElement)("div",{className:"aioseo-headline-analyzer-words ending"},Object(r.createElement)("span",null,e))):"",Object(r.createElement)("p",{className:"aioseo-headline-analyzer-words-guideline"},i)))))}}).call(this,n(10))},function(e,t,n){"use strict";(function(e){var r=n(57),a=n.n(r),o=n(0),i=window.wp.i18n.__,s=window.wp.element.Fragment,l=(r=window.wp.components).PanelBody,c=r.PanelRow,u=window.wp.data.select;t.a=function(t){var n=i("Search Preview",e.env.VUE_APP_TEXTDOMAIN),r=i("Here is how your headline will look like in Google search results page.",e.env.VUE_APP_TEXTDOMAIN),d=u("core/editor").getPermalink(),h={href:d};return Object(o.createElement)(s,null,Object(o.createElement)(l,{title:n,className:"aioseo-headline-analyzer-panel-search-preview"},Object(o.createElement)(c,null,Object(o.createElement)("div",{className:"aioseo-headline-analyzer-panel-first-block"},Object(o.createElement)("div",{className:"aioseo-headline-analyzer-search-prevew-wrap"},Object(o.createElement)("p",{className:"aioseo-headline-analyzer-post-url"},Object(o.createElement)("a",a()({},h,{target:"_blank"}),d)),Object(o.createElement)("h4",null,t.data.sentence),Object(o.createElement)("p",null,r))))))}}).call(this,n(10))},function(e,t){function n(){return e.exports=n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n,r=arguments[t];for(n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},e.exports.default=e.exports,e.exports.__esModule=!0,n.apply(this,arguments)}e.exports=n,e.exports.default=e.exports,e.exports.__esModule=!0},,,,,,,,,function(e,t,n){n(67),e.exports=n(80)},function(e,t,n){"use strict";n.r(t),function(e){var t=n(26),r=n.n(t),a=n(27),o=n.n(a),i=n(43),s=n.n(i),l=n(0),c=(t=n(9),n(22)),u=n(45),d=n(49),h=n(50),p=n(51),f=n(52),m=n(53),y=n(54),b=n(55),w=n(56);function g(e,t){var n,r=Object.keys(e);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(e),t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)),r}function v(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?g(Object(n),!0).forEach((function(t){s()(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):g(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var E=(a=window.wp.i18n).__,O=a.sprintf,j=(i=window.wp.element).Fragment,_=i.useState,T=i.useEffect,x=(a=window.wp.plugins.registerPlugin,(i=window.wp.editPost).PluginSidebar),C=i.PluginSidebarMoreMenuItem,z=window.wp.data.select,k=e.env.VUE_APP_TEXTDOMAIN;a("aioseo-headline-analyzer",{icon:t.a.headline,render:function(){function e(){t?Object(c.b)(window.aioseo.nonce).post("".concat(window.aioseo.urls.restUrl,"aioseo/v1/analyze_headline")).send({title:t}).then((function(e){var t={dataExist:!1};e.body.analysed&&(t.currentHeadlineData=e.body,t.headlineData=e.body,t.dataExist=!0,void 0!==g.headlineData&&(t.previousHeadlinesData=[g.headlineData].concat(o()(A)))),P(v(v({},g),t))})).catch((function(e){P(v(v({},g),{dataExist:!1})),console.log("Couldn't fetch score for headline:",e)})):P(v(v({},g),{dataExist:!1}))}var t=z("core/editor").getEditedPostAttribute("title");T(e,[]),window.wp.data.subscribe((function(){t!==z("core/editor").getEditedPostAttribute("title")&&(t=z("core/editor").getEditedPostAttribute("title"),Object(c.a)(e,2e3))}));var n=E("SEO Headline Analyzer",k),a=E("Write your post title to see the analyzer data. This Headline Analyzer tool enables you to write irresistible SEO headlines that drive traffic, shares, and rank better in search results.",k),i=_({}),s=r()(i,2),g=s[0],P=s[1],A=void 0!==g.previousHeadlinesData?g.previousHeadlinesData:[],N=O(E("This headline analyzer is part of AIOSEO to help you increase your traffic. %1sAnalyze your site further here%2s →%3s",k),O('<a href="%1$s" className="aioseo-headline-analyzer-link" target="_blank"><span>',window.aioseo.urls.aio.seoAnalysis),"</span>","</a>"),S=document.querySelector(".components-button[aria-label='".concat(n,"'] svg"));S&&(i=document.createElement("span"),g.dataExist&&void 0!==g.currentHeadlineData.score?(s=g.currentHeadlineData.score,S.parentNode.setAttribute("aioseo-button-color",s<40?"red":s<=60?"orange":"green"),S.nextElementSibling?S.nextElementSibling.innerHTML="".concat(s,"/100"):(i.innerHTML="".concat(s,"/100"),S.parentNode.insertBefore(i,S.nextSibling))):(S.parentNode.setAttribute("aioseo-button-color","red"),S.nextElementSibling?S.nextElementSibling.innerHTML="00/100":(i.innerHTML="00/100",S.parentNode.insertBefore(i,S.nextSibling)))),!(S=document.querySelector(".aioseo-headline-analyzer-wrapper"))||(D=S.parentNode.querySelectorAll(".components-panel__header"))&&D.forEach((function(e){(e=e.querySelector('[aria-pressed="true"]'))&&null!==e&&(e.style.display="none")}));var D=function(e){P(v(v({},g),e))};return Object(l.createElement)(j,null,Object(l.createElement)(C,{target:"aioseo-headline-analyzer"},n),Object(l.createElement)(x,{name:"aioseo-headline-analyzer",title:n,className:"aioseo-headline-analyzer-wrapper"},void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(u.a,{analyzer:g,setAnalyzer:D}):Object(l.createElement)("p",{className:"aioseo-headline-analyzer-empty-title-warning"},a),void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed&&0<A.length?Object(l.createElement)(d.a,{analyzer:g,setAnalyzer:D}):"",void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(h.a,{data:g.headlineData}):"",void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(p.a,{data:g.headlineData}):"",void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(f.a,{data:g.headlineData}):"",void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(m.a,{data:g.headlineData}):"",void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(y.a,{data:g.headlineData}):"",void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(b.a,{data:g.headlineData}):"",void 0!==g.headlineData&&g.dataExist&&g.headlineData.analysed?Object(l.createElement)(w.a,{data:g.headlineData}):"",Object(l.createElement)("div",{className:"aioseo-headline-analyzer-bottom-notice"},Object(l.createElement)("p",{dangerouslySetInnerHTML:{__html:N}}))))}})}.call(this,n(10))},function(e,t){e.exports=function(e){if(Array.isArray(e))return e},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,a,o=[],i=!0,s=!1;try{for(n=n.call(e);!(i=(r=n.next()).done)&&(o.push(r.value),!t||o.length!==t);i=!0);}catch(e){s=!0,a=e}finally{try{i||null==n.return||n.return()}finally{if(s)throw a}}return o}},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,n){var r=n(34);e.exports=function(e){if(Array.isArray(e))return r(e)},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,n){function r(e){if(e)return function(e){for(var t in r.prototype)e[t]=r.prototype[t];return e}(e)}(e.exports=r).prototype.on=r.prototype.addEventListener=function(e,t){return this._callbacks=this._callbacks||{},(this._callbacks["$"+e]=this._callbacks["$"+e]||[]).push(t),this},r.prototype.once=function(e,t){function n(){this.off(e,n),t.apply(this,arguments)}return n.fn=t,this.on(e,n),this},r.prototype.off=r.prototype.removeListener=r.prototype.removeAllListeners=r.prototype.removeEventListener=function(e,t){if(this._callbacks=this._callbacks||{},0==arguments.length)return this._callbacks={},this;var n,r=this._callbacks["$"+e];if(!r)return this;if(1==arguments.length)return delete this._callbacks["$"+e],this;for(var a=0;a<r.length;a++)if((n=r[a])===t||n.fn===t){r.splice(a,1);break}return 0===r.length&&delete this._callbacks["$"+e],this},r.prototype.emit=function(e){this._callbacks=this._callbacks||{};for(var t=new Array(arguments.length-1),n=this._callbacks["$"+e],r=1;r<arguments.length;r++)t[r-1]=arguments[r];if(n){r=0;for(var a=(n=n.slice(0)).length;r<a;++r)n[r].apply(this,t)}return this},r.prototype.listeners=function(e){return this._callbacks=this._callbacks||{},this._callbacks["$"+e]||[]},r.prototype.hasListeners=function(e){return!!this.listeners(e).length}},function(e,t){((e.exports=a).default=a).stable=i,a.stableStringify=i;var n=[],r=[];function a(e,t,a){for(function e(t,a,o,i){var s;if("object"==typeof t&&null!==t){for(s=0;s<o.length;s++)if(o[s]===t){var l=Object.getOwnPropertyDescriptor(i,a);return void(void 0!==l.get?l.configurable?(Object.defineProperty(i,a,{value:"[Circular]"}),n.push([i,a,t,l])):r.push([t,a]):(i[a]="[Circular]",n.push([i,a,t])))}if(o.push(t),Array.isArray(t))for(s=0;s<t.length;s++)e(t[s],s,o,t);else{var c=Object.keys(t);for(s=0;s<c.length;s++){var u=c[s];e(t[u],u,o,t)}}o.pop()}}(e,"",[],void 0),a=0===r.length?JSON.stringify(e,t,a):JSON.stringify(e,s(t),a);0!==n.length;){var o=n.pop();4===o.length?Object.defineProperty(o[0],o[1],o[3]):o[0][o[1]]=o[2]}return a}function o(e,t){return e<t?-1:t<e?1:0}function i(e,t,a){for(e=function e(t,a,i,s){var l;if("object"==typeof t&&null!==t){for(l=0;l<i.length;l++)if(i[l]===t){var c=Object.getOwnPropertyDescriptor(s,a);return void(void 0!==c.get?c.configurable?(Object.defineProperty(s,a,{value:"[Circular]"}),n.push([s,a,t,c])):r.push([t,a]):(s[a]="[Circular]",n.push([s,a,t])))}if("function"!=typeof t.toJSON){if(i.push(t),Array.isArray(t))for(l=0;l<t.length;l++)e(t[l],l,i,t);else{var u={},d=Object.keys(t).sort(o);for(l=0;l<d.length;l++){var h=d[l];e(t[h],h,i,t),u[h]=t[h]}if(void 0===s)return u;n.push([s,a,t]),s[a]=u}i.pop()}}}(e,"",[],void 0)||e,a=0===r.length?JSON.stringify(e,t,a):JSON.stringify(e,s(t),a);0!==n.length;){var i=n.pop();4===i.length?Object.defineProperty(i[0],i[1],i[3]):i[0][i[1]]=i[2]}return a}function s(e){return e=void 0!==e?e:function(e,t){return t},function(t,n){if(0<r.length)for(var a=0;a<r.length;a++){var o=r[a];if(o[1]===t&&o[0]===n){n="[Circular]",r.splice(a,1);break}}return e.call(this,t,n)}}},function(e,t,n){"use strict";function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var a=n(35);function o(e){if(e)return function(e){for(var t in o.prototype)Object.prototype.hasOwnProperty.call(o.prototype,t)&&(e[t]=o.prototype[t]);return e}(e)}(e.exports=o).prototype.clearTimeout=function(){return clearTimeout(this._timer),clearTimeout(this._responseTimeoutTimer),clearTimeout(this._uploadTimeoutTimer),delete this._timer,delete this._responseTimeoutTimer,delete this._uploadTimeoutTimer,this},o.prototype.parse=function(e){return this._parser=e,this},o.prototype.responseType=function(e){return this._responseType=e,this},o.prototype.serialize=function(e){return this._serializer=e,this},o.prototype.timeout=function(e){if(!e||"object"!==r(e))return this._timeout=e,this._responseTimeout=0,this._uploadTimeout=0,this;for(var t in e)if(Object.prototype.hasOwnProperty.call(e,t))switch(t){case"deadline":this._timeout=e.deadline;break;case"response":this._responseTimeout=e.response;break;case"upload":this._uploadTimeout=e.upload;break;default:console.warn("Unknown timeout option",t)}return this},o.prototype.retry=function(e,t){return this._maxRetries=e=(e=0===arguments.length||!0===e?1:e)<=0?0:e,this._retries=0,this._retryCallback=t,this};var i=["ECONNRESET","ETIMEDOUT","EADDRINFO","ESOCKETTIMEDOUT"];o.prototype._shouldRetry=function(e,t){if(!this._maxRetries||this._retries++>=this._maxRetries)return!1;if(this._retryCallback)try{var n=this._retryCallback(e,t);if(!0===n)return!0;if(!1===n)return!1}catch(e){console.error(e)}if(t&&t.status&&500<=t.status&&501!==t.status)return!0;if(e){if(e.code&&i.includes(e.code))return!0;if(e.timeout&&"ECONNABORTED"===e.code)return!0;if(e.crossDomain)return!0}return!1},o.prototype._retry=function(){return this.clearTimeout(),this.req&&(this.req=null,this.req=this.request()),this._aborted=!1,this.timedout=!1,this.timedoutError=null,this._end()},o.prototype.then=function(e,t){var n,r=this;return this._fullfilledPromise||((n=this)._endCalled&&console.warn("Warning: superagent request was sent twice, because both .end() and .then() were called. Never call .end() if you use promises"),this._fullfilledPromise=new Promise((function(e,t){n.on("abort",(function(){var e;r.timedout&&r.timedoutError?t(r.timedoutError):((e=new Error("Aborted")).code="ABORTED",e.status=r.status,e.method=r.method,e.url=r.url,t(e))})),n.end((function(n,r){n?t(n):e(r)}))}))),this._fullfilledPromise.then(e,t)},o.prototype.catch=function(e){return this.then(void 0,e)},o.prototype.use=function(e){return e(this),this},o.prototype.ok=function(e){if("function"!=typeof e)throw new Error("Callback required");return this._okCallback=e,this},o.prototype._isResponseOK=function(e){return!!e&&(this._okCallback?this._okCallback(e):200<=e.status&&e.status<300)},o.prototype.getHeader=o.prototype.get=function(e){return this._header[e.toLowerCase()]},o.prototype.set=function(e,t){if(a(e)){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&this.set(n,e[n]);return this}return this._header[e.toLowerCase()]=t,this.header[e]=t,this},o.prototype.unset=function(e){return delete this._header[e.toLowerCase()],delete this.header[e],this},o.prototype.field=function(e,t){if(null==e)throw new Error(".field(name, val) name can not be empty");if(this._data)throw new Error(".field() can't be used if .send() is used. Please use only .send() or only .field() & .attach()");if(a(e)){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&this.field(n,e[n]);return this}if(Array.isArray(t)){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&this.field(e,t[r]);return this}if(null==t)throw new Error(".field(name, val) val can not be empty");return"boolean"==typeof t&&(t=String(t)),this._getFormData().append(e,t),this},o.prototype.abort=function(){return this._aborted||(this._aborted=!0,this.xhr&&this.xhr.abort(),this.req&&this.req.abort(),this.clearTimeout(),this.emit("abort")),this},o.prototype._auth=function(e,t,n,r){switch(n.type){case"basic":this.set("Authorization","Basic ".concat(r("".concat(e,":").concat(t))));break;case"auto":this.username=e,this.password=t;break;case"bearer":this.set("Authorization","Bearer ".concat(e))}return this},o.prototype.withCredentials=function(e){return this._withCredentials=e=void 0===e||e,this},o.prototype.redirects=function(e){return this._maxRedirects=e,this},o.prototype.maxResponseSize=function(e){if("number"!=typeof e)throw new TypeError("Invalid argument");return this._maxResponseSize=e,this},o.prototype.toJSON=function(){return{method:this.method,url:this.url,data:this._data,headers:this._header}},o.prototype.send=function(e){var t=a(e),n=this._header["content-type"];if(this._formData)throw new Error(".send() can't be used if .attach() or .field() is used. Please use only .send() or only .field() & .attach()");if(t&&!this._data)Array.isArray(e)?this._data=[]:this._isHost(e)||(this._data={});else if(e&&this._data&&this._isHost(this._data))throw new Error("Can't merge these send calls");if(t&&a(this._data))for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&(this._data[r]=e[r]);else"string"==typeof e?(n||this.type("form"),n=this._header["content-type"],this._data="application/x-www-form-urlencoded"===n?this._data?"".concat(this._data,"&").concat(e):e:(this._data||"")+e):this._data=e;return!t||this._isHost(e)||n||this.type("json"),this},o.prototype.sortQuery=function(e){return this._sort=void 0===e||e,this},o.prototype._finalizeQueryString=function(){var e,t=this._query.join("&");t&&(this.url+=(this.url.includes("?")?"&":"?")+t),this._query.length=0,!this._sort||0<=(e=this.url.indexOf("?"))&&(t=this.url.slice(e+1).split("&"),"function"==typeof this._sort?t.sort(this._sort):t.sort(),this.url=this.url.slice(0,e)+"?"+t.join("&"))},o.prototype._appendQueryString=function(){console.warn("Unsupported")},o.prototype._timeoutError=function(e,t,n){this._aborted||((e=new Error("".concat(e+t,"ms exceeded"))).timeout=t,e.code="ECONNABORTED",e.errno=n,this.timedout=!0,this.timedoutError=e,this.abort(),this.callback(e))},o.prototype._setTimeouts=function(){var e=this;this._timeout&&!this._timer&&(this._timer=setTimeout((function(){e._timeoutError("Timeout of ",e._timeout,"ETIME")}),this._timeout)),this._responseTimeout&&!this._responseTimeoutTimer&&(this._responseTimeoutTimer=setTimeout((function(){e._timeoutError("Response timeout of ",e._responseTimeout,"ETIMEDOUT")}),this._responseTimeout))}},function(e,t,n){"use strict";var r=n(78);function a(e){if(e)return function(e){for(var t in a.prototype)Object.prototype.hasOwnProperty.call(a.prototype,t)&&(e[t]=a.prototype[t]);return e}(e)}(e.exports=a).prototype.get=function(e){return this.header[e.toLowerCase()]},a.prototype._setHeaderProperties=function(e){var t=e["content-type"]||"";this.type=r.type(t);var n,a=r.params(t);for(n in a)Object.prototype.hasOwnProperty.call(a,n)&&(this[n]=a[n]);this.links={};try{e.link&&(this.links=r.parseLinks(e.link))}catch(e){}},a.prototype._setStatusProperties=function(e){var t=e/100|0;this.statusCode=e,this.status=this.statusCode,this.statusType=t,this.info=1==t,this.ok=2==t,this.redirect=3==t,this.clientError=4==t,this.serverError=5==t,this.error=(4==t||5==t)&&this.toError(),this.created=201===e,this.accepted=202===e,this.noContent=204===e,this.badRequest=400===e,this.unauthorized=401===e,this.notAcceptable=406===e,this.forbidden=403===e,this.notFound=404===e,this.unprocessableEntity=422===e}},function(e,t,n){"use strict";t.type=function(e){return e.split(/ *; */).shift()},t.params=function(e){return e.split(/ *; */).reduce((function(e,t){t=(n=t.split(/ *= */)).shift();var n=n.shift();return t&&n&&(e[t]=n),e}),{})},t.parseLinks=function(e){return e.split(/ *, */).reduce((function(e,t){var n=t.split(/ *; */);t=n[0].slice(1,-1);return e[n[1].split(/ *= */)[1].slice(1,-1)]=t,e}),{})},t.cleanHeader=function(e,t){return delete e["content-type"],delete e["content-length"],delete e["transfer-encoding"],delete e.host,t&&(delete e.authorization,delete e.cookie),e}},function(e,t,n){"use strict";function r(){this._defaults=[]}["use","on","once","set","query","type","accept","auth","withCredentials","sortQuery","retry","ok","redirects","timeout","buffer","serialize","parse","ca","key","pfx","cert","disableTLSCerts"].forEach((function(e){r.prototype[e]=function(){for(var t=arguments.length,n=new Array(t),r=0;r<t;r++)n[r]=arguments[r];return this._defaults.push({fn:e,args:n}),this}})),r.prototype._setDefaults=function(e){this._defaults.forEach((function(t){e[t.fn].apply(e,function(e){return function(e){if(Array.isArray(e)){for(var t=0,n=new Array(e.length);t<e.length;t++)n[t]=e[t];return n}}(e)||function(e){if(Symbol.iterator in Object(e)||"[object Arguments]"===Object.prototype.toString.call(e))return Array.from(e)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance")}()}(t.args))}))},e.exports=r},function(e,t,n){"use strict";n.r(t)}]);
|
dist/Lite/assets/js/headline-analyzer.js.gz
CHANGED
Binary file
|
dist/Lite/assets/js/link-format-block-old.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1 |
-
/*! ! built on Tuesday, September
|
2 |
!function(e){var t={};function n(o){if(t[o])return t[o].exports;var r=t[o]={i:o,l:!1,exports:{}};return e[o].call(r.exports,r,r.exports,n),r.l=!0,r.exports}n.m=e,n.c=t,n.d=function(e,t,o){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(n.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)n.d(o,r,function(t){return e[t]}.bind(null,r));return o},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=82)}({0:function(e,t){e.exports=window.wp.element},12:function(e,t){function n(){return e.exports=n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n,o=arguments[t];for(n in o)Object.prototype.hasOwnProperty.call(o,n)&&(e[n]=o[n])}return e},n.apply(this,arguments)}e.exports=n},14:function(e,t,n){var o=n(29);e.exports=function(e,t){if(null==e)return{};var n,r=o(e,t);if(Object.getOwnPropertySymbols)for(var i=Object.getOwnPropertySymbols(e),s=0;s<i.length;s++)n=i[s],0<=t.indexOf(n)||Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n]);return r}},15:function(e,t){e.exports=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}},16:function(e,t){function n(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}e.exports=function(e,t,o){return t&&n(e.prototype,t),o&&n(e,o),e}},17:function(e,t,n){var o=n(30);e.exports=function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&o(e,t)}},18:function(e,t,n){var o=n(31),r=n(3);e.exports=function(e,t){return!t||"object"!==o(t)&&"function"!=typeof t?r(e):t}},19:function(e,t){e.exports=function(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}},29:function(e,t){e.exports=function(e,t){if(null==e)return{};for(var n,o={},r=Object.keys(e),i=0;i<r.length;i++)n=r[i],0<=t.indexOf(n)||(o[n]=e[n]);return o}},3:function(e,t){e.exports=function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}},30:function(e,t){function n(t,o){return e.exports=n=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},n(t,o)}e.exports=n},31:function(e,t){function n(t){return"function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?e.exports=n=function(e){return typeof e}:e.exports=n=function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n(t)}e.exports=n},6:function(e,t){e.exports=window.lodash},7:function(e,t,n){var o;!function(){"use strict";var n={}.hasOwnProperty;function r(){for(var e=[],t=0;t<arguments.length;t++){var o=arguments[t];if(o){var i=typeof o;if("string"==i||"number"==i)e.push(o);else if(Array.isArray(o)&&o.length){var s=r.apply(null,o);s&&e.push(s)}else if("object"==i)for(var a in o)n.call(o,a)&&o[a]&&e.push(a)}}return e.join(" ")}e.exports?(r.default=r,e.exports=r):void 0===(o=function(){return r}.apply(t,[]))||(e.exports=o)}()},8:function(e,t){function n(t){return e.exports=n=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},n(t)}e.exports=n},82:function(e,t,n){"use strict";n.r(t),n.d(t,"link",(function(){return Et}));var o=n(14),r=n.n(o),i=n(19),s=n.n(i),a=n(15),l=n.n(a),c=(t=n(16),n.n(t)),u=(o=n(3),n.n(o)),p=(i=n(17),n.n(i)),f=(a=n(18),n.n(a)),d=(t=n(8),n.n(t)),h=n(0),g=n(6),v=(o=n(12),n.n(o)),b=(a=(i=window.wp).url).getProtocol,y=a.isValidProtocol,m=a.getAuthority,w=a.isValidAuthority,k=a.getPath,O=a.isValidPath,S=a.getQueryString,j=a.isValidQueryString,L=a.getFragment,R=a.isValidFragment,E=(t=i.i18n).__,C=t.sprintf;function P(e){if(e){var t=e.trim();if(t){if(/^\S+:/.test(t)){if(e=b(t),!y(e))return;if(Object(g.startsWith)(e,"http")&&!/^https?:\/\/[^\/\s]/i.test(t))return;if(e=m(t),!w(e))return;if((e=k(t))&&!O(e))return;if((e=S(t))&&!j(e))return;if((e=L(t))&&!R(e))return}return!Object(g.startsWith)(t,"#")||R(t)?1:void 0}}}function x(e){var t=e.url,n=e.opensInNewWindow,o=e.noFollow,r=e.sponsored,i=e.ugc,s=e.text;e={type:"core/link",attributes:{url:t}},t=[];return n&&(s=C(E("%s (opens in a new tab)","all-in-one-seo-pack"),s),e.attributes.target="_blank",e.attributes["aria-label"]=s,t.push("noreferrer noopener")),o&&t.push("nofollow"),r&&t.push("sponsored"),i&&t.push("ugc"),0<t.length&&(e.attributes.rel=t.join(" ")),e}o=wp.element.Component;var N=(a=wp.dom).getOffsetParent,_=a.getRectangleFromRange,F=function(e){p()(n,e);var t=function(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=d()(e);return o=t?(n=d()(this).constructor,Reflect.construct(o,arguments,n)):o.apply(this,arguments),f()(this,o)}}(n);function n(){var e;return l()(this,n),(e=t.apply(this,arguments)).state={style:function(){var e=window.getSelection();if(0===e.rangeCount)return{};var t=(n=_(e.getRangeAt(0))).top+n.height,n=n.left+n.width/2;return(e=N(e.anchorNode))&&(t-=(e=e.getBoundingClientRect()).top,n-=e.left),{top:t,left:n}}()},e}return c()(n,[{key:"render",value:function(){var e=this.props.children,t=this.state.style;return Object(h.createElement)("div",{className:"editor-format-toolbar__selection-position",style:t},e)}}]),n}(o),T=(i=n(7),n.n(i));function W(e){return(W="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function A(e,t){var n,o=Object.keys(e);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(e),t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)),o}function I(e,t){var n=e["page".concat(t?"Y":"X","Offset")];t="scroll".concat(t?"Top":"Left");return"number"==typeof n||"number"!=typeof(n=(e=e.document).documentElement[t])&&(n=e.body[t]),n}function D(e){return I(e)}function V(e){return I(e,!0)}function B(e){var t,n,o,r=(n=(r=(t=e).ownerDocument).body,o=r&&r.documentElement,t=(r=t.getBoundingClientRect()).left,r=r.top,{left:t-=o.clientLeft||n.clientLeft||0,top:r-=o.clientTop||n.clientTop||0});e=(e=e.ownerDocument).defaultView||e.parentWindow;return r.left+=D(e),r.top+=V(e),r}var M,U=new RegExp("^(".concat(/[\-+]?(?:\d*\.|)\d+(?:[eE][\-+]?\d+|)/.source,")(?!px)[a-z%]+$"),"i"),K=/^(top|right|bottom|left)$/,H="currentStyle",z="runtimeStyle",q="left";function Q(e,t){for(var n=0;n<e.length;n++)t(e[n])}function $(e){return"border-box"===M(e,"boxSizing")}"undefined"!=typeof window&&(M=window.getComputedStyle?function(e,t,n){var o="",r=e.ownerDocument;return(e=n||r.defaultView.getComputedStyle(e,null))?e.getPropertyValue(t)||e[t]:o}:function(e,t){var n,o,r,i=e[H]&&e[H][t];return U.test(i)&&!K.test(t)&&(o=(n=e.style)[q],r=e[z][q],e[z][q]=e[H][q],n[q]="fontSize"===t?"1em":i||0,i=n.pixelLeft+"px",n[q]=o,e[z][q]=r),""===i?"auto":i});var G=["margin","border","padding"];function X(e,t,n){for(var o,r,i=0,s=0;s<t.length;s++)if(o=t[s])for(r=0;r<n.length;r++){var a="border"===o?"".concat(o+n[r],"Width"):o+n[r];i+=parseFloat(M(e,a))||0}return i}function Y(e){return null!=e&&e==e.window}var J={};function Z(e,t,n){if(Y(e))return"width"===t?J.viewportWidth(e):J.viewportHeight(e);if(9===e.nodeType)return"width"===t?J.docWidth(e):J.docHeight(e);var o="width"===t?["Left","Right"]:["Top","Bottom"],r="width"===t?e.offsetWidth:e.offsetHeight,i=(M(e),$(e)),s=0;return(null==r||r<=0)&&(r=void 0,(null==(s=M(e,t))||Number(s)<0)&&(s=e.style[t]||0),s=parseFloat(s)||0),t=void 0!==r||i,r=r||s,-1===(n=void 0===n?i?1:-1:n)?t?r-X(e,["border","padding"],o):s:t?(t=2===n?-X(e,["border"],o):X(e,["margin"],o),r+(1===n?0:t)):s+X(e,G.slice(n),o)}Q(["Width","Height"],(function(e){J["doc".concat(e)]=function(t){return t=t.document,Math.max(t.documentElement["scroll".concat(e)],t.body["scroll".concat(e)],J["viewport".concat(e)](t))},J["viewport".concat(e)]=function(t){var n="client".concat(e),o=t.document,r=o.body;t=o.documentElement[n];return"CSS1Compat"===o.compatMode&&t||r&&r[n]||t}}));var ee={position:"absolute",visibility:"hidden",display:"block"};function te(e){var t,n=arguments;return 0!==e.offsetWidth?t=Z.apply(void 0,n):function(e,t,n){var o,r={},i=e.style;for(o in t)t.hasOwnProperty(o)&&(r[o]=i[o],i[o]=t[o]);for(o in n.call(e),t)t.hasOwnProperty(o)&&(i[o]=r[o])}(e,ee,(function(){t=Z.apply(void 0,n)})),t}function ne(e,t,n){var o;n=n;if("object"!==W(t))return void 0!==n?("number"==typeof n&&(n+="px"),void(e.style[t]=n)):M(e,t);for(o in t)t.hasOwnProperty(o)&&ne(e,o,t[o])}Q(["width","height"],(function(e){var t=e.charAt(0).toUpperCase()+e.slice(1);J["outer".concat(t)]=function(t,n){return t&&te(t,e,n?0:1)};var n="width"===e?["Left","Right"]:["Top","Bottom"];J[e]=function(t,o){return void 0===o?t&&te(t,e,-1):t?(M(t),$(t)&&(o+=X(t,["padding","border"],n)),ne(t,e,o)):void 0}}));var oe=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?A(n,!0).forEach((function(t){var o,r;o=e,t=n[r=t],r in o?Object.defineProperty(o,r,{value:t,enumerable:!0,configurable:!0,writable:!0}):o[r]=t})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):A(n).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({getWindow:function(e){return(e=e.ownerDocument||e).defaultView||e.parentWindow},offset:function(e,t){if(void 0===t)return B(e);!function(e,t){"static"===ne(e,"position")&&(e.style.position="relative");var n,o,r=B(e),i={};for(o in t)t.hasOwnProperty(o)&&(n=parseFloat(ne(e,o))||0,i[o]=n+t[o]-r[o]);ne(e,i)}(e,t)},isWindow:Y,each:Q,css:ne,clone:function(e){var t,n={};for(t in e)e.hasOwnProperty(t)&&(n[t]=e[t]);if(e.overflow)for(var o in e)e.hasOwnProperty(o)&&(n.overflow[o]=e.overflow[o]);return n},scrollLeft:function(e,t){if(Y(e)){if(void 0===t)return D(e);window.scrollTo(t,V(e))}else{if(void 0===t)return e.scrollLeft;e.scrollLeft=t}},scrollTop:function(e,t){if(Y(e)){if(void 0===t)return V(e);window.scrollTo(D(e),t)}else{if(void 0===t)return e.scrollTop;e.scrollTop=t}},viewportWidth:0,viewportHeight:0},J);function re(e){return e.stopPropagation()}var ie=(a=(t=window.wp).i18n).__,se=a.sprintf,ae=a._n,le=(n=(o=t.element).Component,o.createRef),ce=t.htmlEntities.decodeEntities,ue=(i=t.keycodes).UP,pe=i.DOWN,fe=i.ENTER,de=i.TAB,he=(a=t.components).Spinner,ge=(o=a.withSpokenMessages,a.Popover),ve=(i=t.compose.withInstanceId,t.apiFetch),be=t.url.addQueryArgs,ye=o(i(function(e){p()(n,e);var t=function(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=d()(e);return o=t?(n=d()(this).constructor,Reflect.construct(o,arguments,n)):o.apply(this,arguments),f()(this,o)}}(n);function n(e){var o=e.autocompleteRef;return l()(this,n),(e=t.apply(this,arguments)).onChange=e.onChange.bind(u()(e)),e.onKeyDown=e.onKeyDown.bind(u()(e)),e.autocompleteRef=o||le(),e.inputRef=le(),e.updateSuggestions=Object(g.throttle)(e.updateSuggestions.bind(u()(e)),200),e.suggestionNodes=[],e.state={posts:[],showSuggestions:!1,selectedSuggestion:null},e}return c()(n,[{key:"componentDidUpdate",value:function(){var e=this,t=(n=this.state).showSuggestions,n=n.selectedSuggestion;t&&null!==n&&!this.scrollingIntoView&&(this.scrollingIntoView=!0,function(e,t,n){n=n||{},9===t.nodeType&&(t=oe.getWindow(t));var o,r,i,s,a,l,c=n.allowHorizontalScroll,u=n.onlyScrollIfNeeded,p=n.alignWithTop,f=n.alignWithLeft,d=n.offsetTop||0,h=n.offsetLeft||0,g=n.offsetBottom||0,v=n.offsetRight||0,b=(c=void 0===c||c,oe.isWindow(t)),y=oe.offset(e);n=oe.outerHeight(e),e=oe.outerWidth(e);b?(i=t,l=oe.height(i),a=oe.width(i),s={left:oe.scrollLeft(i),top:oe.scrollTop(i)},o={left:y.left-s.left-h,top:y.top-s.top-d},r={left:y.left+e-(s.left+a)+v,top:y.top+n-(s.top+l)+g},i=s):(a=oe.offset(t),l=t.clientHeight,s=t.clientWidth,i={left:t.scrollLeft,top:t.scrollTop},o={left:y.left-(a.left+(parseFloat(oe.css(t,"borderLeftWidth"))||0))-h,top:y.top-(a.top+(parseFloat(oe.css(t,"borderTopWidth"))||0))-d},r={left:y.left+e-(a.left+s+(parseFloat(oe.css(t,"borderRightWidth"))||0))+v,top:y.top+n-(a.top+l+(parseFloat(oe.css(t,"borderBottomWidth"))||0))+g}),o.top<0||0<r.top?!0===p||!1!==p&&o.top<0?oe.scrollTop(t,i.top+o.top):oe.scrollTop(t,i.top+r.top):u||((p=void 0===p||!!p)?oe.scrollTop(t,i.top+o.top):oe.scrollTop(t,i.top+r.top)),c&&(o.left<0||0<r.left?!0===f||!1!==f&&o.left<0?oe.scrollLeft(t,i.left+o.left):oe.scrollLeft(t,i.left+r.left):u||((f=void 0===f||!!f)?oe.scrollLeft(t,i.left+o.left):oe.scrollLeft(t,i.left+r.left)))}(this.suggestionNodes[n],this.autocompleteRef.current,{onlyScrollIfNeeded:!0}),setTimeout((function(){e.scrollingIntoView=!1}),100))}},{key:"componentWillUnmount",value:function(){delete this.suggestionsRequest}},{key:"bindSuggestionNode",value:function(e){var t=this;return function(n){t.suggestionNodes[e]=n}}},{key:"updateSuggestions",value:function(e){var t,n=this;e.length<2||/^https?:/.test(e)?this.setState({showSuggestions:!1,selectedSuggestion:null,loading:!1}):(this.setState({showSuggestions:!0,selectedSuggestion:null,loading:!0}),(t=ve({path:be("/wp/v2/search",{search:e,per_page:20,type:"post"})})).then((function(e){n.suggestionsRequest===t&&(n.setState({posts:e,loading:!1}),e.length?n.props.debouncedSpeak(se(ae("%d result found, use up and down arrow keys to navigate.","%d results found, use up and down arrow keys to navigate.",e.length),e.length),"assertive"):n.props.debouncedSpeak(ie("No results.","all-in-one-seo-pack"),"assertive"))})).catch((function(){n.suggestionsRequest===t&&n.setState({loading:!1})})),this.suggestionsRequest=t)}},{key:"onChange",value:function(e){e=e.target.value,this.props.onChange(e),this.updateSuggestions(e)}},{key:"onKeyDown",value:function(e){var t=(r=this.state).showSuggestions,n=r.selectedSuggestion,o=r.posts,r=r.loading;if(t&&o.length&&!r){var i=this.state.posts[this.state.selectedSuggestion];switch(e.keyCode){case ue:e.stopPropagation(),e.preventDefault();var s=n?n-1:o.length-1;this.setState({selectedSuggestion:s});break;case pe:e.stopPropagation(),e.preventDefault(),s=null===n||n===o.length-1?0:n+1,this.setState({selectedSuggestion:s});break;case de:null!==this.state.selectedSuggestion&&(this.selectLink(i),this.props.speak(ie("Link selected.","all-in-one-seo-pack")));break;case fe:null!==this.state.selectedSuggestion&&(e.stopPropagation(),this.selectLink(i))}}else switch(e.keyCode){case ue:0!==e.target.selectionStart&&(e.stopPropagation(),e.preventDefault(),e.target.setSelectionRange(0,0));break;case pe:this.props.value.length!==e.target.selectionStart&&(e.stopPropagation(),e.preventDefault(),e.target.setSelectionRange(this.props.value.length,this.props.value.length))}}},{key:"selectLink",value:function(e){this.props.onChange(e.url,e),this.setState({selectedSuggestion:null,showSuggestions:!1})}},{key:"handleOnClick",value:function(e){this.selectLink(e),this.inputRef.current.focus()}},{key:"render",value:function(){var e=this,t=void 0===(l=(s=this.props).value)?"":l,n=void 0===(i=s.autoFocus)||i,o=s.instanceId,r=s.className,i=(l=this.state).showSuggestions,s=l.posts,a=l.selectedSuggestion,l=l.loading;return Object(h.createElement)("div",{className:T()("editor-url-input block-editor-url-input",r)},Object(h.createElement)("input",{autoFocus:n,type:"text","aria-label":ie("URL","all-in-one-seo-pack"),required:!0,value:t,onChange:this.onChange,onInput:re,placeholder:ie("Paste URL or type to search","all-in-one-seo-pack"),onKeyDown:this.onKeyDown,role:"combobox","aria-expanded":i,"aria-autocomplete":"list","aria-owns":"editor-url-input-suggestions-".concat(o),"aria-activedescendant":null!==a?"editor-url-input-suggestion-".concat(o,"-").concat(a):void 0,ref:this.inputRef}),l&&Object(h.createElement)(he,null),i&&!!s.length&&Object(h.createElement)(ge,{position:"bottom",noArrow:!0,focusOnMount:!1},Object(h.createElement)("div",{className:T()("editor-url-input__suggestions","block-editor-url-input__suggestions","".concat(r,"__suggestions")),id:"editor-url-input-suggestions-".concat(o),ref:this.autocompleteRef,role:"listbox"},s.map((function(t,n){return Object(h.createElement)("button",{key:t.id,role:"option",tabIndex:"-1",id:"editor-url-input-suggestion-".concat(o,"-").concat(n),ref:e.bindSuggestionNode(n),className:T()("editor-url-input__suggestion block-editor-url-input__suggestion",{"is-selected":n===a}),onClick:function(){return e.handleOnClick(t)},"aria-selected":n===a},ce(t.title)||ie("(no title)","all-in-one-seo-pack"))})))))}}]),n}(n))),me=["autocompleteRef","className","onChangeInputValue","value"],we=(a=window.wp).i18n.__,ke=a.components.IconButton;function Oe(e){var t=e.autocompleteRef,n=e.className,o=e.onChangeInputValue,i=e.value;e=r()(e,me);return Object(h.createElement)("form",v()({className:T()("block-editor-url-popover__link-editor",n)},e),Object(h.createElement)(ye,{value:i,onChange:o,autocompleteRef:t}),Object(h.createElement)(ke,{icon:"editor-break",label:we("Apply","all-in-one-seo-pack"),type:"submit"}))}var Se=["className","linkClassName","onEditLinkClick","url","urlLabel"],je=(t=window.wp).i18n.__,Le=(o=t.components).ExternalLink,Re=o.IconButton,Ee=(i=t.url).safeDecodeURI,Ce=i.filterURLForDisplay;function Pe(e){var t=e.url,n=e.urlLabel;e=e.className,e=T()(e,"block-editor-url-popover__link-viewer-url");return t?Object(h.createElement)(Le,{className:e,href:t},n||Ce(Ee(t))):Object(h.createElement)("span",{className:e})}function xe(e){var t=e.className,n=e.linkClassName,o=e.onEditLinkClick,i=e.url,s=e.urlLabel;e=r()(e,Se);return Object(h.createElement)("div",v()({className:T()("block-editor-url-popover__link-viewer",t)},e),Object(h.createElement)(Pe,{url:i,urlLabel:s,className:n}),o&&Object(h.createElement)(Re,{icon:"edit",label:je("Edit","all-in-one-seo-pack"),onClick:o}))}var Ne=["isActive","addingLink","value","resetOnMount"];function _e(e){return e.stopPropagation()}var Fe=(n=window.wp).i18n.__,Te=(o=(a=n.element).Component,a.createRef),We=a.useMemo,Ae=a.Fragment,Ie=(t=n.components).ToggleControl,De=(i=t.withSpokenMessages,(a=n.keycodes).LEFT),Ve=a.RIGHT,Be=a.UP,Me=a.DOWN,Ue=a.BACKSPACE,Ke=a.ENTER,He=a.ESCAPE,ze=n.dom.getRectangleFromRange,qe=n.url.prependHTTP,Qe=(t=n.richText).create,$e=t.insert,Ge=t.isCollapsed,Xe=t.applyFormat,Ye=t.getTextContent,Je=t.slice,Ze=n.blockEditor.URLPopover;function et(e,t){return e.addingLink||t.editLink}function tt(e){var t=e.isActive,n=e.addingLink,o=e.value,i=e.resetOnMount;e=r()(e,Ne);return(o=We((function(){var e;if(e=0<(e=window.getSelection()).rangeCount?e.getRangeAt(0):null){if(n)return ze(e);for(var t=(t=e.startContainer).nextElementSibling||t;t.nodeType!==window.Node.ELEMENT_NODE;)t=t.parentNode;return(e=t.closest("a"))?e.getBoundingClientRect():void 0}}),[t,n,o.start,o.end]))?(i(o),Object(h.createElement)(Ze,v()({anchorRect:o},e))):null}var nt=i(function(e){p()(n,e);var t=function(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=d()(e);return o=t?(n=d()(this).constructor,Reflect.construct(o,arguments,n)):o.apply(this,arguments),f()(this,o)}}(n);function n(){var e;return l()(this,n),(e=t.apply(this,arguments)).editLink=e.editLink.bind(u()(e)),e.submitLink=e.submitLink.bind(u()(e)),e.onKeyDown=e.onKeyDown.bind(u()(e)),e.onChangeInputValue=e.onChangeInputValue.bind(u()(e)),e.setLinkTarget=e.setLinkTarget.bind(u()(e)),e.setNoFollow=e.setNoFollow.bind(u()(e)),e.setSponsored=e.setSponsored.bind(u()(e)),e.setUgc=e.setUgc.bind(u()(e)),e.onFocusOutside=e.onFocusOutside.bind(u()(e)),e.resetState=e.resetState.bind(u()(e)),e.autocompleteRef=Te(),e.resetOnMount=e.resetOnMount.bind(u()(e)),e.state={opensInNewWindow:!1,noFollow:!1,sponsored:!1,ugc:!1,inputValue:"",anchorRect:!1},e}return c()(n,[{key:"onKeyDown",value:function(e){-1<[De,Me,Ve,Be,Ue,Ke].indexOf(e.keyCode)&&e.stopPropagation(),-1<[He].indexOf(e.keyCode)&&this.resetState()}},{key:"onChangeInputValue",value:function(e){this.setState({inputValue:e})}},{key:"setLinkTarget",value:function(e){var t=this.props,n=void 0===(r=t.activeAttributes.url)?"":r,o=t.value,r=t.onChange;this.setState({opensInNewWindow:e}),et(this.props,this.state)||(t=Ye(Je(o)),r(Xe(o,x({url:n,opensInNewWindow:e,noFollow:this.state.noFollow,sponsored:this.state.sponsored,ugc:this.state.ugc,text:t}))))}},{key:"setNoFollow",value:function(e){var t=this.props,n=void 0===(r=t.activeAttributes.url)?"":r,o=t.value,r=t.onChange;this.setState({noFollow:e}),et(this.props,this.state)||(t=Ye(Je(o)),r(Xe(o,x({url:n,opensInNewWindow:this.state.opensInNewWindow,noFollow:e,sponsored:this.state.sponsored,ugc:this.state.ugc,text:t}))))}},{key:"setSponsored",value:function(e){var t=this.props,n=void 0===(r=t.activeAttributes.url)?"":r,o=t.value,r=t.onChange;this.setState({sponsored:e}),et(this.props,this.state)||(t=Ye(Je(o)),r(Xe(o,x({url:n,opensInNewWindow:this.state.opensInNewWindow,noFollow:this.state.noFollow,sponsored:e,ugc:this.state.ugc,text:t}))))}},{key:"setUgc",value:function(e){var t=this.props,n=void 0===(r=t.activeAttributes.url)?"":r,o=t.value,r=t.onChange;this.setState({ugc:e}),et(this.props,this.state)||(t=Ye(Je(o)),r(Xe(o,x({url:n,opensInNewWindow:this.state.opensInNewWindow,noFollow:this.state.noFollow,sponsored:this.state.sponsored,ugc:e,text:t}))))}},{key:"editLink",value:function(e){this.setState({editLink:!0}),e.preventDefault()}},{key:"submitLink",value:function(e){var t=(l=this.props).isActive,n=l.value,o=l.onChange,r=l.speak,i=(c=this.state).inputValue,s=c.opensInNewWindow,a=c.noFollow,l=c.sponsored,c=c.ugc;c=x({url:i=qe(i),opensInNewWindow:s,noFollow:a,sponsored:l,ugc:c,text:Ye(Je(n))});e.preventDefault(),Ge(n)&&!t?(e=Xe(Qe({text:i}),c,0,i.length),o($e(n,e))):o(Xe(n,c)),this.resetState(),P(i)?r(Fe(t?"Link edited.":"Link inserted.","all-in-one-seo-pack"),"assertive"):r(Fe("Warning: the link has been inserted but could have errors. Please test it.","all-in-one-seo-pack"),"assertive")}},{key:"onFocusOutside",value:function(){var e=this.autocompleteRef.current;e&&e.contains(event.target)||this.resetState()}},{key:"resetState",value:function(){this.props.stopAddingLink(),this.setState({editLink:!1})}},{key:"resetOnMount",value:function(e){this.state.anchorRect!==e&&this.setState({opensInNewWindow:!1,noFollow:!1,sponsored:!1,ugc:!1,anchorRect:e})}},{key:"render",value:function(){var e=this,t=(u=this.props).isActive,n=u.activeAttributes.url,o=u.addingLink,r=u.value;if(!t&&!o)return null;var i=(u=this.state).inputValue,s=u.opensInNewWindow,a=u.noFollow,l=u.sponsored,c=u.ugc,u=et(this.props,this.state);return Object(h.createElement)(F,{key:"".concat(r.start).concat(r.end)},Object(h.createElement)(tt,{resetOnMount:this.resetOnMount,value:r,isActive:t,addingLink:o,onFocusOutside:this.onFocusOutside,onClose:function(){i||e.resetState()},focusOnMount:!!u&&"firstElement",renderSettings:function(){return Object(h.createElement)(Ae,null,Object(h.createElement)(Ie,{label:Fe("Open in New Tab","all-in-one-seo-pack"),checked:s,onChange:e.setLinkTarget}),Object(h.createElement)(Ie,{label:Fe('Add "nofollow" to link',"all-in-one-seo-pack"),checked:a,onChange:e.setNoFollow}),Object(h.createElement)(Ie,{label:Fe('Add "sponsored" to link',"all-in-one-seo-pack"),checked:l,onChange:e.setSponsored}),Object(h.createElement)(Ie,{label:Fe('Add "ugc" to link',"all-in-one-seo-pack"),checked:c,onChange:e.setUgc}))}},u?Object(h.createElement)(Oe,{className:"editor-format-toolbar__link-container-content block-editor-format-toolbar__link-container-content",value:i,onChangeInputValue:this.onChangeInputValue,onKeyDown:this.onKeyDown,onKeyPress:_e,onSubmit:this.submitLink,autocompleteRef:this.autocompleteRef}):Object(h.createElement)(xe,{className:"editor-format-toolbar__link-container-content block-editor-format-toolbar__link-container-content",onKeyPress:_e,url:n,onEditLinkClick:this.editLink,linkClassName:P(qe(n))?void 0:"has-invalid-link"})))}}],[{key:"getDerivedStateFromProps",value:function(e,t){var n=(i=e.activeAttributes).url,o=i.target,r=i.rel,i="_blank"===o;o={};return et(e,t)||(n!==t.inputValue&&(o.inputValue=n),i!==t.opensInNewWindow&&(o.opensInNewWindow=i),"string"==typeof r&&(n=r.split(" ").includes("nofollow"),i=r.split(" ").includes("sponsored"),r=r.split(" ").includes("ugc"),n!==t.noFollow&&(o.noFollow=n),i!==t.sponsored&&(o.sponsored=i),r!==t.ugc&&(o.ugc=r))),o}}]),n}(o));function ot(e,t){var n,o=Object.keys(e);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(e),t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)),o}var rt=(a=window.wp).i18n.__,it=(n=(t=a.element).Component,t.Fragment),st=(i=a.data).select,at=(o=i.withSelect,(t=a.blockEditor).BlockControls),lt=t.RichTextToolbarButton,ct=t.RichTextShortcut,ut=(i=a.richText).getTextContent,pt=i.applyFormat,ft=i.removeFormat,dt=i.slice,ht=a.url.isURL,gt=(t=a.components).Toolbar,vt=(i=t.withSpokenMessages,a=(t=a.compose).compose,t=t.ifCondition,"core/link"),bt=rt("Add Link","all-in-one-seo-pack"),yt=/^(mailto:)?[a-z0-9._%+-]+@[a-z0-9][a-z0-9.-]*\.[a-z]{2,63}$/i,mt=(n=function(e){p()(n,e);var t=function(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=d()(e);return o=t?(n=d()(this).constructor,Reflect.construct(o,arguments,n)):o.apply(this,arguments),f()(this,o)}}(n);function n(){var e;return l()(this,n),(e=t.apply(this,arguments)).isEmail=e.isEmail.bind(u()(e)),e.addLink=e.addLink.bind(u()(e)),e.stopAddingLink=e.stopAddingLink.bind(u()(e)),e.onRemoveFormat=e.onRemoveFormat.bind(u()(e)),e.state={addingLink:!1},e}return c()(n,[{key:"isEmail",value:function(e){return yt.test(e)}},{key:"addLink",value:function(){var e,t=(e=this.props).value,n=e.onChange;(e=ut(dt(t)))&&ht(e)?n(pt(t,{type:vt,attributes:{url:e}})):e&&this.isEmail(e)?n(pt(t,{type:vt,attributes:{url:"mailto:".concat(e)}})):this.setState({addingLink:!0})}},{key:"stopAddingLink",value:function(){this.setState({addingLink:!1})}},{key:"onRemoveFormat",value:function(){var e=(n=this.props).value,t=n.onChange,n=n.speak,o=e;Object(g.map)(["core/link"],(function(e){o=ft(o,e)})),t(function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?ot(Object(n),!0).forEach((function(t){s()(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):ot(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({},o)),n(rt("Link removed.","all-in-one-seo-pack"),"assertive")}},{key:"render",value:function(){var e=(n=this.props).activeAttributes,t=n.onChange,n=(o=this.props).isActive,o=o.value;return Object(h.createElement)(it,null,Object(h.createElement)(at,null,Object(h.createElement)(gt,{className:"editorskit-components-toolbar"},Object(h.createElement)(ct,{type:"primary",character:"k",onUse:this.addLink}),Object(h.createElement)(ct,{type:"primaryShift",character:"k",onUse:this.onRemoveFormat}),n&&Object(h.createElement)(lt,{name:"link",icon:"editor-unlink",title:rt("Unlink","all-in-one-seo-pack"),onClick:this.onRemoveFormat,isActive:n,shortcutType:"primaryShift",shortcutCharacter:"k"}),!n&&Object(h.createElement)(lt,{name:"link",icon:"admin-links",title:bt,onClick:this.addLink,isActive:n,shortcutType:"primary",shortcutCharacter:"k"}),Object(h.createElement)(nt,{addingLink:this.state.addingLink,stopAddingLink:this.stopAddingLink,isActive:n,activeAttributes:e,value:o,onChange:t}))))}}]),n}(n),t=a(o((function(){return{isDisabled:st("core/edit-post").isFeatureActive("disableEditorsKitLinkFormats")}})),t((function(e){return!e.isDisabled})),i)(n),["name"]),wt=(i=wp.i18n.__,(n=wp.richText).registerFormatType),kt=n.unregisterFormatType,Ot=n.applyFormat,St=n.isCollapsed,jt=wp.htmlEntities.decodeEntities,Lt=wp.url.isURL,Rt="core/link",Et={name:Rt,title:i("Link","all-in-one-seo-pack"),tagName:"a",className:null,attributes:{url:"href",target:"target",rel:"rel"},__unstablePasteRule:function(e,t){var n=t.html;t=t.plainText;return St(e)?e:(t=(n||t).replace(/<[^>]+>/g,"").trim(),Lt(t)?Ot(e,{type:Rt,attributes:{url:jt(t)}}):e)},edit:t};[Et].forEach((function(e){var t=e.name;e=r()(e,mt);t&&(kt("core/link"),wt(t,e))}))}});
|
1 |
+
/*! ! built on Tuesday, September 21st 2021, 9:50:25 pm */
|
2 |
!function(e){var t={};function n(o){if(t[o])return t[o].exports;var r=t[o]={i:o,l:!1,exports:{}};return e[o].call(r.exports,r,r.exports,n),r.l=!0,r.exports}n.m=e,n.c=t,n.d=function(e,t,o){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(n.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)n.d(o,r,function(t){return e[t]}.bind(null,r));return o},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=82)}({0:function(e,t){e.exports=window.wp.element},12:function(e,t){function n(){return e.exports=n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n,o=arguments[t];for(n in o)Object.prototype.hasOwnProperty.call(o,n)&&(e[n]=o[n])}return e},n.apply(this,arguments)}e.exports=n},14:function(e,t,n){var o=n(29);e.exports=function(e,t){if(null==e)return{};var n,r=o(e,t);if(Object.getOwnPropertySymbols)for(var i=Object.getOwnPropertySymbols(e),s=0;s<i.length;s++)n=i[s],0<=t.indexOf(n)||Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n]);return r}},15:function(e,t){e.exports=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}},16:function(e,t){function n(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}e.exports=function(e,t,o){return t&&n(e.prototype,t),o&&n(e,o),e}},17:function(e,t,n){var o=n(30);e.exports=function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&o(e,t)}},18:function(e,t,n){var o=n(31),r=n(3);e.exports=function(e,t){return!t||"object"!==o(t)&&"function"!=typeof t?r(e):t}},19:function(e,t){e.exports=function(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}},29:function(e,t){e.exports=function(e,t){if(null==e)return{};for(var n,o={},r=Object.keys(e),i=0;i<r.length;i++)n=r[i],0<=t.indexOf(n)||(o[n]=e[n]);return o}},3:function(e,t){e.exports=function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}},30:function(e,t){function n(t,o){return e.exports=n=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},n(t,o)}e.exports=n},31:function(e,t){function n(t){return"function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?e.exports=n=function(e){return typeof e}:e.exports=n=function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n(t)}e.exports=n},6:function(e,t){e.exports=window.lodash},7:function(e,t,n){var o;!function(){"use strict";var n={}.hasOwnProperty;function r(){for(var e=[],t=0;t<arguments.length;t++){var o=arguments[t];if(o){var i=typeof o;if("string"==i||"number"==i)e.push(o);else if(Array.isArray(o)&&o.length){var s=r.apply(null,o);s&&e.push(s)}else if("object"==i)for(var a in o)n.call(o,a)&&o[a]&&e.push(a)}}return e.join(" ")}e.exports?(r.default=r,e.exports=r):void 0===(o=function(){return r}.apply(t,[]))||(e.exports=o)}()},8:function(e,t){function n(t){return e.exports=n=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},n(t)}e.exports=n},82:function(e,t,n){"use strict";n.r(t),n.d(t,"link",(function(){return Et}));var o=n(14),r=n.n(o),i=n(19),s=n.n(i),a=n(15),l=n.n(a),c=(t=n(16),n.n(t)),u=(o=n(3),n.n(o)),p=(i=n(17),n.n(i)),f=(a=n(18),n.n(a)),d=(t=n(8),n.n(t)),h=n(0),g=n(6),v=(o=n(12),n.n(o)),b=(a=(i=window.wp).url).getProtocol,y=a.isValidProtocol,m=a.getAuthority,w=a.isValidAuthority,k=a.getPath,O=a.isValidPath,S=a.getQueryString,j=a.isValidQueryString,L=a.getFragment,R=a.isValidFragment,E=(t=i.i18n).__,C=t.sprintf;function P(e){if(e){var t=e.trim();if(t){if(/^\S+:/.test(t)){if(e=b(t),!y(e))return;if(Object(g.startsWith)(e,"http")&&!/^https?:\/\/[^\/\s]/i.test(t))return;if(e=m(t),!w(e))return;if((e=k(t))&&!O(e))return;if((e=S(t))&&!j(e))return;if((e=L(t))&&!R(e))return}return!Object(g.startsWith)(t,"#")||R(t)?1:void 0}}}function x(e){var t=e.url,n=e.opensInNewWindow,o=e.noFollow,r=e.sponsored,i=e.ugc,s=e.text;e={type:"core/link",attributes:{url:t}},t=[];return n&&(s=C(E("%s (opens in a new tab)","all-in-one-seo-pack"),s),e.attributes.target="_blank",e.attributes["aria-label"]=s,t.push("noreferrer noopener")),o&&t.push("nofollow"),r&&t.push("sponsored"),i&&t.push("ugc"),0<t.length&&(e.attributes.rel=t.join(" ")),e}o=wp.element.Component;var N=(a=wp.dom).getOffsetParent,_=a.getRectangleFromRange,F=function(e){p()(n,e);var t=function(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=d()(e);return o=t?(n=d()(this).constructor,Reflect.construct(o,arguments,n)):o.apply(this,arguments),f()(this,o)}}(n);function n(){var e;return l()(this,n),(e=t.apply(this,arguments)).state={style:function(){var e=window.getSelection();if(0===e.rangeCount)return{};var t=(n=_(e.getRangeAt(0))).top+n.height,n=n.left+n.width/2;return(e=N(e.anchorNode))&&(t-=(e=e.getBoundingClientRect()).top,n-=e.left),{top:t,left:n}}()},e}return c()(n,[{key:"render",value:function(){var e=this.props.children,t=this.state.style;return Object(h.createElement)("div",{className:"editor-format-toolbar__selection-position",style:t},e)}}]),n}(o),T=(i=n(7),n.n(i));function W(e){return(W="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function A(e,t){var n,o=Object.keys(e);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(e),t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)),o}function I(e,t){var n=e["page".concat(t?"Y":"X","Offset")];t="scroll".concat(t?"Top":"Left");return"number"==typeof n||"number"!=typeof(n=(e=e.document).documentElement[t])&&(n=e.body[t]),n}function D(e){return I(e)}function V(e){return I(e,!0)}function B(e){var t,n,o,r=(n=(r=(t=e).ownerDocument).body,o=r&&r.documentElement,t=(r=t.getBoundingClientRect()).left,r=r.top,{left:t-=o.clientLeft||n.clientLeft||0,top:r-=o.clientTop||n.clientTop||0});e=(e=e.ownerDocument).defaultView||e.parentWindow;return r.left+=D(e),r.top+=V(e),r}var M,U=new RegExp("^(".concat(/[\-+]?(?:\d*\.|)\d+(?:[eE][\-+]?\d+|)/.source,")(?!px)[a-z%]+$"),"i"),K=/^(top|right|bottom|left)$/,H="currentStyle",z="runtimeStyle",q="left";function Q(e,t){for(var n=0;n<e.length;n++)t(e[n])}function $(e){return"border-box"===M(e,"boxSizing")}"undefined"!=typeof window&&(M=window.getComputedStyle?function(e,t,n){var o="",r=e.ownerDocument;return(e=n||r.defaultView.getComputedStyle(e,null))?e.getPropertyValue(t)||e[t]:o}:function(e,t){var n,o,r,i=e[H]&&e[H][t];return U.test(i)&&!K.test(t)&&(o=(n=e.style)[q],r=e[z][q],e[z][q]=e[H][q],n[q]="fontSize"===t?"1em":i||0,i=n.pixelLeft+"px",n[q]=o,e[z][q]=r),""===i?"auto":i});var G=["margin","border","padding"];function X(e,t,n){for(var o,r,i=0,s=0;s<t.length;s++)if(o=t[s])for(r=0;r<n.length;r++){var a="border"===o?"".concat(o+n[r],"Width"):o+n[r];i+=parseFloat(M(e,a))||0}return i}function Y(e){return null!=e&&e==e.window}var J={};function Z(e,t,n){if(Y(e))return"width"===t?J.viewportWidth(e):J.viewportHeight(e);if(9===e.nodeType)return"width"===t?J.docWidth(e):J.docHeight(e);var o="width"===t?["Left","Right"]:["Top","Bottom"],r="width"===t?e.offsetWidth:e.offsetHeight,i=(M(e),$(e)),s=0;return(null==r||r<=0)&&(r=void 0,(null==(s=M(e,t))||Number(s)<0)&&(s=e.style[t]||0),s=parseFloat(s)||0),t=void 0!==r||i,r=r||s,-1===(n=void 0===n?i?1:-1:n)?t?r-X(e,["border","padding"],o):s:t?(t=2===n?-X(e,["border"],o):X(e,["margin"],o),r+(1===n?0:t)):s+X(e,G.slice(n),o)}Q(["Width","Height"],(function(e){J["doc".concat(e)]=function(t){return t=t.document,Math.max(t.documentElement["scroll".concat(e)],t.body["scroll".concat(e)],J["viewport".concat(e)](t))},J["viewport".concat(e)]=function(t){var n="client".concat(e),o=t.document,r=o.body;t=o.documentElement[n];return"CSS1Compat"===o.compatMode&&t||r&&r[n]||t}}));var ee={position:"absolute",visibility:"hidden",display:"block"};function te(e){var t,n=arguments;return 0!==e.offsetWidth?t=Z.apply(void 0,n):function(e,t,n){var o,r={},i=e.style;for(o in t)t.hasOwnProperty(o)&&(r[o]=i[o],i[o]=t[o]);for(o in n.call(e),t)t.hasOwnProperty(o)&&(i[o]=r[o])}(e,ee,(function(){t=Z.apply(void 0,n)})),t}function ne(e,t,n){var o;n=n;if("object"!==W(t))return void 0!==n?("number"==typeof n&&(n+="px"),void(e.style[t]=n)):M(e,t);for(o in t)t.hasOwnProperty(o)&&ne(e,o,t[o])}Q(["width","height"],(function(e){var t=e.charAt(0).toUpperCase()+e.slice(1);J["outer".concat(t)]=function(t,n){return t&&te(t,e,n?0:1)};var n="width"===e?["Left","Right"]:["Top","Bottom"];J[e]=function(t,o){return void 0===o?t&&te(t,e,-1):t?(M(t),$(t)&&(o+=X(t,["padding","border"],n)),ne(t,e,o)):void 0}}));var oe=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?A(n,!0).forEach((function(t){var o,r;o=e,t=n[r=t],r in o?Object.defineProperty(o,r,{value:t,enumerable:!0,configurable:!0,writable:!0}):o[r]=t})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):A(n).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({getWindow:function(e){return(e=e.ownerDocument||e).defaultView||e.parentWindow},offset:function(e,t){if(void 0===t)return B(e);!function(e,t){"static"===ne(e,"position")&&(e.style.position="relative");var n,o,r=B(e),i={};for(o in t)t.hasOwnProperty(o)&&(n=parseFloat(ne(e,o))||0,i[o]=n+t[o]-r[o]);ne(e,i)}(e,t)},isWindow:Y,each:Q,css:ne,clone:function(e){var t,n={};for(t in e)e.hasOwnProperty(t)&&(n[t]=e[t]);if(e.overflow)for(var o in e)e.hasOwnProperty(o)&&(n.overflow[o]=e.overflow[o]);return n},scrollLeft:function(e,t){if(Y(e)){if(void 0===t)return D(e);window.scrollTo(t,V(e))}else{if(void 0===t)return e.scrollLeft;e.scrollLeft=t}},scrollTop:function(e,t){if(Y(e)){if(void 0===t)return V(e);window.scrollTo(D(e),t)}else{if(void 0===t)return e.scrollTop;e.scrollTop=t}},viewportWidth:0,viewportHeight:0},J);function re(e){return e.stopPropagation()}var ie=(a=(t=window.wp).i18n).__,se=a.sprintf,ae=a._n,le=(n=(o=t.element).Component,o.createRef),ce=t.htmlEntities.decodeEntities,ue=(i=t.keycodes).UP,pe=i.DOWN,fe=i.ENTER,de=i.TAB,he=(a=t.components).Spinner,ge=(o=a.withSpokenMessages,a.Popover),ve=(i=t.compose.withInstanceId,t.apiFetch),be=t.url.addQueryArgs,ye=o(i(function(e){p()(n,e);var t=function(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=d()(e);return o=t?(n=d()(this).constructor,Reflect.construct(o,arguments,n)):o.apply(this,arguments),f()(this,o)}}(n);function n(e){var o=e.autocompleteRef;return l()(this,n),(e=t.apply(this,arguments)).onChange=e.onChange.bind(u()(e)),e.onKeyDown=e.onKeyDown.bind(u()(e)),e.autocompleteRef=o||le(),e.inputRef=le(),e.updateSuggestions=Object(g.throttle)(e.updateSuggestions.bind(u()(e)),200),e.suggestionNodes=[],e.state={posts:[],showSuggestions:!1,selectedSuggestion:null},e}return c()(n,[{key:"componentDidUpdate",value:function(){var e=this,t=(n=this.state).showSuggestions,n=n.selectedSuggestion;t&&null!==n&&!this.scrollingIntoView&&(this.scrollingIntoView=!0,function(e,t,n){n=n||{},9===t.nodeType&&(t=oe.getWindow(t));var o,r,i,s,a,l,c=n.allowHorizontalScroll,u=n.onlyScrollIfNeeded,p=n.alignWithTop,f=n.alignWithLeft,d=n.offsetTop||0,h=n.offsetLeft||0,g=n.offsetBottom||0,v=n.offsetRight||0,b=(c=void 0===c||c,oe.isWindow(t)),y=oe.offset(e);n=oe.outerHeight(e),e=oe.outerWidth(e);b?(i=t,l=oe.height(i),a=oe.width(i),s={left:oe.scrollLeft(i),top:oe.scrollTop(i)},o={left:y.left-s.left-h,top:y.top-s.top-d},r={left:y.left+e-(s.left+a)+v,top:y.top+n-(s.top+l)+g},i=s):(a=oe.offset(t),l=t.clientHeight,s=t.clientWidth,i={left:t.scrollLeft,top:t.scrollTop},o={left:y.left-(a.left+(parseFloat(oe.css(t,"borderLeftWidth"))||0))-h,top:y.top-(a.top+(parseFloat(oe.css(t,"borderTopWidth"))||0))-d},r={left:y.left+e-(a.left+s+(parseFloat(oe.css(t,"borderRightWidth"))||0))+v,top:y.top+n-(a.top+l+(parseFloat(oe.css(t,"borderBottomWidth"))||0))+g}),o.top<0||0<r.top?!0===p||!1!==p&&o.top<0?oe.scrollTop(t,i.top+o.top):oe.scrollTop(t,i.top+r.top):u||((p=void 0===p||!!p)?oe.scrollTop(t,i.top+o.top):oe.scrollTop(t,i.top+r.top)),c&&(o.left<0||0<r.left?!0===f||!1!==f&&o.left<0?oe.scrollLeft(t,i.left+o.left):oe.scrollLeft(t,i.left+r.left):u||((f=void 0===f||!!f)?oe.scrollLeft(t,i.left+o.left):oe.scrollLeft(t,i.left+r.left)))}(this.suggestionNodes[n],this.autocompleteRef.current,{onlyScrollIfNeeded:!0}),setTimeout((function(){e.scrollingIntoView=!1}),100))}},{key:"componentWillUnmount",value:function(){delete this.suggestionsRequest}},{key:"bindSuggestionNode",value:function(e){var t=this;return function(n){t.suggestionNodes[e]=n}}},{key:"updateSuggestions",value:function(e){var t,n=this;e.length<2||/^https?:/.test(e)?this.setState({showSuggestions:!1,selectedSuggestion:null,loading:!1}):(this.setState({showSuggestions:!0,selectedSuggestion:null,loading:!0}),(t=ve({path:be("/wp/v2/search",{search:e,per_page:20,type:"post"})})).then((function(e){n.suggestionsRequest===t&&(n.setState({posts:e,loading:!1}),e.length?n.props.debouncedSpeak(se(ae("%d result found, use up and down arrow keys to navigate.","%d results found, use up and down arrow keys to navigate.",e.length),e.length),"assertive"):n.props.debouncedSpeak(ie("No results.","all-in-one-seo-pack"),"assertive"))})).catch((function(){n.suggestionsRequest===t&&n.setState({loading:!1})})),this.suggestionsRequest=t)}},{key:"onChange",value:function(e){e=e.target.value,this.props.onChange(e),this.updateSuggestions(e)}},{key:"onKeyDown",value:function(e){var t=(r=this.state).showSuggestions,n=r.selectedSuggestion,o=r.posts,r=r.loading;if(t&&o.length&&!r){var i=this.state.posts[this.state.selectedSuggestion];switch(e.keyCode){case ue:e.stopPropagation(),e.preventDefault();var s=n?n-1:o.length-1;this.setState({selectedSuggestion:s});break;case pe:e.stopPropagation(),e.preventDefault(),s=null===n||n===o.length-1?0:n+1,this.setState({selectedSuggestion:s});break;case de:null!==this.state.selectedSuggestion&&(this.selectLink(i),this.props.speak(ie("Link selected.","all-in-one-seo-pack")));break;case fe:null!==this.state.selectedSuggestion&&(e.stopPropagation(),this.selectLink(i))}}else switch(e.keyCode){case ue:0!==e.target.selectionStart&&(e.stopPropagation(),e.preventDefault(),e.target.setSelectionRange(0,0));break;case pe:this.props.value.length!==e.target.selectionStart&&(e.stopPropagation(),e.preventDefault(),e.target.setSelectionRange(this.props.value.length,this.props.value.length))}}},{key:"selectLink",value:function(e){this.props.onChange(e.url,e),this.setState({selectedSuggestion:null,showSuggestions:!1})}},{key:"handleOnClick",value:function(e){this.selectLink(e),this.inputRef.current.focus()}},{key:"render",value:function(){var e=this,t=void 0===(l=(s=this.props).value)?"":l,n=void 0===(i=s.autoFocus)||i,o=s.instanceId,r=s.className,i=(l=this.state).showSuggestions,s=l.posts,a=l.selectedSuggestion,l=l.loading;return Object(h.createElement)("div",{className:T()("editor-url-input block-editor-url-input",r)},Object(h.createElement)("input",{autoFocus:n,type:"text","aria-label":ie("URL","all-in-one-seo-pack"),required:!0,value:t,onChange:this.onChange,onInput:re,placeholder:ie("Paste URL or type to search","all-in-one-seo-pack"),onKeyDown:this.onKeyDown,role:"combobox","aria-expanded":i,"aria-autocomplete":"list","aria-owns":"editor-url-input-suggestions-".concat(o),"aria-activedescendant":null!==a?"editor-url-input-suggestion-".concat(o,"-").concat(a):void 0,ref:this.inputRef}),l&&Object(h.createElement)(he,null),i&&!!s.length&&Object(h.createElement)(ge,{position:"bottom",noArrow:!0,focusOnMount:!1},Object(h.createElement)("div",{className:T()("editor-url-input__suggestions","block-editor-url-input__suggestions","".concat(r,"__suggestions")),id:"editor-url-input-suggestions-".concat(o),ref:this.autocompleteRef,role:"listbox"},s.map((function(t,n){return Object(h.createElement)("button",{key:t.id,role:"option",tabIndex:"-1",id:"editor-url-input-suggestion-".concat(o,"-").concat(n),ref:e.bindSuggestionNode(n),className:T()("editor-url-input__suggestion block-editor-url-input__suggestion",{"is-selected":n===a}),onClick:function(){return e.handleOnClick(t)},"aria-selected":n===a},ce(t.title)||ie("(no title)","all-in-one-seo-pack"))})))))}}]),n}(n))),me=["autocompleteRef","className","onChangeInputValue","value"],we=(a=window.wp).i18n.__,ke=a.components.IconButton;function Oe(e){var t=e.autocompleteRef,n=e.className,o=e.onChangeInputValue,i=e.value;e=r()(e,me);return Object(h.createElement)("form",v()({className:T()("block-editor-url-popover__link-editor",n)},e),Object(h.createElement)(ye,{value:i,onChange:o,autocompleteRef:t}),Object(h.createElement)(ke,{icon:"editor-break",label:we("Apply","all-in-one-seo-pack"),type:"submit"}))}var Se=["className","linkClassName","onEditLinkClick","url","urlLabel"],je=(t=window.wp).i18n.__,Le=(o=t.components).ExternalLink,Re=o.IconButton,Ee=(i=t.url).safeDecodeURI,Ce=i.filterURLForDisplay;function Pe(e){var t=e.url,n=e.urlLabel;e=e.className,e=T()(e,"block-editor-url-popover__link-viewer-url");return t?Object(h.createElement)(Le,{className:e,href:t},n||Ce(Ee(t))):Object(h.createElement)("span",{className:e})}function xe(e){var t=e.className,n=e.linkClassName,o=e.onEditLinkClick,i=e.url,s=e.urlLabel;e=r()(e,Se);return Object(h.createElement)("div",v()({className:T()("block-editor-url-popover__link-viewer",t)},e),Object(h.createElement)(Pe,{url:i,urlLabel:s,className:n}),o&&Object(h.createElement)(Re,{icon:"edit",label:je("Edit","all-in-one-seo-pack"),onClick:o}))}var Ne=["isActive","addingLink","value","resetOnMount"];function _e(e){return e.stopPropagation()}var Fe=(n=window.wp).i18n.__,Te=(o=(a=n.element).Component,a.createRef),We=a.useMemo,Ae=a.Fragment,Ie=(t=n.components).ToggleControl,De=(i=t.withSpokenMessages,(a=n.keycodes).LEFT),Ve=a.RIGHT,Be=a.UP,Me=a.DOWN,Ue=a.BACKSPACE,Ke=a.ENTER,He=a.ESCAPE,ze=n.dom.getRectangleFromRange,qe=n.url.prependHTTP,Qe=(t=n.richText).create,$e=t.insert,Ge=t.isCollapsed,Xe=t.applyFormat,Ye=t.getTextContent,Je=t.slice,Ze=n.blockEditor.URLPopover;function et(e,t){return e.addingLink||t.editLink}function tt(e){var t=e.isActive,n=e.addingLink,o=e.value,i=e.resetOnMount;e=r()(e,Ne);return(o=We((function(){var e;if(e=0<(e=window.getSelection()).rangeCount?e.getRangeAt(0):null){if(n)return ze(e);for(var t=(t=e.startContainer).nextElementSibling||t;t.nodeType!==window.Node.ELEMENT_NODE;)t=t.parentNode;return(e=t.closest("a"))?e.getBoundingClientRect():void 0}}),[t,n,o.start,o.end]))?(i(o),Object(h.createElement)(Ze,v()({anchorRect:o},e))):null}var nt=i(function(e){p()(n,e);var t=function(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=d()(e);return o=t?(n=d()(this).constructor,Reflect.construct(o,arguments,n)):o.apply(this,arguments),f()(this,o)}}(n);function n(){var e;return l()(this,n),(e=t.apply(this,arguments)).editLink=e.editLink.bind(u()(e)),e.submitLink=e.submitLink.bind(u()(e)),e.onKeyDown=e.onKeyDown.bind(u()(e)),e.onChangeInputValue=e.onChangeInputValue.bind(u()(e)),e.setLinkTarget=e.setLinkTarget.bind(u()(e)),e.setNoFollow=e.setNoFollow.bind(u()(e)),e.setSponsored=e.setSponsored.bind(u()(e)),e.setUgc=e.setUgc.bind(u()(e)),e.onFocusOutside=e.onFocusOutside.bind(u()(e)),e.resetState=e.resetState.bind(u()(e)),e.autocompleteRef=Te(),e.resetOnMount=e.resetOnMount.bind(u()(e)),e.state={opensInNewWindow:!1,noFollow:!1,sponsored:!1,ugc:!1,inputValue:"",anchorRect:!1},e}return c()(n,[{key:"onKeyDown",value:function(e){-1<[De,Me,Ve,Be,Ue,Ke].indexOf(e.keyCode)&&e.stopPropagation(),-1<[He].indexOf(e.keyCode)&&this.resetState()}},{key:"onChangeInputValue",value:function(e){this.setState({inputValue:e})}},{key:"setLinkTarget",value:function(e){var t=this.props,n=void 0===(r=t.activeAttributes.url)?"":r,o=t.value,r=t.onChange;this.setState({opensInNewWindow:e}),et(this.props,this.state)||(t=Ye(Je(o)),r(Xe(o,x({url:n,opensInNewWindow:e,noFollow:this.state.noFollow,sponsored:this.state.sponsored,ugc:this.state.ugc,text:t}))))}},{key:"setNoFollow",value:function(e){var t=this.props,n=void 0===(r=t.activeAttributes.url)?"":r,o=t.value,r=t.onChange;this.setState({noFollow:e}),et(this.props,this.state)||(t=Ye(Je(o)),r(Xe(o,x({url:n,opensInNewWindow:this.state.opensInNewWindow,noFollow:e,sponsored:this.state.sponsored,ugc:this.state.ugc,text:t}))))}},{key:"setSponsored",value:function(e){var t=this.props,n=void 0===(r=t.activeAttributes.url)?"":r,o=t.value,r=t.onChange;this.setState({sponsored:e}),et(this.props,this.state)||(t=Ye(Je(o)),r(Xe(o,x({url:n,opensInNewWindow:this.state.opensInNewWindow,noFollow:this.state.noFollow,sponsored:e,ugc:this.state.ugc,text:t}))))}},{key:"setUgc",value:function(e){var t=this.props,n=void 0===(r=t.activeAttributes.url)?"":r,o=t.value,r=t.onChange;this.setState({ugc:e}),et(this.props,this.state)||(t=Ye(Je(o)),r(Xe(o,x({url:n,opensInNewWindow:this.state.opensInNewWindow,noFollow:this.state.noFollow,sponsored:this.state.sponsored,ugc:e,text:t}))))}},{key:"editLink",value:function(e){this.setState({editLink:!0}),e.preventDefault()}},{key:"submitLink",value:function(e){var t=(l=this.props).isActive,n=l.value,o=l.onChange,r=l.speak,i=(c=this.state).inputValue,s=c.opensInNewWindow,a=c.noFollow,l=c.sponsored,c=c.ugc;c=x({url:i=qe(i),opensInNewWindow:s,noFollow:a,sponsored:l,ugc:c,text:Ye(Je(n))});e.preventDefault(),Ge(n)&&!t?(e=Xe(Qe({text:i}),c,0,i.length),o($e(n,e))):o(Xe(n,c)),this.resetState(),P(i)?r(Fe(t?"Link edited.":"Link inserted.","all-in-one-seo-pack"),"assertive"):r(Fe("Warning: the link has been inserted but could have errors. Please test it.","all-in-one-seo-pack"),"assertive")}},{key:"onFocusOutside",value:function(){var e=this.autocompleteRef.current;e&&e.contains(event.target)||this.resetState()}},{key:"resetState",value:function(){this.props.stopAddingLink(),this.setState({editLink:!1})}},{key:"resetOnMount",value:function(e){this.state.anchorRect!==e&&this.setState({opensInNewWindow:!1,noFollow:!1,sponsored:!1,ugc:!1,anchorRect:e})}},{key:"render",value:function(){var e=this,t=(u=this.props).isActive,n=u.activeAttributes.url,o=u.addingLink,r=u.value;if(!t&&!o)return null;var i=(u=this.state).inputValue,s=u.opensInNewWindow,a=u.noFollow,l=u.sponsored,c=u.ugc,u=et(this.props,this.state);return Object(h.createElement)(F,{key:"".concat(r.start).concat(r.end)},Object(h.createElement)(tt,{resetOnMount:this.resetOnMount,value:r,isActive:t,addingLink:o,onFocusOutside:this.onFocusOutside,onClose:function(){i||e.resetState()},focusOnMount:!!u&&"firstElement",renderSettings:function(){return Object(h.createElement)(Ae,null,Object(h.createElement)(Ie,{label:Fe("Open in New Tab","all-in-one-seo-pack"),checked:s,onChange:e.setLinkTarget}),Object(h.createElement)(Ie,{label:Fe('Add "nofollow" to link',"all-in-one-seo-pack"),checked:a,onChange:e.setNoFollow}),Object(h.createElement)(Ie,{label:Fe('Add "sponsored" to link',"all-in-one-seo-pack"),checked:l,onChange:e.setSponsored}),Object(h.createElement)(Ie,{label:Fe('Add "ugc" to link',"all-in-one-seo-pack"),checked:c,onChange:e.setUgc}))}},u?Object(h.createElement)(Oe,{className:"editor-format-toolbar__link-container-content block-editor-format-toolbar__link-container-content",value:i,onChangeInputValue:this.onChangeInputValue,onKeyDown:this.onKeyDown,onKeyPress:_e,onSubmit:this.submitLink,autocompleteRef:this.autocompleteRef}):Object(h.createElement)(xe,{className:"editor-format-toolbar__link-container-content block-editor-format-toolbar__link-container-content",onKeyPress:_e,url:n,onEditLinkClick:this.editLink,linkClassName:P(qe(n))?void 0:"has-invalid-link"})))}}],[{key:"getDerivedStateFromProps",value:function(e,t){var n=(i=e.activeAttributes).url,o=i.target,r=i.rel,i="_blank"===o;o={};return et(e,t)||(n!==t.inputValue&&(o.inputValue=n),i!==t.opensInNewWindow&&(o.opensInNewWindow=i),"string"==typeof r&&(n=r.split(" ").includes("nofollow"),i=r.split(" ").includes("sponsored"),r=r.split(" ").includes("ugc"),n!==t.noFollow&&(o.noFollow=n),i!==t.sponsored&&(o.sponsored=i),r!==t.ugc&&(o.ugc=r))),o}}]),n}(o));function ot(e,t){var n,o=Object.keys(e);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(e),t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),o.push.apply(o,n)),o}var rt=(a=window.wp).i18n.__,it=(n=(t=a.element).Component,t.Fragment),st=(i=a.data).select,at=(o=i.withSelect,(t=a.blockEditor).BlockControls),lt=t.RichTextToolbarButton,ct=t.RichTextShortcut,ut=(i=a.richText).getTextContent,pt=i.applyFormat,ft=i.removeFormat,dt=i.slice,ht=a.url.isURL,gt=(t=a.components).Toolbar,vt=(i=t.withSpokenMessages,a=(t=a.compose).compose,t=t.ifCondition,"core/link"),bt=rt("Add Link","all-in-one-seo-pack"),yt=/^(mailto:)?[a-z0-9._%+-]+@[a-z0-9][a-z0-9.-]*\.[a-z]{2,63}$/i,mt=(n=function(e){p()(n,e);var t=function(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=d()(e);return o=t?(n=d()(this).constructor,Reflect.construct(o,arguments,n)):o.apply(this,arguments),f()(this,o)}}(n);function n(){var e;return l()(this,n),(e=t.apply(this,arguments)).isEmail=e.isEmail.bind(u()(e)),e.addLink=e.addLink.bind(u()(e)),e.stopAddingLink=e.stopAddingLink.bind(u()(e)),e.onRemoveFormat=e.onRemoveFormat.bind(u()(e)),e.state={addingLink:!1},e}return c()(n,[{key:"isEmail",value:function(e){return yt.test(e)}},{key:"addLink",value:function(){var e,t=(e=this.props).value,n=e.onChange;(e=ut(dt(t)))&&ht(e)?n(pt(t,{type:vt,attributes:{url:e}})):e&&this.isEmail(e)?n(pt(t,{type:vt,attributes:{url:"mailto:".concat(e)}})):this.setState({addingLink:!0})}},{key:"stopAddingLink",value:function(){this.setState({addingLink:!1})}},{key:"onRemoveFormat",value:function(){var e=(n=this.props).value,t=n.onChange,n=n.speak,o=e;Object(g.map)(["core/link"],(function(e){o=ft(o,e)})),t(function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?ot(Object(n),!0).forEach((function(t){s()(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):ot(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({},o)),n(rt("Link removed.","all-in-one-seo-pack"),"assertive")}},{key:"render",value:function(){var e=(n=this.props).activeAttributes,t=n.onChange,n=(o=this.props).isActive,o=o.value;return Object(h.createElement)(it,null,Object(h.createElement)(at,null,Object(h.createElement)(gt,{className:"editorskit-components-toolbar"},Object(h.createElement)(ct,{type:"primary",character:"k",onUse:this.addLink}),Object(h.createElement)(ct,{type:"primaryShift",character:"k",onUse:this.onRemoveFormat}),n&&Object(h.createElement)(lt,{name:"link",icon:"editor-unlink",title:rt("Unlink","all-in-one-seo-pack"),onClick:this.onRemoveFormat,isActive:n,shortcutType:"primaryShift",shortcutCharacter:"k"}),!n&&Object(h.createElement)(lt,{name:"link",icon:"admin-links",title:bt,onClick:this.addLink,isActive:n,shortcutType:"primary",shortcutCharacter:"k"}),Object(h.createElement)(nt,{addingLink:this.state.addingLink,stopAddingLink:this.stopAddingLink,isActive:n,activeAttributes:e,value:o,onChange:t}))))}}]),n}(n),t=a(o((function(){return{isDisabled:st("core/edit-post").isFeatureActive("disableEditorsKitLinkFormats")}})),t((function(e){return!e.isDisabled})),i)(n),["name"]),wt=(i=wp.i18n.__,(n=wp.richText).registerFormatType),kt=n.unregisterFormatType,Ot=n.applyFormat,St=n.isCollapsed,jt=wp.htmlEntities.decodeEntities,Lt=wp.url.isURL,Rt="core/link",Et={name:Rt,title:i("Link","all-in-one-seo-pack"),tagName:"a",className:null,attributes:{url:"href",target:"target",rel:"rel"},__unstablePasteRule:function(e,t){var n=t.html;t=t.plainText;return St(e)?e:(t=(n||t).replace(/<[^>]+>/g,"").trim(),Lt(t)?Ot(e,{type:Rt,attributes:{url:jt(t)}}):e)},edit:t};[Et].forEach((function(e){var t=e.name;e=r()(e,mt);t&&(kt("core/link"),wt(t,e))}))}});
|
dist/Lite/assets/js/link-format-block-old.js.gz
CHANGED
Binary file
|
dist/Lite/assets/js/link-format-block.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1 |
-
/*! ! built on Tuesday, September
|
2 |
!function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=81)}([function(e,t){e.exports=window.wp.element},function(e,t){e.exports=window.wp.i18n},,function(e,t){e.exports=function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}},function(e,t){e.exports=window.wp.url},function(e,t){e.exports=window.wp.components},function(e,t){e.exports=window.lodash},function(e,t,n){var r;!function(){"use strict";var n={}.hasOwnProperty;function o(){for(var e=[],t=0;t<arguments.length;t++){var r=arguments[t];if(r){var c=typeof r;if("string"==c||"number"==c)e.push(r);else if(Array.isArray(r)&&r.length){var i=o.apply(null,r);i&&e.push(i)}else if("object"==c)for(var l in r)n.call(r,l)&&r[l]&&e.push(l)}}return e.join(" ")}e.exports?(o.default=o,e.exports=o):void 0===(r=function(){return o}.apply(t,[]))||(e.exports=r)}()},function(e,t){function n(t){return e.exports=n=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},n(t)}e.exports=n},,,function(e,t){e.exports=window.wp.richText},function(e,t){function n(){return e.exports=n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n,r=arguments[t];for(n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},n.apply(this,arguments)}e.exports=n},function(e,t){e.exports=window.wp.primitives},function(e,t,n){var r=n(29);e.exports=function(e,t){if(null==e)return{};var n,o=r(e,t);if(Object.getOwnPropertySymbols)for(var c=Object.getOwnPropertySymbols(e),i=0;i<c.length;i++)n=c[i],0<=t.indexOf(n)||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n]);return o}},function(e,t){e.exports=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}},function(e,t){function n(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}e.exports=function(e,t,r){return t&&n(e.prototype,t),r&&n(e,r),e}},function(e,t,n){var r=n(30);e.exports=function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&r(e,t)}},function(e,t,n){var r=n(31),o=n(3);e.exports=function(e,t){return!t||"object"!==r(t)&&"function"!=typeof t?o(e):t}},function(e,t){e.exports=function(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}},function(e,t,n){var r=n(60),o=n(61),c=n(62),i=n(64);e.exports=function(e,t){return r(e)||o(e,t)||c(e,t)||i()}},function(e,t){e.exports=window.regeneratorRuntime},,function(e,t){e.exports=window.wp.blockEditor},function(e,t){function n(e,t,n,r,o,c,i){try{var l=e[c](i),a=l.value}catch(e){return void n(e)}l.done?t(a):Promise.resolve(a).then(r,o)}e.exports=function(e){return function(){var t=this,r=arguments;return new Promise((function(o,c){var i=e.apply(t,r);function l(e){n(i,o,c,l,a,"next",e)}function a(e){n(i,o,c,l,a,"throw",e)}l(void 0)}))}}},,,,,function(e,t){e.exports=function(e,t){if(null==e)return{};for(var n,r={},o=Object.keys(e),c=0;c<o.length;c++)n=o[c],0<=t.indexOf(n)||(r[n]=e[n]);return r}},function(e,t){function n(t,r){return e.exports=n=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},n(t,r)}e.exports=n},function(e,t){function n(t){return"function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?e.exports=n=function(e){return typeof e}:e.exports=n=function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n(t)}e.exports=n},,,,,,,function(e,t){e.exports=window.wp.htmlEntities},function(e,t){e.exports=window.wp.compose},function(e,t){e.exports=window.wp.data},function(e,t){e.exports=window.wp.dom},function(e,t){e.exports=window.wp.editor},,,,,,,,,,,,,,,,,,function(e,t){e.exports=function(e){if(Array.isArray(e))return e}},function(e,t){e.exports=function(e,t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,o=!1,c=void 0;try{for(var i,l=e[Symbol.iterator]();!(r=(i=l.next()).done)&&(n.push(i.value),!t||n.length!==t);r=!0);}catch(e){o=!0,c=e}finally{try{r||null==l.return||l.return()}finally{if(o)throw c}}return n}}},function(e,t,n){var r=n(63);e.exports=function(e,t){if(e){if("string"==typeof e)return r(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Map"===(n="Object"===n&&e.constructor?e.constructor.name:n)||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?r(e,t):void 0}}},function(e,t){e.exports=function(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}},function(e,t){e.exports=function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}},,,,,,,,,,,,,,,,,function(e,t,n){"use strict";n.r(t);var r=n(14),o=n.n(r),c=(t=n(15),n.n(t)),i=(r=n(16),n.n(r)),l=(t=n(3),n.n(t)),a=(r=n(17),n.n(r)),s=(t=n(18),n.n(t)),u=(r=n(8),n.n(r)),p=n(0),b=n(1),f=n(5),d=n(11),m=n(4),O=n(23),g=n(38),h=(t=n(13),Object(p.createElement)(t.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},Object(p.createElement)(t.Path,{d:"M15.6 7.3h-.7l1.6-3.5-.9-.4-3.9 8.5H9v1.5h2l-1.3 2.8H8.4c-2 0-3.7-1.7-3.7-3.7s1.7-3.7 3.7-3.7H10V7.3H8.4c-2.9 0-5.2 2.3-5.2 5.2 0 2.9 2.3 5.2 5.2 5.2H9l-1.4 3.2.9.4 5.7-12.5h1.4c2 0 3.7 1.7 3.7 3.7s-1.7 3.7-3.7 3.7H14v1.5h1.6c2.9 0 5.2-2.3 5.2-5.2 0-2.9-2.4-5.2-5.2-5.2z"}))),j=Object(p.createElement)(t.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},Object(p.createElement)(t.Path,{d:"M15.6 7.2H14v1.5h1.6c2 0 3.7 1.7 3.7 3.7s-1.7 3.7-3.7 3.7H14v1.5h1.6c2.8 0 5.2-2.3 5.2-5.2 0-2.9-2.3-5.2-5.2-5.2zM4.7 12.4c0-2 1.7-3.7 3.7-3.7H10V7.2H8.4c-2.9 0-5.2 2.3-5.2 5.2 0 2.9 2.3 5.2 5.2 5.2H10v-1.5H8.4c-2 0-3.7-1.7-3.7-3.7zm4.6.9h5.3v-1.5H9.3v1.5z"})),v=(r=n(19),n.n(r)),y=(r=n(20),n.n(r)),k=n(6),w=(r=n(12),n.n(r)),_=(r=n(24),n.n(r)),x=(r=n(21),n.n(r)),E=(r=n(7),n.n(r)),S=n(39),P=n(40),C=n(41);function T(e,t){var n,r=Object.keys(e);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(e),t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)),r}function N(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?T(Object(n),!0).forEach((function(t){v()(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):T(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var L=[{id:"opensInNewTab",title:Object(b.__)("Open in new tab"),type:"ToggleControl"},{id:"nofollow",title:Object(b.__)('Add "nofollow" to link',"all-in-one-seo-pack"),type:"ToggleControl"},{id:"sponsored",title:Object(b.__)('Add "sponsored" to link',"all-in-one-seo-pack"),type:"ToggleControl"},{id:"ugc",title:Object(b.__)('Add "ugc" to link',"all-in-one-seo-pack"),type:"ToggleControl"},{id:"title",title:Object(b.__)("Add title attribute to link","all-in-one-seo-pack"),type:"TextControl"}],R=function(e){var t=e.value,n=e.onChange,r=void 0===n?k.noop:n;return(e=void 0===(e=e.settings)?L:e)&&e.length?(e=e.map((function(e){if("TextControl"!==e.type)return"ToggleControl"===e.type?Object(p.createElement)(f.ToggleControl,{className:"block-editor-link-control__setting",key:e.id,label:e.title,onChange:(n=e,function(e){r(N(N({},t),{},v()({},n.id,e)))}),checked:!!t&&!!t[e.id]}):null;var n,o=Object(p.useState)(),c=y()(o,2),i=(o=c[0],c[1]);return Object(p.createElement)(f.TextControl,{"data-aioseop":"true",className:"block-editor-link-control__setting",key:e.id,label:e.title,onChange:function(e){i(e)},onBlur:function(n){r(N(N({},t),{},v()({},e.id,n.target.value)))},value:o||t[e.id]})})),Object(p.createElement)("fieldset",{className:"block-editor-link-control__settings"},Object(p.createElement)(f.VisuallyHidden,{as:"legend"},Object(b.__)("Currently selected link settings")),e)):null};function H(e,t){var n,r=Object.keys(e);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(e),t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)),r}function A(e){var t=e.icon,n=void 0===(n=e.size)?24:n;e=function(e,t){if(null==e)return{};var n,r=function(e,t){if(null==e)return{};for(var n,r={},o=Object.keys(e),c=0;c<o.length;c++)n=o[c],0<=t.indexOf(n)||(r[n]=e[n]);return r}(e,t);if(Object.getOwnPropertySymbols)for(var o=Object.getOwnPropertySymbols(e),c=0;c<o.length;c++)n=o[c],0<=t.indexOf(n)||Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n]);return r}(e,["icon","size"]);return Object(p.cloneElement)(t,function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?H(Object(n),!0).forEach((function(t){var r,o;r=e,t=n[o=t],o in r?Object.defineProperty(r,o,{value:t,enumerable:!0,configurable:!0,writable:!0}):r[o]=t})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):H(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({width:n,height:n},e))}var I=Object(p.createElement)(t.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"-2 -2 24 24"},Object(p.createElement)(t.Path,{d:"M9 0C4.03 0 0 4.03 0 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zM1.11 9.68h2.51c.04.91.167 1.814.38 2.7H1.84c-.403-.85-.65-1.764-.73-2.7zm8.57-5.4V1.19c.964.366 1.756 1.08 2.22 2 .205.347.386.708.54 1.08l-2.76.01zm3.22 1.35c.232.883.37 1.788.41 2.7H9.68v-2.7h3.22zM8.32 1.19v3.09H5.56c.154-.372.335-.733.54-1.08.462-.924 1.255-1.64 2.22-2.01zm0 4.44v2.7H4.7c.04-.912.178-1.817.41-2.7h3.21zm-4.7 2.69H1.11c.08-.936.327-1.85.73-2.7H4c-.213.886-.34 1.79-.38 2.7zM4.7 9.68h3.62v2.7H5.11c-.232-.883-.37-1.788-.41-2.7zm3.63 4v3.09c-.964-.366-1.756-1.08-2.22-2-.205-.347-.386-.708-.54-1.08l2.76-.01zm1.35 3.09v-3.04h2.76c-.154.372-.335.733-.54 1.08-.464.92-1.256 1.634-2.22 2v-.04zm0-4.44v-2.7h3.62c-.04.912-.178 1.817-.41 2.7H9.68zm4.71-2.7h2.51c-.08.936-.327 1.85-.73 2.7H14c.21-.87.337-1.757.38-2.65l.01-.05zm0-1.35c-.046-.894-.176-1.78-.39-2.65h2.16c.403.85.65 1.764.73 2.7l-2.5-.05zm1-4H13.6c-.324-.91-.793-1.76-1.39-2.52 1.244.56 2.325 1.426 3.14 2.52h.04zm-9.6-2.52c-.597.76-1.066 1.61-1.39 2.52H2.65c.815-1.094 1.896-1.96 3.14-2.52zm-3.15 12H4.4c.324.91.793 1.76 1.39 2.52-1.248-.567-2.33-1.445-3.14-2.55l-.01.03zm9.56 2.52c.597-.76 1.066-1.61 1.39-2.52h1.76c-.82 1.08-1.9 1.933-3.14 2.48l-.01.04z"})),F=function(e){var t=e.itemProps,n=e.suggestion,r=void 0!==(c=e.isSelected)&&c,o=e.onClick,c=void 0!==(c=e.isURL)&&c;e=void 0===(e=e.searchTerm)?"":e;return Object(p.createElement)(f.Button,w()({},t,{onClick:o,className:E()("block-editor-link-control__search-item",{"is-selected":r,"is-url":c,"is-entity":!c})}),c&&Object(p.createElement)(A,{className:"block-editor-link-control__search-item-icon",icon:I}),Object(p.createElement)("span",{className:"block-editor-link-control__search-item-header"},Object(p.createElement)("span",{className:"block-editor-link-control__search-item-title"},Object(p.createElement)(f.TextHighlight,{text:n.title,highlight:e})),Object(p.createElement)("span",{"aria-hidden":!c,className:"block-editor-link-control__search-item-info"},!c&&(Object(m.safeDecodeURI)(n.url)||""),c&&Object(b.__)("Press ENTER to add this link"))),n.type&&Object(p.createElement)("span",{className:"block-editor-link-control__search-item-type"},n.type))},z=Object(p.createElement)(t.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"-2 -2 24 24"},Object(p.createElement)(t.Path,{d:"M16 4h2v9H7v3l-5-4 5-4v3h9V4z"})),D=n(42),M=function(e){var t=e.value,n=e.onChange,r=e.onSelect,o=e.renderSuggestions,c=e.fetchSuggestions,i=e.showInitialSuggestions,l=e.errorMessage,a=(e=Object(p.useState)(),(e=y()(e,2))[0]),s=e[1];return Object(p.createElement)("form",{onSubmit:function(e){e.preventDefault(),r(a||{url:t})}},Object(p.createElement)("div",{className:"block-editor-link-control__search-input-wrapper"},Object(p.createElement)(D.URLInput,{className:"block-editor-link-control__search-input",value:t,onChange:function(e,t){n(e),s(t)},placeholder:Object(b.__)("Search or type url"),__experimentalRenderSuggestions:o,__experimentalFetchLinkSuggestions:c,__experimentalHandleURLSuggestions:!0,__experimentalShowInitialSuggestions:i}),Object(p.createElement)("div",{className:"block-editor-link-control__search-actions"},Object(p.createElement)(f.Button,{type:"submit",label:Object(b.__)("Submit"),icon:z,className:"block-editor-link-control__search-submit"}))),l&&Object(p.createElement)(f.Notice,{className:"block-editor-link-control__search-error",status:"error",isDismissible:!1},l))},V=function(e){var t=e.searchTerm,n=e.onClick,r=e.itemProps;e=e.isSelected;return t?Object(p.createElement)(f.Button,w()({},r,{className:E()("block-editor-link-control__search-create block-editor-link-control__search-item",{"is-selected":e}),onClick:n}),Object(p.createElement)(f.Icon,{className:"block-editor-link-control__search-item-icon",icon:"insert"}),Object(p.createElement)("span",{className:"block-editor-link-control__search-item-header"},Object(p.createElement)("span",{className:"block-editor-link-control__search-item-title"},Object(p.createInterpolateElement)(Object(b.sprintf)(Object(b.__)("New page: <mark>%s</mark>"),t),{mark:Object(p.createElement)("mark",null)})))):null};function U(e,t){var n,r=Object.keys(e);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(e),t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)),r}function B(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?U(Object(n),!0).forEach((function(t){v()(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):U(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var W=(n=Object(f.createSlotFill)("BlockEditorLinkControlViewer")).Slot,G=(n=n.Fill,"__CREATE__"),Q=function(e){var t=!1;return{promise:new Promise((function(n,r){e.then((function(e){return t?r({isCanceled:!0}):n(e)}),(function(e){return r(t?{isCanceled:!0}:e)}))})),cancel:function(){t=!0}}};function q(e){var t=e.value,n=e.settings,r=void 0===(j=e.onChange)?k.noop:j,o=void 0===(K=e.showSuggestions)||K,c=e.showInitialSuggestions,i=e.forceIsEditingLink,l=e.createSuggestion,a=Object(p.useRef)(),s=Object(p.useRef)(),u=Object(p.useRef)(),d=Object(S.useInstanceId)(q),O=Object(p.useState)(t&&t.url||""),g=(N=y()(O,2))[0],h=N[1],j=Object(p.useState)(void 0!==i?i:!t||!t.url),v=(K=y()(j,2))[0],T=K[1],N=(e=Object(p.useState)(!1),(O=y()(e,2))[0]),L=O[1],H=(j=Object(p.useState)(null),e=(K=y()(j,2))[0],K[1]),A=Object(p.useRef)(!1),I=Object(P.useSelect)((function(e){return{fetchSearchSuggestions:(0,e("core/block-editor").getSettings)().__experimentalFetchLinkSuggestions}}),[]).fetchSearchSuggestions;O=t&&Object(m.filterURLForDisplay)(Object(m.safeDecodeURI)(t.url))||"";function z(e){var t="URL",n=Object(m.getProtocol)(e)||"";return n.includes("mailto")&&(t="mailto"),n.includes("tel")&&(t="tel"),Object(k.startsWith)(e,"#")&&(t="internal"),Promise.resolve([{id:e,title:e,url:"URL"===t?Object(m.prependHTTP)(e):e,type:t}])}Object(p.useEffect)((function(){void 0!==i&&i!==v&&T(i)}),[i]),Object(p.useEffect)((function(){A.current&&u.current&&!u.current.contains(document.activeElement)&&(C.focus.focusable.find(u.current)[0]||u.current).focus(),A.current=!1}),[v]),Object(p.useEffect)((function(){return function(){a.current&&a.current.cancel(),s.current&&s.current.cancel()}}),[]);var D=function(){var e=_()(x.a.mark((function e(t,n){var r,o;return x.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,Promise.all([I(t,B({},n.isInitialSuggestions?{perPage:3}:{})),z(t)]);case 2:return r=e.sent,o=!t.includes(" "),r=o&&!n.isInitialSuggestions?r[0].concat(r[1]):r[0],e.abrupt("return",$(t)?r:r.concat({title:t,url:t,type:G}));case 6:case"end":return e.stop()}}),e)})));return function(t,n){return e.apply(this,arguments)}}();function U(){A.current=!!u.current&&u.current.contains(document.activeElement),T(!1)}function $(e){var t=Object(k.startsWith)(e,"#");return Object(m.isURL)(e)||e&&e.includes("www.")||t}j=Object(p.useCallback)((function(e,t){return o?$(e)?z(e):D(e,t):Promise.resolve([])}),[z,I]);var J=function(){var e=_()(x.a.mark((function e(t){var n;return x.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return L(!0),H(null),e.prev=2,s.current=Q(Promise.resolve(l(t))),e.next=6,s.current.promise;case 6:n=e.sent,L(!1),n?(r(n),U()):T(!0),e.next=18;break;case 11:if(e.prev=11,e.t0=e.catch(2),e.t0&&e.t0.isCanceled)return e.abrupt("return");e.next=15;break;case 15:H(e.t0.message||Object(b.__)("An unknown error occurred during creation. Please try again.")),L(!1),T(!0);case 18:case"end":return e.stop()}}),e,null,[[2,11]])})));return function(t){return e.apply(this,arguments)}}(),K=Object(p.useMemo)((function(){return{url:t&&t.url}}),[t&&t.url]);return Object(p.createElement)("div",{tabIndex:-1,ref:u,className:"block-editor-link-control"},N&&Object(p.createElement)("div",{className:"block-editor-link-control__loading"},Object(p.createElement)(f.Spinner,null)," ",Object(b.__)("Creating"),"…"),(v||!t)&&!N&&Object(p.createElement)(M,{value:g,onChange:function(){h(0<arguments.length&&void 0!==arguments[0]?arguments[0]:"")},onSelect:function(){var e=_()(x.a.mark((function e(n){return x.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(G===n.type)return e.next=3,J(g);e.next=5;break;case 3:e.next=7;break;case 5:!function(e){var t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{};T(!1),r(B(B({},t),e))}(n,t),U();case 7:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),renderSuggestions:o?function(e){var n=e.suggestionsListProps,o=e.buildSuggestionItemProps,c=e.suggestions,i=e.selectedSuggestion,a=e.isLoading,s=e.isInitialSuggestions,u=E()("block-editor-link-control__search-results",{"is-loading":a}),m=["url","mailto","tel","internal"],O=(e=1===c.length&&m.includes(c[0].type.toLowerCase()),l&&!e&&!s);a="block-editor-link-control-search-results-label-".concat(d),e=s?Object(b.__)("Recently updated"):Object(b.sprintf)(Object(b.__)('Search results for "%s"'),g),e=Object(p.createElement)(s?p.Fragment:f.VisuallyHidden,{},Object(p.createElement)("span",{className:"block-editor-link-control__search-results-label",id:a},e));return Object(p.createElement)("div",{className:"block-editor-link-control__search-results-wrapper"},e,Object(p.createElement)("div",w()({},n,{className:u,"aria-labelledby":a}),c.map((function(e,n){return O&&G===e.type?Object(p.createElement)(V,{searchTerm:g,onClick:_()(x.a.mark((function t(){return x.a.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,J(e.title);case 2:case"end":return t.stop()}}),t)}))),key:e.type,itemProps:o(e,n),isSelected:n===i}):G===e.type?null:Object(p.createElement)(F,{key:"".concat(e.id,"-").concat(e.type),itemProps:o(e,n),suggestion:e,index:n,onClick:function(){U(),r(B(B({},t),e))},isSelected:n===i,isURL:m.includes(e.type.toLowerCase()),searchTerm:g})}))))}:null,fetchSuggestions:j,showInitialSuggestions:c,errorMessage:e}),t&&!v&&!N&&Object(p.createElement)(p.Fragment,null,Object(p.createElement)("div",{"aria-label":Object(b.__)("Currently selected"),"aria-selected":"true",className:E()("block-editor-link-control__search-item",{"is-current":!0})},Object(p.createElement)("span",{className:"block-editor-link-control__search-item-header"},Object(p.createElement)(f.ExternalLink,{className:"block-editor-link-control__search-item-title",href:t.url},t&&t.title||O),t&&t.title&&Object(p.createElement)("span",{className:"block-editor-link-control__search-item-info"},O)),Object(p.createElement)(f.Button,{isSecondary:!0,onClick:function(){return T(!0)},className:"block-editor-link-control__search-item-action"},Object(b.__)("Edit")),Object(p.createElement)(W,{fillProps:K}))),Object(p.createElement)(R,{key:"aioseop-settings-drawer",value:t,settings:n,onChange:r}))}q.ViewerFill=n;var $=q;function J(e,t){var n,r=Object.keys(e);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(e),t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)),r}function K(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?J(Object(n),!0).forEach((function(t){v()(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):J(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var X=Object(f.withSpokenMessages)((function(e){var t=e.isActive,n=e.activeAttributes,r=e.addingLink,o=e.value,c=e.onChange,i=e.speak,l=e.stopAddingLink,a=Object(p.useMemo)(k.uniqueId,[r]),s=(e=Object(p.useState)(),(e=y()(e,2))[0]),u=e[1],O=(e=Object(p.useMemo)((function(){var e=window.getSelection();if(e.rangeCount){if(e=e.getRangeAt(0),r&&!t)return e;for(var n=(n=e.startContainer).nextElementSibling||n;n.nodeType!==window.Node.ELEMENT_NODE;)n=n.parentNode;return n.closest("a")}}),[r,o.start,o.end]),K({url:n.url,opensInNewTab:"_blank"===n.target,nofollow:!!n.rel&&n.rel.includes("nofollow"),sponsored:!!n.rel&&n.rel.includes("sponsored"),ugc:!!n.rel&&n.rel.includes("ugc"),title:n.title},s));return Object(p.createElement)(f.Popover,{key:a,anchorRef:e,focusOnMount:!!r&&"firstElement",onClose:l,position:"bottom center"},Object(p.createElement)($,{value:O,onChange:function(e){e=K(K({},s),e);var n,r,a,p,f,g,h,j=(O.opensInNewTab!==e.opensInNewTab||O.sponsored!==e.sponsored||O.nofollow!==e.nofollow||O.ugc!==e.ugc)&&O.url===e.url,v=j&&void 0===e.url;u(v?e:void 0),v||(a=(r={url:n=Object(m.prependHTTP)(e.url),opensInNewWindow:e.opensInNewTab,nofollow:e.nofollow,sponsored:e.sponsored,ugc:e.ugc,title:e.title}).url,p=r.opensInNewWindow,f=r.nofollow,g=r.sponsored,h=r.ugc,v=r.title,r={type:"core/link",attributes:{url:a}},a=[],p&&(r.attributes.target="_blank",a.push("noreferrer noopener")),f&&a.push("nofollow"),g&&a.push("sponsored"),h&&a.push("ugc"),0<a.length&&(r.attributes.rel=a.join(" ")),v&&(r.attributes.title=v),r=r,Object(d.isCollapsed)(o)&&!t?(e=e.title||n,e=Object(d.applyFormat)(Object(d.create)({text:e}),r,0,e.length),c(Object(d.insert)(o,e))):c(Object(d.applyFormat)(o,r)),j||l(),function(e){if(e){var t=e.trim();if(t){if(/^\S+:/.test(t)){if(e=Object(m.getProtocol)(t),!Object(m.isValidProtocol)(e))return;if(Object(k.startsWith)(e,"http")&&!/^https?:\/\/[^/\s]/i.test(t))return;if(e=Object(m.getAuthority)(t),!Object(m.isValidAuthority)(e))return;if((e=Object(m.getPath)(t))&&!Object(m.isValidPath)(e))return;if((e=Object(m.getQueryString)(t))&&!Object(m.isValidQueryString)(e))return;if((e=Object(m.getFragment)(t))&&!Object(m.isValidFragment)(e))return}return!Object(k.startsWith)(t,"#")||Object(m.isValidFragment)(t)?1:void 0}}}(n)?i(t?Object(b.__)("Link edited.","all-in-one-seo-pack"):Object(b.__)("Link inserted.","all-in-one-seo-pack"),"assertive"):i(Object(b.__)("Warning: the link has been inserted but may have errors. Please test it.","all-in-one-seo-pack"),"assertive"))},forceIsEditingLink:r}))}));var Y="core/link",Z=Object(b.__)("Link","all-in-one-seo-pack"),ee={name:Y,title:Z,tagName:"a",className:null,attributes:{url:"href",target:"target",rel:"rel",title:"title"},__unstablePasteRule:function(e,t){var n=t.html;t=t.plainText;return Object(d.isCollapsed)(e)?e:(t=(n||t).replace(/<[^>]+>/g,"").trim(),Object(m.isURL)(t)?(window.console.log("Created link:\n\n",t),Object(d.applyFormat)(e,{type:Y,attributes:{url:Object(g.decodeEntities)(t)}})):e)},edit:Object(f.withSpokenMessages)(function(e){a()(n,e);var t=function(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,r=u()(e);return r=t?(n=u()(this).constructor,Reflect.construct(r,arguments,n)):r.apply(this,arguments),s()(this,r)}}(n);function n(){var e;return c()(this,n),(e=t.apply(this,arguments)).addLink=e.addLink.bind(l()(e)),e.stopAddingLink=e.stopAddingLink.bind(l()(e)),e.onRemoveFormat=e.onRemoveFormat.bind(l()(e)),e.state={addingLink:!1},e}return i()(n,[{key:"addLink",value:function(){var e,t=(e=this.props).value,n=e.onChange;(e=Object(d.getTextContent)(Object(d.slice)(t)))&&Object(m.isURL)(e)?n(Object(d.applyFormat)(t,{type:Y,attributes:{url:e}})):e&&Object(m.isEmail)(e)?n(Object(d.applyFormat)(t,{type:Y,attributes:{url:"mailto:".concat(e)}})):this.setState({addingLink:!0})}},{key:"stopAddingLink",value:function(){this.setState({addingLink:!1}),this.props.onFocus()}},{key:"onRemoveFormat",value:function(){var e=(n=this.props).value,t=n.onChange,n=n.speak;t(Object(d.removeFormat)(e,Y)),n(Object(b.__)("Link removed.","all-in-one-seo-pack"),"assertive")}},{key:"render",value:function(){var e=(r=this.props).isActive,t=r.activeAttributes,n=r.value,r=r.onChange;return Object(p.createElement)(p.Fragment,null,Object(p.createElement)(O.RichTextShortcut,{type:"primary",character:"k",onUse:this.addLink}),Object(p.createElement)(O.RichTextShortcut,{type:"primaryShift",character:"k",onUse:this.onRemoveFormat}),e&&Object(p.createElement)(O.RichTextToolbarButton,{name:"link",icon:h,title:Object(b.__)("Unlink","all-in-one-seo-pack"),onClick:this.onRemoveFormat,isActive:e,shortcutType:"primaryShift",shortcutCharacter:"k"}),!e&&Object(p.createElement)(O.RichTextToolbarButton,{name:"link",icon:j,title:Z,onClick:this.addLink,isActive:e,shortcutType:"primary",shortcutCharacter:"k"}),(this.state.addingLink||e)&&Object(p.createElement)(X,{key:"aioseop-inline-link-ui",addingLink:this.state.addingLink,stopAddingLink:this.stopAddingLink,isActive:e,activeAttributes:t,value:n,onChange:r}))}}]),n}(p.Component))},te=["name"],ne=(n=wp.richText).registerFormatType,re=n.unregisterFormatType;[ee].forEach((function(e){var t=e.name;e=o()(e,te);t&&(re("core/link"),ne(t,e))}))}]);
|
1 |
+
/*! ! built on Tuesday, September 21st 2021, 9:50:25 pm */
|
2 |
!function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=81)}([function(e,t){e.exports=window.wp.element},function(e,t){e.exports=window.wp.i18n},,function(e,t){e.exports=function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}},function(e,t){e.exports=window.wp.url},function(e,t){e.exports=window.wp.components},function(e,t){e.exports=window.lodash},function(e,t,n){var r;!function(){"use strict";var n={}.hasOwnProperty;function o(){for(var e=[],t=0;t<arguments.length;t++){var r=arguments[t];if(r){var c=typeof r;if("string"==c||"number"==c)e.push(r);else if(Array.isArray(r)&&r.length){var i=o.apply(null,r);i&&e.push(i)}else if("object"==c)for(var l in r)n.call(r,l)&&r[l]&&e.push(l)}}return e.join(" ")}e.exports?(o.default=o,e.exports=o):void 0===(r=function(){return o}.apply(t,[]))||(e.exports=r)}()},function(e,t){function n(t){return e.exports=n=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},n(t)}e.exports=n},,,function(e,t){e.exports=window.wp.richText},function(e,t){function n(){return e.exports=n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n,r=arguments[t];for(n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},n.apply(this,arguments)}e.exports=n},function(e,t){e.exports=window.wp.primitives},function(e,t,n){var r=n(29);e.exports=function(e,t){if(null==e)return{};var n,o=r(e,t);if(Object.getOwnPropertySymbols)for(var c=Object.getOwnPropertySymbols(e),i=0;i<c.length;i++)n=c[i],0<=t.indexOf(n)||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n]);return o}},function(e,t){e.exports=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}},function(e,t){function n(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}e.exports=function(e,t,r){return t&&n(e.prototype,t),r&&n(e,r),e}},function(e,t,n){var r=n(30);e.exports=function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&r(e,t)}},function(e,t,n){var r=n(31),o=n(3);e.exports=function(e,t){return!t||"object"!==r(t)&&"function"!=typeof t?o(e):t}},function(e,t){e.exports=function(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}},function(e,t,n){var r=n(60),o=n(61),c=n(62),i=n(64);e.exports=function(e,t){return r(e)||o(e,t)||c(e,t)||i()}},function(e,t){e.exports=window.regeneratorRuntime},,function(e,t){e.exports=window.wp.blockEditor},function(e,t){function n(e,t,n,r,o,c,i){try{var l=e[c](i),a=l.value}catch(e){return void n(e)}l.done?t(a):Promise.resolve(a).then(r,o)}e.exports=function(e){return function(){var t=this,r=arguments;return new Promise((function(o,c){var i=e.apply(t,r);function l(e){n(i,o,c,l,a,"next",e)}function a(e){n(i,o,c,l,a,"throw",e)}l(void 0)}))}}},,,,,function(e,t){e.exports=function(e,t){if(null==e)return{};for(var n,r={},o=Object.keys(e),c=0;c<o.length;c++)n=o[c],0<=t.indexOf(n)||(r[n]=e[n]);return r}},function(e,t){function n(t,r){return e.exports=n=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},n(t,r)}e.exports=n},function(e,t){function n(t){return"function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?e.exports=n=function(e){return typeof e}:e.exports=n=function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n(t)}e.exports=n},,,,,,,function(e,t){e.exports=window.wp.htmlEntities},function(e,t){e.exports=window.wp.compose},function(e,t){e.exports=window.wp.data},function(e,t){e.exports=window.wp.dom},function(e,t){e.exports=window.wp.editor},,,,,,,,,,,,,,,,,,function(e,t){e.exports=function(e){if(Array.isArray(e))return e}},function(e,t){e.exports=function(e,t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,o=!1,c=void 0;try{for(var i,l=e[Symbol.iterator]();!(r=(i=l.next()).done)&&(n.push(i.value),!t||n.length!==t);r=!0);}catch(e){o=!0,c=e}finally{try{r||null==l.return||l.return()}finally{if(o)throw c}}return n}}},function(e,t,n){var r=n(63);e.exports=function(e,t){if(e){if("string"==typeof e)return r(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Map"===(n="Object"===n&&e.constructor?e.constructor.name:n)||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?r(e,t):void 0}}},function(e,t){e.exports=function(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}},function(e,t){e.exports=function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}},,,,,,,,,,,,,,,,,function(e,t,n){"use strict";n.r(t);var r=n(14),o=n.n(r),c=(t=n(15),n.n(t)),i=(r=n(16),n.n(r)),l=(t=n(3),n.n(t)),a=(r=n(17),n.n(r)),s=(t=n(18),n.n(t)),u=(r=n(8),n.n(r)),p=n(0),b=n(1),f=n(5),d=n(11),m=n(4),O=n(23),g=n(38),h=(t=n(13),Object(p.createElement)(t.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},Object(p.createElement)(t.Path,{d:"M15.6 7.3h-.7l1.6-3.5-.9-.4-3.9 8.5H9v1.5h2l-1.3 2.8H8.4c-2 0-3.7-1.7-3.7-3.7s1.7-3.7 3.7-3.7H10V7.3H8.4c-2.9 0-5.2 2.3-5.2 5.2 0 2.9 2.3 5.2 5.2 5.2H9l-1.4 3.2.9.4 5.7-12.5h1.4c2 0 3.7 1.7 3.7 3.7s-1.7 3.7-3.7 3.7H14v1.5h1.6c2.9 0 5.2-2.3 5.2-5.2 0-2.9-2.4-5.2-5.2-5.2z"}))),j=Object(p.createElement)(t.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},Object(p.createElement)(t.Path,{d:"M15.6 7.2H14v1.5h1.6c2 0 3.7 1.7 3.7 3.7s-1.7 3.7-3.7 3.7H14v1.5h1.6c2.8 0 5.2-2.3 5.2-5.2 0-2.9-2.3-5.2-5.2-5.2zM4.7 12.4c0-2 1.7-3.7 3.7-3.7H10V7.2H8.4c-2.9 0-5.2 2.3-5.2 5.2 0 2.9 2.3 5.2 5.2 5.2H10v-1.5H8.4c-2 0-3.7-1.7-3.7-3.7zm4.6.9h5.3v-1.5H9.3v1.5z"})),v=(r=n(19),n.n(r)),y=(r=n(20),n.n(r)),k=n(6),w=(r=n(12),n.n(r)),_=(r=n(24),n.n(r)),x=(r=n(21),n.n(r)),E=(r=n(7),n.n(r)),S=n(39),P=n(40),C=n(41);function T(e,t){var n,r=Object.keys(e);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(e),t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)),r}function N(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?T(Object(n),!0).forEach((function(t){v()(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):T(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var L=[{id:"opensInNewTab",title:Object(b.__)("Open in new tab"),type:"ToggleControl"},{id:"nofollow",title:Object(b.__)('Add "nofollow" to link',"all-in-one-seo-pack"),type:"ToggleControl"},{id:"sponsored",title:Object(b.__)('Add "sponsored" to link',"all-in-one-seo-pack"),type:"ToggleControl"},{id:"ugc",title:Object(b.__)('Add "ugc" to link',"all-in-one-seo-pack"),type:"ToggleControl"},{id:"title",title:Object(b.__)("Add title attribute to link","all-in-one-seo-pack"),type:"TextControl"}],R=function(e){var t=e.value,n=e.onChange,r=void 0===n?k.noop:n;return(e=void 0===(e=e.settings)?L:e)&&e.length?(e=e.map((function(e){if("TextControl"!==e.type)return"ToggleControl"===e.type?Object(p.createElement)(f.ToggleControl,{className:"block-editor-link-control__setting",key:e.id,label:e.title,onChange:(n=e,function(e){r(N(N({},t),{},v()({},n.id,e)))}),checked:!!t&&!!t[e.id]}):null;var n,o=Object(p.useState)(),c=y()(o,2),i=(o=c[0],c[1]);return Object(p.createElement)(f.TextControl,{"data-aioseop":"true",className:"block-editor-link-control__setting",key:e.id,label:e.title,onChange:function(e){i(e)},onBlur:function(n){r(N(N({},t),{},v()({},e.id,n.target.value)))},value:o||t[e.id]})})),Object(p.createElement)("fieldset",{className:"block-editor-link-control__settings"},Object(p.createElement)(f.VisuallyHidden,{as:"legend"},Object(b.__)("Currently selected link settings")),e)):null};function H(e,t){var n,r=Object.keys(e);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(e),t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)),r}function A(e){var t=e.icon,n=void 0===(n=e.size)?24:n;e=function(e,t){if(null==e)return{};var n,r=function(e,t){if(null==e)return{};for(var n,r={},o=Object.keys(e),c=0;c<o.length;c++)n=o[c],0<=t.indexOf(n)||(r[n]=e[n]);return r}(e,t);if(Object.getOwnPropertySymbols)for(var o=Object.getOwnPropertySymbols(e),c=0;c<o.length;c++)n=o[c],0<=t.indexOf(n)||Object.prototype.propertyIsEnumerable.call(e,n)&&(r[n]=e[n]);return r}(e,["icon","size"]);return Object(p.cloneElement)(t,function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?H(Object(n),!0).forEach((function(t){var r,o;r=e,t=n[o=t],o in r?Object.defineProperty(r,o,{value:t,enumerable:!0,configurable:!0,writable:!0}):r[o]=t})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):H(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({width:n,height:n},e))}var I=Object(p.createElement)(t.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"-2 -2 24 24"},Object(p.createElement)(t.Path,{d:"M9 0C4.03 0 0 4.03 0 9s4.03 9 9 9 9-4.03 9-9-4.03-9-9-9zM1.11 9.68h2.51c.04.91.167 1.814.38 2.7H1.84c-.403-.85-.65-1.764-.73-2.7zm8.57-5.4V1.19c.964.366 1.756 1.08 2.22 2 .205.347.386.708.54 1.08l-2.76.01zm3.22 1.35c.232.883.37 1.788.41 2.7H9.68v-2.7h3.22zM8.32 1.19v3.09H5.56c.154-.372.335-.733.54-1.08.462-.924 1.255-1.64 2.22-2.01zm0 4.44v2.7H4.7c.04-.912.178-1.817.41-2.7h3.21zm-4.7 2.69H1.11c.08-.936.327-1.85.73-2.7H4c-.213.886-.34 1.79-.38 2.7zM4.7 9.68h3.62v2.7H5.11c-.232-.883-.37-1.788-.41-2.7zm3.63 4v3.09c-.964-.366-1.756-1.08-2.22-2-.205-.347-.386-.708-.54-1.08l2.76-.01zm1.35 3.09v-3.04h2.76c-.154.372-.335.733-.54 1.08-.464.92-1.256 1.634-2.22 2v-.04zm0-4.44v-2.7h3.62c-.04.912-.178 1.817-.41 2.7H9.68zm4.71-2.7h2.51c-.08.936-.327 1.85-.73 2.7H14c.21-.87.337-1.757.38-2.65l.01-.05zm0-1.35c-.046-.894-.176-1.78-.39-2.65h2.16c.403.85.65 1.764.73 2.7l-2.5-.05zm1-4H13.6c-.324-.91-.793-1.76-1.39-2.52 1.244.56 2.325 1.426 3.14 2.52h.04zm-9.6-2.52c-.597.76-1.066 1.61-1.39 2.52H2.65c.815-1.094 1.896-1.96 3.14-2.52zm-3.15 12H4.4c.324.91.793 1.76 1.39 2.52-1.248-.567-2.33-1.445-3.14-2.55l-.01.03zm9.56 2.52c.597-.76 1.066-1.61 1.39-2.52h1.76c-.82 1.08-1.9 1.933-3.14 2.48l-.01.04z"})),F=function(e){var t=e.itemProps,n=e.suggestion,r=void 0!==(c=e.isSelected)&&c,o=e.onClick,c=void 0!==(c=e.isURL)&&c;e=void 0===(e=e.searchTerm)?"":e;return Object(p.createElement)(f.Button,w()({},t,{onClick:o,className:E()("block-editor-link-control__search-item",{"is-selected":r,"is-url":c,"is-entity":!c})}),c&&Object(p.createElement)(A,{className:"block-editor-link-control__search-item-icon",icon:I}),Object(p.createElement)("span",{className:"block-editor-link-control__search-item-header"},Object(p.createElement)("span",{className:"block-editor-link-control__search-item-title"},Object(p.createElement)(f.TextHighlight,{text:n.title,highlight:e})),Object(p.createElement)("span",{"aria-hidden":!c,className:"block-editor-link-control__search-item-info"},!c&&(Object(m.safeDecodeURI)(n.url)||""),c&&Object(b.__)("Press ENTER to add this link"))),n.type&&Object(p.createElement)("span",{className:"block-editor-link-control__search-item-type"},n.type))},z=Object(p.createElement)(t.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"-2 -2 24 24"},Object(p.createElement)(t.Path,{d:"M16 4h2v9H7v3l-5-4 5-4v3h9V4z"})),D=n(42),M=function(e){var t=e.value,n=e.onChange,r=e.onSelect,o=e.renderSuggestions,c=e.fetchSuggestions,i=e.showInitialSuggestions,l=e.errorMessage,a=(e=Object(p.useState)(),(e=y()(e,2))[0]),s=e[1];return Object(p.createElement)("form",{onSubmit:function(e){e.preventDefault(),r(a||{url:t})}},Object(p.createElement)("div",{className:"block-editor-link-control__search-input-wrapper"},Object(p.createElement)(D.URLInput,{className:"block-editor-link-control__search-input",value:t,onChange:function(e,t){n(e),s(t)},placeholder:Object(b.__)("Search or type url"),__experimentalRenderSuggestions:o,__experimentalFetchLinkSuggestions:c,__experimentalHandleURLSuggestions:!0,__experimentalShowInitialSuggestions:i}),Object(p.createElement)("div",{className:"block-editor-link-control__search-actions"},Object(p.createElement)(f.Button,{type:"submit",label:Object(b.__)("Submit"),icon:z,className:"block-editor-link-control__search-submit"}))),l&&Object(p.createElement)(f.Notice,{className:"block-editor-link-control__search-error",status:"error",isDismissible:!1},l))},V=function(e){var t=e.searchTerm,n=e.onClick,r=e.itemProps;e=e.isSelected;return t?Object(p.createElement)(f.Button,w()({},r,{className:E()("block-editor-link-control__search-create block-editor-link-control__search-item",{"is-selected":e}),onClick:n}),Object(p.createElement)(f.Icon,{className:"block-editor-link-control__search-item-icon",icon:"insert"}),Object(p.createElement)("span",{className:"block-editor-link-control__search-item-header"},Object(p.createElement)("span",{className:"block-editor-link-control__search-item-title"},Object(p.createInterpolateElement)(Object(b.sprintf)(Object(b.__)("New page: <mark>%s</mark>"),t),{mark:Object(p.createElement)("mark",null)})))):null};function U(e,t){var n,r=Object.keys(e);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(e),t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)),r}function B(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?U(Object(n),!0).forEach((function(t){v()(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):U(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var W=(n=Object(f.createSlotFill)("BlockEditorLinkControlViewer")).Slot,G=(n=n.Fill,"__CREATE__"),Q=function(e){var t=!1;return{promise:new Promise((function(n,r){e.then((function(e){return t?r({isCanceled:!0}):n(e)}),(function(e){return r(t?{isCanceled:!0}:e)}))})),cancel:function(){t=!0}}};function q(e){var t=e.value,n=e.settings,r=void 0===(j=e.onChange)?k.noop:j,o=void 0===(K=e.showSuggestions)||K,c=e.showInitialSuggestions,i=e.forceIsEditingLink,l=e.createSuggestion,a=Object(p.useRef)(),s=Object(p.useRef)(),u=Object(p.useRef)(),d=Object(S.useInstanceId)(q),O=Object(p.useState)(t&&t.url||""),g=(N=y()(O,2))[0],h=N[1],j=Object(p.useState)(void 0!==i?i:!t||!t.url),v=(K=y()(j,2))[0],T=K[1],N=(e=Object(p.useState)(!1),(O=y()(e,2))[0]),L=O[1],H=(j=Object(p.useState)(null),e=(K=y()(j,2))[0],K[1]),A=Object(p.useRef)(!1),I=Object(P.useSelect)((function(e){return{fetchSearchSuggestions:(0,e("core/block-editor").getSettings)().__experimentalFetchLinkSuggestions}}),[]).fetchSearchSuggestions;O=t&&Object(m.filterURLForDisplay)(Object(m.safeDecodeURI)(t.url))||"";function z(e){var t="URL",n=Object(m.getProtocol)(e)||"";return n.includes("mailto")&&(t="mailto"),n.includes("tel")&&(t="tel"),Object(k.startsWith)(e,"#")&&(t="internal"),Promise.resolve([{id:e,title:e,url:"URL"===t?Object(m.prependHTTP)(e):e,type:t}])}Object(p.useEffect)((function(){void 0!==i&&i!==v&&T(i)}),[i]),Object(p.useEffect)((function(){A.current&&u.current&&!u.current.contains(document.activeElement)&&(C.focus.focusable.find(u.current)[0]||u.current).focus(),A.current=!1}),[v]),Object(p.useEffect)((function(){return function(){a.current&&a.current.cancel(),s.current&&s.current.cancel()}}),[]);var D=function(){var e=_()(x.a.mark((function e(t,n){var r,o;return x.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,Promise.all([I(t,B({},n.isInitialSuggestions?{perPage:3}:{})),z(t)]);case 2:return r=e.sent,o=!t.includes(" "),r=o&&!n.isInitialSuggestions?r[0].concat(r[1]):r[0],e.abrupt("return",$(t)?r:r.concat({title:t,url:t,type:G}));case 6:case"end":return e.stop()}}),e)})));return function(t,n){return e.apply(this,arguments)}}();function U(){A.current=!!u.current&&u.current.contains(document.activeElement),T(!1)}function $(e){var t=Object(k.startsWith)(e,"#");return Object(m.isURL)(e)||e&&e.includes("www.")||t}j=Object(p.useCallback)((function(e,t){return o?$(e)?z(e):D(e,t):Promise.resolve([])}),[z,I]);var J=function(){var e=_()(x.a.mark((function e(t){var n;return x.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return L(!0),H(null),e.prev=2,s.current=Q(Promise.resolve(l(t))),e.next=6,s.current.promise;case 6:n=e.sent,L(!1),n?(r(n),U()):T(!0),e.next=18;break;case 11:if(e.prev=11,e.t0=e.catch(2),e.t0&&e.t0.isCanceled)return e.abrupt("return");e.next=15;break;case 15:H(e.t0.message||Object(b.__)("An unknown error occurred during creation. Please try again.")),L(!1),T(!0);case 18:case"end":return e.stop()}}),e,null,[[2,11]])})));return function(t){return e.apply(this,arguments)}}(),K=Object(p.useMemo)((function(){return{url:t&&t.url}}),[t&&t.url]);return Object(p.createElement)("div",{tabIndex:-1,ref:u,className:"block-editor-link-control"},N&&Object(p.createElement)("div",{className:"block-editor-link-control__loading"},Object(p.createElement)(f.Spinner,null)," ",Object(b.__)("Creating"),"…"),(v||!t)&&!N&&Object(p.createElement)(M,{value:g,onChange:function(){h(0<arguments.length&&void 0!==arguments[0]?arguments[0]:"")},onSelect:function(){var e=_()(x.a.mark((function e(n){return x.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(G===n.type)return e.next=3,J(g);e.next=5;break;case 3:e.next=7;break;case 5:!function(e){var t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{};T(!1),r(B(B({},t),e))}(n,t),U();case 7:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),renderSuggestions:o?function(e){var n=e.suggestionsListProps,o=e.buildSuggestionItemProps,c=e.suggestions,i=e.selectedSuggestion,a=e.isLoading,s=e.isInitialSuggestions,u=E()("block-editor-link-control__search-results",{"is-loading":a}),m=["url","mailto","tel","internal"],O=(e=1===c.length&&m.includes(c[0].type.toLowerCase()),l&&!e&&!s);a="block-editor-link-control-search-results-label-".concat(d),e=s?Object(b.__)("Recently updated"):Object(b.sprintf)(Object(b.__)('Search results for "%s"'),g),e=Object(p.createElement)(s?p.Fragment:f.VisuallyHidden,{},Object(p.createElement)("span",{className:"block-editor-link-control__search-results-label",id:a},e));return Object(p.createElement)("div",{className:"block-editor-link-control__search-results-wrapper"},e,Object(p.createElement)("div",w()({},n,{className:u,"aria-labelledby":a}),c.map((function(e,n){return O&&G===e.type?Object(p.createElement)(V,{searchTerm:g,onClick:_()(x.a.mark((function t(){return x.a.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,J(e.title);case 2:case"end":return t.stop()}}),t)}))),key:e.type,itemProps:o(e,n),isSelected:n===i}):G===e.type?null:Object(p.createElement)(F,{key:"".concat(e.id,"-").concat(e.type),itemProps:o(e,n),suggestion:e,index:n,onClick:function(){U(),r(B(B({},t),e))},isSelected:n===i,isURL:m.includes(e.type.toLowerCase()),searchTerm:g})}))))}:null,fetchSuggestions:j,showInitialSuggestions:c,errorMessage:e}),t&&!v&&!N&&Object(p.createElement)(p.Fragment,null,Object(p.createElement)("div",{"aria-label":Object(b.__)("Currently selected"),"aria-selected":"true",className:E()("block-editor-link-control__search-item",{"is-current":!0})},Object(p.createElement)("span",{className:"block-editor-link-control__search-item-header"},Object(p.createElement)(f.ExternalLink,{className:"block-editor-link-control__search-item-title",href:t.url},t&&t.title||O),t&&t.title&&Object(p.createElement)("span",{className:"block-editor-link-control__search-item-info"},O)),Object(p.createElement)(f.Button,{isSecondary:!0,onClick:function(){return T(!0)},className:"block-editor-link-control__search-item-action"},Object(b.__)("Edit")),Object(p.createElement)(W,{fillProps:K}))),Object(p.createElement)(R,{key:"aioseop-settings-drawer",value:t,settings:n,onChange:r}))}q.ViewerFill=n;var $=q;function J(e,t){var n,r=Object.keys(e);return Object.getOwnPropertySymbols&&(n=Object.getOwnPropertySymbols(e),t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)),r}function K(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?J(Object(n),!0).forEach((function(t){v()(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):J(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var X=Object(f.withSpokenMessages)((function(e){var t=e.isActive,n=e.activeAttributes,r=e.addingLink,o=e.value,c=e.onChange,i=e.speak,l=e.stopAddingLink,a=Object(p.useMemo)(k.uniqueId,[r]),s=(e=Object(p.useState)(),(e=y()(e,2))[0]),u=e[1],O=(e=Object(p.useMemo)((function(){var e=window.getSelection();if(e.rangeCount){if(e=e.getRangeAt(0),r&&!t)return e;for(var n=(n=e.startContainer).nextElementSibling||n;n.nodeType!==window.Node.ELEMENT_NODE;)n=n.parentNode;return n.closest("a")}}),[r,o.start,o.end]),K({url:n.url,opensInNewTab:"_blank"===n.target,nofollow:!!n.rel&&n.rel.includes("nofollow"),sponsored:!!n.rel&&n.rel.includes("sponsored"),ugc:!!n.rel&&n.rel.includes("ugc"),title:n.title},s));return Object(p.createElement)(f.Popover,{key:a,anchorRef:e,focusOnMount:!!r&&"firstElement",onClose:l,position:"bottom center"},Object(p.createElement)($,{value:O,onChange:function(e){e=K(K({},s),e);var n,r,a,p,f,g,h,j=(O.opensInNewTab!==e.opensInNewTab||O.sponsored!==e.sponsored||O.nofollow!==e.nofollow||O.ugc!==e.ugc)&&O.url===e.url,v=j&&void 0===e.url;u(v?e:void 0),v||(a=(r={url:n=Object(m.prependHTTP)(e.url),opensInNewWindow:e.opensInNewTab,nofollow:e.nofollow,sponsored:e.sponsored,ugc:e.ugc,title:e.title}).url,p=r.opensInNewWindow,f=r.nofollow,g=r.sponsored,h=r.ugc,v=r.title,r={type:"core/link",attributes:{url:a}},a=[],p&&(r.attributes.target="_blank",a.push("noreferrer noopener")),f&&a.push("nofollow"),g&&a.push("sponsored"),h&&a.push("ugc"),0<a.length&&(r.attributes.rel=a.join(" ")),v&&(r.attributes.title=v),r=r,Object(d.isCollapsed)(o)&&!t?(e=e.title||n,e=Object(d.applyFormat)(Object(d.create)({text:e}),r,0,e.length),c(Object(d.insert)(o,e))):c(Object(d.applyFormat)(o,r)),j||l(),function(e){if(e){var t=e.trim();if(t){if(/^\S+:/.test(t)){if(e=Object(m.getProtocol)(t),!Object(m.isValidProtocol)(e))return;if(Object(k.startsWith)(e,"http")&&!/^https?:\/\/[^/\s]/i.test(t))return;if(e=Object(m.getAuthority)(t),!Object(m.isValidAuthority)(e))return;if((e=Object(m.getPath)(t))&&!Object(m.isValidPath)(e))return;if((e=Object(m.getQueryString)(t))&&!Object(m.isValidQueryString)(e))return;if((e=Object(m.getFragment)(t))&&!Object(m.isValidFragment)(e))return}return!Object(k.startsWith)(t,"#")||Object(m.isValidFragment)(t)?1:void 0}}}(n)?i(t?Object(b.__)("Link edited.","all-in-one-seo-pack"):Object(b.__)("Link inserted.","all-in-one-seo-pack"),"assertive"):i(Object(b.__)("Warning: the link has been inserted but may have errors. Please test it.","all-in-one-seo-pack"),"assertive"))},forceIsEditingLink:r}))}));var Y="core/link",Z=Object(b.__)("Link","all-in-one-seo-pack"),ee={name:Y,title:Z,tagName:"a",className:null,attributes:{url:"href",target:"target",rel:"rel",title:"title"},__unstablePasteRule:function(e,t){var n=t.html;t=t.plainText;return Object(d.isCollapsed)(e)?e:(t=(n||t).replace(/<[^>]+>/g,"").trim(),Object(m.isURL)(t)?(window.console.log("Created link:\n\n",t),Object(d.applyFormat)(e,{type:Y,attributes:{url:Object(g.decodeEntities)(t)}})):e)},edit:Object(f.withSpokenMessages)(function(e){a()(n,e);var t=function(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,r=u()(e);return r=t?(n=u()(this).constructor,Reflect.construct(r,arguments,n)):r.apply(this,arguments),s()(this,r)}}(n);function n(){var e;return c()(this,n),(e=t.apply(this,arguments)).addLink=e.addLink.bind(l()(e)),e.stopAddingLink=e.stopAddingLink.bind(l()(e)),e.onRemoveFormat=e.onRemoveFormat.bind(l()(e)),e.state={addingLink:!1},e}return i()(n,[{key:"addLink",value:function(){var e,t=(e=this.props).value,n=e.onChange;(e=Object(d.getTextContent)(Object(d.slice)(t)))&&Object(m.isURL)(e)?n(Object(d.applyFormat)(t,{type:Y,attributes:{url:e}})):e&&Object(m.isEmail)(e)?n(Object(d.applyFormat)(t,{type:Y,attributes:{url:"mailto:".concat(e)}})):this.setState({addingLink:!0})}},{key:"stopAddingLink",value:function(){this.setState({addingLink:!1}),this.props.onFocus()}},{key:"onRemoveFormat",value:function(){var e=(n=this.props).value,t=n.onChange,n=n.speak;t(Object(d.removeFormat)(e,Y)),n(Object(b.__)("Link removed.","all-in-one-seo-pack"),"assertive")}},{key:"render",value:function(){var e=(r=this.props).isActive,t=r.activeAttributes,n=r.value,r=r.onChange;return Object(p.createElement)(p.Fragment,null,Object(p.createElement)(O.RichTextShortcut,{type:"primary",character:"k",onUse:this.addLink}),Object(p.createElement)(O.RichTextShortcut,{type:"primaryShift",character:"k",onUse:this.onRemoveFormat}),e&&Object(p.createElement)(O.RichTextToolbarButton,{name:"link",icon:h,title:Object(b.__)("Unlink","all-in-one-seo-pack"),onClick:this.onRemoveFormat,isActive:e,shortcutType:"primaryShift",shortcutCharacter:"k"}),!e&&Object(p.createElement)(O.RichTextToolbarButton,{name:"link",icon:j,title:Z,onClick:this.addLink,isActive:e,shortcutType:"primary",shortcutCharacter:"k"}),(this.state.addingLink||e)&&Object(p.createElement)(X,{key:"aioseop-inline-link-ui",addingLink:this.state.addingLink,stopAddingLink:this.stopAddingLink,isActive:e,activeAttributes:t,value:n,onChange:r}))}}]),n}(p.Component))},te=["name"],ne=(n=wp.richText).registerFormatType,re=n.unregisterFormatType;[ee].forEach((function(e){var t=e.name;e=o()(e,te);t&&(re("core/link"),ne(t,e))}))}]);
|
dist/Lite/assets/js/link-format-block.js.gz
CHANGED
Binary file
|
dist/Lite/assets/js/link-format-classic.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1 |
-
/*! ! built on Tuesday, September
|
2 |
!function(e){var t={};function n(i){if(t[i])return t[i].exports;var l=t[i]={i:i,l:!1,exports:{}};return e[i].call(l.exports,l,l.exports,n),l.l=!0,l.exports}n.m=e,n.c=t,n.d=function(e,t,i){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:i})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var i=Object.create(null);if(n.r(i),Object.defineProperty(i,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var l in e)n.d(i,l,function(t){return e[t]}.bind(null,l));return i},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=65)}({65:function(e,t){function n(){return r?r.$('a[data-wplink-edit="true"]'):null}var i,l,a,r,s,o,c,p,d,u,h,f,k;i=jQuery,l=window.aioseoL10n,a=window.wp,d=/^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,63}$/i,u=/^(https?|ftp):\/\/[A-Z0-9.-]+\.[A-Z]{2,63}[^ "]*$/i,h={},f={},k="ontouchend"in document,window.wpLink={timeToTriggerRiver:150,minRiverAJAXDuration:200,riverBottomThreshold:5,keySensitivity:100,lastSearch:"",textarea:"",modalOpen:!1,init:function(){i("#wp-link .link-target").append('<br><label style="padding-left: 4px;"><span> </span><input type="checkbox" id="aioseop-add-nofollow">'+l.noFollow+"</label>"),i("#wp-link .link-target").append('<br><label style="padding-left: 4px;"><span> </span><input type="checkbox" id="aioseop-add-sponsored">'+l.sponsored+"</label>"),i("#wp-link .link-target").append('<br><label style="padding-left: 4px;"><span> </span><input type="checkbox" id="aioseop-add-ugc">'+l.ugc+"</label><br>"),i(".wp-link-text-field").before('<div class="link-title-field"><label><span style="padding-left: 4px;">'+l.labelTitle+'</span><input id="wp-link-title" type="text" name="linktitle" /></label></div>'),i('<style type="text/css"> .has-text-field #wp-link .query-results { top: 256px !important; } #wp-link-wrap.search-panel-visible {height: 549px !important;}</style>').appendTo("head"),h.wrap=i("#wp-link-wrap"),h.dialog=i("#wp-link"),h.backdrop=i("#wp-link-backdrop"),h.submit=i("#wp-link-submit"),h.close=i("#wp-link-close"),h.tanfl=i("#aioseop-add-nofollow"),h.tanfl_sponsored=i("#aioseop-add-sponsored"),h.tanfl_ugc=i("#aioseop-add-ugc"),h.title=i("#wp-link-title"),h.text=i("#wp-link-text"),h.url=i("#wp-link-url"),h.nonce=i("#_ajax_linking_nonce"),h.openInNewTab=i("#wp-link-target"),h.search=i("#wp-link-search"),f.search=new o(i("#search-results")),f.recent=new o(i("#most-recent-results")),f.elements=h.dialog.find(".query-results"),h.queryNotice=i("#query-notice-message"),h.queryNoticeTextDefault=h.queryNotice.find(".query-notice-default"),h.queryNoticeTextHint=h.queryNotice.find(".query-notice-hint"),h.dialog.keydown(wpLink.keydown),h.dialog.keyup(wpLink.keyup),h.submit.click((function(e){e.preventDefault(),wpLink.update()})),h.close.add(h.backdrop).add("#wp-link-cancel button").click((function(e){e.preventDefault(),wpLink.close()})),f.elements.on("river-select",wpLink.updateFields),h.search.on("focus.wplink",(function(){h.queryNoticeTextDefault.hide(),h.queryNoticeTextHint.removeClass("screen-reader-text").show()})).on("blur.wplink",(function(){h.queryNoticeTextDefault.show(),h.queryNoticeTextHint.addClass("screen-reader-text").hide()})),h.search.on("keyup input",(function(){window.clearTimeout(s),s=window.setTimeout((function(){wpLink.searchInternalLinks()}),500)})),h.url.on("paste",(function(){setTimeout(wpLink.correctURL,0)})),h.url.on("blur",wpLink.correctURL)},correctURL:function(){var e=i.trim(h.url.val());e&&p!==e&&!/^(?:[a-z]+:|#|\?|\.|\/)/.test(e)&&(h.url.val("http://"+e),p=e)},open:function(e,t,n){var l=i(document.body);l.addClass("modal-open"),wpLink.modalOpen=!0,wpLink.range=null,e&&(window.wpActiveEditor=e),window.wpActiveEditor&&(this.textarea=i("#"+window.wpActiveEditor).get(0),void 0!==window.tinymce&&(l.append(h.backdrop,h.wrap),l=window.tinymce.get(window.wpActiveEditor),r=l&&!l.isHidden()?l:null),!wpLink.isMCE()&&document.selection&&(this.textarea.focus(),this.range=document.selection.createRange()),h.wrap.show(),h.backdrop.show(),wpLink.refresh(t,n),i(document).trigger("wplink-open",h.wrap))},isMCE:function(){return r&&!r.isHidden()},refresh:function(e,t){f.search.refresh(),f.recent.refresh(),wpLink.isMCE()?wpLink.mceRefresh(e,t):(h.wrap.hasClass("has-text-field")||h.wrap.addClass("has-text-field"),document.selection?document.selection.createRange().text:void 0!==this.textarea.selectionStart&&this.textarea.selectionStart!==this.textarea.selectionEnd&&(t=this.textarea.value.substring(this.textarea.selectionStart,this.textarea.selectionEnd)||t||""),h.text.val(t),wpLink.setDefaultValues()),k?h.url.focus().blur():window.setTimeout((function(){h.url[0].select(),h.url.focus()})),f.recent.ul.children().length||f.recent.ajax(),p=h.url.val().replace(/^http:\/\//,""),jQuery(".has-text-field #wp-link .query-results").css("margin-top",25)},hasSelectedText:function(e){var t,n,i,l=r.selection.getContent();if(/</.test(l)&&(!/^<a [^>]+>[^<]+<\/a>$/.test(l)||-1===l.indexOf("href=")))return!1;if(e.length){if(!(n=e[0].childNodes)||!n.length)return!1;for(i=n.length-1;0<=i;i--)if(3!=(t=n[i]).nodeType&&!window.tinymce.dom.BookmarkManager.isBookmarkNode(t))return!1}return!0},mceRefresh:function(e,t){var a,s,o=n(),c=this.hasSelectedText(o);o.length?(a=o.text(),s=o.attr("href"),i.trim(a)||(a=t||""),"_wp_link_placeholder"!==(s=e&&(u.test(e)||d.test(e))?e:s)?(h.url.val(s),h.openInNewTab.prop("checked","_blank"===o.attr("target")),h.submit.val(l.update)):this.setDefaultValues(a),e&&e!==s?(h.url.val(e),h.search.val(e)):h.search.val(""),0<=r.dom.getAttrib(o,"rel").indexOf("nofollow")?h.tanfl.prop("checked",!0):h.tanfl.prop("checked",!1),0<=r.dom.getAttrib(o,"rel").indexOf("sponsored")?h.tanfl_sponsored.prop("checked",!0):h.tanfl_sponsored.prop("checked",!1),0<=r.dom.getAttrib(o,"rel").indexOf("ugc")?h.tanfl_ugc.prop("checked",!0):h.tanfl_ugc.prop("checked",!1),h.title.val(r.dom.getAttrib(o,"title")),window.setTimeout((function(){wpLink.searchInternalLinks()}))):(a=r.selection.getContent({format:"text"})||t||"",this.setDefaultValues(a),h.url.val(e)),c?(h.text.val(a),h.wrap.addClass("has-text-field")):(h.text.val(""),h.wrap.removeClass("has-text-field"))},close:function(e){i(document.body).removeClass("modal-open"),wpLink.modalOpen=!1,"noReset"!==e&&(wpLink.isMCE()?(r.plugins.wplink&&r.plugins.wplink.close(),r.focus()):(wpLink.textarea.focus(),wpLink.range&&(wpLink.range.moveToBookmark(wpLink.range.getBookmark()),wpLink.range.select()))),h.backdrop.hide(),h.wrap.hide(),p=!1,i(document).trigger("wplink-close",h.wrap)},getAttrs:function(){wpLink.correctURL();var e="";return h.tanfl.prop("checked")&&(e+="nofollow "),h.tanfl_sponsored.prop("checked")&&(e+="sponsored "),h.tanfl_ugc.prop("checked")&&(e+="ugc"),{href:i.trim(h.url.val()),target:h.openInNewTab.prop("checked")?"_blank":null,rel:""!==e?e:null,title:""!==h.title.val()?i.trim(h.title.val()):null}},buildHtml:function(e){var t='<a href="'+e.href+'"';return e.title&&(title=e.title.replace(/</g,"<").replace(/>/g,">").replace(/"/g,"""),t+=' title="'+title+'"'),e.target?e.rel?t+=' rel="noopener '+e.rel+'" target="'+e.target+'"':t+=' rel="noopener" target="'+e.target+'"':e.rel&&(t+=' rel="'+e.rel+'"'),t+">"},update:function(){wpLink.isMCE()?wpLink.mceUpdate():wpLink.htmlUpdate()},htmlUpdate:function(){var e,t,n,r,s,o=wpLink.textarea;o&&(n=wpLink.getAttrs(),r=h.text.val(),(s=document.createElement("a")).href=n.href,"javascript:"!==s.protocol&&"data:"!==s.protocol||(n.href=""),n.href&&(e=wpLink.buildHtml(n),document.selection&&wpLink.range?(o.focus(),wpLink.range.text=e+(r||wpLink.range.text)+"</a>",wpLink.range.moveToBookmark(wpLink.range.getBookmark()),wpLink.range.select(),wpLink.range=null):void 0!==o.selectionStart&&(t=o.selectionStart,s=o.selectionEnd,r=t+(e=e+(n=r||o.value.substring(t,s))+"</a>").length,t!==s||n||(r-=4),o.value=o.value.substring(0,t)+e+o.value.substring(s,o.value.length),o.selectionStart=o.selectionEnd=r),wpLink.close(),o.focus(),i(o).trigger("change"),a.a11y.speak(l.linkInserted)))},mceUpdate:function(){var e,t,s,o=wpLink.getAttrs(),c=document.createElement("a");if(c.href=o.href,"javascript:"!==c.protocol&&"data:"!==c.protocol||(o.href=""),!o.href)return r.execCommand("unlink"),void wpLink.close();e=n(),r.undoManager.transact((function(){e.length||(r.execCommand("mceInsertLink",!1,{href:"_wp_link_placeholder","data-wp-temp-link":1}),e=r.$('a[data-wp-temp-link="1"]').removeAttr("data-wp-temp-link"),s=i.trim(e.text())),e.length?(h.wrap.hasClass("has-text-field")&&((t=h.text.val())?e.text(t):s||e.text(o.href)),o["data-wplink-edit"]=null,o["data-mce-href"]=o.href,e.attr(o)):r.execCommand("unlink")})),e=r.$('a[data-wplink-url-error="1"]').removeAttr("data-wplink-url-error"),wpLink.close("noReset"),r.focus(),e.length&&(r.selection.select(e[0]),r.plugins.wplink&&r.plugins.wplink.checkLink(e[0])),r.nodeChanged(),a.a11y.speak(l.linkInserted)},updateFields:function(e,t){h.url.val(t.children(".item-permalink").val()),h.title.val(t.hasClass("no-title")?"":t.children(".item-title").text()),h.wrap.hasClass("has-text-field")&&!h.text.val()&&h.text.val(t.children(".item-title").text())},getUrlFromSelection:function(e){return e||(this.isMCE()?e=r.selection.getContent({format:"text"}):document.selection&&wpLink.range?e=wpLink.range.text:void 0!==this.textarea.selectionStart&&(e=this.textarea.value.substring(this.textarea.selectionStart,this.textarea.selectionEnd))),(e=i.trim(e))&&d.test(e)?"mailto:"+e:e&&u.test(e)?e.replace(/&|�?38;/gi,"&"):""},setDefaultValues:function(e){h.url.val(this.getUrlFromSelection(e)),h.title.val(""),h.openInNewTab.prop("checked",!1),h.tanfl.prop("checked",!1),h.tanfl_sponsored.prop("checked",!1),h.tanfl_ugc.prop("checked",!1),h.search.val(""),wpLink.searchInternalLinks(),h.submit.val(l.save)},searchInternalLinks:function(){var e,t=h.search.val()||"",n=parseInt(l.minInputLength,10)||3;t.length>=n?(f.recent.hide(),f.search.show(),wpLink.lastSearch!=t&&(wpLink.lastSearch=t,e=h.search.parent().find(".spinner").addClass("is-active"),f.search.change(t),f.search.ajax((function(){e.removeClass("is-active")})))):(f.search.hide(),f.recent.show())},next:function(){f.search.next(),f.recent.next()},prev:function(){f.search.prev(),f.recent.prev()},keydown:function(e){var t;27===e.keyCode?(wpLink.close(),e.stopImmediatePropagation()):9===e.keyCode&&("wp-link-submit"!==(t=e.target.id)||e.shiftKey?"wp-link-close"===t&&e.shiftKey&&(h.submit.focus(),e.preventDefault()):(h.close.focus(),e.preventDefault())),e.shiftKey||38!==e.keyCode&&40!==e.keyCode||document.activeElement&&("link-title-field"===document.activeElement.id||"url-field"===document.activeElement.id)||(t=38===e.keyCode?"prev":"next",clearInterval(wpLink.keyInterval),wpLink[t](),wpLink.keyInterval=setInterval(wpLink[t],wpLink.keySensitivity),e.preventDefault())},keyup:function(e){38!==e.keyCode&&40!==e.keyCode||(clearInterval(wpLink.keyInterval),e.preventDefault())},delayedCallback:function(e,t){var n,i,l,a;return t?(setTimeout((function(){return i?e.apply(a,l):void(n=!0)}),t),function(){if(n)return e.apply(this,arguments);l=arguments,a=this,i=!0}):e}},o=function(e,t){var n=this;this.element=e,this.ul=e.children("ul"),this.contentHeight=e.children("#link-selector-height"),this.waiting=e.find(".river-waiting"),this.change(t),this.refresh(),i("#wp-link .query-results, #wp-link #link-selector").scroll((function(){n.maybeLoad()})),e.on("click","li",(function(e){n.select(i(this),e)}))},i.extend(o.prototype,{refresh:function(){this.deselect(),this.visible=this.element.is(":visible")},show:function(){this.visible||(this.deselect(),this.element.show(),this.visible=!0)},hide:function(){this.element.hide(),this.visible=!1},select:function(e,t){var n,i,l,a;e.hasClass("unselectable")||e==this.selected||(this.deselect(),this.selected=e.addClass("selected"),n=e.outerHeight(),i=this.element.height(),l=e.position().top,a=this.element.scrollTop(),l<0?this.element.scrollTop(a+l):i<l+n&&this.element.scrollTop(a+l-i+n),this.element.trigger("river-select",[e,t,this]))},deselect:function(){this.selected&&this.selected.removeClass("selected"),this.selected=!1},prev:function(){var e;this.visible&&this.selected&&(e=this.selected.prev("li")).length&&this.select(e)},next:function(){var e;!this.visible||(e=this.selected?this.selected.next("li"):i("li:not(.unselectable):first",this.element)).length&&this.select(e)},ajax:function(e){var t=this,n=1==this.query.page?0:wpLink.minRiverAJAXDuration;n=wpLink.delayedCallback((function(n,i){t.process(n,i),e&&e(n,i)}),n);this.query.ajax(n)},change:function(e){this.query&&this._search==e||(this._search=e,this.query=new c(e),this.element.scrollTop(0))},process:function(e,t){var n,a="",r=!0;t=1==t.page;e?i.each(e,(function(){n=r?"alternate":"",n+=this.title?"":" no-title",a+=n?'<li class="'+n+'">':"<li>",a+='<input type="hidden" class="item-permalink" value="'+this.permalink+'" />',a+='<span class="item-title">',a+=this.title||l.noTitle,a+='</span><span class="item-info">'+this.info+"</span></li>",r=!r})):t&&(a+='<li class="unselectable no-matches-found"><span class="item-title"><em>'+l.noMatchesFound+"</em></span></li>"),this.ul[t?"html":"append"](a)},maybeLoad:function(){var e=this,t=this.element,n=t.scrollTop()+t.height();!this.query.ready()||n<this.contentHeight.height()-wpLink.riverBottomThreshold||setTimeout((function(){var n=t.scrollTop(),i=n+t.height();!e.query.ready()||i<e.contentHeight.height()-wpLink.riverBottomThreshold||(e.waiting.addClass("is-active"),t.scrollTop(n+e.waiting.outerHeight()),e.ajax((function(){e.waiting.removeClass("is-active")})))}),wpLink.timeToTriggerRiver)}}),c=function(e){this.page=1,this.allLoaded=!1,this.querying=!1,this.search=e},i.extend(c.prototype,{ready:function(){return!(this.querying||this.allLoaded)},ajax:function(e){var t=this,n={action:"wp-link-ajax",page:this.page,_ajax_linking_nonce:h.nonce.val()};this.search&&(n.search=this.search),this.querying=!0,i.post(window.ajaxurl,n,(function(i){t.page++,t.querying=!1,t.allLoaded=!i,e(i,n)}),"json")}}),i(document).ready(wpLink.init)}});
|
1 |
+
/*! ! built on Tuesday, September 21st 2021, 9:50:25 pm */
|
2 |
!function(e){var t={};function n(i){if(t[i])return t[i].exports;var l=t[i]={i:i,l:!1,exports:{}};return e[i].call(l.exports,l,l.exports,n),l.l=!0,l.exports}n.m=e,n.c=t,n.d=function(e,t,i){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:i})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var i=Object.create(null);if(n.r(i),Object.defineProperty(i,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var l in e)n.d(i,l,function(t){return e[t]}.bind(null,l));return i},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=65)}({65:function(e,t){function n(){return r?r.$('a[data-wplink-edit="true"]'):null}var i,l,a,r,s,o,c,p,d,u,h,f,k;i=jQuery,l=window.aioseoL10n,a=window.wp,d=/^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,63}$/i,u=/^(https?|ftp):\/\/[A-Z0-9.-]+\.[A-Z]{2,63}[^ "]*$/i,h={},f={},k="ontouchend"in document,window.wpLink={timeToTriggerRiver:150,minRiverAJAXDuration:200,riverBottomThreshold:5,keySensitivity:100,lastSearch:"",textarea:"",modalOpen:!1,init:function(){i("#wp-link .link-target").append('<br><label style="padding-left: 4px;"><span> </span><input type="checkbox" id="aioseop-add-nofollow">'+l.noFollow+"</label>"),i("#wp-link .link-target").append('<br><label style="padding-left: 4px;"><span> </span><input type="checkbox" id="aioseop-add-sponsored">'+l.sponsored+"</label>"),i("#wp-link .link-target").append('<br><label style="padding-left: 4px;"><span> </span><input type="checkbox" id="aioseop-add-ugc">'+l.ugc+"</label><br>"),i(".wp-link-text-field").before('<div class="link-title-field"><label><span style="padding-left: 4px;">'+l.labelTitle+'</span><input id="wp-link-title" type="text" name="linktitle" /></label></div>'),i('<style type="text/css"> .has-text-field #wp-link .query-results { top: 256px !important; } #wp-link-wrap.search-panel-visible {height: 549px !important;}</style>').appendTo("head"),h.wrap=i("#wp-link-wrap"),h.dialog=i("#wp-link"),h.backdrop=i("#wp-link-backdrop"),h.submit=i("#wp-link-submit"),h.close=i("#wp-link-close"),h.tanfl=i("#aioseop-add-nofollow"),h.tanfl_sponsored=i("#aioseop-add-sponsored"),h.tanfl_ugc=i("#aioseop-add-ugc"),h.title=i("#wp-link-title"),h.text=i("#wp-link-text"),h.url=i("#wp-link-url"),h.nonce=i("#_ajax_linking_nonce"),h.openInNewTab=i("#wp-link-target"),h.search=i("#wp-link-search"),f.search=new o(i("#search-results")),f.recent=new o(i("#most-recent-results")),f.elements=h.dialog.find(".query-results"),h.queryNotice=i("#query-notice-message"),h.queryNoticeTextDefault=h.queryNotice.find(".query-notice-default"),h.queryNoticeTextHint=h.queryNotice.find(".query-notice-hint"),h.dialog.keydown(wpLink.keydown),h.dialog.keyup(wpLink.keyup),h.submit.click((function(e){e.preventDefault(),wpLink.update()})),h.close.add(h.backdrop).add("#wp-link-cancel button").click((function(e){e.preventDefault(),wpLink.close()})),f.elements.on("river-select",wpLink.updateFields),h.search.on("focus.wplink",(function(){h.queryNoticeTextDefault.hide(),h.queryNoticeTextHint.removeClass("screen-reader-text").show()})).on("blur.wplink",(function(){h.queryNoticeTextDefault.show(),h.queryNoticeTextHint.addClass("screen-reader-text").hide()})),h.search.on("keyup input",(function(){window.clearTimeout(s),s=window.setTimeout((function(){wpLink.searchInternalLinks()}),500)})),h.url.on("paste",(function(){setTimeout(wpLink.correctURL,0)})),h.url.on("blur",wpLink.correctURL)},correctURL:function(){var e=i.trim(h.url.val());e&&p!==e&&!/^(?:[a-z]+:|#|\?|\.|\/)/.test(e)&&(h.url.val("http://"+e),p=e)},open:function(e,t,n){var l=i(document.body);l.addClass("modal-open"),wpLink.modalOpen=!0,wpLink.range=null,e&&(window.wpActiveEditor=e),window.wpActiveEditor&&(this.textarea=i("#"+window.wpActiveEditor).get(0),void 0!==window.tinymce&&(l.append(h.backdrop,h.wrap),l=window.tinymce.get(window.wpActiveEditor),r=l&&!l.isHidden()?l:null),!wpLink.isMCE()&&document.selection&&(this.textarea.focus(),this.range=document.selection.createRange()),h.wrap.show(),h.backdrop.show(),wpLink.refresh(t,n),i(document).trigger("wplink-open",h.wrap))},isMCE:function(){return r&&!r.isHidden()},refresh:function(e,t){f.search.refresh(),f.recent.refresh(),wpLink.isMCE()?wpLink.mceRefresh(e,t):(h.wrap.hasClass("has-text-field")||h.wrap.addClass("has-text-field"),document.selection?document.selection.createRange().text:void 0!==this.textarea.selectionStart&&this.textarea.selectionStart!==this.textarea.selectionEnd&&(t=this.textarea.value.substring(this.textarea.selectionStart,this.textarea.selectionEnd)||t||""),h.text.val(t),wpLink.setDefaultValues()),k?h.url.focus().blur():window.setTimeout((function(){h.url[0].select(),h.url.focus()})),f.recent.ul.children().length||f.recent.ajax(),p=h.url.val().replace(/^http:\/\//,""),jQuery(".has-text-field #wp-link .query-results").css("margin-top",25)},hasSelectedText:function(e){var t,n,i,l=r.selection.getContent();if(/</.test(l)&&(!/^<a [^>]+>[^<]+<\/a>$/.test(l)||-1===l.indexOf("href=")))return!1;if(e.length){if(!(n=e[0].childNodes)||!n.length)return!1;for(i=n.length-1;0<=i;i--)if(3!=(t=n[i]).nodeType&&!window.tinymce.dom.BookmarkManager.isBookmarkNode(t))return!1}return!0},mceRefresh:function(e,t){var a,s,o=n(),c=this.hasSelectedText(o);o.length?(a=o.text(),s=o.attr("href"),i.trim(a)||(a=t||""),"_wp_link_placeholder"!==(s=e&&(u.test(e)||d.test(e))?e:s)?(h.url.val(s),h.openInNewTab.prop("checked","_blank"===o.attr("target")),h.submit.val(l.update)):this.setDefaultValues(a),e&&e!==s?(h.url.val(e),h.search.val(e)):h.search.val(""),0<=r.dom.getAttrib(o,"rel").indexOf("nofollow")?h.tanfl.prop("checked",!0):h.tanfl.prop("checked",!1),0<=r.dom.getAttrib(o,"rel").indexOf("sponsored")?h.tanfl_sponsored.prop("checked",!0):h.tanfl_sponsored.prop("checked",!1),0<=r.dom.getAttrib(o,"rel").indexOf("ugc")?h.tanfl_ugc.prop("checked",!0):h.tanfl_ugc.prop("checked",!1),h.title.val(r.dom.getAttrib(o,"title")),window.setTimeout((function(){wpLink.searchInternalLinks()}))):(a=r.selection.getContent({format:"text"})||t||"",this.setDefaultValues(a),h.url.val(e)),c?(h.text.val(a),h.wrap.addClass("has-text-field")):(h.text.val(""),h.wrap.removeClass("has-text-field"))},close:function(e){i(document.body).removeClass("modal-open"),wpLink.modalOpen=!1,"noReset"!==e&&(wpLink.isMCE()?(r.plugins.wplink&&r.plugins.wplink.close(),r.focus()):(wpLink.textarea.focus(),wpLink.range&&(wpLink.range.moveToBookmark(wpLink.range.getBookmark()),wpLink.range.select()))),h.backdrop.hide(),h.wrap.hide(),p=!1,i(document).trigger("wplink-close",h.wrap)},getAttrs:function(){wpLink.correctURL();var e="";return h.tanfl.prop("checked")&&(e+="nofollow "),h.tanfl_sponsored.prop("checked")&&(e+="sponsored "),h.tanfl_ugc.prop("checked")&&(e+="ugc"),{href:i.trim(h.url.val()),target:h.openInNewTab.prop("checked")?"_blank":null,rel:""!==e?e:null,title:""!==h.title.val()?i.trim(h.title.val()):null}},buildHtml:function(e){var t='<a href="'+e.href+'"';return e.title&&(title=e.title.replace(/</g,"<").replace(/>/g,">").replace(/"/g,"""),t+=' title="'+title+'"'),e.target?e.rel?t+=' rel="noopener '+e.rel+'" target="'+e.target+'"':t+=' rel="noopener" target="'+e.target+'"':e.rel&&(t+=' rel="'+e.rel+'"'),t+">"},update:function(){wpLink.isMCE()?wpLink.mceUpdate():wpLink.htmlUpdate()},htmlUpdate:function(){var e,t,n,r,s,o=wpLink.textarea;o&&(n=wpLink.getAttrs(),r=h.text.val(),(s=document.createElement("a")).href=n.href,"javascript:"!==s.protocol&&"data:"!==s.protocol||(n.href=""),n.href&&(e=wpLink.buildHtml(n),document.selection&&wpLink.range?(o.focus(),wpLink.range.text=e+(r||wpLink.range.text)+"</a>",wpLink.range.moveToBookmark(wpLink.range.getBookmark()),wpLink.range.select(),wpLink.range=null):void 0!==o.selectionStart&&(t=o.selectionStart,s=o.selectionEnd,r=t+(e=e+(n=r||o.value.substring(t,s))+"</a>").length,t!==s||n||(r-=4),o.value=o.value.substring(0,t)+e+o.value.substring(s,o.value.length),o.selectionStart=o.selectionEnd=r),wpLink.close(),o.focus(),i(o).trigger("change"),a.a11y.speak(l.linkInserted)))},mceUpdate:function(){var e,t,s,o=wpLink.getAttrs(),c=document.createElement("a");if(c.href=o.href,"javascript:"!==c.protocol&&"data:"!==c.protocol||(o.href=""),!o.href)return r.execCommand("unlink"),void wpLink.close();e=n(),r.undoManager.transact((function(){e.length||(r.execCommand("mceInsertLink",!1,{href:"_wp_link_placeholder","data-wp-temp-link":1}),e=r.$('a[data-wp-temp-link="1"]').removeAttr("data-wp-temp-link"),s=i.trim(e.text())),e.length?(h.wrap.hasClass("has-text-field")&&((t=h.text.val())?e.text(t):s||e.text(o.href)),o["data-wplink-edit"]=null,o["data-mce-href"]=o.href,e.attr(o)):r.execCommand("unlink")})),e=r.$('a[data-wplink-url-error="1"]').removeAttr("data-wplink-url-error"),wpLink.close("noReset"),r.focus(),e.length&&(r.selection.select(e[0]),r.plugins.wplink&&r.plugins.wplink.checkLink(e[0])),r.nodeChanged(),a.a11y.speak(l.linkInserted)},updateFields:function(e,t){h.url.val(t.children(".item-permalink").val()),h.title.val(t.hasClass("no-title")?"":t.children(".item-title").text()),h.wrap.hasClass("has-text-field")&&!h.text.val()&&h.text.val(t.children(".item-title").text())},getUrlFromSelection:function(e){return e||(this.isMCE()?e=r.selection.getContent({format:"text"}):document.selection&&wpLink.range?e=wpLink.range.text:void 0!==this.textarea.selectionStart&&(e=this.textarea.value.substring(this.textarea.selectionStart,this.textarea.selectionEnd))),(e=i.trim(e))&&d.test(e)?"mailto:"+e:e&&u.test(e)?e.replace(/&|�?38;/gi,"&"):""},setDefaultValues:function(e){h.url.val(this.getUrlFromSelection(e)),h.title.val(""),h.openInNewTab.prop("checked",!1),h.tanfl.prop("checked",!1),h.tanfl_sponsored.prop("checked",!1),h.tanfl_ugc.prop("checked",!1),h.search.val(""),wpLink.searchInternalLinks(),h.submit.val(l.save)},searchInternalLinks:function(){var e,t=h.search.val()||"",n=parseInt(l.minInputLength,10)||3;t.length>=n?(f.recent.hide(),f.search.show(),wpLink.lastSearch!=t&&(wpLink.lastSearch=t,e=h.search.parent().find(".spinner").addClass("is-active"),f.search.change(t),f.search.ajax((function(){e.removeClass("is-active")})))):(f.search.hide(),f.recent.show())},next:function(){f.search.next(),f.recent.next()},prev:function(){f.search.prev(),f.recent.prev()},keydown:function(e){var t;27===e.keyCode?(wpLink.close(),e.stopImmediatePropagation()):9===e.keyCode&&("wp-link-submit"!==(t=e.target.id)||e.shiftKey?"wp-link-close"===t&&e.shiftKey&&(h.submit.focus(),e.preventDefault()):(h.close.focus(),e.preventDefault())),e.shiftKey||38!==e.keyCode&&40!==e.keyCode||document.activeElement&&("link-title-field"===document.activeElement.id||"url-field"===document.activeElement.id)||(t=38===e.keyCode?"prev":"next",clearInterval(wpLink.keyInterval),wpLink[t](),wpLink.keyInterval=setInterval(wpLink[t],wpLink.keySensitivity),e.preventDefault())},keyup:function(e){38!==e.keyCode&&40!==e.keyCode||(clearInterval(wpLink.keyInterval),e.preventDefault())},delayedCallback:function(e,t){var n,i,l,a;return t?(setTimeout((function(){return i?e.apply(a,l):void(n=!0)}),t),function(){if(n)return e.apply(this,arguments);l=arguments,a=this,i=!0}):e}},o=function(e,t){var n=this;this.element=e,this.ul=e.children("ul"),this.contentHeight=e.children("#link-selector-height"),this.waiting=e.find(".river-waiting"),this.change(t),this.refresh(),i("#wp-link .query-results, #wp-link #link-selector").scroll((function(){n.maybeLoad()})),e.on("click","li",(function(e){n.select(i(this),e)}))},i.extend(o.prototype,{refresh:function(){this.deselect(),this.visible=this.element.is(":visible")},show:function(){this.visible||(this.deselect(),this.element.show(),this.visible=!0)},hide:function(){this.element.hide(),this.visible=!1},select:function(e,t){var n,i,l,a;e.hasClass("unselectable")||e==this.selected||(this.deselect(),this.selected=e.addClass("selected"),n=e.outerHeight(),i=this.element.height(),l=e.position().top,a=this.element.scrollTop(),l<0?this.element.scrollTop(a+l):i<l+n&&this.element.scrollTop(a+l-i+n),this.element.trigger("river-select",[e,t,this]))},deselect:function(){this.selected&&this.selected.removeClass("selected"),this.selected=!1},prev:function(){var e;this.visible&&this.selected&&(e=this.selected.prev("li")).length&&this.select(e)},next:function(){var e;!this.visible||(e=this.selected?this.selected.next("li"):i("li:not(.unselectable):first",this.element)).length&&this.select(e)},ajax:function(e){var t=this,n=1==this.query.page?0:wpLink.minRiverAJAXDuration;n=wpLink.delayedCallback((function(n,i){t.process(n,i),e&&e(n,i)}),n);this.query.ajax(n)},change:function(e){this.query&&this._search==e||(this._search=e,this.query=new c(e),this.element.scrollTop(0))},process:function(e,t){var n,a="",r=!0;t=1==t.page;e?i.each(e,(function(){n=r?"alternate":"",n+=this.title?"":" no-title",a+=n?'<li class="'+n+'">':"<li>",a+='<input type="hidden" class="item-permalink" value="'+this.permalink+'" />',a+='<span class="item-title">',a+=this.title||l.noTitle,a+='</span><span class="item-info">'+this.info+"</span></li>",r=!r})):t&&(a+='<li class="unselectable no-matches-found"><span class="item-title"><em>'+l.noMatchesFound+"</em></span></li>"),this.ul[t?"html":"append"](a)},maybeLoad:function(){var e=this,t=this.element,n=t.scrollTop()+t.height();!this.query.ready()||n<this.contentHeight.height()-wpLink.riverBottomThreshold||setTimeout((function(){var n=t.scrollTop(),i=n+t.height();!e.query.ready()||i<e.contentHeight.height()-wpLink.riverBottomThreshold||(e.waiting.addClass("is-active"),t.scrollTop(n+e.waiting.outerHeight()),e.ajax((function(){e.waiting.removeClass("is-active")})))}),wpLink.timeToTriggerRiver)}}),c=function(e){this.page=1,this.allLoaded=!1,this.querying=!1,this.search=e},i.extend(c.prototype,{ready:function(){return!(this.querying||this.allLoaded)},ajax:function(e){var t=this,n={action:"wp-link-ajax",page:this.page,_ajax_linking_nonce:h.nonce.val()};this.search&&(n.search=this.search),this.querying=!0,i.post(window.ajaxurl,n,(function(i){t.page++,t.querying=!1,t.allLoaded=!i,e(i,n)}),"json")}}),i(document).ready(wpLink.init)}});
|
dist/Lite/assets/js/link-format-classic.js.gz
CHANGED
Binary file
|
dist/Lite/assets/js/plugins.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1 |
-
/*! ! built on Tuesday, September
|
2 |
!function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=58)}({36:function(e,t){e.exports=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")},e.exports.default=e.exports,e.exports.__esModule=!0},37:function(e,t){function n(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}e.exports=function(e,t,r){return t&&n(e.prototype,t),r&&n(e,r),e},e.exports.default=e.exports,e.exports.__esModule=!0},58:function(e,t,n){"use strict";n.r(t);t=n(36);var r=n.n(t),o=(t=n(37),n.n(t));new(function(){function e(){r()(this,e),this.selector=document.querySelector('tr[data-plugin="'+window.aioseoPlugins.basename+'"]'),this.init()}return o()(e,[{key:"init",value:function(){var e;this.selector&&(this.selector.classList.add("aioseo-plugin-row"),(e=this.selector.querySelectorAll("span.proupgrade a, span.docs a, span.support a")).length&&e.forEach((function(e){e.setAttribute("target","_blank")})),(e=this.selector.querySelectorAll(".column-description .active a")).length&&e.forEach((function(e){e.setAttribute("target","_blank")})))}}]),e}())}});
|
1 |
+
/*! ! built on Tuesday, September 21st 2021, 9:50:25 pm */
|
2 |
!function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=58)}({36:function(e,t){e.exports=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")},e.exports.default=e.exports,e.exports.__esModule=!0},37:function(e,t){function n(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}e.exports=function(e,t,r){return t&&n(e.prototype,t),r&&n(e,r),e},e.exports.default=e.exports,e.exports.__esModule=!0},58:function(e,t,n){"use strict";n.r(t);t=n(36);var r=n.n(t),o=(t=n(37),n.n(t));new(function(){function e(){r()(this,e),this.selector=document.querySelector('tr[data-plugin="'+window.aioseoPlugins.basename+'"]'),this.init()}return o()(e,[{key:"init",value:function(){var e;this.selector&&(this.selector.classList.add("aioseo-plugin-row"),(e=this.selector.querySelectorAll("span.proupgrade a, span.docs a, span.support a")).length&&e.forEach((function(e){e.setAttribute("target","_blank")})),(e=this.selector.querySelectorAll(".column-description .active a")).length&&e.forEach((function(e){e.setAttribute("target","_blank")})))}}]),e}())}});
|
dist/Lite/assets/js/plugins.js.gz
CHANGED
Binary file
|
languages/aioseo-lite.php
CHANGED
@@ -4,8 +4,18 @@ $generated_i18n_strings = array(
|
|
4 |
// Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Archives.vue:49
|
5 |
__( '404', 'all-in-one-seo-pack' ),
|
6 |
|
7 |
-
// Reference: src/vue/pages/
|
8 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
|
10 |
// Reference: src/vue/pages/social-networks/router/paths.js:19
|
11 |
__( 'Social Profiles', 'all-in-one-seo-pack' ),
|
@@ -19,29 +29,32 @@ $generated_i18n_strings = array(
|
|
19 |
// Reference: src/vue/pages/social-networks/router/paths.js:46
|
20 |
__( 'Pinterest', 'all-in-one-seo-pack' ),
|
21 |
|
22 |
-
// Reference: src/vue/pages/
|
23 |
-
// Reference: src/vue/pages/
|
24 |
-
|
25 |
-
|
26 |
-
// Reference: src/vue/pages/feature-manager/views/Main.vue:20
|
27 |
-
__( 'Feature Manager', 'all-in-one-seo-pack' ),
|
28 |
|
29 |
-
// Reference: src/vue/pages/
|
30 |
-
__( '
|
31 |
|
32 |
-
// Reference: src/vue/pages/
|
33 |
-
|
|
|
34 |
|
35 |
-
// Reference: src/vue/
|
36 |
-
|
|
|
37 |
|
38 |
-
// Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:
|
39 |
-
|
|
|
40 |
|
41 |
-
// Reference: src/vue/pages/
|
42 |
-
|
|
|
43 |
|
44 |
-
// Reference: src/vue/pages/
|
|
|
45 |
__( 'Advanced', 'all-in-one-seo-pack' ),
|
46 |
|
47 |
// Reference: src/vue/pages/local-business-seo/blocks/LocationCategories.js:30
|
@@ -57,21 +70,25 @@ $generated_i18n_strings = array(
|
|
57 |
// Reference: src/vue/pages/local-business-seo/blocks/LocationMap.js:117
|
58 |
__( 'No %s found', 'all-in-one-seo-pack' ),
|
59 |
|
60 |
-
// Reference: src/vue/pages/local-business-seo/blocks/OpeningHours.js:207
|
61 |
-
__( 'Display Settings', 'all-in-one-seo-pack' ),
|
62 |
-
|
63 |
// Reference: src/vue/pages/local-business-seo/blocks/LocationMap.js:212
|
64 |
__( 'Select a %s', 'all-in-one-seo-pack' ),
|
65 |
|
66 |
-
// Reference: src/vue/pages/local-business-seo/blocks/BusinessInfo.js:46
|
67 |
-
/* Translators: 1 - AIOSEO. */
|
68 |
-
__( '%1$s Local - Business Info', 'all-in-one-seo-pack' ),
|
69 |
-
|
70 |
// Reference: src/vue/pages/local-business-seo/blocks/Locations.js:46
|
71 |
/* Translators: 1 - AIOSEO. */
|
72 |
__( '%1$s Local - Locations', 'all-in-one-seo-pack' ),
|
73 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
74 |
// Reference: src/vue/pages/local-business-seo/blocks/LocationMap.js:192
|
|
|
75 |
__( 'Settings', 'all-in-one-seo-pack' ),
|
76 |
|
77 |
// Reference: src/vue/pages/local-business-seo/blocks/LocationMap.js:227
|
@@ -85,38 +102,56 @@ $generated_i18n_strings = array(
|
|
85 |
/* Translators: 1 - AIOSEO. */
|
86 |
__( '%1$s Local - Opening Hours', 'all-in-one-seo-pack' ),
|
87 |
|
88 |
-
// Reference: src/vue/standalone/publish-panel/PrePublish.vue:153
|
89 |
-
__( 'N/A', 'all-in-one-seo-pack' ),
|
90 |
-
|
91 |
// Reference: src/vue/pages/local-seo/router/paths.js:19
|
92 |
__( 'Locations', 'all-in-one-seo-pack' ),
|
93 |
|
94 |
-
// Reference: src/vue/pages/local-seo/
|
95 |
__( 'Opening Hours', 'all-in-one-seo-pack' ),
|
96 |
|
97 |
-
// Reference: src/vue/pages/local-seo/
|
98 |
__( 'Maps', 'all-in-one-seo-pack' ),
|
99 |
|
100 |
-
// Reference: src/vue/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
101 |
__( 'Title:', 'all-in-one-seo-pack' ),
|
102 |
|
103 |
-
// Reference: src/vue/
|
104 |
__( 'Description:', 'all-in-one-seo-pack' ),
|
105 |
|
106 |
-
// Reference: src/vue/pages/
|
|
|
|
|
|
|
|
|
|
|
|
|
107 |
__( 'Edit', 'all-in-one-seo-pack' ),
|
108 |
|
109 |
-
// Reference: src/vue/pages/posts-table/
|
110 |
__( 'Save', 'all-in-one-seo-pack' ),
|
111 |
|
112 |
-
// Reference: src/vue/pages/posts-table/
|
113 |
__( 'Cancel', 'all-in-one-seo-pack' ),
|
114 |
|
115 |
-
// Reference: src/vue/pages/posts-table/
|
116 |
__( 'Please wait...', 'all-in-one-seo-pack' ),
|
117 |
|
118 |
-
// Reference: src/vue/
|
119 |
-
__( '
|
120 |
|
121 |
// Reference: src/vue/standalone/publish-panel/PrePublish.vue:148
|
122 |
__( 'Blocked!', 'all-in-one-seo-pack' ),
|
@@ -140,6 +175,7 @@ $generated_i18n_strings = array(
|
|
140 |
// Reference: src/vue/pages/post-settings/views/General.vue:283
|
141 |
__( 'Snippet Preview', 'all-in-one-seo-pack' ),
|
142 |
|
|
|
143 |
// Reference: src/vue/standalone/publish-panel/PrePublish.vue:72
|
144 |
__( 'Canonical URL', 'all-in-one-seo-pack' ),
|
145 |
|
@@ -147,326 +183,258 @@ $generated_i18n_strings = array(
|
|
147 |
__( 'Visibility', 'all-in-one-seo-pack' ),
|
148 |
|
149 |
// Reference: src/vue/pages/dashboard/views/Main.vue:226
|
150 |
-
// Reference: src/vue/pages/
|
151 |
__( 'SEO Analysis', 'all-in-one-seo-pack' ),
|
152 |
|
153 |
// Reference: src/vue/pages/post-settings/views/General.vue:296
|
154 |
__( 'Readability', 'all-in-one-seo-pack' ),
|
155 |
|
156 |
-
// Reference: src/vue/pages/post-settings/views/
|
157 |
__( 'Focus Keyphrase', 'all-in-one-seo-pack' ),
|
158 |
|
159 |
-
// Reference: src/vue/
|
160 |
-
|
|
|
161 |
|
162 |
-
// Reference: src/vue/pages/
|
163 |
-
__( '
|
164 |
|
165 |
-
// Reference: src/vue/pages/
|
166 |
-
__( '
|
167 |
|
168 |
-
// Reference: src/vue/pages/
|
169 |
-
__( '
|
170 |
|
171 |
-
// Reference: src/vue/pages/
|
172 |
-
__( '
|
173 |
|
174 |
-
// Reference: src/vue/pages/
|
175 |
-
__( '
|
176 |
|
177 |
-
// Reference: src/vue/pages/local-business-seo/blocks/
|
178 |
-
__( '
|
179 |
|
180 |
-
// Reference: src/vue/pages/local-business-seo/blocks/
|
181 |
-
__( '
|
182 |
|
183 |
-
// Reference: src/vue/pages/
|
184 |
-
__( '
|
185 |
|
186 |
-
// Reference: src/vue/pages/
|
187 |
-
|
|
|
|
|
|
|
188 |
|
189 |
-
// Reference: src/vue/pages/
|
190 |
-
|
|
|
|
|
191 |
|
192 |
-
// Reference: src/vue/
|
193 |
-
__( '
|
194 |
|
195 |
-
// Reference: src/vue/
|
196 |
-
|
197 |
-
__( 'Upload or Select Image', 'all-in-one-seo-pack' ),
|
198 |
|
199 |
-
// Reference: src/vue/
|
200 |
-
|
201 |
-
__( 'Paste your image URL or select a new image', 'all-in-one-seo-pack' ),
|
202 |
|
203 |
-
// Reference: src/vue/
|
204 |
-
__( '
|
205 |
|
206 |
-
// Reference: src/vue/
|
207 |
-
__( '
|
208 |
|
209 |
-
// Reference: src/vue/pages/
|
210 |
-
__( '
|
211 |
|
212 |
-
// Reference: src/vue/pages/
|
213 |
-
|
214 |
-
__( 'This is what your page configured with %1$s will look like when shared via Facebook. The site title and description will be automatically added.', 'all-in-one-seo-pack' ),
|
215 |
|
216 |
-
// Reference: src/vue/pages/
|
217 |
-
__( '
|
218 |
|
219 |
-
// Reference: src/vue/pages/
|
220 |
-
__( '
|
221 |
|
222 |
-
// Reference: src/vue/
|
223 |
-
|
|
|
|
|
224 |
|
225 |
-
// Reference: src/vue/pages/
|
226 |
-
__( '
|
227 |
|
228 |
-
// Reference: src/vue/pages/
|
229 |
-
|
230 |
-
__( 'Click on the tags below to insert variables into your site name.', 'all-in-one-seo-pack' ),
|
231 |
|
232 |
-
// Reference: src/vue/pages/
|
233 |
-
__( '
|
234 |
|
235 |
-
// Reference: src/vue/pages/
|
236 |
-
__( '
|
237 |
|
238 |
-
// Reference: src/vue/pages/
|
239 |
-
__( '
|
240 |
|
241 |
-
// Reference: src/vue/pages/
|
242 |
-
__( '
|
243 |
|
244 |
-
// Reference: src/vue/pages/
|
245 |
-
|
246 |
-
__( 'Remove', 'all-in-one-seo-pack' ),
|
247 |
|
248 |
-
// Reference: src/vue/
|
249 |
-
|
250 |
-
__( 'Advanced Settings', 'all-in-one-seo-pack' ),
|
251 |
|
252 |
-
// Reference: src/vue/pages/
|
253 |
-
__( '
|
254 |
|
255 |
-
// Reference: src/vue/pages/
|
256 |
-
__( '
|
257 |
|
258 |
-
// Reference: src/vue/pages/
|
259 |
-
__( '
|
260 |
|
261 |
-
// Reference: src/vue/pages/
|
262 |
-
__( '
|
263 |
|
264 |
-
// Reference: src/vue/pages/
|
265 |
-
__( '
|
266 |
|
267 |
-
// Reference: src/vue/pages/
|
268 |
-
__( '
|
269 |
|
270 |
-
// Reference: src/vue/pages/
|
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 |
-
__( 'Default Taxonomy Object Types are only available for licensed %1$s users. %2$s', 'all-in-one-seo-pack' ),
|
291 |
|
292 |
-
// Reference: src/vue/pages/
|
293 |
-
|
294 |
-
|
|
|
295 |
|
296 |
-
// Reference: src/vue/pages/
|
297 |
-
__( '
|
298 |
|
299 |
-
// Reference: src/vue/pages/
|
300 |
-
__( '
|
301 |
-
|
302 |
-
// Reference: src/vue/pages/social-networks/views/Facebook.vue:725
|
303 |
-
__( 'Use Categories in Article Tags', 'all-in-one-seo-pack' ),
|
304 |
-
|
305 |
-
// Reference: src/vue/pages/social-networks/views/Facebook.vue:726
|
306 |
-
__( 'Use Post Tags in Article Tags', 'all-in-one-seo-pack' ),
|
307 |
-
|
308 |
-
// Reference: src/vue/pages/social-networks/views/Facebook.vue:728
|
309 |
-
/* Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag. */
|
310 |
-
__( 'The home page settings below have been disabled because you are using a static home page. You can %1$sedit your home page settings%2$s directly to change the title, meta and image.', 'all-in-one-seo-pack' ),
|
311 |
-
|
312 |
-
// Reference: src/vue/pages/post-settings/views/Facebook.vue:244
|
313 |
-
// Reference: src/vue/pages/social-networks/views/Facebook.vue:729
|
314 |
-
__( 'Object Type', 'all-in-one-seo-pack' ),
|
315 |
-
|
316 |
-
// Reference: src/vue/pages/local-business-seo/views/BusinessInfo.vue:117
|
317 |
-
__( 'Address', 'all-in-one-seo-pack' ),
|
318 |
-
|
319 |
-
// Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:323
|
320 |
-
__( 'Phone Number', 'all-in-one-seo-pack' ),
|
321 |
-
|
322 |
-
// Reference: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:102
|
323 |
-
__( 'Fax Number', 'all-in-one-seo-pack' ),
|
324 |
-
|
325 |
-
// Reference: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:103
|
326 |
-
__( 'Email Address', 'all-in-one-seo-pack' ),
|
327 |
-
|
328 |
-
// Reference: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:104
|
329 |
-
__( 'Show VAT ID', 'all-in-one-seo-pack' ),
|
330 |
-
|
331 |
-
// Reference: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:105
|
332 |
-
__( 'Show Tax ID', 'all-in-one-seo-pack' ),
|
333 |
-
|
334 |
-
// Reference: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:106
|
335 |
-
__( 'Phone/Fax Country Code', 'all-in-one-seo-pack' ),
|
336 |
-
|
337 |
-
// Reference: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:96
|
338 |
-
__( 'Show labels', 'all-in-one-seo-pack' ),
|
339 |
-
|
340 |
-
// Reference: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:97
|
341 |
-
__( 'Show icons', 'all-in-one-seo-pack' ),
|
342 |
-
|
343 |
-
// Reference: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:92
|
344 |
-
// Reference: src/vue/pages/local-business-seo/views/BusinessInfo.vue:109
|
345 |
-
__( 'Business Info', 'all-in-one-seo-pack' ),
|
346 |
-
|
347 |
-
// Reference: src/vue/pages/local-business-seo/views/BusinessInfo.vue:110
|
348 |
-
// Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:321
|
349 |
-
__( 'Name', 'all-in-one-seo-pack' ),
|
350 |
-
|
351 |
-
// Reference: src/vue/pages/setup-wizard/views/Success.vue:150
|
352 |
-
__( 'Video and News Sitemaps', 'all-in-one-seo-pack' ),
|
353 |
|
354 |
-
// Reference: src/vue/pages/
|
355 |
-
__( '
|
356 |
|
357 |
-
// Reference: src/vue/pages/
|
358 |
-
__( '
|
359 |
|
360 |
-
// Reference: src/vue/pages/
|
361 |
-
__( '
|
362 |
|
363 |
-
// Reference: src/vue/pages/about/views/
|
364 |
-
__( '
|
365 |
|
366 |
-
// Reference: src/vue/
|
367 |
-
__( '
|
368 |
|
369 |
-
// Reference: src/vue/pages/
|
370 |
-
__( '
|
371 |
|
372 |
-
// Reference: src/vue/pages/
|
373 |
-
__( '
|
374 |
|
375 |
-
// Reference: src/vue/pages/
|
376 |
-
|
|
|
377 |
|
378 |
-
// Reference: src/vue/pages/
|
379 |
/* Translators: 1 - The plugin name ("All in One SEO"). */
|
380 |
-
__( '
|
381 |
-
|
382 |
-
// Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:152
|
383 |
-
__( 'Upgrade to Pro and Unlock All Features', 'all-in-one-seo-pack' ),
|
384 |
-
|
385 |
-
// Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:153
|
386 |
-
__( 'A valid license key is required in order to use our addons.', 'all-in-one-seo-pack' ),
|
387 |
-
|
388 |
-
// Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:154
|
389 |
-
__( 'Enter License Key', 'all-in-one-seo-pack' ),
|
390 |
-
|
391 |
-
// Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:155
|
392 |
-
__( 'Purchase License', 'all-in-one-seo-pack' ),
|
393 |
|
394 |
-
// Reference: src/vue/pages/
|
395 |
-
__( '
|
396 |
|
397 |
-
// Reference: src/vue/pages/
|
398 |
-
__( '
|
399 |
|
400 |
-
// Reference: src/vue/pages/
|
401 |
-
|
|
|
402 |
|
403 |
-
// Reference: src/vue/pages/
|
404 |
-
|
|
|
405 |
|
406 |
-
// Reference: src/vue/pages/about/views/
|
407 |
-
/* Translators: 1 -
|
408 |
-
__( '%1$
|
409 |
|
410 |
-
// Reference: src/vue/
|
411 |
-
__( '
|
412 |
|
413 |
-
// Reference: src/vue/pages/local-seo/views/OpeningHours.vue:
|
|
|
414 |
__( 'Opening Hours Settings', 'all-in-one-seo-pack' ),
|
415 |
|
416 |
-
// Reference: src/vue/pages/local-
|
417 |
-
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:276
|
418 |
-
// Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:219
|
419 |
-
// Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:295
|
420 |
__( 'Show Opening Hours', 'all-in-one-seo-pack' ),
|
421 |
|
422 |
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:283
|
423 |
// Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:220
|
424 |
-
// Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:296
|
425 |
__( 'Display Opening Hours', 'all-in-one-seo-pack' ),
|
426 |
|
427 |
// Reference: src/vue/pages/local-business-seo/views/OpeningHours.vue:175
|
428 |
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:284
|
429 |
// Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:221
|
430 |
-
// Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:297
|
431 |
__( 'Labels', 'all-in-one-seo-pack' ),
|
432 |
|
433 |
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:285
|
434 |
-
// Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:298
|
435 |
__( 'Closed label', 'all-in-one-seo-pack' ),
|
436 |
|
437 |
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:286
|
438 |
-
// Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:299
|
439 |
__( 'Text to display when \'Closed\' setting is checked', 'all-in-one-seo-pack' ),
|
440 |
|
441 |
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:287
|
442 |
// Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:226
|
443 |
-
// Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:300
|
444 |
__( 'Open 24h label', 'all-in-one-seo-pack' ),
|
445 |
|
446 |
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:288
|
447 |
-
// Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:301
|
448 |
__( 'Text to display when \'Open 24h\' setting is checked', 'all-in-one-seo-pack' ),
|
449 |
|
450 |
// Reference: src/vue/pages/local-business-seo/views/OpeningHours.vue:183
|
451 |
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:289
|
452 |
// Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:229
|
453 |
-
// Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:302
|
454 |
__( 'Open 24/7', 'all-in-one-seo-pack' ),
|
455 |
|
456 |
// Reference: src/vue/pages/local-business-seo/views/OpeningHours.vue:184
|
457 |
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:290
|
458 |
// Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:230
|
459 |
-
// Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:303
|
460 |
__( 'Use 24h format', 'all-in-one-seo-pack' ),
|
461 |
|
462 |
// Reference: src/vue/pages/local-business-seo/views/OpeningHours.vue:186
|
463 |
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:291
|
464 |
// Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:231
|
465 |
-
// Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:304
|
466 |
__( 'Timezone', 'all-in-one-seo-pack' ),
|
467 |
|
468 |
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:292
|
469 |
-
// Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:305
|
470 |
__( 'Select your timezone:', 'all-in-one-seo-pack' ),
|
471 |
|
472 |
// Reference: src/vue/pages/local-business-seo/blocks/OpeningHoursSidebar.vue:88
|
@@ -493,3213 +461,3200 @@ $generated_i18n_strings = array(
|
|
493 |
// Reference: src/vue/pages/local-business-seo/views/OpeningHours.vue:181
|
494 |
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:301
|
495 |
// Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:234
|
496 |
-
// Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:314
|
497 |
__( 'Open 24h', 'all-in-one-seo-pack' ),
|
498 |
|
499 |
// Reference: src/vue/pages/local-business-seo/views/OpeningHours.vue:178
|
500 |
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:302
|
501 |
// Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:235
|
502 |
-
// Reference: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:315
|
503 |
__( 'Closed', 'all-in-one-seo-pack' ),
|
504 |
|
505 |
-
// Reference: src/vue/
|
506 |
-
|
507 |
-
__( 'Step %1$s of %2$s', 'all-in-one-seo-pack' ),
|
508 |
-
|
509 |
-
// Reference: src/vue/components/common/Cta.vue:236
|
510 |
-
/* Translators: 1 - "Pro". */
|
511 |
-
__( 'Upgrade to %1$s', 'all-in-one-seo-pack' ),
|
512 |
-
|
513 |
-
// Reference: src/vue/components/common/Cta.vue:238
|
514 |
-
/* Translators: 1 - The plugin name ("All in One SEO"). */
|
515 |
-
__( 'This feature is only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
|
516 |
-
|
517 |
-
// Reference: src/vue/components/common/Cta.vue:241
|
518 |
-
__( 'Learn more about all features', 'all-in-one-seo-pack' ),
|
519 |
|
520 |
-
// Reference: src/vue/
|
521 |
-
__( '
|
522 |
|
523 |
-
// Reference: src/vue/pages/local-seo/views/pro/
|
524 |
-
__( '
|
525 |
|
526 |
-
// Reference: src/vue/pages/local-seo/views/pro/
|
527 |
-
__( '
|
528 |
|
529 |
-
// Reference: src/vue/pages/local-
|
530 |
-
|
531 |
-
__( 'Type', 'all-in-one-seo-pack' ),
|
532 |
|
533 |
-
// Reference: src/vue/pages/local-
|
534 |
-
__( '
|
535 |
|
536 |
-
// Reference: src/vue/pages/local-
|
537 |
-
__( '
|
538 |
|
539 |
-
// Reference: src/vue/pages/local-
|
540 |
-
__( '
|
541 |
|
542 |
-
// Reference: src/vue/pages/
|
543 |
-
__( '
|
544 |
|
545 |
-
// Reference: src/vue/pages/local-seo/views/
|
546 |
-
|
547 |
-
__( 'Upgrade to Pro and Unlock Local SEO', 'all-in-one-seo-pack' ),
|
548 |
|
549 |
-
// Reference: src/vue/pages/local-seo/views/
|
550 |
-
|
551 |
-
/* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro". */
|
552 |
-
__( 'Local SEO is only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
|
553 |
|
554 |
-
// Reference: src/vue/pages/local-seo/views/
|
555 |
-
__( '
|
556 |
|
557 |
-
// Reference: src/vue/pages/local-seo/views/pro/
|
558 |
-
__( '
|
559 |
|
560 |
-
// Reference: src/vue/pages/local-seo/views/
|
561 |
-
__( '
|
562 |
|
563 |
-
// Reference: src/vue/pages/local-seo/views/
|
564 |
-
__( '
|
565 |
|
566 |
-
// Reference: src/vue/
|
567 |
-
__( '
|
568 |
|
569 |
-
// Reference: src/vue/
|
570 |
-
|
571 |
-
// Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:232
|
572 |
-
__( 'Select your timezone', 'all-in-one-seo-pack' ),
|
573 |
|
574 |
-
// Reference: src/vue/
|
575 |
-
__( '
|
576 |
|
577 |
-
// Reference: src/vue/
|
578 |
-
__( '
|
579 |
|
580 |
-
// Reference: src/vue/
|
581 |
-
__( '
|
582 |
|
583 |
-
// Reference: src/vue/
|
584 |
-
__( '
|
585 |
|
586 |
-
// Reference: src/vue/
|
587 |
-
__( '
|
588 |
|
589 |
-
// Reference: src/vue/
|
590 |
-
__( '
|
591 |
|
592 |
-
// Reference: src/vue/
|
593 |
-
__( '
|
594 |
|
595 |
-
// Reference: src/vue/
|
596 |
-
__( '
|
597 |
|
598 |
-
// Reference: src/vue/
|
599 |
-
__( '
|
600 |
|
601 |
// Reference: src/vue/pages/dashboard/views/Main.vue:233
|
|
|
|
|
602 |
__( 'Sitemaps', 'all-in-one-seo-pack' ),
|
603 |
|
604 |
-
// Reference: src/vue/
|
605 |
-
__( '
|
606 |
-
|
607 |
-
// Reference: src/vue/pages/tools/views/BadBotBlocker.vue:89
|
608 |
-
__( 'Bad Bot Blocker', 'all-in-one-seo-pack' ),
|
609 |
|
610 |
-
// Reference: src/vue/
|
611 |
-
|
612 |
-
__( 'Image SEO', 'all-in-one-seo-pack' ),
|
613 |
|
614 |
-
// Reference: src/vue/
|
615 |
-
|
616 |
-
__( 'Redirects', 'all-in-one-seo-pack' ),
|
617 |
|
618 |
-
// Reference: src/vue/
|
619 |
-
|
620 |
-
|
621 |
-
// Reference: src/vue/mixins/SeoSiteScore.js:11
|
622 |
-
__( 'to see your Site Score.', 'all-in-one-seo-pack' ),
|
623 |
|
624 |
-
// Reference: src/vue/
|
625 |
-
__( 'to
|
626 |
|
627 |
-
// Reference: src/vue/
|
628 |
-
__( '
|
629 |
|
630 |
-
// Reference: src/vue/
|
631 |
-
|
632 |
-
__( 'Connect with %1$s', 'all-in-one-seo-pack' ),
|
633 |
|
634 |
-
// Reference: src/vue/
|
635 |
-
|
636 |
-
__( 'We\'ve got some%1$swork to do!', 'all-in-one-seo-pack' ),
|
637 |
|
638 |
-
// Reference: src/vue/
|
639 |
-
|
640 |
-
__( 'Needs%1$sImprovement!', 'all-in-one-seo-pack' ),
|
641 |
|
642 |
-
// Reference: src/vue/
|
643 |
-
__( '
|
644 |
|
645 |
-
// Reference: src/vue/
|
646 |
-
__( '
|
647 |
|
648 |
-
// Reference: src/vue/
|
649 |
-
__( '
|
650 |
|
651 |
-
// Reference: src/vue/
|
652 |
-
__( '
|
653 |
|
654 |
-
// Reference: src/vue/
|
655 |
-
__( '
|
656 |
|
657 |
-
// Reference: src/vue/
|
658 |
-
__( '
|
659 |
|
660 |
-
// Reference: src/vue/
|
661 |
-
__( '
|
662 |
|
663 |
-
// Reference: src/vue/
|
664 |
-
__( '
|
665 |
|
666 |
-
// Reference: src/vue/
|
667 |
-
__( '
|
668 |
|
669 |
-
// Reference: src/vue/
|
670 |
-
__( '
|
671 |
|
672 |
-
// Reference: src/vue/
|
673 |
-
__( '
|
674 |
|
675 |
-
// Reference: src/vue/
|
676 |
-
__( '
|
677 |
|
678 |
-
// Reference: src/vue/
|
679 |
-
__( '
|
680 |
|
681 |
-
// Reference: src/vue/
|
682 |
-
__( '
|
683 |
|
684 |
-
// Reference: src/vue/
|
685 |
-
__( '
|
686 |
|
687 |
-
// Reference: src/vue/
|
688 |
-
|
|
|
689 |
|
690 |
-
// Reference: src/vue/
|
691 |
-
__( '
|
692 |
|
693 |
-
// Reference: src/vue/
|
694 |
-
|
695 |
-
__( '%1$s out of %2$s max recommended characters.', 'all-in-one-seo-pack' ),
|
696 |
|
697 |
-
// Reference: src/vue/
|
698 |
-
__( '
|
699 |
|
700 |
-
// Reference: src/vue/
|
701 |
-
|
|
|
702 |
|
703 |
-
// Reference: src/vue/
|
704 |
-
__( '
|
705 |
|
706 |
-
// Reference: src/vue/
|
707 |
-
__( '
|
708 |
|
709 |
-
// Reference: src/vue/
|
710 |
-
__( '
|
711 |
|
712 |
-
// Reference: src/vue/
|
713 |
-
__( '
|
714 |
|
715 |
-
// Reference: src/vue/
|
716 |
-
__( '
|
717 |
|
718 |
-
// Reference: src/vue/
|
719 |
-
__( '
|
720 |
|
721 |
-
// Reference: src/vue/
|
722 |
-
__( '
|
723 |
|
724 |
-
// Reference: src/vue/
|
725 |
-
__( '
|
726 |
|
727 |
-
// Reference: src/vue/
|
728 |
-
__( '
|
729 |
|
730 |
-
// Reference: src/vue/
|
731 |
-
__( '
|
732 |
|
733 |
-
// Reference: src/vue/
|
734 |
-
__( '
|
735 |
|
736 |
-
// Reference: src/vue/
|
737 |
-
__( '
|
738 |
|
739 |
-
// Reference: src/vue/
|
740 |
-
__( '
|
741 |
|
742 |
-
// Reference: src/vue/
|
743 |
-
|
744 |
-
// Reference: src/vue/pages/redirects/views/pro/Redirects.vue:233
|
745 |
-
__( 'Delete', 'all-in-one-seo-pack' ),
|
746 |
|
747 |
-
// Reference: src/vue/
|
748 |
-
__( '
|
749 |
|
750 |
-
// Reference: src/vue/
|
751 |
-
__( '
|
752 |
|
753 |
-
// Reference: src/vue/
|
754 |
-
|
755 |
-
__( 'minutes ago', 'all-in-one-seo-pack' ),
|
756 |
|
757 |
-
// Reference: src/vue/
|
758 |
-
__( '
|
759 |
|
760 |
-
// Reference: src/vue/
|
761 |
-
|
762 |
-
__( 'days ago', 'all-in-one-seo-pack' ),
|
763 |
|
764 |
-
// Reference: src/vue/
|
765 |
-
__( '
|
766 |
|
767 |
-
// Reference: src/vue/
|
768 |
-
|
769 |
-
__( 'months ago', 'all-in-one-seo-pack' ),
|
770 |
|
771 |
-
// Reference: src/vue/
|
772 |
-
__( '
|
773 |
|
774 |
-
// Reference: src/vue/
|
775 |
-
|
776 |
-
__( 'years ago', 'all-in-one-seo-pack' ),
|
777 |
|
778 |
-
// Reference: src/vue/
|
779 |
-
__( '
|
780 |
|
781 |
-
// Reference: src/vue/
|
782 |
-
__( '
|
783 |
|
784 |
-
// Reference: src/vue/
|
785 |
-
__( '
|
786 |
|
787 |
-
// Reference: src/vue/
|
788 |
-
__( '
|
789 |
|
790 |
-
// Reference: src/vue/
|
791 |
-
__( '
|
792 |
|
793 |
-
// Reference: src/vue/
|
794 |
-
__( '
|
795 |
|
796 |
-
// Reference: src/vue/
|
797 |
-
|
|
|
798 |
|
799 |
-
// Reference: src/vue/
|
800 |
-
|
801 |
-
__( 'Browse documentation, reference material, and tutorials for %1$s.', 'all-in-one-seo-pack' ),
|
802 |
|
803 |
-
// Reference: src/vue/
|
804 |
-
__( '
|
805 |
|
806 |
-
// Reference: src/vue/
|
807 |
-
__( '
|
808 |
|
809 |
-
// Reference: src/vue/
|
810 |
-
__( '
|
811 |
|
812 |
-
// Reference: src/vue/
|
813 |
-
__( '
|
814 |
|
815 |
-
// Reference: src/vue/
|
816 |
-
__( '
|
817 |
|
818 |
-
// Reference: src/vue/
|
819 |
-
__( '
|
820 |
|
821 |
-
// Reference: src/vue/
|
822 |
-
|
823 |
-
__( 'Welcome to %1$s', 'all-in-one-seo-pack' ),
|
824 |
|
825 |
-
// Reference: src/vue/
|
826 |
-
|
827 |
-
__( '
|
828 |
|
829 |
-
// Reference: src/vue/
|
830 |
-
|
|
|
831 |
|
832 |
-
// Reference: src/vue/
|
833 |
-
__( '
|
834 |
|
835 |
-
// Reference: src/vue/
|
836 |
-
__( '
|
837 |
|
838 |
-
// Reference: src/vue/
|
839 |
-
__( '
|
840 |
|
841 |
-
// Reference: src/vue/
|
842 |
-
|
843 |
-
__( 'Copied!', 'all-in-one-seo-pack' ),
|
844 |
|
845 |
-
// Reference: src/vue/
|
846 |
-
__( '
|
847 |
|
848 |
-
// Reference: src/vue/
|
849 |
-
__( '
|
850 |
|
851 |
-
// Reference: src/vue/
|
852 |
-
__( '
|
853 |
|
854 |
-
// Reference: src/vue/
|
855 |
-
__( '
|
856 |
|
857 |
-
// Reference: src/vue/
|
858 |
-
__( '
|
859 |
|
860 |
-
// Reference: src/vue/
|
861 |
-
__( '
|
862 |
|
863 |
-
// Reference: src/vue/
|
864 |
-
|
865 |
-
__( 'Post Types', 'all-in-one-seo-pack' ),
|
866 |
|
867 |
-
// Reference: src/vue/
|
868 |
-
|
869 |
-
// Reference: src/vue/standalone/HtmlSitemapSidebar.vue:116
|
870 |
-
__( 'Taxonomies', 'all-in-one-seo-pack' ),
|
871 |
|
872 |
-
// Reference: src/vue/
|
873 |
-
|
874 |
-
__( 'Priority', 'all-in-one-seo-pack' ),
|
875 |
|
876 |
-
// Reference: src/vue/
|
877 |
-
|
878 |
-
__( 'Frequency', 'all-in-one-seo-pack' ),
|
879 |
|
880 |
-
// Reference: src/vue/
|
881 |
-
__( '
|
882 |
|
883 |
-
// Reference: src/vue/
|
884 |
-
__( '
|
885 |
|
886 |
-
// Reference: src/vue/
|
887 |
-
__( '
|
888 |
|
889 |
-
// Reference: src/vue/
|
890 |
-
__( '
|
891 |
|
892 |
-
// Reference: src/vue/
|
893 |
-
__( '
|
894 |
|
895 |
-
// Reference: src/vue/
|
896 |
-
__( '
|
897 |
|
898 |
-
// Reference: src/vue/
|
899 |
-
__( '
|
900 |
|
901 |
-
// Reference: src/vue/
|
902 |
-
__( '
|
903 |
|
904 |
-
// Reference: src/vue/
|
905 |
-
__( '
|
906 |
|
907 |
-
// Reference: src/vue/
|
908 |
-
__( '
|
909 |
|
910 |
-
// Reference: src/vue/
|
911 |
-
__( '
|
912 |
|
913 |
-
// Reference: src/vue/
|
914 |
-
__( '
|
915 |
|
916 |
-
// Reference: src/vue/
|
917 |
-
__( '
|
918 |
|
919 |
-
// Reference: src/vue/
|
920 |
-
__( '
|
921 |
|
922 |
-
// Reference: src/vue/
|
923 |
-
__( '
|
924 |
|
925 |
-
// Reference: src/vue/
|
926 |
-
__( '
|
927 |
|
928 |
-
// Reference: src/vue/
|
929 |
-
__( '
|
930 |
|
931 |
-
// Reference: src/vue/
|
932 |
-
__( '
|
933 |
|
934 |
-
// Reference: src/vue/
|
935 |
-
__( '
|
936 |
|
937 |
-
// Reference: src/vue/
|
938 |
-
__( '
|
939 |
|
940 |
-
// Reference: src/vue/
|
941 |
-
__( '
|
942 |
|
943 |
-
// Reference: src/vue/
|
944 |
-
__( '
|
945 |
|
946 |
-
// Reference: src/vue/
|
947 |
-
__( '
|
948 |
|
949 |
-
// Reference: src/vue/
|
950 |
-
__( '
|
951 |
|
952 |
-
// Reference: src/vue/
|
953 |
-
__( '
|
954 |
|
955 |
-
// Reference: src/vue/
|
956 |
-
__( '
|
957 |
|
958 |
-
// Reference: src/vue/
|
959 |
-
__( '
|
960 |
|
961 |
-
// Reference: src/vue/
|
962 |
-
__( '
|
963 |
|
964 |
-
// Reference: src/vue/
|
965 |
-
__( '
|
966 |
|
967 |
-
// Reference: src/vue/
|
968 |
-
__( '
|
969 |
|
970 |
-
// Reference: src/vue/
|
971 |
-
__( '
|
972 |
|
973 |
-
// Reference: src/vue/
|
974 |
-
__( '
|
975 |
|
976 |
-
// Reference: src/vue/
|
977 |
-
__( '
|
978 |
|
979 |
-
// Reference: src/vue/
|
980 |
-
__( '
|
981 |
|
982 |
-
// Reference: src/vue/
|
983 |
-
__( '
|
984 |
|
985 |
-
// Reference: src/vue/
|
986 |
-
__( '
|
987 |
|
988 |
-
// Reference: src/vue/
|
989 |
-
__( '
|
990 |
|
991 |
-
// Reference: src/vue/
|
992 |
-
__( '
|
993 |
|
994 |
-
// Reference: src/vue/
|
995 |
-
__( '
|
996 |
|
997 |
-
// Reference: src/vue/
|
998 |
-
__( '
|
999 |
|
1000 |
-
// Reference: src/vue/
|
1001 |
-
__( '
|
1002 |
|
1003 |
-
// Reference: src/vue/
|
1004 |
-
__( '
|
1005 |
|
1006 |
-
// Reference: src/vue/
|
1007 |
-
__( '
|
1008 |
|
1009 |
-
// Reference: src/vue/
|
1010 |
-
__( '
|
1011 |
|
1012 |
-
// Reference: src/vue/
|
1013 |
-
__( '
|
1014 |
|
1015 |
-
// Reference: src/vue/
|
1016 |
-
__( '
|
1017 |
|
1018 |
-
// Reference: src/vue/
|
1019 |
-
__( '
|
1020 |
|
1021 |
-
// Reference: src/vue/
|
1022 |
-
__( '
|
1023 |
|
1024 |
-
// Reference: src/vue/
|
1025 |
-
__( '
|
1026 |
|
1027 |
-
// Reference: src/vue/
|
1028 |
-
|
1029 |
-
__( 'A very good score is between %1$s60 and 80%2$s.', 'all-in-one-seo-pack' ),
|
1030 |
|
1031 |
-
// Reference: src/vue/
|
1032 |
-
|
1033 |
-
__( 'For best results, you should strive for %1$s70 and above%2$s.', 'all-in-one-seo-pack' ),
|
1034 |
-
|
1035 |
-
// Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:62
|
1036 |
-
__( 'An error occurred while analyzing your site.', 'all-in-one-seo-pack' ),
|
1037 |
|
1038 |
-
// Reference: src/vue/
|
1039 |
-
|
|
|
|
|
|
|
|
|
1040 |
|
1041 |
-
// Reference: src/vue/
|
1042 |
-
|
|
|
1043 |
|
1044 |
-
// Reference: src/vue/
|
1045 |
-
|
|
|
1046 |
|
1047 |
-
// Reference: src/vue/
|
1048 |
-
/* Translators: 1 - The plugin short name (
|
1049 |
-
__( '
|
1050 |
|
1051 |
-
// Reference: src/vue/
|
1052 |
-
|
|
|
1053 |
|
1054 |
-
// Reference: src/vue/
|
1055 |
-
__( '
|
1056 |
|
1057 |
-
// Reference: src/vue/
|
1058 |
-
|
|
|
1059 |
|
1060 |
-
// Reference: src/vue/
|
1061 |
-
__( '
|
1062 |
|
1063 |
-
// Reference: src/vue/
|
1064 |
-
|
|
|
1065 |
|
1066 |
-
// Reference: src/vue/
|
1067 |
-
__( '
|
1068 |
|
1069 |
-
// Reference: src/vue/
|
1070 |
-
|
|
|
1071 |
|
1072 |
-
// Reference: src/vue/components/common/
|
1073 |
-
|
|
|
1074 |
|
1075 |
-
// Reference: src/vue/components/common/
|
1076 |
-
|
|
|
1077 |
|
1078 |
-
// Reference: src/vue/components/common/
|
1079 |
-
|
|
|
1080 |
|
1081 |
-
// Reference: src/vue/components/common/
|
1082 |
-
__( '
|
1083 |
|
1084 |
-
// Reference: src/vue/components/common/
|
1085 |
-
__( '
|
1086 |
|
1087 |
-
// Reference: src/vue/components/common/
|
1088 |
-
|
|
|
1089 |
|
1090 |
-
// Reference: src/vue/
|
1091 |
-
|
|
|
1092 |
|
1093 |
-
// Reference: src/vue/
|
1094 |
-
__( '
|
1095 |
|
1096 |
-
// Reference: src/vue/components/common/
|
1097 |
-
__( '
|
1098 |
|
1099 |
-
// Reference: src/vue/
|
1100 |
-
__( '
|
1101 |
|
1102 |
-
// Reference: src/vue/components/
|
1103 |
-
|
|
|
|
|
|
|
|
|
1104 |
|
1105 |
-
// Reference: src/vue/
|
1106 |
-
|
|
|
|
|
1107 |
|
1108 |
-
// Reference: src/vue/
|
1109 |
-
|
|
|
|
|
1110 |
|
1111 |
-
// Reference: src/vue/
|
1112 |
-
|
|
|
|
|
|
|
|
|
1113 |
|
1114 |
-
// Reference: src/vue/
|
1115 |
-
|
1116 |
-
__( 'Are you enjoying %1$s?', 'all-in-one-seo-pack' ),
|
1117 |
|
1118 |
-
// Reference: src/vue/
|
1119 |
-
__( '
|
1120 |
|
1121 |
-
// Reference: src/vue/
|
1122 |
-
|
1123 |
-
__( '
|
1124 |
|
1125 |
-
// Reference: src/vue/
|
1126 |
-
|
1127 |
-
|
|
|
1128 |
|
1129 |
-
// Reference: src/vue/pages/
|
1130 |
-
// Reference: src/vue/pages/
|
1131 |
-
|
1132 |
-
__( 'Include All Post Types', 'all-in-one-seo-pack' ),
|
1133 |
|
1134 |
-
// Reference: src/vue/pages/
|
1135 |
-
// Reference: src/vue/
|
1136 |
-
__( '
|
1137 |
|
1138 |
-
// Reference: src/vue/
|
1139 |
-
|
|
|
|
|
|
|
1140 |
|
1141 |
-
// Reference: src/vue/
|
1142 |
-
|
|
|
|
|
|
|
1143 |
|
1144 |
-
// Reference: src/vue/
|
1145 |
-
|
|
|
1146 |
|
1147 |
-
// Reference: src/vue/
|
1148 |
-
|
|
|
1149 |
|
1150 |
-
// Reference: src/vue/
|
1151 |
-
|
|
|
|
|
1152 |
|
1153 |
-
// Reference: src/vue/
|
1154 |
-
__( '
|
1155 |
|
1156 |
-
// Reference: src/vue/
|
1157 |
-
|
|
|
|
|
1158 |
|
1159 |
-
// Reference: src/vue/
|
1160 |
-
__( '
|
1161 |
|
1162 |
-
// Reference: src/vue/
|
1163 |
-
__( '
|
1164 |
|
1165 |
-
// Reference: src/vue/
|
1166 |
-
|
|
|
1167 |
|
1168 |
-
// Reference: src/vue/
|
1169 |
-
__( '
|
1170 |
|
1171 |
-
// Reference: src/vue/
|
1172 |
-
|
1173 |
-
__( 'The HTML tag that is used for the label of each section. Defaults to %1$s.', 'all-in-one-seo-pack' ),
|
1174 |
|
1175 |
-
// Reference: src/vue/
|
1176 |
-
|
1177 |
-
__( 'Whether the labels should be shown or not. Defaults to %1$s.', 'all-in-one-seo-pack' ),
|
1178 |
|
1179 |
-
// Reference: src/vue/
|
1180 |
-
__( '
|
1181 |
|
1182 |
-
// Reference: src/vue/
|
1183 |
-
__( '
|
1184 |
|
1185 |
-
// Reference: src/vue/
|
1186 |
-
|
1187 |
-
__( 'The sort direction. The supported values are %1$s and %2$s.', 'all-in-one-seo-pack' ),
|
1188 |
|
1189 |
-
// Reference: src/vue/
|
1190 |
-
|
1191 |
-
__( 'The sort order. The supported values are %1$s, %2$s, %3$s and %4$s.', 'all-in-one-seo-pack' ),
|
1192 |
|
1193 |
-
// Reference: src/vue/
|
1194 |
-
|
1195 |
-
__( '%1$s %2$s Not Configured Properly', 'all-in-one-seo-pack' ),
|
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 |
|
1209 |
-
// Reference: src/vue/
|
1210 |
-
__( '
|
1211 |
|
1212 |
-
// Reference: src/vue/
|
1213 |
-
__( '
|
1214 |
|
1215 |
-
// Reference: src/vue/
|
1216 |
-
__( '
|
1217 |
|
1218 |
-
// Reference: src/vue/
|
1219 |
-
__( '
|
1220 |
|
1221 |
-
// Reference: src/vue/
|
1222 |
-
|
|
|
1223 |
|
1224 |
-
// Reference: src/vue/
|
1225 |
-
|
|
|
1226 |
|
1227 |
-
// Reference: src/vue/
|
1228 |
-
__( '
|
1229 |
|
1230 |
-
// Reference: src/vue/
|
1231 |
-
|
|
|
1232 |
|
1233 |
-
// Reference: src/vue/
|
1234 |
-
__( '
|
1235 |
|
1236 |
-
// Reference: src/vue/
|
1237 |
-
__( '
|
1238 |
|
1239 |
-
// Reference: src/vue/
|
1240 |
-
|
1241 |
-
__( 'For the best SEO results there should be exactly one H1 tag on each page.', 'all-in-one-seo-pack' ),
|
1242 |
|
1243 |
-
// Reference: src/vue/
|
1244 |
-
|
1245 |
-
__( '%1$d H1 tags were found.', 'all-in-one-seo-pack' ),
|
1246 |
|
1247 |
-
// Reference: src/vue/
|
1248 |
-
__( '
|
1249 |
|
1250 |
-
// Reference: src/vue/
|
1251 |
-
__( '
|
1252 |
|
1253 |
-
// Reference: src/vue/
|
1254 |
-
__( '
|
1255 |
|
1256 |
-
// Reference: src/vue/
|
1257 |
-
|
|
|
1258 |
|
1259 |
-
// Reference: src/vue/
|
1260 |
-
|
|
|
1261 |
|
1262 |
-
// Reference: src/vue/
|
1263 |
-
__( '
|
1264 |
|
1265 |
-
// Reference: src/vue/
|
1266 |
-
__( '
|
1267 |
|
1268 |
-
// Reference: src/vue/
|
1269 |
-
__( '
|
1270 |
|
1271 |
-
// Reference: src/vue/
|
1272 |
-
__( '
|
1273 |
|
1274 |
-
// Reference: src/vue/
|
1275 |
-
__( '
|
1276 |
|
1277 |
-
// Reference: src/vue/
|
1278 |
-
__( '
|
1279 |
|
1280 |
-
// Reference: src/vue/
|
1281 |
-
__( '
|
1282 |
|
1283 |
-
// Reference: src/vue/
|
1284 |
-
__( '
|
1285 |
|
1286 |
-
// Reference: src/vue/
|
1287 |
-
__( '
|
1288 |
|
1289 |
-
// Reference: src/vue/
|
1290 |
-
__( '
|
1291 |
|
1292 |
-
// Reference: src/vue/
|
1293 |
-
__( '
|
1294 |
|
1295 |
-
// Reference: src/vue/
|
1296 |
-
|
|
|
1297 |
|
1298 |
-
// Reference: src/vue/
|
1299 |
-
__( '
|
1300 |
|
1301 |
-
// Reference: src/vue/
|
1302 |
-
__( '
|
1303 |
|
1304 |
-
// Reference: src/vue/
|
1305 |
-
__( '
|
1306 |
|
1307 |
-
// Reference: src/vue/
|
1308 |
-
__( '
|
1309 |
|
1310 |
-
// Reference: src/vue/
|
1311 |
-
__( '
|
1312 |
|
1313 |
-
// Reference: src/vue/
|
1314 |
-
__( '
|
1315 |
|
1316 |
-
// Reference: src/vue/
|
1317 |
-
__( '
|
1318 |
|
1319 |
-
// Reference: src/vue/
|
1320 |
-
__( '
|
1321 |
|
1322 |
-
// Reference: src/vue/
|
1323 |
-
__( '
|
1324 |
|
1325 |
-
// Reference: src/vue/
|
1326 |
-
__( '
|
1327 |
|
1328 |
-
// Reference: src/vue/
|
1329 |
-
|
|
|
1330 |
|
1331 |
-
// Reference: src/vue/
|
1332 |
-
__( '
|
1333 |
|
1334 |
-
// Reference: src/vue/
|
1335 |
-
__( '
|
1336 |
|
1337 |
-
// Reference: src/vue/
|
1338 |
-
__( '
|
1339 |
|
1340 |
-
// Reference: src/vue/
|
1341 |
-
__( '
|
1342 |
|
1343 |
-
// Reference: src/vue/
|
1344 |
-
__( '
|
1345 |
|
1346 |
-
// Reference: src/vue/
|
1347 |
-
__( '
|
1348 |
|
1349 |
-
// Reference: src/vue/
|
1350 |
-
__( '
|
1351 |
|
1352 |
-
// Reference: src/vue/
|
1353 |
-
|
|
|
1354 |
|
1355 |
-
// Reference: src/vue/
|
1356 |
-
|
|
|
1357 |
|
1358 |
-
// Reference: src/vue/
|
1359 |
-
__( '
|
1360 |
|
1361 |
-
// Reference: src/vue/
|
1362 |
-
__( '
|
1363 |
|
1364 |
-
// Reference: src/vue/
|
1365 |
-
__( '
|
1366 |
|
1367 |
-
// Reference: src/vue/
|
1368 |
-
|
|
|
1369 |
|
1370 |
-
// Reference: src/vue/
|
1371 |
-
__( '
|
1372 |
|
1373 |
-
// Reference: src/vue/
|
1374 |
-
__( '
|
1375 |
|
1376 |
-
// Reference: src/vue/
|
1377 |
-
__( '
|
1378 |
|
1379 |
-
// Reference: src/vue/
|
1380 |
-
__( '
|
1381 |
|
1382 |
-
// Reference: src/vue/
|
1383 |
-
__( '
|
1384 |
|
1385 |
-
// Reference: src/vue/
|
1386 |
-
__( '
|
1387 |
|
1388 |
-
// Reference: src/vue/
|
1389 |
-
__( '
|
1390 |
|
1391 |
-
// Reference: src/vue/
|
1392 |
-
__( '
|
1393 |
|
1394 |
-
// Reference: src/vue/
|
1395 |
-
__( '
|
1396 |
|
1397 |
-
// Reference: src/vue/
|
1398 |
-
__( '
|
1399 |
|
1400 |
-
// Reference: src/vue/
|
1401 |
-
|
|
|
1402 |
|
1403 |
-
// Reference: src/vue/
|
1404 |
-
__( '
|
1405 |
|
1406 |
-
// Reference: src/vue/
|
1407 |
-
__( '
|
1408 |
|
1409 |
-
// Reference: src/vue/
|
1410 |
-
__( '
|
1411 |
|
1412 |
-
// Reference: src/vue/
|
1413 |
-
|
1414 |
-
__( 'Your SEO title is only %1$d characters long, which is too short.', 'all-in-one-seo-pack' ),
|
1415 |
|
1416 |
-
// Reference: src/vue/
|
1417 |
-
|
1418 |
-
__( 'Make sure that you only block parts you don\'t want to be indexed.', 'all-in-one-seo-pack' ),
|
1419 |
|
1420 |
-
// Reference: src/vue/
|
1421 |
-
|
1422 |
-
__( 'You can manually create a robots.txt file and upload it to your site\'s web root. A simpler option is to use a plugin for your CMS platform.', 'all-in-one-seo-pack' ),
|
1423 |
|
1424 |
-
// Reference: src/vue/
|
1425 |
-
|
1426 |
-
__( '%1$s has a full suite of tools to manage the robots.txt file, along with other related technologies, like XML Sitemaps.', 'all-in-one-seo-pack' ),
|
1427 |
|
1428 |
-
// Reference: src/vue/
|
1429 |
-
__( '
|
1430 |
|
1431 |
-
// Reference: src/vue/
|
1432 |
-
__( '
|
1433 |
|
1434 |
-
// Reference: src/vue/
|
1435 |
-
__( '
|
1436 |
|
1437 |
-
// Reference: src/vue/
|
1438 |
-
|
1439 |
-
__( 'The SEO title is only %1$d characters long, which is too short.', 'all-in-one-seo-pack' ),
|
1440 |
|
1441 |
-
// Reference: src/vue/
|
1442 |
-
|
1443 |
-
__( 'Insert a customized Open Graph meta tag for each important page on your site. The standard is very well documented - you can learn more from Facebook\'s developer pages.', 'all-in-one-seo-pack' ),
|
1444 |
|
1445 |
-
// Reference: src/vue/
|
1446 |
-
|
1447 |
-
__( '%1$s provides a simple but powerful interface to craft your Open Graph data. You get immediate feedback with an interactive preview, and you don\'t have to mess around with raw HTML markup.', 'all-in-one-seo-pack' ),
|
1448 |
|
1449 |
-
// Reference: src/vue/
|
1450 |
-
__( '
|
1451 |
|
1452 |
-
// Reference: src/vue/
|
1453 |
-
|
|
|
1454 |
|
1455 |
-
// Reference: src/vue/
|
1456 |
-
|
|
|
1457 |
|
1458 |
-
// Reference: src/vue/
|
1459 |
-
|
|
|
1460 |
|
1461 |
-
// Reference: src/vue/
|
1462 |
-
|
1463 |
-
__( '%1$s makes it extremely easy to add highly relevant Schema.org markup to your site. It has a simple graphical interface, so you don\'t have to get your hands dirty with complex HTML markup.', 'all-in-one-seo-pack' ),
|
1464 |
|
1465 |
-
// Reference: src/vue/
|
1466 |
-
__( '
|
1467 |
|
1468 |
-
// Reference: src/vue/
|
1469 |
-
__( '
|
1470 |
|
1471 |
-
// Reference: src/vue/
|
1472 |
-
__( 'The
|
1473 |
|
1474 |
-
// Reference: src/vue/
|
1475 |
-
|
1476 |
-
__( 'Your SEO title is %1$d characters long, which is too long.', 'all-in-one-seo-pack' ),
|
1477 |
|
1478 |
-
// Reference: src/vue/
|
1479 |
-
__( '
|
1480 |
|
1481 |
-
// Reference: src/vue/
|
1482 |
-
__( '
|
1483 |
|
1484 |
-
// Reference: src/vue/
|
1485 |
-
__( '
|
1486 |
|
1487 |
-
// Reference: src/vue/
|
1488 |
-
__( '
|
1489 |
|
1490 |
-
// Reference: src/vue/
|
1491 |
-
__( '
|
1492 |
|
1493 |
-
// Reference: src/vue/
|
1494 |
-
__( '
|
1495 |
|
1496 |
-
// Reference: src/vue/
|
1497 |
-
/* Translators: 1 -
|
1498 |
-
__( '
|
1499 |
|
1500 |
-
// Reference: src/vue/
|
1501 |
-
__( '
|
1502 |
|
1503 |
-
// Reference: src/vue/
|
1504 |
-
__( '
|
1505 |
|
1506 |
-
// Reference: src/vue/
|
1507 |
-
__( '
|
1508 |
|
1509 |
-
// Reference: src/vue/
|
1510 |
-
__( '
|
1511 |
|
1512 |
-
// Reference: src/vue/
|
1513 |
-
|
|
|
1514 |
|
1515 |
-
// Reference: src/vue/
|
1516 |
-
__( '
|
1517 |
|
1518 |
-
// Reference: src/vue/
|
1519 |
-
|
|
|
1520 |
|
1521 |
-
// Reference: src/vue/
|
1522 |
-
__( '
|
1523 |
|
1524 |
-
// Reference: src/vue/
|
1525 |
-
|
1526 |
-
__( 'Your page makes %1$d requests.', 'all-in-one-seo-pack' ),
|
1527 |
|
1528 |
-
// Reference: src/vue/
|
1529 |
-
|
1530 |
-
__( 'The page makes %1$d requests.', 'all-in-one-seo-pack' ),
|
1531 |
|
1532 |
-
// Reference: src/vue/
|
1533 |
-
__( '
|
1534 |
|
1535 |
-
// Reference: src/vue/
|
1536 |
-
__( '
|
1537 |
|
1538 |
-
// Reference: src/vue/
|
1539 |
-
__( '
|
1540 |
|
1541 |
-
// Reference: src/vue/
|
1542 |
-
__( '
|
1543 |
|
1544 |
-
// Reference: src/vue/
|
1545 |
-
__( '
|
1546 |
|
1547 |
-
// Reference: src/vue/
|
1548 |
-
/* Translators: 1 -
|
1549 |
-
__( '
|
1550 |
|
1551 |
-
// Reference: src/vue/
|
1552 |
-
/* Translators: 1 -
|
1553 |
-
__( 'The
|
1554 |
|
1555 |
-
// Reference: src/vue/
|
1556 |
-
__( '
|
1557 |
|
1558 |
-
// Reference: src/vue/
|
1559 |
-
__( '
|
1560 |
|
1561 |
-
// Reference: src/vue/
|
1562 |
-
|
|
|
1563 |
|
1564 |
-
// Reference: src/vue/
|
1565 |
-
__( '
|
1566 |
|
1567 |
-
// Reference: src/vue/
|
1568 |
-
|
|
|
1569 |
|
1570 |
-
// Reference: src/vue/
|
1571 |
-
__( '
|
1572 |
|
1573 |
-
// Reference: src/vue/
|
1574 |
-
/* Translators: 1 -
|
1575 |
-
__( 'The
|
1576 |
|
1577 |
-
// Reference: src/vue/
|
1578 |
-
|
1579 |
-
__( 'The response time of your page is %1$f seconds. It is recommended to keep it equal to or below 0.2 seconds.', 'all-in-one-seo-pack' ),
|
1580 |
|
1581 |
-
// Reference: src/vue/
|
1582 |
-
|
1583 |
-
__( 'The response time of the page is %1$f seconds. It is recommended to keep it equal to or below 0.2 seconds.', 'all-in-one-seo-pack' ),
|
1584 |
|
1585 |
-
// Reference: src/vue/
|
1586 |
-
__( 'Your
|
1587 |
|
1588 |
-
// Reference: src/vue/
|
1589 |
-
__( '
|
1590 |
|
1591 |
-
// Reference: src/vue/
|
1592 |
-
__( '
|
1593 |
|
1594 |
-
// Reference: src/vue/
|
1595 |
-
__( '
|
1596 |
|
1597 |
-
// Reference: src/vue/
|
1598 |
-
__( '
|
1599 |
|
1600 |
-
// Reference: src/vue/
|
1601 |
-
__( '
|
1602 |
|
1603 |
-
// Reference: src/vue/
|
1604 |
-
__( '
|
1605 |
|
1606 |
-
// Reference: src/vue/
|
1607 |
-
__( '
|
1608 |
|
1609 |
-
// Reference: src/vue/
|
1610 |
-
__( '
|
1611 |
|
1612 |
-
// Reference: src/vue/
|
1613 |
-
|
1614 |
-
__( 'Anyone can see that you are using the %1$s theme.', 'all-in-one-seo-pack' ),
|
1615 |
|
1616 |
-
// Reference: src/vue/
|
1617 |
-
|
1618 |
-
__( 'Anyone can see that they are using the %1$s theme.', 'all-in-one-seo-pack' ),
|
1619 |
|
1620 |
-
// Reference: src/vue/
|
1621 |
-
__( '
|
1622 |
|
1623 |
-
// Reference: src/vue/
|
1624 |
-
__( '
|
1625 |
|
1626 |
-
// Reference: src/vue/
|
1627 |
-
__( '
|
1628 |
|
1629 |
-
// Reference: src/vue/
|
1630 |
-
|
|
|
1631 |
|
1632 |
-
// Reference: src/vue/
|
1633 |
-
|
|
|
1634 |
|
1635 |
-
// Reference: src/vue/
|
1636 |
-
|
|
|
1637 |
|
1638 |
-
// Reference: src/vue/
|
1639 |
-
__( '
|
1640 |
|
1641 |
-
// Reference: src/vue/
|
1642 |
-
__( '
|
1643 |
|
1644 |
-
// Reference: src/vue/
|
1645 |
-
__( '
|
1646 |
|
1647 |
-
// Reference: src/vue/
|
1648 |
-
__( '
|
1649 |
|
1650 |
-
// Reference: src/vue/
|
1651 |
-
__( '
|
1652 |
|
1653 |
-
// Reference: src/vue/
|
1654 |
-
__( '
|
1655 |
|
1656 |
-
// Reference: src/vue/
|
1657 |
-
__( '
|
1658 |
|
1659 |
-
// Reference: src/vue/
|
1660 |
-
__( '
|
1661 |
|
1662 |
-
// Reference: src/vue/
|
1663 |
-
__( '
|
1664 |
|
1665 |
-
// Reference: src/vue/
|
1666 |
-
__( '
|
1667 |
|
1668 |
-
// Reference: src/vue/
|
1669 |
-
__( '
|
1670 |
|
1671 |
-
// Reference: src/vue/
|
1672 |
-
__( '
|
1673 |
|
1674 |
-
// Reference: src/vue/
|
1675 |
-
__( '
|
1676 |
|
1677 |
-
// Reference: src/vue/
|
1678 |
-
__( '
|
1679 |
|
1680 |
-
// Reference: src/vue/
|
1681 |
-
__( '
|
1682 |
|
1683 |
-
// Reference: src/vue/
|
1684 |
-
__( '
|
1685 |
|
1686 |
-
// Reference: src/vue/
|
1687 |
-
__( '
|
1688 |
|
1689 |
-
// Reference: src/vue/
|
1690 |
-
__( '
|
1691 |
|
1692 |
-
// Reference: src/vue/
|
1693 |
-
/* Translators: 1 -
|
1694 |
-
__( '
|
1695 |
|
1696 |
-
// Reference: src/vue/
|
1697 |
-
|
1698 |
-
__( 'The meta description is only %1$d characters long, which is too short.', 'all-in-one-seo-pack' ),
|
1699 |
|
1700 |
-
// Reference: src/vue/
|
1701 |
-
/* Translators: 1 -
|
1702 |
-
__( 'Your
|
1703 |
|
1704 |
-
// Reference: src/vue/
|
1705 |
-
/* Translators: 1 -
|
1706 |
-
__( '
|
1707 |
|
1708 |
-
// Reference: src/vue/
|
1709 |
-
/* Translators: 1 -
|
1710 |
-
__( '
|
1711 |
|
1712 |
-
// Reference: src/vue/
|
1713 |
-
/* Translators: 1 -
|
1714 |
-
__( '
|
1715 |
|
1716 |
-
// Reference: src/vue/
|
1717 |
-
|
|
|
1718 |
|
1719 |
-
// Reference: src/vue/
|
1720 |
-
|
|
|
1721 |
|
1722 |
-
// Reference: src/vue/
|
1723 |
-
|
|
|
1724 |
|
1725 |
-
// Reference: src/vue/
|
1726 |
-
|
|
|
1727 |
|
1728 |
-
// Reference: src/vue/
|
1729 |
-
|
|
|
1730 |
|
1731 |
-
// Reference: src/vue/
|
1732 |
-
__( '
|
1733 |
|
1734 |
-
// Reference: src/vue/
|
1735 |
-
__( '
|
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/pages/
|
1750 |
-
__( '
|
1751 |
|
1752 |
-
// Reference: src/vue/
|
1753 |
-
__( '
|
1754 |
|
1755 |
-
// Reference: src/vue/
|
1756 |
-
__( '
|
1757 |
|
1758 |
-
// Reference: src/vue/
|
1759 |
-
|
1760 |
-
__( 'Regex', 'all-in-one-seo-pack' ),
|
1761 |
|
1762 |
-
// Reference: src/vue/
|
1763 |
-
__( '
|
1764 |
|
1765 |
-
// Reference: src/vue/
|
1766 |
-
__( '
|
1767 |
|
1768 |
-
// Reference: src/vue/pages/
|
1769 |
-
__( '
|
1770 |
|
1771 |
-
// Reference: src/vue/
|
1772 |
-
__( '
|
1773 |
|
1774 |
-
// Reference: src/vue/
|
1775 |
-
__( '
|
1776 |
|
1777 |
-
// Reference: src/vue/pages/settings/views/
|
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/
|
1793 |
-
__( '
|
1794 |
|
1795 |
-
// Reference: src/vue/pages/
|
1796 |
-
__( '
|
1797 |
|
1798 |
-
// Reference: src/vue/
|
1799 |
-
__( '
|
1800 |
|
1801 |
-
// Reference: src/vue/
|
1802 |
-
__( '
|
1803 |
|
1804 |
-
// Reference: src/vue/
|
1805 |
-
|
1806 |
-
__( 'Enter a relative URL to redirect from or start by typing in page or post title, slug or ID. You can also use regex (%1$s)', 'all-in-one-seo-pack' ),
|
1807 |
|
1808 |
-
// Reference: src/vue/
|
1809 |
-
|
1810 |
-
__( 'what\'s this?', 'all-in-one-seo-pack' ),
|
1811 |
|
1812 |
-
// Reference: src/vue/
|
1813 |
-
__( '
|
1814 |
|
1815 |
-
// Reference: src/vue/
|
1816 |
-
__( '
|
1817 |
|
1818 |
-
// Reference: src/vue/
|
1819 |
-
__( '
|
1820 |
|
1821 |
-
// Reference: src/vue/pages/
|
1822 |
-
__( '
|
1823 |
|
1824 |
-
// Reference: src/vue/
|
1825 |
-
__( '
|
1826 |
|
1827 |
-
// Reference: src/vue/
|
1828 |
-
__( '
|
1829 |
|
1830 |
-
// Reference: src/vue/
|
1831 |
-
|
1832 |
-
__( 'Your target URL should be an absolute URL like %1$s or start with a slash.', 'all-in-one-seo-pack' ),
|
1833 |
|
1834 |
-
// Reference: src/vue/
|
1835 |
-
|
1836 |
-
__( 'Your target URL contains the invalid character(s) %1$s', 'all-in-one-seo-pack' ),
|
1837 |
|
1838 |
-
// Reference: src/vue/
|
1839 |
-
__( '
|
1840 |
|
1841 |
-
// Reference: src/vue/
|
1842 |
-
__( '
|
1843 |
|
1844 |
-
// Reference: src/vue/
|
1845 |
-
|
|
|
1846 |
|
1847 |
-
// Reference: src/vue/
|
1848 |
-
__( '
|
1849 |
|
1850 |
-
// Reference: src/vue/
|
1851 |
-
__( '
|
1852 |
|
1853 |
-
// Reference: src/vue/
|
1854 |
-
__( '
|
1855 |
|
1856 |
-
// Reference: src/vue/
|
1857 |
-
__( '
|
1858 |
|
1859 |
-
// Reference: src/vue/
|
1860 |
-
__( '
|
1861 |
|
1862 |
-
// Reference: src/vue/
|
1863 |
-
|
1864 |
-
__( 'Enter a page URL, e.g. %1$s', 'all-in-one-seo-pack' ),
|
1865 |
|
1866 |
-
// Reference: src/vue/
|
1867 |
-
__( '
|
1868 |
|
1869 |
-
// Reference: src/vue/
|
1870 |
-
__( '
|
1871 |
|
1872 |
-
// Reference: src/vue/
|
1873 |
-
|
|
|
1874 |
|
1875 |
-
// Reference: src/vue/
|
1876 |
-
|
|
|
1877 |
|
1878 |
-
// Reference: src/vue/
|
1879 |
-
__( '
|
1880 |
|
1881 |
-
// Reference: src/vue/components/common/core/
|
1882 |
-
|
|
|
|
|
|
|
1883 |
|
1884 |
-
// Reference: src/vue/
|
1885 |
-
|
|
|
1886 |
|
1887 |
-
// Reference: src/vue/
|
1888 |
-
|
|
|
1889 |
|
1890 |
-
// Reference: src/vue/
|
1891 |
-
__( '
|
1892 |
|
1893 |
-
// Reference: src/vue/
|
1894 |
-
|
1895 |
-
__( 'Remember to enable the %1$s option if this is a regular expression.', 'all-in-one-seo-pack' ),
|
1896 |
|
1897 |
-
// Reference: src/vue/
|
1898 |
-
|
1899 |
-
__( 'To prevent a greedy regular expression you can use %1$s to anchor it to the start of the URL. For example: %2$s', 'all-in-one-seo-pack' ),
|
1900 |
|
1901 |
-
// Reference: src/vue/
|
1902 |
-
|
1903 |
-
__( 'The caret %1$s should be at the start. For example: %2$s', 'all-in-one-seo-pack' ),
|
1904 |
|
1905 |
-
// Reference: src/vue/
|
1906 |
-
/* Translators: 1 -
|
1907 |
-
__( '
|
1908 |
|
1909 |
-
// Reference: src/vue/
|
1910 |
-
|
1911 |
-
__( 'The dollar symbol %1$s should be at the end. For example: %2$s', 'all-in-one-seo-pack' ),
|
1912 |
|
1913 |
-
// Reference: src/vue/components/common/
|
1914 |
-
__( '
|
1915 |
|
1916 |
-
// Reference: src/vue/components/
|
1917 |
-
__( '
|
1918 |
|
1919 |
-
// Reference: src/vue/components/
|
1920 |
-
__( '
|
1921 |
|
1922 |
-
// Reference: src/vue/components/
|
1923 |
-
__( '
|
1924 |
|
1925 |
-
// Reference: src/vue/components/
|
1926 |
-
__( '
|
1927 |
|
1928 |
-
// Reference: src/vue/components/
|
1929 |
-
__( '
|
1930 |
|
1931 |
-
// Reference: src/vue/
|
1932 |
-
__( '
|
1933 |
|
1934 |
-
// Reference: src/vue/
|
1935 |
-
__( '
|
1936 |
|
1937 |
-
// Reference: src/vue/
|
1938 |
-
__( '
|
1939 |
|
1940 |
-
// Reference: src/vue/components/
|
1941 |
-
|
|
|
1942 |
|
1943 |
-
// Reference: src/vue/components/
|
1944 |
-
__( '
|
1945 |
|
1946 |
-
// Reference: src/vue/components/
|
1947 |
-
/* Translators:
|
1948 |
-
__( '
|
1949 |
|
1950 |
-
// Reference: src/vue/components/
|
1951 |
-
/* Translators:
|
1952 |
-
__( '
|
1953 |
|
1954 |
-
// Reference: src/vue/components/
|
1955 |
-
__( '
|
1956 |
|
1957 |
-
// Reference: src/vue/components/
|
1958 |
-
__( '
|
1959 |
|
1960 |
-
// Reference: src/vue/
|
1961 |
-
__( '
|
1962 |
|
1963 |
-
// Reference: src/vue/
|
1964 |
-
__( '
|
1965 |
|
1966 |
-
// Reference: src/vue/components/
|
1967 |
-
|
1968 |
-
__( 'To unlock more features, consider %1$s.', 'all-in-one-seo-pack' ),
|
1969 |
|
1970 |
-
// Reference: src/vue/components/
|
1971 |
-
|
1972 |
-
__( 'As a valued user you receive %1$s, automatically applied at checkout!', 'all-in-one-seo-pack' ),
|
1973 |
|
1974 |
-
// Reference: src/vue/
|
1975 |
-
/* Translators: 1 -
|
1976 |
-
__( '
|
1977 |
|
1978 |
-
// Reference: src/vue/
|
1979 |
-
|
1980 |
-
__( 'Already purchased? Simply enter your license key below to connect with %1$s!', 'all-in-one-seo-pack' ),
|
1981 |
|
1982 |
-
// Reference: src/vue/
|
1983 |
-
|
1984 |
-
__( 'Your user account role does not have access to edit this field. %1$s', 'all-in-one-seo-pack' ),
|
1985 |
|
1986 |
-
// Reference: src/vue/components/
|
1987 |
-
__( '
|
1988 |
|
1989 |
-
// Reference: src/vue/
|
1990 |
-
|
1991 |
-
__( 'You\'re using %1$s. To unlock more features, consider %2$s', 'all-in-one-seo-pack' ),
|
1992 |
|
1993 |
-
// Reference: src/vue/components/
|
1994 |
-
__( '
|
1995 |
|
1996 |
-
// Reference: src/vue/components/
|
1997 |
-
__( '
|
1998 |
|
1999 |
-
// Reference: src/vue/components/
|
2000 |
-
__( '
|
2001 |
|
2002 |
-
// Reference: src/vue/components/
|
2003 |
-
__( '
|
2004 |
|
2005 |
-
// Reference: src/vue/components/
|
2006 |
-
__( '
|
2007 |
|
2008 |
-
// Reference: src/vue/components/
|
2009 |
-
__( '
|
2010 |
|
2011 |
-
// Reference: src/vue/components/
|
2012 |
-
|
|
|
|
|
2013 |
|
2014 |
-
// Reference: src/vue/components/
|
2015 |
-
__( '
|
2016 |
|
2017 |
-
// Reference: src/vue/components/
|
2018 |
-
__( '
|
2019 |
|
2020 |
-
// Reference: src/vue/components/
|
2021 |
-
__( '
|
2022 |
|
2023 |
-
// Reference: src/vue/components/common/
|
2024 |
-
|
2025 |
-
/* Translators: 1 - The plugin short name ("AIOSEO Pro"), 2 - "Pro" string. */
|
2026 |
-
__( 'Pro', 'all-in-one-seo-pack' ),
|
2027 |
|
2028 |
-
// Reference: src/vue/components/common/
|
2029 |
-
|
|
|
2030 |
|
2031 |
-
// Reference: src/vue/components/common/
|
2032 |
-
/* Translators: 1 - The
|
2033 |
-
__( '
|
2034 |
|
2035 |
-
// Reference: src/vue/
|
2036 |
-
__( '
|
2037 |
|
2038 |
-
// Reference: src/vue/
|
2039 |
-
__( '
|
2040 |
|
2041 |
-
// Reference: src/vue/
|
2042 |
-
|
|
|
2043 |
|
2044 |
-
// Reference: src/vue/
|
2045 |
-
|
|
|
2046 |
|
2047 |
-
// Reference: src/vue/
|
2048 |
-
|
2049 |
-
__( 'To add this widget, visit the %1$swidgets page%2$s and look for the "%3$s Local - Map" widget.', 'all-in-one-seo-pack' ),
|
2050 |
|
2051 |
-
// Reference: src/vue/
|
2052 |
-
|
2053 |
-
__( 'Use the following shortcode to display the location map. %1$s', 'all-in-one-seo-pack' ),
|
2054 |
|
2055 |
-
// Reference: src/vue/pages/
|
2056 |
-
|
2057 |
-
__( 'To add this block, edit a page or post and search for the "%1$s Local - Map" block.', 'all-in-one-seo-pack' ),
|
2058 |
|
2059 |
-
// Reference: src/vue/pages/
|
2060 |
-
|
2061 |
-
__( 'Use the following PHP code anywhere in your theme to display the location map. %1$s', 'all-in-one-seo-pack' ),
|
2062 |
|
2063 |
-
// Reference: src/vue/pages/
|
2064 |
-
|
|
|
2065 |
|
2066 |
-
// Reference: src/vue/
|
2067 |
-
__( '
|
2068 |
|
2069 |
-
// Reference: src/vue/
|
2070 |
-
|
2071 |
-
__( 'Use the following PHP code anywhere in your theme to display the location info. %1$s', 'all-in-one-seo-pack' ),
|
2072 |
|
2073 |
-
// Reference: src/vue/
|
2074 |
-
|
2075 |
-
__( 'Whether your business has multiple locations, or just one, %1$s makes it easy to configure and display relevant information about your local business. You can use the custom-built tools below, or you can use the Locations custom post type (multiple locations only) to generate relevant and necessary information for search engines or for your customers.', 'all-in-one-seo-pack' ),
|
2076 |
|
2077 |
-
// Reference: src/vue/
|
2078 |
-
__( '
|
2079 |
|
2080 |
-
// Reference: src/vue/
|
2081 |
-
|
2082 |
-
__( 'Multiple Locations feature is available only for %1$s Pro users. Upgrade to Pro and unlock all %2$s features!', 'all-in-one-seo-pack' ),
|
2083 |
|
2084 |
-
// Reference: src/vue/
|
2085 |
-
|
2086 |
-
__( 'To add this widget, visit the %1$swidgets page%2$s and look for the "%3$s Local - Business Info" widget.', 'all-in-one-seo-pack' ),
|
2087 |
|
2088 |
-
// Reference: src/vue/
|
2089 |
-
|
2090 |
-
__( 'Use the following shortcode to display the location info. %1$s', 'all-in-one-seo-pack' ),
|
2091 |
|
2092 |
-
// Reference: src/vue/
|
2093 |
-
|
2094 |
-
__( 'To add this block, edit a page or post and search for the "%1$s Local - Business Info" block.', 'all-in-one-seo-pack' ),
|
2095 |
|
2096 |
-
// Reference: src/vue/
|
2097 |
-
|
|
|
|
|
2098 |
|
2099 |
-
// Reference: src/vue/
|
2100 |
-
__( '
|
2101 |
|
2102 |
-
// Reference: src/vue/
|
2103 |
-
__( '
|
2104 |
|
2105 |
-
// Reference: src/vue/
|
2106 |
-
__( '
|
2107 |
|
2108 |
-
// Reference: src/vue/
|
2109 |
-
__( '
|
2110 |
|
2111 |
-
// Reference: src/vue/
|
2112 |
-
__( '
|
2113 |
|
2114 |
-
// Reference: src/vue/
|
2115 |
-
__( '
|
2116 |
|
2117 |
-
// Reference: src/vue/
|
2118 |
-
__( '
|
2119 |
|
2120 |
-
// Reference: src/vue/
|
2121 |
-
__( '
|
2122 |
|
2123 |
-
// Reference: src/vue/
|
2124 |
-
__( '
|
2125 |
|
2126 |
-
// Reference: src/vue/
|
2127 |
-
__( '
|
2128 |
|
2129 |
-
// Reference: src/vue/
|
2130 |
-
__( '
|
2131 |
|
2132 |
-
// Reference: src/vue/
|
2133 |
-
__( '
|
2134 |
|
2135 |
-
// Reference: src/vue/
|
2136 |
-
|
2137 |
-
__( 'Access Control is only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
|
2138 |
|
2139 |
-
// Reference: src/vue/
|
2140 |
-
|
2141 |
-
__( 'By default Admins have access to %1$sall SEO site settings%2$s', 'all-in-one-seo-pack' ),
|
2142 |
|
2143 |
-
// Reference: src/vue/
|
2144 |
-
__( '
|
2145 |
|
2146 |
-
// Reference: src/vue/
|
2147 |
-
/* Translators:
|
2148 |
-
__( '
|
2149 |
|
2150 |
-
// Reference: src/vue/
|
2151 |
-
__( '
|
2152 |
|
2153 |
-
// Reference: src/vue/
|
2154 |
-
/* Translators:
|
2155 |
-
__( '
|
2156 |
|
2157 |
-
// Reference: src/vue/
|
2158 |
-
__( '
|
2159 |
|
2160 |
-
// Reference: src/vue/
|
2161 |
-
/* Translators:
|
2162 |
-
__( '
|
2163 |
|
2164 |
-
// Reference: src/vue/
|
2165 |
-
__( '
|
2166 |
|
2167 |
-
// Reference: src/vue/
|
2168 |
-
/* Translators:
|
2169 |
-
__( '
|
2170 |
|
2171 |
-
// Reference: src/vue/
|
2172 |
-
__( '
|
2173 |
|
2174 |
-
// Reference: src/vue/
|
2175 |
-
|
2176 |
-
__( '
|
2177 |
|
2178 |
-
// Reference: src/vue/
|
2179 |
-
|
2180 |
-
__( 'By default, only users with an Administrator role have permission to manage %1$s within your WordPress admin area. With Access Controls, though, you can easily extend specific access permissions to other user roles.', 'all-in-one-seo-pack' ),
|
2181 |
|
2182 |
-
// Reference: src/vue/
|
2183 |
-
__( '
|
2184 |
|
2185 |
-
// Reference: src/vue/
|
2186 |
-
__( '
|
2187 |
|
2188 |
-
// Reference: src/vue/
|
2189 |
-
__( '
|
2190 |
|
2191 |
-
// Reference: src/vue/
|
2192 |
-
__( '
|
2193 |
|
2194 |
-
// Reference: src/vue/
|
2195 |
-
__( '
|
2196 |
|
2197 |
-
// Reference: src/vue/
|
2198 |
-
__( '
|
2199 |
|
2200 |
-
// Reference: src/vue/
|
2201 |
-
__( '
|
2202 |
|
2203 |
-
// Reference: src/vue/
|
2204 |
-
__( '
|
2205 |
|
2206 |
-
// Reference: src/vue/
|
2207 |
-
__( '
|
2208 |
|
2209 |
-
// Reference: src/vue/
|
2210 |
-
__( '
|
2211 |
|
2212 |
-
// Reference: src/vue/pages/
|
2213 |
-
__( '
|
2214 |
|
2215 |
-
// Reference: src/vue/
|
2216 |
-
__( '
|
2217 |
|
2218 |
-
// Reference: src/vue/
|
2219 |
-
__( '
|
2220 |
|
2221 |
-
// Reference: src/vue/
|
2222 |
-
__( '
|
2223 |
|
2224 |
-
// Reference: src/vue/
|
2225 |
-
|
|
|
2226 |
|
2227 |
-
// Reference: src/vue/
|
2228 |
-
__( '
|
2229 |
|
2230 |
-
// Reference: src/vue/
|
2231 |
-
__( '
|
2232 |
|
2233 |
-
// Reference: src/vue/
|
2234 |
-
__( '
|
2235 |
|
2236 |
-
// Reference: src/vue/
|
2237 |
-
/* Translators: 1 -
|
2238 |
-
__( '
|
2239 |
|
2240 |
-
// Reference: src/vue/
|
2241 |
-
|
2242 |
-
__( 'Use the following shortcode to display the opening hours info. %1$s', 'all-in-one-seo-pack' ),
|
2243 |
|
2244 |
-
// Reference: src/vue/
|
2245 |
-
|
2246 |
-
__( 'To add this block, edit a page or post and search for the "%1$s Local - Opening Hours" block.', 'all-in-one-seo-pack' ),
|
2247 |
|
2248 |
-
// Reference: src/vue/
|
2249 |
-
|
2250 |
-
__( 'Use the following PHP code anywhere in your theme to display the opening hours. %1$s', 'all-in-one-seo-pack' ),
|
2251 |
|
2252 |
-
// Reference: src/vue/
|
2253 |
-
__( '
|
2254 |
|
2255 |
-
// Reference: src/vue/
|
2256 |
-
|
2257 |
-
__( 'Displayed when the business is closed.', 'all-in-one-seo-pack' ),
|
2258 |
|
2259 |
-
// Reference: src/vue/pages/
|
2260 |
-
__( '
|
2261 |
|
2262 |
-
// Reference: src/vue/
|
2263 |
-
|
2264 |
-
__( 'Displayed when the business is open all day long.', 'all-in-one-seo-pack' ),
|
2265 |
|
2266 |
-
// Reference: src/vue/
|
2267 |
-
|
2268 |
-
__( 'Hours', 'all-in-one-seo-pack' ),
|
2269 |
|
2270 |
-
// Reference: src/vue/
|
2271 |
-
|
|
|
2272 |
|
2273 |
-
// Reference: src/vue/
|
2274 |
-
/* Translators: 1 -
|
2275 |
-
__( '
|
2276 |
|
2277 |
-
// Reference: src/vue/
|
2278 |
-
|
2279 |
-
__( '%1$s is Installed & Active', 'all-in-one-seo-pack' ),
|
2280 |
|
2281 |
-
// Reference: src/vue/
|
2282 |
-
__( '
|
2283 |
|
2284 |
-
// Reference: src/vue/
|
2285 |
-
__( '
|
2286 |
|
2287 |
-
// Reference: src/vue/
|
2288 |
-
|
2289 |
-
__( '%1$s connects AIOSEO to Google Analytics, providing a powerful integration. %2$s is a sister company of AIOSEO.', 'all-in-one-seo-pack' ),
|
2290 |
|
2291 |
-
// Reference: src/vue/
|
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 |
-
__( 'Activate %1$s', 'all-in-one-seo-pack' ),
|
2309 |
|
2310 |
-
// Reference: src/vue/
|
2311 |
-
|
2312 |
-
__( '%1$s shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions.', 'all-in-one-seo-pack' ),
|
2313 |
|
2314 |
-
// Reference: src/vue/
|
2315 |
-
|
2316 |
-
__( 'Setup %1$s', 'all-in-one-seo-pack' ),
|
2317 |
|
2318 |
-
// Reference: src/vue/
|
2319 |
-
|
2320 |
-
__( '%1$s has an intuitive setup wizard to guide you through the setup process.', 'all-in-one-seo-pack' ),
|
2321 |
|
2322 |
-
// Reference: src/vue/
|
2323 |
-
|
2324 |
-
// Reference: src/vue/pages/local-seo/views/Main.vue:23
|
2325 |
-
__( 'Local SEO', 'all-in-one-seo-pack' ),
|
2326 |
|
2327 |
-
// Reference: src/vue/
|
2328 |
-
__( '
|
2329 |
|
2330 |
-
// Reference: src/vue/
|
2331 |
-
__( '
|
2332 |
|
2333 |
-
// Reference: src/vue/
|
2334 |
-
|
|
|
2335 |
|
2336 |
-
// Reference: src/vue/
|
2337 |
-
|
|
|
2338 |
|
2339 |
-
// Reference: src/vue/
|
2340 |
-
__( '
|
2341 |
|
2342 |
-
// Reference: src/vue/
|
2343 |
-
__( '
|
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 |
-
__( 'Read the %1$s user guide', 'all-in-one-seo-pack' ),
|
2363 |
|
2364 |
-
// Reference: src/vue/
|
2365 |
-
__( '
|
2366 |
|
2367 |
-
// Reference: src/vue/
|
2368 |
-
__( '
|
2369 |
|
2370 |
-
// Reference: src/vue/
|
2371 |
-
__( '
|
2372 |
|
2373 |
-
// Reference: src/vue/
|
2374 |
-
__( '
|
2375 |
|
2376 |
-
// Reference: src/vue/
|
2377 |
-
|
|
|
2378 |
|
2379 |
-
// Reference: src/vue/
|
2380 |
-
__( '
|
2381 |
|
2382 |
-
// Reference: src/vue/pages/
|
2383 |
-
|
|
|
2384 |
|
2385 |
-
// Reference: src/vue/
|
2386 |
-
__( '
|
2387 |
|
2388 |
-
// Reference: src/vue/
|
2389 |
-
__( '
|
2390 |
|
2391 |
-
// Reference: src/vue/
|
2392 |
-
__( '
|
2393 |
|
2394 |
-
// Reference: src/vue/
|
2395 |
-
__( '
|
2396 |
|
2397 |
-
// Reference: src/vue/
|
2398 |
-
__( '
|
2399 |
|
2400 |
-
// Reference: src/vue/
|
2401 |
-
__( '
|
2402 |
|
2403 |
-
// Reference: src/vue/
|
2404 |
-
|
2405 |
-
__( 'Get more features in %1$s %2$s:', 'all-in-one-seo-pack' ),
|
2406 |
|
2407 |
-
// Reference: src/vue/
|
2408 |
-
|
2409 |
-
__( 'Upgrade to %1$s and Save %2$s', 'all-in-one-seo-pack' ),
|
2410 |
|
2411 |
-
// Reference: src/vue/
|
2412 |
-
__( '
|
2413 |
|
2414 |
-
// Reference: src/vue/
|
2415 |
-
|
2416 |
-
__( 'You have %1$s more notifications', 'all-in-one-seo-pack' ),
|
2417 |
|
2418 |
-
// Reference: src/vue/
|
2419 |
-
__( '
|
2420 |
|
2421 |
-
// Reference: src/vue/
|
2422 |
-
__( '
|
2423 |
|
2424 |
-
// Reference: src/vue/
|
2425 |
-
__( '
|
2426 |
|
2427 |
-
// Reference: src/vue/
|
2428 |
-
|
2429 |
-
__( 'Local SEO Maps are only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
|
2430 |
|
2431 |
-
// Reference: src/vue/
|
2432 |
-
__( '
|
2433 |
|
2434 |
-
// Reference: src/vue/
|
2435 |
-
__( '
|
2436 |
|
2437 |
-
// Reference: src/vue/
|
2438 |
-
|
|
|
2439 |
|
2440 |
-
// Reference: src/vue/
|
2441 |
-
__( '
|
2442 |
|
2443 |
-
// Reference: src/vue/pages/
|
2444 |
-
__( '
|
2445 |
|
2446 |
-
// Reference: src/vue/
|
2447 |
-
__( '
|
2448 |
|
2449 |
-
// Reference: src/vue/
|
2450 |
-
__( '
|
2451 |
|
2452 |
-
// Reference: src/vue/
|
2453 |
-
|
2454 |
-
|
2455 |
-
__( 'Use a default template', 'all-in-one-seo-pack' ),
|
2456 |
|
2457 |
-
// Reference: src/vue/
|
2458 |
-
|
2459 |
-
|
2460 |
-
__( 'Show homepage link', 'all-in-one-seo-pack' ),
|
2461 |
|
2462 |
-
// Reference: src/vue/
|
2463 |
-
|
2464 |
-
// Reference: src/vue/pages/settings/views/partials/Breadcrumbs/SearchArchives.vue:67
|
2465 |
-
__( 'Show prefix link', 'all-in-one-seo-pack' ),
|
2466 |
|
2467 |
-
// Reference: src/vue/
|
2468 |
-
__( '
|
2469 |
|
2470 |
-
// Reference: src/vue/
|
2471 |
-
__( '
|
2472 |
|
2473 |
-
// Reference: src/vue/pages/
|
2474 |
-
__( '
|
2475 |
|
2476 |
-
// Reference: src/vue/pages/
|
2477 |
-
__( '
|
2478 |
|
2479 |
-
// Reference: src/vue/pages/
|
2480 |
-
__( '
|
2481 |
|
2482 |
-
// Reference: src/vue/
|
2483 |
-
|
|
|
2484 |
|
2485 |
-
// Reference: src/vue/
|
2486 |
-
|
|
|
2487 |
|
2488 |
-
// Reference: src/vue/
|
2489 |
-
__( '
|
2490 |
|
2491 |
-
// Reference: src/vue/
|
2492 |
-
__( '
|
2493 |
|
2494 |
-
// Reference: src/vue/
|
2495 |
-
__( '
|
2496 |
|
2497 |
-
// Reference: src/vue/
|
2498 |
-
__( '
|
2499 |
|
2500 |
-
// Reference: src/vue/pages/
|
2501 |
-
__( '
|
2502 |
|
2503 |
-
// Reference: src/vue/
|
2504 |
-
__( '
|
2505 |
|
2506 |
-
// Reference: src/vue/pages/
|
2507 |
-
__( '
|
2508 |
|
2509 |
-
// Reference: src/vue/pages/
|
2510 |
-
__( '
|
2511 |
|
2512 |
-
// Reference: src/vue/
|
2513 |
-
__( '
|
2514 |
|
2515 |
-
// Reference: src/vue/
|
2516 |
-
__( '
|
2517 |
|
2518 |
-
// Reference: src/vue/
|
2519 |
-
__( '
|
2520 |
|
2521 |
-
// Reference: src/vue/
|
2522 |
-
__( '
|
2523 |
|
2524 |
-
// Reference: src/vue/
|
2525 |
-
__( '
|
2526 |
|
2527 |
-
// Reference: src/vue/
|
2528 |
-
__( '
|
2529 |
|
2530 |
-
// Reference: src/vue/
|
2531 |
-
|
|
|
2532 |
|
2533 |
-
// Reference: src/vue/
|
2534 |
-
|
|
|
2535 |
|
2536 |
-
// Reference: src/vue/
|
2537 |
-
|
|
|
2538 |
|
2539 |
-
// Reference: src/vue/
|
2540 |
-
|
|
|
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 |
|
2557 |
-
// Reference: src/vue/
|
2558 |
-
__( '
|
2559 |
|
2560 |
-
// Reference: src/vue/
|
2561 |
-
|
2562 |
-
/* Translators: 1 - The plugin short name name ("AIOSEO"), 2 - "Learn more". */
|
2563 |
-
__( 'This feature is only for licensed %1$s users. %2$s', 'all-in-one-seo-pack' ),
|
2564 |
|
2565 |
-
// Reference: src/vue/
|
2566 |
-
__( '
|
2567 |
|
2568 |
-
// Reference: src/vue/
|
2569 |
-
__( '
|
2570 |
|
2571 |
-
// Reference: src/vue/
|
2572 |
-
__( '
|
2573 |
|
2574 |
-
// Reference: src/vue/
|
2575 |
-
__( '
|
2576 |
|
2577 |
-
// Reference: src/vue/
|
2578 |
-
__( '
|
2579 |
|
2580 |
-
// Reference: src/vue/
|
2581 |
-
__( '
|
2582 |
|
2583 |
-
// Reference: src/vue/
|
2584 |
-
__( '
|
2585 |
|
2586 |
-
// Reference: src/vue/
|
2587 |
-
__( '
|
2588 |
|
2589 |
-
// Reference: src/vue/
|
2590 |
-
__( '
|
2591 |
|
2592 |
-
// Reference: src/vue/
|
2593 |
-
|
|
|
2594 |
|
2595 |
-
// Reference: src/vue/
|
2596 |
-
|
2597 |
-
__( '
|
2598 |
|
2599 |
-
// Reference: src/vue/
|
2600 |
-
__( '
|
2601 |
|
2602 |
-
// Reference: src/vue/
|
2603 |
-
__( '
|
2604 |
|
2605 |
-
// Reference: src/vue/
|
2606 |
-
|
2607 |
-
__( 'Not sure what keyphrases are used for? Check out our documentation for more information. %1$s', 'all-in-one-seo-pack' ),
|
2608 |
|
2609 |
-
// Reference: src/vue/
|
2610 |
-
|
2611 |
-
__( '%1$s Title', 'all-in-one-seo-pack' ),
|
2612 |
|
2613 |
-
// Reference: src/vue/
|
2614 |
-
__( '
|
2615 |
|
2616 |
-
// Reference: src/vue/
|
2617 |
-
__( '
|
2618 |
|
2619 |
-
// Reference: src/vue/
|
2620 |
-
__( '
|
2621 |
|
2622 |
-
// Reference: src/vue/
|
2623 |
-
__( '
|
2624 |
|
2625 |
-
// Reference: src/vue/
|
2626 |
-
__( '
|
2627 |
|
2628 |
-
// Reference: src/vue/
|
2629 |
-
__( '
|
2630 |
|
2631 |
-
// Reference: src/vue/
|
2632 |
-
__( '
|
2633 |
|
2634 |
-
// Reference: src/vue/
|
2635 |
-
__( '
|
2636 |
|
2637 |
-
// Reference: src/vue/
|
2638 |
-
__( '
|
2639 |
|
2640 |
-
// Reference: src/vue/
|
2641 |
-
|
2642 |
-
__( 'Enable this feature if you want Twitter to display a preview card with images and a text excerpt when a link to your site is shared.', 'all-in-one-seo-pack' ),
|
2643 |
|
2644 |
-
// Reference: src/vue/
|
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 |
-
__( 'Use our configuration wizard to properly set up %1$s with your WordPress website.', 'all-in-one-seo-pack' ),
|
2704 |
|
2705 |
-
// Reference: src/vue/
|
2706 |
-
__( '
|
2707 |
|
2708 |
-
// Reference: src/vue/
|
2709 |
-
__( '
|
2710 |
|
2711 |
-
// Reference: src/vue/
|
2712 |
-
__( '
|
2713 |
|
2714 |
-
// Reference: src/vue/
|
2715 |
-
__( '
|
2716 |
|
2717 |
-
// Reference: src/vue/
|
2718 |
-
__( '
|
2719 |
|
2720 |
-
// Reference: src/vue/
|
2721 |
-
|
2722 |
-
__( 'Select which Post Types you want to use the %1$s columns with.', 'all-in-one-seo-pack' ),
|
2723 |
|
2724 |
-
// Reference: src/vue/
|
2725 |
-
__( '
|
2726 |
|
2727 |
-
// Reference: src/vue/
|
2728 |
-
__( '
|
2729 |
|
2730 |
-
// Reference: src/vue/
|
2731 |
-
|
2732 |
-
__( 'This adds %1$s to the admin toolbar for easy access to your SEO settings.', 'all-in-one-seo-pack' ),
|
2733 |
|
2734 |
-
// Reference: src/vue/
|
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 |
-
__( 'Complete documentation on usage tracking is available %1$shere%2$s.', 'all-in-one-seo-pack' ),
|
2770 |
|
2771 |
-
// Reference: src/vue/
|
2772 |
-
/* Translators: 1 - The
|
2773 |
-
__( '
|
2774 |
|
2775 |
-
// Reference: src/vue/
|
2776 |
-
/* Translators: 1 - The
|
2777 |
-
__( '
|
2778 |
|
2779 |
-
// Reference: src/vue/
|
2780 |
-
|
|
|
2781 |
|
2782 |
-
// Reference: src/vue/
|
2783 |
-
/* Translators: 1 - Plugin
|
2784 |
-
__( '
|
2785 |
|
2786 |
-
// Reference: src/vue/
|
2787 |
-
|
2788 |
-
__( 'Uninstall %1$s', 'all-in-one-seo-pack' ),
|
2789 |
|
2790 |
-
// Reference: src/vue/
|
2791 |
-
|
2792 |
-
__( 'Check this if you would like to remove ALL %1$s data upon plugin deletion. All settings and SEO data will be unrecoverable.', 'all-in-one-seo-pack' ),
|
2793 |
|
2794 |
-
// Reference: src/vue/
|
2795 |
-
|
2796 |
-
__( 'Use the following shortcode to display the current breadcrumbs. %1$s', 'all-in-one-seo-pack' ),
|
2797 |
|
2798 |
-
// Reference: src/vue/
|
2799 |
-
/* Translators: 1 - The
|
2800 |
-
__( '
|
2801 |
|
2802 |
-
// Reference: src/vue/
|
2803 |
-
/* Translators: 1 -
|
2804 |
-
__( '
|
2805 |
|
2806 |
-
// Reference: src/vue/
|
2807 |
-
/* Translators: 1 -
|
2808 |
-
__( '
|
2809 |
|
2810 |
-
// Reference: src/vue/
|
2811 |
-
|
2812 |
-
__( 'Breadcrumbs are an essential part of SEO. By default %1$s will automatically add breadcrumbs to the schema markup that we add to your site and you don\'t need to make any changes for that to work. Breadcrumbs can also be used as a secondary navigation system that tells users where they are on a website relative to the homepage.', 'all-in-one-seo-pack' ),
|
2813 |
|
2814 |
-
// Reference: src/vue/
|
2815 |
-
__( '
|
2816 |
|
2817 |
-
// Reference: src/vue/
|
2818 |
-
__( '
|
2819 |
|
2820 |
-
// Reference: src/vue/
|
2821 |
-
__( '
|
2822 |
|
2823 |
-
// Reference: src/vue/
|
2824 |
-
|
|
|
2825 |
|
2826 |
-
// Reference: src/vue/
|
2827 |
-
|
2828 |
-
__( 'These settings will affect all the breadcrumbs displayed by %1$s throughout your site.', 'all-in-one-seo-pack' ),
|
2829 |
|
2830 |
-
// Reference: src/vue/
|
2831 |
-
__( '
|
2832 |
|
2833 |
-
// Reference: src/vue/
|
2834 |
-
__( '
|
2835 |
|
2836 |
-
// Reference: src/vue/
|
2837 |
-
|
|
|
2838 |
|
2839 |
-
// Reference: src/vue/
|
2840 |
-
__( '
|
2841 |
|
2842 |
-
// Reference: src/vue/
|
2843 |
-
__( '
|
2844 |
|
2845 |
-
// Reference: src/vue/
|
2846 |
-
__( '
|
2847 |
|
2848 |
-
// Reference: src/vue/
|
2849 |
-
__( '
|
2850 |
|
2851 |
-
// Reference: src/vue/
|
2852 |
-
__( '
|
2853 |
|
2854 |
-
// Reference: src/vue/
|
2855 |
-
__( '
|
2856 |
|
2857 |
-
// Reference: src/vue/
|
2858 |
-
|
|
|
2859 |
|
2860 |
-
// Reference: src/vue/
|
2861 |
-
__( '
|
2862 |
|
2863 |
-
// Reference: src/vue/
|
2864 |
-
__( '
|
2865 |
|
2866 |
-
// Reference: src/vue/
|
2867 |
-
__( '
|
2868 |
|
2869 |
-
// Reference: src/vue/
|
2870 |
-
__( '
|
2871 |
|
2872 |
-
// Reference: src/vue/
|
2873 |
-
__( '
|
2874 |
|
2875 |
-
// Reference: src/vue/
|
2876 |
-
__( '
|
2877 |
|
2878 |
-
// Reference: src/vue/
|
2879 |
-
__( '
|
2880 |
|
2881 |
-
// Reference: src/vue/
|
2882 |
-
__( '
|
2883 |
|
2884 |
-
// Reference: src/vue/
|
2885 |
-
|
|
|
2886 |
|
2887 |
-
// Reference: src/vue/
|
2888 |
-
|
|
|
2889 |
|
2890 |
-
// Reference: src/vue/
|
2891 |
-
__( '
|
2892 |
|
2893 |
-
// Reference: src/vue/
|
2894 |
-
__( '
|
2895 |
|
2896 |
-
// Reference: src/vue/
|
2897 |
-
__( '
|
2898 |
|
2899 |
-
// Reference: src/vue/
|
2900 |
-
__( '
|
2901 |
|
2902 |
-
// Reference: src/vue/
|
2903 |
-
__( '
|
2904 |
|
2905 |
-
// Reference: src/vue/
|
2906 |
-
|
|
|
2907 |
|
2908 |
-
// Reference: src/vue/
|
2909 |
-
|
|
|
2910 |
|
2911 |
-
// Reference: src/vue/
|
2912 |
-
__( 'This
|
2913 |
|
2914 |
-
// Reference: src/vue/
|
2915 |
-
__( '
|
2916 |
|
2917 |
-
// Reference: src/vue/
|
2918 |
-
__( '
|
2919 |
|
2920 |
-
// Reference: src/vue/
|
2921 |
-
__( '
|
2922 |
|
2923 |
-
// Reference: src/vue/
|
2924 |
-
__( '
|
2925 |
|
2926 |
-
// Reference: src/vue/
|
2927 |
-
__( '
|
2928 |
|
2929 |
-
// Reference: src/vue/
|
2930 |
-
|
|
|
2931 |
|
2932 |
-
// Reference: src/vue/
|
2933 |
-
|
|
|
2934 |
|
2935 |
-
// Reference: src/vue/
|
2936 |
-
|
|
|
2937 |
|
2938 |
-
// Reference: src/vue/
|
2939 |
-
|
2940 |
-
__( 'for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
|
2941 |
|
2942 |
-
// Reference: src/vue/
|
2943 |
-
__( '
|
2944 |
|
2945 |
-
// Reference: src/vue/
|
2946 |
-
__( '
|
2947 |
|
2948 |
-
// Reference: src/vue/
|
2949 |
-
__( '
|
2950 |
|
2951 |
-
// Reference: src/vue/
|
2952 |
-
__( '
|
2953 |
|
2954 |
-
// Reference: src/vue/
|
2955 |
-
__( '
|
2956 |
|
2957 |
-
// Reference: src/vue/
|
2958 |
-
__( '
|
2959 |
|
2960 |
-
// Reference: src/vue/
|
2961 |
-
__( '
|
2962 |
|
2963 |
-
// Reference: src/vue/
|
2964 |
-
__( '
|
2965 |
|
2966 |
-
// Reference: src/vue/
|
2967 |
-
|
|
|
2968 |
|
2969 |
-
// Reference: src/vue/
|
2970 |
-
|
|
|
2971 |
|
2972 |
-
// Reference: src/vue/
|
2973 |
-
__( '
|
2974 |
|
2975 |
-
// Reference: src/vue/
|
2976 |
-
__( '
|
2977 |
|
2978 |
-
// Reference: src/vue/
|
2979 |
-
__( '
|
2980 |
|
2981 |
-
// Reference: src/vue/
|
2982 |
-
__( '
|
2983 |
|
2984 |
-
// Reference: src/vue/
|
2985 |
-
__( '
|
2986 |
|
2987 |
-
// Reference: src/vue/
|
2988 |
-
__( '
|
2989 |
|
2990 |
-
// Reference: src/vue/
|
2991 |
-
__( '
|
2992 |
|
2993 |
-
// Reference: src/vue/
|
2994 |
-
__( '
|
2995 |
|
2996 |
-
// Reference: src/vue/
|
2997 |
-
__( '
|
2998 |
|
2999 |
-
// Reference: src/vue/
|
3000 |
-
__( '
|
3001 |
|
3002 |
-
// Reference: src/vue/
|
3003 |
-
__( '
|
3004 |
|
3005 |
-
// Reference: src/vue/
|
3006 |
-
__( '
|
3007 |
|
3008 |
-
// Reference: src/vue/
|
3009 |
-
__( '
|
3010 |
|
3011 |
-
// Reference: src/vue/
|
3012 |
-
__( '
|
3013 |
|
3014 |
-
// Reference: src/vue/
|
3015 |
-
__( '
|
3016 |
|
3017 |
-
// Reference: src/vue/
|
3018 |
-
|
3019 |
-
__( 'The code above will be added between the %1$s tags on every page on your website.', 'all-in-one-seo-pack' ),
|
3020 |
|
3021 |
-
// Reference: src/vue/
|
3022 |
-
__( '
|
3023 |
|
3024 |
-
// Reference: src/vue/
|
3025 |
-
__( '
|
3026 |
|
3027 |
-
// Reference: src/vue/
|
3028 |
-
|
3029 |
-
__( 'Google Analytics is now handled by %1$s.', 'all-in-one-seo-pack' ),
|
3030 |
|
3031 |
-
// Reference: src/vue/
|
3032 |
-
__( '
|
3033 |
|
3034 |
-
// Reference: src/vue/
|
3035 |
-
__( '
|
3036 |
|
3037 |
-
// Reference: src/vue/
|
3038 |
-
|
3039 |
-
__( 'We recommend using the %1$sFree MonsterInsights%2$s plugin to get the most out of Google Analytics.', 'all-in-one-seo-pack' ),
|
3040 |
|
3041 |
-
// Reference: src/vue/
|
3042 |
-
|
3043 |
-
__( 'We recommend using the %1$sFree ExactMetrics%2$s plugin to get the most out of Google Analytics.', 'all-in-one-seo-pack' ),
|
3044 |
|
3045 |
-
// Reference: src/vue/
|
3046 |
-
__( '
|
3047 |
|
3048 |
-
// Reference: src/vue/
|
3049 |
-
/* Translators: 1 -
|
3050 |
-
__( '
|
3051 |
|
3052 |
-
// Reference: src/vue/
|
3053 |
-
/* Translators: 1 -
|
3054 |
-
__( '
|
3055 |
|
3056 |
-
// Reference: src/vue/
|
3057 |
-
|
|
|
3058 |
|
3059 |
-
// Reference: src/vue/
|
3060 |
-
/* Translators: 1 -
|
3061 |
-
__( '
|
3062 |
|
3063 |
-
// Reference: src/vue/
|
3064 |
-
/* Translators: 1 -
|
3065 |
-
__( '
|
3066 |
|
3067 |
-
// Reference: src/vue/
|
3068 |
-
|
|
|
3069 |
|
3070 |
-
// Reference: src/vue/
|
3071 |
-
|
3072 |
-
__( 'Yandex Webmaster Tools', 'all-in-one-seo-pack' ),
|
3073 |
|
3074 |
-
// Reference: src/vue/
|
3075 |
-
|
3076 |
-
__( 'Get your Yandex verification code in %1$s.', 'all-in-one-seo-pack' ),
|
3077 |
|
3078 |
-
// Reference: src/vue/
|
3079 |
-
__( '
|
3080 |
|
3081 |
-
// Reference: src/vue/
|
3082 |
-
|
3083 |
-
__( 'Baidu Webmaster Tools', 'all-in-one-seo-pack' ),
|
3084 |
|
3085 |
-
// Reference: src/vue/
|
3086 |
-
|
3087 |
-
__( 'Get your Baidu verification code in %1$s.', 'all-in-one-seo-pack' ),
|
3088 |
|
3089 |
-
// Reference: src/vue/
|
3090 |
-
__( '
|
3091 |
|
3092 |
-
// Reference: src/vue/
|
3093 |
-
|
3094 |
-
__( 'Get your Pinterest verification code in your %1$s.', 'all-in-one-seo-pack' ),
|
3095 |
|
3096 |
-
// Reference: src/vue/
|
3097 |
-
|
3098 |
-
__( 'Pinterest account', 'all-in-one-seo-pack' ),
|
3099 |
|
3100 |
-
// Reference: src/vue/
|
3101 |
-
|
|
|
3102 |
|
3103 |
-
// Reference: src/vue/
|
3104 |
-
|
|
|
3105 |
|
3106 |
-
// Reference: src/vue/
|
3107 |
-
|
3108 |
-
__( '
|
3109 |
|
3110 |
-
// Reference: src/vue/
|
3111 |
-
/* Translators: 1 - "
|
3112 |
-
__( '
|
3113 |
|
3114 |
-
// Reference: src/vue/pages/settings/views/
|
3115 |
-
|
|
|
3116 |
|
3117 |
-
// Reference: src/vue/
|
3118 |
-
|
3119 |
-
__( '
|
3120 |
|
3121 |
-
// Reference: src/vue/
|
3122 |
-
__( '
|
3123 |
|
3124 |
-
// Reference: src/vue/
|
3125 |
-
|
3126 |
-
__( 'Enter your domain name without the %1$s to set your cookie domain.%2$s%3$s', 'all-in-one-seo-pack' ),
|
3127 |
|
3128 |
-
// Reference: src/vue/
|
3129 |
-
__( '
|
3130 |
|
3131 |
-
// Reference: src/vue/pages/settings/views/
|
3132 |
-
/* Translators: 1 -
|
3133 |
-
__( '
|
3134 |
|
3135 |
-
// Reference: src/vue/pages/settings/views/
|
3136 |
-
|
|
|
3137 |
|
3138 |
-
// Reference: src/vue/
|
3139 |
-
/* Translators: 1 -
|
3140 |
-
__( '
|
3141 |
|
3142 |
-
// Reference: src/vue/
|
3143 |
-
|
|
|
3144 |
|
3145 |
-
// Reference: src/vue/
|
3146 |
-
|
3147 |
-
__( 'This enables support for IP Anonymization in Google Analytics.%1$s%2$s', 'all-in-one-seo-pack' ),
|
3148 |
|
3149 |
-
// Reference: src/vue/
|
3150 |
-
__( '
|
3151 |
|
3152 |
-
// Reference: src/vue/
|
3153 |
-
|
3154 |
-
__( 'This enables support for the Display Advertiser Features in Google Analytics.%1$s%2$s', 'all-in-one-seo-pack' ),
|
3155 |
|
3156 |
-
// Reference: src/vue/
|
3157 |
-
__( '
|
3158 |
|
3159 |
-
// Reference: src/vue/
|
3160 |
-
|
3161 |
-
__( 'Exclude logged-in users from Google Analytics tracking by role.%1$s%2$s', 'all-in-one-seo-pack' ),
|
3162 |
|
3163 |
-
// Reference: src/vue/
|
3164 |
-
__( '
|
3165 |
|
3166 |
-
// Reference: src/vue/
|
3167 |
-
/* Translators: 1 -
|
3168 |
-
__( '
|
3169 |
|
3170 |
-
// Reference: src/vue/
|
3171 |
-
__( '
|
3172 |
|
3173 |
-
// Reference: src/vue/
|
3174 |
-
|
3175 |
-
__( 'This enables tracking outbound links with Google Analytics.%1$s%2$s', 'all-in-one-seo-pack' ),
|
3176 |
|
3177 |
-
// Reference: src/vue/
|
3178 |
-
__( '
|
3179 |
|
3180 |
-
// Reference: src/vue/
|
3181 |
-
|
3182 |
-
__( 'This enables support for the Enhanced Ecommerce in Google Analytics.%1$s%2$s', 'all-in-one-seo-pack' ),
|
3183 |
|
3184 |
-
// Reference: src/vue/
|
3185 |
-
__( '
|
3186 |
|
3187 |
-
// Reference: src/vue/
|
3188 |
-
__( '
|
3189 |
|
3190 |
-
// Reference: src/vue/
|
3191 |
-
__( '
|
3192 |
|
3193 |
-
// Reference: src/vue/
|
3194 |
-
__( '
|
3195 |
|
3196 |
-
// Reference: src/vue/
|
3197 |
-
__( '
|
3198 |
|
3199 |
-
// Reference: src/vue/
|
3200 |
-
__( '
|
3201 |
|
3202 |
-
// Reference: src/vue/
|
3203 |
-
|
|
|
3204 |
|
3205 |
-
// Reference: src/vue/
|
3206 |
-
|
|
|
3207 |
|
3208 |
-
// Reference: src/vue/
|
3209 |
-
__( '
|
3210 |
|
3211 |
-
// Reference: src/vue/
|
3212 |
-
__( '
|
3213 |
|
3214 |
-
// Reference: src/vue/
|
3215 |
-
|
3216 |
-
__( 'Get your Google Tag Manager ID in your %1$s.', 'all-in-one-seo-pack' ),
|
3217 |
|
3218 |
-
// Reference: src/vue/
|
3219 |
-
__( '
|
3220 |
|
3221 |
-
// Reference: src/vue/pages/about/views/
|
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 |
-
__( '
|
3241 |
|
3242 |
-
// Reference: src/vue/
|
3243 |
-
__( '
|
3244 |
|
3245 |
-
// Reference: src/vue/
|
3246 |
-
__( '
|
3247 |
|
3248 |
-
// Reference: src/vue/
|
3249 |
-
__( '
|
3250 |
|
3251 |
-
// Reference: src/vue/
|
3252 |
-
__( '
|
3253 |
|
3254 |
-
// Reference: src/vue/
|
3255 |
-
__( '
|
3256 |
|
3257 |
-
// Reference: src/vue/
|
3258 |
-
|
|
|
3259 |
|
3260 |
-
// Reference: src/vue/
|
3261 |
-
__( '
|
3262 |
|
3263 |
-
// Reference: src/vue/
|
3264 |
-
__( '
|
3265 |
|
3266 |
-
// Reference: src/vue/
|
3267 |
-
__( '
|
3268 |
|
3269 |
-
// Reference: src/vue/
|
3270 |
-
__( '
|
3271 |
|
3272 |
-
// Reference: src/vue/pages/about/views/
|
3273 |
-
__( '
|
3274 |
|
3275 |
-
// Reference: src/vue/
|
3276 |
-
|
|
|
3277 |
|
3278 |
-
// Reference: src/vue/pages/about/views/
|
3279 |
-
__( '
|
3280 |
|
3281 |
-
// Reference: src/vue/
|
3282 |
-
__( '
|
3283 |
|
3284 |
-
// Reference: src/vue/
|
3285 |
-
__( '
|
3286 |
|
3287 |
-
// Reference: src/vue/
|
3288 |
-
__( '
|
3289 |
|
3290 |
-
// Reference: src/vue/
|
3291 |
-
__( '
|
3292 |
|
3293 |
-
// Reference: src/vue/
|
3294 |
-
__( '
|
3295 |
|
3296 |
-
// Reference: src/vue/
|
3297 |
-
__( '
|
3298 |
|
3299 |
-
// Reference: src/vue/
|
3300 |
-
__( '
|
3301 |
|
3302 |
-
// Reference: src/vue/
|
3303 |
-
__( '
|
3304 |
|
3305 |
-
// Reference: src/vue/
|
3306 |
-
__( '
|
3307 |
|
3308 |
-
// Reference: src/vue/
|
3309 |
-
__( '
|
3310 |
|
3311 |
-
// Reference: src/vue/
|
3312 |
-
__( '
|
3313 |
|
3314 |
-
// Reference: src/vue/
|
3315 |
-
__( '
|
3316 |
|
3317 |
-
// Reference: src/vue/
|
3318 |
-
__( '
|
3319 |
|
3320 |
-
// Reference: src/vue/
|
3321 |
-
__( '
|
3322 |
|
3323 |
-
// Reference: src/vue/
|
3324 |
-
__( '
|
3325 |
|
3326 |
-
// Reference: src/vue/
|
3327 |
-
|
3328 |
-
__( 'Cause', 'all-in-one-seo-pack' ),
|
3329 |
|
3330 |
-
// Reference: src/vue/
|
3331 |
-
__( '
|
3332 |
|
3333 |
-
// Reference: src/vue/
|
3334 |
-
__( '
|
3335 |
|
3336 |
-
// Reference: src/vue/
|
3337 |
-
__( '
|
3338 |
|
3339 |
-
// Reference: src/vue/
|
3340 |
-
|
3341 |
-
__( 'Band', 'all-in-one-seo-pack' ),
|
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 |
|
3403 |
-
// Reference: src/vue/
|
3404 |
-
__( '
|
3405 |
|
3406 |
-
// Reference: src/vue/
|
3407 |
-
__( '
|
3408 |
|
3409 |
-
// Reference: src/vue/
|
3410 |
-
__( '
|
3411 |
|
3412 |
-
// Reference: src/vue/
|
3413 |
-
__( '
|
3414 |
|
3415 |
-
// Reference: src/vue/
|
3416 |
-
__( '
|
3417 |
|
3418 |
-
// Reference: src/vue/
|
3419 |
-
__( '
|
3420 |
|
3421 |
-
// Reference: src/vue/
|
3422 |
-
__( '
|
3423 |
|
3424 |
-
// Reference: src/vue/
|
3425 |
-
__( '
|
3426 |
|
3427 |
-
// Reference: src/vue/pages/
|
3428 |
-
|
3429 |
-
__( 'Article', 'all-in-one-seo-pack' ),
|
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 |
|
3482 |
-
// Reference: src/vue/
|
3483 |
-
__( '
|
3484 |
|
3485 |
-
// Reference: src/vue/
|
3486 |
-
__( '
|
3487 |
|
3488 |
-
// Reference: src/vue/
|
3489 |
-
|
|
|
3490 |
|
3491 |
-
// Reference: src/vue/
|
3492 |
-
__( '
|
3493 |
|
3494 |
-
// Reference: src/vue/
|
3495 |
-
__( '
|
3496 |
|
3497 |
-
// Reference: src/vue/
|
3498 |
-
__( '
|
3499 |
|
3500 |
-
// Reference: src/vue/
|
3501 |
-
|
|
|
3502 |
|
3503 |
-
// Reference: src/vue/
|
3504 |
-
__( '
|
3505 |
|
3506 |
-
// Reference: src/vue/
|
3507 |
-
__( '
|
3508 |
|
3509 |
-
// Reference: src/vue/
|
3510 |
-
__( '
|
3511 |
|
3512 |
-
// Reference: src/vue/
|
3513 |
-
__( '
|
3514 |
|
3515 |
-
// Reference: src/vue/
|
3516 |
-
__( '
|
3517 |
|
3518 |
-
// Reference: src/vue/
|
3519 |
-
__( '
|
3520 |
|
3521 |
-
// Reference: src/vue/
|
3522 |
-
__( '
|
3523 |
|
3524 |
-
// Reference: src/vue/
|
3525 |
-
__( '
|
3526 |
|
3527 |
-
// Reference: src/vue/
|
3528 |
-
|
|
|
3529 |
|
3530 |
-
// Reference: src/vue/
|
3531 |
-
__( '
|
3532 |
|
3533 |
-
// Reference: src/vue/
|
3534 |
-
__( '
|
3535 |
|
3536 |
-
// Reference: src/vue/
|
3537 |
-
__( '
|
3538 |
|
3539 |
-
// Reference: src/vue/
|
3540 |
-
__( '
|
3541 |
|
3542 |
-
// Reference: src/vue/
|
3543 |
-
__( '
|
3544 |
|
3545 |
-
// Reference: src/vue/
|
3546 |
-
__( '
|
3547 |
|
3548 |
-
// Reference: src/vue/
|
3549 |
-
__( '
|
3550 |
|
3551 |
-
// Reference: src/vue/pages/
|
3552 |
-
__( '
|
3553 |
|
3554 |
-
// Reference: src/vue/
|
3555 |
-
__( '
|
3556 |
|
3557 |
-
// Reference: src/vue/
|
3558 |
-
__( '
|
3559 |
|
3560 |
-
// Reference: src/vue/
|
3561 |
-
__( '
|
3562 |
|
3563 |
-
// Reference: src/vue/
|
3564 |
-
__( '
|
3565 |
|
3566 |
-
// Reference: src/vue/
|
3567 |
-
__( '
|
3568 |
|
3569 |
-
// Reference: src/vue/
|
3570 |
-
__( '
|
3571 |
|
3572 |
-
// Reference: src/vue/
|
3573 |
-
|
|
|
3574 |
|
3575 |
-
// Reference: src/vue/
|
3576 |
-
__( '
|
3577 |
-
|
3578 |
-
// Reference: src/vue/plugins/constants.js:1451
|
3579 |
-
__( 'Libraries', 'all-in-one-seo-pack' ),
|
3580 |
-
|
3581 |
-
// Reference: src/vue/plugins/constants.js:1452
|
3582 |
-
__( 'Logged In', 'all-in-one-seo-pack' ),
|
3583 |
|
3584 |
-
// Reference: src/vue/
|
3585 |
-
__( '
|
3586 |
|
3587 |
-
// Reference: src/vue/
|
3588 |
-
__( '
|
3589 |
|
3590 |
-
// Reference: src/vue/
|
3591 |
-
__( '
|
3592 |
|
3593 |
-
// Reference: src/vue/
|
3594 |
-
__( '
|
3595 |
|
3596 |
-
// Reference: src/vue/
|
3597 |
-
__( '
|
3598 |
|
3599 |
-
// Reference: src/vue/
|
3600 |
-
__( '
|
3601 |
|
3602 |
-
// Reference: src/vue/
|
3603 |
-
__( '
|
3604 |
|
3605 |
-
// Reference: src/vue/
|
3606 |
-
__( '
|
3607 |
|
3608 |
-
// Reference: src/vue/
|
3609 |
-
__( '
|
3610 |
|
3611 |
-
// Reference: src/vue/
|
3612 |
-
__( '
|
3613 |
|
3614 |
-
// Reference: src/vue/
|
3615 |
-
__( '
|
3616 |
|
3617 |
-
// Reference: src/vue/
|
3618 |
-
__( '
|
3619 |
|
3620 |
-
// Reference: src/vue/
|
3621 |
-
|
|
|
3622 |
|
3623 |
-
// Reference: src/vue/
|
3624 |
-
__( '
|
3625 |
|
3626 |
-
// Reference: src/vue/
|
3627 |
-
__( '
|
3628 |
|
3629 |
-
// Reference: src/vue/
|
3630 |
-
__( '
|
3631 |
|
3632 |
-
// Reference: src/vue/
|
3633 |
-
__( '
|
3634 |
|
3635 |
-
// Reference: src/vue/pages/
|
3636 |
-
|
|
|
3637 |
|
3638 |
-
// Reference: src/vue/pages/
|
3639 |
-
__( '
|
3640 |
|
3641 |
-
// Reference: src/vue/pages/
|
3642 |
-
|
3643 |
-
__( '
|
3644 |
|
3645 |
-
// Reference: src/vue/pages/
|
3646 |
-
|
|
|
3647 |
|
3648 |
-
// Reference: src/vue/pages/
|
3649 |
-
// Reference: src/vue/pages/
|
3650 |
-
|
|
|
3651 |
|
3652 |
-
// Reference: src/vue/pages/
|
3653 |
-
// Reference: src/vue/pages/
|
3654 |
-
|
|
|
3655 |
|
3656 |
-
// Reference: src/vue/pages/
|
3657 |
-
// Reference: src/vue/pages/
|
3658 |
-
|
|
|
3659 |
|
3660 |
-
// Reference: src/vue/pages/
|
3661 |
-
// Reference: src/vue/pages/
|
3662 |
-
|
|
|
3663 |
|
3664 |
-
// Reference: src/vue/pages/
|
3665 |
-
|
|
|
3666 |
|
3667 |
-
// Reference: src/vue/pages/
|
3668 |
-
|
|
|
3669 |
|
3670 |
-
// Reference: src/vue/
|
3671 |
-
|
3672 |
-
__( '%1$s - Breadcrumbs', 'all-in-one-seo-pack' ),
|
3673 |
|
3674 |
-
// Reference: src/vue/pages/
|
3675 |
-
|
|
|
3676 |
|
3677 |
-
// Reference: src/vue/pages/
|
3678 |
-
|
|
|
3679 |
|
3680 |
-
// Reference: src/vue/pages/
|
3681 |
-
|
|
|
3682 |
|
3683 |
-
// Reference: src/vue/pages/
|
3684 |
-
|
|
|
3685 |
|
3686 |
-
// Reference: src/vue/pages/
|
3687 |
-
__( '
|
3688 |
|
3689 |
-
// Reference: src/vue/pages/
|
3690 |
-
__( '
|
3691 |
|
3692 |
-
// Reference: src/vue/pages/
|
3693 |
-
__( '
|
3694 |
|
3695 |
-
// Reference: src/vue/pages/local-
|
3696 |
-
__( '
|
3697 |
|
3698 |
-
// Reference: src/vue/pages/local-
|
3699 |
-
__( '
|
3700 |
|
3701 |
-
// Reference: src/vue/
|
3702 |
-
__( '
|
3703 |
|
3704 |
// Reference: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:100
|
3705 |
/* Translators: 1 - Strong tag, 2 - Close strong tag. */
|
@@ -3717,1429 +3672,1744 @@ $generated_i18n_strings = array(
|
|
3717 |
// Reference: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:96
|
3718 |
__( 'Custom Marker', 'all-in-one-seo-pack' ),
|
3719 |
|
3720 |
-
// Reference: src/vue/pages/
|
3721 |
-
|
3722 |
-
__( 'Additional Keyphrases by %1$s', 'all-in-one-seo-pack' ),
|
3723 |
|
3724 |
-
// Reference: src/vue/pages/
|
3725 |
-
__( '
|
3726 |
|
3727 |
-
// Reference: src/vue/pages/
|
3728 |
-
__( '
|
3729 |
|
3730 |
-
// Reference: src/vue/pages/
|
3731 |
-
|
|
|
3732 |
|
3733 |
-
// Reference: src/vue/
|
3734 |
-
__( '
|
3735 |
|
3736 |
-
// Reference: src/vue/pages/
|
3737 |
-
__( '
|
3738 |
|
3739 |
-
// Reference: src/vue/pages/
|
3740 |
-
__( '
|
3741 |
|
3742 |
-
// Reference: src/vue/pages/
|
3743 |
-
__( '
|
3744 |
|
3745 |
-
// Reference: src/vue/pages/
|
3746 |
-
|
|
|
3747 |
|
3748 |
-
// Reference: src/vue/pages/
|
3749 |
-
|
|
|
3750 |
|
3751 |
-
// Reference: src/vue/pages/
|
3752 |
-
|
3753 |
-
__( 'Analyzing your content with %1$s keywords is only available to licensed %2$s users. %3$s', 'all-in-one-seo-pack' ),
|
3754 |
|
3755 |
-
// Reference: src/vue/pages/
|
3756 |
-
|
3757 |
-
__( '%1$s integrates directly with %2$s to provide you with actionable keyphrases to help you write better content.', 'all-in-one-seo-pack' ),
|
3758 |
|
3759 |
-
// Reference: src/vue/pages/
|
3760 |
-
__( '
|
3761 |
|
3762 |
-
// Reference: src/vue/pages/
|
3763 |
-
|
3764 |
-
__( 'Get Additional Keyphrases with %1$s!', 'all-in-one-seo-pack' ),
|
3765 |
|
3766 |
-
// Reference: src/vue/pages/
|
3767 |
-
|
3768 |
-
__( '%1$sA valid license key is required%2$s in order to connect with %3$s.', 'all-in-one-seo-pack' ),
|
3769 |
|
3770 |
-
// Reference: src/vue/pages/
|
3771 |
-
__( '
|
3772 |
|
3773 |
-
// Reference: src/vue/pages/
|
3774 |
-
__( '
|
3775 |
|
3776 |
-
// Reference: src/vue/pages/search-appearance/
|
3777 |
-
__( '
|
3778 |
|
3779 |
-
// Reference: src/vue/pages/
|
3780 |
-
|
|
|
3781 |
|
3782 |
-
// Reference: src/vue/pages/
|
3783 |
-
__( '
|
3784 |
-
|
3785 |
-
// Reference: src/vue/pages/tools/views/RobotsEditor.vue:240
|
3786 |
-
__( 'Robots.txt Editor', 'all-in-one-seo-pack' ),
|
3787 |
|
3788 |
-
// Reference: src/vue/pages/
|
3789 |
-
|
|
|
3790 |
|
3791 |
-
// Reference: src/vue/pages/
|
3792 |
-
__( '
|
3793 |
|
3794 |
-
// Reference: src/vue/pages/
|
3795 |
-
__( '
|
3796 |
|
3797 |
-
// Reference: src/vue/pages/
|
3798 |
-
__( '
|
3799 |
|
3800 |
-
// Reference: src/vue/pages/
|
3801 |
-
__( '
|
3802 |
|
3803 |
-
// Reference: src/vue/pages/
|
3804 |
-
__( '
|
3805 |
|
3806 |
-
// Reference: src/vue/pages/
|
3807 |
-
__( '
|
3808 |
|
3809 |
-
// Reference: src/vue/
|
3810 |
-
__( '
|
3811 |
|
3812 |
-
// Reference: src/vue/
|
3813 |
-
__( '
|
3814 |
|
3815 |
-
// Reference: src/vue/
|
3816 |
-
|
|
|
3817 |
|
3818 |
-
// Reference: src/vue/
|
3819 |
-
|
|
|
3820 |
|
3821 |
-
// Reference: src/vue/
|
3822 |
-
__( '
|
3823 |
|
3824 |
-
// Reference: src/vue/
|
3825 |
-
__( '
|
3826 |
|
3827 |
-
// Reference: src/vue/
|
3828 |
-
__( '
|
3829 |
|
3830 |
-
// Reference: src/vue/
|
3831 |
-
__( '
|
3832 |
|
3833 |
-
// Reference: src/vue/
|
3834 |
-
__( '
|
3835 |
|
3836 |
-
// Reference: src/vue/
|
3837 |
-
__( '
|
3838 |
|
3839 |
-
// Reference: src/vue/
|
3840 |
-
__( '
|
3841 |
|
3842 |
-
// Reference: src/vue/pages/
|
3843 |
-
|
3844 |
-
__( 'Exclude Posts / Pages', 'all-in-one-seo-pack' ),
|
3845 |
|
3846 |
-
// Reference: src/vue/pages/
|
3847 |
-
|
3848 |
-
__( '
|
3849 |
|
3850 |
-
// Reference: src/vue/pages/
|
3851 |
-
__( '
|
3852 |
|
3853 |
-
// Reference: src/vue/pages/
|
3854 |
-
__( '
|
3855 |
|
3856 |
-
// Reference: src/vue/pages/
|
3857 |
-
__( '
|
3858 |
|
3859 |
-
// Reference: src/vue/pages/
|
3860 |
-
__( '
|
3861 |
|
3862 |
-
// Reference: src/vue/pages/
|
3863 |
-
__( '
|
3864 |
|
3865 |
-
// Reference: src/vue/pages/
|
3866 |
-
__( '
|
3867 |
|
3868 |
-
// Reference: src/vue/pages/
|
3869 |
-
__( '
|
3870 |
|
3871 |
-
// Reference: src/vue/pages/
|
3872 |
-
|
3873 |
-
__( 'The log for the blocked bots is located here: %1$s', 'all-in-one-seo-pack' ),
|
3874 |
|
3875 |
-
// Reference: src/vue/pages/
|
3876 |
-
|
|
|
3877 |
|
3878 |
-
// Reference: src/vue/pages/
|
3879 |
-
__( '
|
3880 |
|
3881 |
-
// Reference: src/vue/pages/
|
3882 |
-
|
|
|
3883 |
|
3884 |
-
// Reference: src/vue/pages/
|
3885 |
-
__( '
|
3886 |
|
3887 |
-
// Reference: src/vue/pages/
|
3888 |
-
__( '
|
3889 |
|
3890 |
-
// Reference: src/vue/pages/
|
3891 |
-
__( '
|
3892 |
|
3893 |
-
// Reference: src/vue/pages/
|
3894 |
-
__( '
|
3895 |
|
3896 |
-
// Reference: src/vue/pages/
|
3897 |
-
__( '
|
3898 |
|
3899 |
-
// Reference: src/vue/pages/
|
3900 |
-
__( '
|
3901 |
|
3902 |
-
// Reference: src/vue/pages/
|
3903 |
-
__( '
|
3904 |
|
3905 |
-
// Reference: src/vue/pages/
|
3906 |
-
__( '
|
3907 |
|
3908 |
-
// Reference: src/vue/pages/
|
3909 |
-
|
3910 |
-
__( 'Import / Restore %1$s Settings', 'all-in-one-seo-pack' ),
|
3911 |
|
3912 |
-
// Reference: src/vue/pages/
|
3913 |
-
__( '
|
3914 |
|
3915 |
-
// Reference: src/vue/pages/
|
3916 |
-
__( '
|
3917 |
|
3918 |
-
// Reference: src/vue/pages/
|
3919 |
-
|
|
|
3920 |
|
3921 |
-
// Reference: src/vue/pages/
|
3922 |
-
__( '
|
3923 |
|
3924 |
-
// Reference: src/vue/pages/
|
3925 |
-
__( '
|
3926 |
|
3927 |
-
// Reference: src/vue/pages/
|
3928 |
-
__( '
|
3929 |
|
3930 |
-
// Reference: src/vue/pages/
|
3931 |
-
__( '
|
3932 |
|
3933 |
-
// Reference: src/vue/pages/
|
3934 |
-
|
|
|
3935 |
|
3936 |
-
// Reference: src/vue/pages/
|
3937 |
-
|
|
|
3938 |
|
3939 |
-
// Reference: src/vue/pages/
|
3940 |
-
__( '
|
3941 |
|
3942 |
-
// Reference: src/vue/pages/
|
3943 |
-
__( '
|
3944 |
|
3945 |
-
// Reference: src/vue/pages/
|
3946 |
-
__( '
|
3947 |
|
3948 |
-
// Reference: src/vue/pages/
|
3949 |
-
|
3950 |
-
__( 'No, I changed my mind', 'all-in-one-seo-pack' ),
|
3951 |
|
3952 |
-
// Reference: src/vue/pages/
|
3953 |
-
|
3954 |
-
__( 'This action cannot be undone.', 'all-in-one-seo-pack' ),
|
3955 |
|
3956 |
-
// Reference: src/vue/pages/
|
3957 |
-
__( '
|
3958 |
|
3959 |
-
// Reference: src/vue/pages/
|
3960 |
-
|
|
|
3961 |
|
3962 |
-
// Reference: src/vue/pages/tools/
|
3963 |
-
__( '
|
3964 |
|
3965 |
-
// Reference: src/vue/pages/tools/views/
|
3966 |
-
__( '
|
3967 |
|
3968 |
-
// Reference: src/vue/pages/tools/
|
3969 |
-
__( '
|
3970 |
|
3971 |
-
// Reference: src/vue/pages/tools/
|
3972 |
-
|
3973 |
-
__( '%1$s at %2$s', 'all-in-one-seo-pack' ),
|
3974 |
|
3975 |
-
// Reference: src/vue/pages/tools/
|
3976 |
-
__( '
|
3977 |
|
3978 |
-
// Reference: src/vue/pages/
|
3979 |
-
__( '
|
3980 |
|
3981 |
-
// Reference: src/vue/pages/
|
3982 |
-
__( '
|
3983 |
|
3984 |
-
// Reference: src/vue/pages/
|
3985 |
-
|
3986 |
-
|
3987 |
-
// Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:124
|
3988 |
-
/* Translators: 1 - The plugin short name ("AIOSEO"). */
|
3989 |
-
__( 'Choose a plugin to import SEO data directly into %1$s.', 'all-in-one-seo-pack' ),
|
3990 |
|
3991 |
-
// Reference: src/vue/pages/
|
3992 |
-
__( '
|
3993 |
|
3994 |
-
// Reference: src/vue/pages/
|
3995 |
-
__( '
|
3996 |
|
3997 |
-
// Reference: src/vue/pages/
|
3998 |
-
__( '
|
3999 |
|
4000 |
-
// Reference: src/vue/pages/
|
4001 |
-
__( '
|
4002 |
|
4003 |
-
// Reference: src/vue/
|
4004 |
-
__( '
|
4005 |
|
4006 |
-
// Reference: src/vue/pages/
|
4007 |
-
__( '
|
4008 |
|
4009 |
-
// Reference: src/vue/pages/
|
4010 |
-
|
4011 |
-
|
|
|
4012 |
|
4013 |
-
// Reference: src/vue/pages/
|
4014 |
-
|
4015 |
-
__( '
|
4016 |
|
4017 |
-
// Reference: src/vue/pages/
|
4018 |
-
|
4019 |
-
__( 'We do not support importing from the currently installed version of %1$s (%2$s). Please upgrade to the latest version and try again.', 'all-in-one-seo-pack' ),
|
4020 |
|
4021 |
-
// Reference: src/vue/pages/
|
4022 |
-
__( '
|
4023 |
|
4024 |
-
// Reference: src/vue/pages/
|
4025 |
-
__( '
|
4026 |
|
4027 |
-
// Reference: src/vue/pages/
|
4028 |
-
__( '
|
4029 |
|
4030 |
-
// Reference: src/vue/pages/
|
4031 |
-
__( '
|
4032 |
|
4033 |
-
// Reference: src/vue/pages/
|
4034 |
-
__( '
|
4035 |
|
4036 |
-
// Reference: src/vue/pages/
|
4037 |
-
__( '
|
4038 |
|
4039 |
-
// Reference: src/vue/pages/
|
4040 |
-
__( '
|
4041 |
|
4042 |
-
// Reference: src/vue/pages/
|
4043 |
-
__( '
|
4044 |
|
4045 |
-
// Reference: src/vue/pages/
|
4046 |
-
__( '
|
4047 |
|
4048 |
-
// Reference: src/vue/pages/
|
4049 |
-
|
|
|
4050 |
|
4051 |
-
// Reference: src/vue/pages/
|
4052 |
-
__( '
|
4053 |
|
4054 |
-
// Reference: src/vue/pages/
|
4055 |
-
__( '
|
4056 |
|
4057 |
-
// Reference: src/vue/pages/
|
4058 |
-
__( '
|
4059 |
|
4060 |
-
// Reference: src/vue/pages/
|
4061 |
-
__( '
|
4062 |
|
4063 |
-
// Reference: src/vue/pages/
|
4064 |
-
__( '
|
4065 |
|
4066 |
-
// Reference: src/vue/pages/
|
4067 |
-
__( '
|
4068 |
|
4069 |
-
// Reference: src/vue/pages/
|
4070 |
-
__( '
|
4071 |
|
4072 |
-
// Reference: src/vue/pages/
|
4073 |
-
__( '
|
4074 |
|
4075 |
-
// Reference: src/vue/pages/
|
4076 |
-
__( '
|
4077 |
|
4078 |
-
// Reference: src/vue/pages/
|
4079 |
-
__( '
|
4080 |
|
4081 |
-
// Reference: src/vue/pages/
|
4082 |
-
|
4083 |
-
__( '
|
4084 |
|
4085 |
-
// Reference: src/vue/pages/
|
4086 |
-
__( '
|
4087 |
|
4088 |
-
// Reference: src/vue/pages/
|
4089 |
-
__( '
|
4090 |
|
4091 |
-
// Reference: src/vue/pages/
|
4092 |
-
|
|
|
4093 |
|
4094 |
-
// Reference: src/vue/pages/
|
4095 |
-
|
|
|
4096 |
|
4097 |
-
// Reference: src/vue/pages/
|
4098 |
-
__( '
|
4099 |
|
4100 |
-
// Reference: src/vue/pages/
|
4101 |
-
/* Translators: 1 -
|
4102 |
-
__( '
|
4103 |
|
4104 |
-
// Reference: src/vue/pages/
|
4105 |
-
__( '
|
4106 |
|
4107 |
-
// Reference: src/vue/pages/
|
4108 |
-
__( '
|
4109 |
|
4110 |
-
// Reference: src/vue/pages/
|
4111 |
-
|
4112 |
-
__( '%1$s is brought to you by %2$s, the same team that’s behind the largest WordPress resource site, WPBeginner, the most popular lead-generation software, OptinMonster, the best WordPress analytics plugin, MonsterInsights and many more.', 'all-in-one-seo-pack' ),
|
4113 |
|
4114 |
-
// Reference: src/vue/pages/
|
4115 |
-
__( '
|
4116 |
|
4117 |
-
// Reference: src/vue/pages/
|
4118 |
-
|
4119 |
-
__( 'The %1$s Team', 'all-in-one-seo-pack' ),
|
4120 |
|
4121 |
-
// Reference: src/vue/pages/
|
4122 |
-
__( '
|
4123 |
|
4124 |
-
// Reference: src/vue/pages/
|
4125 |
-
__( '
|
4126 |
|
4127 |
-
// Reference: src/vue/pages/
|
4128 |
-
|
|
|
4129 |
|
4130 |
-
// Reference: src/vue/pages/
|
4131 |
-
__( '
|
4132 |
|
4133 |
-
// Reference: src/vue/pages/
|
4134 |
-
__( '
|
4135 |
|
4136 |
-
// Reference: src/vue/pages/
|
4137 |
-
__( '
|
4138 |
|
4139 |
-
// Reference: src/vue/pages/
|
4140 |
-
__( '
|
4141 |
|
4142 |
-
// Reference: src/vue/pages/
|
4143 |
-
|
|
|
4144 |
|
4145 |
-
// Reference: src/vue/pages/
|
4146 |
-
__( '
|
4147 |
|
4148 |
-
// Reference: src/vue/pages/
|
4149 |
-
__( '
|
4150 |
|
4151 |
-
// Reference: src/vue/pages/
|
4152 |
-
__( '
|
4153 |
|
4154 |
-
// Reference: src/vue/pages/
|
4155 |
-
__( '
|
4156 |
|
4157 |
-
// Reference: src/vue/pages/
|
4158 |
-
__( '
|
4159 |
|
4160 |
-
// Reference: src/vue/pages/
|
4161 |
-
__( '
|
4162 |
|
4163 |
-
// Reference: src/vue/pages/
|
4164 |
-
|
|
|
4165 |
|
4166 |
-
// Reference: src/vue/pages/
|
4167 |
-
|
|
|
4168 |
|
4169 |
-
// Reference: src/vue/pages/
|
4170 |
-
/* Translators: 1 -
|
4171 |
-
__( '
|
4172 |
|
4173 |
-
// Reference: src/vue/
|
4174 |
-
__( '
|
4175 |
|
4176 |
-
// Reference: src/vue/
|
4177 |
-
__( '
|
4178 |
|
4179 |
-
// Reference: src/vue/
|
4180 |
-
__( '
|
4181 |
|
4182 |
-
// Reference: src/vue/
|
4183 |
-
__( '
|
4184 |
|
4185 |
-
// Reference: src/vue/
|
4186 |
-
__( '
|
4187 |
|
4188 |
-
// Reference: src/vue/
|
4189 |
-
__( '
|
4190 |
|
4191 |
-
// Reference: src/vue/
|
4192 |
-
__( '
|
4193 |
|
4194 |
-
// Reference: src/vue/
|
4195 |
-
|
|
|
4196 |
|
4197 |
-
// Reference: src/vue/
|
4198 |
-
__( '
|
4199 |
|
4200 |
-
// Reference: src/vue/
|
4201 |
-
__( '
|
4202 |
|
4203 |
-
// Reference: src/vue/
|
4204 |
-
|
|
|
|
|
4205 |
|
4206 |
-
// Reference: src/vue/pages/
|
4207 |
-
|
|
|
4208 |
|
4209 |
-
// Reference: src/vue/pages/
|
4210 |
-
|
|
|
4211 |
|
4212 |
-
// Reference: src/vue/pages/
|
4213 |
-
__( '
|
4214 |
|
4215 |
-
// Reference: src/vue/pages/
|
4216 |
-
__( '
|
4217 |
|
4218 |
-
// Reference: src/vue/pages/
|
4219 |
-
__( '
|
4220 |
|
4221 |
-
// Reference: src/vue/pages/
|
4222 |
-
__( '
|
4223 |
|
4224 |
-
// Reference: src/vue/pages/
|
4225 |
-
|
4226 |
-
__( 'This action cannot be undone. Before taking this action, we recommend that you make a %1$sfull website backup first%2$s.', 'all-in-one-seo-pack' ),
|
4227 |
|
4228 |
-
// Reference: src/vue/pages/
|
4229 |
-
__( '
|
4230 |
|
4231 |
-
// Reference: src/vue/pages/
|
4232 |
-
__( '
|
4233 |
|
4234 |
-
// Reference: src/vue/pages/
|
4235 |
-
__( '
|
4236 |
|
4237 |
-
// Reference: src/vue/pages/
|
4238 |
-
__( '
|
4239 |
|
4240 |
-
// Reference: src/vue/pages/
|
4241 |
-
__( '
|
4242 |
|
4243 |
-
// Reference: src/vue/pages/
|
4244 |
-
__( '
|
4245 |
|
4246 |
-
// Reference: src/vue/pages/
|
4247 |
-
|
|
|
4248 |
|
4249 |
-
// Reference: src/vue/pages/tools/views/
|
4250 |
-
__( '
|
4251 |
|
4252 |
-
// Reference: src/vue/pages/
|
4253 |
-
|
|
|
4254 |
|
4255 |
-
// Reference: src/vue/pages/tools/views/
|
4256 |
-
__( '
|
4257 |
|
4258 |
-
// Reference: src/vue/pages/tools/views/
|
4259 |
-
|
4260 |
-
__( 'All %1$s Settings', 'all-in-one-seo-pack' ),
|
4261 |
|
4262 |
-
// Reference: src/vue/pages/tools/views/
|
4263 |
-
__( '
|
4264 |
|
4265 |
-
// Reference: src/vue/pages/tools/views/
|
4266 |
-
__( '
|
4267 |
|
4268 |
-
// Reference: src/vue/pages/tools/views/
|
4269 |
-
|
4270 |
-
__( 'The robots.txt editor in %1$s allows you to set up a robots.txt file for your site that will override the default robots.txt file that WordPress creates. By creating a robots.txt file with %2$s you have greater control over the instructions you give web crawlers about your site.', 'all-in-one-seo-pack' ),
|
4271 |
|
4272 |
-
// Reference: src/vue/pages/tools/views/
|
4273 |
-
|
4274 |
-
__( 'Just like WordPress, %1$s generates a dynamic file so there is no static file to be found on your server. The content of the robots.txt file is stored in your WordPress database.', 'all-in-one-seo-pack' ),
|
4275 |
|
4276 |
-
// Reference: src/vue/pages/tools/views/
|
4277 |
-
__( '
|
4278 |
|
4279 |
-
// Reference: src/vue/pages/tools/views/
|
4280 |
-
__( '
|
4281 |
|
4282 |
-
// Reference: src/vue/pages/tools/views/
|
4283 |
-
__( '
|
4284 |
|
4285 |
-
// Reference: src/vue/pages/tools/views/
|
4286 |
-
__( '
|
4287 |
|
4288 |
-
// Reference: src/vue/pages/tools/views/
|
4289 |
-
__( '
|
4290 |
|
4291 |
-
// Reference: src/vue/pages/tools/views/
|
4292 |
-
__( '
|
4293 |
|
4294 |
-
// Reference: src/vue/pages/tools/views/
|
4295 |
-
__( '
|
4296 |
|
4297 |
-
// Reference: src/vue/pages/tools/views/
|
4298 |
-
__( '
|
4299 |
|
4300 |
-
// Reference: src/vue/pages/tools/views/
|
4301 |
-
__( '
|
4302 |
|
4303 |
-
// Reference: src/vue/pages/tools/views/
|
4304 |
-
__( '
|
4305 |
|
4306 |
-
// Reference: src/vue/pages/tools/views/
|
4307 |
-
|
4308 |
-
__( '%1$s has detected a physical robots.txt file in the root folder of your WordPress installation. We recommend removing this file as it could cause conflicts with WordPress\' dynamically generated one. %2$s can import this file and delete it, or you can simply delete it.', 'all-in-one-seo-pack' ),
|
4309 |
|
4310 |
-
// Reference: src/vue/pages/tools/views/
|
4311 |
-
__( '
|
4312 |
|
4313 |
-
// Reference: src/vue/pages/
|
4314 |
-
|
4315 |
-
__( 'This site is running in a sub-directory of your main site located at %1$s. Your robots.txt file should only appear in the root directory of that site.', 'all-in-one-seo-pack' ),
|
4316 |
|
4317 |
-
// Reference: src/vue/pages/
|
4318 |
-
|
|
|
4319 |
|
4320 |
-
// Reference: src/vue/pages/
|
4321 |
-
/* Translators: 1 -
|
4322 |
-
__( '
|
4323 |
|
4324 |
-
// Reference: src/vue/pages/
|
4325 |
-
|
4326 |
-
__( 'It appears that your server is running on nginx, so the fix will most likely require adding the correct rewrite rules to our nginx configuration. %1$sCheck our documentation for more information%2$s.', 'all-in-one-seo-pack' ),
|
4327 |
|
4328 |
-
// Reference: src/vue/
|
4329 |
-
__( '
|
4330 |
|
4331 |
-
// Reference: src/vue/
|
4332 |
-
|
|
|
4333 |
|
4334 |
-
// Reference: src/vue/
|
4335 |
-
|
4336 |
-
__( 'The copy scores %1$s in the test, which is considered %2$s to read.', 'all-in-one-seo-pack' ),
|
4337 |
|
4338 |
-
// Reference: src/vue/
|
4339 |
-
__( '
|
4340 |
|
4341 |
-
// Reference: src/vue/
|
4342 |
-
|
4343 |
-
__( 'The copy scores %1$s in the test, which is considered %2$s to read. %3$s', 'all-in-one-seo-pack' ),
|
4344 |
|
4345 |
-
// Reference: src/vue/
|
4346 |
-
__( '
|
4347 |
|
4348 |
-
// Reference: src/vue/
|
4349 |
-
__( '
|
4350 |
|
4351 |
-
// Reference: src/vue/
|
4352 |
-
|
|
|
4353 |
|
4354 |
-
// Reference: src/vue/
|
4355 |
-
/* Translators: 1 -
|
4356 |
-
__( '
|
4357 |
|
4358 |
-
// Reference: src/vue/
|
4359 |
-
|
|
|
4360 |
|
4361 |
-
// Reference: src/vue/
|
4362 |
-
|
4363 |
-
__( '
|
4364 |
|
4365 |
-
// Reference: src/vue/
|
4366 |
-
/* Translators: 1 -
|
4367 |
-
__( '
|
4368 |
|
4369 |
-
// Reference: src/vue/
|
4370 |
-
__( '
|
4371 |
|
4372 |
-
// Reference: src/vue/
|
4373 |
-
__( '
|
4374 |
|
4375 |
-
// Reference: src/vue/
|
4376 |
-
__( '
|
4377 |
|
4378 |
-
// Reference: src/vue/
|
4379 |
-
__( '
|
4380 |
|
4381 |
-
// Reference: src/vue/
|
4382 |
-
|
4383 |
-
__( '%1$s of the sentences contain passive voice, which is more than the recommended maximum of %2$s. Try to use their active counterparts.', 'all-in-one-seo-pack' ),
|
4384 |
|
4385 |
-
// Reference: src/vue/
|
4386 |
-
__( '
|
4387 |
|
4388 |
-
// Reference: src/vue/
|
4389 |
-
|
4390 |
-
__( '%1$d section of your text is longer than %2$d words and is not separated by any subheadings. Add subheadings to improve readability.', 'all-in-one-seo-pack' ),
|
4391 |
|
4392 |
-
// Reference: src/vue/
|
4393 |
-
__( '
|
4394 |
|
4395 |
-
// Reference: src/vue/
|
4396 |
-
__( '
|
4397 |
|
4398 |
-
// Reference: src/vue/
|
4399 |
-
__( '
|
4400 |
|
4401 |
-
// Reference: src/vue/
|
4402 |
-
__( '
|
4403 |
|
4404 |
-
// Reference: src/vue/
|
4405 |
-
__( '
|
4406 |
|
4407 |
-
// Reference: src/vue/
|
4408 |
-
|
4409 |
-
__( '%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' ),
|
4410 |
|
4411 |
-
// Reference: src/vue/
|
4412 |
-
__( '
|
4413 |
|
4414 |
-
// Reference: src/vue/
|
4415 |
-
__( '
|
4416 |
|
4417 |
-
// Reference: src/vue/
|
4418 |
-
__( '
|
4419 |
|
4420 |
-
// Reference: src/vue/
|
4421 |
-
__( '
|
4422 |
|
4423 |
-
// Reference: src/vue/
|
4424 |
-
__( '
|
4425 |
|
4426 |
-
// Reference: src/vue/
|
4427 |
-
__( '
|
4428 |
|
4429 |
-
// Reference: src/vue/
|
4430 |
-
__( '
|
4431 |
|
4432 |
-
// Reference: src/vue/
|
4433 |
-
__( '
|
4434 |
|
4435 |
-
// Reference: src/vue/
|
4436 |
-
__( '
|
4437 |
|
4438 |
-
// Reference: src/vue/
|
4439 |
-
__( '
|
4440 |
|
4441 |
-
// Reference: src/vue/
|
4442 |
-
__( '
|
4443 |
|
4444 |
-
// Reference: src/vue/
|
4445 |
-
__( '
|
4446 |
|
4447 |
-
// Reference: src/vue/
|
4448 |
-
__( '
|
4449 |
|
4450 |
-
// Reference: src/vue/
|
4451 |
-
__( '
|
4452 |
|
4453 |
-
// Reference: src/vue/
|
4454 |
-
__( '
|
4455 |
|
4456 |
-
// Reference: src/vue/
|
4457 |
-
__( '
|
4458 |
|
4459 |
-
// Reference: src/vue/
|
4460 |
-
__( '
|
4461 |
|
4462 |
-
// Reference: src/vue/
|
4463 |
-
|
4464 |
-
__( '%1$s found in image alt attribute(s).', 'all-in-one-seo-pack' ),
|
4465 |
|
4466 |
-
// Reference: src/vue/
|
4467 |
-
|
4468 |
-
__( '%1$s in image alt attributes', 'all-in-one-seo-pack' ),
|
4469 |
|
4470 |
-
// Reference: src/vue/
|
4471 |
-
|
4472 |
-
__( '%1$s not found in image alt attribute(s). Add an image with your %1$s as alt text.', 'all-in-one-seo-pack' ),
|
4473 |
|
4474 |
-
// Reference: src/vue/
|
4475 |
-
|
|
|
4476 |
|
4477 |
-
// Reference: src/vue/
|
4478 |
-
|
|
|
4479 |
|
4480 |
-
// Reference: src/vue/
|
4481 |
-
__( '
|
4482 |
|
4483 |
-
// Reference: src/vue/
|
4484 |
-
__( '
|
4485 |
|
4486 |
-
// Reference: src/vue/
|
4487 |
-
|
4488 |
-
__( '%1$s in introduction', 'all-in-one-seo-pack' ),
|
4489 |
|
4490 |
-
// Reference: src/vue/
|
4491 |
-
__( '
|
4492 |
|
4493 |
-
// Reference: src/vue/
|
4494 |
-
|
4495 |
-
__( 'Your %1$s appears in the first paragraph. Well done!', 'all-in-one-seo-pack' ),
|
4496 |
|
4497 |
-
// Reference: src/vue/
|
4498 |
-
|
4499 |
-
__( 'Your %1$s does not appear in the first paragraph. Make sure the topic is clear immediately.', 'all-in-one-seo-pack' ),
|
4500 |
|
4501 |
-
// Reference: src/vue/
|
4502 |
-
__( '
|
4503 |
|
4504 |
-
// Reference: src/vue/
|
4505 |
-
__( '
|
4506 |
|
4507 |
-
// Reference: src/vue/
|
4508 |
-
__( '
|
4509 |
|
4510 |
-
// Reference: src/vue/
|
4511 |
-
__( '
|
4512 |
|
4513 |
-
// Reference: src/vue/
|
4514 |
-
|
|
|
4515 |
|
4516 |
-
// Reference: src/vue/
|
4517 |
-
__( '
|
4518 |
|
4519 |
-
// Reference: src/vue/
|
4520 |
-
/* Translators: 1 -
|
4521 |
-
__( '%1$s in
|
4522 |
|
4523 |
-
// Reference: src/vue/
|
4524 |
-
|
4525 |
-
__( '%1$s found in meta description.', 'all-in-one-seo-pack' ),
|
4526 |
|
4527 |
-
// Reference: src/vue/
|
4528 |
-
/* Translators: 1 -
|
4529 |
-
__( '%1$
|
4530 |
|
4531 |
-
// Reference: src/vue/
|
4532 |
-
|
|
|
4533 |
|
4534 |
-
// Reference: src/vue/
|
4535 |
-
__( '
|
4536 |
|
4537 |
-
// Reference: src/vue/
|
4538 |
-
|
|
|
4539 |
|
4540 |
-
// Reference: src/vue/
|
4541 |
-
|
|
|
4542 |
|
4543 |
-
// Reference: src/vue/
|
4544 |
-
|
|
|
4545 |
|
4546 |
-
// Reference: src/vue/
|
4547 |
-
__( '
|
4548 |
|
4549 |
-
// Reference: src/vue/
|
4550 |
-
__( '
|
4551 |
|
4552 |
-
// Reference: src/vue/
|
4553 |
-
__( '
|
4554 |
|
4555 |
-
// Reference: src/vue/
|
4556 |
-
__( '
|
4557 |
|
4558 |
-
// Reference: src/vue/
|
4559 |
-
|
4560 |
-
__( '
|
4561 |
|
4562 |
-
// Reference: src/vue/
|
4563 |
-
|
4564 |
-
__( 'No %1$s was set. Set a %1$s in order to calculate your SEO score.', 'all-in-one-seo-pack' ),
|
4565 |
|
4566 |
-
// Reference: src/vue/
|
4567 |
-
|
4568 |
-
__( '%1$s is slightly long. Try to make it shorter.', 'all-in-one-seo-pack' ),
|
4569 |
|
4570 |
-
// Reference: src/vue/
|
4571 |
-
|
4572 |
-
__( '%1$s is too long. Try to make it shorter.', 'all-in-one-seo-pack' ),
|
4573 |
|
4574 |
-
// Reference: src/vue/pages/
|
4575 |
-
__( '
|
4576 |
|
4577 |
-
// Reference: src/vue/pages/
|
4578 |
-
__( '
|
4579 |
|
4580 |
-
// Reference: src/vue/pages/
|
4581 |
-
__( '
|
4582 |
|
4583 |
-
// Reference: src/vue/pages/
|
4584 |
-
__( '
|
4585 |
|
4586 |
-
// Reference: src/vue/pages/
|
4587 |
-
__( '
|
4588 |
|
4589 |
-
// Reference: src/vue/pages/
|
4590 |
-
__( '
|
4591 |
|
4592 |
-
// Reference: src/vue/pages/
|
4593 |
-
__( '
|
4594 |
|
4595 |
-
// Reference: src/vue/pages/
|
4596 |
-
__( '
|
4597 |
|
4598 |
-
// Reference: src/vue/pages/
|
4599 |
-
__( '
|
4600 |
|
4601 |
-
// Reference: src/vue/pages/
|
4602 |
-
__( '
|
4603 |
|
4604 |
-
// Reference: src/vue/pages/
|
4605 |
-
|
|
|
4606 |
|
4607 |
-
// Reference: src/vue/pages/
|
4608 |
-
__( '
|
4609 |
|
4610 |
-
// Reference: src/vue/pages/
|
4611 |
-
__( '
|
4612 |
|
4613 |
-
// Reference: src/vue/pages/
|
4614 |
-
__( '
|
4615 |
|
4616 |
-
// Reference: src/vue/pages/
|
4617 |
-
__( '
|
4618 |
|
4619 |
-
// Reference: src/vue/pages/
|
4620 |
-
__( '
|
4621 |
|
4622 |
-
// Reference: src/vue/pages/
|
4623 |
-
__( '
|
4624 |
|
4625 |
-
// Reference: src/vue/pages/
|
4626 |
-
__( '
|
4627 |
|
4628 |
-
// Reference: src/vue/pages/
|
4629 |
-
__( '
|
4630 |
|
4631 |
-
// Reference: src/vue/pages/
|
4632 |
-
__( '
|
4633 |
|
4634 |
-
// Reference: src/vue/pages/
|
4635 |
-
__( '
|
4636 |
|
4637 |
-
// Reference: src/vue/pages/
|
4638 |
-
__( '
|
4639 |
|
4640 |
-
// Reference: src/vue/pages/
|
4641 |
-
__( '
|
4642 |
|
4643 |
-
// Reference: src/vue/pages/
|
4644 |
-
__( '
|
4645 |
|
4646 |
-
// Reference: src/vue/pages/
|
4647 |
-
__( '
|
4648 |
|
4649 |
-
// Reference: src/vue/pages/
|
4650 |
-
__( '
|
4651 |
|
4652 |
-
// Reference: src/vue/pages/
|
4653 |
-
__( '
|
4654 |
|
4655 |
-
// Reference: src/vue/pages/
|
4656 |
-
__( '
|
4657 |
|
4658 |
-
// Reference: src/vue/pages/
|
4659 |
-
__( '
|
4660 |
|
4661 |
-
// Reference: src/vue/pages/
|
4662 |
-
|
4663 |
-
__( '%1$s Lite vs. Pro', 'all-in-one-seo-pack' ),
|
4664 |
|
4665 |
-
// Reference: src/vue/pages/
|
4666 |
-
/* Translators: 1 -
|
4667 |
-
__( '
|
4668 |
|
4669 |
-
// Reference: src/vue/pages/
|
4670 |
-
__( '
|
4671 |
|
4672 |
-
// Reference: src/vue/pages/
|
4673 |
-
__( '
|
4674 |
|
4675 |
-
// Reference: src/vue/pages/
|
4676 |
-
/* Translators: 1 -
|
4677 |
-
__( '
|
4678 |
|
4679 |
-
// Reference: src/vue/pages/
|
4680 |
-
|
4681 |
-
/* Translators: 1 - "Pro". */
|
4682 |
-
__( 'Upgrade to %1$s Today', 'all-in-one-seo-pack' ),
|
4683 |
|
4684 |
-
// Reference: src/vue/pages/
|
4685 |
-
|
4686 |
-
__( '%1$sBonus:%2$s You can upgrade to the %3$s plan today and %4$ssave %5$s off%6$s (discount auto-applied).', 'all-in-one-seo-pack' ),
|
4687 |
|
4688 |
-
// Reference: src/vue/pages/
|
4689 |
-
__( '
|
4690 |
|
4691 |
-
// Reference: src/vue/pages/
|
4692 |
-
__( '
|
4693 |
|
4694 |
-
// Reference: src/vue/pages/
|
4695 |
-
__( '
|
4696 |
|
4697 |
-
// Reference: src/vue/pages/
|
4698 |
-
__( '
|
4699 |
|
4700 |
-
// Reference: src/vue/pages/
|
4701 |
-
__( '
|
4702 |
|
4703 |
-
// Reference: src/vue/pages/
|
4704 |
-
|
4705 |
-
__( '%1$s %2$s gives you advanced customizations for our page analysis feature, letting you add custom fields to analyze.', 'all-in-one-seo-pack' ),
|
4706 |
|
4707 |
-
// Reference: src/vue/pages/
|
4708 |
-
__( '
|
4709 |
|
4710 |
-
// Reference: src/vue/pages/
|
4711 |
-
|
4712 |
-
__( 'Custom Fields are only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
|
4713 |
|
4714 |
-
// Reference: src/vue/pages/
|
4715 |
-
|
4716 |
-
__( 'Advanced Schema Markup is only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
|
4717 |
|
4718 |
-
// Reference: src/vue/pages/
|
4719 |
/* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro". */
|
4720 |
-
__( '%1$s %2$s
|
4721 |
-
|
4722 |
-
// Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:80
|
4723 |
-
__( 'Upgrade to Pro and Unlock Advanced Schema Markup', 'all-in-one-seo-pack' ),
|
4724 |
|
4725 |
-
// Reference: src/vue/pages/
|
4726 |
-
__( '
|
4727 |
|
4728 |
-
// Reference: src/vue/pages/
|
4729 |
-
__( '
|
4730 |
|
4731 |
-
// Reference: src/vue/pages/
|
4732 |
-
__( '
|
4733 |
|
4734 |
-
// Reference: src/vue/pages/
|
4735 |
-
__( '
|
4736 |
|
4737 |
-
// Reference: src/vue/pages/
|
4738 |
-
__( '
|
4739 |
|
4740 |
-
// Reference: src/vue/pages/
|
4741 |
-
__( '
|
4742 |
|
4743 |
-
// Reference: src/vue/pages/
|
4744 |
-
__( '
|
4745 |
|
4746 |
-
// Reference: src/vue/pages/
|
4747 |
-
|
|
|
4748 |
|
4749 |
-
// Reference: src/vue/pages/
|
4750 |
-
__( '
|
4751 |
|
4752 |
-
// Reference: src/vue/pages/
|
4753 |
-
__( '
|
4754 |
|
4755 |
-
// Reference: src/vue/pages/
|
4756 |
-
/* Translators: 1 -
|
4757 |
-
__( '
|
4758 |
|
4759 |
-
// Reference: src/vue/pages/
|
4760 |
-
|
4761 |
-
__( 'Get %1$s %2$s and Unlock all the Powerful Features.', 'all-in-one-seo-pack' ),
|
4762 |
|
4763 |
-
// Reference: src/vue/pages/
|
4764 |
-
__( '
|
4765 |
|
4766 |
-
// Reference: src/vue/pages/
|
4767 |
-
__( '
|
4768 |
|
4769 |
-
// Reference: src/vue/pages/
|
4770 |
-
__( '
|
4771 |
|
4772 |
-
// Reference: src/vue/pages/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4773 |
/* Translators: 1 - The plugin short name ("AIOSEO"). */
|
4774 |
-
__( '%1$s
|
4775 |
|
4776 |
-
// Reference: src/vue/pages/
|
4777 |
-
__( '
|
4778 |
|
4779 |
-
// Reference: src/vue/pages/
|
4780 |
-
|
|
|
4781 |
|
4782 |
-
// Reference: src/vue/pages/
|
4783 |
-
__( '
|
4784 |
|
4785 |
-
// Reference: src/vue/pages/
|
4786 |
-
__( '
|
4787 |
|
4788 |
-
// Reference: src/vue/pages/
|
4789 |
-
|
|
|
4790 |
|
4791 |
-
// Reference: src/vue/pages/
|
4792 |
-
|
4793 |
-
__( 'Installing %1$s %2$s', 'all-in-one-seo-pack' ),
|
4794 |
|
4795 |
-
// Reference: src/vue/pages/
|
4796 |
-
__( '
|
4797 |
|
4798 |
-
// Reference: src/vue/pages/
|
4799 |
-
|
|
|
4800 |
|
4801 |
-
// Reference: src/vue/pages/
|
4802 |
-
|
|
|
4803 |
|
4804 |
-
// Reference: src/vue/pages/
|
4805 |
-
|
4806 |
-
__( '%1$s %2$s lets you set the SEO title and description for custom taxonomies. You can also control all of the robots meta and other options just like the default category and tags taxonomies.', 'all-in-one-seo-pack' ),
|
4807 |
|
4808 |
-
// Reference: src/vue/pages/
|
4809 |
-
/* Translators: 1 -
|
4810 |
-
__( '
|
4811 |
|
4812 |
-
// Reference: src/vue/pages/
|
4813 |
-
|
|
|
4814 |
|
4815 |
-
// Reference: src/vue/pages/
|
4816 |
-
__( '
|
4817 |
|
4818 |
-
// Reference: src/vue/pages/
|
4819 |
-
|
|
|
4820 |
|
4821 |
-
// Reference: src/vue/pages/
|
4822 |
-
|
|
|
4823 |
|
4824 |
-
// Reference: src/vue/pages/
|
4825 |
-
__( '
|
4826 |
|
4827 |
-
// Reference: src/vue/pages/
|
4828 |
-
|
|
|
4829 |
|
4830 |
-
// Reference: src/vue/pages/
|
4831 |
-
|
|
|
4832 |
|
4833 |
-
// Reference: src/vue/pages/
|
4834 |
-
__( '
|
4835 |
|
4836 |
-
// Reference: src/vue/pages/
|
4837 |
-
/* Translators: 1 -
|
4838 |
-
__( '
|
4839 |
|
4840 |
-
// Reference: src/vue/pages/
|
4841 |
-
|
|
|
4842 |
|
4843 |
-
// Reference: src/vue/pages/
|
4844 |
-
__( '
|
4845 |
|
4846 |
-
// Reference: src/vue/pages/
|
4847 |
-
|
|
|
4848 |
|
4849 |
-
// Reference: src/vue/pages/
|
4850 |
-
|
|
|
4851 |
|
4852 |
-
// Reference: src/vue/pages/
|
4853 |
-
__( '
|
4854 |
|
4855 |
-
// Reference: src/vue/pages/
|
4856 |
-
|
4857 |
-
__( 'Show %1$s Thumbnail in Google Custom Search', 'all-in-one-seo-pack' ),
|
4858 |
|
4859 |
-
// Reference: src/vue/pages/
|
4860 |
-
/* Translators: 1 -
|
4861 |
-
__( '
|
4862 |
|
4863 |
-
// Reference: src/vue/pages/
|
4864 |
-
|
|
|
4865 |
|
4866 |
-
// Reference: src/vue/pages/
|
4867 |
-
__( '
|
4868 |
|
4869 |
-
// Reference: src/vue/pages/
|
4870 |
-
|
|
|
4871 |
|
4872 |
-
// Reference: src/vue/pages/
|
4873 |
-
__( '
|
4874 |
|
4875 |
-
// Reference: src/vue/pages/
|
4876 |
-
|
|
|
4877 |
|
4878 |
-
// Reference: src/vue/pages/
|
4879 |
-
__( '
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4880 |
|
4881 |
-
// Reference: src/vue/pages/
|
4882 |
-
__( '
|
4883 |
|
4884 |
-
// Reference: src/vue/pages/
|
4885 |
-
|
|
|
4886 |
|
4887 |
-
// Reference: src/vue/pages/
|
4888 |
-
|
4889 |
-
__( 'The home page settings below have been disabled because you are using a static home page. You can %1$sedit your home page settings%2$s directly to change the title and description.', 'all-in-one-seo-pack' ),
|
4890 |
|
4891 |
-
// Reference: src/vue/pages/
|
4892 |
-
__( '
|
4893 |
|
4894 |
-
// Reference: src/vue/pages/
|
4895 |
-
__( '
|
4896 |
|
4897 |
-
// Reference: src/vue/pages/
|
4898 |
-
__( '
|
4899 |
|
4900 |
-
// Reference: src/vue/pages/
|
4901 |
-
__( '
|
4902 |
|
4903 |
-
// Reference: src/vue/pages/
|
4904 |
-
__( '
|
4905 |
|
4906 |
-
// Reference: src/vue/pages/
|
4907 |
-
__( '
|
4908 |
|
4909 |
-
// Reference: src/vue/pages/
|
4910 |
-
__( '
|
4911 |
|
4912 |
-
// Reference: src/vue/pages/
|
4913 |
-
__( '
|
4914 |
|
4915 |
-
// Reference: src/vue/pages/
|
4916 |
-
__( '
|
4917 |
|
4918 |
-
// Reference: src/vue/pages/
|
4919 |
-
|
|
|
4920 |
|
4921 |
-
// Reference: src/vue/pages/setup-wizard/views/
|
4922 |
-
__( '
|
4923 |
|
4924 |
-
// Reference: src/vue/pages/setup-wizard/views/
|
4925 |
-
|
|
|
4926 |
|
4927 |
-
// Reference: src/vue/pages/setup-wizard/views/
|
4928 |
-
__( '
|
4929 |
|
4930 |
-
// Reference: src/vue/pages/
|
4931 |
-
|
4932 |
-
__( 'Go to %1$sLocal SEO Settings%2$s and set up your local business info like location address, opening hours (%3$s), and Google Maps settings (%4$s).', 'all-in-one-seo-pack' ),
|
4933 |
|
4934 |
-
// Reference: src/vue/pages/
|
4935 |
-
|
|
|
4936 |
|
4937 |
-
// Reference: src/vue/pages/
|
4938 |
-
__( '
|
4939 |
|
4940 |
-
// Reference: src/vue/pages/setup-wizard/views/
|
4941 |
-
__( '
|
4942 |
|
4943 |
-
// Reference: src/vue/pages/
|
4944 |
-
__( '
|
4945 |
|
4946 |
-
// Reference: src/vue/pages/
|
4947 |
-
__( '
|
4948 |
|
4949 |
-
// Reference: src/vue/pages/setup-wizard/
|
4950 |
-
__( '
|
4951 |
|
4952 |
-
// Reference: src/vue/pages/setup-wizard/views/
|
4953 |
-
__( '
|
4954 |
|
4955 |
-
// Reference: src/vue/pages/
|
4956 |
-
__( '
|
4957 |
|
4958 |
-
// Reference: src/vue/pages/
|
4959 |
-
__( '
|
4960 |
|
4961 |
-
// Reference: src/vue/pages/
|
4962 |
-
__( '
|
4963 |
|
4964 |
-
// Reference: src/vue/pages/
|
4965 |
-
__( '
|
4966 |
|
4967 |
-
// Reference: src/vue/pages/
|
4968 |
-
|
|
|
4969 |
|
4970 |
-
// Reference: src/vue/pages/
|
4971 |
-
__( '
|
4972 |
|
4973 |
-
// Reference: src/vue/pages/
|
4974 |
-
|
4975 |
-
__( 'Connecting...', 'all-in-one-seo-pack' ),
|
4976 |
|
4977 |
-
// Reference: src/vue/pages/
|
4978 |
-
__( '
|
4979 |
|
4980 |
-
// Reference: src/vue/pages/
|
4981 |
-
|
|
|
4982 |
|
4983 |
-
// Reference: src/vue/pages/
|
4984 |
-
__( '
|
4985 |
|
4986 |
-
// Reference: src/vue/pages/
|
4987 |
-
__( '
|
4988 |
|
4989 |
-
// Reference: src/vue/pages/
|
4990 |
-
__( '
|
4991 |
|
4992 |
-
// Reference: src/vue/pages/
|
4993 |
-
__( '
|
4994 |
|
4995 |
-
// Reference: src/vue/pages/
|
4996 |
-
|
|
|
4997 |
|
4998 |
-
// Reference: src/vue/pages/
|
4999 |
-
__( '
|
5000 |
|
5001 |
-
// Reference: src/vue/pages/
|
5002 |
-
__( '
|
5003 |
|
5004 |
-
// Reference: src/vue/pages/
|
5005 |
-
|
|
|
5006 |
|
5007 |
-
// Reference: src/vue/pages/
|
5008 |
-
__( '
|
5009 |
|
5010 |
-
// Reference: src/vue/pages/
|
5011 |
-
__( '
|
5012 |
|
5013 |
-
// Reference: src/vue/pages/
|
5014 |
-
__( '
|
5015 |
|
5016 |
-
// Reference: src/vue/pages/
|
5017 |
-
|
|
|
5018 |
|
5019 |
-
// Reference: src/vue/pages/
|
5020 |
-
|
|
|
5021 |
|
5022 |
-
// Reference: src/vue/pages/
|
5023 |
-
|
|
|
5024 |
|
5025 |
-
// Reference: src/vue/pages/
|
5026 |
-
|
|
|
5027 |
|
5028 |
-
// Reference: src/vue/pages/
|
5029 |
-
__( '
|
5030 |
|
5031 |
-
// Reference: src/vue/pages/
|
5032 |
-
__( '
|
5033 |
|
5034 |
-
// Reference: src/vue/pages/
|
5035 |
-
__( '
|
5036 |
|
5037 |
-
// Reference: src/vue/pages/sitemaps/views/
|
5038 |
-
|
5039 |
-
__( 'An XML Sitemap is a list of all your content that search engines use when they crawl your site. This is an essential part of SEO because it contains some important pieces of information that search engines need when crawling your site. The XML Sitemap created by %1$s tells search engines where to find all of the content on your site.', 'all-in-one-seo-pack' ),
|
5040 |
|
5041 |
-
// Reference: src/vue/pages/
|
5042 |
-
|
5043 |
-
__( '
|
5044 |
|
5045 |
-
// Reference: src/vue/pages/
|
5046 |
-
__( '
|
5047 |
|
5048 |
-
// Reference: src/vue/pages/
|
5049 |
-
__( '
|
5050 |
|
5051 |
-
// Reference: src/vue/pages/
|
5052 |
-
__( '
|
5053 |
|
5054 |
-
// Reference: src/vue/pages/
|
5055 |
-
__( '
|
5056 |
|
5057 |
-
// Reference: src/vue/pages/
|
5058 |
-
__( '
|
5059 |
|
5060 |
-
// Reference: src/vue/pages/
|
5061 |
-
__( '
|
5062 |
|
5063 |
-
// Reference: src/vue/pages/
|
5064 |
-
|
|
|
5065 |
|
5066 |
-
// Reference: src/vue/pages/
|
5067 |
-
|
|
|
5068 |
|
5069 |
-
// Reference: src/vue/pages/
|
5070 |
-
__( '
|
5071 |
|
5072 |
-
// Reference: src/vue/pages/
|
5073 |
-
__( '
|
5074 |
|
5075 |
-
// Reference: src/vue/pages/
|
5076 |
-
__( '
|
5077 |
|
5078 |
-
// Reference: src/vue/pages/
|
5079 |
-
|
|
|
5080 |
|
5081 |
-
// Reference: src/vue/pages/
|
5082 |
-
__( '
|
5083 |
|
5084 |
-
// Reference: src/vue/pages/
|
5085 |
-
|
|
|
5086 |
|
5087 |
-
// Reference: src/vue/pages/
|
5088 |
-
|
|
|
5089 |
|
5090 |
-
// Reference: src/vue/pages/
|
5091 |
-
__( '
|
5092 |
|
5093 |
-
// Reference: src/vue/pages/
|
5094 |
-
|
|
|
5095 |
|
5096 |
-
// Reference: src/vue/pages/
|
5097 |
-
__( '
|
5098 |
|
5099 |
-
// Reference: src/vue/pages/
|
5100 |
-
|
|
|
5101 |
|
5102 |
-
// Reference: src/vue/pages/
|
5103 |
-
__( '
|
5104 |
|
5105 |
-
// Reference: src/vue/pages/
|
5106 |
-
|
|
|
5107 |
|
5108 |
-
// Reference: src/vue/pages/
|
5109 |
-
|
|
|
5110 |
|
5111 |
-
// Reference: src/vue/pages/
|
5112 |
-
__( '
|
5113 |
|
5114 |
-
// Reference: src/vue/pages/
|
5115 |
-
__( '
|
5116 |
|
5117 |
-
// Reference: src/vue/pages/
|
5118 |
-
__( '
|
5119 |
|
5120 |
-
// Reference: src/vue/pages/
|
5121 |
-
__( '
|
5122 |
|
5123 |
-
// Reference: src/vue/pages/
|
5124 |
-
__( '
|
5125 |
|
5126 |
-
// Reference: src/vue/pages/redirects/views/pro/partials/
|
5127 |
-
__( '
|
5128 |
|
5129 |
-
// Reference: src/vue/pages/redirects/views/pro/partials/
|
5130 |
-
__( '
|
5131 |
|
5132 |
-
// Reference: src/vue/pages/redirects/views/pro/partials/
|
5133 |
-
__( '
|
5134 |
|
5135 |
-
// Reference: src/vue/pages/redirects/views/pro/partials/
|
5136 |
-
__( '
|
5137 |
|
5138 |
-
// Reference: src/vue/pages/redirects/views/pro/partials/
|
5139 |
-
__( '
|
5140 |
|
5141 |
-
// Reference: src/vue/pages/redirects/views/pro/partials/
|
5142 |
-
__( '
|
5143 |
|
5144 |
// Reference: src/vue/pages/redirects/views/pro/partials/ImportAioseo.vue:82
|
5145 |
/* Translators: 1 - The plugin short name ("AIOSEO"). */
|
@@ -5160,19 +5430,17 @@ $generated_i18n_strings = array(
|
|
5160 |
// Reference: src/vue/pages/redirects/views/pro/partials/ImportAioseo.vue:89
|
5161 |
__( 'There was an error importing your redirects. Please make sure you are uploading the correct file or it is in the proper format.', 'all-in-one-seo-pack' ),
|
5162 |
|
5163 |
-
// Reference: src/vue/pages/
|
5164 |
-
__( '
|
5165 |
|
5166 |
-
// Reference: src/vue/pages/
|
5167 |
-
|
5168 |
-
__( 'Choose a plugin to import redirects directly into %1$s.', 'all-in-one-seo-pack' ),
|
5169 |
|
5170 |
-
// Reference: src/vue/pages/
|
5171 |
-
__( '
|
5172 |
|
5173 |
-
// Reference: src/vue/pages/
|
5174 |
-
|
5175 |
-
__( 'Hits', 'all-in-one-seo-pack' ),
|
5176 |
|
5177 |
// Reference: src/vue/pages/redirects/views/pro/Redirects.vue:277
|
5178 |
__( 'Group', 'all-in-one-seo-pack' ),
|
@@ -5183,91 +5451,89 @@ $generated_i18n_strings = array(
|
|
5183 |
// Reference: src/vue/pages/redirects/views/pro/Redirects.vue:320
|
5184 |
__( 'All Groups', 'all-in-one-seo-pack' ),
|
5185 |
|
5186 |
-
// Reference: src/vue/pages/redirects/views/pro/Redirects.vue:436
|
5187 |
-
__( 'Pass through', 'all-in-one-seo-pack' ),
|
5188 |
-
|
5189 |
// Reference: src/vue/pages/redirects/views/pro/Redirects.vue:214
|
5190 |
__( 'Add New Redirection', 'all-in-one-seo-pack' ),
|
5191 |
|
5192 |
// Reference: src/vue/pages/redirects/views/pro/Redirects.vue:215
|
5193 |
__( 'Search URLs', 'all-in-one-seo-pack' ),
|
5194 |
|
5195 |
-
// Reference: src/vue/pages/redirects/views/lite/Redirects.vue:
|
|
|
|
|
|
|
|
|
|
|
|
|
5196 |
__( 'Fast Server Redirects', 'all-in-one-seo-pack' ),
|
5197 |
|
5198 |
-
// Reference: src/vue/pages/redirects/views/
|
5199 |
__( 'Automatic Redirects', 'all-in-one-seo-pack' ),
|
5200 |
|
5201 |
-
// Reference: src/vue/pages/redirects/views/
|
5202 |
__( 'Redirect Monitoring', 'all-in-one-seo-pack' ),
|
5203 |
|
5204 |
-
// Reference: src/vue/pages/redirects/views/
|
5205 |
__( '404 Monitoring', 'all-in-one-seo-pack' ),
|
5206 |
|
5207 |
-
// Reference: src/vue/pages/redirects/views/
|
5208 |
__( 'Full Site Redirects', 'all-in-one-seo-pack' ),
|
5209 |
|
5210 |
-
// Reference: src/vue/pages/redirects/views/
|
5211 |
__( 'Our Redirection Manager allows you to easily create and manage redirects for your broken links to avoid confusing search engines and users, as well as losing valuable backlinks. It even automatically sends users and search engines from your old URLs to your new ones.', 'all-in-one-seo-pack' ),
|
5212 |
|
5213 |
-
// Reference: src/vue/pages/redirects/
|
5214 |
-
__( '
|
5215 |
-
|
5216 |
-
// Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:111
|
5217 |
-
__( 'Apache Redirects (.htaccess)', 'all-in-one-seo-pack' ),
|
5218 |
|
5219 |
-
// Reference: src/vue/pages/redirects/views/pro/partials/
|
5220 |
-
__( '
|
5221 |
|
5222 |
-
// Reference: src/vue/pages/redirects/views/pro/partials/
|
5223 |
-
__( '
|
5224 |
|
5225 |
-
// Reference: src/vue/pages/redirects/views/pro/partials/
|
5226 |
-
__( '
|
5227 |
|
5228 |
-
// Reference: src/vue/pages/redirects/views/pro/partials/
|
5229 |
-
__( '
|
5230 |
|
5231 |
-
// Reference: src/vue/pages/redirects/views/pro/partials/
|
5232 |
-
__( '
|
5233 |
|
5234 |
-
// Reference: src/vue/pages/redirects/views/pro/partials/
|
5235 |
-
__( '
|
5236 |
|
5237 |
-
// Reference: src/vue/pages/redirects/views/pro/partials/
|
5238 |
-
__( '
|
5239 |
|
5240 |
-
// Reference: src/vue/pages/redirects/views/pro/partials/
|
5241 |
-
__( '
|
5242 |
|
5243 |
-
// Reference: src/vue/pages/redirects/views/pro/partials/
|
5244 |
-
__( '
|
5245 |
|
5246 |
-
// Reference: src/vue/pages/redirects/views/pro/partials/
|
5247 |
-
__( '
|
5248 |
|
5249 |
-
// Reference: src/vue/pages/redirects/views/pro/partials/
|
5250 |
-
__( '
|
5251 |
|
5252 |
-
// Reference: src/vue/pages/redirects/views/pro/
|
5253 |
-
__( '
|
5254 |
|
5255 |
-
// Reference: src/vue/pages/redirects/views/pro/partials/
|
5256 |
-
|
5257 |
-
__( 'You\'ll need to update your Site Address URL to match your new site address. %1$sUpdate Site Address URL%2$s.', 'all-in-one-seo-pack' ),
|
5258 |
|
5259 |
-
// Reference: src/vue/pages/redirects/views/pro/partials/
|
5260 |
-
|
5261 |
-
__( '%1$sWarning:%2$s ensure your HTTPS is working before forcing a redirect. %3$s', 'all-in-one-seo-pack' ),
|
5262 |
|
5263 |
-
// Reference: src/vue/pages/redirects/views/pro/
|
5264 |
-
__( '
|
5265 |
|
5266 |
-
// Reference: src/vue/pages/
|
5267 |
-
__( '
|
5268 |
|
5269 |
-
// Reference: src/vue/pages/redirects/views/pro/
|
5270 |
-
__( '
|
5271 |
|
5272 |
// Reference: src/vue/pages/redirects/views/pro/Settings.vue:358
|
5273 |
__( 'Redirect Settings', 'all-in-one-seo-pack' ),
|
@@ -5294,6 +5560,9 @@ $generated_i18n_strings = array(
|
|
5294 |
// Reference: src/vue/pages/redirects/views/pro/Settings.vue:367
|
5295 |
__( 'Redirect Defaults', 'all-in-one-seo-pack' ),
|
5296 |
|
|
|
|
|
|
|
5297 |
// Reference: src/vue/pages/redirects/views/pro/Settings.vue:370
|
5298 |
__( 'Log External Redirects', 'all-in-one-seo-pack' ),
|
5299 |
|
@@ -5372,50 +5641,12 @@ $generated_i18n_strings = array(
|
|
5372 |
/* Translators: 1 - A code snippet. */
|
5373 |
__( 'Make sure you include the following in your server configuration file: %1$s', 'all-in-one-seo-pack' ),
|
5374 |
|
5375 |
-
// Reference: src/vue/pages/
|
5376 |
-
__( '
|
5377 |
-
|
5378 |
-
// Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:144
|
5379 |
-
__( 'Site headers are added across your site, including redirects. Redirect headers are only added to redirects.', 'all-in-one-seo-pack' ),
|
5380 |
-
|
5381 |
-
// Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:145
|
5382 |
-
__( 'Location', 'all-in-one-seo-pack' ),
|
5383 |
-
|
5384 |
-
// Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:146
|
5385 |
-
__( 'Header', 'all-in-one-seo-pack' ),
|
5386 |
-
|
5387 |
-
// Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:149
|
5388 |
-
__( 'Add Header', 'all-in-one-seo-pack' ),
|
5389 |
-
|
5390 |
-
// Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:150
|
5391 |
-
__( 'Add Security Presets', 'all-in-one-seo-pack' ),
|
5392 |
-
|
5393 |
-
// Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:151
|
5394 |
-
__( 'Add CORS Presets', 'all-in-one-seo-pack' ),
|
5395 |
-
|
5396 |
-
// Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:152
|
5397 |
-
__( 'Add headers by clicking in the options below.', 'all-in-one-seo-pack' ),
|
5398 |
-
|
5399 |
-
// Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:153
|
5400 |
-
__( 'Select a header', 'all-in-one-seo-pack' ),
|
5401 |
-
|
5402 |
-
// Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:165
|
5403 |
-
__( 'Site', 'all-in-one-seo-pack' ),
|
5404 |
-
|
5405 |
-
// Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:166
|
5406 |
-
__( 'site', 'all-in-one-seo-pack' ),
|
5407 |
-
|
5408 |
-
// Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:169
|
5409 |
-
__( 'Redirect', 'all-in-one-seo-pack' ),
|
5410 |
-
|
5411 |
-
// Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:170
|
5412 |
-
__( 'redirect', 'all-in-one-seo-pack' ),
|
5413 |
-
|
5414 |
-
// Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:181
|
5415 |
-
__( 'Custom', 'all-in-one-seo-pack' ),
|
5416 |
|
5417 |
-
// Reference: src/vue/pages/
|
5418 |
-
|
|
|
5419 |
|
5420 |
// Reference: src/vue/pages/redirects/views/pro/Redirects.vue:217
|
5421 |
__( 'Check Redirect', 'all-in-one-seo-pack' ),
|
@@ -5444,15 +5675,6 @@ $generated_i18n_strings = array(
|
|
5444 |
// Reference: src/vue/pages/redirects/views/pro/Redirects.vue:232
|
5445 |
__( 'Reset Hits', 'all-in-one-seo-pack' ),
|
5446 |
|
5447 |
-
// Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:409
|
5448 |
-
__( 'Select which Taxonomies appear in your sitemap. Categories and Tags are excluded by default since these do not support video embedding.', 'all-in-one-seo-pack' ),
|
5449 |
-
|
5450 |
-
// Reference: src/vue/pages/redirects/views/lite/Redirects.vue:70
|
5451 |
-
__( 'Upgrade to Pro and Unlock Redirects', 'all-in-one-seo-pack' ),
|
5452 |
-
|
5453 |
-
// Reference: src/vue/pages/redirects/views/lite/Redirects.vue:71
|
5454 |
-
__( 'Redirects are only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
|
5455 |
-
|
5456 |
// Reference: src/vue/pages/redirects/mixins/pro/RedirectsLogs.js:15
|
5457 |
__( 'Last IP', 'all-in-one-seo-pack' ),
|
5458 |
|
@@ -5477,234 +5699,54 @@ $generated_i18n_strings = array(
|
|
5477 |
// Reference: src/vue/pages/redirects/mixins/pro/RedirectsLogs.js:26
|
5478 |
__( 'Last Accessed', 'all-in-one-seo-pack' ),
|
5479 |
|
5480 |
-
// Reference: src/vue/pages/
|
5481 |
-
__( '
|
5482 |
-
|
5483 |
-
// Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:130
|
5484 |
-
__( 'Number of Posts', 'all-in-one-seo-pack' ),
|
5485 |
-
|
5486 |
-
// Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:133
|
5487 |
-
__( 'Open RSS Sitemap', 'all-in-one-seo-pack' ),
|
5488 |
-
|
5489 |
-
// Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:134
|
5490 |
-
__( 'Allows you to specify the maximum number of posts for the RSS Sitemap. We recommend an amount of 50 posts.', 'all-in-one-seo-pack' ),
|
5491 |
-
|
5492 |
-
// Reference: src/vue/pages/setup-wizard/views/Welcome.vue:42
|
5493 |
-
/* Translators: 1 - The plugin short name ("AIOSEO"). */
|
5494 |
-
__( 'Welcome to the %1$s Setup Wizard!', 'all-in-one-seo-pack' ),
|
5495 |
-
|
5496 |
-
// Reference: src/vue/pages/setup-wizard/views/Welcome.vue:44
|
5497 |
-
/* Translators: 1 - The plugin short name ("AIOSEO"). */
|
5498 |
-
__( '%1$s makes it easy to configure your site\'s SEO settings without the need to hire an expert. And it takes less than 10 minutes too!', 'all-in-one-seo-pack' ),
|
5499 |
-
|
5500 |
-
// Reference: src/vue/pages/setup-wizard/views/Welcome.vue:45
|
5501 |
-
__( 'Let\'s Get Started', 'all-in-one-seo-pack' ),
|
5502 |
-
|
5503 |
-
// Reference: src/vue/pages/setup-wizard/views/Welcome.vue:46
|
5504 |
-
__( 'Go back to the Dashboard', 'all-in-one-seo-pack' ),
|
5505 |
-
|
5506 |
-
// Reference: src/vue/pages/setup-wizard/views/Success.vue:134
|
5507 |
-
__( 'Congratulations, your site is now SEO ready!', 'all-in-one-seo-pack' ),
|
5508 |
-
|
5509 |
-
// Reference: src/vue/pages/setup-wizard/views/Success.vue:135
|
5510 |
-
__( 'Finish Setup and Go to the Dashboard', 'all-in-one-seo-pack' ),
|
5511 |
-
|
5512 |
-
// Reference: src/vue/pages/setup-wizard/views/Success.vue:136
|
5513 |
-
__( 'Here\'s what to do next:', 'all-in-one-seo-pack' ),
|
5514 |
-
|
5515 |
-
// Reference: src/vue/pages/setup-wizard/views/Success.vue:137
|
5516 |
-
__( 'Join our Community', 'all-in-one-seo-pack' ),
|
5517 |
-
|
5518 |
-
// Reference: src/vue/pages/setup-wizard/views/Success.vue:138
|
5519 |
-
__( 'Join on Facebook', 'all-in-one-seo-pack' ),
|
5520 |
-
|
5521 |
-
// Reference: src/vue/pages/setup-wizard/views/Success.vue:139
|
5522 |
-
__( 'Follow on Twitter', 'all-in-one-seo-pack' ),
|
5523 |
-
|
5524 |
-
// Reference: src/vue/pages/setup-wizard/views/Success.vue:140
|
5525 |
-
__( 'Read our Step By Step Guide to Improve your SEO Rankings', 'all-in-one-seo-pack' ),
|
5526 |
-
|
5527 |
-
// Reference: src/vue/pages/setup-wizard/views/Success.vue:142
|
5528 |
-
/* Translators: 1 - Plugin short name ("AIOSEO"). */
|
5529 |
-
__( 'Watch our Guided Tour of %1$s', 'all-in-one-seo-pack' ),
|
5530 |
-
|
5531 |
-
// Reference: src/vue/pages/setup-wizard/views/Success.vue:143
|
5532 |
-
__( 'See Advanced Settings', 'all-in-one-seo-pack' ),
|
5533 |
-
|
5534 |
-
// Reference: src/vue/pages/setup-wizard/views/Success.vue:144
|
5535 |
-
__( 'Setup Webmaster Tools', 'all-in-one-seo-pack' ),
|
5536 |
-
|
5537 |
-
// Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:179
|
5538 |
-
/* Translators: 1 - Opening bold tag, 2 - Closing bold tag, 3 - Opening bold tag, 4 - Percent between 1-100, 5 - Closing bold tag. */
|
5539 |
-
__( '%1$sBonus:%2$s You can upgrade your plan today and %3$ssave %4$s off%5$s (discount auto-applied).', 'all-in-one-seo-pack' ),
|
5540 |
-
|
5541 |
-
// Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:165
|
5542 |
-
__( 'Setup Site Analyzer + Smart Recommendations', 'all-in-one-seo-pack' ),
|
5543 |
-
|
5544 |
-
// Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:167
|
5545 |
-
/* Translators: 1 - Plugin short name ("AIOSEO"). */
|
5546 |
-
__( 'Get helpful suggestions from %1$s on how to optimize your website content, so you can rank higher in search results.', 'all-in-one-seo-pack' ),
|
5547 |
-
|
5548 |
-
// Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:168
|
5549 |
-
__( 'Your Email Address', 'all-in-one-seo-pack' ),
|
5550 |
-
|
5551 |
-
// Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:169
|
5552 |
-
__( 'Your email is needed so you can receive SEO recommendations. This email will also be used to connect your site with our SEO API.', 'all-in-one-seo-pack' ),
|
5553 |
-
|
5554 |
-
// Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:171
|
5555 |
-
/* Translators: 1 - Plugin short name ("AIOSEO"). */
|
5556 |
-
__( 'Help make %1$s better for everyone', 'all-in-one-seo-pack' ),
|
5557 |
-
|
5558 |
-
// Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:172
|
5559 |
-
__( 'Yes, count me in', 'all-in-one-seo-pack' ),
|
5560 |
-
|
5561 |
-
// Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:173
|
5562 |
-
__( 'Would you like to purchase and install the following features now?', 'all-in-one-seo-pack' ),
|
5563 |
-
|
5564 |
-
// Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:174
|
5565 |
-
__( 'An upgrade is required to unlock the following features.', 'all-in-one-seo-pack' ),
|
5566 |
-
|
5567 |
-
// Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:175
|
5568 |
-
__( 'You won\'t have access to this functionality until the extensions have been purchased and installed.', 'all-in-one-seo-pack' ),
|
5569 |
-
|
5570 |
-
// Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:176
|
5571 |
-
__( 'I\'ll do it later', 'all-in-one-seo-pack' ),
|
5572 |
-
|
5573 |
-
// Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:177
|
5574 |
-
__( 'Purchase and Install Now', 'all-in-one-seo-pack' ),
|
5575 |
-
|
5576 |
-
// Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:250
|
5577 |
-
__( 'The way your site is displayed in search results is very important. Take some time to look over these settings and tweak as needed.', 'all-in-one-seo-pack' ),
|
5578 |
-
|
5579 |
-
// Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:251
|
5580 |
-
__( 'Google Snippet Preview', 'all-in-one-seo-pack' ),
|
5581 |
-
|
5582 |
-
// Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:252
|
5583 |
-
__( 'Edit Title and Description', 'all-in-one-seo-pack' ),
|
5584 |
-
|
5585 |
-
// Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:257
|
5586 |
-
__( 'Is the site under construction or live (ready to be indexed)?', 'all-in-one-seo-pack' ),
|
5587 |
-
|
5588 |
-
// Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:258
|
5589 |
-
__( 'Under Construction', 'all-in-one-seo-pack' ),
|
5590 |
-
|
5591 |
-
// Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:259
|
5592 |
-
__( 'Live Site', 'all-in-one-seo-pack' ),
|
5593 |
-
|
5594 |
-
// Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:262
|
5595 |
-
__( 'Do you have multiple authors?', 'all-in-one-seo-pack' ),
|
5596 |
-
|
5597 |
-
// Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:263
|
5598 |
-
__( 'Redirect attachment pages?', 'all-in-one-seo-pack' ),
|
5599 |
-
|
5600 |
-
// Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:223
|
5601 |
-
__( 'Last Updated Date', 'all-in-one-seo-pack' ),
|
5602 |
-
|
5603 |
-
// Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:233
|
5604 |
-
__( 'Display the sitemap on a dedicated page:', 'all-in-one-seo-pack' ),
|
5605 |
-
|
5606 |
-
// Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:239
|
5607 |
-
/* Translators: 1 - Learn more link. */
|
5608 |
-
__( 'Use the following shortcode to display the HTML Sitemap. %1$s', 'all-in-one-seo-pack' ),
|
5609 |
-
|
5610 |
-
// Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:247
|
5611 |
-
/* Translators: 1 - Opening HTML strong tag, 2 - The plugin short name ("AIOSEO"), 3 - Closing HTML strong tag. */
|
5612 |
-
__( 'To add this block, edit a page or post and search for the %1$s"%2$s - HTML Sitemap"%3$s block.', 'all-in-one-seo-pack' ),
|
5613 |
-
|
5614 |
-
// Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:257
|
5615 |
-
/* Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag, 3 - Opening HTML strong tag, 4 - The plugin short name ("AIOSEO"), 5 - Closing HTML strong tag, 6 - "Learn More" link. */
|
5616 |
-
__( 'To add this widget, visit the %1$swidgets page%2$s and look for the %3$s"%4$s - HTML Sitemap"%5$s widget.', 'all-in-one-seo-pack' ),
|
5617 |
-
|
5618 |
-
// Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:268
|
5619 |
-
/* Translators: 1 - Learn more link. */
|
5620 |
-
__( 'Use the following PHP code anywhere in your theme to display the sitemap. %1$s', 'all-in-one-seo-pack' ),
|
5621 |
-
|
5622 |
-
// Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:276
|
5623 |
-
__( 'HTML Sitemap Settings', 'all-in-one-seo-pack' ),
|
5624 |
-
|
5625 |
-
// Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:277
|
5626 |
-
__( 'Using the custom-built tools below, you can add an HTML sitemap to your website and help visitors discover all your content. Adding an HTML sitemap to your website may also help search engines find your content more easily.', 'all-in-one-seo-pack' ),
|
5627 |
-
|
5628 |
-
// Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:287
|
5629 |
-
__( 'Publication Date', 'all-in-one-seo-pack' ),
|
5630 |
-
|
5631 |
-
// Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:288
|
5632 |
-
__( 'This setting only applies to posts and pages.', 'all-in-one-seo-pack' ),
|
5633 |
-
|
5634 |
-
// Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:292
|
5635 |
-
/* Translators: 1 - "Learn More" link. */
|
5636 |
-
__( 'This setting allows you to toggle between the regular sitemap or the compact date archive sitemap. %1$s', 'all-in-one-seo-pack' ),
|
5637 |
-
|
5638 |
-
// Reference: src/vue/pages/setup-wizard/views/Import.vue:80
|
5639 |
-
__( 'Import data from your current plugins', 'all-in-one-seo-pack' ),
|
5640 |
-
|
5641 |
-
// Reference: src/vue/pages/setup-wizard/views/Import.vue:82
|
5642 |
-
/* Translators: 1 - Plugin short name ("AIOSEO"). */
|
5643 |
-
__( 'We have detected other SEO plugins installed on your website. Select which plugins you would like to import data to %1$s.', 'all-in-one-seo-pack' ),
|
5644 |
|
5645 |
-
// Reference: src/vue/pages/
|
5646 |
-
__( '
|
5647 |
|
5648 |
-
// Reference: src/vue/pages/
|
5649 |
-
__( '
|
5650 |
|
5651 |
-
// Reference: src/vue/pages/
|
5652 |
-
__( '
|
5653 |
|
5654 |
-
// Reference: src/vue/pages/
|
5655 |
-
|
5656 |
-
__( 'News Sitemaps are only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
|
5657 |
|
5658 |
-
// Reference: src/vue/pages/
|
5659 |
-
__( '
|
5660 |
|
5661 |
-
// Reference: src/vue/pages/
|
5662 |
-
|
|
|
5663 |
|
5664 |
-
// Reference: src/vue/pages/
|
5665 |
-
__( '
|
5666 |
|
5667 |
-
// Reference: src/vue/pages/
|
5668 |
-
__( '
|
5669 |
|
5670 |
-
// Reference: src/vue/pages/
|
5671 |
-
|
5672 |
-
__( 'Video Sitemaps are only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
|
5673 |
|
5674 |
-
// Reference: src/vue/pages/
|
5675 |
-
__( '
|
5676 |
|
5677 |
-
// Reference: src/vue/pages/
|
5678 |
-
|
5679 |
-
__( 'upgrade to %1$s', 'all-in-one-seo-pack' ),
|
5680 |
|
5681 |
-
// Reference: src/vue/pages/
|
5682 |
-
__( '
|
5683 |
|
5684 |
-
// Reference: src/vue/pages/
|
5685 |
-
|
5686 |
-
__( 'To unlock the selected features, please %1$s and enter your license key below.', 'all-in-one-seo-pack' ),
|
5687 |
|
5688 |
-
// Reference: src/vue/pages/
|
5689 |
/* Translators: 1 - The plugin short name ("AIOSEO"). */
|
5690 |
-
__( '
|
5691 |
-
|
5692 |
-
// Reference: src/vue/pages/setup-wizard/views/Features.vue:130
|
5693 |
-
/* Translators: 1 - A list of plugin names. */
|
5694 |
-
__( 'The following plugins will be installed: %1$s', 'all-in-one-seo-pack' ),
|
5695 |
-
|
5696 |
-
// Reference: src/vue/pages/setup-wizard/views/Features.vue:135
|
5697 |
-
/* Translators: 1 - Plugin short name ("AIOSEO"), 2 - A list of plugin names. */
|
5698 |
-
__( 'The following %1$s addons will be installed: %2$s', 'all-in-one-seo-pack' ),
|
5699 |
-
|
5700 |
-
// Reference: src/vue/pages/setup-wizard/views/Features.vue:140
|
5701 |
-
/* Translators: 1 - Plugin short name ("AIOSEO"), 2 - A list of plugin names. */
|
5702 |
-
__( 'The following plugins and %1$s addons will be installed: %2$s', 'all-in-one-seo-pack' ),
|
5703 |
-
|
5704 |
-
// Reference: src/vue/pages/setup-wizard/views/Features.vue:82
|
5705 |
-
__( 'Which SEO features do you want to enable?', 'all-in-one-seo-pack' ),
|
5706 |
|
5707 |
-
// Reference: src/vue/pages/
|
5708 |
-
__( '
|
5709 |
);
|
5710 |
/* THIS IS THE END OF THE GENERATED FILE */
|
4 |
// Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Archives.vue:49
|
5 |
__( '404', 'all-in-one-seo-pack' ),
|
6 |
|
7 |
+
// Reference: src/vue/pages/feature-manager/router/paths.js:19
|
8 |
+
// Reference: src/vue/pages/feature-manager/views/Main.vue:20
|
9 |
+
__( 'Feature Manager', 'all-in-one-seo-pack' ),
|
10 |
+
|
11 |
+
// Reference: src/vue/pages/about/router/paths.js:19
|
12 |
+
__( 'About Us', 'all-in-one-seo-pack' ),
|
13 |
+
|
14 |
+
// Reference: src/vue/pages/about/router/paths.js:28
|
15 |
+
__( 'Getting Started', 'all-in-one-seo-pack' ),
|
16 |
+
|
17 |
+
// Reference: src/vue/pages/about/router/paths.js:37
|
18 |
+
__( 'Lite vs. Pro', 'all-in-one-seo-pack' ),
|
19 |
|
20 |
// Reference: src/vue/pages/social-networks/router/paths.js:19
|
21 |
__( 'Social Profiles', 'all-in-one-seo-pack' ),
|
29 |
// Reference: src/vue/pages/social-networks/router/paths.js:46
|
30 |
__( 'Pinterest', 'all-in-one-seo-pack' ),
|
31 |
|
32 |
+
// Reference: src/vue/pages/connect-pro/router/paths.js:20
|
33 |
+
// Reference: src/vue/pages/connect/router/paths.js:20
|
34 |
+
/* Translators: 1 - The plugin short name ("AIOSEO"). */
|
35 |
+
__( 'Connect with %1$s', 'all-in-one-seo-pack' ),
|
|
|
|
|
36 |
|
37 |
+
// Reference: src/vue/pages/search-appearance/router/paths.js:19
|
38 |
+
__( 'Global Settings', 'all-in-one-seo-pack' ),
|
39 |
|
40 |
+
// Reference: src/vue/pages/search-appearance/router/paths.js:28
|
41 |
+
// Reference: src/vue/pages/settings/views/pro/Breadcrumbs.vue:56
|
42 |
+
__( 'Content Types', 'all-in-one-seo-pack' ),
|
43 |
|
44 |
+
// Reference: src/vue/components/common/core/PriorityScore.vue:63
|
45 |
+
// Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:429
|
46 |
+
__( 'Taxonomies', 'all-in-one-seo-pack' ),
|
47 |
|
48 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:142
|
49 |
+
// Reference: src/vue/plugins/constants.js:1101
|
50 |
+
__( 'Image SEO', 'all-in-one-seo-pack' ),
|
51 |
|
52 |
+
// Reference: src/vue/pages/search-appearance/router/paths.js:55
|
53 |
+
// Reference: src/vue/pages/settings/views/pro/Breadcrumbs.vue:68
|
54 |
+
__( 'Archives', 'all-in-one-seo-pack' ),
|
55 |
|
56 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:130
|
57 |
+
// Reference: src/vue/pages/search-appearance/views/ContentTypes.vue:76
|
58 |
__( 'Advanced', 'all-in-one-seo-pack' ),
|
59 |
|
60 |
// Reference: src/vue/pages/local-business-seo/blocks/LocationCategories.js:30
|
70 |
// Reference: src/vue/pages/local-business-seo/blocks/LocationMap.js:117
|
71 |
__( 'No %s found', 'all-in-one-seo-pack' ),
|
72 |
|
|
|
|
|
|
|
73 |
// Reference: src/vue/pages/local-business-seo/blocks/LocationMap.js:212
|
74 |
__( 'Select a %s', 'all-in-one-seo-pack' ),
|
75 |
|
|
|
|
|
|
|
|
|
76 |
// Reference: src/vue/pages/local-business-seo/blocks/Locations.js:46
|
77 |
/* Translators: 1 - AIOSEO. */
|
78 |
__( '%1$s Local - Locations', 'all-in-one-seo-pack' ),
|
79 |
|
80 |
+
// Reference: src/vue/pages/post-settings/registerScoreToggler.js:16
|
81 |
+
__( 'N/A', 'all-in-one-seo-pack' ),
|
82 |
+
|
83 |
+
// Reference: src/vue/pages/local-business-seo/blocks/BusinessInfo.js:211
|
84 |
+
__( 'Display Settings', 'all-in-one-seo-pack' ),
|
85 |
+
|
86 |
+
// Reference: src/vue/pages/local-business-seo/blocks/BusinessInfo.js:46
|
87 |
+
/* Translators: 1 - AIOSEO. */
|
88 |
+
__( '%1$s Local - Business Info', 'all-in-one-seo-pack' ),
|
89 |
+
|
90 |
// Reference: src/vue/pages/local-business-seo/blocks/LocationMap.js:192
|
91 |
+
// Reference: src/vue/pages/redirects/router/paths.js:64
|
92 |
__( 'Settings', 'all-in-one-seo-pack' ),
|
93 |
|
94 |
// Reference: src/vue/pages/local-business-seo/blocks/LocationMap.js:227
|
102 |
/* Translators: 1 - AIOSEO. */
|
103 |
__( '%1$s Local - Opening Hours', 'all-in-one-seo-pack' ),
|
104 |
|
|
|
|
|
|
|
105 |
// Reference: src/vue/pages/local-seo/router/paths.js:19
|
106 |
__( 'Locations', 'all-in-one-seo-pack' ),
|
107 |
|
108 |
+
// Reference: src/vue/pages/local-business-seo/views/Main.vue:53
|
109 |
__( 'Opening Hours', 'all-in-one-seo-pack' ),
|
110 |
|
111 |
+
// Reference: src/vue/pages/local-business-seo/views/Main.vue:58
|
112 |
__( 'Maps', 'all-in-one-seo-pack' ),
|
113 |
|
114 |
+
// Reference: src/vue/pages/seo-analysis/router/paths.js:19
|
115 |
+
__( 'SEO Audit Checklist', 'all-in-one-seo-pack' ),
|
116 |
+
|
117 |
+
// Reference: src/vue/pages/seo-analysis/router/paths.js:28
|
118 |
+
__( 'Analyze Competitor Site', 'all-in-one-seo-pack' ),
|
119 |
+
|
120 |
+
// Reference: src/vue/standalone/publish-panel/PostPublish.vue:30
|
121 |
+
__( 'Get out the word!', 'all-in-one-seo-pack' ),
|
122 |
+
|
123 |
+
// Reference: src/vue/standalone/publish-panel/PostPublish.vue:31
|
124 |
+
__( 'Share your content on your favorite social media platforms to drive engagement and increase your SEO.', 'all-in-one-seo-pack' ),
|
125 |
+
|
126 |
+
// Reference: src/vue/standalone/notifications/App.vue:17
|
127 |
+
__( 'You have new notifications!', 'all-in-one-seo-pack' ),
|
128 |
+
|
129 |
+
// Reference: src/vue/pages/posts-table/App.vue:219
|
130 |
__( 'Title:', 'all-in-one-seo-pack' ),
|
131 |
|
132 |
+
// Reference: src/vue/pages/posts-table/App.vue:220
|
133 |
__( 'Description:', 'all-in-one-seo-pack' ),
|
134 |
|
135 |
+
// Reference: src/vue/pages/posts-table/App.vue:221
|
136 |
+
__( 'Image Title:', 'all-in-one-seo-pack' ),
|
137 |
+
|
138 |
+
// Reference: src/vue/pages/posts-table/App.vue:222
|
139 |
+
__( 'Image Alt Tag:', 'all-in-one-seo-pack' ),
|
140 |
+
|
141 |
+
// Reference: src/vue/pages/posts-table/App.vue:223
|
142 |
__( 'Edit', 'all-in-one-seo-pack' ),
|
143 |
|
144 |
+
// Reference: src/vue/pages/posts-table/App.vue:224
|
145 |
__( 'Save', 'all-in-one-seo-pack' ),
|
146 |
|
147 |
+
// Reference: src/vue/pages/posts-table/App.vue:225
|
148 |
__( 'Cancel', 'all-in-one-seo-pack' ),
|
149 |
|
150 |
+
// Reference: src/vue/pages/posts-table/App.vue:226
|
151 |
__( 'Please wait...', 'all-in-one-seo-pack' ),
|
152 |
|
153 |
+
// Reference: src/vue/router/index.js:71
|
154 |
+
__( 'Are you sure you want to leave? you have unsaved changes!', 'all-in-one-seo-pack' ),
|
155 |
|
156 |
// Reference: src/vue/standalone/publish-panel/PrePublish.vue:148
|
157 |
__( 'Blocked!', 'all-in-one-seo-pack' ),
|
175 |
// Reference: src/vue/pages/post-settings/views/General.vue:283
|
176 |
__( 'Snippet Preview', 'all-in-one-seo-pack' ),
|
177 |
|
178 |
+
// Reference: src/vue/pages/post-settings/views/Advanced.vue:116
|
179 |
// Reference: src/vue/standalone/publish-panel/PrePublish.vue:72
|
180 |
__( 'Canonical URL', 'all-in-one-seo-pack' ),
|
181 |
|
183 |
__( 'Visibility', 'all-in-one-seo-pack' ),
|
184 |
|
185 |
// Reference: src/vue/pages/dashboard/views/Main.vue:226
|
186 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:288
|
187 |
__( 'SEO Analysis', 'all-in-one-seo-pack' ),
|
188 |
|
189 |
// Reference: src/vue/pages/post-settings/views/General.vue:296
|
190 |
__( 'Readability', 'all-in-one-seo-pack' ),
|
191 |
|
192 |
+
// Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:301
|
193 |
__( 'Focus Keyphrase', 'all-in-one-seo-pack' ),
|
194 |
|
195 |
+
// Reference: src/vue/pages/local-business-seo/views/BusinessInfo.vue:117
|
196 |
+
// Reference: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:133
|
197 |
+
__( 'Address', 'all-in-one-seo-pack' ),
|
198 |
|
199 |
+
// Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:323
|
200 |
+
__( 'Phone Number', 'all-in-one-seo-pack' ),
|
201 |
|
202 |
+
// Reference: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:102
|
203 |
+
__( 'Fax Number', 'all-in-one-seo-pack' ),
|
204 |
|
205 |
+
// Reference: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:103
|
206 |
+
__( 'Email Address', 'all-in-one-seo-pack' ),
|
207 |
|
208 |
+
// Reference: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:104
|
209 |
+
__( 'Show VAT ID', 'all-in-one-seo-pack' ),
|
210 |
|
211 |
+
// Reference: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:105
|
212 |
+
__( 'Show Tax ID', 'all-in-one-seo-pack' ),
|
213 |
|
214 |
+
// Reference: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:106
|
215 |
+
__( 'Phone/Fax Country Code', 'all-in-one-seo-pack' ),
|
216 |
|
217 |
+
// Reference: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:96
|
218 |
+
__( 'Show labels', 'all-in-one-seo-pack' ),
|
219 |
|
220 |
+
// Reference: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:97
|
221 |
+
__( 'Show icons', 'all-in-one-seo-pack' ),
|
222 |
|
223 |
+
// Reference: src/vue/pages/local-business-seo/views/BusinessInfo.vue:109
|
224 |
+
// Reference: src/vue/pages/local-business-seo/views/Main.vue:48
|
225 |
+
// Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:119
|
226 |
+
// Reference: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:129
|
227 |
+
__( 'Business Info', 'all-in-one-seo-pack' ),
|
228 |
|
229 |
+
// Reference: src/vue/pages/local-business-seo/views/BusinessInfo.vue:110
|
230 |
+
// Reference: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:130
|
231 |
+
// Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:321
|
232 |
+
__( 'Name', 'all-in-one-seo-pack' ),
|
233 |
|
234 |
+
// Reference: src/vue/utils/tags.js:64
|
235 |
+
__( 'Product Short Description', 'all-in-one-seo-pack' ),
|
236 |
|
237 |
+
// Reference: src/vue/utils/tags.js:65
|
238 |
+
__( 'A short description for your product.', 'all-in-one-seo-pack' ),
|
|
|
239 |
|
240 |
+
// Reference: src/vue/utils/tags.js:66
|
241 |
+
__( 'Sample short description for your product.', 'all-in-one-seo-pack' ),
|
|
|
242 |
|
243 |
+
// Reference: src/vue/utils/tags.js:82
|
244 |
+
__( 'Archive', 'all-in-one-seo-pack' ),
|
245 |
|
246 |
+
// Reference: src/vue/utils/tags.js:83
|
247 |
+
__( 'archive', 'all-in-one-seo-pack' ),
|
248 |
|
249 |
+
// Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:123
|
250 |
+
__( 'Set title attributes', 'all-in-one-seo-pack' ),
|
251 |
|
252 |
+
// Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:124
|
253 |
+
__( 'Set alt tag attributes', 'all-in-one-seo-pack' ),
|
|
|
254 |
|
255 |
+
// Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:125
|
256 |
+
__( 'Strip punctuation for titles', 'all-in-one-seo-pack' ),
|
257 |
|
258 |
+
// Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:126
|
259 |
+
__( 'Strip punctuation for alt tags', 'all-in-one-seo-pack' ),
|
260 |
|
261 |
+
// Reference: src/vue/components/common/core/FeatureCard.vue:131
|
262 |
+
// Reference: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:57
|
263 |
+
// Reference: src/vue/pages/sitemaps/views/pro/NewsSitemapActivate.vue:137
|
264 |
+
__( 'An error occurred while activating the addon. Please upload it manually or contact support for more information.', 'all-in-one-seo-pack' ),
|
265 |
|
266 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:109
|
267 |
+
__( 'Social Meta (Open Graph Markup)', 'all-in-one-seo-pack' ),
|
268 |
|
269 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:112
|
270 |
+
__( 'Posts, Pages and custom Post Types only', 'all-in-one-seo-pack' ),
|
|
|
271 |
|
272 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:116
|
273 |
+
__( 'Posts, Pages, custom Post Types + Categories, Tags and custom Taxonomies', 'all-in-one-seo-pack' ),
|
274 |
|
275 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:120
|
276 |
+
__( 'WooCommerce Integration', 'all-in-one-seo-pack' ),
|
277 |
|
278 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:123
|
279 |
+
__( 'WooCommerce Products only', 'all-in-one-seo-pack' ),
|
280 |
|
281 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:127
|
282 |
+
__( 'WooCommerce Products, Product Categories, Product Tags, Product Attributes + WooCommerce smart tags (price, brand, etc.)', 'all-in-one-seo-pack' ),
|
283 |
|
284 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:131
|
285 |
+
__( 'Schema Rich Snippets', 'all-in-one-seo-pack' ),
|
|
|
286 |
|
287 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:134
|
288 |
+
__( 'Posts, Pages, Categories and Tags only', 'all-in-one-seo-pack' ),
|
|
|
289 |
|
290 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:138
|
291 |
+
__( 'Posts, Pages, Categories, Tags + Breadcrumb Navigation + advanced graphs (Product, FAQ Page, Recipe, etc.)', 'all-in-one-seo-pack' ),
|
292 |
|
293 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:142
|
294 |
+
__( 'Visual Breadcrumb Trails', 'all-in-one-seo-pack' ),
|
295 |
|
296 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:145
|
297 |
+
__( 'Default template for all pages.', 'all-in-one-seo-pack' ),
|
298 |
|
299 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:149
|
300 |
+
__( 'Granular control over the template for each post type, taxonomy and archive.', 'all-in-one-seo-pack' ),
|
301 |
|
302 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:153
|
303 |
+
__( 'XML Sitemap', 'all-in-one-seo-pack' ),
|
304 |
|
305 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:156
|
306 |
+
__( 'Control the priority & frequency per Post Type/Taxonomy', 'all-in-one-seo-pack' ),
|
307 |
|
308 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:159
|
309 |
+
__( 'Complete Support', 'all-in-one-seo-pack' ),
|
310 |
|
311 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:160
|
312 |
+
__( 'Control the priority & frequency of each Post, Page, Category, Tag, etc.', 'all-in-one-seo-pack' ),
|
313 |
|
314 |
+
// Reference: src/vue/pages/sitemaps/router/paths.js:28
|
315 |
+
// Reference: src/vue/plugins/constants.js:1117
|
316 |
+
__( 'Video Sitemap', 'all-in-one-seo-pack' ),
|
317 |
|
318 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:170
|
319 |
+
__( 'Submit your videos to search engines (Pro & Elite plans only)', 'all-in-one-seo-pack' ),
|
320 |
|
321 |
+
// Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:5
|
322 |
+
// Reference: src/vue/pages/sitemaps/router/paths.js:38
|
323 |
+
// Reference: src/vue/plugins/constants.js:1125
|
324 |
+
__( 'News Sitemap', 'all-in-one-seo-pack' ),
|
325 |
|
326 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:180
|
327 |
+
__( 'Submit your latest news stories to Google News (Pro & Elite plans only)', 'all-in-one-seo-pack' ),
|
328 |
|
329 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:190
|
330 |
+
__( 'Control the Title & Alt Tag attribute of your images (Plus, Pro & Elite plans only)', 'all-in-one-seo-pack' ),
|
|
|
331 |
|
332 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:203
|
333 |
+
// Reference: src/vue/pages/local-seo/views/Main.vue:23
|
334 |
+
// Reference: src/vue/plugins/constants.js:1109
|
335 |
+
__( 'Local SEO', 'all-in-one-seo-pack' ),
|
336 |
|
337 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:196
|
338 |
+
__( 'Not available', 'all-in-one-seo-pack' ),
|
339 |
|
340 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:200
|
341 |
+
__( 'Local Business schema (multiple locations supported) + Business Info & Location blocks, widgets & shortcodes (Plus, Pro & Elite plans only)', 'all-in-one-seo-pack' ),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
342 |
|
343 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:204
|
344 |
+
__( 'Redirection Manager', 'all-in-one-seo-pack' ),
|
345 |
|
346 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:206
|
347 |
+
__( 'Not Available', 'all-in-one-seo-pack' ),
|
348 |
|
349 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:209
|
350 |
+
__( 'Available as Addon Plugin', 'all-in-one-seo-pack' ),
|
351 |
|
352 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:210
|
353 |
+
__( 'Create, manage and monitor redirects for 404\'s or modified posts + server redirects, full site redirects and site aliases (Pro & Elite plans only)', 'all-in-one-seo-pack' ),
|
354 |
|
355 |
+
// Reference: src/vue/plugins/constants.js:1050
|
356 |
+
__( 'Customer Support', 'all-in-one-seo-pack' ),
|
357 |
|
358 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:216
|
359 |
+
__( 'Limited Support', 'all-in-one-seo-pack' ),
|
360 |
|
361 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:219
|
362 |
+
__( 'Priority Support', 'all-in-one-seo-pack' ),
|
363 |
|
364 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:71
|
365 |
+
/* Translators: 1 - The abbreviated plugin name ("AIOSEO"). */
|
366 |
+
__( '%1$s Lite vs. Pro', 'all-in-one-seo-pack' ),
|
367 |
|
368 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:73
|
369 |
/* Translators: 1 - The plugin name ("All in One SEO"). */
|
370 |
+
__( 'Get the most out of %1$s by upgrading to Pro and unlocking all of the powerful features.', 'all-in-one-seo-pack' ),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
371 |
|
372 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:76
|
373 |
+
__( 'Features:', 'all-in-one-seo-pack' ),
|
374 |
|
375 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:79
|
376 |
+
__( 'Upgrade to Pro to Unlock Powerful SEO Features', 'all-in-one-seo-pack' ),
|
377 |
|
378 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:81
|
379 |
+
/* Translators: 1 - Plugin name ("All in One SEO"), 2 - Plugin short name ("AIOSEO"). */
|
380 |
+
__( '%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' ),
|
381 |
|
382 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:83
|
383 |
+
/* Translators: 1 - "Pro". */
|
384 |
+
__( 'Upgrade to %1$s Today', 'all-in-one-seo-pack' ),
|
385 |
|
386 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:86
|
387 |
+
/* Translators: 1 - Opening bold tag, 2 - Closing bold tag, 3 - "Pro", 4 - Opening bold tag, 5 - A percentage ("50%"), 6 - Closing bold tag. */
|
388 |
+
__( '%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' ),
|
389 |
|
390 |
+
// Reference: src/vue/pages/about/views/lite/LiteVsPro.vue:98
|
391 |
+
__( 'Search Engine Optimization (SEO)', 'all-in-one-seo-pack' ),
|
392 |
|
393 |
+
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:282
|
394 |
+
// Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:218
|
395 |
__( 'Opening Hours Settings', 'all-in-one-seo-pack' ),
|
396 |
|
397 |
+
// Reference: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:50
|
|
|
|
|
|
|
398 |
__( 'Show Opening Hours', 'all-in-one-seo-pack' ),
|
399 |
|
400 |
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:283
|
401 |
// Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:220
|
|
|
402 |
__( 'Display Opening Hours', 'all-in-one-seo-pack' ),
|
403 |
|
404 |
// Reference: src/vue/pages/local-business-seo/views/OpeningHours.vue:175
|
405 |
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:284
|
406 |
// Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:221
|
|
|
407 |
__( 'Labels', 'all-in-one-seo-pack' ),
|
408 |
|
409 |
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:285
|
|
|
410 |
__( 'Closed label', 'all-in-one-seo-pack' ),
|
411 |
|
412 |
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:286
|
|
|
413 |
__( 'Text to display when \'Closed\' setting is checked', 'all-in-one-seo-pack' ),
|
414 |
|
415 |
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:287
|
416 |
// Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:226
|
|
|
417 |
__( 'Open 24h label', 'all-in-one-seo-pack' ),
|
418 |
|
419 |
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:288
|
|
|
420 |
__( 'Text to display when \'Open 24h\' setting is checked', 'all-in-one-seo-pack' ),
|
421 |
|
422 |
// Reference: src/vue/pages/local-business-seo/views/OpeningHours.vue:183
|
423 |
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:289
|
424 |
// Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:229
|
|
|
425 |
__( 'Open 24/7', 'all-in-one-seo-pack' ),
|
426 |
|
427 |
// Reference: src/vue/pages/local-business-seo/views/OpeningHours.vue:184
|
428 |
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:290
|
429 |
// Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:230
|
|
|
430 |
__( 'Use 24h format', 'all-in-one-seo-pack' ),
|
431 |
|
432 |
// Reference: src/vue/pages/local-business-seo/views/OpeningHours.vue:186
|
433 |
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:291
|
434 |
// Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:231
|
|
|
435 |
__( 'Timezone', 'all-in-one-seo-pack' ),
|
436 |
|
437 |
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:292
|
|
|
438 |
__( 'Select your timezone:', 'all-in-one-seo-pack' ),
|
439 |
|
440 |
// Reference: src/vue/pages/local-business-seo/blocks/OpeningHoursSidebar.vue:88
|
461 |
// Reference: src/vue/pages/local-business-seo/views/OpeningHours.vue:181
|
462 |
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:301
|
463 |
// Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:234
|
|
|
464 |
__( 'Open 24h', 'all-in-one-seo-pack' ),
|
465 |
|
466 |
// Reference: src/vue/pages/local-business-seo/views/OpeningHours.vue:178
|
467 |
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:302
|
468 |
// Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:235
|
|
|
469 |
__( 'Closed', 'all-in-one-seo-pack' ),
|
470 |
|
471 |
+
// Reference: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:148
|
472 |
+
__( 'Advanced Locations Settings', 'all-in-one-seo-pack' ),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
473 |
|
474 |
+
// Reference: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:149
|
475 |
+
__( 'Locations Permalink', 'all-in-one-seo-pack' ),
|
476 |
|
477 |
+
// Reference: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:150
|
478 |
+
__( 'Use custom slug', 'all-in-one-seo-pack' ),
|
479 |
|
480 |
+
// Reference: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:151
|
481 |
+
__( 'Slug is empty or is already taken. Please enter a different one.', 'all-in-one-seo-pack' ),
|
482 |
|
483 |
+
// Reference: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:152
|
484 |
+
__( 'Locations Category Permalink', 'all-in-one-seo-pack' ),
|
|
|
485 |
|
486 |
+
// Reference: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:153
|
487 |
+
__( 'Use custom category slug', 'all-in-one-seo-pack' ),
|
488 |
|
489 |
+
// Reference: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:154
|
490 |
+
__( 'Enhanced Search', 'all-in-one-seo-pack' ),
|
491 |
|
492 |
+
// Reference: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:155
|
493 |
+
__( 'Include business locations in site-wide search results. Users searching for street name, zip code or city will now also get your business location(s) in their search results.', 'all-in-one-seo-pack' ),
|
494 |
|
495 |
+
// Reference: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:156
|
496 |
+
__( 'Enhanced Search cannot be enabled on your website because there is a search query conflict. To learn more about this, %1$sclick here%2$s.', 'all-in-one-seo-pack' ),
|
497 |
|
498 |
+
// Reference: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:157
|
499 |
+
__( 'Enhanced Search - Excerpt', 'all-in-one-seo-pack' ),
|
|
|
500 |
|
501 |
+
// Reference: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:158
|
502 |
+
__( 'Shows the location address appended to the search result.', 'all-in-one-seo-pack' ),
|
|
|
|
|
503 |
|
504 |
+
// Reference: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:159
|
505 |
+
__( 'Custom Admin Labels', 'all-in-one-seo-pack' ),
|
506 |
|
507 |
+
// Reference: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:160
|
508 |
+
__( 'With multiple locations, you will have a new menu item in your admin sidebar. By default, this menu item is labeled using the plural term of locations with each single item being called a location. If you like, you may enter custom labels to better match your business.', 'all-in-one-seo-pack' ),
|
509 |
|
510 |
+
// Reference: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:161
|
511 |
+
__( 'Single label', 'all-in-one-seo-pack' ),
|
512 |
|
513 |
+
// Reference: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:162
|
514 |
+
__( 'Plural label', 'all-in-one-seo-pack' ),
|
515 |
|
516 |
+
// Reference: src/vue/plugins/constants.js:1049
|
517 |
+
__( 'Manually Enter Type', 'all-in-one-seo-pack' ),
|
518 |
|
519 |
+
// Reference: src/vue/plugins/constants.js:1051
|
520 |
+
__( 'Technical Support', 'all-in-one-seo-pack' ),
|
|
|
|
|
521 |
|
522 |
+
// Reference: src/vue/plugins/constants.js:1052
|
523 |
+
__( 'Billing Support', 'all-in-one-seo-pack' ),
|
524 |
|
525 |
+
// Reference: src/vue/plugins/constants.js:1053
|
526 |
+
__( 'Bill Payment', 'all-in-one-seo-pack' ),
|
527 |
|
528 |
+
// Reference: src/vue/plugins/constants.js:1054
|
529 |
+
__( 'Sales', 'all-in-one-seo-pack' ),
|
530 |
|
531 |
+
// Reference: src/vue/plugins/constants.js:1055
|
532 |
+
__( 'Reservations', 'all-in-one-seo-pack' ),
|
533 |
|
534 |
+
// Reference: src/vue/plugins/constants.js:1056
|
535 |
+
__( 'Credit Card Support', 'all-in-one-seo-pack' ),
|
536 |
|
537 |
+
// Reference: src/vue/plugins/constants.js:1057
|
538 |
+
__( 'Emergency', 'all-in-one-seo-pack' ),
|
539 |
|
540 |
+
// Reference: src/vue/plugins/constants.js:1058
|
541 |
+
__( 'Bagage Tracking', 'all-in-one-seo-pack' ),
|
542 |
|
543 |
+
// Reference: src/vue/plugins/constants.js:1059
|
544 |
+
__( 'Roadside Assistance', 'all-in-one-seo-pack' ),
|
545 |
|
546 |
+
// Reference: src/vue/plugins/constants.js:1060
|
547 |
+
__( 'Package Tracking', 'all-in-one-seo-pack' ),
|
548 |
|
549 |
// Reference: src/vue/pages/dashboard/views/Main.vue:233
|
550 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:133
|
551 |
+
// Reference: src/vue/plugins/constants.js:1066
|
552 |
__( 'Sitemaps', 'all-in-one-seo-pack' ),
|
553 |
|
554 |
+
// Reference: src/vue/plugins/constants.js:1067
|
555 |
+
__( 'Sitemaps are a list of all your content that search engines use when they crawl your site.', 'all-in-one-seo-pack' ),
|
|
|
|
|
|
|
556 |
|
557 |
+
// Reference: src/vue/plugins/constants.js:1077
|
558 |
+
__( 'Optimized Search Appearance', 'all-in-one-seo-pack' ),
|
|
|
559 |
|
560 |
+
// Reference: src/vue/plugins/constants.js:1078
|
561 |
+
__( 'Get all the right tools to make sure your website shows up in Google Search.', 'all-in-one-seo-pack' ),
|
|
|
562 |
|
563 |
+
// Reference: src/vue/pages/monsterinsights/views/Main.vue:20
|
564 |
+
// Reference: src/vue/plugins/constants.js:1085
|
565 |
+
__( 'Analytics', 'all-in-one-seo-pack' ),
|
|
|
|
|
566 |
|
567 |
+
// Reference: src/vue/plugins/constants.js:1086
|
568 |
+
__( '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' ),
|
569 |
|
570 |
+
// Reference: src/vue/plugins/constants.js:1093
|
571 |
+
__( 'Breadcrumbs', 'all-in-one-seo-pack' ),
|
572 |
|
573 |
+
// Reference: src/vue/plugins/constants.js:1102
|
574 |
+
__( 'Globally control Title and Alt attributes for attachment pages and images that are embedded in your content.', 'all-in-one-seo-pack' ),
|
|
|
575 |
|
576 |
+
// Reference: src/vue/plugins/constants.js:1110
|
577 |
+
__( 'Tell Google about your business for display as a Knowledge Graph card or business carousel.', 'all-in-one-seo-pack' ),
|
|
|
578 |
|
579 |
+
// Reference: src/vue/plugins/constants.js:1118
|
580 |
+
__( 'Generate an XML Sitemap specifically for video content on your site.', 'all-in-one-seo-pack' ),
|
|
|
581 |
|
582 |
+
// Reference: src/vue/plugins/constants.js:1126
|
583 |
+
__( 'Submit articles to Google News that were published in the last 48 hours.', 'all-in-one-seo-pack' ),
|
584 |
|
585 |
+
// Reference: src/vue/plugins/constants.js:1133
|
586 |
+
__( 'Smart Redirects + 404 Detection', 'all-in-one-seo-pack' ),
|
587 |
|
588 |
+
// Reference: src/vue/plugins/constants.js:1134
|
589 |
+
__( 'Create and manage redirects for your broken links.', 'all-in-one-seo-pack' ),
|
590 |
|
591 |
+
// Reference: src/vue/plugins/constants.js:1141
|
592 |
+
__( 'Internal Link Building Assistant', 'all-in-one-seo-pack' ),
|
593 |
|
594 |
+
// Reference: src/vue/plugins/constants.js:1149
|
595 |
+
__( 'Advanced Rich Snippets + Schema Markups', 'all-in-one-seo-pack' ),
|
596 |
|
597 |
+
// Reference: src/vue/plugins/constants.js:1160
|
598 |
+
__( 'Activities', 'all-in-one-seo-pack' ),
|
599 |
|
600 |
+
// Reference: src/vue/plugins/constants.js:1162
|
601 |
+
__( 'Activity', 'all-in-one-seo-pack' ),
|
602 |
|
603 |
+
// Reference: src/vue/plugins/constants.js:1163
|
604 |
+
__( 'Sport', 'all-in-one-seo-pack' ),
|
605 |
|
606 |
+
// Reference: src/vue/plugins/constants.js:1167
|
607 |
+
__( 'Businesses', 'all-in-one-seo-pack' ),
|
608 |
|
609 |
+
// Reference: src/vue/plugins/constants.js:1169
|
610 |
+
__( 'Bar', 'all-in-one-seo-pack' ),
|
611 |
|
612 |
+
// Reference: src/vue/plugins/constants.js:1170
|
613 |
+
__( 'Company', 'all-in-one-seo-pack' ),
|
614 |
|
615 |
+
// Reference: src/vue/plugins/constants.js:1171
|
616 |
+
__( 'Cafe', 'all-in-one-seo-pack' ),
|
617 |
|
618 |
+
// Reference: src/vue/plugins/constants.js:1172
|
619 |
+
__( 'Hotel', 'all-in-one-seo-pack' ),
|
620 |
|
621 |
+
// Reference: src/vue/plugins/constants.js:1173
|
622 |
+
__( 'Restaurant', 'all-in-one-seo-pack' ),
|
623 |
|
624 |
+
// Reference: src/vue/plugins/constants.js:1177
|
625 |
+
__( 'Groups', 'all-in-one-seo-pack' ),
|
626 |
|
627 |
+
// Reference: src/vue/plugins/constants.js:1180
|
628 |
+
/* Translators: This refers to a charity/non-profit organization. */
|
629 |
+
__( 'Cause', 'all-in-one-seo-pack' ),
|
630 |
|
631 |
+
// Reference: src/vue/plugins/constants.js:1181
|
632 |
+
__( 'Sports League', 'all-in-one-seo-pack' ),
|
633 |
|
634 |
+
// Reference: src/vue/plugins/constants.js:1182
|
635 |
+
__( 'Sports Team', 'all-in-one-seo-pack' ),
|
|
|
636 |
|
637 |
+
// Reference: src/vue/plugins/constants.js:1186
|
638 |
+
__( 'Organizations', 'all-in-one-seo-pack' ),
|
639 |
|
640 |
+
// Reference: src/vue/plugins/constants.js:1189
|
641 |
+
/* Translators: This refers to a music group. */
|
642 |
+
__( 'Band', 'all-in-one-seo-pack' ),
|
643 |
|
644 |
+
// Reference: src/vue/plugins/constants.js:1190
|
645 |
+
__( 'Non-Profit', 'all-in-one-seo-pack' ),
|
646 |
|
647 |
+
// Reference: src/vue/plugins/constants.js:1191
|
648 |
+
__( 'School', 'all-in-one-seo-pack' ),
|
649 |
|
650 |
+
// Reference: src/vue/plugins/constants.js:1192
|
651 |
+
__( 'University', 'all-in-one-seo-pack' ),
|
652 |
|
653 |
+
// Reference: src/vue/plugins/constants.js:1196
|
654 |
+
__( 'People', 'all-in-one-seo-pack' ),
|
655 |
|
656 |
+
// Reference: src/vue/plugins/constants.js:1198
|
657 |
+
__( 'Actor', 'all-in-one-seo-pack' ),
|
658 |
|
659 |
+
// Reference: src/vue/plugins/constants.js:1199
|
660 |
+
__( 'Athlete', 'all-in-one-seo-pack' ),
|
661 |
|
662 |
+
// Reference: src/vue/plugins/constants.js:1200
|
663 |
+
__( 'Author', 'all-in-one-seo-pack' ),
|
664 |
|
665 |
+
// Reference: src/vue/plugins/constants.js:1201
|
666 |
+
__( 'Director', 'all-in-one-seo-pack' ),
|
667 |
|
668 |
+
// Reference: src/vue/plugins/constants.js:1202
|
669 |
+
__( 'Musician', 'all-in-one-seo-pack' ),
|
670 |
|
671 |
+
// Reference: src/vue/plugins/constants.js:1203
|
672 |
+
__( 'Politician', 'all-in-one-seo-pack' ),
|
673 |
|
674 |
+
// Reference: src/vue/plugins/constants.js:1204
|
675 |
+
__( 'Profile', 'all-in-one-seo-pack' ),
|
676 |
|
677 |
+
// Reference: src/vue/plugins/constants.js:1205
|
678 |
+
__( 'Public Figure', 'all-in-one-seo-pack' ),
|
679 |
|
680 |
+
// Reference: src/vue/plugins/constants.js:1209
|
681 |
+
__( 'Places', 'all-in-one-seo-pack' ),
|
682 |
|
683 |
+
// Reference: src/vue/plugins/constants.js:1211
|
684 |
+
__( 'City', 'all-in-one-seo-pack' ),
|
|
|
|
|
685 |
|
686 |
+
// Reference: src/vue/plugins/constants.js:1212
|
687 |
+
__( 'Country', 'all-in-one-seo-pack' ),
|
688 |
|
689 |
+
// Reference: src/vue/plugins/constants.js:1213
|
690 |
+
__( 'Landmark', 'all-in-one-seo-pack' ),
|
691 |
|
692 |
+
// Reference: src/vue/plugins/constants.js:1214
|
693 |
+
__( 'State/Province', 'all-in-one-seo-pack' ),
|
|
|
694 |
|
695 |
+
// Reference: src/vue/plugins/constants.js:1218
|
696 |
+
__( 'Products & Entertainment', 'all-in-one-seo-pack' ),
|
697 |
|
698 |
+
// Reference: src/vue/plugins/constants.js:1220
|
699 |
+
__( 'Album', 'all-in-one-seo-pack' ),
|
|
|
700 |
|
701 |
+
// Reference: src/vue/plugins/constants.js:1221
|
702 |
+
__( 'Book', 'all-in-one-seo-pack' ),
|
703 |
|
704 |
+
// Reference: src/vue/plugins/constants.js:1222
|
705 |
+
__( 'Drink', 'all-in-one-seo-pack' ),
|
|
|
706 |
|
707 |
+
// Reference: src/vue/plugins/constants.js:1223
|
708 |
+
__( 'Food', 'all-in-one-seo-pack' ),
|
709 |
|
710 |
+
// Reference: src/vue/plugins/constants.js:1224
|
711 |
+
__( 'Game', 'all-in-one-seo-pack' ),
|
|
|
712 |
|
713 |
+
// Reference: src/vue/plugins/constants.js:1225
|
714 |
+
__( 'Movie', 'all-in-one-seo-pack' ),
|
715 |
|
716 |
+
// Reference: src/vue/plugins/constants.js:1226
|
717 |
+
__( 'Product', 'all-in-one-seo-pack' ),
|
718 |
|
719 |
+
// Reference: src/vue/plugins/constants.js:1227
|
720 |
+
__( 'Song', 'all-in-one-seo-pack' ),
|
721 |
|
722 |
+
// Reference: src/vue/plugins/constants.js:1228
|
723 |
+
__( 'TV Show', 'all-in-one-seo-pack' ),
|
724 |
|
725 |
+
// Reference: src/vue/plugins/constants.js:1229
|
726 |
+
__( 'Episode', 'all-in-one-seo-pack' ),
|
727 |
|
728 |
+
// Reference: src/vue/plugins/constants.js:1233
|
729 |
+
__( 'Websites', 'all-in-one-seo-pack' ),
|
730 |
|
731 |
+
// Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:73
|
732 |
+
// Reference: src/vue/plugins/constants.js:1235
|
733 |
+
__( 'Article', 'all-in-one-seo-pack' ),
|
734 |
|
735 |
+
// Reference: src/vue/plugins/constants.js:1236
|
736 |
+
__( 'Website', 'all-in-one-seo-pack' ),
|
|
|
737 |
|
738 |
+
// Reference: src/vue/plugins/constants.js:1286
|
739 |
+
__( 'Ignore all parameters', 'all-in-one-seo-pack' ),
|
740 |
|
741 |
+
// Reference: src/vue/plugins/constants.js:1287
|
742 |
+
__( 'Exact match all parameters in any order', 'all-in-one-seo-pack' ),
|
743 |
|
744 |
+
// Reference: src/vue/plugins/constants.js:1288
|
745 |
+
__( 'Ignore & pass parameters to the target', 'all-in-one-seo-pack' ),
|
746 |
|
747 |
+
// Reference: src/vue/plugins/constants.js:1289
|
748 |
+
__( 'Ignore all parameters except UTM', 'all-in-one-seo-pack' ),
|
749 |
|
750 |
+
// Reference: src/vue/plugins/constants.js:1293
|
751 |
+
__( 'Manual Redirects', 'all-in-one-seo-pack' ),
|
752 |
|
753 |
+
// Reference: src/vue/plugins/constants.js:1294
|
754 |
+
__( 'Modified Posts', 'all-in-one-seo-pack' ),
|
755 |
|
756 |
+
// Reference: src/vue/plugins/constants.js:1295
|
757 |
+
__( '404 Redirects', 'all-in-one-seo-pack' ),
|
|
|
758 |
|
759 |
+
// Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:134
|
760 |
+
// Reference: src/vue/plugins/constants.js:1299
|
761 |
+
__( 'default', 'all-in-one-seo-pack' ),
|
762 |
|
763 |
+
// Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:135
|
764 |
+
// Reference: src/vue/plugins/constants.js:1300
|
765 |
+
__( 'Animal Shelter', 'all-in-one-seo-pack' ),
|
766 |
|
767 |
+
// Reference: src/vue/plugins/constants.js:1301
|
768 |
+
__( 'Archive Organization', 'all-in-one-seo-pack' ),
|
769 |
|
770 |
+
// Reference: src/vue/plugins/constants.js:1302
|
771 |
+
__( 'Automotive Business', 'all-in-one-seo-pack' ),
|
772 |
|
773 |
+
// Reference: src/vue/plugins/constants.js:1303
|
774 |
+
__( 'Childcare', 'all-in-one-seo-pack' ),
|
775 |
|
776 |
+
// Reference: src/vue/plugins/constants.js:1304
|
777 |
+
__( 'Dentist', 'all-in-one-seo-pack' ),
|
|
|
778 |
|
779 |
+
// Reference: src/vue/plugins/constants.js:1305
|
780 |
+
__( 'Dry Cleaning/Laundry', 'all-in-one-seo-pack' ),
|
781 |
|
782 |
+
// Reference: src/vue/plugins/constants.js:1306
|
783 |
+
__( 'Emergency Service', 'all-in-one-seo-pack' ),
|
784 |
|
785 |
+
// Reference: src/vue/plugins/constants.js:1307
|
786 |
+
__( 'Employment Agency', 'all-in-one-seo-pack' ),
|
787 |
|
788 |
+
// Reference: src/vue/plugins/constants.js:1308
|
789 |
+
__( 'Entertainment Business', 'all-in-one-seo-pack' ),
|
790 |
|
791 |
+
// Reference: src/vue/plugins/constants.js:1309
|
792 |
+
__( 'Financial Service', 'all-in-one-seo-pack' ),
|
793 |
|
794 |
+
// Reference: src/vue/plugins/constants.js:1310
|
795 |
+
__( 'Food Establishment', 'all-in-one-seo-pack' ),
|
796 |
|
797 |
+
// Reference: src/vue/plugins/constants.js:1311
|
798 |
+
__( 'Government Office', 'all-in-one-seo-pack' ),
|
|
|
799 |
|
800 |
+
// Reference: src/vue/plugins/constants.js:1312
|
801 |
+
__( 'Health & Beauty Business', 'all-in-one-seo-pack' ),
|
|
|
|
|
802 |
|
803 |
+
// Reference: src/vue/plugins/constants.js:1313
|
804 |
+
__( 'Home & Construction Business', 'all-in-one-seo-pack' ),
|
|
|
805 |
|
806 |
+
// Reference: src/vue/plugins/constants.js:1314
|
807 |
+
__( 'Internet Cafe', 'all-in-one-seo-pack' ),
|
|
|
808 |
|
809 |
+
// Reference: src/vue/plugins/constants.js:1315
|
810 |
+
__( 'Legal Service', 'all-in-one-seo-pack' ),
|
811 |
|
812 |
+
// Reference: src/vue/plugins/constants.js:1316
|
813 |
+
__( 'Library', 'all-in-one-seo-pack' ),
|
814 |
|
815 |
+
// Reference: src/vue/plugins/constants.js:1317
|
816 |
+
__( 'Lodging Business', 'all-in-one-seo-pack' ),
|
817 |
|
818 |
+
// Reference: src/vue/plugins/constants.js:1318
|
819 |
+
__( 'Medical Business', 'all-in-one-seo-pack' ),
|
820 |
|
821 |
+
// Reference: src/vue/plugins/constants.js:1319
|
822 |
+
__( 'Professional Service', 'all-in-one-seo-pack' ),
|
823 |
|
824 |
+
// Reference: src/vue/plugins/constants.js:1320
|
825 |
+
__( 'Radio Station', 'all-in-one-seo-pack' ),
|
826 |
|
827 |
+
// Reference: src/vue/plugins/constants.js:1321
|
828 |
+
__( 'Real Estate Agent', 'all-in-one-seo-pack' ),
|
829 |
|
830 |
+
// Reference: src/vue/plugins/constants.js:1322
|
831 |
+
__( 'Recycling Center', 'all-in-one-seo-pack' ),
|
832 |
|
833 |
+
// Reference: src/vue/plugins/constants.js:1323
|
834 |
+
__( 'Self Storage', 'all-in-one-seo-pack' ),
|
835 |
|
836 |
+
// Reference: src/vue/plugins/constants.js:1324
|
837 |
+
__( 'Shopping Center', 'all-in-one-seo-pack' ),
|
838 |
|
839 |
+
// Reference: src/vue/plugins/constants.js:1325
|
840 |
+
__( 'Sports Activity Location', 'all-in-one-seo-pack' ),
|
841 |
|
842 |
+
// Reference: src/vue/plugins/constants.js:1326
|
843 |
+
__( 'Store', 'all-in-one-seo-pack' ),
|
844 |
|
845 |
+
// Reference: src/vue/plugins/constants.js:1327
|
846 |
+
__( 'Television Station', 'all-in-one-seo-pack' ),
|
847 |
|
848 |
+
// Reference: src/vue/plugins/constants.js:1328
|
849 |
+
__( 'Tourist Information Center', 'all-in-one-seo-pack' ),
|
850 |
|
851 |
+
// Reference: src/vue/plugins/constants.js:1329
|
852 |
+
__( 'Travel Agency', 'all-in-one-seo-pack' ),
|
853 |
|
854 |
+
// Reference: src/vue/plugins/constants.js:1404
|
855 |
+
__( 'General', 'all-in-one-seo-pack' ),
|
856 |
|
857 |
+
// Reference: src/vue/plugins/constants.js:1411
|
858 |
+
__( 'CORS', 'all-in-one-seo-pack' ),
|
859 |
|
860 |
+
// Reference: src/vue/plugins/constants.js:1422
|
861 |
+
__( 'Security', 'all-in-one-seo-pack' ),
|
862 |
|
863 |
+
// Reference: src/vue/plugins/constants.js:1439
|
864 |
+
__( 'Login Status', 'all-in-one-seo-pack' ),
|
865 |
|
866 |
+
// Reference: src/vue/plugins/constants.js:1440
|
867 |
+
__( 'Referrer', 'all-in-one-seo-pack' ),
|
868 |
|
869 |
+
// Reference: src/vue/plugins/constants.js:1441
|
870 |
+
__( 'WordPress User Roles', 'all-in-one-seo-pack' ),
|
871 |
|
872 |
+
// Reference: src/vue/plugins/constants.js:1442
|
873 |
+
__( 'User Agent', 'all-in-one-seo-pack' ),
|
874 |
|
875 |
+
// Reference: src/vue/plugins/constants.js:1443
|
876 |
+
__( 'Cookie', 'all-in-one-seo-pack' ),
|
877 |
|
878 |
+
// Reference: src/vue/plugins/constants.js:1444
|
879 |
+
__( 'IP', 'all-in-one-seo-pack' ),
|
880 |
|
881 |
+
// Reference: src/vue/plugins/constants.js:1445
|
882 |
+
__( 'Server', 'all-in-one-seo-pack' ),
|
883 |
|
884 |
+
// Reference: src/vue/plugins/constants.js:1446
|
885 |
+
__( 'HTTP Header', 'all-in-one-seo-pack' ),
|
886 |
|
887 |
+
// Reference: src/vue/plugins/constants.js:1447
|
888 |
+
__( 'WordPress Filter', 'all-in-one-seo-pack' ),
|
889 |
|
890 |
+
// Reference: src/vue/plugins/constants.js:1448
|
891 |
+
__( 'Locale', 'all-in-one-seo-pack' ),
|
892 |
|
893 |
+
// Reference: src/vue/plugins/constants.js:1449
|
894 |
+
__( 'Mobile', 'all-in-one-seo-pack' ),
|
895 |
|
896 |
+
// Reference: src/vue/plugins/constants.js:1450
|
897 |
+
__( 'Feeds', 'all-in-one-seo-pack' ),
|
898 |
|
899 |
+
// Reference: src/vue/plugins/constants.js:1451
|
900 |
+
__( 'Libraries', 'all-in-one-seo-pack' ),
|
901 |
|
902 |
+
// Reference: src/vue/plugins/constants.js:1452
|
903 |
+
__( 'Logged In', 'all-in-one-seo-pack' ),
|
904 |
|
905 |
+
// Reference: src/vue/plugins/constants.js:1453
|
906 |
+
__( 'Logged Out', 'all-in-one-seo-pack' ),
|
907 |
|
908 |
+
// Reference: src/vue/plugins/constants.js:19
|
909 |
+
__( 'always', 'all-in-one-seo-pack' ),
|
910 |
|
911 |
+
// Reference: src/vue/plugins/constants.js:20
|
912 |
+
__( 'hourly', 'all-in-one-seo-pack' ),
|
913 |
|
914 |
+
// Reference: src/vue/plugins/constants.js:21
|
915 |
+
__( 'daily', 'all-in-one-seo-pack' ),
|
916 |
|
917 |
+
// Reference: src/vue/plugins/constants.js:22
|
918 |
+
__( 'weekly', 'all-in-one-seo-pack' ),
|
919 |
|
920 |
+
// Reference: src/vue/plugins/constants.js:23
|
921 |
+
__( 'monthly', 'all-in-one-seo-pack' ),
|
922 |
|
923 |
+
// Reference: src/vue/plugins/constants.js:24
|
924 |
+
__( 'yearly', 'all-in-one-seo-pack' ),
|
925 |
|
926 |
+
// Reference: src/vue/plugins/constants.js:25
|
927 |
+
__( 'never', 'all-in-one-seo-pack' ),
|
928 |
|
929 |
+
// Reference: src/vue/plugins/constants.js:29
|
930 |
+
__( 'No', 'all-in-one-seo-pack' ),
|
931 |
|
932 |
+
// Reference: src/vue/plugins/constants.js:30
|
933 |
+
__( 'Yes', 'all-in-one-seo-pack' ),
|
934 |
|
935 |
+
// Reference: src/vue/plugins/constants.js:31
|
936 |
+
__( 'Off', 'all-in-one-seo-pack' ),
|
937 |
|
938 |
+
// Reference: src/vue/plugins/constants.js:32
|
939 |
+
__( 'On', 'all-in-one-seo-pack' ),
|
940 |
|
941 |
+
// Reference: src/vue/plugins/constants.js:33
|
942 |
+
__( 'Show', 'all-in-one-seo-pack' ),
|
943 |
|
944 |
+
// Reference: src/vue/plugins/constants.js:34
|
945 |
+
__( 'Hide', 'all-in-one-seo-pack' ),
|
946 |
|
947 |
+
// Reference: src/vue/plugins/constants.js:35
|
948 |
+
__( 'Learn More', 'all-in-one-seo-pack' ),
|
949 |
|
950 |
+
// Reference: src/vue/plugins/constants.js:36
|
951 |
+
__( 'Disabled', 'all-in-one-seo-pack' ),
|
952 |
|
953 |
+
// Reference: src/vue/plugins/constants.js:37
|
954 |
+
__( 'Enabled', 'all-in-one-seo-pack' ),
|
955 |
|
956 |
+
// Reference: src/vue/plugins/constants.js:38
|
957 |
+
__( 'Preview', 'all-in-one-seo-pack' ),
|
|
|
958 |
|
959 |
+
// Reference: src/vue/plugins/constants.js:39
|
960 |
+
__( 'Include', 'all-in-one-seo-pack' ),
|
|
|
|
|
|
|
|
|
961 |
|
962 |
+
// Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:128
|
963 |
+
// Reference: src/vue/pages/post-settings/views/Twitter.vue:223
|
964 |
+
// Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:331
|
965 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:705
|
966 |
+
// Reference: src/vue/plugins/constants.js:40
|
967 |
+
__( 'Remove', 'all-in-one-seo-pack' ),
|
968 |
|
969 |
+
// Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:199
|
970 |
+
/* Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag, 3 - The plugin short name ("AIOSEO"). */
|
971 |
+
__( 'To add this widget, visit the %1$swidgets page%2$s and look for the "%3$s Local - Opening Hours" widget.', 'all-in-one-seo-pack' ),
|
972 |
|
973 |
+
// Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:204
|
974 |
+
/* Translators: 1 - Learn more link. */
|
975 |
+
__( 'Use the following shortcode to display the opening hours info. %1$s', 'all-in-one-seo-pack' ),
|
976 |
|
977 |
+
// Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:209
|
978 |
+
/* Translators: 1 - The plugin short name ("AIOSEO") */
|
979 |
+
__( 'To add this block, edit a page or post and search for the "%1$s Local - Opening Hours" block.', 'all-in-one-seo-pack' ),
|
980 |
|
981 |
+
// Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:214
|
982 |
+
/* Translators: 1 - Learn more link. */
|
983 |
+
__( 'Use the following PHP code anywhere in your theme to display the opening hours. %1$s', 'all-in-one-seo-pack' ),
|
984 |
|
985 |
+
// Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:222
|
986 |
+
__( 'Default Location Settings', 'all-in-one-seo-pack' ),
|
987 |
|
988 |
+
// Reference: src/vue/pages/local-business-seo/views/OpeningHours.vue:177
|
989 |
+
// Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:224
|
990 |
+
__( 'Displayed when the business is closed.', 'all-in-one-seo-pack' ),
|
991 |
|
992 |
+
// Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:225
|
993 |
+
__( 'Below are the default settings for all locations, which can be overwritten per %1$slocation%2$s.', 'all-in-one-seo-pack' ),
|
994 |
|
995 |
+
// Reference: src/vue/pages/local-business-seo/views/OpeningHours.vue:182
|
996 |
+
// Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:227
|
997 |
+
__( 'Displayed when the business is open all day long.', 'all-in-one-seo-pack' ),
|
998 |
|
999 |
+
// Reference: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:51
|
1000 |
+
__( 'Select your timezone', 'all-in-one-seo-pack' ),
|
1001 |
|
1002 |
+
// Reference: src/vue/pages/local-business-seo/views/OpeningHours.vue:187
|
1003 |
+
// Reference: src/vue/pages/local-seo/views/pro/OpeningHours.vue:233
|
1004 |
+
__( 'Hours', 'all-in-one-seo-pack' ),
|
1005 |
|
1006 |
+
// Reference: src/vue/components/common/Cta.vue:236
|
1007 |
+
/* Translators: 1 - "Pro". */
|
1008 |
+
__( 'Upgrade to %1$s', 'all-in-one-seo-pack' ),
|
1009 |
|
1010 |
+
// Reference: src/vue/components/common/Cta.vue:238
|
1011 |
+
/* Translators: 1 - The plugin name ("All in One SEO"). */
|
1012 |
+
__( 'This feature is only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
|
1013 |
|
1014 |
+
// Reference: src/vue/components/common/Cta.vue:240
|
1015 |
+
/* Translators: 1 - Plugin short name ("AIOSEO"), 2 "Pro". */
|
1016 |
+
__( '%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' ),
|
1017 |
|
1018 |
+
// Reference: src/vue/components/common/Cta.vue:241
|
1019 |
+
__( 'Learn more about all features', 'all-in-one-seo-pack' ),
|
1020 |
|
1021 |
+
// Reference: src/vue/components/common/Cta.vue:242
|
1022 |
+
__( 'See all features', 'all-in-one-seo-pack' ),
|
1023 |
|
1024 |
+
// Reference: src/vue/components/common/wizard/Steps.vue:15
|
1025 |
+
/* Translators: 1 - The current step count. 2 - The total step count. */
|
1026 |
+
__( 'Step %1$s of %2$s', 'all-in-one-seo-pack' ),
|
1027 |
|
1028 |
+
// Reference: src/vue/plugins/breadcrumbs/index.js:33
|
1029 |
+
/* Translators: 1 - AIOSEO. */
|
1030 |
+
__( '%1$s - Breadcrumbs', 'all-in-one-seo-pack' ),
|
1031 |
|
1032 |
+
// Reference: src/vue/plugins/html-sitemap/index.js:44
|
1033 |
+
__( '%1$s - HTML Sitemap', 'all-in-one-seo-pack' ),
|
1034 |
|
1035 |
+
// Reference: src/vue/components/common/wizard/CloseAndExit.vue:14
|
1036 |
+
__( 'Close and Exit Wizard Without Saving', 'all-in-one-seo-pack' ),
|
1037 |
|
1038 |
+
// Reference: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:52
|
1039 |
+
__( 'Google Maps', 'all-in-one-seo-pack' ),
|
1040 |
|
1041 |
+
// Reference: src/vue/components/lite/local-business/BusinessType.vue:15
|
1042 |
+
// Reference: src/vue/pages/local-business-seo/views/BusinessInfo.vue:111
|
1043 |
+
// Reference: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:53
|
1044 |
+
// Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:122
|
1045 |
+
// Reference: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:131
|
1046 |
+
__( 'Type', 'all-in-one-seo-pack' ),
|
1047 |
|
1048 |
+
// Reference: src/vue/pages/local-business-seo/views/BusinessInfo.vue:118
|
1049 |
+
// Reference: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:54
|
1050 |
+
// Reference: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:134
|
1051 |
+
__( 'Contact Info', 'all-in-one-seo-pack' ),
|
1052 |
|
1053 |
+
// Reference: src/vue/pages/local-business-seo/views/BusinessInfo.vue:120
|
1054 |
+
// Reference: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:55
|
1055 |
+
// Reference: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:136
|
1056 |
+
__( 'Payment Info', 'all-in-one-seo-pack' ),
|
1057 |
|
1058 |
+
// Reference: src/vue/pages/local-business-seo/views/BusinessInfo.vue:112
|
1059 |
+
// Reference: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:56
|
1060 |
+
// Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:124
|
1061 |
+
// Reference: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:138
|
1062 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:696
|
1063 |
+
__( 'Image', 'all-in-one-seo-pack' ),
|
1064 |
|
1065 |
+
// Reference: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:127
|
1066 |
+
__( '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' ),
|
|
|
1067 |
|
1068 |
+
// Reference: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:128
|
1069 |
+
__( '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' ),
|
1070 |
|
1071 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:102
|
1072 |
+
// Reference: src/vue/pages/local-seo/views/pro/Locations.vue:114
|
1073 |
+
__( 'Display Location Info', 'all-in-one-seo-pack' ),
|
1074 |
|
1075 |
+
// Reference: src/vue/pages/local-business-seo/views/BusinessInfo.vue:113
|
1076 |
+
// Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:123
|
1077 |
+
// Reference: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:132
|
1078 |
+
__( 'URLs', 'all-in-one-seo-pack' ),
|
1079 |
|
1080 |
+
// Reference: src/vue/pages/local-business-seo/views/BusinessInfo.vue:119
|
1081 |
+
// Reference: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:135
|
1082 |
+
__( 'IDs', 'all-in-one-seo-pack' ),
|
|
|
1083 |
|
1084 |
+
// Reference: src/vue/pages/local-business-seo/views/BusinessInfo.vue:121
|
1085 |
+
// Reference: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:137
|
1086 |
+
__( 'Area Served', 'all-in-one-seo-pack' ),
|
1087 |
|
1088 |
+
// Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:125
|
1089 |
+
// Reference: src/vue/pages/post-settings/views/Twitter.vue:222
|
1090 |
+
// Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:328
|
1091 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:689
|
1092 |
+
__( 'Upload or Select Image', 'all-in-one-seo-pack' ),
|
1093 |
|
1094 |
+
// Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:126
|
1095 |
+
// Reference: src/vue/pages/post-settings/views/Twitter.vue:221
|
1096 |
+
// Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:329
|
1097 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:690
|
1098 |
+
__( 'Paste your image URL or select a new image', 'all-in-one-seo-pack' ),
|
1099 |
|
1100 |
+
// Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:127
|
1101 |
+
// Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:330
|
1102 |
+
__( 'Minimum size: 112px x 112px, The image must be in JPG, PNG, GIF, SVG, or WEBP format.', 'all-in-one-seo-pack' ),
|
1103 |
|
1104 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:115
|
1105 |
+
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:303
|
1106 |
+
__( 'Upgrade to Pro and Unlock Local SEO', 'all-in-one-seo-pack' ),
|
1107 |
|
1108 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:117
|
1109 |
+
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:305
|
1110 |
+
/* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro". */
|
1111 |
+
__( 'Local SEO is only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
|
1112 |
|
1113 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:92
|
1114 |
+
__( 'Local Business Schema', 'all-in-one-seo-pack' ),
|
1115 |
|
1116 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:93
|
1117 |
+
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:277
|
1118 |
+
// Reference: src/vue/pages/local-seo/views/pro/Locations.vue:110
|
1119 |
+
__( 'Multiple Locations', 'all-in-one-seo-pack' ),
|
1120 |
|
1121 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:94
|
1122 |
+
__( 'Business Info and Location blocks, widgets and shortcodes', 'all-in-one-seo-pack' ),
|
1123 |
|
1124 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:95
|
1125 |
+
__( 'Detailed Address, Contact and Payment Info', 'all-in-one-seo-pack' ),
|
1126 |
|
1127 |
+
// Reference: src/vue/pages/local-seo/views/lite/Locations.vue:98
|
1128 |
+
// Reference: src/vue/pages/local-seo/views/pro/Locations.vue:107
|
1129 |
+
__( 'Locations Settings', 'all-in-one-seo-pack' ),
|
1130 |
|
1131 |
+
// Reference: src/vue/pages/post-settings/views/Main.vue:59
|
1132 |
+
__( 'Preview Snippet Editor', 'all-in-one-seo-pack' ),
|
1133 |
|
1134 |
+
// Reference: src/vue/mixins/Image.js:119
|
1135 |
+
__( 'Choose Image', 'all-in-one-seo-pack' ),
|
|
|
1136 |
|
1137 |
+
// Reference: src/vue/mixins/Image.js:55
|
1138 |
+
__( 'Default Image (Set Below)', 'all-in-one-seo-pack' ),
|
|
|
1139 |
|
1140 |
+
// Reference: src/vue/mixins/Image.js:56
|
1141 |
+
__( 'Featured Image', 'all-in-one-seo-pack' ),
|
1142 |
|
1143 |
+
// Reference: src/vue/mixins/Image.js:57
|
1144 |
+
__( 'Attached Image', 'all-in-one-seo-pack' ),
|
1145 |
|
1146 |
+
// Reference: src/vue/mixins/Image.js:58
|
1147 |
+
__( 'First Image in Content', 'all-in-one-seo-pack' ),
|
|
|
1148 |
|
1149 |
+
// Reference: src/vue/mixins/Image.js:59
|
1150 |
+
__( 'Image from Custom Field', 'all-in-one-seo-pack' ),
|
|
|
1151 |
|
1152 |
+
// Reference: src/vue/mixins/Image.js:60
|
1153 |
+
__( 'Post Author Image', 'all-in-one-seo-pack' ),
|
|
|
1154 |
|
1155 |
+
// Reference: src/vue/mixins/Image.js:61
|
1156 |
+
__( 'First Available Image', 'all-in-one-seo-pack' ),
|
1157 |
|
1158 |
+
// Reference: src/vue/mixins/Image.js:68
|
1159 |
+
__( 'Default Image Source (Set in Social Networks)', 'all-in-one-seo-pack' ),
|
1160 |
|
1161 |
+
// Reference: src/vue/mixins/Image.js:71
|
1162 |
+
__( 'Custom Image', 'all-in-one-seo-pack' ),
|
1163 |
|
1164 |
+
// Reference: src/vue/mixins/Wizard.js:6
|
1165 |
+
__( 'Skip this Step', 'all-in-one-seo-pack' ),
|
1166 |
|
1167 |
+
// Reference: src/vue/mixins/Wizard.js:7
|
1168 |
+
__( 'Go Back', 'all-in-one-seo-pack' ),
|
1169 |
|
1170 |
+
// Reference: src/vue/mixins/Wizard.js:8
|
1171 |
+
__( 'Save and Continue', 'all-in-one-seo-pack' ),
|
1172 |
|
1173 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:128
|
1174 |
+
__( 'Webmaster Tools', 'all-in-one-seo-pack' ),
|
1175 |
|
1176 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:129
|
1177 |
+
__( 'RSS Content', 'all-in-one-seo-pack' ),
|
1178 |
|
1179 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:224
|
1180 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:131
|
1181 |
+
__( 'Search Appearance', 'all-in-one-seo-pack' ),
|
1182 |
|
1183 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:229
|
1184 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:132
|
1185 |
+
__( 'Social Networks', 'all-in-one-seo-pack' ),
|
1186 |
|
1187 |
+
// Reference: src/vue/mixins/ToolsSettings.js:41
|
1188 |
+
__( 'Robots.txt', 'all-in-one-seo-pack' ),
|
1189 |
|
1190 |
+
// Reference: src/vue/pages/tools/router/paths.js:37
|
1191 |
+
// Reference: src/vue/pages/tools/views/BadBotBlocker.vue:89
|
1192 |
+
__( 'Bad Bot Blocker', 'all-in-one-seo-pack' ),
|
1193 |
|
1194 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:138
|
1195 |
+
__( 'Access Control', 'all-in-one-seo-pack' ),
|
1196 |
|
1197 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:146
|
1198 |
+
__( 'Local Business SEO', 'all-in-one-seo-pack' ),
|
1199 |
|
1200 |
+
// Reference: src/vue/pages/redirects/router/paths.js:19
|
1201 |
+
__( 'Redirects', 'all-in-one-seo-pack' ),
|
|
|
1202 |
|
1203 |
+
// Reference: src/vue/mixins/SeoSiteScore.js:10
|
1204 |
+
__( 'Excellent!', 'all-in-one-seo-pack' ),
|
|
|
1205 |
|
1206 |
+
// Reference: src/vue/mixins/SeoSiteScore.js:11
|
1207 |
+
__( 'to see your Site Score.', 'all-in-one-seo-pack' ),
|
1208 |
|
1209 |
+
// Reference: src/vue/mixins/SeoSiteScore.js:12
|
1210 |
+
__( 'to analyze a competitor site.', 'all-in-one-seo-pack' ),
|
1211 |
|
1212 |
+
// Reference: src/vue/mixins/SeoSiteScore.js:13
|
1213 |
+
__( 'A valid license key is required', 'all-in-one-seo-pack' ),
|
1214 |
|
1215 |
+
// Reference: src/vue/mixins/SeoSiteScore.js:6
|
1216 |
+
/* Translators: 1 - HTML Line break tag. */
|
1217 |
+
__( 'We\'ve got some%1$swork to do!', 'all-in-one-seo-pack' ),
|
1218 |
|
1219 |
+
// Reference: src/vue/mixins/SeoSiteScore.js:8
|
1220 |
+
/* Translators: 1 - HTML Line break tag. */
|
1221 |
+
__( 'Needs%1$sImprovement!', 'all-in-one-seo-pack' ),
|
1222 |
|
1223 |
+
// Reference: src/vue/mixins/SeoSiteScore.js:9
|
1224 |
+
__( 'Very Good!', 'all-in-one-seo-pack' ),
|
1225 |
|
1226 |
+
// Reference: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:90
|
1227 |
+
__( 'Critical Issues', 'all-in-one-seo-pack' ),
|
1228 |
|
1229 |
+
// Reference: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:100
|
1230 |
+
__( 'Recommended Improvements', 'all-in-one-seo-pack' ),
|
1231 |
|
1232 |
+
// Reference: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:110
|
1233 |
+
__( 'Good Results', 'all-in-one-seo-pack' ),
|
1234 |
|
1235 |
+
// Reference: src/vue/components/common/core/SiteScoreCompetitor.vue:79
|
1236 |
+
__( 'Complete Site Audit Checklist', 'all-in-one-seo-pack' ),
|
1237 |
|
1238 |
+
// Reference: src/vue/pages/post-settings/views/partialsGeneral/pageAnalysis.vue:30
|
1239 |
+
__( 'All Good!', 'all-in-one-seo-pack' ),
|
1240 |
|
1241 |
+
// Reference: src/vue/pages/post-settings/views/partialsGeneral/pageAnalysis.vue:29
|
1242 |
+
__( 'Errors', 'all-in-one-seo-pack' ),
|
1243 |
|
1244 |
+
// Reference: src/vue/mixins/License.js:11
|
1245 |
+
__( 'Your license has been disabled.', 'all-in-one-seo-pack' ),
|
1246 |
|
1247 |
+
// Reference: src/vue/mixins/License.js:15
|
1248 |
+
__( 'Your license key is invalid.', 'all-in-one-seo-pack' ),
|
1249 |
|
1250 |
+
// Reference: src/vue/mixins/License.js:4
|
1251 |
+
__( 'You have not yet added a license key.', 'all-in-one-seo-pack' ),
|
1252 |
|
1253 |
+
// Reference: src/vue/mixins/License.js:7
|
1254 |
+
__( 'Your license has expired.', 'all-in-one-seo-pack' ),
|
1255 |
|
1256 |
+
// Reference: src/vue/mixins/MaxCounts.js:6
|
1257 |
+
/* Translators: 1 - A number, 2 - A number. */
|
1258 |
+
__( '%1$s out of %2$s max recommended characters.', 'all-in-one-seo-pack' ),
|
1259 |
|
1260 |
+
// Reference: src/vue/mixins/Notifications.js:6
|
1261 |
+
__( 'Notifications', 'all-in-one-seo-pack' ),
|
1262 |
|
1263 |
+
// Reference: src/vue/mixins/Notifications.js:7
|
1264 |
+
__( 'New Notifications', 'all-in-one-seo-pack' ),
|
1265 |
|
1266 |
+
// Reference: src/vue/mixins/Notifications.js:8
|
1267 |
+
__( 'Active Notifications', 'all-in-one-seo-pack' ),
|
1268 |
|
1269 |
+
// Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:228
|
1270 |
+
__( 'Ascending', 'all-in-one-seo-pack' ),
|
1271 |
|
1272 |
+
// Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:229
|
1273 |
+
__( 'Descending', 'all-in-one-seo-pack' ),
|
1274 |
|
1275 |
+
// Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:222
|
1276 |
+
__( 'Publish Date', 'all-in-one-seo-pack' ),
|
1277 |
|
1278 |
+
// Reference: src/vue/standalone/HtmlSitemapSidebar.vue:109
|
1279 |
+
__( 'Last Updated', 'all-in-one-seo-pack' ),
|
1280 |
|
1281 |
+
// Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:224
|
1282 |
+
__( 'Alphabetical', 'all-in-one-seo-pack' ),
|
1283 |
|
1284 |
+
// Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:225
|
1285 |
+
__( 'Post/Term ID', 'all-in-one-seo-pack' ),
|
1286 |
|
1287 |
+
// Reference: src/vue/components/common/core/SingleRobotsMeta.vue:162
|
1288 |
+
__( 'Use Default Settings', 'all-in-one-seo-pack' ),
|
1289 |
|
1290 |
+
// Reference: src/vue/components/common/core/PriorityScore.vue:62
|
1291 |
+
// Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:428
|
1292 |
+
__( 'Post Types', 'all-in-one-seo-pack' ),
|
1293 |
|
1294 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:290
|
1295 |
+
__( 'Include All Post Types', 'all-in-one-seo-pack' ),
|
1296 |
|
1297 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:316
|
1298 |
+
__( 'Include All Taxonomies', 'all-in-one-seo-pack' ),
|
1299 |
|
1300 |
+
// Reference: src/vue/standalone/HtmlSitemapSidebar.vue:119
|
1301 |
+
__( 'Show Labels', 'all-in-one-seo-pack' ),
|
1302 |
|
1303 |
+
// Reference: src/vue/standalone/HtmlSitemapSidebar.vue:120
|
1304 |
+
__( 'Show Publication Date', 'all-in-one-seo-pack' ),
|
1305 |
|
1306 |
+
// Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:289
|
1307 |
+
__( 'Compact Archives', 'all-in-one-seo-pack' ),
|
1308 |
|
1309 |
+
// Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:285
|
1310 |
+
__( 'Sort Order', 'all-in-one-seo-pack' ),
|
1311 |
|
1312 |
+
// Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:286
|
1313 |
+
__( 'Sort Direction', 'all-in-one-seo-pack' ),
|
1314 |
|
1315 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:401
|
1316 |
+
// Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:441
|
1317 |
+
__( 'Exclude Posts / Pages', 'all-in-one-seo-pack' ),
|
1318 |
|
1319 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:402
|
1320 |
+
// Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:442
|
1321 |
+
__( 'Exclude Terms', 'all-in-one-seo-pack' ),
|
1322 |
|
1323 |
+
// Reference: src/vue/pages/local-business-seo/views/BusinessInfo.vue:114
|
1324 |
+
__( 'Website URL', 'all-in-one-seo-pack' ),
|
1325 |
|
1326 |
+
// Reference: src/vue/pages/local-business-seo/views/BusinessInfo.vue:115
|
1327 |
+
__( 'About Page URL', 'all-in-one-seo-pack' ),
|
1328 |
|
1329 |
+
// Reference: src/vue/pages/local-business-seo/views/BusinessInfo.vue:116
|
1330 |
+
__( 'Contact Page URL', 'all-in-one-seo-pack' ),
|
1331 |
|
1332 |
+
// Reference: src/vue/pages/local-business-seo/views/BusinessInfo.vue:122
|
1333 |
+
// Reference: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:139
|
1334 |
+
__( 'Map', 'all-in-one-seo-pack' ),
|
1335 |
|
1336 |
+
// Reference: src/vue/pages/local-business-seo/views/OpeningHours.vue:172
|
1337 |
+
__( 'Use Defaults', 'all-in-one-seo-pack' ),
|
1338 |
|
1339 |
+
// Reference: src/vue/pages/local-business-seo/views/OpeningHours.vue:173
|
1340 |
+
__( 'Will default opening hours set globally', 'all-in-one-seo-pack' ),
|
1341 |
|
1342 |
+
// Reference: src/vue/pages/local-business-seo/views/OpeningHours.vue:185
|
1343 |
+
__( 'I have two sets of openning hours per day', 'all-in-one-seo-pack' ),
|
1344 |
|
1345 |
+
// Reference: src/vue/pages/post-settings/views/ModalContent.vue:41
|
1346 |
+
__( 'Modal Content', 'all-in-one-seo-pack' ),
|
1347 |
|
1348 |
+
// Reference: src/vue/pages/post-settings/views/Social.vue:60
|
1349 |
+
__( 'Social', 'all-in-one-seo-pack' ),
|
1350 |
|
1351 |
+
// Reference: src/vue/pages/post-settings/views/Advanced.vue:114
|
1352 |
+
__( 'Robots Setting', 'all-in-one-seo-pack' ),
|
1353 |
|
1354 |
+
// Reference: src/vue/pages/post-settings/views/Advanced.vue:117
|
1355 |
+
__( 'Enter a URL to change the default Canonical URL', 'all-in-one-seo-pack' ),
|
1356 |
|
1357 |
+
// Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:444
|
1358 |
+
__( 'Priority Score', 'all-in-one-seo-pack' ),
|
1359 |
|
1360 |
+
// Reference: src/vue/components/common/core/PriorityScore.vue:64
|
1361 |
+
__( 'Priority', 'all-in-one-seo-pack' ),
|
1362 |
|
1363 |
+
// Reference: src/vue/components/common/core/PriorityScore.vue:65
|
1364 |
+
__( 'Frequency', 'all-in-one-seo-pack' ),
|
1365 |
|
1366 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:320
|
1367 |
+
/* Translators: 1 - The plugin short name name ("AIOSEO"), 2 - "Learn more". */
|
1368 |
+
__( 'This feature is only for licensed %1$s users. %2$s', 'all-in-one-seo-pack' ),
|
1369 |
|
1370 |
+
// Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:112
|
1371 |
+
__( 'Keywords', 'all-in-one-seo-pack' ),
|
1372 |
|
1373 |
+
// Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:443
|
1374 |
+
__( 'Press enter to create a keyword', 'all-in-one-seo-pack' ),
|
1375 |
|
1376 |
+
// Reference: src/vue/pages/post-settings/views/General.vue:284
|
1377 |
+
__( 'Snippet Preview content here.', 'all-in-one-seo-pack' ),
|
1378 |
|
1379 |
+
// Reference: src/vue/pages/post-settings/views/General.vue:285
|
1380 |
+
__( 'Edit Snippet', 'all-in-one-seo-pack' ),
|
|
|
1381 |
|
1382 |
+
// Reference: src/vue/pages/post-settings/views/General.vue:286
|
1383 |
+
__( 'Click on the tags below to insert variables into your title.', 'all-in-one-seo-pack' ),
|
|
|
1384 |
|
1385 |
+
// Reference: src/vue/pages/post-settings/views/General.vue:287
|
1386 |
+
__( 'Meta Description', 'all-in-one-seo-pack' ),
|
|
|
1387 |
|
1388 |
+
// Reference: src/vue/pages/post-settings/views/General.vue:288
|
1389 |
+
__( 'Click on the tags below to insert variables into your meta description.', 'all-in-one-seo-pack' ),
|
|
|
1390 |
|
1391 |
+
// Reference: src/vue/pages/post-settings/views/General.vue:289
|
1392 |
+
__( 'Pillar Content', 'all-in-one-seo-pack' ),
|
1393 |
|
1394 |
+
// Reference: src/vue/pages/post-settings/views/General.vue:290
|
1395 |
+
__( 'Cornerstone content should be the most important and extensive articles on your site.', 'all-in-one-seo-pack' ),
|
1396 |
|
1397 |
+
// Reference: src/vue/pages/post-settings/views/General.vue:292
|
1398 |
+
__( 'Additional Keyphrases', 'all-in-one-seo-pack' ),
|
1399 |
|
1400 |
+
// Reference: src/vue/pages/post-settings/views/General.vue:293
|
1401 |
+
__( 'Page Analysis', 'all-in-one-seo-pack' ),
|
|
|
1402 |
|
1403 |
+
// Reference: src/vue/pages/post-settings/views/General.vue:294
|
1404 |
+
__( 'Basic SEO', 'all-in-one-seo-pack' ),
|
|
|
1405 |
|
1406 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:698
|
1407 |
+
__( 'Title', 'all-in-one-seo-pack' ),
|
|
|
1408 |
|
1409 |
+
// Reference: src/vue/pages/post-settings/views/General.vue:297
|
1410 |
+
__( 'Looking for meta keywords? Click on the advanced tab above to add/edit meta keywords.', 'all-in-one-seo-pack' ),
|
1411 |
|
1412 |
+
// Reference: src/vue/pages/post-settings/views/General.vue:299
|
1413 |
+
/* Translators: 1 - "Learn more link". */
|
1414 |
+
__( 'Not sure what keyphrases are used for? Check out our documentation for more information. %1$s', 'all-in-one-seo-pack' ),
|
1415 |
|
1416 |
+
// Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:125
|
1417 |
+
/* Translators: 1 - The type of page (Post, Page, Category, Tag, etc.). */
|
1418 |
+
__( '%1$s Title', 'all-in-one-seo-pack' ),
|
1419 |
|
1420 |
+
// Reference: src/vue/plugins/truSEO/analysis/contentHasAssets.js:36
|
1421 |
+
// Reference: src/vue/plugins/truSEO/analysis/lengthContent.js:25
|
1422 |
+
__( 'Please add some content first.', 'all-in-one-seo-pack' ),
|
1423 |
|
1424 |
+
// Reference: src/vue/plugins/truSEO/analysis/lengthContent.js:36
|
1425 |
+
__( 'The content length is ok. Good job!', 'all-in-one-seo-pack' ),
|
|
|
1426 |
|
1427 |
+
// Reference: src/vue/plugins/truSEO/analysis/lengthContent.js:52
|
1428 |
+
__( 'This is far below the recommended minimum of words.', 'all-in-one-seo-pack' ),
|
1429 |
|
1430 |
+
// Reference: src/vue/plugins/truSEO/analysis/lengthContent.js:70
|
1431 |
+
__( 'Content Length', 'all-in-one-seo-pack' ),
|
1432 |
|
1433 |
+
// Reference: src/vue/plugins/truSEO/analysis/lengthContent.js:71
|
1434 |
+
__( 'The content is below the minimum of words. Add more content.', 'all-in-one-seo-pack' ),
|
1435 |
|
1436 |
+
// Reference: src/vue/plugins/truSEO/analysis/isInternalLink.js:20
|
1437 |
+
__( 'You are linking to other resources on your website which is great.', 'all-in-one-seo-pack' ),
|
|
|
1438 |
|
1439 |
+
// Reference: src/vue/plugins/truSEO/analysis/isInternalLink.js:28
|
1440 |
+
__( 'Internal links', 'all-in-one-seo-pack' ),
|
1441 |
|
1442 |
+
// Reference: src/vue/plugins/truSEO/analysis/isInternalLink.js:29
|
1443 |
+
__( 'We couldn\'t find any internal links in your content. Add internal links in your content.', 'all-in-one-seo-pack' ),
|
1444 |
|
1445 |
+
// Reference: src/vue/plugins/truSEO/analysis/isExternalLink.js:20
|
1446 |
+
__( 'Great! You are linking to external resources.', 'all-in-one-seo-pack' ),
|
1447 |
|
1448 |
+
// Reference: src/vue/plugins/truSEO/analysis/isExternalLink.js:28
|
1449 |
+
__( 'External links', 'all-in-one-seo-pack' ),
|
1450 |
|
1451 |
+
// Reference: src/vue/plugins/truSEO/analysis/isExternalLink.js:29
|
1452 |
+
__( 'No outbound links were found. Link out to external resources.', 'all-in-one-seo-pack' ),
|
1453 |
|
1454 |
+
// Reference: src/vue/plugins/truSEO/analysis/transitionWords.js:39
|
1455 |
+
__( 'None of the sentences contain transition words. Use some.', 'all-in-one-seo-pack' ),
|
1456 |
|
1457 |
+
// Reference: src/vue/plugins/truSEO/analysis/transitionWords.js:50
|
1458 |
+
/* Translators: 1 - Percentage of the sentences. */
|
1459 |
+
__( 'Only %1$s of the sentences contain transition words, which is not enough. Use more of them.', 'all-in-one-seo-pack' ),
|
1460 |
|
1461 |
+
// Reference: src/vue/plugins/truSEO/analysis/transitionWords.js:58
|
1462 |
+
__( 'Transition words', 'all-in-one-seo-pack' ),
|
1463 |
|
1464 |
+
// Reference: src/vue/plugins/truSEO/analysis/metadescriptionLength.js:54
|
1465 |
+
__( 'Well done!', 'all-in-one-seo-pack' ),
|
1466 |
|
1467 |
+
// Reference: src/vue/plugins/truSEO/analysis/passiveVoice.js:36
|
1468 |
+
__( 'You\'re using enough active voice. That\'s great!', 'all-in-one-seo-pack' ),
|
1469 |
|
1470 |
+
// Reference: src/vue/plugins/truSEO/analysis/passiveVoice.js:43
|
1471 |
+
__( 'Passive Voice', 'all-in-one-seo-pack' ),
|
1472 |
|
1473 |
+
// Reference: src/vue/plugins/truSEO/analysis/passiveVoice.js:45
|
1474 |
+
/* Translators: 1 - Percentage of the sentences, 2 - Expected maximum percentage of sentences. */
|
1475 |
+
__( '%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' ),
|
1476 |
|
1477 |
+
// Reference: src/vue/plugins/truSEO/analysis/subheadingsDistribution.js:100
|
1478 |
+
__( 'You are not using any subheadings, but your text is short enough and probably doesn\'t need them.', 'all-in-one-seo-pack' ),
|
1479 |
|
1480 |
+
// Reference: src/vue/plugins/truSEO/analysis/subheadingsDistribution.js:72
|
1481 |
+
/* Translators: 1 - Expand to the number of text sections not separated by subheadings, 2 - expands to the recommended number of words following a subheading. */
|
1482 |
+
__( '%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' ),
|
1483 |
|
1484 |
+
// Reference: src/vue/plugins/truSEO/analysis/subheadingsDistribution.js:81
|
1485 |
+
__( 'You are not using any subheadings, although your text is rather long. Try and add some subheadings.', 'all-in-one-seo-pack' ),
|
1486 |
|
1487 |
+
// Reference: src/vue/plugins/truSEO/analysis/subheadingsDistribution.js:91
|
1488 |
+
__( 'Great job!', 'all-in-one-seo-pack' ),
|
|
|
1489 |
|
1490 |
+
// Reference: src/vue/plugins/truSEO/analysis/subheadingsDistribution.js:99
|
1491 |
+
__( 'Subheading distribution', 'all-in-one-seo-pack' ),
|
|
|
1492 |
|
1493 |
+
// Reference: src/vue/plugins/truSEO/analysis/paragraphLength.js:21
|
1494 |
+
__( 'At least one paragraph is long. Consider using short paragraphs.', 'all-in-one-seo-pack' ),
|
1495 |
|
1496 |
+
// Reference: src/vue/plugins/truSEO/analysis/paragraphLength.js:28
|
1497 |
+
__( 'Paragraphs Length', 'all-in-one-seo-pack' ),
|
1498 |
|
1499 |
+
// Reference: src/vue/plugins/truSEO/analysis/paragraphLength.js:29
|
1500 |
+
__( 'You are using short paragraphs.', 'all-in-one-seo-pack' ),
|
1501 |
|
1502 |
+
// Reference: src/vue/plugins/truSEO/analysis/sentenceLength.js:52
|
1503 |
+
__( 'Sentence length is looking great!', 'all-in-one-seo-pack' ),
|
1504 |
|
1505 |
+
// Reference: src/vue/plugins/truSEO/analysis/sentenceLength.js:70
|
1506 |
+
__( 'Sentences Length', 'all-in-one-seo-pack' ),
|
1507 |
|
1508 |
+
// Reference: src/vue/plugins/truSEO/analysis/sentenceLength.js:72
|
1509 |
+
/* Translators: 1 - Number of the sentences, 2 - Number of words, 3 - Recommended maximum of words. */
|
1510 |
+
__( '%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' ),
|
1511 |
|
1512 |
+
// Reference: src/vue/plugins/truSEO/analysis/consecutiveSentences.js:33
|
1513 |
+
/* Translators: 1 - Number of sentences. */
|
1514 |
+
__( 'The text contains %1$d consecutive sentences starting with the same word. Try to mix things up!', 'all-in-one-seo-pack' ),
|
1515 |
|
1516 |
+
// Reference: src/vue/plugins/truSEO/analysis/consecutiveSentences.js:41
|
1517 |
+
__( 'Consecutive sentences', 'all-in-one-seo-pack' ),
|
1518 |
|
1519 |
+
// Reference: src/vue/plugins/truSEO/analysis/consecutiveSentences.js:42
|
1520 |
+
__( 'There is enough variety in your sentences. That\'s great!', 'all-in-one-seo-pack' ),
|
1521 |
|
1522 |
+
// Reference: src/vue/plugins/truSEO/analysis/calculateFleschReading.js:45
|
1523 |
+
// Reference: src/vue/plugins/truSEO/analysis/keyphraseLength.js:39
|
1524 |
+
__( 'Good job!', 'all-in-one-seo-pack' ),
|
1525 |
|
1526 |
+
// Reference: src/vue/plugins/truSEO/analysis/calculateFleschReading.js:49
|
1527 |
+
__( 'very easy', 'all-in-one-seo-pack' ),
|
1528 |
|
1529 |
+
// Reference: src/vue/plugins/truSEO/analysis/calculateFleschReading.js:77
|
1530 |
+
/* Translators: 1 - Flesch Reading Result Number, 2 - Read difficulty string. */
|
1531 |
+
__( 'The copy scores %1$s in the test, which is considered %2$s to read.', 'all-in-one-seo-pack' ),
|
1532 |
|
1533 |
+
// Reference: src/vue/plugins/truSEO/analysis/calculateFleschReading.js:85
|
1534 |
+
__( 'Flesch Reading Ease', 'all-in-one-seo-pack' ),
|
1535 |
|
1536 |
+
// Reference: src/vue/plugins/truSEO/analysis/calculateFleschReading.js:87
|
1537 |
+
/* Translators: 1 - Flesch Reading Result Number, 2 - Read difficulty string, 3 - Note string. */
|
1538 |
+
__( 'The copy scores %1$s in the test, which is considered %2$s to read. %3$s', 'all-in-one-seo-pack' ),
|
1539 |
|
1540 |
+
// Reference: src/vue/plugins/truSEO/analysis/calculateFleschReading.js:95
|
1541 |
+
__( 'Flesch Reading Ease N/A', 'all-in-one-seo-pack' ),
|
|
|
1542 |
|
1543 |
+
// Reference: src/vue/plugins/truSEO/analysis/calculateFleschReading.js:96
|
1544 |
+
__( ':-)', 'all-in-one-seo-pack' ),
|
|
|
1545 |
|
1546 |
+
// Reference: src/vue/plugins/truSEO/analysis/contentHasAssets.js:49
|
1547 |
+
__( 'Your content contains images and/or video(s).', 'all-in-one-seo-pack' ),
|
1548 |
|
1549 |
+
// Reference: src/vue/plugins/truSEO/analysis/contentHasAssets.js:56
|
1550 |
+
__( 'Images/Videos in content', 'all-in-one-seo-pack' ),
|
1551 |
|
1552 |
+
// Reference: src/vue/plugins/truSEO/analysis/contentHasAssets.js:57
|
1553 |
+
__( 'You are not using rich media like images or videos.', 'all-in-one-seo-pack' ),
|
1554 |
|
1555 |
+
// Reference: src/vue/plugins/truSEO/analysis/keyphraseInContent.js:20
|
1556 |
+
__( 'Focus Keyphrase found in content.', 'all-in-one-seo-pack' ),
|
1557 |
|
1558 |
+
// Reference: src/vue/plugins/truSEO/analysis/keyphraseInContent.js:28
|
1559 |
+
__( 'Focus Keyphrase in content', 'all-in-one-seo-pack' ),
|
1560 |
|
1561 |
+
// Reference: src/vue/plugins/truSEO/analysis/keyphraseInContent.js:29
|
1562 |
+
__( 'Focus Keyphrase not found in content.', 'all-in-one-seo-pack' ),
|
1563 |
|
1564 |
+
// Reference: src/vue/plugins/truSEO/analysis/metadescriptionLength.js:24
|
1565 |
+
__( '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' ),
|
1566 |
|
1567 |
+
// Reference: src/vue/plugins/truSEO/analysis/metadescriptionLength.js:34
|
1568 |
+
__( 'The meta description is too short.', 'all-in-one-seo-pack' ),
|
1569 |
|
1570 |
+
// Reference: src/vue/plugins/truSEO/analysis/metadescriptionLength.js:43
|
1571 |
+
__( 'Meta description length', 'all-in-one-seo-pack' ),
|
1572 |
|
1573 |
+
// Reference: src/vue/plugins/truSEO/analysis/metadescriptionLength.js:44
|
1574 |
+
__( 'The meta description is over 160 characters.', 'all-in-one-seo-pack' ),
|
|
|
1575 |
|
1576 |
+
// Reference: src/vue/plugins/truSEO/analysis/metadescriptionLength.js:53
|
1577 |
+
__( 'Meta description Length', 'all-in-one-seo-pack' ),
|
|
|
1578 |
|
1579 |
+
// Reference: src/vue/plugins/truSEO/analysis/keyphraseInURL.js:29
|
1580 |
+
__( 'Focus Keyphrase used in the URL.', 'all-in-one-seo-pack' ),
|
1581 |
|
1582 |
+
// Reference: src/vue/plugins/truSEO/analysis/keyphraseInURL.js:37
|
1583 |
+
__( 'Focus Keyphrase in URL', 'all-in-one-seo-pack' ),
|
1584 |
|
1585 |
+
// Reference: src/vue/plugins/truSEO/analysis/keyphraseInURL.js:38
|
1586 |
+
__( 'Focus Keyphrase not found in the URL.', 'all-in-one-seo-pack' ),
|
1587 |
|
1588 |
+
// Reference: src/vue/plugins/truSEO/analysis/keyphraseInImageAlt.js:31
|
1589 |
+
/* Translators: 1 - Focus Keyphrase or Keyphrase. */
|
1590 |
+
__( '%1$s found in image alt attribute(s).', 'all-in-one-seo-pack' ),
|
1591 |
|
1592 |
+
// Reference: src/vue/plugins/truSEO/analysis/keyphraseInImageAlt.js:40
|
1593 |
+
/* Translators: 1 - Focus Keyphrase or Keyphrase. */
|
1594 |
+
__( '%1$s in image alt attributes', 'all-in-one-seo-pack' ),
|
1595 |
|
1596 |
+
// Reference: src/vue/plugins/truSEO/analysis/keyphraseInImageAlt.js:42
|
1597 |
+
/* Translators: 1 - Focus Keyphrase or Keyphrase. */
|
1598 |
+
__( '%1$s not found in image alt attribute(s). Add an image with your %1$s as alt text.', 'all-in-one-seo-pack' ),
|
1599 |
|
1600 |
+
// Reference: src/vue/plugins/truSEO/analysis/titleLength.js:19
|
1601 |
+
__( 'Please add a title first.', 'all-in-one-seo-pack' ),
|
1602 |
|
1603 |
+
// Reference: src/vue/plugins/truSEO/analysis/titleLength.js:29
|
1604 |
+
__( 'No title has been specified. Make sure to write one!', 'all-in-one-seo-pack' ),
|
1605 |
|
1606 |
+
// Reference: src/vue/plugins/truSEO/analysis/titleLength.js:39
|
1607 |
+
__( 'The title is too short.', 'all-in-one-seo-pack' ),
|
1608 |
|
1609 |
+
// Reference: src/vue/plugins/truSEO/analysis/titleLength.js:48
|
1610 |
+
__( 'SEO Title length', 'all-in-one-seo-pack' ),
|
1611 |
|
1612 |
+
// Reference: src/vue/plugins/truSEO/analysis/titleLength.js:49
|
1613 |
+
__( 'The title is over 60 characters.', 'all-in-one-seo-pack' ),
|
1614 |
|
1615 |
+
// Reference: src/vue/plugins/truSEO/analysis/titleLength.js:58
|
1616 |
+
__( 'Title Length', 'all-in-one-seo-pack' ),
|
1617 |
|
1618 |
+
// Reference: src/vue/plugins/truSEO/analysis/keyphraseInTitle.js:20
|
1619 |
+
__( 'Focus Keyphrase found in SEO title.', 'all-in-one-seo-pack' ),
|
1620 |
|
1621 |
+
// Reference: src/vue/plugins/truSEO/analysis/keyphraseInTitle.js:28
|
1622 |
+
__( 'Focus Keyphrase in SEO title', 'all-in-one-seo-pack' ),
|
1623 |
|
1624 |
+
// Reference: src/vue/plugins/truSEO/analysis/keyphraseInTitle.js:29
|
1625 |
+
__( 'Focus Keyphrase not found in SEO title.', 'all-in-one-seo-pack' ),
|
1626 |
|
1627 |
+
// Reference: src/vue/plugins/truSEO/analysis/keyphraseInSubHeadings.js:103
|
1628 |
+
__( 'Your H2 and H3 subheadings reflects the topic of your copy. Good job!', 'all-in-one-seo-pack' ),
|
1629 |
|
1630 |
+
// Reference: src/vue/plugins/truSEO/analysis/keyphraseInSubHeadings.js:111
|
1631 |
+
__( 'Focus Keyphrase in Subheadings', 'all-in-one-seo-pack' ),
|
1632 |
|
1633 |
+
// Reference: src/vue/plugins/truSEO/analysis/keyphraseInSubHeadings.js:112
|
1634 |
+
__( 'Use your focus keyphrase more in your H2 and H3 subheadings.', 'all-in-one-seo-pack' ),
|
1635 |
|
1636 |
+
// Reference: src/vue/plugins/truSEO/analysis/keyphraseInSubHeadings.js:76
|
1637 |
+
__( 'Use more focus keyphrases in your H2 and H3 subheadings!', 'all-in-one-seo-pack' ),
|
1638 |
|
1639 |
+
// Reference: src/vue/plugins/truSEO/analysis/keyphraseInSubHeadings.js:85
|
1640 |
+
__( 'More than 75% of your H2 and H3 subheadings reflect the topic of your copy. That\'s too much. Don\'t over-optimize!', 'all-in-one-seo-pack' ),
|
1641 |
|
1642 |
+
// Reference: src/vue/plugins/truSEO/analysis/keyphraseInSubHeadings.js:94
|
1643 |
+
__( 'Your H2 or H3 subheading reflects the topic of your copy. Good job!', 'all-in-one-seo-pack' ),
|
1644 |
|
1645 |
+
// Reference: src/vue/plugins/truSEO/analysis/keyphraseBeginningTitle.js:18
|
1646 |
+
__( 'Focus Keyphrase used at the beginning of SEO title.', 'all-in-one-seo-pack' ),
|
1647 |
|
1648 |
+
// Reference: src/vue/plugins/truSEO/analysis/keyphraseBeginningTitle.js:26
|
1649 |
+
__( 'Focus Keyphrase at the beginning of SEO Title', 'all-in-one-seo-pack' ),
|
1650 |
|
1651 |
+
// Reference: src/vue/plugins/truSEO/analysis/keyphraseBeginningTitle.js:27
|
1652 |
+
__( 'Focus Keyphrase doesn\'t appear at the beginning of SEO title.', 'all-in-one-seo-pack' ),
|
1653 |
|
1654 |
+
// Reference: src/vue/plugins/truSEO/analysis/keyphraseInIntroduction.js:22
|
1655 |
+
/* Translators: 1 - Focus Keyphrase or Keyphrase. */
|
1656 |
+
__( '%1$s in introduction', 'all-in-one-seo-pack' ),
|
1657 |
|
1658 |
+
// Reference: src/vue/plugins/truSEO/analysis/keyphraseInIntroduction.js:27
|
1659 |
+
__( 'No content added yet.', 'all-in-one-seo-pack' ),
|
|
|
1660 |
|
1661 |
+
// Reference: src/vue/plugins/truSEO/analysis/keyphraseInIntroduction.js:42
|
1662 |
+
/* Translators: 1 - Focus Keyphrase or Keyphrase. */
|
1663 |
+
__( 'Your %1$s appears in the first paragraph. Well done!', 'all-in-one-seo-pack' ),
|
1664 |
|
1665 |
+
// Reference: src/vue/plugins/truSEO/analysis/keyphraseInIntroduction.js:52
|
1666 |
+
/* Translators: 1 - Focus Keyphrase or Keyphrase. */
|
1667 |
+
__( 'Your %1$s does not appear in the first paragraph. Make sure the topic is clear immediately.', 'all-in-one-seo-pack' ),
|
1668 |
|
1669 |
+
// Reference: src/vue/plugins/truSEO/analysis/keyphraseInDescription.js:19
|
1670 |
+
/* Translators: 1 - Focus Keyphrase or Keyphrase. */
|
1671 |
+
__( '%1$s in meta description', 'all-in-one-seo-pack' ),
|
1672 |
|
1673 |
+
// Reference: src/vue/plugins/truSEO/analysis/keyphraseInDescription.js:25
|
1674 |
+
/* Translators: 1 - Focus Keyphrase or Keyphrase. */
|
1675 |
+
__( '%1$s found in meta description.', 'all-in-one-seo-pack' ),
|
1676 |
|
1677 |
+
// Reference: src/vue/plugins/truSEO/analysis/keyphraseInDescription.js:35
|
1678 |
+
/* Translators: 1 - Focus Keyphrase or Keyphrase. */
|
1679 |
+
__( '%1$s not found in meta description.', 'all-in-one-seo-pack' ),
|
1680 |
|
1681 |
+
// Reference: src/vue/plugins/truSEO/analysis/keyphraseLength.js:23
|
1682 |
+
/* Translators: 1 - Focus Keyphrase or Keyphrase. */
|
1683 |
+
__( '%1$s length', 'all-in-one-seo-pack' ),
|
1684 |
|
1685 |
+
// Reference: src/vue/plugins/truSEO/analysis/keyphraseLength.js:29
|
1686 |
+
/* Translators: 1 - Focus Keyphrase or Keyphrase. */
|
1687 |
+
__( 'No %1$s was set. Set a %1$s in order to calculate your SEO score.', 'all-in-one-seo-pack' ),
|
1688 |
|
1689 |
+
// Reference: src/vue/plugins/truSEO/analysis/keyphraseLength.js:50
|
1690 |
+
/* Translators: 1 - Focus Keyphrase or Keyphrase. */
|
1691 |
+
__( '%1$s is slightly long. Try to make it shorter.', 'all-in-one-seo-pack' ),
|
1692 |
|
1693 |
+
// Reference: src/vue/plugins/truSEO/analysis/keyphraseLength.js:60
|
1694 |
+
/* Translators: 1 - Focus Keyphrase or Keyphrase. */
|
1695 |
+
__( '%1$s is too long. Try to make it shorter.', 'all-in-one-seo-pack' ),
|
1696 |
|
1697 |
+
// Reference: src/vue/pages/post-settings/views/SocialSideBar.vue:26
|
1698 |
+
__( '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' ),
|
1699 |
|
1700 |
+
// Reference: src/vue/pages/post-settings/views/SocialSideBar.vue:27
|
1701 |
+
__( 'Preview & Edit', 'all-in-one-seo-pack' ),
|
1702 |
|
1703 |
+
// Reference: src/vue/pages/post-settings/views/Twitter.vue:213
|
1704 |
+
__( 'Twitter Preview', 'all-in-one-seo-pack' ),
|
1705 |
|
1706 |
+
// Reference: src/vue/pages/post-settings/views/Twitter.vue:214
|
1707 |
+
__( 'Use Data from Facebook Tab', 'all-in-one-seo-pack' ),
|
1708 |
|
1709 |
+
// Reference: src/vue/pages/post-settings/views/Twitter.vue:215
|
1710 |
+
__( 'Image Source', 'all-in-one-seo-pack' ),
|
1711 |
|
1712 |
+
// Reference: src/vue/pages/post-settings/views/Twitter.vue:216
|
1713 |
+
__( 'Custom Field Name', 'all-in-one-seo-pack' ),
|
1714 |
|
1715 |
+
// Reference: src/vue/pages/post-settings/views/Twitter.vue:217
|
1716 |
+
__( 'Twitter Image', 'all-in-one-seo-pack' ),
|
1717 |
|
1718 |
+
// Reference: src/vue/pages/post-settings/views/Twitter.vue:218
|
1719 |
+
__( 'Twitter Title', 'all-in-one-seo-pack' ),
|
1720 |
|
1721 |
+
// Reference: src/vue/pages/post-settings/views/Twitter.vue:219
|
1722 |
+
__( 'Twitter Description', 'all-in-one-seo-pack' ),
|
1723 |
|
1724 |
+
// Reference: src/vue/pages/post-settings/views/Twitter.vue:220
|
1725 |
+
__( 'Twitter Card Type', 'all-in-one-seo-pack' ),
|
|
|
1726 |
|
1727 |
+
// Reference: src/vue/pages/post-settings/views/Twitter.vue:224
|
1728 |
+
__( 'Minimum size: 144px x 144px, ideal ratio 1:1, 5MB max. JPG, PNG, WEBP and GIF formats only.', 'all-in-one-seo-pack' ),
|
1729 |
|
1730 |
+
// Reference: src/vue/pages/post-settings/views/Twitter.vue:225
|
1731 |
+
__( 'Minimum size: 300px x 157px, ideal ratio 2:1, 5MB max. JPG, PNG, WEBP and GIF formats only.', 'all-in-one-seo-pack' ),
|
1732 |
|
1733 |
+
// Reference: src/vue/pages/post-settings/views/Twitter.vue:234
|
1734 |
+
__( 'Default (Set under Social Networks)', 'all-in-one-seo-pack' ),
|
1735 |
|
1736 |
+
// Reference: src/vue/pages/post-settings/views/Twitter.vue:235
|
1737 |
+
__( 'Summary', 'all-in-one-seo-pack' ),
|
1738 |
|
1739 |
+
// Reference: src/vue/pages/post-settings/views/Twitter.vue:236
|
1740 |
+
__( 'Summary with Large Image', 'all-in-one-seo-pack' ),
|
1741 |
|
1742 |
+
// Reference: src/vue/pages/post-settings/views/Facebook.vue:238
|
1743 |
+
__( 'Facebook Preview', 'all-in-one-seo-pack' ),
|
1744 |
|
1745 |
+
// Reference: src/vue/pages/post-settings/views/Facebook.vue:241
|
1746 |
+
__( 'Video URL', 'all-in-one-seo-pack' ),
|
1747 |
|
1748 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:683
|
1749 |
+
__( 'Width', 'all-in-one-seo-pack' ),
|
1750 |
|
1751 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:684
|
1752 |
+
__( 'Height', 'all-in-one-seo-pack' ),
|
1753 |
|
1754 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:729
|
1755 |
+
__( 'Object Type', 'all-in-one-seo-pack' ),
|
1756 |
|
1757 |
+
// Reference: src/vue/pages/post-settings/views/Facebook.vue:245
|
1758 |
+
__( 'Facebook Image', 'all-in-one-seo-pack' ),
|
1759 |
|
1760 |
+
// Reference: src/vue/pages/post-settings/views/Facebook.vue:246
|
1761 |
+
__( 'Facebook Title', 'all-in-one-seo-pack' ),
|
1762 |
|
1763 |
+
// Reference: src/vue/pages/post-settings/views/Facebook.vue:247
|
1764 |
+
__( 'Facebook Description', 'all-in-one-seo-pack' ),
|
1765 |
|
1766 |
+
// Reference: src/vue/pages/post-settings/views/Facebook.vue:250
|
1767 |
+
__( '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' ),
|
1768 |
|
1769 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:700
|
1770 |
+
__( 'Click on the tags below to insert variables into your site name.', 'all-in-one-seo-pack' ),
|
|
|
1771 |
|
1772 |
+
// Reference: src/vue/pages/post-settings/views/Facebook.vue:254
|
1773 |
+
__( 'Article Section', 'all-in-one-seo-pack' ),
|
|
|
1774 |
|
1775 |
+
// Reference: src/vue/pages/post-settings/views/Facebook.vue:255
|
1776 |
+
__( 'Article Tags', 'all-in-one-seo-pack' ),
|
1777 |
|
1778 |
+
// Reference: src/vue/pages/post-settings/views/Facebook.vue:256
|
1779 |
+
__( 'Press enter to create an article tag', 'all-in-one-seo-pack' ),
|
1780 |
|
1781 |
+
// Reference: src/vue/pages/post-settings/views/Facebook.vue:264
|
1782 |
+
__( 'Default', 'all-in-one-seo-pack' ),
|
1783 |
|
1784 |
+
// Reference: src/vue/pages/post-settings/views/Facebook.vue:264
|
1785 |
+
__( 'Default Object Type (Set in Social Networks)', 'all-in-one-seo-pack' ),
|
1786 |
|
1787 |
+
// Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:71
|
1788 |
+
__( 'Schema Type', 'all-in-one-seo-pack' ),
|
1789 |
|
1790 |
+
// Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:72
|
1791 |
+
__( 'Article Type', 'all-in-one-seo-pack' ),
|
1792 |
|
1793 |
+
// Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:74
|
1794 |
+
__( 'Blog Post', 'all-in-one-seo-pack' ),
|
|
|
1795 |
|
1796 |
+
// Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:75
|
1797 |
+
__( 'News Article', 'all-in-one-seo-pack' ),
|
|
|
1798 |
|
1799 |
+
// Reference: src/vue/plugins/truSEO/researches/helpers/getKeyphraseType.js:6
|
1800 |
+
__( 'Focus keyphrase', 'all-in-one-seo-pack' ),
|
1801 |
|
1802 |
+
// Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:290
|
1803 |
+
__( 'Keyphrase', 'all-in-one-seo-pack' ),
|
1804 |
|
1805 |
+
// Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:286
|
1806 |
+
/* Translators: 1 - Semrush. */
|
1807 |
+
__( 'Additional Keyphrases by %1$s', 'all-in-one-seo-pack' ),
|
1808 |
|
1809 |
+
// Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:287
|
1810 |
+
__( 'Add Focus Keyphrase', 'all-in-one-seo-pack' ),
|
1811 |
|
1812 |
+
// Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:288
|
1813 |
+
__( 'Get Additional Keyphrases', 'all-in-one-seo-pack' ),
|
1814 |
|
1815 |
+
// Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:289
|
1816 |
+
__( 'Show Results For:', 'all-in-one-seo-pack' ),
|
1817 |
|
1818 |
+
// Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:291
|
1819 |
+
__( 'Volume', 'all-in-one-seo-pack' ),
|
1820 |
|
1821 |
+
// Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:292
|
1822 |
+
__( 'Trend', 'all-in-one-seo-pack' ),
|
1823 |
|
1824 |
+
// Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:293
|
1825 |
+
__( 'Add Keyphrase', 'all-in-one-seo-pack' ),
|
|
|
1826 |
|
1827 |
+
// Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:294
|
1828 |
+
__( 'Remove Keyphrase', 'all-in-one-seo-pack' ),
|
1829 |
|
1830 |
+
// Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:295
|
1831 |
+
__( 'No results', 'all-in-one-seo-pack' ),
|
1832 |
|
1833 |
+
// Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:297
|
1834 |
+
/* Translators: 1 - Plugin short name + Pro "AIOSEO Pro", 2 - Semrush, 3 - Link to learn more. */
|
1835 |
+
__( 'Analyzing your content with %1$s keywords is only available to licensed %2$s users. %3$s', 'all-in-one-seo-pack' ),
|
1836 |
|
1837 |
+
// Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:299
|
1838 |
+
/* Translators: 1 - Plugin short name "AIOSEO", 2 - Semrush. */
|
1839 |
+
__( '%1$s integrates directly with %2$s to provide you with actionable keyphrases to help you write better content.', 'all-in-one-seo-pack' ),
|
1840 |
|
1841 |
+
// Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:300
|
1842 |
+
__( 'To use this feature, first add a focus keyphrase.', 'all-in-one-seo-pack' ),
|
1843 |
|
1844 |
+
// Reference: src/vue/components/common/core/Keyphrase.vue:44
|
1845 |
+
// Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:302
|
1846 |
+
// Reference: src/vue/pages/redirects/views/pro/Logs.vue:140
|
1847 |
+
// Reference: src/vue/pages/redirects/views/pro/Logs404.vue:195
|
1848 |
+
__( 'Delete', 'all-in-one-seo-pack' ),
|
1849 |
|
1850 |
+
// Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:304
|
1851 |
+
/* Translators: 1 - Semrush. */
|
1852 |
+
__( 'Get Additional Keyphrases with %1$s!', 'all-in-one-seo-pack' ),
|
1853 |
|
1854 |
+
// Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:306
|
1855 |
+
/* Translators: 1 - Opening link tag, 2 - Closing link tag, 3 - Semrush. */
|
1856 |
+
__( '%1$sA valid license key is required%2$s in order to connect with %3$s.', 'all-in-one-seo-pack' ),
|
1857 |
|
1858 |
+
// Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:325
|
1859 |
+
__( 'You have exceeded the limit for requests. Please try again later.', 'all-in-one-seo-pack' ),
|
1860 |
|
1861 |
+
// Reference: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:328
|
1862 |
+
__( 'An error occurred while fetching keyphrases. Please try again later.', 'all-in-one-seo-pack' ),
|
|
|
1863 |
|
1864 |
+
// Reference: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:75
|
1865 |
+
__( 'Add Additional Keyphrases', 'all-in-one-seo-pack' ),
|
|
|
1866 |
|
1867 |
+
// Reference: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:76
|
1868 |
+
__( 'Improve your SEO rankings with additional keyphrases.', 'all-in-one-seo-pack' ),
|
|
|
1869 |
|
1870 |
+
// Reference: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:79
|
1871 |
+
/* Translators: 1 - "Pro" string, 2 - "Learn more link". */
|
1872 |
+
__( 'Multiple Keyphrases is a %1$s feature. %2$s', 'all-in-one-seo-pack' ),
|
1873 |
|
1874 |
+
// Reference: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:81
|
1875 |
+
__( 'Click here to get', 'all-in-one-seo-pack' ),
|
|
|
1876 |
|
1877 |
+
// Reference: src/vue/components/common/notifications/Review.vue:114
|
1878 |
+
__( 'Dismiss', 'all-in-one-seo-pack' ),
|
1879 |
|
1880 |
+
// Reference: src/vue/components/common/notifications/Review.vue:115
|
1881 |
+
__( 'Yes, I love it!', 'all-in-one-seo-pack' ),
|
1882 |
|
1883 |
+
// Reference: src/vue/components/common/notifications/Review.vue:116
|
1884 |
+
__( 'Not Really...', 'all-in-one-seo-pack' ),
|
1885 |
|
1886 |
+
// Reference: src/vue/components/common/notifications/Review.vue:117
|
1887 |
+
__( 'Ok, you deserve it', 'all-in-one-seo-pack' ),
|
1888 |
|
1889 |
+
// Reference: src/vue/components/common/notifications/Review.vue:118
|
1890 |
+
__( 'Nope, maybe later', 'all-in-one-seo-pack' ),
|
1891 |
|
1892 |
+
// Reference: src/vue/components/common/notifications/Review.vue:119
|
1893 |
+
__( 'Give feedback', 'all-in-one-seo-pack' ),
|
1894 |
|
1895 |
+
// Reference: src/vue/components/common/notifications/Review.vue:120
|
1896 |
+
__( 'No thanks', 'all-in-one-seo-pack' ),
|
1897 |
|
1898 |
+
// Reference: src/vue/components/common/notifications/Review.vue:129
|
1899 |
+
__( 'That\'s Awesome!', 'all-in-one-seo-pack' ),
|
1900 |
|
1901 |
+
// Reference: src/vue/components/common/notifications/Review.vue:131
|
1902 |
+
__( 'Help us improve', 'all-in-one-seo-pack' ),
|
1903 |
|
1904 |
+
// Reference: src/vue/components/common/notifications/Review.vue:134
|
1905 |
+
/* Translators: 1 = The plugin short name ("AIOSEO") */
|
1906 |
+
__( 'Are you enjoying %1$s?', 'all-in-one-seo-pack' ),
|
1907 |
|
1908 |
+
// Reference: src/vue/components/common/notifications/Review.vue:140
|
1909 |
+
__( 'Could you please do me a BIG favor and give it a 5-star rating on WordPress to help us spread the word and boost our motivation?', 'all-in-one-seo-pack' ),
|
1910 |
|
1911 |
+
// Reference: src/vue/components/common/notifications/Review.vue:143
|
1912 |
+
/* Translators: The plugin name ("All in One SEO"). */
|
1913 |
+
__( 'CEO of %1$s', 'all-in-one-seo-pack' ),
|
1914 |
|
1915 |
+
// Reference: src/vue/components/common/notifications/Review.vue:147
|
1916 |
+
/* Translators: The plugin name ("All in One SEO"). */
|
1917 |
+
__( 'We\'re sorry to hear you aren\'t enjoying %1$s. We would love a chance to improve. Could you take a minute and let us know what we can do better?', 'all-in-one-seo-pack' ),
|
1918 |
|
1919 |
+
// Reference: src/vue/components/common/html-sitemap/ExcludeObjects.vue:94
|
1920 |
+
__( 'Type to search...', 'all-in-one-seo-pack' ),
|
1921 |
|
1922 |
+
// Reference: src/vue/components/common/html-sitemap/ExcludeObjects.vue:95
|
1923 |
+
__( 'Begin typing a post ID, title or slug to search...', 'all-in-one-seo-pack' ),
|
1924 |
|
1925 |
+
// Reference: src/vue/components/common/html-sitemap/ExcludeObjects.vue:96
|
1926 |
+
__( 'Begin typing a term ID or name to search...', 'all-in-one-seo-pack' ),
|
1927 |
|
1928 |
+
// Reference: src/vue/components/common/html-sitemap/ExcludeObjects.vue:97
|
1929 |
+
__( 'No results found for your search. Try again!', 'all-in-one-seo-pack' ),
|
1930 |
|
1931 |
+
// Reference: src/vue/components/common/html-sitemap/ExcludeObjects.vue:98
|
1932 |
+
__( 'Clear', 'all-in-one-seo-pack' ),
|
|
|
1933 |
|
1934 |
+
// Reference: src/vue/components/common/html-sitemap/ExcludeObjects.vue:99
|
1935 |
+
__( 'ID', 'all-in-one-seo-pack' ),
|
|
|
1936 |
|
1937 |
+
// Reference: src/vue/components/common/notifications/UnlicensedAddons.vue:49
|
1938 |
+
/* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Addons". */
|
1939 |
+
__( '%1$s %2$s Not Configured Properly', 'all-in-one-seo-pack' ),
|
1940 |
|
1941 |
+
// Reference: src/vue/components/common/notifications/UnlicensedAddons.vue:51
|
1942 |
+
__( 'Upgrade', 'all-in-one-seo-pack' ),
|
|
|
1943 |
|
1944 |
+
// Reference: src/vue/components/common/core/PostTypeOptions.vue:80
|
1945 |
+
__( 'Label:', 'all-in-one-seo-pack' ),
|
|
|
1946 |
|
1947 |
+
// Reference: src/vue/components/common/core/PostTypeOptions.vue:81
|
1948 |
+
__( 'Slug:', 'all-in-one-seo-pack' ),
|
1949 |
|
1950 |
+
// Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:278
|
1951 |
+
__( 'Display HTML Sitemap', 'all-in-one-seo-pack' ),
|
|
|
1952 |
|
1953 |
+
// Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:140
|
1954 |
+
__( 'Dedicated Page', 'all-in-one-seo-pack' ),
|
1955 |
|
1956 |
+
// Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:141
|
1957 |
+
__( 'e.g. %1$s', 'all-in-one-seo-pack' ),
|
1958 |
|
1959 |
+
// Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:142
|
1960 |
+
__( 'Open HTML Sitemap', 'all-in-one-seo-pack' ),
|
1961 |
|
1962 |
+
// Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:143
|
1963 |
+
__( 'The page that you have entered already exists. Please enter a page with a unique slug.', 'all-in-one-seo-pack' ),
|
1964 |
|
1965 |
+
// Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:144
|
1966 |
+
__( 'The following shortcode attributes can be used to override the default settings:', 'all-in-one-seo-pack' ),
|
1967 |
|
1968 |
+
// Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:145
|
1969 |
+
__( 'The function accepts an associative array with the following arguments that can be used to override the default settings:', 'all-in-one-seo-pack' ),
|
1970 |
|
1971 |
+
// Reference: src/vue/components/common/core/DisplayInfo.vue:116
|
1972 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:283
|
1973 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:706
|
1974 |
+
__( 'Advanced Settings', 'all-in-one-seo-pack' ),
|
1975 |
|
1976 |
+
// Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:147
|
1977 |
+
__( 'To view the sitemap, enter a URL and save changes.', 'all-in-one-seo-pack' ),
|
1978 |
|
1979 |
+
// Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:148
|
1980 |
+
__( 'To view the new sitemap, first save changes.', 'all-in-one-seo-pack' ),
|
1981 |
|
1982 |
+
// Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:153
|
1983 |
+
__( 'The post types (by slug, comma-separated) that are included in the sitemap.', 'all-in-one-seo-pack' ),
|
1984 |
|
1985 |
+
// Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:157
|
1986 |
+
__( 'The taxonomies (by slug, comma-separated) that are included in the sitemap.', 'all-in-one-seo-pack' ),
|
|
|
|
|
1987 |
|
1988 |
+
// Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:163
|
1989 |
+
/* Translators: 1 - The default value. */
|
1990 |
+
__( 'The HTML tag that is used for the label of each section. Defaults to %1$s.', 'all-in-one-seo-pack' ),
|
1991 |
|
1992 |
+
// Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:171
|
1993 |
+
/* Translators: 1 - The default value. */
|
1994 |
+
__( 'Whether the labels should be shown or not. Defaults to %1$s.', 'all-in-one-seo-pack' ),
|
1995 |
|
1996 |
+
// Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:181
|
1997 |
+
__( 'Whether the publication date of posts should be shown.', 'all-in-one-seo-pack' ),
|
1998 |
|
1999 |
+
// Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:185
|
2000 |
+
__( 'Whether the regular sitemap or compact date archive sitemap is output.', 'all-in-one-seo-pack' ),
|
2001 |
|
2002 |
+
// Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:192
|
2003 |
+
/* Translators: 1 - HTML code opening tag, 2 - HTML code closing tag. */
|
2004 |
+
__( 'The sort direction. The supported values are %1$s and %2$s.', 'all-in-one-seo-pack' ),
|
2005 |
|
2006 |
+
// Reference: src/vue/components/common/html-sitemap/DisplayInfo.vue:201
|
2007 |
+
/* Translators: 1 - HTML code opening tag, 2 - HTML code closing tag. */
|
2008 |
+
__( 'The sort order. The supported values are %1$s, %2$s, %3$s and %4$s.', 'all-in-one-seo-pack' ),
|
2009 |
|
2010 |
+
// Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:62
|
2011 |
+
__( 'An error occurred while analyzing your site.', 'all-in-one-seo-pack' ),
|
|
|
2012 |
|
2013 |
+
// Reference: src/vue/components/common/core/SiteScoreCompetitor.vue:76
|
2014 |
+
__( 'Warnings', 'all-in-one-seo-pack' ),
|
|
|
2015 |
|
2016 |
+
// Reference: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:131
|
2017 |
+
__( 'The URL provided is invalid.', 'all-in-one-seo-pack' ),
|
|
|
2018 |
|
2019 |
+
// Reference: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:135
|
2020 |
+
__( 'We were unable to parse the content for this site.', 'all-in-one-seo-pack' ),
|
|
|
2021 |
|
2022 |
+
// Reference: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:140
|
2023 |
+
/* Translators: 1 - The plugin short name ('AIOSEO'). */
|
2024 |
+
__( 'Your site is not connected. Please connect to %1$s, then try again.', 'all-in-one-seo-pack' ),
|
2025 |
|
2026 |
+
// Reference: src/vue/components/common/core/SeoSiteAnalysisResults.vue:107
|
2027 |
+
__( 'Advanced SEO', 'all-in-one-seo-pack' ),
|
2028 |
|
2029 |
+
// Reference: src/vue/components/common/core/SeoSiteAnalysisResults.vue:108
|
2030 |
+
__( 'Performance', 'all-in-one-seo-pack' ),
|
|
|
2031 |
|
2032 |
+
// Reference: src/vue/components/common/core/SeoSiteAnalysisResults.vue:110
|
2033 |
+
__( 'Keywords:', 'all-in-one-seo-pack' ),
|
|
|
2034 |
|
2035 |
+
// Reference: src/vue/components/common/core/SingleRobotsMeta.vue:163
|
2036 |
+
__( 'Robots meta:', 'all-in-one-seo-pack' ),
|
2037 |
|
2038 |
+
// Reference: src/vue/components/common/core/SingleRobotsMeta.vue:164
|
2039 |
+
__( 'Max Snippet', 'all-in-one-seo-pack' ),
|
|
|
2040 |
|
2041 |
+
// Reference: src/vue/components/common/core/SingleRobotsMeta.vue:165
|
2042 |
+
__( 'Max Video Preview', 'all-in-one-seo-pack' ),
|
|
|
2043 |
|
2044 |
+
// Reference: src/vue/components/common/core/SingleRobotsMeta.vue:166
|
2045 |
+
__( 'Max Image Preview', 'all-in-one-seo-pack' ),
|
|
|
2046 |
|
2047 |
+
// Reference: src/vue/components/common/core/SingleRobotsMeta.vue:167
|
2048 |
+
__( 'Standard', 'all-in-one-seo-pack' ),
|
|
|
2049 |
|
2050 |
+
// Reference: src/vue/components/common/core/SingleRobotsMeta.vue:168
|
2051 |
+
// Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:67
|
2052 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:306
|
2053 |
+
__( 'None', 'all-in-one-seo-pack' ),
|
2054 |
|
2055 |
+
// Reference: src/vue/components/common/core/SingleRobotsMeta.vue:169
|
2056 |
+
__( 'Large', 'all-in-one-seo-pack' ),
|
2057 |
|
2058 |
+
// Reference: src/vue/components/common/core/SingleRobotsMeta.vue:170
|
2059 |
+
__( 'No Index', 'all-in-one-seo-pack' ),
|
2060 |
|
2061 |
+
// Reference: src/vue/components/common/core/SingleRobotsMeta.vue:171
|
2062 |
+
__( 'No Follow', 'all-in-one-seo-pack' ),
|
2063 |
|
2064 |
+
// Reference: src/vue/components/common/core/SingleRobotsMeta.vue:172
|
2065 |
+
__( 'No Archive', 'all-in-one-seo-pack' ),
|
2066 |
|
2067 |
+
// Reference: src/vue/components/common/core/SingleRobotsMeta.vue:173
|
2068 |
+
__( 'No Translate', 'all-in-one-seo-pack' ),
|
2069 |
|
2070 |
+
// Reference: src/vue/components/common/core/SingleRobotsMeta.vue:174
|
2071 |
+
__( 'No Image Index', 'all-in-one-seo-pack' ),
|
2072 |
|
2073 |
+
// Reference: src/vue/components/common/core/SingleRobotsMeta.vue:175
|
2074 |
+
__( 'No Snippet', 'all-in-one-seo-pack' ),
|
2075 |
|
2076 |
+
// Reference: src/vue/components/common/core/SingleRobotsMeta.vue:176
|
2077 |
+
__( 'No ODP', 'all-in-one-seo-pack' ),
|
2078 |
|
2079 |
+
// Reference: src/vue/components/common/core/RobotsMeta.vue:96
|
2080 |
+
__( 'No Index Paginated', 'all-in-one-seo-pack' ),
|
2081 |
|
2082 |
+
// Reference: src/vue/components/common/core/RobotsMeta.vue:97
|
2083 |
+
__( 'No Follow Paginated', 'all-in-one-seo-pack' ),
|
2084 |
|
2085 |
+
// Reference: src/vue/components/common/core/RobotsMeta.vue:98
|
2086 |
+
__( 'No Index RSS Feeds', 'all-in-one-seo-pack' ),
|
2087 |
|
2088 |
+
// Reference: src/vue/components/common/core/NotificationCards.vue:59
|
2089 |
+
__( 'Great Scott! Where\'d they all go?', 'all-in-one-seo-pack' ),
|
2090 |
|
2091 |
+
// Reference: src/vue/components/common/core/NotificationCards.vue:60
|
2092 |
+
__( 'You have no new notifications.', 'all-in-one-seo-pack' ),
|
|
|
2093 |
|
2094 |
+
// Reference: src/vue/components/common/core/NotificationCards.vue:61
|
2095 |
+
__( 'See Dismissed Notifications', 'all-in-one-seo-pack' ),
|
|
|
2096 |
|
2097 |
+
// Reference: src/vue/components/common/core/Notification.vue:100
|
2098 |
+
__( 'a minute ago', 'all-in-one-seo-pack' ),
|
2099 |
|
2100 |
+
// Reference: src/vue/components/common/core/Notification.vue:104
|
2101 |
+
/* Translators: A number will be prepended to this string, e.g. "2 minutes ago". */
|
2102 |
+
__( 'minutes ago', 'all-in-one-seo-pack' ),
|
2103 |
|
2104 |
+
// Reference: src/vue/components/common/core/Notification.vue:106
|
2105 |
+
__( 'a day ago', 'all-in-one-seo-pack' ),
|
2106 |
|
2107 |
+
// Reference: src/vue/components/common/core/Notification.vue:110
|
2108 |
+
/* Translators: A number will be prepended to this string, e.g. "2 days ago". */
|
2109 |
+
__( 'days ago', 'all-in-one-seo-pack' ),
|
2110 |
|
2111 |
+
// Reference: src/vue/components/common/core/Notification.vue:111
|
2112 |
+
__( 'a month ago', 'all-in-one-seo-pack' ),
|
2113 |
|
2114 |
+
// Reference: src/vue/components/common/core/Notification.vue:115
|
2115 |
+
/* Translators: A number will be prepended to this string, e.g. "2 months ago". */
|
2116 |
+
__( 'months ago', 'all-in-one-seo-pack' ),
|
2117 |
|
2118 |
+
// Reference: src/vue/components/common/core/Notification.vue:117
|
2119 |
+
__( 'a year ago', 'all-in-one-seo-pack' ),
|
2120 |
|
2121 |
+
// Reference: src/vue/components/common/core/Notification.vue:121
|
2122 |
+
/* Translators: A number will be prepended to this string, e.g. "2 years ago". */
|
2123 |
+
__( 'years ago', 'all-in-one-seo-pack' ),
|
2124 |
|
2125 |
+
// Reference: src/vue/components/common/core/Notification.vue:99
|
2126 |
+
__( 'a few seconds ago', 'all-in-one-seo-pack' ),
|
2127 |
|
2128 |
+
// Reference: src/vue/components/common/core/AddRedirection.vue:239
|
2129 |
+
// Reference: src/vue/components/common/core/Main.vue:80
|
2130 |
+
__( 'Save Changes', 'all-in-one-seo-pack' ),
|
2131 |
|
2132 |
+
// Reference: src/vue/components/common/core/PostTypeOptions.vue:82
|
2133 |
+
__( 'No post types available.', 'all-in-one-seo-pack' ),
|
|
|
2134 |
|
2135 |
+
// Reference: src/vue/components/common/core/PostTypeOptions.vue:83
|
2136 |
+
__( 'No taxonomies available.', 'all-in-one-seo-pack' ),
|
2137 |
|
2138 |
+
// Reference: src/vue/components/common/core/PostTypeOptions.vue:84
|
2139 |
+
__( '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' ),
|
2140 |
|
2141 |
+
// Reference: src/vue/components/common/core/PostTypeOptions.vue:85
|
2142 |
+
__( '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' ),
|
2143 |
|
2144 |
+
// Reference: src/vue/components/common/core/PriorityScore.vue:66
|
2145 |
+
__( 'Home Page', 'all-in-one-seo-pack' ),
|
2146 |
|
2147 |
+
// Reference: src/vue/components/common/core/PriorityScore.vue:67
|
2148 |
+
__( 'Archive Pages', 'all-in-one-seo-pack' ),
|
2149 |
|
2150 |
+
// Reference: src/vue/components/common/core/PriorityScore.vue:68
|
2151 |
+
__( 'Author Pages', 'all-in-one-seo-pack' ),
|
2152 |
|
2153 |
+
// Reference: src/vue/components/common/core/SettingsSeparator.vue:101
|
2154 |
+
__( 'Custom separator:', 'all-in-one-seo-pack' ),
|
2155 |
|
2156 |
+
// Reference: src/vue/components/common/core/SettingsSeparator.vue:102
|
2157 |
+
__( 'Show More', 'all-in-one-seo-pack' ),
|
2158 |
|
2159 |
+
// Reference: src/vue/components/common/core/SettingsSeparator.vue:103
|
2160 |
+
__( 'Show Less', 'all-in-one-seo-pack' ),
|
2161 |
|
2162 |
+
// Reference: src/vue/components/common/core/Notifications.vue:94
|
2163 |
+
__( 'Dismissed Notifications', 'all-in-one-seo-pack' ),
|
2164 |
|
2165 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:239
|
2166 |
+
__( 'Dismiss All', 'all-in-one-seo-pack' ),
|
2167 |
|
2168 |
+
// Reference: src/vue/components/common/core/HtmlTagsEditor.vue:100
|
2169 |
+
__( 'Click on the tags below to insert variables into your template.', 'all-in-one-seo-pack' ),
|
2170 |
|
2171 |
+
// Reference: src/vue/components/common/core/HtmlTagsEditor.vue:119
|
2172 |
+
__( 'View all tags', 'all-in-one-seo-pack' ),
|
2173 |
|
2174 |
+
// Reference: src/vue/components/common/core/Help.vue:153
|
2175 |
+
__( 'Close', 'all-in-one-seo-pack' ),
|
2176 |
|
2177 |
+
// Reference: src/vue/components/common/base/WpTable.vue:324
|
2178 |
+
// Reference: src/vue/components/common/core/Help.vue:154
|
2179 |
+
__( 'Search', 'all-in-one-seo-pack' ),
|
2180 |
|
2181 |
+
// Reference: src/vue/components/common/core/Help.vue:155
|
2182 |
+
__( 'View All', 'all-in-one-seo-pack' ),
|
2183 |
|
2184 |
+
// Reference: src/vue/components/common/core/Help.vue:156
|
2185 |
+
__( 'Docs', 'all-in-one-seo-pack' ),
|
2186 |
|
2187 |
+
// Reference: src/vue/components/common/core/Help.vue:157
|
2188 |
+
__( 'View Documentation', 'all-in-one-seo-pack' ),
|
2189 |
|
2190 |
+
// Reference: src/vue/components/common/core/Help.vue:159
|
2191 |
+
/* Translators: 1 - The plugin short name ("AIOEO"). */
|
2192 |
+
__( 'Browse documentation, reference material, and tutorials for %1$s.', 'all-in-one-seo-pack' ),
|
2193 |
|
2194 |
+
// Reference: src/vue/components/common/core/Help.vue:160
|
2195 |
+
__( 'View All Documentation', 'all-in-one-seo-pack' ),
|
|
|
2196 |
|
2197 |
+
// Reference: src/vue/components/common/core/Help.vue:161
|
2198 |
+
__( 'Get Support', 'all-in-one-seo-pack' ),
|
|
|
2199 |
|
2200 |
+
// Reference: src/vue/components/common/core/Help.vue:162
|
2201 |
+
__( 'Submit a ticket and our world class support team will be in touch soon.', 'all-in-one-seo-pack' ),
|
|
|
2202 |
|
2203 |
+
// Reference: src/vue/components/common/core/Help.vue:163
|
2204 |
+
__( 'Submit a Support Ticket', 'all-in-one-seo-pack' ),
|
2205 |
|
2206 |
+
// Reference: src/vue/components/common/core/FeatureCard.vue:128
|
2207 |
+
__( 'Upgrade to Pro', 'all-in-one-seo-pack' ),
|
|
|
2208 |
|
2209 |
+
// Reference: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:68
|
2210 |
+
__( 'Refresh Results', 'all-in-one-seo-pack' ),
|
2211 |
|
2212 |
+
// Reference: src/vue/components/common/core/SiteScoreCompetitor.vue:81
|
2213 |
+
__( 'Mobile Snapshot', 'all-in-one-seo-pack' ),
|
|
|
2214 |
|
2215 |
+
// Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:57
|
2216 |
+
__( 'Your Overall Site Score', 'all-in-one-seo-pack' ),
|
|
|
2217 |
|
2218 |
+
// Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:59
|
2219 |
+
/* Translators: 1 - Opening bold HTML tag. 2 - Closing bold HTML tag. */
|
2220 |
+
__( 'A very good score is between %1$s60 and 80%2$s.', 'all-in-one-seo-pack' ),
|
2221 |
|
2222 |
+
// Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:61
|
2223 |
+
/* Translators: 1 - Opening bold HTML tag. 2 - Closing bold HTML tag. */
|
2224 |
+
__( 'For best results, you should strive for %1$s70 and above%2$s.', 'all-in-one-seo-pack' ),
|
2225 |
|
2226 |
+
// Reference: src/vue/components/common/core/SiteScoreAnalyze.vue:68
|
2227 |
+
__( 'Read the Ultimate WordPress SEO Guide', 'all-in-one-seo-pack' ),
|
|
|
2228 |
|
2229 |
+
// Reference: src/vue/components/common/core/SiteScore.vue:45
|
2230 |
+
__( 'Analyzing...', 'all-in-one-seo-pack' ),
|
2231 |
|
2232 |
+
// Reference: src/vue/components/common/core/SocialProfiles.vue:124
|
2233 |
+
__( 'Your Facebook URL is invalid. Please check the format and try again.', 'all-in-one-seo-pack' ),
|
2234 |
|
2235 |
+
// Reference: src/vue/components/common/core/SocialProfiles.vue:135
|
2236 |
+
__( 'Your Twitter URL is invalid. Please check the format and try again.', 'all-in-one-seo-pack' ),
|
|
|
2237 |
|
2238 |
+
// Reference: src/vue/components/common/core/SocialProfiles.vue:146
|
2239 |
+
__( 'Your Instagram URL is invalid. Please check the format and try again.', 'all-in-one-seo-pack' ),
|
2240 |
|
2241 |
+
// Reference: src/vue/components/common/core/SocialProfiles.vue:157
|
2242 |
+
__( 'Your Pinterest URL is invalid. Please check the format and try again.', 'all-in-one-seo-pack' ),
|
2243 |
|
2244 |
+
// Reference: src/vue/components/common/core/SocialProfiles.vue:168
|
2245 |
+
__( 'Your YouTube URL is invalid. Please check the format and try again.', 'all-in-one-seo-pack' ),
|
2246 |
|
2247 |
+
// Reference: src/vue/components/common/core/SocialProfiles.vue:179
|
2248 |
+
__( 'Your LinkedIn URL is invalid. Please check the format and try again.', 'all-in-one-seo-pack' ),
|
2249 |
|
2250 |
+
// Reference: src/vue/components/common/core/SocialProfiles.vue:190
|
2251 |
+
__( 'Your Tumblr URL is invalid. Please check the format and try again.', 'all-in-one-seo-pack' ),
|
2252 |
|
2253 |
+
// Reference: src/vue/components/common/core/SocialProfiles.vue:201
|
2254 |
+
__( 'Your Yelp URL is invalid. Please check the format and try again.', 'all-in-one-seo-pack' ),
|
|
|
2255 |
|
2256 |
+
// Reference: src/vue/components/common/core/SocialProfiles.vue:212
|
2257 |
+
__( 'Your SoundCloud URL is invalid. Please check the format and try again.', 'all-in-one-seo-pack' ),
|
|
|
2258 |
|
2259 |
+
// Reference: src/vue/components/common/core/SocialProfiles.vue:223
|
2260 |
+
__( 'Your Wikipedia URL is invalid. Please check the format and try again.', 'all-in-one-seo-pack' ),
|
|
|
2261 |
|
2262 |
+
// Reference: src/vue/components/common/core/SocialProfiles.vue:234
|
2263 |
+
__( 'Your MySpace URL is invalid. Please check the format and try again.', 'all-in-one-seo-pack' ),
|
|
|
2264 |
|
2265 |
+
// Reference: src/vue/components/common/core/SocialProfiles.vue:241
|
2266 |
+
__( 'Use the same username for multiple social networks', 'all-in-one-seo-pack' ),
|
|
|
|
|
2267 |
|
2268 |
+
// Reference: src/vue/components/common/core/SocialProfiles.vue:242
|
2269 |
+
__( 'Your Username:', 'all-in-one-seo-pack' ),
|
2270 |
|
2271 |
+
// Reference: src/vue/components/common/core/GettingStarted.vue:83
|
2272 |
+
__( 'How to Get Started', 'all-in-one-seo-pack' ),
|
2273 |
|
2274 |
+
// Reference: src/vue/components/common/core/GettingStarted.vue:85
|
2275 |
+
/* Translators: 1 - The plugin name ("All in One SEO"). */
|
2276 |
+
__( 'Welcome to %1$s', 'all-in-one-seo-pack' ),
|
2277 |
|
2278 |
+
// Reference: src/vue/components/common/core/GettingStarted.vue:87
|
2279 |
+
/* Translators: 1 - The plugin name ("All in One SEO"). */
|
2280 |
+
__( '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' ),
|
2281 |
|
2282 |
+
// Reference: src/vue/components/common/core/GettingStarted.vue:88
|
2283 |
+
__( 'Launch the Setup Wizard', 'all-in-one-seo-pack' ),
|
2284 |
|
2285 |
+
// Reference: src/vue/components/common/core/GettingStarted.vue:89
|
2286 |
+
__( 'Read the Setup Guide', 'all-in-one-seo-pack' ),
|
2287 |
|
2288 |
+
// Reference: src/vue/components/common/core/FeatureCard.vue:125
|
2289 |
+
// Reference: src/vue/pages/about/views/AboutUs.vue:136
|
2290 |
+
__( 'Activated', 'all-in-one-seo-pack' ),
|
2291 |
|
2292 |
+
// Reference: src/vue/components/common/core/FeatureCard.vue:126
|
2293 |
+
// Reference: src/vue/pages/about/views/AboutUs.vue:137
|
2294 |
+
__( 'Deactivated', 'all-in-one-seo-pack' ),
|
2295 |
|
2296 |
+
// Reference: src/vue/components/common/core/FeatureCard.vue:127
|
2297 |
+
// Reference: src/vue/pages/about/views/AboutUs.vue:138
|
2298 |
+
__( 'Not Installed', 'all-in-one-seo-pack' ),
|
2299 |
|
2300 |
+
// Reference: src/vue/components/common/core/FeatureCard.vue:129
|
2301 |
+
__( 'Upgrade Your Plan', 'all-in-one-seo-pack' ),
|
2302 |
|
2303 |
+
// Reference: src/vue/components/common/core/FeatureCard.vue:130
|
2304 |
+
// Reference: src/vue/pages/about/views/AboutUs.vue:132
|
2305 |
+
__( 'Manage', 'all-in-one-seo-pack' ),
|
2306 |
|
2307 |
+
// Reference: src/vue/components/common/core/AddRedirectionUrlResults.vue:52
|
2308 |
+
__( 'DRAFT', 'all-in-one-seo-pack' ),
|
|
|
2309 |
|
2310 |
+
// Reference: src/vue/components/common/core/AddRedirectionUrlResults.vue:53
|
2311 |
+
__( 'PENDING', 'all-in-one-seo-pack' ),
|
2312 |
|
2313 |
+
// Reference: src/vue/components/common/core/AddRedirectionUrlResults.vue:54
|
2314 |
+
__( 'FUTURE', 'all-in-one-seo-pack' ),
|
2315 |
|
2316 |
+
// Reference: src/vue/components/common/core/AdditionalPages.vue:100
|
2317 |
+
__( 'Last Modified', 'all-in-one-seo-pack' ),
|
2318 |
|
2319 |
+
// Reference: src/vue/components/common/core/AdditionalPages.vue:102
|
2320 |
+
__( 'Add New', 'all-in-one-seo-pack' ),
|
2321 |
|
2322 |
+
// Reference: src/vue/components/common/core/AdditionalPages.vue:96
|
2323 |
+
/* Translators: 1 - An example URL (e.g. https://aioseo.com/example). */
|
2324 |
+
__( 'Enter a page URL, e.g. %1$s', 'all-in-one-seo-pack' ),
|
2325 |
|
2326 |
+
// Reference: src/vue/components/common/core/AdditionalPages.vue:97
|
2327 |
+
__( 'Page URL', 'all-in-one-seo-pack' ),
|
2328 |
|
2329 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:260
|
2330 |
+
/* Translators: 1 - Learn more link. */
|
2331 |
+
__( 'Your user account role does not have access to edit this field. %1$s', 'all-in-one-seo-pack' ),
|
2332 |
|
2333 |
+
// Reference: src/vue/components/common/core/AddRedirectionCustomRules.vue:109
|
2334 |
+
__( 'Custom Rules', 'all-in-one-seo-pack' ),
|
2335 |
|
2336 |
+
// Reference: src/vue/components/common/core/AddRedirectionCustomRules.vue:110
|
2337 |
+
__( 'Select Rule', 'all-in-one-seo-pack' ),
|
2338 |
|
2339 |
+
// Reference: src/vue/components/common/core/AddRedirectionCustomRules.vue:112
|
2340 |
+
__( 'Add Custom Rule', 'all-in-one-seo-pack' ),
|
2341 |
|
2342 |
+
// Reference: src/vue/components/common/core/AddRedirectionCustomRules.vue:113
|
2343 |
+
__( 'Regex', 'all-in-one-seo-pack' ),
|
2344 |
|
2345 |
+
// Reference: src/vue/components/common/core/AddRedirectionCustomRules.vue:114
|
2346 |
+
__( 'Select a Value or Add a New One', 'all-in-one-seo-pack' ),
|
2347 |
|
2348 |
+
// Reference: src/vue/components/common/core/AddRedirectionCustomRules.vue:115
|
2349 |
+
__( 'Key', 'all-in-one-seo-pack' ),
|
2350 |
|
2351 |
+
// Reference: src/vue/components/common/core/AddRedirectionCustomRules.vue:116
|
2352 |
+
__( 'Value', 'all-in-one-seo-pack' ),
|
|
|
2353 |
|
2354 |
+
// Reference: src/vue/components/common/core/AddRedirectionCustomRules.vue:123
|
2355 |
+
__( 'Select Status', 'all-in-one-seo-pack' ),
|
|
|
2356 |
|
2357 |
+
// Reference: src/vue/components/common/core/AddRedirectionCustomRules.vue:134
|
2358 |
+
__( 'Select Roles', 'all-in-one-seo-pack' ),
|
2359 |
|
2360 |
+
// Reference: src/vue/components/common/core/AddRedirectionCustomRules.vue:165
|
2361 |
+
__( 'Learn more', 'all-in-one-seo-pack' ),
|
|
|
2362 |
|
2363 |
+
// Reference: src/vue/components/common/core/AddRedirectionCustomRules.vue:178
|
2364 |
+
__( 'Enter an IP Address', 'all-in-one-seo-pack' ),
|
2365 |
|
2366 |
+
// Reference: src/vue/components/common/core/AddRedirectionCustomRules.vue:186
|
2367 |
+
__( 'Enter the Server Name', 'all-in-one-seo-pack' ),
|
2368 |
|
2369 |
+
// Reference: src/vue/components/common/core/AddRedirectionCustomRules.vue:199
|
2370 |
+
__( 'Enter a WordPress Filter Name', 'all-in-one-seo-pack' ),
|
2371 |
|
2372 |
+
// Reference: src/vue/components/common/core/AddRedirectionCustomRules.vue:207
|
2373 |
+
__( 'Enter a Locale Code, e.g.: en_GB, es_ES', 'all-in-one-seo-pack' ),
|
|
|
2374 |
|
2375 |
+
// Reference: src/vue/components/common/core/ApiBar.vue:15
|
2376 |
+
__( 'Pro', 'all-in-one-seo-pack' ),
|
2377 |
|
2378 |
+
// Reference: src/vue/components/common/core/ApiBar.vue:16
|
2379 |
+
__( 'Click here to learn more', 'all-in-one-seo-pack' ),
|
2380 |
|
2381 |
+
// Reference: src/vue/components/common/core/ApiBar.vue:26
|
2382 |
+
/* Translators: 1 - The plugin name ("All in One SEO"), 2 - "upgrading to Pro". */
|
2383 |
+
__( '%1$s relies on the WordPress Rest API and your site might have it disabled. %2$s.', 'all-in-one-seo-pack' ),
|
2384 |
|
2385 |
+
// Reference: src/vue/components/common/core/AddRedirection.vue:231
|
2386 |
+
__( 'Redirect Type:', 'all-in-one-seo-pack' ),
|
2387 |
|
2388 |
+
// Reference: src/vue/pages/redirects/views/pro/Redirects.vue:263
|
2389 |
+
__( 'Target URL', 'all-in-one-seo-pack' ),
|
2390 |
|
2391 |
+
// Reference: src/vue/components/common/core/AddRedirection.vue:233
|
2392 |
+
__( 'Enter a URL or start by typing a page or post title, slug or ID.', 'all-in-one-seo-pack' ),
|
2393 |
|
2394 |
+
// Reference: src/vue/components/common/core/AddRedirection.vue:234
|
2395 |
+
__( 'Add URL', 'all-in-one-seo-pack' ),
|
2396 |
|
2397 |
+
// Reference: src/vue/components/common/core/AddRedirection.vue:236
|
2398 |
+
/* Translators: 1 - Oening link tag, 2 - Closing link tag. */
|
2399 |
+
__( 'Enter a relative URL to redirect from or start by typing in page or post title, slug or ID. You can also use regex (%1$s)', 'all-in-one-seo-pack' ),
|
|
|
2400 |
|
2401 |
+
// Reference: src/vue/components/common/core/AddRedirection.vue:236
|
2402 |
+
/* Translators: 1 - Oening link tag, 2 - Closing link tag. */
|
2403 |
+
__( 'what\'s this?', 'all-in-one-seo-pack' ),
|
|
|
2404 |
|
2405 |
+
// Reference: src/vue/components/common/core/AddRedirection.vue:238
|
2406 |
+
__( 'Query Parameters:', 'all-in-one-seo-pack' ),
|
|
|
|
|
2407 |
|
2408 |
+
// Reference: src/vue/components/common/core/AddRedirection.vue:241
|
2409 |
+
__( 'An error occurred while adding your redirects. Please try again later.', 'all-in-one-seo-pack' ),
|
2410 |
|
2411 |
+
// Reference: src/vue/components/common/core/AddRedirection.vue:269
|
2412 |
+
__( 'Source URL\'s', 'all-in-one-seo-pack' ),
|
2413 |
|
2414 |
+
// Reference: src/vue/pages/redirects/views/pro/Redirects.vue:259
|
2415 |
+
__( 'Source URL', 'all-in-one-seo-pack' ),
|
2416 |
|
2417 |
+
// Reference: src/vue/pages/redirects/views/pro/Logs404.vue:194
|
2418 |
+
__( 'Add Redirects', 'all-in-one-seo-pack' ),
|
2419 |
|
2420 |
+
// Reference: src/vue/pages/redirects/views/pro/Logs404.vue:198
|
2421 |
+
__( 'Add Redirect', 'all-in-one-seo-pack' ),
|
2422 |
|
2423 |
+
// Reference: src/vue/components/common/core/AddRedirection.vue:287
|
2424 |
+
/* Translators: 1 - Adds a html tag with an option like: <code>^</code>, 2 - Adds a html tag with an option like: <code>^</code>. */
|
2425 |
+
__( 'Your target URL should be an absolute URL like %1$s or start with a slash.', 'all-in-one-seo-pack' ),
|
2426 |
|
2427 |
+
// Reference: src/vue/components/common/core/AddRedirection.vue:296
|
2428 |
+
/* Translators: 1 - Adds a html tag with an option like: <code>^</code>. */
|
2429 |
+
__( 'Your target URL contains the invalid character(s) %1$s', 'all-in-one-seo-pack' ),
|
2430 |
|
2431 |
+
// Reference: src/vue/components/common/core/AddRedirection.vue:309
|
2432 |
+
__( 'Your URL appears to contain a domain inside the path: %1$s. Did you mean to use %2$s instead?', 'all-in-one-seo-pack' ),
|
2433 |
|
2434 |
+
// Reference: src/vue/components/common/core/AddRedirection.vue:405
|
2435 |
+
__( 'A redirect already exists for this source URL. To make changes, edit the original instead.', 'all-in-one-seo-pack' ),
|
2436 |
|
2437 |
+
// Reference: src/vue/components/common/core/AddRedirection.vue:447
|
2438 |
+
__( 'Moved Permanently', 'all-in-one-seo-pack' ),
|
2439 |
|
2440 |
+
// Reference: src/vue/components/common/core/AddRedirection.vue:462
|
2441 |
+
__( 'This is a duplicate of a URL you are already adding. You can only add unique source URL\'s.', 'all-in-one-seo-pack' ),
|
2442 |
|
2443 |
+
// Reference: src/vue/pages/tools/views/SystemStatus.vue:126
|
2444 |
+
__( 'Copied!', 'all-in-one-seo-pack' ),
|
2445 |
|
2446 |
+
// Reference: src/vue/components/common/core/CopyBlock.vue:48
|
2447 |
+
__( 'Click to Copy', 'all-in-one-seo-pack' ),
|
2448 |
|
2449 |
+
// Reference: src/vue/pages/redirects/views/pro/Settings.vue:374
|
2450 |
+
__( 'Ignore Slash', 'all-in-one-seo-pack' ),
|
2451 |
|
2452 |
+
// Reference: src/vue/pages/redirects/views/pro/Settings.vue:373
|
2453 |
+
__( 'Ignore Case', 'all-in-one-seo-pack' ),
|
2454 |
|
2455 |
+
// Reference: src/vue/components/common/core/AddRedirectionUrl.vue:196
|
2456 |
+
__( 'The regex syntax is invalid.', 'all-in-one-seo-pack' ),
|
2457 |
|
2458 |
+
// Reference: src/vue/components/common/core/AddRedirectionUrl.vue:202
|
2459 |
+
__( 'Please enter a valid relative source URL.', 'all-in-one-seo-pack' ),
|
2460 |
|
2461 |
+
// Reference: src/vue/components/common/core/AddRedirectionUrl.vue:206
|
2462 |
+
__( 'Permalinks are not currently supported.', 'all-in-one-seo-pack' ),
|
2463 |
|
2464 |
+
// Reference: src/vue/components/common/core/AddRedirectionUrl.vue:210
|
2465 |
+
__( 'This redirect is supported using the Relocate Site feature under Full Site Redirect tab.', 'all-in-one-seo-pack' ),
|
2466 |
|
2467 |
+
// Reference: src/vue/components/common/core/AddRedirectionUrl.vue:226
|
2468 |
+
__( 'Your source is the same as a target and this will create a loop.', 'all-in-one-seo-pack' ),
|
2469 |
|
2470 |
+
// Reference: src/vue/components/common/core/AddRedirectionUrl.vue:243
|
2471 |
+
__( 'Anchor values are not sent to the server and cannot be redirected.', 'all-in-one-seo-pack' ),
|
2472 |
|
2473 |
+
// Reference: src/vue/components/common/core/AddRedirectionUrl.vue:248
|
2474 |
+
/* Translators: 1 - Adds a html tag with an option like: <code>Regex</code> */
|
2475 |
+
__( 'Remember to enable the %1$s option if this is a regular expression.', 'all-in-one-seo-pack' ),
|
2476 |
|
2477 |
+
// Reference: src/vue/components/common/core/AddRedirectionUrl.vue:254
|
2478 |
+
/* Translators: 1 - Adds a html tag with an option like: <code>^</code>, 2 - Adds a html tag with an option like: <code>^</code>. */
|
2479 |
+
__( 'To prevent a greedy regular expression you can use %1$s to anchor it to the start of the URL. For example: %2$s', 'all-in-one-seo-pack' ),
|
2480 |
|
2481 |
+
// Reference: src/vue/components/common/core/AddRedirectionUrl.vue:259
|
2482 |
+
/* Translators: 1 - Adds a html tag with an option like: <code>^</code>, 2 - Adds a html tag with an option like: <code>^</code>. */
|
2483 |
+
__( 'The caret %1$s should be at the start. For example: %2$s', 'all-in-one-seo-pack' ),
|
2484 |
|
2485 |
+
// Reference: src/vue/components/common/core/AddRedirectionUrl.vue:264
|
2486 |
+
/* Translators: 1 - Adds a html tag with an option like: <code>^/</code> */
|
2487 |
+
__( 'The source URL should probably start with a %1$s', 'all-in-one-seo-pack' ),
|
2488 |
|
2489 |
+
// Reference: src/vue/components/common/core/AddRedirectionUrl.vue:269
|
2490 |
+
/* Translators: 1 - Adds a html tag with an option like: <code>^/</code> */
|
2491 |
+
__( 'The dollar symbol %1$s should be at the end. For example: %2$s', 'all-in-one-seo-pack' ),
|
2492 |
|
2493 |
+
// Reference: src/vue/components/common/core/AddRedirectionUrl.vue:275
|
2494 |
+
__( 'Some servers may be configured to serve file resources directly, preventing a redirect occurring.', 'all-in-one-seo-pack' ),
|
2495 |
|
2496 |
+
// Reference: src/vue/components/common/core/DisplayInfo.vue:112
|
2497 |
+
__( 'Shortcode', 'all-in-one-seo-pack' ),
|
2498 |
|
2499 |
+
// Reference: src/vue/components/common/core/DisplayInfo.vue:113
|
2500 |
+
__( 'Gutenberg Block', 'all-in-one-seo-pack' ),
|
2501 |
|
2502 |
+
// Reference: src/vue/components/common/core/DisplayInfo.vue:114
|
2503 |
+
__( 'PHP Code', 'all-in-one-seo-pack' ),
|
2504 |
|
2505 |
+
// Reference: src/vue/components/common/core/DisplayInfo.vue:115
|
2506 |
+
__( 'Widget', 'all-in-one-seo-pack' ),
|
2507 |
|
2508 |
+
// Reference: src/vue/components/common/core/DisplayInfo.vue:90
|
2509 |
+
__( 'Display Info', 'all-in-one-seo-pack' ),
|
|
|
|
|
2510 |
|
2511 |
+
// Reference: src/vue/classes/SiteAnalysis.js:102
|
2512 |
+
__( 'No keywords were found in the page title.', 'all-in-one-seo-pack' ),
|
2513 |
|
2514 |
+
// Reference: src/vue/classes/SiteAnalysis.js:105
|
2515 |
+
__( 'No keywords were found in your meta description.', 'all-in-one-seo-pack' ),
|
2516 |
|
2517 |
+
// Reference: src/vue/classes/SiteAnalysis.js:106
|
2518 |
+
__( 'No keywords were found in the meta description.', 'all-in-one-seo-pack' ),
|
2519 |
|
2520 |
+
// Reference: src/vue/classes/SiteAnalysis.js:108
|
2521 |
+
__( 'Both the page title and meta description are missing keywords.', 'all-in-one-seo-pack' ),
|
2522 |
|
2523 |
+
// Reference: src/vue/classes/SiteAnalysis.js:112
|
2524 |
+
__( 'One or more keywords were found in the title and description of your page.', 'all-in-one-seo-pack' ),
|
2525 |
|
2526 |
+
// Reference: src/vue/classes/SiteAnalysis.js:113
|
2527 |
+
__( 'One or more keywords were found in the title and description of the page.', 'all-in-one-seo-pack' ),
|
2528 |
|
2529 |
+
// Reference: src/vue/classes/SiteAnalysis.js:129
|
2530 |
+
__( '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' ),
|
2531 |
|
2532 |
+
// Reference: src/vue/classes/SiteAnalysis.js:130
|
2533 |
+
__( 'Edit Your Page Title & Description', 'all-in-one-seo-pack' ),
|
2534 |
|
2535 |
+
// Reference: src/vue/classes/SiteAnalysis.js:139
|
2536 |
+
__( 'No H1 tag was found.', 'all-in-one-seo-pack' ),
|
2537 |
|
2538 |
+
// Reference: src/vue/classes/SiteAnalysis.js:142
|
2539 |
+
/* Translators: 1 - The number of H1 tags found. */
|
2540 |
+
__( 'For the best SEO results there should be exactly one H1 tag on each page.', 'all-in-one-seo-pack' ),
|
2541 |
|
2542 |
+
// Reference: src/vue/classes/SiteAnalysis.js:142
|
2543 |
+
/* Translators: 1 - The number of H1 tags found. */
|
2544 |
+
__( '%1$d H1 tags were found.', 'all-in-one-seo-pack' ),
|
2545 |
|
2546 |
+
// Reference: src/vue/classes/SiteAnalysis.js:147
|
2547 |
+
__( 'One H1 tag was found on your page.', 'all-in-one-seo-pack' ),
|
2548 |
|
2549 |
+
// Reference: src/vue/classes/SiteAnalysis.js:148
|
2550 |
+
__( 'One H1 tag was found on the page.', 'all-in-one-seo-pack' ),
|
2551 |
|
2552 |
+
// Reference: src/vue/classes/SiteAnalysis.js:154
|
2553 |
+
__( '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' ),
|
|
|
2554 |
|
2555 |
+
// Reference: src/vue/classes/SiteAnalysis.js:154
|
2556 |
+
__( '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' ),
|
|
|
2557 |
|
2558 |
+
// Reference: src/vue/classes/SiteAnalysis.js:154
|
2559 |
+
__( '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' ),
|
2560 |
|
2561 |
+
// Reference: src/vue/classes/SiteAnalysis.js:154
|
2562 |
+
__( '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' ),
|
2563 |
|
2564 |
+
// Reference: src/vue/classes/SiteAnalysis.js:154
|
2565 |
+
__( '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' ),
|
2566 |
|
2567 |
+
// Reference: src/vue/classes/SiteAnalysis.js:165
|
2568 |
+
__( 'No H2 tags were found on your page.', 'all-in-one-seo-pack' ),
|
2569 |
|
2570 |
+
// Reference: src/vue/classes/SiteAnalysis.js:166
|
2571 |
+
__( 'No H2 tags were found on the page.', 'all-in-one-seo-pack' ),
|
2572 |
|
2573 |
+
// Reference: src/vue/classes/SiteAnalysis.js:170
|
2574 |
+
__( 'H2 tags were found on your page.', 'all-in-one-seo-pack' ),
|
2575 |
|
2576 |
+
// Reference: src/vue/classes/SiteAnalysis.js:171
|
2577 |
+
__( 'H2 tags were found on the page.', 'all-in-one-seo-pack' ),
|
2578 |
|
2579 |
+
// Reference: src/vue/classes/SiteAnalysis.js:177
|
2580 |
+
__( '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' ),
|
2581 |
|
2582 |
+
// Reference: src/vue/classes/SiteAnalysis.js:177
|
2583 |
+
__( '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' ),
|
2584 |
|
2585 |
+
// Reference: src/vue/classes/SiteAnalysis.js:177
|
2586 |
+
__( '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' ),
|
|
|
2587 |
|
2588 |
+
// Reference: src/vue/classes/SiteAnalysis.js:177
|
2589 |
+
__( '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' ),
|
2590 |
|
2591 |
+
// Reference: src/vue/classes/SiteAnalysis.js:188
|
2592 |
+
__( 'Some images on your page have no alt attribute.', 'all-in-one-seo-pack' ),
|
2593 |
|
2594 |
+
// Reference: src/vue/classes/SiteAnalysis.js:189
|
2595 |
+
__( 'Some images on the page have no alt attribute.', 'all-in-one-seo-pack' ),
|
2596 |
|
2597 |
+
// Reference: src/vue/classes/SiteAnalysis.js:193
|
2598 |
+
__( 'All images on your page have alt attributes.', 'all-in-one-seo-pack' ),
|
2599 |
|
2600 |
+
// Reference: src/vue/classes/SiteAnalysis.js:194
|
2601 |
+
__( 'All images on the page have alt attributes.', 'all-in-one-seo-pack' ),
|
2602 |
|
2603 |
+
// Reference: src/vue/classes/SiteAnalysis.js:200
|
2604 |
+
__( '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' ),
|
2605 |
|
2606 |
+
// Reference: src/vue/classes/SiteAnalysis.js:211
|
2607 |
+
__( 'No internal links were found on your page.', 'all-in-one-seo-pack' ),
|
2608 |
|
2609 |
+
// Reference: src/vue/classes/SiteAnalysis.js:212
|
2610 |
+
__( 'No internal links were found on the page.', 'all-in-one-seo-pack' ),
|
2611 |
|
2612 |
+
// Reference: src/vue/classes/SiteAnalysis.js:215
|
2613 |
+
__( 'Too few internal links on your page.', 'all-in-one-seo-pack' ),
|
2614 |
|
2615 |
+
// Reference: src/vue/classes/SiteAnalysis.js:216
|
2616 |
+
__( 'Too few internal links on the page.', 'all-in-one-seo-pack' ),
|
2617 |
|
2618 |
+
// Reference: src/vue/classes/SiteAnalysis.js:218
|
2619 |
+
__( 'The ratio of internal links to external links is uneven.', 'all-in-one-seo-pack' ),
|
2620 |
|
2621 |
+
// Reference: src/vue/classes/SiteAnalysis.js:222
|
2622 |
+
__( 'Your page has a correct number of internal and external links.', 'all-in-one-seo-pack' ),
|
2623 |
|
2624 |
+
// Reference: src/vue/classes/SiteAnalysis.js:223
|
2625 |
+
__( 'The page has a correct number of internal and external links.', 'all-in-one-seo-pack' ),
|
2626 |
|
2627 |
+
// Reference: src/vue/classes/SiteAnalysis.js:228
|
2628 |
+
__( 'Internal:', 'all-in-one-seo-pack' ),
|
2629 |
|
2630 |
+
// Reference: src/vue/classes/SiteAnalysis.js:228
|
2631 |
+
__( 'External:', 'all-in-one-seo-pack' ),
|
2632 |
|
2633 |
+
// Reference: src/vue/classes/SiteAnalysis.js:229
|
2634 |
+
__( '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' ),
|
2635 |
|
2636 |
+
// Reference: src/vue/classes/SiteAnalysis.js:229
|
2637 |
+
__( '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' ),
|
2638 |
|
2639 |
+
// Reference: src/vue/classes/SiteAnalysis.js:240
|
2640 |
+
__( 'No canonical link tag found on your page.', 'all-in-one-seo-pack' ),
|
2641 |
|
2642 |
+
// Reference: src/vue/classes/SiteAnalysis.js:241
|
2643 |
+
__( 'No canonical link tag found on the page.', 'all-in-one-seo-pack' ),
|
2644 |
|
2645 |
+
// Reference: src/vue/classes/SiteAnalysis.js:245
|
2646 |
+
__( 'Your page is using the canonical link tag.', 'all-in-one-seo-pack' ),
|
|
|
2647 |
|
2648 |
+
// Reference: src/vue/classes/SiteAnalysis.js:246
|
2649 |
+
__( 'The page is using the canonical link tag.', 'all-in-one-seo-pack' ),
|
2650 |
|
2651 |
+
// Reference: src/vue/classes/SiteAnalysis.js:252
|
2652 |
+
__( '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' ),
|
2653 |
|
2654 |
+
// Reference: src/vue/classes/SiteAnalysis.js:252
|
2655 |
+
__( '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' ),
|
2656 |
|
2657 |
+
// Reference: src/vue/classes/SiteAnalysis.js:263
|
2658 |
+
__( 'Your page contains a noindex header or meta tag.', 'all-in-one-seo-pack' ),
|
2659 |
|
2660 |
+
// Reference: src/vue/classes/SiteAnalysis.js:264
|
2661 |
+
__( 'The page contains a noindex header or meta tag.', 'all-in-one-seo-pack' ),
|
2662 |
|
2663 |
+
// Reference: src/vue/classes/SiteAnalysis.js:268
|
2664 |
+
__( 'Your page does not contain any noindex header or meta tag.', 'all-in-one-seo-pack' ),
|
|
|
2665 |
|
2666 |
+
// Reference: src/vue/classes/SiteAnalysis.js:269
|
2667 |
+
__( 'The page does not contain any noindex header or meta tag.', 'all-in-one-seo-pack' ),
|
2668 |
|
2669 |
+
// Reference: src/vue/classes/SiteAnalysis.js:274
|
2670 |
+
__( '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' ),
|
2671 |
|
2672 |
+
// Reference: src/vue/classes/SiteAnalysis.js:285
|
2673 |
+
__( 'The www and non-www versions of your URL are not redirected to the same site.', 'all-in-one-seo-pack' ),
|
|
|
2674 |
|
2675 |
+
// Reference: src/vue/classes/SiteAnalysis.js:286
|
2676 |
+
__( 'The www and non-www versions of the URL are not redirected to the same site.', 'all-in-one-seo-pack' ),
|
2677 |
|
2678 |
+
// Reference: src/vue/classes/SiteAnalysis.js:290
|
2679 |
+
__( 'Both the www and non-www versions of your URL are redirected to the same site.', 'all-in-one-seo-pack' ),
|
2680 |
|
2681 |
+
// Reference: src/vue/classes/SiteAnalysis.js:291
|
2682 |
+
__( 'Both the www and non-www versions of the URL are redirected to the same site.', 'all-in-one-seo-pack' ),
|
2683 |
|
2684 |
+
// Reference: src/vue/classes/SiteAnalysis.js:296
|
2685 |
+
__( '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' ),
|
2686 |
|
2687 |
+
// Reference: src/vue/classes/SiteAnalysis.js:296
|
2688 |
+
__( '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' ),
|
2689 |
|
2690 |
+
// Reference: src/vue/classes/SiteAnalysis.js:30
|
2691 |
+
__( 'We couldn\'t find an SEO Title.', 'all-in-one-seo-pack' ),
|
2692 |
|
2693 |
+
// Reference: src/vue/classes/SiteAnalysis.js:307
|
2694 |
+
__( 'Your robots.txt file is missing or unavailable.', 'all-in-one-seo-pack' ),
|
2695 |
|
2696 |
+
// Reference: src/vue/classes/SiteAnalysis.js:308
|
2697 |
+
__( 'The robots.txt file is missing or unavailable.', 'all-in-one-seo-pack' ),
|
2698 |
|
2699 |
+
// Reference: src/vue/classes/SiteAnalysis.js:327
|
2700 |
+
__( 'Your site has a robots.txt file which includes one or more "disallow" directives.', 'all-in-one-seo-pack' ),
|
2701 |
|
2702 |
+
// Reference: src/vue/classes/SiteAnalysis.js:328
|
2703 |
+
__( 'The site has a robots.txt file which includes one or more "disallow" directives.', 'all-in-one-seo-pack' ),
|
2704 |
|
2705 |
+
// Reference: src/vue/classes/SiteAnalysis.js:332
|
2706 |
+
__( 'Your site has a robots.txt file.', 'all-in-one-seo-pack' ),
|
2707 |
|
2708 |
+
// Reference: src/vue/classes/SiteAnalysis.js:333
|
2709 |
+
__( 'The site has a robots.txt file.', 'all-in-one-seo-pack' ),
|
|
|
2710 |
|
2711 |
+
// Reference: src/vue/classes/SiteAnalysis.js:34
|
2712 |
+
/* Translators: 1 - The length of the SEO title as a number. */
|
2713 |
+
__( 'Your SEO title is only %1$d characters long, which is too short.', 'all-in-one-seo-pack' ),
|
2714 |
|
2715 |
+
// Reference: src/vue/classes/SiteAnalysis.js:340
|
2716 |
+
/* Translators: 1 - The Plugin short name ("AIOSEO"). */
|
2717 |
+
__( 'Make sure that you only block parts you don\'t want to be indexed.', 'all-in-one-seo-pack' ),
|
2718 |
|
2719 |
+
// Reference: src/vue/classes/SiteAnalysis.js:340
|
2720 |
+
/* Translators: 1 - The Plugin short name ("AIOSEO"). */
|
2721 |
+
__( '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' ),
|
2722 |
|
2723 |
+
// Reference: src/vue/classes/SiteAnalysis.js:340
|
2724 |
+
/* Translators: 1 - The Plugin short name ("AIOSEO"). */
|
2725 |
+
__( '%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' ),
|
2726 |
|
2727 |
+
// Reference: src/vue/classes/SiteAnalysis.js:350
|
2728 |
+
__( 'Some Open Graph meta tags are missing.', 'all-in-one-seo-pack' ),
|
|
|
2729 |
|
2730 |
+
// Reference: src/vue/classes/SiteAnalysis.js:352
|
2731 |
+
__( 'Duplicate Open Graph meta tags were found.', 'all-in-one-seo-pack' ),
|
|
|
2732 |
|
2733 |
+
// Reference: src/vue/classes/SiteAnalysis.js:355
|
2734 |
+
__( 'All the required Open Graph meta tags have been found.', 'all-in-one-seo-pack' ),
|
|
|
2735 |
|
2736 |
+
// Reference: src/vue/classes/SiteAnalysis.js:36
|
2737 |
+
/* Translators: 1 - The length of the SEO title as a number. */
|
2738 |
+
__( 'The SEO title is only %1$d characters long, which is too short.', 'all-in-one-seo-pack' ),
|
2739 |
|
2740 |
+
// Reference: src/vue/classes/SiteAnalysis.js:362
|
2741 |
+
/* Translators: 1 - The Plugin short name ("AIOSEO"). */
|
2742 |
+
__( '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' ),
|
2743 |
|
2744 |
+
// Reference: src/vue/classes/SiteAnalysis.js:362
|
2745 |
+
/* Translators: 1 - The Plugin short name ("AIOSEO"). */
|
2746 |
+
__( '%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' ),
|
2747 |
|
2748 |
+
// Reference: src/vue/classes/SiteAnalysis.js:373
|
2749 |
+
__( 'No Schema.org data was found on your page.', 'all-in-one-seo-pack' ),
|
|
|
2750 |
|
2751 |
+
// Reference: src/vue/classes/SiteAnalysis.js:374
|
2752 |
+
__( 'No Schema.org data was found on the page.', 'all-in-one-seo-pack' ),
|
2753 |
|
2754 |
+
// Reference: src/vue/classes/SiteAnalysis.js:378
|
2755 |
+
__( 'We found Schema.org data on your page.', 'all-in-one-seo-pack' ),
|
2756 |
|
2757 |
+
// Reference: src/vue/classes/SiteAnalysis.js:379
|
2758 |
+
__( 'We found Schema.org data on the page.', 'all-in-one-seo-pack' ),
|
2759 |
|
2760 |
+
// Reference: src/vue/classes/SiteAnalysis.js:385
|
2761 |
+
/* Translators: 1 - The Plugin short name ("AIOSEO"). */
|
2762 |
+
__( '%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' ),
|
2763 |
|
2764 |
+
// Reference: src/vue/classes/SiteAnalysis.js:386
|
2765 |
+
__( 'Edit Your Page', 'all-in-one-seo-pack' ),
|
|
|
2766 |
|
2767 |
+
// Reference: src/vue/classes/SiteAnalysis.js:396
|
2768 |
+
__( 'Your server is not using "expires" headers for your images.', 'all-in-one-seo-pack' ),
|
2769 |
|
2770 |
+
// Reference: src/vue/classes/SiteAnalysis.js:397
|
2771 |
+
__( 'The server is not using "expires" headers for the images.', 'all-in-one-seo-pack' ),
|
2772 |
|
2773 |
+
// Reference: src/vue/classes/SiteAnalysis.js:40
|
2774 |
+
/* Translators: 1 - The length of the SEO title as a number. */
|
2775 |
+
__( 'Your SEO title is %1$d characters long, which is too long.', 'all-in-one-seo-pack' ),
|
2776 |
|
2777 |
+
// Reference: src/vue/classes/SiteAnalysis.js:401
|
2778 |
+
__( 'Your server is using "expires" headers for your images.', 'all-in-one-seo-pack' ),
|
2779 |
|
2780 |
+
// Reference: src/vue/classes/SiteAnalysis.js:402
|
2781 |
+
__( 'The server is using "expires" headers for the images.', 'all-in-one-seo-pack' ),
|
2782 |
|
2783 |
+
// Reference: src/vue/classes/SiteAnalysis.js:407
|
2784 |
+
__( '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' ),
|
2785 |
|
2786 |
+
// Reference: src/vue/classes/SiteAnalysis.js:407
|
2787 |
+
__( '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' ),
|
2788 |
|
2789 |
+
// Reference: src/vue/classes/SiteAnalysis.js:415
|
2790 |
+
__( 'Some Javascript files don\'t seem to be minified.', 'all-in-one-seo-pack' ),
|
2791 |
|
2792 |
+
// Reference: src/vue/classes/SiteAnalysis.js:418
|
2793 |
+
__( 'All Javascript files appear to be minified.', 'all-in-one-seo-pack' ),
|
2794 |
|
2795 |
+
// Reference: src/vue/classes/SiteAnalysis.js:42
|
2796 |
+
/* Translators: 1 - The length of the SEO title as a number. */
|
2797 |
+
__( 'The SEO title is %1$d characters long, which is too long.', 'all-in-one-seo-pack' ),
|
2798 |
|
2799 |
+
// Reference: src/vue/classes/SiteAnalysis.js:424
|
2800 |
+
__( 'JavaScript files appear in many places, including frameworks (like Bootstrap), themes and templates, and third-party plugins.', 'all-in-one-seo-pack' ),
|
2801 |
|
2802 |
+
// Reference: src/vue/classes/SiteAnalysis.js:424
|
2803 |
+
__( 'We recommend tracking down where the un-minified JavaScript files come from', 'all-in-one-seo-pack' ),
|
2804 |
|
2805 |
+
// Reference: src/vue/classes/SiteAnalysis.js:424
|
2806 |
+
__( 'There are server-side tools (including WordPress plugins) to automatically minify JavaScript files.', 'all-in-one-seo-pack' ),
|
2807 |
|
2808 |
+
// Reference: src/vue/classes/SiteAnalysis.js:432
|
2809 |
+
__( 'Some CSS files don\'t seem to be minified.', 'all-in-one-seo-pack' ),
|
2810 |
|
2811 |
+
// Reference: src/vue/classes/SiteAnalysis.js:435
|
2812 |
+
__( 'All CSS files appear to be minified.', 'all-in-one-seo-pack' ),
|
2813 |
|
2814 |
+
// Reference: src/vue/classes/SiteAnalysis.js:441
|
2815 |
+
__( 'CSS files appear in many places, including frameworks (like Bootstrap), themes and templates, and third-party plugins.', 'all-in-one-seo-pack' ),
|
2816 |
|
2817 |
+
// Reference: src/vue/classes/SiteAnalysis.js:441
|
2818 |
+
__( 'We recommend tracking down where the un-minified CSS files come from.', 'all-in-one-seo-pack' ),
|
2819 |
|
2820 |
+
// Reference: src/vue/classes/SiteAnalysis.js:441
|
2821 |
+
__( 'There are server-side tools (including WordPress plugins) to automatically minify CSS files.', 'all-in-one-seo-pack' ),
|
2822 |
|
2823 |
+
// Reference: src/vue/classes/SiteAnalysis.js:450
|
2824 |
+
/* Translators: 1 - The total number of page requests. */
|
2825 |
+
__( 'Your page makes %1$d requests.', 'all-in-one-seo-pack' ),
|
2826 |
|
2827 |
+
// Reference: src/vue/classes/SiteAnalysis.js:452
|
2828 |
+
/* Translators: 1 - The total number of page requests. */
|
2829 |
+
__( 'The page makes %1$d requests.', 'all-in-one-seo-pack' ),
|
2830 |
|
2831 |
+
// Reference: src/vue/classes/SiteAnalysis.js:454
|
2832 |
+
__( 'More than 20 requests can result in slow page loading.', 'all-in-one-seo-pack' ),
|
2833 |
|
2834 |
+
// Reference: src/vue/classes/SiteAnalysis.js:462
|
2835 |
+
__( 'Images:', 'all-in-one-seo-pack' ),
|
2836 |
|
2837 |
+
// Reference: src/vue/classes/SiteAnalysis.js:462
|
2838 |
+
__( 'JavaScript:', 'all-in-one-seo-pack' ),
|
2839 |
|
2840 |
+
// Reference: src/vue/classes/SiteAnalysis.js:462
|
2841 |
+
__( 'CSS:', 'all-in-one-seo-pack' ),
|
2842 |
|
2843 |
+
// Reference: src/vue/classes/SiteAnalysis.js:463
|
2844 |
+
__( 'Try to replace embedded objects with HTML5 alternatives.', 'all-in-one-seo-pack' ),
|
2845 |
|
2846 |
+
// Reference: src/vue/classes/SiteAnalysis.js:47
|
2847 |
+
/* Translators: 1 - The length of the SEO title as a number. */
|
2848 |
+
__( 'Your SEO title is set and is %1$d characters long.', 'all-in-one-seo-pack' ),
|
2849 |
|
2850 |
+
// Reference: src/vue/classes/SiteAnalysis.js:471
|
2851 |
+
/* Translators: 1 - The total number of page requests. */
|
2852 |
+
__( 'The size of the HTML document is %1$d Kb.', 'all-in-one-seo-pack' ),
|
2853 |
|
2854 |
+
// Reference: src/vue/classes/SiteAnalysis.js:473
|
2855 |
+
__( 'This is over our recommendation of 50 Kb.', 'all-in-one-seo-pack' ),
|
2856 |
|
2857 |
+
// Reference: src/vue/classes/SiteAnalysis.js:477
|
2858 |
+
__( 'This is under the average of 33 Kb.', 'all-in-one-seo-pack' ),
|
2859 |
|
2860 |
+
// Reference: src/vue/classes/SiteAnalysis.js:485
|
2861 |
+
__( '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' ),
|
2862 |
|
2863 |
+
// Reference: src/vue/classes/SiteAnalysis.js:485
|
2864 |
+
__( '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' ),
|
2865 |
|
2866 |
+
// Reference: src/vue/classes/SiteAnalysis.js:485
|
2867 |
+
__( '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' ),
|
2868 |
|
2869 |
+
// Reference: src/vue/classes/SiteAnalysis.js:485
|
2870 |
+
__( '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' ),
|
2871 |
|
2872 |
+
// Reference: src/vue/classes/SiteAnalysis.js:49
|
2873 |
+
/* Translators: 1 - The length of the SEO title as a number. */
|
2874 |
+
__( 'The SEO title is set and is %1$d characters long.', 'all-in-one-seo-pack' ),
|
2875 |
|
2876 |
+
// Reference: src/vue/classes/SiteAnalysis.js:495
|
2877 |
+
/* Translators: 1 - The total number of page requests. */
|
2878 |
+
__( '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' ),
|
2879 |
|
2880 |
+
// Reference: src/vue/classes/SiteAnalysis.js:497
|
2881 |
+
/* Translators: 1 - The total number of page requests. */
|
2882 |
+
__( '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' ),
|
2883 |
|
2884 |
+
// Reference: src/vue/classes/SiteAnalysis.js:501
|
2885 |
+
__( 'Your response time is under 0.2 seconds.', 'all-in-one-seo-pack' ),
|
|
|
2886 |
|
2887 |
+
// Reference: src/vue/classes/SiteAnalysis.js:502
|
2888 |
+
__( 'The response time is under 0.2 seconds.', 'all-in-one-seo-pack' ),
|
2889 |
|
2890 |
+
// Reference: src/vue/classes/SiteAnalysis.js:507
|
2891 |
+
__( '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' ),
|
2892 |
|
2893 |
+
// Reference: src/vue/classes/SiteAnalysis.js:507
|
2894 |
+
__( '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' ),
|
2895 |
|
2896 |
+
// Reference: src/vue/classes/SiteAnalysis.js:516
|
2897 |
+
__( 'Plugins from your website are publicly visible.', 'all-in-one-seo-pack' ),
|
2898 |
|
2899 |
+
// Reference: src/vue/classes/SiteAnalysis.js:517
|
2900 |
+
__( 'Plugins from the website are publicly visible.', 'all-in-one-seo-pack' ),
|
2901 |
|
2902 |
+
// Reference: src/vue/classes/SiteAnalysis.js:521
|
2903 |
+
__( 'You have no visible plugins!', 'all-in-one-seo-pack' ),
|
2904 |
|
2905 |
+
// Reference: src/vue/classes/SiteAnalysis.js:522
|
2906 |
+
__( 'There are no visible plugins.', 'all-in-one-seo-pack' ),
|
2907 |
|
2908 |
+
// Reference: src/vue/classes/SiteAnalysis.js:528
|
2909 |
+
__( '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' ),
|
2910 |
|
2911 |
+
// Reference: src/vue/classes/SiteAnalysis.js:538
|
2912 |
+
/* Translators: 1 - The name of the theme. */
|
2913 |
+
__( 'Anyone can see that you are using the %1$s theme.', 'all-in-one-seo-pack' ),
|
2914 |
|
2915 |
+
// Reference: src/vue/classes/SiteAnalysis.js:540
|
2916 |
+
/* Translators: 1 - The name of the theme. */
|
2917 |
+
__( 'Anyone can see that they are using the %1$s theme.', 'all-in-one-seo-pack' ),
|
2918 |
|
2919 |
+
// Reference: src/vue/classes/SiteAnalysis.js:544
|
2920 |
+
__( 'Your theme is not visible!', 'all-in-one-seo-pack' ),
|
2921 |
|
2922 |
+
// Reference: src/vue/classes/SiteAnalysis.js:545
|
2923 |
+
__( 'The theme is not visible.', 'all-in-one-seo-pack' ),
|
2924 |
|
2925 |
+
// Reference: src/vue/classes/SiteAnalysis.js:55
|
2926 |
+
__( 'Ensure your page\'s title includes your target keywords, and design it to encourage users to click.', 'all-in-one-seo-pack' ),
|
2927 |
|
2928 |
+
// Reference: src/vue/classes/SiteAnalysis.js:55
|
2929 |
+
__( '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' ),
|
2930 |
|
2931 |
+
// Reference: src/vue/classes/SiteAnalysis.js:550
|
2932 |
+
__( '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' ),
|
2933 |
|
2934 |
+
// Reference: src/vue/classes/SiteAnalysis.js:559
|
2935 |
+
__( 'Directory Listing seems to be enabled on your server.', 'all-in-one-seo-pack' ),
|
2936 |
|
2937 |
+
// Reference: src/vue/classes/SiteAnalysis.js:56
|
2938 |
+
__( 'Edit Your Page Title', 'all-in-one-seo-pack' ),
|
2939 |
|
2940 |
+
// Reference: src/vue/classes/SiteAnalysis.js:560
|
2941 |
+
__( 'Directory Listing seems to be enabled on the server.', 'all-in-one-seo-pack' ),
|
2942 |
|
2943 |
+
// Reference: src/vue/classes/SiteAnalysis.js:564
|
2944 |
+
__( 'Directory Listing seems to be disabled on your server.', 'all-in-one-seo-pack' ),
|
2945 |
|
2946 |
+
// Reference: src/vue/classes/SiteAnalysis.js:565
|
2947 |
+
__( 'Directory Listing seems to be disabled on the server.', 'all-in-one-seo-pack' ),
|
2948 |
|
2949 |
+
// Reference: src/vue/classes/SiteAnalysis.js:570
|
2950 |
+
__( 'Fortunately, every popular web server has options to prevent directory listings. They\'ll show a "403 forbidden" message instead.', 'all-in-one-seo-pack' ),
|
2951 |
|
2952 |
+
// Reference: src/vue/classes/SiteAnalysis.js:570
|
2953 |
+
__( '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' ),
|
2954 |
|
2955 |
+
// Reference: src/vue/classes/SiteAnalysis.js:579
|
2956 |
+
__( 'It looks like your site has been added to one of Google\'s malwares lists.', 'all-in-one-seo-pack' ),
|
2957 |
|
2958 |
+
// Reference: src/vue/classes/SiteAnalysis.js:580
|
2959 |
+
__( 'It looks like this site has been added to one of Google\'s malwares lists.', 'all-in-one-seo-pack' ),
|
2960 |
|
2961 |
+
// Reference: src/vue/classes/SiteAnalysis.js:584
|
2962 |
+
__( 'Google has not flagged your site for malware!', 'all-in-one-seo-pack' ),
|
2963 |
|
2964 |
+
// Reference: src/vue/classes/SiteAnalysis.js:585
|
2965 |
+
__( 'Google has not flagged this site for malware.', 'all-in-one-seo-pack' ),
|
|
|
2966 |
|
2967 |
+
// Reference: src/vue/classes/SiteAnalysis.js:590
|
2968 |
+
__( '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' ),
|
2969 |
|
2970 |
+
// Reference: src/vue/classes/SiteAnalysis.js:599
|
2971 |
+
__( 'Your site is not using a secure transfer protocol (https).', 'all-in-one-seo-pack' ),
|
2972 |
|
2973 |
+
// Reference: src/vue/classes/SiteAnalysis.js:600
|
2974 |
+
__( 'The site is not using a secure transfer protocol (https).', 'all-in-one-seo-pack' ),
|
|
|
2975 |
|
2976 |
+
// Reference: src/vue/classes/SiteAnalysis.js:604
|
2977 |
+
__( 'Your site is using a secure transfer protocol (https).', 'all-in-one-seo-pack' ),
|
2978 |
|
2979 |
+
// Reference: src/vue/classes/SiteAnalysis.js:605
|
2980 |
+
__( 'The site is using a secure transfer protocol (https).', 'all-in-one-seo-pack' ),
|
2981 |
|
2982 |
+
// Reference: src/vue/classes/SiteAnalysis.js:610
|
2983 |
+
__( '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' ),
|
|
|
2984 |
|
2985 |
+
// Reference: src/vue/classes/SiteAnalysis.js:66
|
2986 |
+
__( 'No meta description was found for your page.', 'all-in-one-seo-pack' ),
|
|
|
2987 |
|
2988 |
+
// Reference: src/vue/classes/SiteAnalysis.js:67
|
2989 |
+
__( 'No meta description was found for the page.', 'all-in-one-seo-pack' ),
|
2990 |
|
2991 |
+
// Reference: src/vue/classes/SiteAnalysis.js:71
|
2992 |
+
/* Translators: 1 - The length of the meta description as a number. */
|
2993 |
+
__( 'Your meta description is only %1$d characters long, which is too short.', 'all-in-one-seo-pack' ),
|
2994 |
|
2995 |
+
// Reference: src/vue/classes/SiteAnalysis.js:73
|
2996 |
+
/* Translators: 1 - The length of the meta description as a number. */
|
2997 |
+
__( 'The meta description is only %1$d characters long, which is too short.', 'all-in-one-seo-pack' ),
|
2998 |
|
2999 |
+
// Reference: src/vue/classes/SiteAnalysis.js:77
|
3000 |
+
/* Translators: 1 - The length of the meta description as a number. */
|
3001 |
+
__( 'Your meta description is %1$d characters long, which is too long.', 'all-in-one-seo-pack' ),
|
3002 |
|
3003 |
+
// Reference: src/vue/classes/SiteAnalysis.js:79
|
3004 |
+
/* Translators: 1 - The length of the meta description as a number. */
|
3005 |
+
__( 'The meta description is %1$d characters long, which is too long.', 'all-in-one-seo-pack' ),
|
3006 |
|
3007 |
+
// Reference: src/vue/classes/SiteAnalysis.js:84
|
3008 |
+
/* Translators: 1 - The length of the meta description as a number. */
|
3009 |
+
__( 'Your meta description is set and is %1$d characters long.', 'all-in-one-seo-pack' ),
|
3010 |
|
3011 |
+
// Reference: src/vue/classes/SiteAnalysis.js:86
|
3012 |
+
/* Translators: 1 - The length of the meta description as a number. */
|
3013 |
+
__( 'The meta description is set and is %1$d characters long.', 'all-in-one-seo-pack' ),
|
3014 |
|
3015 |
+
// Reference: src/vue/classes/SiteAnalysis.js:92
|
3016 |
+
__( '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' ),
|
|
|
3017 |
|
3018 |
+
// Reference: src/vue/classes/SiteAnalysis.js:92
|
3019 |
+
__( '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' ),
|
|
|
3020 |
|
3021 |
+
// Reference: src/vue/classes/SiteAnalysis.js:93
|
3022 |
+
__( 'Edit Your Meta Description', 'all-in-one-seo-pack' ),
|
3023 |
|
3024 |
+
// Reference: src/vue/components/common/base/WpBulkActions.vue:35
|
3025 |
+
__( 'Bulk Actions', 'all-in-one-seo-pack' ),
|
|
|
3026 |
|
3027 |
+
// Reference: src/vue/components/common/base/WpBulkActions.vue:36
|
3028 |
+
__( 'Apply', 'all-in-one-seo-pack' ),
|
|
|
3029 |
|
3030 |
+
// Reference: src/vue/components/common/base/WpTable.vue:336
|
3031 |
+
__( 'of', 'all-in-one-seo-pack' ),
|
3032 |
|
3033 |
+
// Reference: src/vue/components/common/base/WpTable.vue:337
|
3034 |
+
__( 'items', 'all-in-one-seo-pack' ),
|
|
|
3035 |
|
3036 |
+
// Reference: src/vue/components/common/base/WpTable.vue:338
|
3037 |
+
__( 'No items found', 'all-in-one-seo-pack' ),
|
|
|
3038 |
|
3039 |
+
// Reference: src/vue/components/lite/local-business/Urls.vue:32
|
3040 |
+
// Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:129
|
3041 |
+
__( 'Website URL:', 'all-in-one-seo-pack' ),
|
3042 |
|
3043 |
+
// Reference: src/vue/components/lite/local-business/Urls.vue:33
|
3044 |
+
// Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:130
|
3045 |
+
__( 'About Page URL:', 'all-in-one-seo-pack' ),
|
3046 |
|
3047 |
+
// Reference: src/vue/components/lite/local-business/Urls.vue:34
|
3048 |
+
// Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:131
|
3049 |
+
__( 'Contact Page URL:', 'all-in-one-seo-pack' ),
|
3050 |
|
3051 |
+
// Reference: src/vue/components/lite/core/UpgradeBar.vue:22
|
3052 |
+
/* Translators: 1 - "Pro". */
|
3053 |
+
__( 'upgrading to %1$s', 'all-in-one-seo-pack' ),
|
3054 |
|
3055 |
+
// Reference: src/vue/pages/settings/views/GeneralSettings.vue:57
|
3056 |
+
/* Translators: This refers to a discount ("As a valued user you receive 50%, automatically applied at checkout!"). */
|
3057 |
+
__( 'off', 'all-in-one-seo-pack' ),
|
3058 |
|
3059 |
+
// Reference: src/vue/components/lite/settings/LicenseKey.vue:58
|
3060 |
+
// Reference: src/vue/pages/setup-wizard/router/paths.js:82
|
3061 |
+
__( 'License Key', 'all-in-one-seo-pack' ),
|
3062 |
|
3063 |
+
// Reference: src/vue/components/lite/settings/LicenseKey.vue:59
|
3064 |
+
__( 'Your license key provides access to updates and addons.', 'all-in-one-seo-pack' ),
|
3065 |
|
3066 |
+
// Reference: src/vue/components/lite/settings/LicenseKey.vue:60
|
3067 |
+
__( 'Paste your license key here', 'all-in-one-seo-pack' ),
|
|
|
3068 |
|
3069 |
+
// Reference: src/vue/components/lite/settings/LicenseKey.vue:61
|
3070 |
+
__( 'Connect', 'all-in-one-seo-pack' ),
|
3071 |
|
3072 |
+
// Reference: src/vue/pages/settings/views/GeneralSettings.vue:73
|
3073 |
+
/* Translators: 1 - "upgrading to Pro". */
|
3074 |
+
__( 'To unlock more features, consider %1$s.', 'all-in-one-seo-pack' ),
|
3075 |
|
3076 |
+
// Reference: src/vue/pages/settings/views/GeneralSettings.vue:77
|
3077 |
+
/* Translators: 1 - "50% off". */
|
3078 |
+
__( 'As a valued user you receive %1$s, automatically applied at checkout!', 'all-in-one-seo-pack' ),
|
3079 |
|
3080 |
+
// Reference: src/vue/components/lite/settings/LicenseKey.vue:80
|
3081 |
+
/* Translators: 1 - The plugin name ("All in One SEO"). */
|
3082 |
+
__( 'You\'re using %1$s - no license needed. Enjoy!', 'all-in-one-seo-pack' ),
|
3083 |
|
3084 |
+
// Reference: src/vue/components/lite/settings/LicenseKey.vue:84
|
3085 |
+
/* Translators: 1 - The plugin name ("All in One SEO"). */
|
3086 |
+
__( 'Already purchased? Simply enter your license key below to connect with %1$s!', 'all-in-one-seo-pack' ),
|
3087 |
|
3088 |
+
// Reference: src/vue/components/lite/local-business/PaymentInfo.vue:37
|
3089 |
+
__( 'Price Indicator:', 'all-in-one-seo-pack' ),
|
|
|
3090 |
|
3091 |
+
// Reference: src/vue/components/lite/local-business/PaymentInfo.vue:38
|
3092 |
+
__( 'Currencies Accepted:', 'all-in-one-seo-pack' ),
|
3093 |
|
3094 |
+
// Reference: src/vue/components/lite/local-business/PaymentInfo.vue:39
|
3095 |
+
__( 'Payment Methods Accepted:', 'all-in-one-seo-pack' ),
|
|
|
3096 |
|
3097 |
+
// Reference: src/vue/components/lite/local-business/BusinessIds.vue:25
|
3098 |
+
__( 'VAT ID:', 'all-in-one-seo-pack' ),
|
3099 |
|
3100 |
+
// Reference: src/vue/components/lite/local-business/BusinessIds.vue:26
|
3101 |
+
__( 'Tax ID:', 'all-in-one-seo-pack' ),
|
|
|
3102 |
|
3103 |
+
// Reference: src/vue/components/lite/core/UpgradeBar.vue:19
|
3104 |
+
__( 'Free', 'all-in-one-seo-pack' ),
|
3105 |
|
3106 |
+
// Reference: src/vue/components/lite/core/UpgradeBar.vue:32
|
3107 |
+
/* Translators: 1 - The plugin name ("All in One SEO"), 2 - "upgrading to Pro". */
|
3108 |
+
__( 'You\'re using %1$s. To unlock more features, consider %2$s', 'all-in-one-seo-pack' ),
|
3109 |
|
3110 |
+
// Reference: src/vue/components/lite/local-business/BusinessAddress.vue:55
|
3111 |
+
__( 'Address Line 1', 'all-in-one-seo-pack' ),
|
3112 |
|
3113 |
+
// Reference: src/vue/components/lite/local-business/BusinessAddress.vue:56
|
3114 |
+
__( 'Address Line 2', 'all-in-one-seo-pack' ),
|
|
|
3115 |
|
3116 |
+
// Reference: src/vue/components/lite/local-business/BusinessAddress.vue:57
|
3117 |
+
__( 'Zip code:', 'all-in-one-seo-pack' ),
|
3118 |
|
3119 |
+
// Reference: src/vue/components/lite/local-business/BusinessAddress.vue:58
|
3120 |
+
__( 'City:', 'all-in-one-seo-pack' ),
|
|
|
3121 |
|
3122 |
+
// Reference: src/vue/components/lite/local-business/BusinessAddress.vue:59
|
3123 |
+
__( 'State:', 'all-in-one-seo-pack' ),
|
3124 |
|
3125 |
+
// Reference: src/vue/components/lite/local-business/BusinessAddress.vue:60
|
3126 |
+
__( 'Country:', 'all-in-one-seo-pack' ),
|
3127 |
|
3128 |
+
// Reference: src/vue/components/lite/local-business/AreaServed.vue:16
|
3129 |
+
__( 'The geographic area where a service or offered item is provided.', 'all-in-one-seo-pack' ),
|
3130 |
|
3131 |
+
// Reference: src/vue/components/lite/local-business/BusinessContact.vue:28
|
3132 |
+
__( 'Email address:', 'all-in-one-seo-pack' ),
|
3133 |
|
3134 |
+
// Reference: src/vue/components/lite/local-business/BusinessContact.vue:29
|
3135 |
+
__( 'Phone number:', 'all-in-one-seo-pack' ),
|
3136 |
|
3137 |
+
// Reference: src/vue/components/lite/local-business/BusinessContact.vue:30
|
3138 |
+
__( 'Fax number:', 'all-in-one-seo-pack' ),
|
3139 |
|
3140 |
+
// Reference: src/vue/components/lite/local-business/Name.vue:16
|
3141 |
+
// Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:120
|
3142 |
+
__( 'name', 'all-in-one-seo-pack' ),
|
3143 |
|
3144 |
+
// Reference: src/vue/components/lite/local-business/Name.vue:17
|
3145 |
+
// Reference: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:121
|
3146 |
+
__( 'Your name or company name.', 'all-in-one-seo-pack' ),
|
3147 |
|
3148 |
+
// Reference: src/vue/components/common/base/WpAdditionalFilters.vue:46
|
3149 |
+
__( 'Filter', 'all-in-one-seo-pack' ),
|
3150 |
|
3151 |
+
// Reference: src/vue/components/common/base/Editor.vue:122
|
3152 |
+
__( 'Search for an item...', 'all-in-one-seo-pack' ),
|
3153 |
|
3154 |
+
// Reference: src/vue/components/common/base/Editor.vue:123
|
3155 |
+
__( 'Enter a custom field name...', 'all-in-one-seo-pack' ),
|
|
|
3156 |
|
3157 |
+
// Reference: src/vue/pages/about/views/Main.vue:23
|
3158 |
+
__( 'About', 'all-in-one-seo-pack' ),
|
3159 |
|
3160 |
+
// Reference: src/vue/pages/about/views/GettingStarted.vue:130
|
3161 |
+
/* Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro" string. */
|
3162 |
+
__( 'Get %1$s %2$s and Unlock all the Powerful Features', 'all-in-one-seo-pack' ),
|
3163 |
|
3164 |
+
// Reference: src/vue/pages/about/views/GettingStarted.vue:132
|
3165 |
+
/* Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro" string. */
|
3166 |
+
__( 'Get %1$s %2$s and Unlock all the Powerful Features.', 'all-in-one-seo-pack' ),
|
3167 |
|
3168 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:202
|
3169 |
+
__( 'Smart Schema', 'all-in-one-seo-pack' ),
|
3170 |
|
3171 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:204
|
3172 |
+
__( 'Advanced support for e-commerce', 'all-in-one-seo-pack' ),
|
3173 |
|
3174 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:206
|
3175 |
+
__( 'Video SEO Module', 'all-in-one-seo-pack' ),
|
3176 |
|
3177 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:208
|
3178 |
+
__( 'SEO for Categories, Tags and Custom Taxonomies', 'all-in-one-seo-pack' ),
|
3179 |
|
3180 |
+
// Reference: src/vue/pages/about/views/GettingStarted.vue:141
|
3181 |
+
__( 'Social Meta for Categories, Tags and Custom Taxonomies', 'all-in-one-seo-pack' ),
|
3182 |
|
3183 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:205
|
3184 |
+
__( 'Advanced Google Analytics tracking', 'all-in-one-seo-pack' ),
|
3185 |
|
3186 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:207
|
3187 |
+
__( 'Greater control over display settings', 'all-in-one-seo-pack' ),
|
3188 |
|
3189 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:210
|
3190 |
+
__( 'Ad free (no banner adverts)', 'all-in-one-seo-pack' ),
|
3191 |
|
3192 |
+
// Reference: src/vue/pages/about/views/GettingStarted.vue:148
|
3193 |
+
__( 'Video Tutorials', 'all-in-one-seo-pack' ),
|
3194 |
|
3195 |
+
// Reference: src/vue/pages/about/views/GettingStarted.vue:149
|
3196 |
+
__( 'View all video tutorials', 'all-in-one-seo-pack' ),
|
3197 |
|
3198 |
+
// Reference: src/vue/pages/about/views/GettingStarted.vue:154
|
3199 |
+
/* Translators: 1 - The plugin short name ("AIOSEO"). */
|
3200 |
+
__( '%1$s Documentation', 'all-in-one-seo-pack' ),
|
3201 |
|
3202 |
+
// Reference: src/vue/pages/about/views/GettingStarted.vue:155
|
3203 |
+
__( 'See our full documentation', 'all-in-one-seo-pack' ),
|
3204 |
|
3205 |
+
// Reference: src/vue/pages/about/views/GettingStarted.vue:161
|
3206 |
+
__( 'Basic Guide to Google Analytics', 'all-in-one-seo-pack' ),
|
3207 |
|
3208 |
+
// Reference: src/vue/pages/about/views/GettingStarted.vue:165
|
3209 |
+
__( 'Basic Guide to Google Search Console', 'all-in-one-seo-pack' ),
|
3210 |
|
3211 |
+
// Reference: src/vue/pages/about/views/GettingStarted.vue:169
|
3212 |
+
__( 'Best Practices for Domains and URLs', 'all-in-one-seo-pack' ),
|
3213 |
|
3214 |
+
// Reference: src/vue/pages/about/views/GettingStarted.vue:173
|
3215 |
+
__( 'How to Control Search Results', 'all-in-one-seo-pack' ),
|
3216 |
|
3217 |
+
// Reference: src/vue/pages/about/views/GettingStarted.vue:178
|
3218 |
+
/* Translators: 1 - The plugin short name ("AIOSEO Pro"), 2 - "Pro" string. */
|
3219 |
+
__( 'Installing %1$s %2$s', 'all-in-one-seo-pack' ),
|
3220 |
|
3221 |
+
// Reference: src/vue/pages/about/views/GettingStarted.vue:182
|
3222 |
+
__( 'Optimizing your Content Headings', 'all-in-one-seo-pack' ),
|
3223 |
|
3224 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:377
|
3225 |
+
__( 'Global Robots Meta', 'all-in-one-seo-pack' ),
|
3226 |
|
3227 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:378
|
3228 |
+
__( 'Noindex Empty Category and Tag Archives', 'all-in-one-seo-pack' ),
|
3229 |
|
3230 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:379
|
3231 |
+
__( 'Remove Stopwords from Permalinks', 'all-in-one-seo-pack' ),
|
3232 |
|
3233 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:380
|
3234 |
+
__( 'Remove Category Base Prefix', 'all-in-one-seo-pack' ),
|
3235 |
|
3236 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:383
|
3237 |
+
__( 'Automatically Add Missing Image Alt / Title Tags', 'all-in-one-seo-pack' ),
|
3238 |
|
3239 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:386
|
3240 |
+
__( 'Autogenerate Descriptions', 'all-in-one-seo-pack' ),
|
3241 |
|
3242 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:387
|
3243 |
+
__( 'Use Content for Autogenerated Descriptions', 'all-in-one-seo-pack' ),
|
3244 |
|
3245 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:388
|
3246 |
+
__( 'Run Shortcodes in Description', 'all-in-one-seo-pack' ),
|
3247 |
|
3248 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:389
|
3249 |
+
__( 'No Pagination for Canonical URLs', 'all-in-one-seo-pack' ),
|
3250 |
|
3251 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:390
|
3252 |
+
__( 'Use Meta Keywords', 'all-in-one-seo-pack' ),
|
3253 |
|
3254 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:391
|
3255 |
+
__( 'This option allows you to toggle the use of Meta Keywords throughout the whole of the site.', 'all-in-one-seo-pack' ),
|
3256 |
|
3257 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:392
|
3258 |
+
__( 'Use Categories for Meta Keywords', 'all-in-one-seo-pack' ),
|
3259 |
|
3260 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:393
|
3261 |
+
__( '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' ),
|
3262 |
|
3263 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:394
|
3264 |
+
__( 'Use Tags for Meta Keywords', 'all-in-one-seo-pack' ),
|
3265 |
|
3266 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:395
|
3267 |
+
__( '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' ),
|
3268 |
|
3269 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:396
|
3270 |
+
__( 'Dynamically Generate Meta Keywords', 'all-in-one-seo-pack' ),
|
|
|
3271 |
|
3272 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:397
|
3273 |
+
__( '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' ),
|
3274 |
|
3275 |
+
// Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Advanced.vue:73
|
3276 |
+
__( 'Paged Format', 'all-in-one-seo-pack' ),
|
3277 |
|
3278 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:399
|
3279 |
+
__( 'This string gets appended to the titles and descriptions of paginated pages (like term or archive pages).', 'all-in-one-seo-pack' ),
|
3280 |
|
3281 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:400
|
3282 |
+
__( 'Description Format', 'all-in-one-seo-pack' ),
|
|
|
3283 |
|
3284 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:403
|
3285 |
+
__( 'Enable Sitelinks Search Box', 'all-in-one-seo-pack' ),
|
3286 |
|
3287 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:405
|
3288 |
+
/* Translators: 1 - The plugin name ("All in One SEO"). */
|
3289 |
+
__( 'Choose whether %1$s should output the required schema markup that Google needs to generate a sitelinks search box.', 'all-in-one-seo-pack' ),
|
3290 |
|
3291 |
+
// Reference: src/vue/pages/search-appearance/views/Advanced.vue:406
|
3292 |
+
__( 'A Description tag is required in order to properly display your meta descriptions on your site.', 'all-in-one-seo-pack' ),
|
3293 |
|
3294 |
+
// Reference: src/vue/pages/about/views/AboutUs.vue:119
|
3295 |
+
/* Translators: 1 - The plugin name ("All in One SEO"), 2 - Same as previous. */
|
3296 |
+
__( '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' ),
|
3297 |
|
3298 |
+
// Reference: src/vue/pages/about/views/AboutUs.vue:120
|
3299 |
+
__( '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' ),
|
3300 |
|
3301 |
+
// Reference: src/vue/pages/about/views/AboutUs.vue:121
|
3302 |
+
__( 'Our goal is to take the pain out of optimizing your website for search engines.', 'all-in-one-seo-pack' ),
|
3303 |
|
3304 |
+
// Reference: src/vue/pages/about/views/AboutUs.vue:123
|
3305 |
+
/* Translators: 1 - The plugin name ("All in One SEO"), 2 - Company name ("Awesome Motive"). */
|
3306 |
+
__( '%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' ),
|
3307 |
|
3308 |
+
// Reference: src/vue/pages/about/views/AboutUs.vue:124
|
3309 |
+
__( 'Yup, we know a thing or two about building awesome products that customers love.', 'all-in-one-seo-pack' ),
|
3310 |
|
3311 |
+
// Reference: src/vue/pages/about/views/AboutUs.vue:126
|
3312 |
+
/* Translators: 1 - Company name ("Awesome Motive"). */
|
3313 |
+
__( 'The %1$s Team', 'all-in-one-seo-pack' ),
|
3314 |
|
3315 |
+
// Reference: src/vue/pages/about/views/AboutUs.vue:130
|
3316 |
+
__( 'Install Plugin', 'all-in-one-seo-pack' ),
|
3317 |
|
3318 |
+
// Reference: src/vue/pages/about/views/AboutUs.vue:131
|
3319 |
+
__( 'Activate', 'all-in-one-seo-pack' ),
|
3320 |
|
3321 |
+
// Reference: src/vue/pages/about/views/AboutUs.vue:134
|
3322 |
+
__( 'Status:', 'all-in-one-seo-pack' ),
|
3323 |
|
3324 |
+
// Reference: src/vue/pages/about/views/AboutUs.vue:145
|
3325 |
+
__( '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' ),
|
3326 |
|
3327 |
+
// Reference: src/vue/pages/about/views/AboutUs.vue:154
|
3328 |
+
__( 'WPForms allows you to create beautiful contact forms for your site in minutes, not hours!', 'all-in-one-seo-pack' ),
|
3329 |
|
3330 |
+
// Reference: src/vue/pages/about/views/AboutUs.vue:171
|
3331 |
+
__( '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' ),
|
3332 |
|
3333 |
+
// Reference: src/vue/pages/about/views/AboutUs.vue:188
|
3334 |
+
__( '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' ),
|
3335 |
|
3336 |
+
// Reference: src/vue/pages/about/views/AboutUs.vue:205
|
3337 |
+
__( 'Make sure your website\'s emails reach the inbox. Our goal is to make email deliverability easy and reliable. Trusted by over 2 million websites.', 'all-in-one-seo-pack' ),
|
3338 |
|
3339 |
+
// Reference: src/vue/pages/about/views/AboutUs.vue:222
|
3340 |
+
__( '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' ),
|
3341 |
|
3342 |
+
// Reference: src/vue/pages/about/views/AboutUs.vue:239
|
3343 |
+
__( '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' ),
|
3344 |
|
3345 |
+
// Reference: src/vue/pages/about/views/AboutUs.vue:248
|
3346 |
+
__( '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' ),
|
3347 |
|
3348 |
+
// Reference: src/vue/pages/about/views/AboutUs.vue:265
|
3349 |
+
__( 'Display completely customizable Facebook feeds of any public Facebook page or Group.', 'all-in-one-seo-pack' ),
|
3350 |
|
3351 |
+
// Reference: src/vue/pages/about/views/AboutUs.vue:282
|
3352 |
+
__( 'Display beautifully clean, customizable, and responsive Instagram feeds from multiple Instagram accounts.', 'all-in-one-seo-pack' ),
|
3353 |
|
3354 |
+
// Reference: src/vue/pages/about/views/AboutUs.vue:299
|
3355 |
+
__( 'Display completely customizable, responsive and search engine crawlable Twitter feeds on your website.', 'all-in-one-seo-pack' ),
|
3356 |
|
3357 |
+
// Reference: src/vue/pages/about/views/AboutUs.vue:316
|
3358 |
+
__( 'The Feeds for YouTube plugin allows you to display customizable YouTube feeds from any YouTube channel.', 'all-in-one-seo-pack' ),
|
3359 |
|
3360 |
+
// Reference: src/vue/pages/social-networks/views/SocialProfiles.vue:26
|
3361 |
+
__( 'To let search engines know which profiles are associated with this site, enter them below:', 'all-in-one-seo-pack' ),
|
3362 |
|
3363 |
+
// Reference: src/vue/pages/social-networks/views/Pinterest.vue:46
|
3364 |
+
__( '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' ),
|
3365 |
|
3366 |
+
// Reference: src/vue/pages/social-networks/views/Pinterest.vue:47
|
3367 |
+
__( 'Learn how to get your Pinterest Verification Code', 'all-in-one-seo-pack' ),
|
3368 |
|
3369 |
+
// Reference: src/vue/pages/social-networks/views/Pinterest.vue:48
|
3370 |
+
__( 'If you have already confirmed your website with Pinterest, you can skip the step below.', 'all-in-one-seo-pack' ),
|
3371 |
|
3372 |
+
// Reference: src/vue/pages/social-networks/views/Pinterest.vue:49
|
3373 |
+
__( 'Pinterest Verification Code', 'all-in-one-seo-pack' ),
|
|
|
3374 |
|
3375 |
+
// Reference: src/vue/pages/social-networks/views/Twitter.vue:432
|
3376 |
+
__( 'Twitter Card Settings', 'all-in-one-seo-pack' ),
|
3377 |
|
3378 |
+
// Reference: src/vue/pages/social-networks/views/Twitter.vue:434
|
3379 |
+
/* Translators: 1 - The plugin name ("All in One SEO"). */
|
3380 |
+
__( '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' ),
|
3381 |
|
3382 |
+
// Reference: src/vue/pages/social-networks/views/Twitter.vue:435
|
3383 |
+
__( 'Enable Twitter Card', 'all-in-one-seo-pack' ),
|
3384 |
|
3385 |
+
// Reference: src/vue/pages/social-networks/views/Twitter.vue:436
|
3386 |
+
__( 'Default Card Type', 'all-in-one-seo-pack' ),
|
3387 |
|
3388 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:681
|
3389 |
+
__( 'Default Post Image Source', 'all-in-one-seo-pack' ),
|
3390 |
|
3391 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:682
|
3392 |
+
__( 'Default Term Image Source', 'all-in-one-seo-pack' ),
|
3393 |
|
3394 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:685
|
3395 |
+
__( 'Post Custom Field Name', 'all-in-one-seo-pack' ),
|
3396 |
|
3397 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:686
|
3398 |
+
__( 'Term Custom Field Name', 'all-in-one-seo-pack' ),
|
3399 |
|
3400 |
+
// Reference: src/vue/pages/social-networks/views/Twitter.vue:445
|
3401 |
+
__( 'Default Post Twitter Image', 'all-in-one-seo-pack' ),
|
3402 |
|
3403 |
+
// Reference: src/vue/pages/social-networks/views/Twitter.vue:446
|
3404 |
+
__( 'Default Term Twitter Image', 'all-in-one-seo-pack' ),
|
3405 |
|
3406 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:692
|
3407 |
+
__( 'Home Page Settings', 'all-in-one-seo-pack' ),
|
3408 |
|
3409 |
+
// Reference: src/vue/pages/social-networks/views/Twitter.vue:452
|
3410 |
+
__( 'Home Page Image', 'all-in-one-seo-pack' ),
|
3411 |
|
3412 |
+
// Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:255
|
3413 |
+
__( 'Home Page Title', 'all-in-one-seo-pack' ),
|
3414 |
|
3415 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:699
|
3416 |
+
__( 'Use the home page title', 'all-in-one-seo-pack' ),
|
3417 |
|
3418 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:701
|
3419 |
+
__( 'Click on the tags below to insert variables into your home page title.', 'all-in-one-seo-pack' ),
|
3420 |
|
3421 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:702
|
3422 |
+
__( 'Description', 'all-in-one-seo-pack' ),
|
3423 |
|
3424 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:703
|
3425 |
+
__( 'Use the home page description', 'all-in-one-seo-pack' ),
|
3426 |
|
3427 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:704
|
3428 |
+
__( 'Click on the tags below to insert variables into your description.', 'all-in-one-seo-pack' ),
|
3429 |
|
3430 |
+
// Reference: src/vue/pages/social-networks/views/Twitter.vue:460
|
3431 |
+
__( 'Show Twitter Author', 'all-in-one-seo-pack' ),
|
3432 |
|
3433 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:728
|
3434 |
+
/* Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag. */
|
3435 |
+
__( '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' ),
|
3436 |
|
3437 |
+
// Reference: src/vue/pages/social-networks/views/Twitter.vue:463
|
3438 |
+
__( 'Card Type', 'all-in-one-seo-pack' ),
|
3439 |
|
3440 |
+
// Reference: src/vue/pages/social-networks/views/Twitter.vue:464
|
3441 |
+
__( 'Additional Data', 'all-in-one-seo-pack' ),
|
3442 |
|
3443 |
+
// Reference: src/vue/pages/social-networks/views/Twitter.vue:465
|
3444 |
+
__( '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' ),
|
3445 |
|
3446 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:722
|
3447 |
+
/* Translators: 1 - The plugin short name ("AIOSEO"), 2 - Learn more link. */
|
3448 |
+
__( 'Default Term Image Source is only available for licensed %1$s users. %2$s', 'all-in-one-seo-pack' ),
|
3449 |
|
3450 |
+
// Reference: src/vue/pages/connect/views/Main.vue:30
|
3451 |
+
__( 'Connecting...', 'all-in-one-seo-pack' ),
|
3452 |
|
3453 |
+
// Reference: src/vue/pages/setup-wizard/views/Success.vue:150
|
3454 |
+
__( 'Video and News Sitemaps', 'all-in-one-seo-pack' ),
|
3455 |
|
3456 |
+
// Reference: src/vue/pages/setup-wizard/views/Success.vue:151
|
3457 |
+
__( 'Image SEO Optimization', 'all-in-one-seo-pack' ),
|
3458 |
|
3459 |
+
// Reference: src/vue/pages/setup-wizard/views/Success.vue:153
|
3460 |
+
__( 'Advanced WooCommerce', 'all-in-one-seo-pack' ),
|
3461 |
|
3462 |
+
// Reference: src/vue/pages/setup-wizard/views/Success.vue:155
|
3463 |
+
__( 'And many more...', 'all-in-one-seo-pack' ),
|
3464 |
|
3465 |
+
// Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:147
|
3466 |
+
__( 'Activate All Features', 'all-in-one-seo-pack' ),
|
3467 |
|
3468 |
+
// Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:148
|
3469 |
+
__( 'Deactivate All Features', 'all-in-one-seo-pack' ),
|
3470 |
|
3471 |
+
// Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:149
|
3472 |
+
__( 'Search for Features...', 'all-in-one-seo-pack' ),
|
3473 |
|
3474 |
+
// Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:151
|
3475 |
+
/* Translators: 1 - The plugin name ("All in One SEO"). */
|
3476 |
+
__( 'Upgrade %1$s to Pro and Unlock all Features!', 'all-in-one-seo-pack' ),
|
3477 |
|
3478 |
+
// Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:152
|
3479 |
+
__( 'Upgrade to Pro and Unlock All Features', 'all-in-one-seo-pack' ),
|
3480 |
|
3481 |
+
// Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:153
|
3482 |
+
__( 'A valid license key is required in order to use our addons.', 'all-in-one-seo-pack' ),
|
3483 |
|
3484 |
+
// Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:154
|
3485 |
+
__( 'Enter License Key', 'all-in-one-seo-pack' ),
|
3486 |
|
3487 |
+
// Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:155
|
3488 |
+
__( 'Purchase License', 'all-in-one-seo-pack' ),
|
3489 |
|
3490 |
+
// Reference: src/vue/pages/feature-manager/views/FeatureManager.vue:159
|
3491 |
+
__( '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' ),
|
3492 |
|
3493 |
+
// Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:8
|
3494 |
+
__( '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' ),
|
3495 |
|
3496 |
+
// Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:8
|
3497 |
+
__( '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' ),
|
3498 |
|
3499 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:678
|
3500 |
+
__( 'General Facebook Settings', 'all-in-one-seo-pack' ),
|
3501 |
|
3502 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:679
|
3503 |
+
__( 'Enable this feature if you want Facebook and other social media to display a preview with images and a text excerpt when a link to your site is shared.', 'all-in-one-seo-pack' ),
|
3504 |
|
3505 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:680
|
3506 |
+
__( 'Enable Open Graph Markup', 'all-in-one-seo-pack' ),
|
3507 |
|
3508 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:687
|
3509 |
+
__( 'Default Post Facebook Image', 'all-in-one-seo-pack' ),
|
3510 |
|
3511 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:688
|
3512 |
+
__( 'Default Term Facebook Image', 'all-in-one-seo-pack' ),
|
3513 |
|
3514 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:691
|
3515 |
+
__( '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' ),
|
3516 |
|
3517 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:693
|
3518 |
+
__( 'The Title of the Page or Site you are Sharing', 'all-in-one-seo-pack' ),
|
3519 |
|
3520 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:695
|
3521 |
+
/* Translators: 1 - The plugin name ("All in One SEO"). */
|
3522 |
+
__( 'This is what your page configured with %1$s will look like when shared via Facebook. The site title and description will be automatically added.', 'all-in-one-seo-pack' ),
|
3523 |
|
3524 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:697
|
3525 |
+
__( 'Site Name', 'all-in-one-seo-pack' ),
|
|
|
|
|
|
|
|
|
|
|
|
|
3526 |
|
3527 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:707
|
3528 |
+
__( 'Facebook Admin ID', 'all-in-one-seo-pack' ),
|
3529 |
|
3530 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:708
|
3531 |
+
__( 'Facebook App ID', 'all-in-one-seo-pack' ),
|
3532 |
|
3533 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:709
|
3534 |
+
__( 'Facebook Author URL', 'all-in-one-seo-pack' ),
|
3535 |
|
3536 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:710
|
3537 |
+
__( 'Enter your Facebook Admin ID here. You can enter multiple Facebook Admin IDs by separating them with a comma.', 'all-in-one-seo-pack' ),
|
3538 |
|
3539 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:711
|
3540 |
+
__( 'The Facebook App ID of the site\'s app. In order to use Facebook Insights, you must add the App ID to your page. Insights lets you view analytics for traffic to your site from Facebook. Find the App ID in your App Dashboard.', 'all-in-one-seo-pack' ),
|
3541 |
|
3542 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:712
|
3543 |
+
__( 'Will be overriden if the Facebook author URL is present in the individual User Profile.', 'all-in-one-seo-pack' ),
|
3544 |
|
3545 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:713
|
3546 |
+
__( 'How to get your Facebook Admin ID', 'all-in-one-seo-pack' ),
|
3547 |
|
3548 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:714
|
3549 |
+
__( 'How to get your Facebook App ID', 'all-in-one-seo-pack' ),
|
3550 |
|
3551 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:715
|
3552 |
+
__( 'How to get your Facebook Author URL', 'all-in-one-seo-pack' ),
|
3553 |
|
3554 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:716
|
3555 |
+
__( 'Show Facebook Author', 'all-in-one-seo-pack' ),
|
3556 |
|
3557 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:717
|
3558 |
+
__( 'Default Post Type Object Types', 'all-in-one-seo-pack' ),
|
3559 |
|
3560 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:718
|
3561 |
+
__( 'Default Taxonomy Object Types', 'all-in-one-seo-pack' ),
|
3562 |
|
3563 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:720
|
3564 |
+
/* Translators: 1 - The plugin short name ("AIOSEO"), 2 - Learn more link. */
|
3565 |
+
__( 'Default Taxonomy Object Types are only available for licensed %1$s users. %2$s', 'all-in-one-seo-pack' ),
|
3566 |
|
3567 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:723
|
3568 |
+
__( 'Automatically Generate Article Tags', 'all-in-one-seo-pack' ),
|
3569 |
|
3570 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:724
|
3571 |
+
__( 'Use Keywords in Article Tags', 'all-in-one-seo-pack' ),
|
3572 |
|
3573 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:725
|
3574 |
+
__( 'Use Categories in Article Tags', 'all-in-one-seo-pack' ),
|
3575 |
|
3576 |
+
// Reference: src/vue/pages/social-networks/views/Facebook.vue:726
|
3577 |
+
__( 'Use Post Tags in Article Tags', 'all-in-one-seo-pack' ),
|
3578 |
|
3579 |
+
// Reference: src/vue/pages/local-seo/views/pro/Maps.vue:102
|
3580 |
+
// Reference: src/vue/pages/local-seo/views/pro/MapsActivate.vue:50
|
3581 |
+
__( 'Google Maps API Key', 'all-in-one-seo-pack' ),
|
3582 |
|
3583 |
+
// Reference: src/vue/pages/local-seo/views/pro/MapsActivate.vue:51
|
3584 |
+
__( 'Integrating with Google Maps will allow your users to find exactly where your business is located. Our interactive maps let them see your Google Reviews and get directions directly from your site. Create multiple maps for use with multiple locations.', 'all-in-one-seo-pack' ),
|
3585 |
|
3586 |
+
// Reference: src/vue/pages/local-seo/views/pro/Maps.vue:104
|
3587 |
+
// Reference: src/vue/pages/local-seo/views/pro/MapsActivate.vue:52
|
3588 |
+
__( 'API Key', 'all-in-one-seo-pack' ),
|
3589 |
|
3590 |
+
// Reference: src/vue/pages/local-seo/views/pro/Maps.vue:106
|
3591 |
+
// Reference: src/vue/pages/local-seo/views/pro/MapsActivate.vue:53
|
3592 |
+
__( 'Map Settings', 'all-in-one-seo-pack' ),
|
3593 |
|
3594 |
+
// Reference: src/vue/pages/local-seo/views/pro/Maps.vue:116
|
3595 |
+
// Reference: src/vue/pages/local-seo/views/pro/MapsActivate.vue:59
|
3596 |
+
/* Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag, 3 - The plugin short name ("AIOSEO") */
|
3597 |
+
__( 'To add this widget, visit the %1$swidgets page%2$s and look for the "%3$s Local - Map" widget.', 'all-in-one-seo-pack' ),
|
3598 |
|
3599 |
+
// Reference: src/vue/pages/local-seo/views/pro/Maps.vue:121
|
3600 |
+
// Reference: src/vue/pages/local-seo/views/pro/MapsActivate.vue:64
|
3601 |
+
/* Translators: 1 - Learn more link. */
|
3602 |
+
__( 'Use the following shortcode to display the location map. %1$s', 'all-in-one-seo-pack' ),
|
3603 |
|
3604 |
+
// Reference: src/vue/pages/local-seo/views/pro/Maps.vue:126
|
3605 |
+
// Reference: src/vue/pages/local-seo/views/pro/MapsActivate.vue:69
|
3606 |
+
/* Translators: 1 - The plugin short name ("AIOSEO") */
|
3607 |
+
__( 'To add this block, edit a page or post and search for the "%1$s Local - Map" block.', 'all-in-one-seo-pack' ),
|
3608 |
|
3609 |
+
// Reference: src/vue/pages/local-seo/views/pro/Maps.vue:131
|
3610 |
+
// Reference: src/vue/pages/local-seo/views/pro/MapsActivate.vue:74
|
3611 |
+
/* Translators: 1 - Learn more link. */
|
3612 |
+
__( 'Use the following PHP code anywhere in your theme to display the location map. %1$s', 'all-in-one-seo-pack' ),
|
3613 |
|
3614 |
+
// Reference: src/vue/pages/local-seo/views/pro/Locations.vue:103
|
3615 |
+
/* Translators: 1 - Learn more link. */
|
3616 |
+
__( 'Use the following PHP code anywhere in your theme to display the location info. %1$s', 'all-in-one-seo-pack' ),
|
3617 |
|
3618 |
+
// Reference: src/vue/pages/local-seo/views/pro/Locations.vue:109
|
3619 |
+
/* Translators: 1 - The plugin short name ("AIOSEO"). */
|
3620 |
+
__( 'Whether your business has multiple locations, or just one, %1$s makes it easy to configure and display relevant information about your local business. You can use the custom-built tools below, or you can use the Locations custom post type (multiple locations only) to generate relevant and necessary information for search engines or for your customers.', 'all-in-one-seo-pack' ),
|
3621 |
|
3622 |
+
// Reference: src/vue/pages/local-seo/views/pro/Locations.vue:111
|
3623 |
+
__( 'Use the %1$sLocations%2$s Post Type in the menu on the left to start adding your locations.', 'all-in-one-seo-pack' ),
|
|
|
3624 |
|
3625 |
+
// Reference: src/vue/pages/local-seo/views/pro/Locations.vue:113
|
3626 |
+
/* Translators: 1 - The plugin short name ("AIOSEO"), 2 - The plugin short name ("AIOSEO"). */
|
3627 |
+
__( 'Multiple Locations feature is available only for %1$s Pro users. Upgrade to Pro and unlock all %2$s features!', 'all-in-one-seo-pack' ),
|
3628 |
|
3629 |
+
// Reference: src/vue/pages/local-seo/views/pro/Locations.vue:88
|
3630 |
+
/* Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag, 3 - The plugin short name ("AIOSEO") */
|
3631 |
+
__( 'To add this widget, visit the %1$swidgets page%2$s and look for the "%3$s Local - Business Info" widget.', 'all-in-one-seo-pack' ),
|
3632 |
|
3633 |
+
// Reference: src/vue/pages/local-seo/views/pro/Locations.vue:93
|
3634 |
+
/* Translators: 1 - Learn more link. */
|
3635 |
+
__( 'Use the following shortcode to display the location info. %1$s', 'all-in-one-seo-pack' ),
|
3636 |
|
3637 |
+
// Reference: src/vue/pages/local-seo/views/pro/Locations.vue:98
|
3638 |
+
/* Translators: 1 - The plugin short name ("AIOSEO") */
|
3639 |
+
__( 'To add this block, edit a page or post and search for the "%1$s Local - Business Info" block.', 'all-in-one-seo-pack' ),
|
3640 |
|
3641 |
+
// Reference: src/vue/pages/local-seo/views/pro/Maps.vue:103
|
3642 |
+
__( 'Integrating with Google Maps will allow your users to find exactly where your business is located. Our interactive maps let them see your Google Reviews and get directions directly from your site. Create multiple maps for use with multiple locations. %s', 'all-in-one-seo-pack' ),
|
3643 |
|
3644 |
+
// Reference: src/vue/pages/local-seo/views/pro/Maps.vue:105
|
3645 |
+
__( 'A Google API Key is necessary to render your maps. %s', 'all-in-one-seo-pack' ),
|
3646 |
|
3647 |
+
// Reference: src/vue/pages/local-seo/views/pro/Maps.vue:107
|
3648 |
+
__( 'Your API Key is invalid. Please make sure you have set your key correctly. %1$s', 'all-in-one-seo-pack' ),
|
3649 |
|
3650 |
+
// Reference: src/vue/pages/local-seo/views/pro/Maps.vue:108
|
3651 |
+
__( 'Your Maps Embed API is not enabled. For a more seamless experience with rich information cards, please enable it in your Google Project. %1$s', 'all-in-one-seo-pack' ),
|
3652 |
|
3653 |
+
// Reference: src/vue/pages/local-seo/views/pro/Maps.vue:109
|
3654 |
+
__( 'Display Map', 'all-in-one-seo-pack' ),
|
3655 |
|
3656 |
+
// Reference: src/vue/pages/local-seo/views/pro/Maps.vue:110
|
3657 |
+
__( 'Map Preview', 'all-in-one-seo-pack' ),
|
3658 |
|
3659 |
// Reference: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:100
|
3660 |
/* Translators: 1 - Strong tag, 2 - Close strong tag. */
|
3672 |
// Reference: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:96
|
3673 |
__( 'Custom Marker', 'all-in-one-seo-pack' ),
|
3674 |
|
3675 |
+
// Reference: src/vue/pages/local-seo/views/lite/Maps.vue:58
|
3676 |
+
__( 'Google Places Support', 'all-in-one-seo-pack' ),
|
|
|
3677 |
|
3678 |
+
// Reference: src/vue/pages/local-seo/views/lite/Maps.vue:59
|
3679 |
+
__( 'Google Reviews', 'all-in-one-seo-pack' ),
|
3680 |
|
3681 |
+
// Reference: src/vue/pages/local-seo/views/lite/Maps.vue:60
|
3682 |
+
__( 'Driving Directions', 'all-in-one-seo-pack' ),
|
3683 |
|
3684 |
+
// Reference: src/vue/pages/local-seo/views/lite/Maps.vue:70
|
3685 |
+
/* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro". */
|
3686 |
+
__( 'Local SEO Maps are only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
|
3687 |
|
3688 |
+
// Reference: src/vue/pages/local-seo/views/lite/Maps.vue:71
|
3689 |
+
__( 'Show your location to your visitors using an interactive Google Map. Create multiple maps for use with multiple locations.', 'all-in-one-seo-pack' ),
|
3690 |
|
3691 |
+
// Reference: src/vue/pages/local-seo/views/lite/OpeningHours.vue:278
|
3692 |
+
__( 'Opening Hours block, widget and shortcode', 'all-in-one-seo-pack' ),
|
3693 |
|
3694 |
+
// Reference: src/vue/pages/local-business-seo/blocks/OpeningHoursSidebar.vue:86
|
3695 |
+
__( 'Show Title', 'all-in-one-seo-pack' ),
|
3696 |
|
3697 |
+
// Reference: src/vue/pages/local-business-seo/blocks/OpeningHoursSidebar.vue:87
|
3698 |
+
__( 'Show Icons', 'all-in-one-seo-pack' ),
|
3699 |
|
3700 |
+
// Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:77
|
3701 |
+
/* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro". */
|
3702 |
+
__( 'Advanced Schema Markup is only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
|
3703 |
|
3704 |
+
// Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:79
|
3705 |
+
/* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro". */
|
3706 |
+
__( '%1$s %2$s allows you to customize the structured data markup for your Posts so that search engines can generate rich snippets for your content in search results.', 'all-in-one-seo-pack' ),
|
3707 |
|
3708 |
+
// Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:80
|
3709 |
+
__( 'Upgrade to Pro and Unlock Advanced Schema Markup', 'all-in-one-seo-pack' ),
|
|
|
3710 |
|
3711 |
+
// Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:82
|
3712 |
+
__( 'Product (WooCommerce and EDD support)', 'all-in-one-seo-pack' ),
|
|
|
3713 |
|
3714 |
+
// Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:83
|
3715 |
+
__( 'FAQ Page', 'all-in-one-seo-pack' ),
|
3716 |
|
3717 |
+
// Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:84
|
3718 |
+
__( 'Software Application', 'all-in-one-seo-pack' ),
|
|
|
3719 |
|
3720 |
+
// Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:85
|
3721 |
+
__( 'Recipe', 'all-in-one-seo-pack' ),
|
|
|
3722 |
|
3723 |
+
// Reference: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:86
|
3724 |
+
__( 'Course', 'all-in-one-seo-pack' ),
|
3725 |
|
3726 |
+
// Reference: src/vue/pages/search-appearance/views/ContentTypes.vue:70
|
3727 |
+
__( 'Custom Fields', 'all-in-one-seo-pack' ),
|
3728 |
|
3729 |
+
// Reference: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:52
|
3730 |
+
__( 'List of custom field names to include in the SEO Page Analysis. Add one per line.', 'all-in-one-seo-pack' ),
|
3731 |
|
3732 |
+
// Reference: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:54
|
3733 |
+
/* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro". */
|
3734 |
+
__( '%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' ),
|
3735 |
|
3736 |
+
// Reference: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:55
|
3737 |
+
__( 'Upgrade to Pro and Unlock Custom Fields', 'all-in-one-seo-pack' ),
|
|
|
|
|
|
|
3738 |
|
3739 |
+
// Reference: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:57
|
3740 |
+
/* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro". */
|
3741 |
+
__( 'Custom Fields are only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
|
3742 |
|
3743 |
+
// Reference: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:117
|
3744 |
+
__( 'Web Page Type', 'all-in-one-seo-pack' ),
|
3745 |
|
3746 |
+
// Reference: src/vue/pages/search-appearance/views/partials/TitleDescription.vue:144
|
3747 |
+
__( 'Show in Search Results', 'all-in-one-seo-pack' ),
|
3748 |
|
3749 |
+
// Reference: src/vue/pages/search-appearance/views/partials/TitleDescription.vue:148
|
3750 |
+
__( 'Selecting "No" will no-index this page.', 'all-in-one-seo-pack' ),
|
3751 |
|
3752 |
+
// Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:107
|
3753 |
+
__( 'Robots Meta Settings', 'all-in-one-seo-pack' ),
|
3754 |
|
3755 |
+
// Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:108
|
3756 |
+
__( 'Bulk Editing', 'all-in-one-seo-pack' ),
|
3757 |
|
3758 |
+
// Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:109
|
3759 |
+
__( 'Read Only', 'all-in-one-seo-pack' ),
|
3760 |
|
3761 |
+
// Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:110
|
3762 |
+
__( 'Other Options', 'all-in-one-seo-pack' ),
|
3763 |
|
3764 |
+
// Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:111
|
3765 |
+
__( 'Show Date in Google Preview', 'all-in-one-seo-pack' ),
|
3766 |
|
3767 |
+
// Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:129
|
3768 |
+
/* Translators: 1 - The type of page (Post, Page, Category, Tag, etc.). */
|
3769 |
+
__( 'Show %1$s Thumbnail in Google Custom Search', 'all-in-one-seo-pack' ),
|
3770 |
|
3771 |
+
// Reference: src/vue/pages/search-appearance/views/partials/Advanced.vue:133
|
3772 |
+
/* Translators: 1 - The plugin name ("All in One SEO") */
|
3773 |
+
__( 'Show %1$s Meta Box', 'all-in-one-seo-pack' ),
|
3774 |
|
3775 |
+
// Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:112
|
3776 |
+
__( 'Title Attribute Format', 'all-in-one-seo-pack' ),
|
3777 |
|
3778 |
+
// Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:113
|
3779 |
+
__( 'Strip Punctuation for Title Attributes', 'all-in-one-seo-pack' ),
|
3780 |
|
3781 |
+
// Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:114
|
3782 |
+
__( 'Click on the tags below to insert variables into your title attribute.', 'all-in-one-seo-pack' ),
|
3783 |
|
3784 |
+
// Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:115
|
3785 |
+
__( 'Alt Tag Attribute Format', 'all-in-one-seo-pack' ),
|
3786 |
|
3787 |
+
// Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:116
|
3788 |
+
__( 'Click on the tags below to insert variables into your alt tag attribute.', 'all-in-one-seo-pack' ),
|
3789 |
|
3790 |
+
// Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:117
|
3791 |
+
__( 'Strip Punctuation for Alt Attributes', 'all-in-one-seo-pack' ),
|
3792 |
|
3793 |
+
// Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:16
|
3794 |
+
__( 'This feature requires one of the following plans:', 'all-in-one-seo-pack' ),
|
3795 |
|
3796 |
+
// Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:120
|
3797 |
+
__( 'Upgrade to Pro and Unlock Image SEO', 'all-in-one-seo-pack' ),
|
|
|
3798 |
|
3799 |
+
// Reference: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:122
|
3800 |
+
/* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro". */
|
3801 |
+
__( 'Image SEO is only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
|
3802 |
|
3803 |
+
// Reference: src/vue/pages/search-appearance/views/ContentTypes.vue:58
|
3804 |
+
__( 'Title & Description', 'all-in-one-seo-pack' ),
|
3805 |
|
3806 |
+
// Reference: src/vue/pages/search-appearance/views/ContentTypes.vue:64
|
3807 |
+
__( 'Schema Markup', 'all-in-one-seo-pack' ),
|
3808 |
|
3809 |
+
// Reference: src/vue/pages/search-appearance/views/Media.vue:106
|
3810 |
+
__( 'Redirect Attachment URLs', 'all-in-one-seo-pack' ),
|
3811 |
|
3812 |
+
// Reference: src/vue/pages/search-appearance/views/Media.vue:107
|
3813 |
+
__( 'Attachment', 'all-in-one-seo-pack' ),
|
3814 |
|
3815 |
+
// Reference: src/vue/pages/search-appearance/views/Media.vue:108
|
3816 |
+
__( 'Attachment Parent', 'all-in-one-seo-pack' ),
|
3817 |
|
3818 |
+
// Reference: src/vue/pages/search-appearance/views/Media.vue:109
|
3819 |
+
__( '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' ),
|
3820 |
|
3821 |
+
// Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:412
|
3822 |
+
__( 'Title Separator', 'all-in-one-seo-pack' ),
|
3823 |
|
3824 |
+
// Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:413
|
3825 |
+
__( 'Separator Character', 'all-in-one-seo-pack' ),
|
|
|
3826 |
|
3827 |
+
// Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:415
|
3828 |
+
/* Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag. */
|
3829 |
+
__( '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' ),
|
3830 |
|
3831 |
+
// Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:417
|
3832 |
+
__( 'Site Title', 'all-in-one-seo-pack' ),
|
3833 |
|
3834 |
+
// Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:418
|
3835 |
+
// Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:253
|
3836 |
+
__( 'Click on the tags below to insert variables into your site title.', 'all-in-one-seo-pack' ),
|
3837 |
|
3838 |
+
// Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:421
|
3839 |
+
__( 'Knowledge Graph', 'all-in-one-seo-pack' ),
|
3840 |
|
3841 |
+
// Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:422
|
3842 |
+
__( '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' ),
|
3843 |
|
3844 |
+
// Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:316
|
3845 |
+
__( 'Person or Organization', 'all-in-one-seo-pack' ),
|
3846 |
|
3847 |
+
// Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:318
|
3848 |
+
__( 'Person', 'all-in-one-seo-pack' ),
|
3849 |
|
3850 |
+
// Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:319
|
3851 |
+
__( 'Organization', 'all-in-one-seo-pack' ),
|
3852 |
|
3853 |
+
// Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:320
|
3854 |
+
__( 'Choose whether the site represents a person or an organization.', 'all-in-one-seo-pack' ),
|
3855 |
|
3856 |
+
// Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:317
|
3857 |
+
__( 'Choose a Person', 'all-in-one-seo-pack' ),
|
3858 |
|
3859 |
+
// Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:324
|
3860 |
+
__( 'Choose a Contact Type', 'all-in-one-seo-pack' ),
|
3861 |
|
3862 |
+
// Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:325
|
3863 |
+
__( 'Contact Type', 'all-in-one-seo-pack' ),
|
|
|
3864 |
|
3865 |
+
// Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:326
|
3866 |
+
__( 'Select which team or department the phone number belongs to.', 'all-in-one-seo-pack' ),
|
3867 |
|
3868 |
+
// Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:327
|
3869 |
+
__( 'Logo', 'all-in-one-seo-pack' ),
|
3870 |
|
3871 |
+
// Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:439
|
3872 |
+
/* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag., 3 - "Pro", 4 - "Pro". */
|
3873 |
+
__( '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' ),
|
3874 |
|
3875 |
+
// Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:440
|
3876 |
+
__( 'Go to Local SEO Settings', 'all-in-one-seo-pack' ),
|
3877 |
|
3878 |
+
// Reference: src/vue/pages/search-appearance/views/GlobalSettings.vue:441
|
3879 |
+
__( 'Enable Schema Markup', 'all-in-one-seo-pack' ),
|
3880 |
|
3881 |
+
// Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:342
|
3882 |
+
__( 'Manually Enter Person', 'all-in-one-seo-pack' ),
|
3883 |
|
3884 |
+
// Reference: src/vue/pages/search-appearance/views/Taxonomies.vue:59
|
3885 |
+
__( 'Upgrade to Pro and Unlock Custom Taxonomies', 'all-in-one-seo-pack' ),
|
3886 |
|
3887 |
+
// Reference: src/vue/pages/search-appearance/views/Taxonomies.vue:61
|
3888 |
+
/* Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro". */
|
3889 |
+
__( '%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' ),
|
3890 |
|
3891 |
+
// Reference: src/vue/pages/search-appearance/views/Taxonomies.vue:63
|
3892 |
+
/* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro". */
|
3893 |
+
__( 'Custom Taxonomy Support is only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
|
3894 |
|
3895 |
+
// Reference: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:111
|
3896 |
+
__( 'Enter Competitor URL', 'all-in-one-seo-pack' ),
|
3897 |
|
3898 |
+
// Reference: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:112
|
3899 |
+
__( 'Perform in-depth SEO Analysis of your competitor\'s website.', 'all-in-one-seo-pack' ),
|
3900 |
|
3901 |
+
// Reference: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:113
|
3902 |
+
__( 'Analyze', 'all-in-one-seo-pack' ),
|
3903 |
|
3904 |
+
// Reference: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:114
|
3905 |
+
__( 'Please enter a valid URL.', 'all-in-one-seo-pack' ),
|
|
|
3906 |
|
3907 |
+
// Reference: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:67
|
3908 |
+
__( 'Complete SEO Checklist', 'all-in-one-seo-pack' ),
|
|
|
3909 |
|
3910 |
+
// Reference: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:80
|
3911 |
+
__( 'All Items', 'all-in-one-seo-pack' ),
|
3912 |
|
3913 |
+
// Reference: src/vue/pages/dashboard/router/paths.js:19
|
3914 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:211
|
3915 |
+
__( 'Dashboard', 'all-in-one-seo-pack' ),
|
3916 |
|
3917 |
+
// Reference: src/vue/pages/tools/router/paths.js:19
|
3918 |
+
__( 'Robots.txt Editor', 'all-in-one-seo-pack' ),
|
3919 |
|
3920 |
+
// Reference: src/vue/pages/tools/views/HtaccessEditor.vue:41
|
3921 |
+
__( '.htaccess Editor', 'all-in-one-seo-pack' ),
|
3922 |
|
3923 |
+
// Reference: src/vue/pages/tools/router/paths.js:46
|
3924 |
+
__( 'Import/Export', 'all-in-one-seo-pack' ),
|
3925 |
|
3926 |
+
// Reference: src/vue/pages/tools/router/paths.js:55
|
3927 |
+
__( 'Database Tools', 'all-in-one-seo-pack' ),
|
|
|
3928 |
|
3929 |
+
// Reference: src/vue/pages/tools/router/paths.js:64
|
3930 |
+
__( 'System Status', 'all-in-one-seo-pack' ),
|
3931 |
|
3932 |
+
// Reference: src/vue/pages/setup-wizard/router/paths.js:19
|
3933 |
+
__( 'Welcome', 'all-in-one-seo-pack' ),
|
3934 |
|
3935 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/ImportOthers.vue:79
|
3936 |
+
__( 'Import', 'all-in-one-seo-pack' ),
|
3937 |
|
3938 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:298
|
3939 |
+
// Reference: src/vue/pages/setup-wizard/router/paths.js:37
|
3940 |
+
__( 'Category', 'all-in-one-seo-pack' ),
|
|
|
|
|
|
|
3941 |
|
3942 |
+
// Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:315
|
3943 |
+
__( 'Additional Site Information', 'all-in-one-seo-pack' ),
|
3944 |
|
3945 |
+
// Reference: src/vue/pages/setup-wizard/router/paths.js:55
|
3946 |
+
__( 'Choose Features', 'all-in-one-seo-pack' ),
|
3947 |
|
3948 |
+
// Reference: src/vue/pages/setup-wizard/router/paths.js:73
|
3949 |
+
__( 'Smart Recommendations', 'all-in-one-seo-pack' ),
|
3950 |
|
3951 |
+
// Reference: src/vue/pages/setup-wizard/router/paths.js:91
|
3952 |
+
__( 'Success', 'all-in-one-seo-pack' ),
|
3953 |
|
3954 |
+
// Reference: src/vue/store/actions.js:146
|
3955 |
+
__( 'We couldn\'t connect to the site, please try again later.', 'all-in-one-seo-pack' ),
|
3956 |
|
3957 |
+
// Reference: src/vue/pages/redirects/router/paths.js:28
|
3958 |
+
__( 'Full Site Redirect', 'all-in-one-seo-pack' ),
|
3959 |
|
3960 |
+
// Reference: src/vue/pages/redirects/router/paths.js:37
|
3961 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:118
|
3962 |
+
// Reference: src/vue/pages/tools/views/DatabaseTools.vue:265
|
3963 |
+
__( 'Logs', 'all-in-one-seo-pack' ),
|
3964 |
|
3965 |
+
// Reference: src/vue/pages/redirects/router/paths.js:46
|
3966 |
+
// Reference: src/vue/pages/tools/views/DatabaseTools.vue:269
|
3967 |
+
__( '404 Logs', 'all-in-one-seo-pack' ),
|
3968 |
|
3969 |
+
// Reference: src/vue/pages/redirects/router/paths.js:55
|
3970 |
+
__( 'Import / Export', 'all-in-one-seo-pack' ),
|
|
|
3971 |
|
3972 |
+
// Reference: src/vue/pages/sitemaps/router/paths.js:19
|
3973 |
+
__( 'General Sitemap', 'all-in-one-seo-pack' ),
|
3974 |
|
3975 |
+
// Reference: src/vue/pages/sitemaps/router/paths.js:48
|
3976 |
+
__( 'HTML Sitemap', 'all-in-one-seo-pack' ),
|
3977 |
|
3978 |
+
// Reference: src/vue/pages/sitemaps/router/paths.js:57
|
3979 |
+
__( 'RSS Sitemap', 'all-in-one-seo-pack' ),
|
3980 |
|
3981 |
+
// Reference: src/vue/pages/settings/router/paths.js:19
|
3982 |
+
__( 'General Settings', 'all-in-one-seo-pack' ),
|
3983 |
|
3984 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:209
|
3985 |
+
__( 'Social meta for Categories, Tags and Custom Taxonomies', 'all-in-one-seo-pack' ),
|
3986 |
|
3987 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:212
|
3988 |
+
__( 'There are no new notifications at this moment.', 'all-in-one-seo-pack' ),
|
3989 |
|
3990 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:213
|
3991 |
+
__( 'See all dismissed notifications.', 'all-in-one-seo-pack' ),
|
3992 |
|
3993 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:214
|
3994 |
+
__( 'SEO Site Score', 'all-in-one-seo-pack' ),
|
3995 |
|
3996 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:215
|
3997 |
+
__( 'Support', 'all-in-one-seo-pack' ),
|
3998 |
|
3999 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:217
|
4000 |
+
/* Translators: 1 - The plugin name ("All in One SEO"). */
|
4001 |
+
__( 'Read the %1$s user guide', 'all-in-one-seo-pack' ),
|
4002 |
|
4003 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:218
|
4004 |
+
__( 'Access our Premium Support', 'all-in-one-seo-pack' ),
|
4005 |
|
4006 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:219
|
4007 |
+
__( 'View the Changelog', 'all-in-one-seo-pack' ),
|
4008 |
|
4009 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:220
|
4010 |
+
__( 'Watch video tutorials', 'all-in-one-seo-pack' ),
|
4011 |
|
4012 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:221
|
4013 |
+
__( 'Getting started? Read the Beginners Guide', 'all-in-one-seo-pack' ),
|
4014 |
|
4015 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:222
|
4016 |
+
__( 'Quicklinks', 'all-in-one-seo-pack' ),
|
4017 |
|
4018 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:223
|
4019 |
+
__( 'You can use these quicklinks to quickly access our settings pages to adjust your site\'s SEO settings.', 'all-in-one-seo-pack' ),
|
4020 |
|
4021 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:225
|
4022 |
+
__( 'Configure how your website content will look in Google, Bing and other search engines.', 'all-in-one-seo-pack' ),
|
4023 |
|
4024 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:227
|
4025 |
+
__( 'Check how your site scores with our SEO analyzer and compare against your competitor\'s site.', 'all-in-one-seo-pack' ),
|
4026 |
|
4027 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:228
|
4028 |
+
__( 'Improve local SEO rankings with schema for business address, open hours, contact, and more.', 'all-in-one-seo-pack' ),
|
4029 |
|
4030 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:230
|
4031 |
+
__( 'Setup Open Graph for Facebook, Twitter, etc. to show the right content / thumbnail preview.', 'all-in-one-seo-pack' ),
|
4032 |
|
4033 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:231
|
4034 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:134
|
4035 |
+
__( 'Tools', 'all-in-one-seo-pack' ),
|
4036 |
|
4037 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:232
|
4038 |
+
__( 'Fine-tune your site with our powerful tools including Robots.txt editor, import/export and more.', 'all-in-one-seo-pack' ),
|
4039 |
|
4040 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:234
|
4041 |
+
__( 'Manage all of your sitemap settings, including XML, Video, News and more.', 'all-in-one-seo-pack' ),
|
4042 |
|
4043 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:236
|
4044 |
+
/* Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro". */
|
4045 |
+
__( 'Get more features in %1$s %2$s:', 'all-in-one-seo-pack' ),
|
4046 |
|
4047 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:238
|
4048 |
+
/* Translators: 1 - "Pro", 2 - A percentage ("50%"). */
|
4049 |
+
__( 'Upgrade to %1$s and Save %2$s', 'all-in-one-seo-pack' ),
|
4050 |
|
4051 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:240
|
4052 |
+
__( 'Relaunch Setup Wizard', 'all-in-one-seo-pack' ),
|
4053 |
|
4054 |
+
// Reference: src/vue/pages/dashboard/views/Main.vue:249
|
4055 |
+
/* Translators: 1 - A number representing the remaining notifications. */
|
4056 |
+
__( 'You have %1$s more notifications', 'all-in-one-seo-pack' ),
|
4057 |
|
4058 |
+
// Reference: src/vue/pages/tools/views/BadBotBlocker.vue:90
|
4059 |
+
__( 'Block Bad Bots using HTTP', 'all-in-one-seo-pack' ),
|
4060 |
|
4061 |
+
// Reference: src/vue/pages/tools/views/BadBotBlocker.vue:91
|
4062 |
+
__( 'Block Referral Spam using HTTP', 'all-in-one-seo-pack' ),
|
4063 |
|
4064 |
+
// Reference: src/vue/pages/tools/views/BadBotBlocker.vue:92
|
4065 |
+
__( 'Track Blocked Bots', 'all-in-one-seo-pack' ),
|
|
|
4066 |
|
4067 |
+
// Reference: src/vue/pages/tools/views/BadBotBlocker.vue:93
|
4068 |
+
__( 'Use Custom Blocklists', 'all-in-one-seo-pack' ),
|
4069 |
|
4070 |
+
// Reference: src/vue/pages/tools/views/BadBotBlocker.vue:94
|
4071 |
+
__( 'User Agent Blocklist', 'all-in-one-seo-pack' ),
|
|
|
4072 |
|
4073 |
+
// Reference: src/vue/pages/tools/views/BadBotBlocker.vue:95
|
4074 |
+
__( 'Referer Blocklist', 'all-in-one-seo-pack' ),
|
4075 |
|
4076 |
+
// Reference: src/vue/pages/tools/views/BadBotBlocker.vue:96
|
4077 |
+
__( 'Blocked Bots Log', 'all-in-one-seo-pack' ),
|
4078 |
|
4079 |
+
// Reference: src/vue/pages/tools/views/BadBotBlocker.vue:98
|
4080 |
+
/* Translators: 1 - The location of the log file. */
|
4081 |
+
__( 'The log for the blocked bots is located here: %1$s', 'all-in-one-seo-pack' ),
|
4082 |
|
4083 |
+
// Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:322
|
4084 |
+
__( 'Organization Name', 'all-in-one-seo-pack' ),
|
4085 |
|
4086 |
+
// Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:332
|
4087 |
+
__( 'Default Social Share Image', 'all-in-one-seo-pack' ),
|
4088 |
|
4089 |
+
// Reference: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:333
|
4090 |
+
__( 'Your Social Profiles', 'all-in-one-seo-pack' ),
|
4091 |
|
4092 |
+
// Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:122
|
4093 |
+
__( 'Import Settings From Other Plugins', 'all-in-one-seo-pack' ),
|
4094 |
|
4095 |
+
// Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:124
|
4096 |
+
/* Translators: 1 - The plugin short name ("AIOSEO"). */
|
4097 |
+
__( 'Choose a plugin to import SEO data directly into %1$s.', 'all-in-one-seo-pack' ),
|
4098 |
|
4099 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/ImportOthers.vue:78
|
4100 |
+
__( 'Select a plugin...', 'all-in-one-seo-pack' ),
|
4101 |
|
4102 |
+
// Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:127
|
4103 |
+
__( 'All Settings', 'all-in-one-seo-pack' ),
|
4104 |
|
4105 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/ImportOthers.vue:81
|
4106 |
+
__( 'not installed', 'all-in-one-seo-pack' ),
|
4107 |
|
4108 |
+
// Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:142
|
4109 |
+
__( 'SEO Settings', 'all-in-one-seo-pack' ),
|
4110 |
|
4111 |
+
// Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:143
|
4112 |
+
__( 'Post Meta', 'all-in-one-seo-pack' ),
|
4113 |
|
4114 |
+
// Reference: src/vue/pages/tools/views/partials/ImportOthers.vue:147
|
4115 |
+
__( 'Term Meta', 'all-in-one-seo-pack' ),
|
4116 |
|
4117 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/ImportOthers.vue:109
|
4118 |
+
/* Translators: 1 - The name of the plugin being imported (e.g "Yoast SEO"). */
|
4119 |
+
__( '%1$s was successfully imported!', 'all-in-one-seo-pack' ),
|
4120 |
|
4121 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/ImportOthers.vue:113
|
4122 |
+
/* Translators: 1 - The name of the plugin being imported (e.g "Yoast SEO"). */
|
4123 |
+
__( 'An error occurred while importing %1$s. Please try again.', 'all-in-one-seo-pack' ),
|
4124 |
|
4125 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/ImportOthers.vue:156
|
4126 |
+
/* Translators: 1 - The name of the plugin (e.g. "Yoast SEO"), 2 - The version of the plugin (e.g. "10.2.3"). */
|
4127 |
+
__( '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' ),
|
4128 |
|
4129 |
+
// Reference: src/vue/pages/setup-wizard/views/Success.vue:134
|
4130 |
+
__( 'Congratulations, your site is now SEO ready!', 'all-in-one-seo-pack' ),
|
4131 |
|
4132 |
+
// Reference: src/vue/pages/setup-wizard/views/Success.vue:135
|
4133 |
+
__( 'Finish Setup and Go to the Dashboard', 'all-in-one-seo-pack' ),
|
4134 |
|
4135 |
+
// Reference: src/vue/pages/setup-wizard/views/Success.vue:136
|
4136 |
+
__( 'Here\'s what to do next:', 'all-in-one-seo-pack' ),
|
4137 |
|
4138 |
+
// Reference: src/vue/pages/setup-wizard/views/Success.vue:137
|
4139 |
+
__( 'Join our Community', 'all-in-one-seo-pack' ),
|
4140 |
|
4141 |
+
// Reference: src/vue/pages/setup-wizard/views/Success.vue:138
|
4142 |
+
__( 'Join on Facebook', 'all-in-one-seo-pack' ),
|
4143 |
|
4144 |
+
// Reference: src/vue/pages/setup-wizard/views/Success.vue:139
|
4145 |
+
__( 'Follow on Twitter', 'all-in-one-seo-pack' ),
|
4146 |
|
4147 |
+
// Reference: src/vue/pages/setup-wizard/views/Success.vue:140
|
4148 |
+
__( 'Read our Step By Step Guide to Improve your SEO Rankings', 'all-in-one-seo-pack' ),
|
4149 |
|
4150 |
+
// Reference: src/vue/pages/setup-wizard/views/Success.vue:142
|
4151 |
+
/* Translators: 1 - Plugin short name ("AIOSEO"). */
|
4152 |
+
__( 'Watch our Guided Tour of %1$s', 'all-in-one-seo-pack' ),
|
4153 |
|
4154 |
+
// Reference: src/vue/pages/setup-wizard/views/Success.vue:143
|
4155 |
+
__( 'See Advanced Settings', 'all-in-one-seo-pack' ),
|
4156 |
|
4157 |
+
// Reference: src/vue/pages/setup-wizard/views/Success.vue:144
|
4158 |
+
__( 'Setup Webmaster Tools', 'all-in-one-seo-pack' ),
|
4159 |
|
4160 |
+
// Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:179
|
4161 |
+
// Reference: src/vue/pages/setup-wizard/views/Success.vue:146
|
4162 |
+
/* Translators: 1 - Opening bold tag. 2 - Closing bold tag. 3 - Opening bold tag. 4 - Percent between 1-100. 5 - Closing bold tag. */
|
4163 |
+
__( '%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' ),
|
4164 |
|
4165 |
+
// Reference: src/vue/pages/setup-wizard/views/Welcome.vue:42
|
4166 |
+
/* Translators: 1 - The plugin short name ("AIOSEO"). */
|
4167 |
+
__( 'Welcome to the %1$s Setup Wizard!', 'all-in-one-seo-pack' ),
|
4168 |
|
4169 |
+
// Reference: src/vue/pages/setup-wizard/views/Welcome.vue:44
|
4170 |
+
/* Translators: 1 - The plugin short name ("AIOSEO"). */
|
4171 |
+
__( '%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' ),
|
4172 |
|
4173 |
+
// Reference: src/vue/pages/setup-wizard/views/Welcome.vue:45
|
4174 |
+
__( 'Let\'s Get Started', 'all-in-one-seo-pack' ),
|
4175 |
|
4176 |
+
// Reference: src/vue/pages/setup-wizard/views/Welcome.vue:46
|
4177 |
+
__( 'Go back to the Dashboard', 'all-in-one-seo-pack' ),
|
4178 |
|
4179 |
+
// Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:250
|
4180 |
+
__( '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' ),
|
4181 |
|
4182 |
+
// Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:251
|
4183 |
+
__( 'Google Snippet Preview', 'all-in-one-seo-pack' ),
|
4184 |
|
4185 |
+
// Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:252
|
4186 |
+
__( 'Edit Title and Description', 'all-in-one-seo-pack' ),
|
|
|
4187 |
|
4188 |
+
// Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:257
|
4189 |
+
__( 'Is the site under construction or live (ready to be indexed)?', 'all-in-one-seo-pack' ),
|
4190 |
|
4191 |
+
// Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:258
|
4192 |
+
__( 'Under Construction', 'all-in-one-seo-pack' ),
|
4193 |
|
4194 |
+
// Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:259
|
4195 |
+
__( 'Live Site', 'all-in-one-seo-pack' ),
|
4196 |
|
4197 |
+
// Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:9
|
4198 |
+
__( 'Enable Sitemap', 'all-in-one-seo-pack' ),
|
4199 |
|
4200 |
+
// Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:262
|
4201 |
+
__( 'Do you have multiple authors?', 'all-in-one-seo-pack' ),
|
4202 |
|
4203 |
+
// Reference: src/vue/pages/setup-wizard/views/SearchAppearance.vue:263
|
4204 |
+
__( 'Redirect attachment pages?', 'all-in-one-seo-pack' ),
|
4205 |
|
4206 |
+
// Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:82
|
4207 |
+
/* Translators: 1 - The plugin short name ("AIOSEO"). */
|
4208 |
+
__( 'Import / Restore %1$s Settings', 'all-in-one-seo-pack' ),
|
4209 |
|
4210 |
+
// Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:83
|
4211 |
+
__( 'Import from a JSON or INI file...', 'all-in-one-seo-pack' ),
|
4212 |
|
4213 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/ImportAioseo.vue:84
|
4214 |
+
// Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:84
|
4215 |
+
__( 'Choose a File', 'all-in-one-seo-pack' ),
|
4216 |
|
4217 |
+
// Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:85
|
4218 |
+
__( 'Imported settings will overwrite existing settings and will not be merged.', 'all-in-one-seo-pack' ),
|
4219 |
|
4220 |
+
// Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:87
|
4221 |
+
__( 'A JSON or INI file is required to import settings.', 'all-in-one-seo-pack' ),
|
|
|
4222 |
|
4223 |
+
// Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:88
|
4224 |
+
__( 'Success! Your settings have been imported.', 'all-in-one-seo-pack' ),
|
4225 |
|
4226 |
+
// Reference: src/vue/pages/tools/views/partials/ImportAioseo.vue:89
|
4227 |
+
__( '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' ),
|
4228 |
|
4229 |
+
// Reference: src/vue/pages/tools/views/partials/ExportSettings.vue:118
|
4230 |
+
__( 'Export Settings', 'all-in-one-seo-pack' ),
|
|
|
4231 |
|
4232 |
+
// Reference: src/vue/pages/tools/views/partials/ExportSettings.vue:119
|
4233 |
+
__( 'Export All Settings', 'all-in-one-seo-pack' ),
|
|
|
4234 |
|
4235 |
+
// Reference: src/vue/pages/tools/views/partials/ExportSettings.vue:120
|
4236 |
+
__( 'Export All Post Types', 'all-in-one-seo-pack' ),
|
4237 |
|
4238 |
+
// Reference: src/vue/pages/tools/views/SystemStatus.vue:115
|
4239 |
+
__( 'System Status Info', 'all-in-one-seo-pack' ),
|
4240 |
|
4241 |
+
// Reference: src/vue/pages/tools/views/SystemStatus.vue:116
|
4242 |
+
__( 'Download System Info File', 'all-in-one-seo-pack' ),
|
4243 |
|
4244 |
+
// Reference: src/vue/pages/tools/views/SystemStatus.vue:117
|
4245 |
+
__( 'Copy to Clipboard', 'all-in-one-seo-pack' ),
|
4246 |
|
4247 |
+
// Reference: src/vue/pages/tools/views/SystemStatus.vue:118
|
4248 |
+
__( 'Email Debug Information', 'all-in-one-seo-pack' ),
|
4249 |
|
4250 |
+
// Reference: src/vue/pages/tools/views/SystemStatus.vue:119
|
4251 |
+
__( 'Submit', 'all-in-one-seo-pack' ),
|
4252 |
|
4253 |
+
// Reference: src/vue/pages/tools/views/SystemStatus.vue:120
|
4254 |
+
__( 'WordPress', 'all-in-one-seo-pack' ),
|
4255 |
|
4256 |
+
// Reference: src/vue/pages/tools/views/SystemStatus.vue:121
|
4257 |
+
__( 'Server Info', 'all-in-one-seo-pack' ),
|
4258 |
|
4259 |
+
// Reference: src/vue/pages/tools/views/SystemStatus.vue:122
|
4260 |
+
__( 'Active Theme', 'all-in-one-seo-pack' ),
|
4261 |
|
4262 |
+
// Reference: src/vue/pages/tools/views/SystemStatus.vue:123
|
4263 |
+
__( 'Must-Use Plugins', 'all-in-one-seo-pack' ),
|
4264 |
|
4265 |
+
// Reference: src/vue/pages/tools/views/SystemStatus.vue:124
|
4266 |
+
__( 'Active Plugins', 'all-in-one-seo-pack' ),
|
|
|
4267 |
|
4268 |
+
// Reference: src/vue/pages/tools/views/SystemStatus.vue:125
|
4269 |
+
__( 'Inactive Plugins', 'all-in-one-seo-pack' ),
|
4270 |
|
4271 |
+
// Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:176
|
4272 |
+
__( 'Click here', 'all-in-one-seo-pack' ),
|
|
|
4273 |
|
4274 |
+
// Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:178
|
4275 |
+
/* Translators: 1 - The addon or plugin name. */
|
4276 |
+
__( 'Install %1$s', 'all-in-one-seo-pack' ),
|
4277 |
|
4278 |
+
// Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:186
|
4279 |
+
/* Translators: 1 - The name of one of our partner plugins. */
|
4280 |
+
__( '%1$s is Installed & Active', 'all-in-one-seo-pack' ),
|
4281 |
|
4282 |
+
// Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:187
|
4283 |
+
__( 'Launch Setup Wizard', 'all-in-one-seo-pack' ),
|
|
|
4284 |
|
4285 |
+
// Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:198
|
4286 |
+
__( 'The Best Google Analytics Plugin for WordPress', 'all-in-one-seo-pack' ),
|
4287 |
|
4288 |
+
// Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:200
|
4289 |
+
/* Translators: 1 - The name of one of our partner plugins, 2 - The name of one of our partner plugins. */
|
4290 |
+
__( '%1$s connects AIOSEO to Google Analytics, providing a powerful integration. %2$s is a sister company of AIOSEO.', 'all-in-one-seo-pack' ),
|
4291 |
|
4292 |
+
// Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:201
|
4293 |
+
__( 'Quick & Easy Google Analytics Setup', 'all-in-one-seo-pack' ),
|
|
|
4294 |
|
4295 |
+
// Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:202
|
4296 |
+
__( 'Google Analytics Dashboard + Real Time Stats', 'all-in-one-seo-pack' ),
|
4297 |
|
4298 |
+
// Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:203
|
4299 |
+
__( 'Google Analytics Enhanced Ecommerce Tracking', 'all-in-one-seo-pack' ),
|
|
|
4300 |
|
4301 |
+
// Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:204
|
4302 |
+
__( 'Universal Tracking for AMP and Instant Articles', 'all-in-one-seo-pack' ),
|
4303 |
|
4304 |
+
// Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:205
|
4305 |
+
__( 'Install &', 'all-in-one-seo-pack' ),
|
4306 |
|
4307 |
+
// Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:207
|
4308 |
+
/* Translators: 1 - The name of one of our partner plugins. */
|
4309 |
+
__( 'Activate %1$s', 'all-in-one-seo-pack' ),
|
4310 |
|
4311 |
+
// Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:209
|
4312 |
+
/* Translators: 1 - The name of one of our partner plugins. */
|
4313 |
+
__( '%1$s shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions.', 'all-in-one-seo-pack' ),
|
4314 |
|
4315 |
+
// Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:213
|
4316 |
+
/* Translators: 1 - The name of one of our partner plugins. */
|
4317 |
+
__( 'Setup %1$s', 'all-in-one-seo-pack' ),
|
4318 |
|
4319 |
+
// Reference: src/vue/pages/monsterinsights/views/Monsterinsights.vue:217
|
4320 |
+
/* Translators: 1 - The name of one of our partner plugins. */
|
4321 |
+
__( '%1$s has an intuitive setup wizard to guide you through the setup process.', 'all-in-one-seo-pack' ),
|
4322 |
|
4323 |
+
// Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:417
|
4324 |
+
/* Translators: 1 - The plugin name ("All in One SEO"). */
|
4325 |
+
__( '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' ),
|
4326 |
|
4327 |
+
// Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:419
|
4328 |
+
__( 'Sitemap Settings', 'all-in-one-seo-pack' ),
|
4329 |
|
4330 |
+
// Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:420
|
4331 |
+
__( 'Enable Sitemap Indexes', 'all-in-one-seo-pack' ),
|
4332 |
|
4333 |
+
// Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:421
|
4334 |
+
__( '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' ),
|
4335 |
|
4336 |
+
// Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:422
|
4337 |
+
__( 'Links Per Sitemap', 'all-in-one-seo-pack' ),
|
4338 |
|
4339 |
+
// Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:11
|
4340 |
+
__( 'Noindexed content will not be displayed in your sitemap.', 'all-in-one-seo-pack' ),
|
|
|
4341 |
|
4342 |
+
// Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:12
|
4343 |
+
__( 'Do you get a blank sitemap or 404 error?', 'all-in-one-seo-pack' ),
|
4344 |
|
4345 |
+
// Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:425
|
4346 |
+
__( 'Open Sitemap', 'all-in-one-seo-pack' ),
|
|
|
4347 |
|
4348 |
+
// Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:426
|
4349 |
+
__( 'Allows you to specify the maximum number of posts in a sitemap (up to 50,000).', 'all-in-one-seo-pack' ),
|
4350 |
|
4351 |
+
// Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:427
|
4352 |
+
__( 'Automatically Ping Search Engines', 'all-in-one-seo-pack' ),
|
4353 |
|
4354 |
+
// Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:430
|
4355 |
+
__( 'Date Archive Sitemap', 'all-in-one-seo-pack' ),
|
4356 |
|
4357 |
+
// Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:431
|
4358 |
+
__( 'Include Date Archives in your sitemap.', 'all-in-one-seo-pack' ),
|
4359 |
|
4360 |
+
// Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:432
|
4361 |
+
__( 'Author Sitemap', 'all-in-one-seo-pack' ),
|
4362 |
|
4363 |
+
// Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:433
|
4364 |
+
__( 'Include Author Archives in your sitemap.', 'all-in-one-seo-pack' ),
|
|
|
4365 |
|
4366 |
+
// Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:435
|
4367 |
+
__( 'Select which Post Types appear in your sitemap.', 'all-in-one-seo-pack' ),
|
4368 |
|
4369 |
+
// Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:437
|
4370 |
+
__( 'Select which Taxonomies appear in your sitemap.', 'all-in-one-seo-pack' ),
|
4371 |
|
4372 |
+
// Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:438
|
4373 |
+
__( 'Additional Pages', 'all-in-one-seo-pack' ),
|
4374 |
|
4375 |
+
// Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:439
|
4376 |
+
__( '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' ),
|
4377 |
|
4378 |
+
// Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:443
|
4379 |
+
__( 'Any posts that are assigned to these terms will also be excluded from your sitemap.', 'all-in-one-seo-pack' ),
|
4380 |
|
4381 |
+
// Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:445
|
4382 |
+
__( 'Grouped', 'all-in-one-seo-pack' ),
|
4383 |
|
4384 |
+
// Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:446
|
4385 |
+
__( 'Post Type Priority Score', 'all-in-one-seo-pack' ),
|
4386 |
|
4387 |
+
// Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:447
|
4388 |
+
__( 'Taxonomy Priority Score', 'all-in-one-seo-pack' ),
|
4389 |
|
4390 |
+
// Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:448
|
4391 |
+
__( 'Exclude Images', 'all-in-one-seo-pack' ),
|
4392 |
|
4393 |
+
// Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:449
|
4394 |
+
__( 'Exclude Images from your sitemap.', 'all-in-one-seo-pack' ),
|
4395 |
|
4396 |
+
// Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:450
|
4397 |
+
__( 'Dynamically Generate', 'all-in-one-seo-pack' ),
|
4398 |
|
4399 |
+
// Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:451
|
4400 |
+
__( 'Dynamically creates the XML Sitemap instead of using a static file.', 'all-in-one-seo-pack' ),
|
4401 |
|
4402 |
+
// Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:452
|
4403 |
+
__( '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' ),
|
4404 |
|
4405 |
+
// Reference: src/vue/pages/sitemaps/views/GeneralSitemap.vue:453
|
4406 |
+
__( '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' ),
|
4407 |
|
4408 |
+
// Reference: src/vue/pages/redirects/views/pro/RedirectsActivate.vue:83
|
4409 |
+
__( 'Site Aliases', 'all-in-one-seo-pack' ),
|
4410 |
|
4411 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/SiteAliases.vue:93
|
4412 |
+
__( 'Site aliases are disabled because you have relocated your site to another domain.', 'all-in-one-seo-pack' ),
|
4413 |
|
4414 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/SiteAliases.vue:94
|
4415 |
+
__( 'A site alias is another domain that you want to be redirected to this site. For example, an old domain, or a subdomain. This will redirect all URLs, including WordPress login and admin. You will need to configure your system (DNS and server) to pass requests for these domains to this WordPress install.', 'all-in-one-seo-pack' ),
|
4416 |
|
4417 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/SiteAliases.vue:95
|
4418 |
+
__( 'Aliased Domain', 'all-in-one-seo-pack' ),
|
|
|
4419 |
|
4420 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/SiteAliases.vue:96
|
4421 |
+
__( 'Alias', 'all-in-one-seo-pack' ),
|
|
|
4422 |
|
4423 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/SiteAliases.vue:99
|
4424 |
+
__( 'Add an alias redirect by clicking in \'Add New\'.', 'all-in-one-seo-pack' ),
|
|
|
4425 |
|
4426 |
+
// Reference: src/vue/pages/tools/views/RobotsEditor.vue:242
|
4427 |
+
/* Translators: 1 - The plugin short name ("AIOSEO"), 2 - The plugin short name ("AIOSEO"). */
|
4428 |
+
__( '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' ),
|
4429 |
|
4430 |
+
// Reference: src/vue/pages/tools/views/RobotsEditor.vue:244
|
4431 |
+
/* Translators: 1 - The plugin name ("All in One SEO"). */
|
4432 |
+
__( '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' ),
|
4433 |
|
4434 |
+
// Reference: src/vue/pages/tools/views/RobotsEditor.vue:245
|
4435 |
+
__( 'Enable Custom Robots.txt', 'all-in-one-seo-pack' ),
|
4436 |
|
4437 |
+
// Reference: src/vue/pages/tools/views/RobotsEditor.vue:246
|
4438 |
+
__( 'Duplicate or invalid entries have been detected! Please check your rules and try again.', 'all-in-one-seo-pack' ),
|
4439 |
|
4440 |
+
// Reference: src/vue/pages/tools/views/RobotsEditor.vue:248
|
4441 |
+
__( 'Rule', 'all-in-one-seo-pack' ),
|
|
|
4442 |
|
4443 |
+
// Reference: src/vue/pages/tools/views/RobotsEditor.vue:249
|
4444 |
+
__( 'Directory Path', 'all-in-one-seo-pack' ),
|
4445 |
|
4446 |
+
// Reference: src/vue/pages/tools/views/RobotsEditor.vue:250
|
4447 |
+
__( 'Allow', 'all-in-one-seo-pack' ),
|
|
|
4448 |
|
4449 |
+
// Reference: src/vue/pages/tools/views/RobotsEditor.vue:251
|
4450 |
+
__( 'Disallow', 'all-in-one-seo-pack' ),
|
|
|
4451 |
|
4452 |
+
// Reference: src/vue/pages/tools/views/RobotsEditor.vue:252
|
4453 |
+
__( 'Add Rule', 'all-in-one-seo-pack' ),
|
4454 |
|
4455 |
+
// Reference: src/vue/pages/tools/views/RobotsEditor.vue:253
|
4456 |
+
__( 'Delete Rule', 'all-in-one-seo-pack' ),
|
4457 |
|
4458 |
+
// Reference: src/vue/pages/tools/views/RobotsEditor.vue:254
|
4459 |
+
__( 'Robots.txt Preview:', 'all-in-one-seo-pack' ),
|
4460 |
|
4461 |
+
// Reference: src/vue/pages/tools/views/RobotsEditor.vue:255
|
4462 |
+
__( 'Open Robots.txt', 'all-in-one-seo-pack' ),
|
4463 |
|
4464 |
+
// Reference: src/vue/pages/tools/views/RobotsEditor.vue:257
|
4465 |
+
/* Translators: 1 - The plugin short name ("AIOSEO"), 2 - The plugin short name ("AIOSEO"). */
|
4466 |
+
__( '%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' ),
|
4467 |
|
4468 |
+
// Reference: src/vue/pages/tools/views/RobotsEditor.vue:258
|
4469 |
+
__( 'Import and Delete', 'all-in-one-seo-pack' ),
|
4470 |
|
4471 |
+
// Reference: src/vue/pages/tools/views/RobotsEditor.vue:290
|
4472 |
+
/* Translators: 1 - The url to the main site. */
|
4473 |
+
__( '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' ),
|
4474 |
|
4475 |
+
// Reference: src/vue/pages/tools/views/RobotsEditor.vue:293
|
4476 |
+
__( 'It looks like you are missing the proper rewrite rules for the robots.txt file.', 'all-in-one-seo-pack' ),
|
|
|
4477 |
|
4478 |
+
// Reference: src/vue/pages/tools/views/RobotsEditor.vue:297
|
4479 |
+
/* Translators: 1 - Opening link tag. 2 - Closing link tag. */
|
4480 |
+
__( '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' ),
|
4481 |
|
4482 |
+
// Reference: src/vue/pages/tools/views/RobotsEditor.vue:300
|
4483 |
+
/* Translators: 1 - Opening link tag, 2 - Closing link tag. */
|
4484 |
+
__( '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' ),
|
4485 |
|
4486 |
+
// Reference: src/vue/pages/sitemaps/views/pro/VideoSitemap.vue:409
|
4487 |
+
__( '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' ),
|
4488 |
|
4489 |
+
// Reference: src/vue/pages/settings/views/partials/Breadcrumbs/DateArchives.vue:99
|
4490 |
+
// Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Taxonomies.vue:105
|
4491 |
+
__( 'Use a default template', 'all-in-one-seo-pack' ),
|
4492 |
|
4493 |
+
// Reference: src/vue/pages/settings/views/partials/Breadcrumbs/DateArchives.vue:100
|
4494 |
+
// Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Taxonomies.vue:106
|
4495 |
+
__( 'Show homepage link', 'all-in-one-seo-pack' ),
|
4496 |
|
4497 |
+
// Reference: src/vue/pages/settings/views/partials/Breadcrumbs/DateArchives.vue:101
|
4498 |
+
// Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Taxonomies.vue:107
|
4499 |
+
__( 'Show prefix link', 'all-in-one-seo-pack' ),
|
4500 |
|
4501 |
+
// Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Taxonomies.vue:108
|
4502 |
+
__( 'Show parent item link', 'all-in-one-seo-pack' ),
|
4503 |
|
4504 |
+
// Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Taxonomies.vue:109
|
4505 |
+
__( 'Single item template', 'all-in-one-seo-pack' ),
|
4506 |
|
4507 |
+
// Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Taxonomies.vue:110
|
4508 |
+
__( 'Parent item template', 'all-in-one-seo-pack' ),
|
4509 |
|
4510 |
+
// Reference: src/vue/pages/settings/views/partials/Breadcrumbs/SearchArchives.vue:68
|
4511 |
+
__( 'search term', 'all-in-one-seo-pack' ),
|
4512 |
|
4513 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:303
|
4514 |
+
// Reference: src/vue/pages/settings/views/pro/Breadcrumbs.vue:49
|
4515 |
+
__( 'Breadcrumb Templates', 'all-in-one-seo-pack' ),
|
4516 |
|
4517 |
+
// Reference: src/vue/pages/settings/views/pro/Breadcrumbs.vue:50
|
4518 |
+
__( 'Override the default template for breadcrumbs on your site using our easy-to-use template editor.', 'all-in-one-seo-pack' ),
|
|
|
4519 |
|
4520 |
+
// Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:136
|
4521 |
+
__( 'Backup Settings', 'all-in-one-seo-pack' ),
|
|
|
4522 |
|
4523 |
+
// Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:137
|
4524 |
+
__( 'Are you sure you want to delete this backup?', 'all-in-one-seo-pack' ),
|
|
|
4525 |
|
4526 |
+
// Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:138
|
4527 |
+
__( 'Are you sure you want to restore this backup?', 'all-in-one-seo-pack' ),
|
4528 |
|
4529 |
+
// Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:139
|
4530 |
+
__( 'Yes, I want to delete this backup', 'all-in-one-seo-pack' ),
|
4531 |
|
4532 |
+
// Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:140
|
4533 |
+
__( 'Yes, I want to restore this backup', 'all-in-one-seo-pack' ),
|
4534 |
|
4535 |
+
// Reference: src/vue/pages/redirects/mixins/pro/RedirectsLogs.js:23
|
4536 |
+
__( 'No, I changed my mind', 'all-in-one-seo-pack' ),
|
4537 |
|
4538 |
+
// Reference: src/vue/pages/redirects/mixins/pro/RedirectsLogs.js:21
|
4539 |
+
__( 'This action cannot be undone.', 'all-in-one-seo-pack' ),
|
4540 |
|
4541 |
+
// Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:143
|
4542 |
+
__( 'You have no saved backups.', 'all-in-one-seo-pack' ),
|
4543 |
|
4544 |
+
// Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:144
|
4545 |
+
__( 'Create Backup', 'all-in-one-seo-pack' ),
|
4546 |
|
4547 |
+
// Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:145
|
4548 |
+
__( 'Restore', 'all-in-one-seo-pack' ),
|
4549 |
|
4550 |
+
// Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:147
|
4551 |
+
__( 'Success! The backup was deleted.', 'all-in-one-seo-pack' ),
|
4552 |
|
4553 |
+
// Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:148
|
4554 |
+
__( 'Success! The backup was restored.', 'all-in-one-seo-pack' ),
|
4555 |
|
4556 |
+
// Reference: src/vue/pages/tools/views/partials/BackupSettings.vue:211
|
4557 |
+
/* Translators: 1 Date, 2 - Timestamp. */
|
4558 |
+
__( '%1$s at %2$s', 'all-in-one-seo-pack' ),
|
4559 |
|
4560 |
+
// Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Advanced.vue:71
|
4561 |
+
__( 'Show Paged Breadcrumb', 'all-in-one-seo-pack' ),
|
4562 |
|
4563 |
+
// Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Advanced.vue:72
|
4564 |
+
__( 'Show a breadcrumb for the current page.', 'all-in-one-seo-pack' ),
|
4565 |
|
4566 |
+
// Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Advanced.vue:74
|
4567 |
+
__( 'Format the label used for the page link.', 'all-in-one-seo-pack' ),
|
4568 |
|
4569 |
+
// Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Advanced.vue:75
|
4570 |
+
__( 'Unselected Taxonomy Terms', 'all-in-one-seo-pack' ),
|
4571 |
|
4572 |
+
// Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Advanced.vue:76
|
4573 |
+
__( 'Show/hide parent terms that are not explicitly selected in your post.', 'all-in-one-seo-pack' ),
|
4574 |
|
4575 |
+
// Reference: src/vue/pages/settings/views/partials/Breadcrumbs/AuthorArchives.vue:67
|
4576 |
+
__( 'Author name', 'all-in-one-seo-pack' ),
|
4577 |
|
4578 |
+
// Reference: src/vue/pages/settings/views/partials/Breadcrumbs/AuthorArchives.vue:68
|
4579 |
+
__( 'First name', 'all-in-one-seo-pack' ),
|
4580 |
|
4581 |
+
// Reference: src/vue/pages/settings/views/partials/Breadcrumbs/AuthorArchives.vue:69
|
4582 |
+
__( 'Last name', 'all-in-one-seo-pack' ),
|
4583 |
|
4584 |
+
// Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Archives.vue:37
|
4585 |
+
__( 'Date Archives', 'all-in-one-seo-pack' ),
|
4586 |
|
4587 |
+
// Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Archives.vue:43
|
4588 |
+
__( 'Search Archives', 'all-in-one-seo-pack' ),
|
4589 |
|
4590 |
+
// Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Archives.vue:55
|
4591 |
+
__( 'Author Archives', 'all-in-one-seo-pack' ),
|
4592 |
|
4593 |
+
// Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Archives.vue:61
|
4594 |
+
__( 'Blog Archive', 'all-in-one-seo-pack' ),
|
4595 |
|
4596 |
+
// Reference: src/vue/pages/settings/views/partials/Breadcrumbs/Archives.vue:67
|
4597 |
+
__( 'Post Type Archives', 'all-in-one-seo-pack' ),
|
4598 |
|
4599 |
+
// Reference: src/vue/pages/settings/views/lite/AccessControl.vue:68
|
4600 |
+
__( 'WP Roles (Editor, Author)', 'all-in-one-seo-pack' ),
|
4601 |
|
4602 |
+
// Reference: src/vue/pages/settings/views/lite/AccessControl.vue:69
|
4603 |
+
__( 'SEO Manager Role', 'all-in-one-seo-pack' ),
|
4604 |
|
4605 |
+
// Reference: src/vue/pages/settings/views/lite/AccessControl.vue:70
|
4606 |
+
__( 'SEO Editor Role', 'all-in-one-seo-pack' ),
|
4607 |
|
4608 |
+
// Reference: src/vue/pages/settings/views/lite/AccessControl.vue:71
|
4609 |
+
__( 'Default settings that just work', 'all-in-one-seo-pack' ),
|
4610 |
|
4611 |
+
// Reference: src/vue/pages/settings/views/lite/AccessControl.vue:72
|
4612 |
+
__( 'Granular controls per role', 'all-in-one-seo-pack' ),
|
4613 |
|
4614 |
+
// Reference: src/vue/pages/settings/views/lite/AccessControl.vue:73
|
4615 |
+
__( 'Upgrade to Pro and Unlock Access Control', 'all-in-one-seo-pack' ),
|
|
|
4616 |
|
4617 |
+
// Reference: src/vue/pages/settings/views/lite/AccessControl.vue:75
|
4618 |
+
/* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro". */
|
4619 |
+
__( 'Access Control is only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
|
4620 |
|
4621 |
+
// Reference: src/vue/pages/settings/views/GeneralSettings.vue:49
|
4622 |
+
__( 'License', 'all-in-one-seo-pack' ),
|
4623 |
|
4624 |
+
// Reference: src/vue/pages/settings/views/GeneralSettings.vue:59
|
4625 |
+
__( 'Setup Wizard', 'all-in-one-seo-pack' ),
|
4626 |
|
4627 |
+
// Reference: src/vue/pages/settings/views/GeneralSettings.vue:62
|
4628 |
+
/* Translators: 1 - The plugin name ("All in One SEO") */
|
4629 |
+
__( 'Use our configuration wizard to properly set up %1$s with your WordPress website.', 'all-in-one-seo-pack' ),
|
4630 |
|
4631 |
+
// Reference: src/vue/pages/settings/views/RssContent.vue:91
|
4632 |
+
__( 'Automatically add content to your site\'s RSS feed.', 'all-in-one-seo-pack' ),
|
|
|
|
|
4633 |
|
4634 |
+
// Reference: src/vue/pages/settings/views/RssContent.vue:92
|
4635 |
+
__( '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' ),
|
|
|
4636 |
|
4637 |
+
// Reference: src/vue/pages/settings/views/RssContent.vue:94
|
4638 |
+
__( 'RSS Content Settings', 'all-in-one-seo-pack' ),
|
4639 |
|
4640 |
+
// Reference: src/vue/pages/settings/views/RssContent.vue:95
|
4641 |
+
__( 'Open Your RSS Feed', 'all-in-one-seo-pack' ),
|
4642 |
|
4643 |
+
// Reference: src/vue/pages/settings/views/RssContent.vue:96
|
4644 |
+
__( 'RSS Before Content', 'all-in-one-seo-pack' ),
|
4645 |
|
4646 |
+
// Reference: src/vue/pages/settings/views/RssContent.vue:97
|
4647 |
+
__( 'RSS After Content', 'all-in-one-seo-pack' ),
|
4648 |
|
4649 |
+
// Reference: src/vue/pages/settings/views/RssContent.vue:98
|
4650 |
+
__( 'Add content before each post in your site feed.', 'all-in-one-seo-pack' ),
|
4651 |
|
4652 |
+
// Reference: src/vue/pages/settings/views/RssContent.vue:99
|
4653 |
+
__( 'Add content after each post in your site feed.', 'all-in-one-seo-pack' ),
|
|
|
4654 |
|
4655 |
+
// Reference: src/vue/pages/redirects/views/Redirects.vue:31
|
4656 |
+
__( 'Redirects Settings', 'all-in-one-seo-pack' ),
|
4657 |
|
4658 |
+
// Reference: src/vue/pages/settings/views/lite/Breadcrumbs.vue:64
|
4659 |
+
__( 'Upgrade to Pro and Unlock Breadcrumb Templates', 'all-in-one-seo-pack' ),
|
|
|
4660 |
|
4661 |
+
// Reference: src/vue/pages/settings/views/lite/Breadcrumbs.vue:65
|
4662 |
+
__( 'Breadcrumb Templates are only available', 'all-in-one-seo-pack' ),
|
|
|
4663 |
|
4664 |
+
// Reference: src/vue/pages/settings/views/lite/Breadcrumbs.vue:67
|
4665 |
/* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro". */
|
4666 |
+
__( 'for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
|
|
|
|
|
|
|
4667 |
|
4668 |
+
// Reference: src/vue/pages/settings/views/lite/Breadcrumbs.vue:68
|
4669 |
+
__( 'Our template editor will allow you to easily customize how breadcrumbs are displayed on your site based on each post type or taxonomy.', 'all-in-one-seo-pack' ),
|
4670 |
|
4671 |
+
// Reference: src/vue/pages/settings/views/lite/Breadcrumbs.vue:71
|
4672 |
+
__( 'Custom HTML templates', 'all-in-one-seo-pack' ),
|
4673 |
|
4674 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:284
|
4675 |
+
__( 'TruSEO Score & Content', 'all-in-one-seo-pack' ),
|
4676 |
|
4677 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:285
|
4678 |
+
__( 'Enable our TruSEO score to help you optimize your content for maximum traffic.', 'all-in-one-seo-pack' ),
|
4679 |
|
4680 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:286
|
4681 |
+
__( 'Headline Analyzer', 'all-in-one-seo-pack' ),
|
4682 |
|
4683 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:287
|
4684 |
+
__( 'Enable our Headline Analyzer to help you write irrestible headlines and rank better in search results.', 'all-in-one-seo-pack' ),
|
4685 |
|
4686 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:289
|
4687 |
+
__( 'Post Type Columns', 'all-in-one-seo-pack' ),
|
4688 |
|
4689 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:292
|
4690 |
+
/* Translators: 1 - Plugin Short Name ("AIOSEO"). */
|
4691 |
+
__( 'Select which Post Types you want to use the %1$s columns with.', 'all-in-one-seo-pack' ),
|
4692 |
|
4693 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:293
|
4694 |
+
__( 'Usage Tracking', 'all-in-one-seo-pack' ),
|
4695 |
|
4696 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:294
|
4697 |
+
__( 'Admin Bar Menu', 'all-in-one-seo-pack' ),
|
4698 |
|
4699 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:296
|
4700 |
+
/* Translators: 1 - Plugin Short Name ("AIOSEO"). */
|
4701 |
+
__( 'This adds %1$s to the admin toolbar for easy access to your SEO settings.', 'all-in-one-seo-pack' ),
|
4702 |
|
4703 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:297
|
4704 |
+
__( 'Dashboard Widget', 'all-in-one-seo-pack' ),
|
|
|
4705 |
|
4706 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:298
|
4707 |
+
__( 'This displays an SEO News widget on the dashboard.', 'all-in-one-seo-pack' ),
|
4708 |
|
4709 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:299
|
4710 |
+
__( 'Announcements', 'all-in-one-seo-pack' ),
|
4711 |
|
4712 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:300
|
4713 |
+
__( 'This allows you to hide plugin announcements and update details.', 'all-in-one-seo-pack' ),
|
4714 |
|
4715 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:301
|
4716 |
+
__( 'Automatic Updates', 'all-in-one-seo-pack' ),
|
4717 |
+
|
4718 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:302
|
4719 |
+
__( 'All (recommended)', 'all-in-one-seo-pack' ),
|
4720 |
+
|
4721 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:303
|
4722 |
+
__( 'You are getting the latest features, bugfixes, and security updates as they are released.', 'all-in-one-seo-pack' ),
|
4723 |
+
|
4724 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:304
|
4725 |
+
__( 'Minor Only', 'all-in-one-seo-pack' ),
|
4726 |
+
|
4727 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:305
|
4728 |
+
__( 'You are getting bugfixes and security updates, but not major features.', 'all-in-one-seo-pack' ),
|
4729 |
+
|
4730 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:307
|
4731 |
+
__( 'You will need to manually update everything.', 'all-in-one-seo-pack' ),
|
4732 |
+
|
4733 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:308
|
4734 |
+
__( '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' ),
|
4735 |
+
|
4736 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:310
|
4737 |
+
/* Translators: 1 - Opening HTML link and bold tag, 2 - Closing HTML link and bold tag. */
|
4738 |
+
__( 'Complete documentation on usage tracking is available %1$shere%2$s.', 'all-in-one-seo-pack' ),
|
4739 |
+
|
4740 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:312
|
4741 |
+
/* Translators: 1 - The plugin name ("All in One SEO"), 2 - "Learn more". */
|
4742 |
+
__( 'This Admin Bar feature is only available for licensed %1$s users. %2$s', 'all-in-one-seo-pack' ),
|
4743 |
+
|
4744 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:314
|
4745 |
+
/* Translators: 1 - The plugin name ("All in One SEO"), 2 - "Learn more". */
|
4746 |
+
__( 'The Dashboard Widget feature is only available for licensed %1$s users. %2$s', 'all-in-one-seo-pack' ),
|
4747 |
+
|
4748 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:315
|
4749 |
+
__( 'Taxonomy Columns', 'all-in-one-seo-pack' ),
|
4750 |
+
|
4751 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:318
|
4752 |
+
/* Translators: 1 - Plugin Short Name ("AIOSEO"). */
|
4753 |
+
__( 'Select which Taxonomies you want to use the %1$s columns with.', 'all-in-one-seo-pack' ),
|
4754 |
+
|
4755 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:322
|
4756 |
+
/* Translators: 1 - Plugin Short Name ("AIOSEO"). */
|
4757 |
+
__( 'Uninstall %1$s', 'all-in-one-seo-pack' ),
|
4758 |
+
|
4759 |
+
// Reference: src/vue/pages/settings/views/Advanced.vue:324
|
4760 |
+
/* Translators: 1 - Plugin Short Name ("AIOSEO"). */
|
4761 |
+
__( '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' ),
|
4762 |
+
|
4763 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:237
|
4764 |
+
/* Translators: 1 - Learn more link. */
|
4765 |
+
__( 'Use the following shortcode to display the current breadcrumbs. %1$s', 'all-in-one-seo-pack' ),
|
4766 |
+
|
4767 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:245
|
4768 |
+
/* Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Learn More" link. */
|
4769 |
+
__( 'To add this block, edit a page or post and search for the "%1$s - Breadcrumbs" block. %2$s', 'all-in-one-seo-pack' ),
|
4770 |
+
|
4771 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:254
|
4772 |
+
/* Translators: 1 - Learn more link. */
|
4773 |
+
__( 'Use the following PHP code anywhere in your theme (in the loop) to display the breadcrumbs. %1$s', 'all-in-one-seo-pack' ),
|
4774 |
+
|
4775 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:262
|
4776 |
+
/* Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag, 3 - The plugin short name ("AIOSEO"), 4 - "Learn More" link. */
|
4777 |
+
__( 'To add this widget, visit the %1$swidgets page%2$s and look for the "%3$s - Breadcrumbs" widget. %4$s', 'all-in-one-seo-pack' ),
|
4778 |
+
|
4779 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:272
|
4780 |
+
/* Translators: 1 - The plugin name ("AIOSEO"). */
|
4781 |
+
__( 'Breadcrumbs are an essential part of SEO. By default %1$s will automatically add breadcrumbs to the schema markup that we add to your site and you don\'t need to make any changes for that to work. Breadcrumbs can also be used as a secondary navigation system that tells users where they are on a website relative to the homepage.', 'all-in-one-seo-pack' ),
|
4782 |
+
|
4783 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:274
|
4784 |
+
__( 'The purpose of breadcrumb navigation is to help users navigate around your website. It also helps search engines understand the structure and hierarchy of links on a web page.', 'all-in-one-seo-pack' ),
|
4785 |
+
|
4786 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:275
|
4787 |
+
__( 'Enable Breadcrumbs', 'all-in-one-seo-pack' ),
|
4788 |
+
|
4789 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:276
|
4790 |
+
__( 'Show Breadcrumbs on Your Website', 'all-in-one-seo-pack' ),
|
4791 |
+
|
4792 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:277
|
4793 |
+
__( 'Breadcrumb Settings', 'all-in-one-seo-pack' ),
|
4794 |
+
|
4795 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:280
|
4796 |
+
/* Translators: 1 - The plugin name ("AIOSEO"). */
|
4797 |
+
__( 'These settings will affect all the breadcrumbs displayed by %1$s throughout your site.', 'all-in-one-seo-pack' ),
|
4798 |
+
|
4799 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:282
|
4800 |
+
__( 'Separator', 'all-in-one-seo-pack' ),
|
4801 |
+
|
4802 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:283
|
4803 |
+
__( 'Homepage Link', 'all-in-one-seo-pack' ),
|
4804 |
+
|
4805 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:284
|
4806 |
+
__( 'Homepage label', 'all-in-one-seo-pack' ),
|
4807 |
+
|
4808 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:285
|
4809 |
+
__( 'Label used for homepage link (first item) in breadcrumbs.', 'all-in-one-seo-pack' ),
|
4810 |
+
|
4811 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:286
|
4812 |
+
__( 'Breadcrumb Prefix', 'all-in-one-seo-pack' ),
|
4813 |
+
|
4814 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:287
|
4815 |
+
__( 'Prefix for breadcrumb path.', 'all-in-one-seo-pack' ),
|
4816 |
+
|
4817 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:288
|
4818 |
+
__( 'Archive Format', 'all-in-one-seo-pack' ),
|
4819 |
+
|
4820 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:289
|
4821 |
+
__( 'Format the label used for archives page.', 'all-in-one-seo-pack' ),
|
4822 |
+
|
4823 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:290
|
4824 |
+
__( 'Search Result Format', 'all-in-one-seo-pack' ),
|
4825 |
+
|
4826 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:291
|
4827 |
+
__( 'Format the label used for the search results page.', 'all-in-one-seo-pack' ),
|
4828 |
+
|
4829 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:292
|
4830 |
+
__( '404 Error Format', 'all-in-one-seo-pack' ),
|
4831 |
+
|
4832 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:293
|
4833 |
+
__( 'Format the label used for the 404 error page.', 'all-in-one-seo-pack' ),
|
4834 |
+
|
4835 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:294
|
4836 |
+
__( 'Current Item', 'all-in-one-seo-pack' ),
|
4837 |
+
|
4838 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:295
|
4839 |
+
__( 'Show current item', 'all-in-one-seo-pack' ),
|
4840 |
+
|
4841 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:296
|
4842 |
+
__( 'Link current item', 'all-in-one-seo-pack' ),
|
4843 |
+
|
4844 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:297
|
4845 |
+
__( 'Home', 'all-in-one-seo-pack' ),
|
4846 |
+
|
4847 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:299
|
4848 |
+
__( 'Subcategory', 'all-in-one-seo-pack' ),
|
4849 |
+
|
4850 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:300
|
4851 |
+
__( 'Article Title', 'all-in-one-seo-pack' ),
|
4852 |
+
|
4853 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:301
|
4854 |
+
__( 'search key word goes here', 'all-in-one-seo-pack' ),
|
4855 |
+
|
4856 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:302
|
4857 |
+
__( 'Category Name', 'all-in-one-seo-pack' ),
|
4858 |
+
|
4859 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:304
|
4860 |
+
__( 'Category Hierarchy', 'all-in-one-seo-pack' ),
|
4861 |
+
|
4862 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:305
|
4863 |
+
__( 'Display complete category hierarchy even if not selected on each individual post.', 'all-in-one-seo-pack' ),
|
4864 |
+
|
4865 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:306
|
4866 |
+
__( 'Blog', 'all-in-one-seo-pack' ),
|
4867 |
+
|
4868 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:307
|
4869 |
+
__( 'Blog Page Title', 'all-in-one-seo-pack' ),
|
4870 |
+
|
4871 |
+
// Reference: src/vue/pages/settings/views/Breadcrumbs.vue:308
|
4872 |
+
__( 'Show Blog Home', 'all-in-one-seo-pack' ),
|
4873 |
+
|
4874 |
+
// Reference: src/vue/pages/settings/views/partials/Breadcrumbs/ContentTypes.vue:139
|
4875 |
+
__( 'Taxonomy priority:', 'all-in-one-seo-pack' ),
|
4876 |
+
|
4877 |
+
// Reference: src/vue/pages/settings/views/partials/Breadcrumbs/ContentTypes.vue:140
|
4878 |
+
__( 'Select a taxonomy', 'all-in-one-seo-pack' ),
|
4879 |
+
|
4880 |
+
// Reference: src/vue/pages/settings/views/partials/Breadcrumbs/ContentTypes.vue:141
|
4881 |
+
__( 'Choose taxonomy that should have a priority for this post type.', 'all-in-one-seo-pack' ),
|
4882 |
+
|
4883 |
+
// Reference: src/vue/pages/settings/views/partials/Breadcrumbs/ContentTypes.vue:142
|
4884 |
+
__( 'Show post type archive link', 'all-in-one-seo-pack' ),
|
4885 |
+
|
4886 |
+
// Reference: src/vue/pages/settings/views/partials/Breadcrumbs/ContentTypes.vue:143
|
4887 |
+
__( 'Show taxonomy link', 'all-in-one-seo-pack' ),
|
4888 |
+
|
4889 |
+
// Reference: src/vue/pages/settings/views/partials/Breadcrumbs/DateArchives.vue:102
|
4890 |
+
__( 'Year', 'all-in-one-seo-pack' ),
|
4891 |
+
|
4892 |
+
// Reference: src/vue/pages/settings/views/partials/Breadcrumbs/DateArchives.vue:103
|
4893 |
+
__( 'Month', 'all-in-one-seo-pack' ),
|
4894 |
+
|
4895 |
+
// Reference: src/vue/pages/settings/views/partials/Breadcrumbs/DateArchives.vue:104
|
4896 |
+
__( 'Day', 'all-in-one-seo-pack' ),
|
4897 |
+
|
4898 |
+
// Reference: src/vue/pages/setup-wizard/views/Import.vue:80
|
4899 |
+
__( 'Import data from your current plugins', 'all-in-one-seo-pack' ),
|
4900 |
+
|
4901 |
+
// Reference: src/vue/pages/setup-wizard/views/Import.vue:82
|
4902 |
+
/* Translators: 1 - Plugin short name ("AIOSEO"). */
|
4903 |
+
__( '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' ),
|
4904 |
+
|
4905 |
+
// Reference: src/vue/pages/setup-wizard/views/Import.vue:83
|
4906 |
+
__( 'Import Data and Continue', 'all-in-one-seo-pack' ),
|
4907 |
+
|
4908 |
+
// Reference: src/vue/pages/setup-wizard/views/Category.vue:134
|
4909 |
+
__( 'Which category best describes your website?', 'all-in-one-seo-pack' ),
|
4910 |
+
|
4911 |
+
// Reference: src/vue/pages/setup-wizard/views/Category.vue:135
|
4912 |
+
__( 'Select a category to help us narrow down the SEO options that work best for you and your site.', 'all-in-one-seo-pack' ),
|
4913 |
+
|
4914 |
+
// Reference: src/vue/pages/setup-wizard/views/Category.vue:136
|
4915 |
+
__( 'Enter your answer', 'all-in-one-seo-pack' ),
|
4916 |
+
|
4917 |
+
// Reference: src/vue/pages/setup-wizard/views/Category.vue:138
|
4918 |
+
__( 'Home Page Meta Description', 'all-in-one-seo-pack' ),
|
4919 |
+
|
4920 |
+
// Reference: src/vue/pages/setup-wizard/views/Category.vue:142
|
4921 |
+
__( 'News Channel', 'all-in-one-seo-pack' ),
|
4922 |
+
|
4923 |
+
// Reference: src/vue/pages/setup-wizard/views/Category.vue:143
|
4924 |
+
__( 'Online Store', 'all-in-one-seo-pack' ),
|
4925 |
+
|
4926 |
+
// Reference: src/vue/pages/setup-wizard/views/Category.vue:144
|
4927 |
+
__( 'Small Offline Business', 'all-in-one-seo-pack' ),
|
4928 |
+
|
4929 |
+
// Reference: src/vue/pages/setup-wizard/views/Category.vue:145
|
4930 |
+
__( 'Corporation', 'all-in-one-seo-pack' ),
|
4931 |
+
|
4932 |
+
// Reference: src/vue/pages/setup-wizard/views/Category.vue:146
|
4933 |
+
__( 'Portfolio', 'all-in-one-seo-pack' ),
|
4934 |
+
|
4935 |
+
// Reference: src/vue/pages/setup-wizard/views/Category.vue:148
|
4936 |
+
__( 'Other:', 'all-in-one-seo-pack' ),
|
4937 |
+
|
4938 |
+
// Reference: src/vue/pages/setup-wizard/views/Features.vue:130
|
4939 |
+
/* Translators: 1 - A list of plugin names. */
|
4940 |
+
__( 'The following plugins will be installed: %1$s', 'all-in-one-seo-pack' ),
|
4941 |
+
|
4942 |
+
// Reference: src/vue/pages/setup-wizard/views/Features.vue:135
|
4943 |
+
/* Translators: 1 - Plugin short name ("AIOSEO"), 2 - A list of plugin names. */
|
4944 |
+
__( 'The following %1$s addons will be installed: %2$s', 'all-in-one-seo-pack' ),
|
4945 |
+
|
4946 |
+
// Reference: src/vue/pages/setup-wizard/views/Features.vue:140
|
4947 |
+
/* Translators: 1 - Plugin short name ("AIOSEO"), 2 - A list of plugin names. */
|
4948 |
+
__( 'The following plugins and %1$s addons will be installed: %2$s', 'all-in-one-seo-pack' ),
|
4949 |
+
|
4950 |
+
// Reference: src/vue/pages/setup-wizard/views/Features.vue:82
|
4951 |
+
__( 'Which SEO features do you want to enable?', 'all-in-one-seo-pack' ),
|
4952 |
+
|
4953 |
+
// Reference: src/vue/pages/setup-wizard/views/Features.vue:86
|
4954 |
+
__( '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' ),
|
4955 |
+
|
4956 |
+
// Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:102
|
4957 |
+
/* Translators: 1 - "Pro". */
|
4958 |
+
__( 'upgrade to %1$s', 'all-in-one-seo-pack' ),
|
4959 |
+
|
4960 |
+
// Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:128
|
4961 |
+
__( 'To unlock the selected features, please enter your license key below.', 'all-in-one-seo-pack' ),
|
4962 |
+
|
4963 |
+
// Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:130
|
4964 |
+
/* Translators: 1 - "upgrading to Pro". */
|
4965 |
+
__( 'To unlock the selected features, please %1$s and enter your license key below.', 'all-in-one-seo-pack' ),
|
4966 |
+
|
4967 |
+
// Reference: src/vue/pages/setup-wizard/views/LicenseKey.vue:98
|
4968 |
/* Translators: 1 - The plugin short name ("AIOSEO"). */
|
4969 |
+
__( 'Enter your %1$s License Key', 'all-in-one-seo-pack' ),
|
4970 |
|
4971 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:245
|
4972 |
+
__( 'Miscellaneous Verification', 'all-in-one-seo-pack' ),
|
4973 |
|
4974 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:247
|
4975 |
+
/* Translators: 1 - "<head></head>". */
|
4976 |
+
__( 'The code above will be added between the %1$s tags on every page on your website.', 'all-in-one-seo-pack' ),
|
4977 |
|
4978 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:248
|
4979 |
+
__( 'Webmaster Tools Verification', 'all-in-one-seo-pack' ),
|
4980 |
|
4981 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:252
|
4982 |
+
__( 'Success!', 'all-in-one-seo-pack' ),
|
4983 |
|
4984 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:256
|
4985 |
+
/* Translators: 1 - The name of one of our partner plugins. */
|
4986 |
+
__( 'Google Analytics is now handled by %1$s.', 'all-in-one-seo-pack' ),
|
4987 |
|
4988 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:257
|
4989 |
+
__( 'Manage Google Analytics', 'all-in-one-seo-pack' ),
|
|
|
4990 |
|
4991 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:258
|
4992 |
+
__( 'Get Started', 'all-in-one-seo-pack' ),
|
4993 |
|
4994 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:269
|
4995 |
+
/* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
|
4996 |
+
__( 'We recommend using the %1$sFree MonsterInsights%2$s plugin to get the most out of Google Analytics.', 'all-in-one-seo-pack' ),
|
4997 |
|
4998 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:273
|
4999 |
+
/* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
|
5000 |
+
__( 'We recommend using the %1$sFree ExactMetrics%2$s plugin to get the most out of Google Analytics.', 'all-in-one-seo-pack' ),
|
5001 |
|
5002 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:307
|
5003 |
+
__( 'Google Verification Code', 'all-in-one-seo-pack' ),
|
|
|
5004 |
|
5005 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:309
|
5006 |
+
/* Translators: 1 - "Google Search Console". */
|
5007 |
+
__( 'Google Search Console', 'all-in-one-seo-pack' ),
|
5008 |
|
5009 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:309
|
5010 |
+
/* Translators: 1 - "Google Search Console". */
|
5011 |
+
__( 'Get your Google verification code in %1$s.', 'all-in-one-seo-pack' ),
|
5012 |
|
5013 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:320
|
5014 |
+
__( 'Bing Verification Code', 'all-in-one-seo-pack' ),
|
5015 |
|
5016 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:322
|
5017 |
+
/* Translators: 1 - "Bing Webmaster Tools". */
|
5018 |
+
__( 'Bing Webmaster Tools', 'all-in-one-seo-pack' ),
|
5019 |
|
5020 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:322
|
5021 |
+
/* Translators: 1 - "Bing Webmaster Tools". */
|
5022 |
+
__( 'Get your Bing verification code in %1$s.', 'all-in-one-seo-pack' ),
|
5023 |
|
5024 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:333
|
5025 |
+
__( 'Yandex Verification Code', 'all-in-one-seo-pack' ),
|
5026 |
|
5027 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:335
|
5028 |
+
/* Translators: 1 - "Yandex Webmaster Tools". */
|
5029 |
+
__( 'Yandex Webmaster Tools', 'all-in-one-seo-pack' ),
|
5030 |
|
5031 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:335
|
5032 |
+
/* Translators: 1 - "Yandex Webmaster Tools". */
|
5033 |
+
__( 'Get your Yandex verification code in %1$s.', 'all-in-one-seo-pack' ),
|
5034 |
|
5035 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:346
|
5036 |
+
__( 'Baidu Verification Code', 'all-in-one-seo-pack' ),
|
5037 |
|
5038 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:348
|
5039 |
+
/* Translators: 1 - "Baidu Webmaster Tools". */
|
5040 |
+
__( 'Baidu Webmaster Tools', 'all-in-one-seo-pack' ),
|
5041 |
|
5042 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:348
|
5043 |
+
/* Translators: 1 - "Baidu Webmaster Tools". */
|
5044 |
+
__( 'Get your Baidu verification code in %1$s.', 'all-in-one-seo-pack' ),
|
5045 |
|
5046 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:354
|
5047 |
+
__( 'Pinterest Site Verification', 'all-in-one-seo-pack' ),
|
5048 |
|
5049 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:361
|
5050 |
+
/* Translators: 1 - "Pinterest account". */
|
5051 |
+
__( 'Get your Pinterest verification code in your %1$s.', 'all-in-one-seo-pack' ),
|
5052 |
|
5053 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:361
|
5054 |
+
/* Translators: 1 - "Pinterest account". */
|
5055 |
+
__( 'Pinterest account', 'all-in-one-seo-pack' ),
|
5056 |
|
5057 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:392
|
5058 |
+
__( 'Google Analytics', 'all-in-one-seo-pack' ),
|
5059 |
|
5060 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:399
|
5061 |
+
__( 'Google Analytics ID', 'all-in-one-seo-pack' ),
|
|
|
5062 |
|
5063 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:401
|
5064 |
+
/* Translators: 1 - "Google Analytics account". */
|
5065 |
+
__( 'Get your Google Analytics ID in your %1$s.', 'all-in-one-seo-pack' ),
|
5066 |
|
5067 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:401
|
5068 |
+
/* Translators: 1 - "Google Analytics account". */
|
5069 |
+
__( 'Google Analytics account', 'all-in-one-seo-pack' ),
|
5070 |
|
5071 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:407
|
5072 |
+
__( 'Enable Advanced Analytics Options', 'all-in-one-seo-pack' ),
|
5073 |
|
5074 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:411
|
5075 |
+
/* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
|
5076 |
+
__( 'This enables Advanced Google Analytics options.%1$s%2$s', 'all-in-one-seo-pack' ),
|
5077 |
|
5078 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:416
|
5079 |
+
__( 'Tracking Domain', 'all-in-one-seo-pack' ),
|
5080 |
|
5081 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:419
|
5082 |
+
/* Translators: 1 - "http://", 2 - A link to our documentation, 3 - HTML line break tag. */
|
5083 |
+
__( 'Enter your domain name without the %1$s to set your cookie domain.%2$s%3$s', 'all-in-one-seo-pack' ),
|
5084 |
|
5085 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:424
|
5086 |
+
__( 'Track Multiple Domains', 'all-in-one-seo-pack' ),
|
5087 |
+
|
5088 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:432
|
5089 |
+
/* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
|
5090 |
+
__( 'Use this option to enable tracking of multiple or additional domains.%1$s%2$s', 'all-in-one-seo-pack' ),
|
5091 |
+
|
5092 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:437
|
5093 |
+
__( 'Additional Domains', 'all-in-one-seo-pack' ),
|
5094 |
+
|
5095 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:441
|
5096 |
+
/* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
|
5097 |
+
__( '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' ),
|
5098 |
+
|
5099 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:446
|
5100 |
+
__( 'Anonymize IP Addresses', 'all-in-one-seo-pack' ),
|
5101 |
+
|
5102 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:454
|
5103 |
+
/* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
|
5104 |
+
__( 'This enables support for IP Anonymization in Google Analytics.%1$s%2$s', 'all-in-one-seo-pack' ),
|
5105 |
+
|
5106 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:459
|
5107 |
+
__( 'Display Advertiser Tracking', 'all-in-one-seo-pack' ),
|
5108 |
+
|
5109 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:467
|
5110 |
+
/* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
|
5111 |
+
__( 'This enables support for the Display Advertiser Features in Google Analytics.%1$s%2$s', 'all-in-one-seo-pack' ),
|
5112 |
+
|
5113 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:472
|
5114 |
+
__( 'Exclude Users from Tracking', 'all-in-one-seo-pack' ),
|
5115 |
+
|
5116 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:483
|
5117 |
+
/* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
|
5118 |
+
__( 'Exclude logged-in users from Google Analytics tracking by role.%1$s%2$s', 'all-in-one-seo-pack' ),
|
5119 |
+
|
5120 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:488
|
5121 |
+
__( 'Enhanced Link Attribution', 'all-in-one-seo-pack' ),
|
5122 |
+
|
5123 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:496
|
5124 |
+
/* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
|
5125 |
+
__( 'This enables support for the Enhanced Link Attribution in Google Analytics.%1$s%2$s', 'all-in-one-seo-pack' ),
|
5126 |
+
|
5127 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:501
|
5128 |
+
__( 'Track Outbound Links', 'all-in-one-seo-pack' ),
|
5129 |
+
|
5130 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:509
|
5131 |
+
/* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
|
5132 |
+
__( 'This enables tracking outbound links with Google Analytics.%1$s%2$s', 'all-in-one-seo-pack' ),
|
5133 |
|
5134 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:514
|
5135 |
+
__( 'Enhanced Ecommerce', 'all-in-one-seo-pack' ),
|
5136 |
|
5137 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:522
|
5138 |
+
/* Translators: 1 - A link to our documentation, 2 - HTML line break tag. */
|
5139 |
+
__( 'This enables support for the Enhanced Ecommerce in Google Analytics.%1$s%2$s', 'all-in-one-seo-pack' ),
|
5140 |
|
5141 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:527
|
5142 |
+
__( 'Track Outbound Forms', 'all-in-one-seo-pack' ),
|
|
|
5143 |
|
5144 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:541
|
5145 |
+
__( 'Track Events', 'all-in-one-seo-pack' ),
|
5146 |
|
5147 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:555
|
5148 |
+
__( 'Track URL Changes', 'all-in-one-seo-pack' ),
|
5149 |
|
5150 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:569
|
5151 |
+
__( 'Track Page Visibility', 'all-in-one-seo-pack' ),
|
5152 |
|
5153 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:583
|
5154 |
+
__( 'Track Media Queries', 'all-in-one-seo-pack' ),
|
5155 |
|
5156 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:597
|
5157 |
+
__( 'Track Elements Visibility', 'all-in-one-seo-pack' ),
|
5158 |
|
5159 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:611
|
5160 |
+
__( 'Track Page Scrolling', 'all-in-one-seo-pack' ),
|
5161 |
|
5162 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:625
|
5163 |
+
__( 'Track Facebook and Twitter', 'all-in-one-seo-pack' ),
|
5164 |
|
5165 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:639
|
5166 |
+
__( 'Ensure URL Consistency', 'all-in-one-seo-pack' ),
|
5167 |
|
5168 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:653
|
5169 |
+
__( 'Google Tag Manager Container ID', 'all-in-one-seo-pack' ),
|
5170 |
|
5171 |
+
// Reference: src/vue/pages/settings/views/WebmasterTools.vue:657
|
5172 |
+
/* Translators: 1 - "Google Tag Manager account". */
|
5173 |
+
__( 'Get your Google Tag Manager ID in your %1$s.', 'all-in-one-seo-pack' ),
|
5174 |
|
5175 |
+
// Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:165
|
5176 |
+
__( 'Setup Site Analyzer + Smart Recommendations', 'all-in-one-seo-pack' ),
|
5177 |
|
5178 |
+
// Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:167
|
5179 |
+
/* Translators: 1 - Plugin short name ("AIOSEO"). */
|
5180 |
+
__( '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' ),
|
5181 |
|
5182 |
+
// Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:168
|
5183 |
+
__( 'Your Email Address', 'all-in-one-seo-pack' ),
|
5184 |
|
5185 |
+
// Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:169
|
5186 |
+
__( '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' ),
|
|
|
5187 |
|
5188 |
+
// Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:171
|
5189 |
+
/* Translators: 1 - Plugin short name ("AIOSEO"). */
|
5190 |
+
__( 'Help make %1$s better for everyone', 'all-in-one-seo-pack' ),
|
5191 |
|
5192 |
+
// Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:172
|
5193 |
+
__( 'Yes, count me in', 'all-in-one-seo-pack' ),
|
5194 |
|
5195 |
+
// Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:173
|
5196 |
+
__( 'Would you like to purchase and install the following features now?', 'all-in-one-seo-pack' ),
|
5197 |
|
5198 |
+
// Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:174
|
5199 |
+
__( 'An upgrade is required to unlock the following features.', 'all-in-one-seo-pack' ),
|
5200 |
|
5201 |
+
// Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:175
|
5202 |
+
__( 'You won\'t have access to this functionality until the extensions have been purchased and installed.', 'all-in-one-seo-pack' ),
|
5203 |
|
5204 |
+
// Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:176
|
5205 |
+
__( 'I\'ll do it later', 'all-in-one-seo-pack' ),
|
5206 |
|
5207 |
+
// Reference: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:177
|
5208 |
+
__( 'Purchase and Install Now', 'all-in-one-seo-pack' ),
|
5209 |
|
5210 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/RelocateSite.vue:68
|
5211 |
+
__( 'Relocate Site', 'all-in-one-seo-pack' ),
|
5212 |
|
5213 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/RelocateSite.vue:69
|
5214 |
+
__( 'Would you like to relocate your entire site to a new domain? Everything will be redirected except WordPress login and admin. Enabling this option will disable any site aliases or canonical settings.', 'all-in-one-seo-pack' ),
|
5215 |
|
5216 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/RelocateSite.vue:70
|
5217 |
+
__( 'By enabling this option you disabled any site aliases or canonical settings. Enter a domain to redirect everything, except WordPress login and admin.', 'all-in-one-seo-pack' ),
|
5218 |
|
5219 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/RelocateSite.vue:71
|
5220 |
+
__( 'Your old site address', 'all-in-one-seo-pack' ),
|
5221 |
|
5222 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/CanonicalSettings.vue:80
|
5223 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/RelocateSite.vue:72
|
5224 |
+
__( 'Your new site address', 'all-in-one-seo-pack' ),
|
5225 |
|
5226 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/RelocateSite.vue:73
|
5227 |
+
__( 'Relocate to domain', 'all-in-one-seo-pack' ),
|
5228 |
|
5229 |
+
// Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:10
|
5230 |
+
__( 'Open News Sitemap', 'all-in-one-seo-pack' ),
|
|
|
5231 |
|
5232 |
+
// Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:13
|
5233 |
+
__( 'Upgrade to Pro and Unlock News Sitemaps', 'all-in-one-seo-pack' ),
|
5234 |
|
5235 |
+
// Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:15
|
5236 |
+
/* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro". */
|
5237 |
+
__( 'News Sitemaps are only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
|
5238 |
|
5239 |
+
// Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:6
|
5240 |
+
__( 'Set Publication Name', 'all-in-one-seo-pack' ),
|
5241 |
|
5242 |
+
// Reference: src/vue/pages/sitemaps/mixins/NewsSitemap.js:7
|
5243 |
+
__( 'Exclude Pages/Posts', 'all-in-one-seo-pack' ),
|
5244 |
|
5245 |
+
// Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:10
|
5246 |
+
__( 'Open Video Sitemap', 'all-in-one-seo-pack' ),
|
5247 |
|
5248 |
+
// Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:13
|
5249 |
+
__( 'Upgrade to Pro and Unlock Video Sitemaps', 'all-in-one-seo-pack' ),
|
5250 |
|
5251 |
+
// Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:15
|
5252 |
+
/* Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro". */
|
5253 |
+
__( 'Video Sitemaps are only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
|
5254 |
|
5255 |
+
// Reference: src/vue/pages/sitemaps/mixins/VideoSitemap.js:5
|
5256 |
+
__( 'Custom Field Support', 'all-in-one-seo-pack' ),
|
5257 |
|
5258 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/ImportOthers.vue:75
|
5259 |
+
__( 'Import Redirects From Other Plugins', 'all-in-one-seo-pack' ),
|
5260 |
|
5261 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/ImportOthers.vue:77
|
5262 |
+
/* Translators: 1 - The plugin short name ("AIOSEO"). */
|
5263 |
+
__( 'Choose a plugin to import redirects directly into %1$s.', 'all-in-one-seo-pack' ),
|
5264 |
|
5265 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/ImportOthers.vue:80
|
5266 |
+
__( 'All Redirects', 'all-in-one-seo-pack' ),
|
5267 |
|
5268 |
+
// Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:223
|
5269 |
+
__( 'Last Updated Date', 'all-in-one-seo-pack' ),
|
5270 |
|
5271 |
+
// Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:233
|
5272 |
+
__( 'Display the sitemap on a dedicated page:', 'all-in-one-seo-pack' ),
|
5273 |
|
5274 |
+
// Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:239
|
5275 |
+
/* Translators: 1 - Learn more link. */
|
5276 |
+
__( 'Use the following shortcode to display the HTML Sitemap. %1$s', 'all-in-one-seo-pack' ),
|
5277 |
|
5278 |
+
// Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:247
|
5279 |
+
/* Translators: 1 - Opening HTML strong tag, 2 - The plugin short name ("AIOSEO"), 3 - Closing HTML strong tag. */
|
5280 |
+
__( 'To add this block, edit a page or post and search for the %1$s"%2$s - HTML Sitemap"%3$s block.', 'all-in-one-seo-pack' ),
|
5281 |
|
5282 |
+
// Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:257
|
5283 |
+
/* Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag, 3 - Opening HTML strong tag, 4 - The plugin short name ("AIOSEO"), 5 - Closing HTML strong tag, 6 - "Learn More" link. */
|
5284 |
+
__( 'To add this widget, visit the %1$swidgets page%2$s and look for the %3$s"%4$s - HTML Sitemap"%5$s widget.', 'all-in-one-seo-pack' ),
|
5285 |
|
5286 |
+
// Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:268
|
5287 |
+
/* Translators: 1 - Learn more link. */
|
5288 |
+
__( 'Use the following PHP code anywhere in your theme to display the sitemap. %1$s', 'all-in-one-seo-pack' ),
|
5289 |
|
5290 |
+
// Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:276
|
5291 |
+
__( 'HTML Sitemap Settings', 'all-in-one-seo-pack' ),
|
5292 |
|
5293 |
+
// Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:277
|
5294 |
+
__( 'Using the custom-built tools below, you can add an HTML sitemap to your website and help visitors discover all your content. Adding an HTML sitemap to your website may also help search engines find your content more easily.', 'all-in-one-seo-pack' ),
|
5295 |
|
5296 |
+
// Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:287
|
5297 |
+
__( 'Publication Date', 'all-in-one-seo-pack' ),
|
5298 |
|
5299 |
+
// Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:288
|
5300 |
+
__( 'This setting only applies to posts and pages.', 'all-in-one-seo-pack' ),
|
|
|
5301 |
|
5302 |
+
// Reference: src/vue/pages/sitemaps/views/HtmlSitemap.vue:292
|
5303 |
+
/* Translators: 1 - "Learn More" link. */
|
5304 |
+
__( 'This setting allows you to toggle between the regular sitemap or the compact date archive sitemap. %1$s', 'all-in-one-seo-pack' ),
|
5305 |
|
5306 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/CanonicalSettings.vue:77
|
5307 |
+
__( 'Canonical Settings', 'all-in-one-seo-pack' ),
|
5308 |
|
5309 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/CanonicalSettings.vue:78
|
5310 |
+
__( 'Canonical Settings are disabled because you have relocated your site to another domain.', 'all-in-one-seo-pack' ),
|
5311 |
|
5312 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/CanonicalSettings.vue:79
|
5313 |
+
__( 'Your current site address', 'all-in-one-seo-pack' ),
|
5314 |
|
5315 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/CanonicalSettings.vue:81
|
5316 |
+
__( 'Redirect from HTTP to HTTPS', 'all-in-one-seo-pack' ),
|
5317 |
|
5318 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/CanonicalSettings.vue:82
|
5319 |
+
__( 'Force a redirect from HTTP to HTTPS', 'all-in-one-seo-pack' ),
|
5320 |
|
5321 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/CanonicalSettings.vue:83
|
5322 |
+
__( 'Preferred domain', 'all-in-one-seo-pack' ),
|
5323 |
|
5324 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/CanonicalSettings.vue:85
|
5325 |
+
/* Translators: 1 - Opening link tag, 2 - Closing link tag. */
|
5326 |
+
__( 'You\'ll need to update your Site Address URL to match your new site address. %1$sUpdate Site Address URL%2$s.', 'all-in-one-seo-pack' ),
|
5327 |
|
5328 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/CanonicalSettings.vue:87
|
5329 |
+
/* Translators: 1 - Opening strong tag, 2 - Closing strong tag., 3 - Doc link */
|
5330 |
+
__( '%1$sWarning:%2$s ensure your HTTPS is working before forcing a redirect. %3$s', 'all-in-one-seo-pack' ),
|
5331 |
|
5332 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/CanonicalSettings.vue:91
|
5333 |
+
__( 'Leave domain as-is', 'all-in-one-seo-pack' ),
|
5334 |
|
5335 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/CanonicalSettings.vue:95
|
5336 |
+
__( 'Add www to domain', 'all-in-one-seo-pack' ),
|
5337 |
|
5338 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/CanonicalSettings.vue:99
|
5339 |
+
__( 'Remove www from domain', 'all-in-one-seo-pack' ),
|
5340 |
|
5341 |
+
// Reference: src/vue/pages/settings/mixins/AccessControl.js:10
|
5342 |
+
/* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
|
5343 |
+
__( 'By default Admins have access to %1$sall SEO site settings%2$s', 'all-in-one-seo-pack' ),
|
5344 |
|
5345 |
+
// Reference: src/vue/pages/settings/mixins/AccessControl.js:13
|
5346 |
+
__( 'Editor', 'all-in-one-seo-pack' ),
|
5347 |
|
5348 |
+
// Reference: src/vue/pages/settings/mixins/AccessControl.js:16
|
5349 |
+
/* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
|
5350 |
+
__( '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' ),
|
5351 |
|
5352 |
+
// Reference: src/vue/pages/settings/mixins/AccessControl.js:22
|
5353 |
+
/* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
|
5354 |
+
__( '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' ),
|
5355 |
|
5356 |
+
// Reference: src/vue/pages/settings/mixins/AccessControl.js:25
|
5357 |
+
__( 'Contributor', 'all-in-one-seo-pack' ),
|
5358 |
|
5359 |
+
// Reference: src/vue/pages/settings/mixins/AccessControl.js:28
|
5360 |
+
/* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
|
5361 |
+
__( 'By default Contributors have access to %1$sSEO settings for individual pages and posts that they already have permission to edit.%2$s', 'all-in-one-seo-pack' ),
|
5362 |
|
5363 |
+
// Reference: src/vue/pages/settings/mixins/AccessControl.js:31
|
5364 |
+
__( 'SEO Manager', 'all-in-one-seo-pack' ),
|
5365 |
|
5366 |
+
// Reference: src/vue/pages/settings/mixins/AccessControl.js:34
|
5367 |
+
/* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
|
5368 |
+
__( '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' ),
|
5369 |
|
5370 |
+
// Reference: src/vue/pages/settings/mixins/AccessControl.js:37
|
5371 |
+
__( 'SEO Editor', 'all-in-one-seo-pack' ),
|
5372 |
|
5373 |
+
// Reference: src/vue/pages/settings/mixins/AccessControl.js:40
|
5374 |
+
/* Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag. */
|
5375 |
+
__( 'By default SEO Editors have access to %1$sSEO settings for individual pages and posts.%2$s', 'all-in-one-seo-pack' ),
|
5376 |
|
5377 |
+
// Reference: src/vue/pages/settings/mixins/AccessControl.js:45
|
5378 |
+
/* Translators: 1 - The plugin name ("All in One SEO") */
|
5379 |
+
__( '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' ),
|
5380 |
|
5381 |
+
// Reference: src/vue/pages/settings/mixins/AccessControl.js:46
|
5382 |
+
__( 'Access Control Settings', 'all-in-one-seo-pack' ),
|
5383 |
|
5384 |
+
// Reference: src/vue/pages/settings/mixins/AccessControl.js:57
|
5385 |
+
__( 'By default the %1$s role %2$shas no access%3$s to %4$s settings.', 'all-in-one-seo-pack' ),
|
5386 |
|
5387 |
+
// Reference: src/vue/pages/settings/mixins/AccessControl.js:7
|
5388 |
+
__( 'Administrator', 'all-in-one-seo-pack' ),
|
5389 |
|
5390 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:110
|
5391 |
+
__( 'Complete Data (JSON)', 'all-in-one-seo-pack' ),
|
5392 |
|
5393 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:111
|
5394 |
+
__( 'Apache Redirects (.htaccess)', 'all-in-one-seo-pack' ),
|
5395 |
|
5396 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:112
|
5397 |
+
__( 'Nginx Redirects (.nginx)', 'all-in-one-seo-pack' ),
|
5398 |
|
5399 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:115
|
5400 |
+
__( 'Export Redirects', 'all-in-one-seo-pack' ),
|
5401 |
|
5402 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:116
|
5403 |
+
__( 'Export to JSON, .htaccess or .nginx. The JSON format contains full information (and can be re-imported), while the other formats only contain partial information relavant to that format.', 'all-in-one-seo-pack' ),
|
5404 |
|
5405 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:117
|
5406 |
+
__( 'Export All Redirects', 'all-in-one-seo-pack' ),
|
5407 |
|
5408 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:119
|
5409 |
+
__( 'Export Redirect Logs', 'all-in-one-seo-pack' ),
|
5410 |
|
5411 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:120
|
5412 |
+
__( 'Export 404 Logs', 'all-in-one-seo-pack' ),
|
5413 |
|
5414 |
// Reference: src/vue/pages/redirects/views/pro/partials/ImportAioseo.vue:82
|
5415 |
/* Translators: 1 - The plugin short name ("AIOSEO"). */
|
5430 |
// Reference: src/vue/pages/redirects/views/pro/partials/ImportAioseo.vue:89
|
5431 |
__( 'There was an error importing your redirects. Please make sure you are uploading the correct file or it is in the proper format.', 'all-in-one-seo-pack' ),
|
5432 |
|
5433 |
+
// Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:125
|
5434 |
+
__( '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' ),
|
5435 |
|
5436 |
+
// Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:130
|
5437 |
+
__( 'Number of Posts', 'all-in-one-seo-pack' ),
|
|
|
5438 |
|
5439 |
+
// Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:133
|
5440 |
+
__( 'Open RSS Sitemap', 'all-in-one-seo-pack' ),
|
5441 |
|
5442 |
+
// Reference: src/vue/pages/sitemaps/views/RssSitemap.vue:134
|
5443 |
+
__( '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' ),
|
|
|
5444 |
|
5445 |
// Reference: src/vue/pages/redirects/views/pro/Redirects.vue:277
|
5446 |
__( 'Group', 'all-in-one-seo-pack' ),
|
5451 |
// Reference: src/vue/pages/redirects/views/pro/Redirects.vue:320
|
5452 |
__( 'All Groups', 'all-in-one-seo-pack' ),
|
5453 |
|
|
|
|
|
|
|
5454 |
// Reference: src/vue/pages/redirects/views/pro/Redirects.vue:214
|
5455 |
__( 'Add New Redirection', 'all-in-one-seo-pack' ),
|
5456 |
|
5457 |
// Reference: src/vue/pages/redirects/views/pro/Redirects.vue:215
|
5458 |
__( 'Search URLs', 'all-in-one-seo-pack' ),
|
5459 |
|
5460 |
+
// Reference: src/vue/pages/redirects/views/lite/Redirects.vue:70
|
5461 |
+
__( 'Upgrade to Pro and Unlock Redirects', 'all-in-one-seo-pack' ),
|
5462 |
+
|
5463 |
+
// Reference: src/vue/pages/redirects/views/lite/Redirects.vue:71
|
5464 |
+
__( 'Redirects are only available for licensed %1$s %2$s users.', 'all-in-one-seo-pack' ),
|
5465 |
+
|
5466 |
+
// Reference: src/vue/pages/redirects/views/pro/RedirectsActivate.vue:78
|
5467 |
__( 'Fast Server Redirects', 'all-in-one-seo-pack' ),
|
5468 |
|
5469 |
+
// Reference: src/vue/pages/redirects/views/pro/Settings.vue:391
|
5470 |
__( 'Automatic Redirects', 'all-in-one-seo-pack' ),
|
5471 |
|
5472 |
+
// Reference: src/vue/pages/redirects/views/pro/RedirectsActivate.vue:80
|
5473 |
__( 'Redirect Monitoring', 'all-in-one-seo-pack' ),
|
5474 |
|
5475 |
+
// Reference: src/vue/pages/redirects/views/pro/RedirectsActivate.vue:81
|
5476 |
__( '404 Monitoring', 'all-in-one-seo-pack' ),
|
5477 |
|
5478 |
+
// Reference: src/vue/pages/redirects/views/pro/RedirectsActivate.vue:82
|
5479 |
__( 'Full Site Redirects', 'all-in-one-seo-pack' ),
|
5480 |
|
5481 |
+
// Reference: src/vue/pages/redirects/views/pro/RedirectsActivate.vue:84
|
5482 |
__( 'Our Redirection Manager allows you to easily create and manage redirects for your broken links to avoid confusing search engines and users, as well as losing valuable backlinks. It even automatically sends users and search engines from your old URLs to your new ones.', 'all-in-one-seo-pack' ),
|
5483 |
|
5484 |
+
// Reference: src/vue/pages/redirects/mixins/pro/RedirectsLogs.js:25
|
5485 |
+
__( 'Hits', 'all-in-one-seo-pack' ),
|
|
|
|
|
|
|
5486 |
|
5487 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:143
|
5488 |
+
__( 'HTTP Headers', 'all-in-one-seo-pack' ),
|
5489 |
|
5490 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:144
|
5491 |
+
__( 'Site headers are added across your site, including redirects. Redirect headers are only added to redirects.', 'all-in-one-seo-pack' ),
|
5492 |
|
5493 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:145
|
5494 |
+
__( 'Location', 'all-in-one-seo-pack' ),
|
5495 |
|
5496 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:146
|
5497 |
+
__( 'Header', 'all-in-one-seo-pack' ),
|
5498 |
|
5499 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:149
|
5500 |
+
__( 'Add Header', 'all-in-one-seo-pack' ),
|
5501 |
|
5502 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:150
|
5503 |
+
__( 'Add Security Presets', 'all-in-one-seo-pack' ),
|
5504 |
|
5505 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:151
|
5506 |
+
__( 'Add CORS Presets', 'all-in-one-seo-pack' ),
|
5507 |
|
5508 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:152
|
5509 |
+
__( 'Add headers by clicking in the options below.', 'all-in-one-seo-pack' ),
|
5510 |
|
5511 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:153
|
5512 |
+
__( 'Select a header', 'all-in-one-seo-pack' ),
|
5513 |
|
5514 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:165
|
5515 |
+
__( 'Site', 'all-in-one-seo-pack' ),
|
5516 |
|
5517 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:166
|
5518 |
+
__( 'site', 'all-in-one-seo-pack' ),
|
5519 |
|
5520 |
+
// Reference: src/vue/pages/redirects/views/pro/Logs404.vue:240
|
5521 |
+
__( 'Redirect', 'all-in-one-seo-pack' ),
|
5522 |
|
5523 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:170
|
5524 |
+
__( 'redirect', 'all-in-one-seo-pack' ),
|
|
|
5525 |
|
5526 |
+
// Reference: src/vue/pages/redirects/views/pro/partials/HTTPHeaders.vue:181
|
5527 |
+
__( 'Custom', 'all-in-one-seo-pack' ),
|
|
|
5528 |
|
5529 |
+
// Reference: src/vue/pages/redirects/views/pro/Logs404.vue:199
|
5530 |
+
__( 'Add New Redirections', 'all-in-one-seo-pack' ),
|
5531 |
|
5532 |
+
// Reference: src/vue/pages/tools/views/ImportExport.vue:36
|
5533 |
+
__( 'Export / Backup Settings', 'all-in-one-seo-pack' ),
|
5534 |
|
5535 |
+
// Reference: src/vue/pages/redirects/views/pro/Redirects.vue:436
|
5536 |
+
__( 'Pass through', 'all-in-one-seo-pack' ),
|
5537 |
|
5538 |
// Reference: src/vue/pages/redirects/views/pro/Settings.vue:358
|
5539 |
__( 'Redirect Settings', 'all-in-one-seo-pack' ),
|
5560 |
// Reference: src/vue/pages/redirects/views/pro/Settings.vue:367
|
5561 |
__( 'Redirect Defaults', 'all-in-one-seo-pack' ),
|
5562 |
|
5563 |
+
// Reference: src/vue/pages/tools/views/DatabaseTools.vue:271
|
5564 |
+
__( 'Redirect Logs', 'all-in-one-seo-pack' ),
|
5565 |
+
|
5566 |
// Reference: src/vue/pages/redirects/views/pro/Settings.vue:370
|
5567 |
__( 'Log External Redirects', 'all-in-one-seo-pack' ),
|
5568 |
|
5641 |
/* Translators: 1 - A code snippet. */
|
5642 |
__( 'Make sure you include the following in your server configuration file: %1$s', 'all-in-one-seo-pack' ),
|
5643 |
|
5644 |
+
// Reference: src/vue/pages/tools/views/HtaccessEditor.vue:42
|
5645 |
+
__( 'Edit .htaccess', 'all-in-one-seo-pack' ),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5646 |
|
5647 |
+
// Reference: src/vue/pages/tools/views/HtaccessEditor.vue:44
|
5648 |
+
/* Translators: 1 - Opening bold tag, 2 - Closing bold tag. */
|
5649 |
+
__( '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' ),
|
5650 |
|
5651 |
// Reference: src/vue/pages/redirects/views/pro/Redirects.vue:217
|
5652 |
__( 'Check Redirect', 'all-in-one-seo-pack' ),
|
5675 |
// Reference: src/vue/pages/redirects/views/pro/Redirects.vue:232
|
5676 |
__( 'Reset Hits', 'all-in-one-seo-pack' ),
|
5677 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5678 |
// Reference: src/vue/pages/redirects/mixins/pro/RedirectsLogs.js:15
|
5679 |
__( 'Last IP', 'all-in-one-seo-pack' ),
|
5680 |
|
5699 |
// Reference: src/vue/pages/redirects/mixins/pro/RedirectsLogs.js:26
|
5700 |
__( 'Last Accessed', 'all-in-one-seo-pack' ),
|
5701 |
|
5702 |
+
// Reference: src/vue/pages/tools/views/DatabaseTools.vue:255
|
5703 |
+
__( 'Reset / Restore Settings', 'all-in-one-seo-pack' ),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5704 |
|
5705 |
+
// Reference: src/vue/pages/tools/views/DatabaseTools.vue:256
|
5706 |
+
__( 'Select Settings', 'all-in-one-seo-pack' ),
|
5707 |
|
5708 |
+
// Reference: src/vue/pages/tools/views/DatabaseTools.vue:257
|
5709 |
+
__( 'Select settings that you would like to reset:', 'all-in-one-seo-pack' ),
|
5710 |
|
5711 |
+
// Reference: src/vue/pages/tools/views/DatabaseTools.vue:258
|
5712 |
+
__( 'Reset Selected Settings to Default', 'all-in-one-seo-pack' ),
|
5713 |
|
5714 |
+
// Reference: src/vue/pages/tools/views/DatabaseTools.vue:259
|
5715 |
+
__( 'Your settings have been reset successfully!', 'all-in-one-seo-pack' ),
|
|
|
5716 |
|
5717 |
+
// Reference: src/vue/pages/tools/views/DatabaseTools.vue:260
|
5718 |
+
__( 'Are you sure you want to reset the selected settings to default?', 'all-in-one-seo-pack' ),
|
5719 |
|
5720 |
+
// Reference: src/vue/pages/tools/views/DatabaseTools.vue:262
|
5721 |
+
/* Translators: 1 - Opening bold tag. 2 - Closing bold tag. */
|
5722 |
+
__( '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' ),
|
5723 |
|
5724 |
+
// Reference: src/vue/pages/tools/views/DatabaseTools.vue:263
|
5725 |
+
__( 'Yes, I have a backup and want to reset the settings', 'all-in-one-seo-pack' ),
|
5726 |
|
5727 |
+
// Reference: src/vue/pages/tools/views/DatabaseTools.vue:264
|
5728 |
+
__( 'No, I need to make a backup', 'all-in-one-seo-pack' ),
|
5729 |
|
5730 |
+
// Reference: src/vue/pages/tools/views/DatabaseTools.vue:266
|
5731 |
+
__( 'Bad Bot Blocker Logs', 'all-in-one-seo-pack' ),
|
|
|
5732 |
|
5733 |
+
// Reference: src/vue/pages/tools/views/DatabaseTools.vue:267
|
5734 |
+
__( 'Cleared', 'all-in-one-seo-pack' ),
|
5735 |
|
5736 |
+
// Reference: src/vue/pages/tools/views/DatabaseTools.vue:268
|
5737 |
+
__( 'Clear Bad Bot Blocker Logs', 'all-in-one-seo-pack' ),
|
|
|
5738 |
|
5739 |
+
// Reference: src/vue/pages/tools/views/DatabaseTools.vue:270
|
5740 |
+
__( 'Clear 404 Logs', 'all-in-one-seo-pack' ),
|
5741 |
|
5742 |
+
// Reference: src/vue/pages/tools/views/DatabaseTools.vue:272
|
5743 |
+
__( 'Clear Redirect Logs', 'all-in-one-seo-pack' ),
|
|
|
5744 |
|
5745 |
+
// Reference: src/vue/pages/tools/views/DatabaseTools.vue:274
|
5746 |
/* Translators: 1 - The plugin short name ("AIOSEO"). */
|
5747 |
+
__( 'All %1$s Settings', 'all-in-one-seo-pack' ),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5748 |
|
5749 |
+
// Reference: src/vue/pages/tools/views/DatabaseTools.vue:275
|
5750 |
+
__( 'Log sizes may fluctuate and not always be 100% accurate since the results can be cached. Also after clearing a log, it may not show as "0" since database tables also include additional information such as indexes that we don\'t clear.', 'all-in-one-seo-pack' )
|
5751 |
);
|
5752 |
/* THIS IS THE END OF THE GENERATED FILE */
|
languages/aioseo-lite.pot
CHANGED
@@ -7,8 +7,21 @@ msgstr ""
|
|
7 |
msgid "404"
|
8 |
msgstr ""
|
9 |
|
10 |
-
#: src/vue/pages/
|
11 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
msgstr ""
|
13 |
|
14 |
#: src/vue/pages/social-networks/router/paths.js:19
|
@@ -27,36 +40,38 @@ msgstr ""
|
|
27 |
msgid "Pinterest"
|
28 |
msgstr ""
|
29 |
|
30 |
-
|
31 |
-
#: src/vue/pages/
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
#: src/vue/pages/feature-manager/views/Main.vue:20
|
36 |
-
msgid "Feature Manager"
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: src/vue/pages/
|
40 |
-
msgid "
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: src/vue/pages/
|
44 |
-
|
|
|
45 |
msgstr ""
|
46 |
|
47 |
-
#: src/vue/
|
48 |
-
|
|
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:
|
52 |
-
|
|
|
53 |
msgstr ""
|
54 |
|
55 |
-
#: src/vue/pages/
|
56 |
-
|
|
|
57 |
msgstr ""
|
58 |
|
59 |
-
#: src/vue/pages/
|
|
|
60 |
msgid "Advanced"
|
61 |
msgstr ""
|
62 |
|
@@ -77,25 +92,30 @@ msgstr ""
|
|
77 |
msgid "No %s found"
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: src/vue/pages/local-business-seo/blocks/OpeningHours.js:207
|
81 |
-
msgid "Display Settings"
|
82 |
-
msgstr ""
|
83 |
-
|
84 |
#: src/vue/pages/local-business-seo/blocks/LocationMap.js:212
|
85 |
msgid "Select a %s"
|
86 |
msgstr ""
|
87 |
|
88 |
# Translators: 1 - AIOSEO.
|
89 |
-
#: src/vue/pages/local-business-seo/blocks/
|
90 |
-
msgid "%1$s Local -
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
91 |
msgstr ""
|
92 |
|
93 |
# Translators: 1 - AIOSEO.
|
94 |
-
#: src/vue/pages/local-business-seo/blocks/
|
95 |
-
msgid "%1$s Local -
|
96 |
msgstr ""
|
97 |
|
98 |
#: src/vue/pages/local-business-seo/blocks/LocationMap.js:192
|
|
|
99 |
msgid "Settings"
|
100 |
msgstr ""
|
101 |
|
@@ -113,48 +133,74 @@ msgstr ""
|
|
113 |
msgid "%1$s Local - Opening Hours"
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: src/vue/standalone/publish-panel/PrePublish.vue:153
|
117 |
-
msgid "N/A"
|
118 |
-
msgstr ""
|
119 |
-
|
120 |
#: src/vue/pages/local-seo/router/paths.js:19
|
121 |
msgid "Locations"
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: src/vue/pages/local-seo/
|
125 |
msgid "Opening Hours"
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: src/vue/pages/local-seo/
|
129 |
msgid "Maps"
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: src/vue/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
133 |
msgid "Title:"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: src/vue/
|
137 |
msgid "Description:"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: src/vue/pages/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
141 |
msgid "Edit"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: src/vue/pages/posts-table/
|
145 |
msgid "Save"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: src/vue/pages/posts-table/
|
149 |
msgid "Cancel"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: src/vue/pages/posts-table/
|
153 |
msgid "Please wait..."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: src/vue/
|
157 |
-
msgid "
|
158 |
msgstr ""
|
159 |
|
160 |
#: src/vue/standalone/publish-panel/PrePublish.vue:148
|
@@ -188,6 +234,7 @@ msgstr ""
|
|
188 |
msgid "Snippet Preview"
|
189 |
msgstr ""
|
190 |
|
|
|
191 |
#: src/vue/standalone/publish-panel/PrePublish.vue:72
|
192 |
msgid "Canonical URL"
|
193 |
msgstr ""
|
@@ -197,7 +244,7 @@ msgid "Visibility"
|
|
197 |
msgstr ""
|
198 |
|
199 |
#: src/vue/pages/dashboard/views/Main.vue:226
|
200 |
-
#: src/vue/pages/
|
201 |
msgid "SEO Analysis"
|
202 |
msgstr ""
|
203 |
|
@@ -205,446 +252,342 @@ msgstr ""
|
|
205 |
msgid "Readability"
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: src/vue/pages/post-settings/views/
|
209 |
msgid "Focus Keyphrase"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: src/vue/
|
213 |
-
|
|
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: src/vue/pages/
|
217 |
-
msgid "
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: src/vue/pages/
|
221 |
-
msgid ""
|
222 |
-
"Enable this feature if you want Facebook and other social media to display "
|
223 |
-
"a preview with images and a text excerpt when a link to your site is shared."
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: src/vue/pages/
|
227 |
-
msgid "
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: src/vue/pages/
|
231 |
-
msgid "
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: src/vue/pages/
|
235 |
-
msgid "
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: src/vue/pages/local-business-seo/blocks/
|
239 |
-
msgid "
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: src/vue/pages/local-business-seo/blocks/
|
243 |
-
msgid "
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: src/vue/pages/
|
247 |
-
msgid "
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: src/vue/pages/
|
251 |
-
|
|
|
|
|
|
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: src/vue/pages/
|
255 |
-
|
|
|
|
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: src/vue/
|
259 |
-
msgid "
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: src/vue/
|
263 |
-
|
264 |
-
msgid "Upload or Select Image"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: src/vue/
|
268 |
-
|
269 |
-
msgid "Paste your image URL or select a new image"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: src/vue/
|
273 |
-
msgid ""
|
274 |
-
"Minimum size: 200px x 200px, ideal ratio 1.91:1, 8MB max. (eg: 1640px x "
|
275 |
-
"856px or 3280px x 1712px for retina screens)"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: src/vue/
|
279 |
-
msgid "
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: src/vue/pages/
|
283 |
-
msgid "
|
284 |
msgstr ""
|
285 |
|
286 |
-
|
287 |
-
|
288 |
-
msgid ""
|
289 |
-
"This is what your page configured with %1$s will look like when shared via "
|
290 |
-
"Facebook. The site title and description will be automatically added."
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: src/vue/pages/
|
294 |
-
msgid "
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: src/vue/pages/
|
298 |
-
msgid "
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: src/vue/
|
302 |
-
|
|
|
|
|
|
|
|
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: src/vue/pages/
|
306 |
-
msgid "
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: src/vue/pages/
|
310 |
-
|
311 |
-
msgid "Click on the tags below to insert variables into your site name."
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: src/vue/pages/
|
315 |
-
msgid "
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: src/vue/pages/
|
319 |
-
msgid "
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: src/vue/pages/
|
323 |
-
msgid "
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: src/vue/pages/
|
327 |
-
msgid "
|
|
|
|
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: src/vue/pages/
|
331 |
-
|
332 |
-
msgid "Remove"
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: src/vue/
|
336 |
-
|
337 |
-
msgid "Advanced Settings"
|
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 |
-
"Enter your Facebook Admin ID here. You can enter multiple Facebook Admin "
|
355 |
-
"IDs by separating them with a comma."
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: src/vue/pages/
|
359 |
-
msgid ""
|
360 |
-
"The Facebook App ID of the site's app. In order to use Facebook Insights, "
|
361 |
-
"you must add the App ID to your page. Insights lets you view analytics for "
|
362 |
-
"traffic to your site from Facebook. Find the App ID in your App Dashboard."
|
363 |
msgstr ""
|
364 |
|
365 |
-
#: src/vue/pages/
|
366 |
-
msgid ""
|
367 |
-
"Will be overriden if the Facebook author URL is present in the individual "
|
368 |
-
"User Profile."
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: src/vue/pages/
|
372 |
-
msgid "
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: src/vue/pages/
|
376 |
-
msgid "
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: src/vue/pages/
|
380 |
-
|
|
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: src/vue/pages/
|
384 |
-
msgid "
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: src/vue/pages/
|
388 |
-
|
|
|
|
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: src/vue/pages/
|
392 |
-
msgid "
|
393 |
msgstr ""
|
394 |
|
395 |
-
|
396 |
-
#: src/vue/pages/social-networks/views/Facebook.vue:720
|
397 |
msgid ""
|
398 |
-
"
|
399 |
-
"
|
400 |
-
msgstr ""
|
401 |
-
|
402 |
-
# Translators: 1 - The plugin short name ("AIOSEO"), 2 - Learn more link.
|
403 |
-
#: src/vue/pages/social-networks/views/Facebook.vue:722
|
404 |
-
msgid "Default Term Image Source is only available for licensed %1$s users. %2$s"
|
405 |
-
msgstr ""
|
406 |
-
|
407 |
-
#: src/vue/pages/social-networks/views/Facebook.vue:723
|
408 |
-
msgid "Automatically Generate Article Tags"
|
409 |
-
msgstr ""
|
410 |
-
|
411 |
-
#: src/vue/pages/social-networks/views/Facebook.vue:724
|
412 |
-
msgid "Use Keywords in Article Tags"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: src/vue/pages/
|
416 |
-
|
|
|
|
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: src/vue/pages/
|
420 |
-
msgid "
|
421 |
msgstr ""
|
422 |
|
423 |
-
|
424 |
-
#: src/vue/pages/social-networks/views/Facebook.vue:728
|
425 |
msgid ""
|
426 |
-
"
|
427 |
-
"
|
428 |
-
"change the title, meta and image."
|
429 |
-
msgstr ""
|
430 |
-
|
431 |
-
#: src/vue/pages/post-settings/views/Facebook.vue:244
|
432 |
-
#: src/vue/pages/social-networks/views/Facebook.vue:729
|
433 |
-
msgid "Object Type"
|
434 |
-
msgstr ""
|
435 |
-
|
436 |
-
#: src/vue/pages/local-business-seo/views/BusinessInfo.vue:117
|
437 |
-
msgid "Address"
|
438 |
-
msgstr ""
|
439 |
-
|
440 |
-
#: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:323
|
441 |
-
msgid "Phone Number"
|
442 |
-
msgstr ""
|
443 |
-
|
444 |
-
#: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:102
|
445 |
-
msgid "Fax Number"
|
446 |
-
msgstr ""
|
447 |
-
|
448 |
-
#: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:103
|
449 |
-
msgid "Email Address"
|
450 |
-
msgstr ""
|
451 |
-
|
452 |
-
#: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:104
|
453 |
-
msgid "Show VAT ID"
|
454 |
-
msgstr ""
|
455 |
-
|
456 |
-
#: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:105
|
457 |
-
msgid "Show Tax ID"
|
458 |
-
msgstr ""
|
459 |
-
|
460 |
-
#: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:106
|
461 |
-
msgid "Phone/Fax Country Code"
|
462 |
-
msgstr ""
|
463 |
-
|
464 |
-
#: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:96
|
465 |
-
msgid "Show labels"
|
466 |
-
msgstr ""
|
467 |
-
|
468 |
-
#: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:97
|
469 |
-
msgid "Show icons"
|
470 |
-
msgstr ""
|
471 |
-
|
472 |
-
#: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:92
|
473 |
-
#: src/vue/pages/local-business-seo/views/BusinessInfo.vue:109
|
474 |
-
msgid "Business Info"
|
475 |
-
msgstr ""
|
476 |
-
|
477 |
-
#: src/vue/pages/local-business-seo/views/BusinessInfo.vue:110
|
478 |
-
#: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:321
|
479 |
-
msgid "Name"
|
480 |
-
msgstr ""
|
481 |
-
|
482 |
-
#: src/vue/pages/setup-wizard/views/Success.vue:150
|
483 |
-
msgid "Video and News Sitemaps"
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: src/vue/pages/
|
487 |
-
msgid "
|
488 |
msgstr ""
|
489 |
|
490 |
-
#: src/vue/pages/
|
491 |
-
msgid "
|
492 |
msgstr ""
|
493 |
|
494 |
-
#: src/vue/pages/
|
495 |
-
msgid "
|
496 |
msgstr ""
|
497 |
|
498 |
-
#: src/vue/pages/about/views/
|
499 |
-
msgid "
|
|
|
|
|
500 |
msgstr ""
|
501 |
|
502 |
-
#: src/vue/
|
503 |
-
msgid "
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: src/vue/pages/
|
507 |
-
msgid "
|
508 |
msgstr ""
|
509 |
|
510 |
-
#: src/vue/pages/
|
511 |
-
msgid "
|
512 |
msgstr ""
|
513 |
|
514 |
-
|
515 |
-
|
|
|
516 |
msgstr ""
|
517 |
|
518 |
# Translators: 1 - The plugin name ("All in One SEO").
|
519 |
-
#: src/vue/pages/
|
520 |
-
msgid "
|
521 |
-
|
522 |
-
|
523 |
-
#: src/vue/pages/feature-manager/views/FeatureManager.vue:152
|
524 |
-
msgid "Upgrade to Pro and Unlock All Features"
|
525 |
-
msgstr ""
|
526 |
-
|
527 |
-
#: src/vue/pages/feature-manager/views/FeatureManager.vue:153
|
528 |
-
msgid "A valid license key is required in order to use our addons."
|
529 |
-
msgstr ""
|
530 |
-
|
531 |
-
#: src/vue/pages/feature-manager/views/FeatureManager.vue:154
|
532 |
-
msgid "Enter License Key"
|
533 |
-
msgstr ""
|
534 |
-
|
535 |
-
#: src/vue/pages/feature-manager/views/FeatureManager.vue:155
|
536 |
-
msgid "Purchase License"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: src/vue/pages/
|
540 |
-
msgid ""
|
541 |
-
"Globally control the Title attribute and Alt text for images in your "
|
542 |
-
"content. These attributes are essential for both accessibility and SEO."
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: src/vue/pages/
|
546 |
-
msgid ""
|
547 |
-
"The Video Sitemap works in much the same way as the XML Sitemap module, it "
|
548 |
-
"generates an XML Sitemap specifically for video content on your site. "
|
549 |
-
"Search engines use this information to display rich snippet information in "
|
550 |
-
"search results."
|
551 |
msgstr ""
|
552 |
|
553 |
-
|
|
|
554 |
msgid ""
|
555 |
-
"
|
556 |
-
"
|
557 |
-
"In order to submit a News Sitemap to Google, you must have added your site "
|
558 |
-
"to Google’s Publisher Center and had it approved."
|
559 |
msgstr ""
|
560 |
|
561 |
-
|
562 |
-
|
563 |
-
"
|
564 |
-
"business, including your business name, address and phone number, opening "
|
565 |
-
"hours and price range. This information may be displayed as a Knowledge "
|
566 |
-
"Graph card or business carousel."
|
567 |
msgstr ""
|
568 |
|
569 |
-
# Translators: 1 -
|
570 |
-
#: src/vue/pages/about/views/
|
571 |
msgid ""
|
572 |
-
"%1$
|
573 |
-
"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: src/vue/
|
577 |
-
msgid "
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: src/vue/pages/local-seo/views/OpeningHours.vue:
|
|
|
581 |
msgid "Opening Hours Settings"
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: src/vue/pages/local-
|
585 |
-
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:276
|
586 |
-
#: src/vue/pages/local-seo/views/pro/OpeningHours.vue:219
|
587 |
-
#: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:295
|
588 |
msgid "Show Opening Hours"
|
589 |
msgstr ""
|
590 |
|
591 |
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:283
|
592 |
#: src/vue/pages/local-seo/views/pro/OpeningHours.vue:220
|
593 |
-
#: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:296
|
594 |
msgid "Display Opening Hours"
|
595 |
msgstr ""
|
596 |
|
597 |
#: src/vue/pages/local-business-seo/views/OpeningHours.vue:175
|
598 |
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:284
|
599 |
#: src/vue/pages/local-seo/views/pro/OpeningHours.vue:221
|
600 |
-
#: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:297
|
601 |
msgid "Labels"
|
602 |
msgstr ""
|
603 |
|
604 |
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:285
|
605 |
-
#: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:298
|
606 |
msgid "Closed label"
|
607 |
msgstr ""
|
608 |
|
609 |
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:286
|
610 |
-
#: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:299
|
611 |
msgid "Text to display when 'Closed' setting is checked"
|
612 |
msgstr ""
|
613 |
|
614 |
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:287
|
615 |
#: src/vue/pages/local-seo/views/pro/OpeningHours.vue:226
|
616 |
-
#: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:300
|
617 |
msgid "Open 24h label"
|
618 |
msgstr ""
|
619 |
|
620 |
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:288
|
621 |
-
#: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:301
|
622 |
msgid "Text to display when 'Open 24h' setting is checked"
|
623 |
msgstr ""
|
624 |
|
625 |
#: src/vue/pages/local-business-seo/views/OpeningHours.vue:183
|
626 |
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:289
|
627 |
#: src/vue/pages/local-seo/views/pro/OpeningHours.vue:229
|
628 |
-
#: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:302
|
629 |
msgid "Open 24/7"
|
630 |
msgstr ""
|
631 |
|
632 |
#: src/vue/pages/local-business-seo/views/OpeningHours.vue:184
|
633 |
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:290
|
634 |
#: src/vue/pages/local-seo/views/pro/OpeningHours.vue:230
|
635 |
-
#: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:303
|
636 |
msgid "Use 24h format"
|
637 |
msgstr ""
|
638 |
|
639 |
#: src/vue/pages/local-business-seo/views/OpeningHours.vue:186
|
640 |
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:291
|
641 |
#: src/vue/pages/local-seo/views/pro/OpeningHours.vue:231
|
642 |
-
#: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:304
|
643 |
msgid "Timezone"
|
644 |
msgstr ""
|
645 |
|
646 |
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:292
|
647 |
-
#: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:305
|
648 |
msgid "Select your timezone:"
|
649 |
msgstr ""
|
650 |
|
@@ -679,4955 +622,5200 @@ msgstr ""
|
|
679 |
#: src/vue/pages/local-business-seo/views/OpeningHours.vue:181
|
680 |
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:301
|
681 |
#: src/vue/pages/local-seo/views/pro/OpeningHours.vue:234
|
682 |
-
#: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:314
|
683 |
msgid "Open 24h"
|
684 |
msgstr ""
|
685 |
|
686 |
#: src/vue/pages/local-business-seo/views/OpeningHours.vue:178
|
687 |
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:302
|
688 |
#: src/vue/pages/local-seo/views/pro/OpeningHours.vue:235
|
689 |
-
#: src/vue/pages/local-seo/views/pro/OpeningHoursActivate.vue:315
|
690 |
msgid "Closed"
|
691 |
msgstr ""
|
692 |
|
693 |
-
|
694 |
-
|
695 |
-
msgid "Step %1$s of %2$s"
|
696 |
msgstr ""
|
697 |
|
698 |
-
|
699 |
-
|
700 |
-
msgid "Upgrade to %1$s"
|
701 |
msgstr ""
|
702 |
|
703 |
-
|
704 |
-
|
705 |
-
msgid "This feature is only available for licensed %1$s %2$s users."
|
706 |
msgstr ""
|
707 |
|
708 |
-
#: src/vue/
|
709 |
-
msgid "
|
710 |
msgstr ""
|
711 |
|
712 |
-
#: src/vue/
|
713 |
-
msgid "
|
714 |
msgstr ""
|
715 |
|
716 |
-
#: src/vue/pages/local-seo/views/pro/
|
717 |
-
msgid ""
|
718 |
-
"Local business information may be displayed when users search for "
|
719 |
-
"businesses on Google search or Google Maps. Google decides on a per search "
|
720 |
-
"basis whether to display this information or not and it’s completely "
|
721 |
-
"automated."
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: src/vue/pages/local-seo/views/pro/
|
725 |
-
msgid "
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: src/vue/pages/local-
|
729 |
-
|
730 |
-
|
|
|
|
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: src/vue/pages/local-
|
734 |
-
msgid "
|
|
|
|
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: src/vue/pages/local-
|
738 |
-
msgid "
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: src/vue/pages/local-
|
742 |
-
msgid "
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: src/vue/pages/
|
|
|
|
|
|
|
|
|
746 |
msgid ""
|
747 |
-
"
|
748 |
-
"
|
|
|
|
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: src/vue/pages/local-seo/views/
|
752 |
-
|
753 |
-
msgid "Upgrade to Pro and Unlock Local SEO"
|
754 |
msgstr ""
|
755 |
|
756 |
-
|
757 |
-
|
758 |
-
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:305
|
759 |
-
msgid "Local SEO is only available for licensed %1$s %2$s users."
|
760 |
msgstr ""
|
761 |
|
762 |
-
#: src/vue/
|
763 |
-
msgid "
|
764 |
msgstr ""
|
765 |
|
766 |
-
#: src/vue/
|
767 |
-
msgid "
|
768 |
msgstr ""
|
769 |
|
770 |
-
#: src/vue/
|
771 |
-
msgid "
|
772 |
msgstr ""
|
773 |
|
774 |
-
#: src/vue/
|
775 |
-
msgid "
|
776 |
msgstr ""
|
777 |
|
778 |
-
#: src/vue/
|
779 |
-
msgid "
|
780 |
msgstr ""
|
781 |
|
782 |
-
#: src/vue/
|
783 |
-
|
784 |
-
#: src/vue/pages/local-seo/views/pro/OpeningHours.vue:232
|
785 |
-
msgid "Select your timezone"
|
786 |
msgstr ""
|
787 |
|
788 |
-
#: src/vue/
|
789 |
-
msgid "
|
790 |
msgstr ""
|
791 |
|
792 |
-
#: src/vue/
|
793 |
-
msgid "
|
794 |
msgstr ""
|
795 |
|
796 |
-
#: src/vue/
|
797 |
-
msgid "
|
798 |
msgstr ""
|
799 |
|
800 |
-
#: src/vue/
|
801 |
-
msgid ""
|
802 |
-
"An error occurred while activating the addon. Please upload it manually or "
|
803 |
-
"contact support for more information."
|
804 |
msgstr ""
|
805 |
|
806 |
-
#: src/vue/
|
807 |
-
msgid "
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: src/vue/
|
811 |
-
|
|
|
|
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: src/vue/
|
815 |
-
msgid "
|
|
|
|
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: src/vue/
|
819 |
-
msgid "Search Appearance"
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: src/vue/
|
823 |
-
msgid "
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: src/vue/pages/
|
827 |
-
|
|
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: src/vue/
|
831 |
-
msgid "
|
|
|
|
|
832 |
msgstr ""
|
833 |
|
834 |
-
#: src/vue/
|
835 |
-
msgid "
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: src/vue/
|
839 |
-
|
840 |
-
|
|
|
841 |
msgstr ""
|
842 |
|
843 |
-
#: src/vue/
|
844 |
-
|
845 |
-
|
|
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: src/vue/
|
849 |
-
msgid "
|
850 |
msgstr ""
|
851 |
|
852 |
-
#: src/vue/
|
853 |
-
msgid "to
|
854 |
msgstr ""
|
855 |
|
856 |
-
#: src/vue/
|
857 |
-
msgid "
|
858 |
msgstr ""
|
859 |
|
860 |
-
#: src/vue/
|
861 |
-
msgid "
|
862 |
msgstr ""
|
863 |
|
864 |
-
|
865 |
-
|
866 |
-
msgid "Connect with %1$s"
|
867 |
msgstr ""
|
868 |
|
869 |
-
|
870 |
-
|
871 |
-
msgid "We've got some%1$swork to do!"
|
872 |
msgstr ""
|
873 |
|
874 |
-
|
875 |
-
|
876 |
-
msgid "Needs%1$sImprovement!"
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: src/vue/
|
880 |
-
msgid "
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: src/vue/
|
884 |
-
msgid "
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: src/vue/
|
888 |
-
msgid "
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: src/vue/
|
892 |
-
msgid "
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: src/vue/
|
896 |
-
msgid "
|
897 |
msgstr ""
|
898 |
|
899 |
-
#: src/vue/
|
900 |
-
msgid "
|
901 |
msgstr ""
|
902 |
|
903 |
-
#: src/vue/
|
904 |
-
msgid "
|
905 |
msgstr ""
|
906 |
|
907 |
-
#: src/vue/
|
908 |
-
msgid "
|
909 |
msgstr ""
|
910 |
|
911 |
-
#: src/vue/
|
912 |
-
msgid "
|
913 |
msgstr ""
|
914 |
|
915 |
-
|
916 |
-
|
|
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: src/vue/
|
920 |
-
msgid "
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: src/vue/
|
924 |
-
msgid "
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: src/vue/
|
928 |
-
msgid "
|
929 |
msgstr ""
|
930 |
|
931 |
-
|
932 |
-
|
|
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: src/vue/
|
936 |
-
msgid "
|
937 |
msgstr ""
|
938 |
|
939 |
-
#: src/vue/
|
940 |
-
msgid "
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: src/vue/
|
944 |
-
msgid "
|
945 |
msgstr ""
|
946 |
|
947 |
-
|
948 |
-
|
949 |
-
msgid "%1$s out of %2$s max recommended characters."
|
950 |
msgstr ""
|
951 |
|
952 |
-
#: src/vue/
|
953 |
-
msgid "
|
954 |
msgstr ""
|
955 |
|
956 |
-
#: src/vue/
|
957 |
-
msgid "
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: src/vue/
|
961 |
-
msgid "
|
962 |
msgstr ""
|
963 |
|
964 |
-
#: src/vue/
|
965 |
-
msgid "
|
966 |
msgstr ""
|
967 |
|
968 |
-
#: src/vue/
|
969 |
-
msgid "
|
970 |
msgstr ""
|
971 |
|
972 |
-
#: src/vue/
|
973 |
-
msgid "
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: src/vue/
|
977 |
-
msgid "
|
978 |
msgstr ""
|
979 |
|
980 |
-
#: src/vue/
|
981 |
-
msgid "
|
982 |
msgstr ""
|
983 |
|
984 |
-
#: src/vue/
|
985 |
-
msgid "
|
986 |
msgstr ""
|
987 |
|
988 |
-
#: src/vue/
|
989 |
-
msgid "
|
990 |
msgstr ""
|
991 |
|
992 |
-
#: src/vue/
|
993 |
-
msgid "
|
994 |
msgstr ""
|
995 |
|
996 |
-
#: src/vue/
|
997 |
-
msgid "
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#: src/vue/
|
1001 |
-
msgid "
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
#: src/vue/
|
1005 |
-
msgid "
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#: src/vue/
|
1009 |
-
msgid "
|
1010 |
msgstr ""
|
1011 |
|
1012 |
-
#: src/vue/
|
1013 |
-
|
1014 |
-
#: src/vue/pages/redirects/views/pro/Redirects.vue:233
|
1015 |
-
msgid "Delete"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
-
#: src/vue/
|
1019 |
-
msgid "
|
1020 |
msgstr ""
|
1021 |
|
1022 |
-
#: src/vue/
|
1023 |
-
msgid "
|
1024 |
msgstr ""
|
1025 |
|
1026 |
-
|
1027 |
-
|
1028 |
-
msgid "minutes ago"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: src/vue/
|
1032 |
-
msgid "
|
1033 |
msgstr ""
|
1034 |
|
1035 |
-
|
1036 |
-
|
1037 |
-
msgid "days ago"
|
1038 |
msgstr ""
|
1039 |
|
1040 |
-
#: src/vue/
|
1041 |
-
msgid "
|
1042 |
msgstr ""
|
1043 |
|
1044 |
-
|
1045 |
-
|
1046 |
-
msgid "months ago"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
-
#: src/vue/
|
1050 |
-
msgid "
|
1051 |
msgstr ""
|
1052 |
|
1053 |
-
|
1054 |
-
|
1055 |
-
msgid "years ago"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
-
#: src/vue/
|
1059 |
-
|
|
|
1060 |
msgstr ""
|
1061 |
|
1062 |
-
#: src/vue/
|
1063 |
-
msgid "
|
1064 |
msgstr ""
|
1065 |
|
1066 |
-
#: src/vue/
|
1067 |
-
msgid "
|
1068 |
msgstr ""
|
1069 |
|
1070 |
-
#: src/vue/
|
1071 |
-
msgid "
|
1072 |
msgstr ""
|
1073 |
|
1074 |
-
#: src/vue/
|
1075 |
-
msgid "
|
1076 |
msgstr ""
|
1077 |
|
1078 |
-
#: src/vue/
|
1079 |
-
msgid "
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: src/vue/
|
1083 |
-
msgid "
|
1084 |
msgstr ""
|
1085 |
|
1086 |
-
|
1087 |
-
|
1088 |
-
msgid "Browse documentation, reference material, and tutorials for %1$s."
|
1089 |
msgstr ""
|
1090 |
|
1091 |
-
#: src/vue/
|
1092 |
-
msgid "
|
1093 |
msgstr ""
|
1094 |
|
1095 |
-
#: src/vue/
|
1096 |
-
|
|
|
1097 |
msgstr ""
|
1098 |
|
1099 |
-
#: src/vue/
|
1100 |
-
|
|
|
1101 |
msgstr ""
|
1102 |
|
1103 |
-
#: src/vue/
|
1104 |
-
msgid "
|
1105 |
msgstr ""
|
1106 |
|
1107 |
-
#: src/vue/
|
1108 |
-
msgid "
|
1109 |
msgstr ""
|
1110 |
|
1111 |
-
#: src/vue/
|
1112 |
-
msgid "
|
1113 |
msgstr ""
|
1114 |
|
1115 |
-
|
1116 |
-
|
1117 |
-
msgid "Welcome to %1$s"
|
1118 |
msgstr ""
|
1119 |
|
1120 |
-
|
1121 |
-
|
1122 |
-
msgid ""
|
1123 |
-
"Thank you for choosing the best WordPress SEO plugin. %1$s default settings "
|
1124 |
-
"works great out of the box. We created the setup wizard to guide you "
|
1125 |
-
"through some important configuration settings & custom-tailored SEO best "
|
1126 |
-
"practices for your site to help you improve rankings."
|
1127 |
msgstr ""
|
1128 |
|
1129 |
-
#: src/vue/
|
1130 |
-
msgid "
|
1131 |
msgstr ""
|
1132 |
|
1133 |
-
#: src/vue/
|
1134 |
-
msgid "
|
1135 |
msgstr ""
|
1136 |
|
1137 |
-
#: src/vue/
|
1138 |
-
msgid "
|
1139 |
msgstr ""
|
1140 |
|
1141 |
-
#: src/vue/
|
1142 |
-
msgid "
|
1143 |
msgstr ""
|
1144 |
|
1145 |
-
#: src/vue/
|
1146 |
-
|
1147 |
-
msgid "Copied!"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
-
#: src/vue/
|
1151 |
-
msgid "
|
1152 |
msgstr ""
|
1153 |
|
1154 |
-
#: src/vue/
|
1155 |
-
msgid "
|
1156 |
msgstr ""
|
1157 |
|
1158 |
-
#: src/vue/
|
1159 |
-
msgid "
|
1160 |
msgstr ""
|
1161 |
|
1162 |
-
#: src/vue/
|
1163 |
-
msgid "
|
1164 |
msgstr ""
|
1165 |
|
1166 |
-
#: src/vue/
|
1167 |
-
msgid "
|
1168 |
msgstr ""
|
1169 |
|
1170 |
-
#: src/vue/
|
1171 |
-
msgid "
|
1172 |
msgstr ""
|
1173 |
|
1174 |
-
#: src/vue/
|
1175 |
-
|
1176 |
-
msgid "Post Types"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
-
#: src/vue/
|
1180 |
-
|
1181 |
-
#: src/vue/standalone/HtmlSitemapSidebar.vue:116
|
1182 |
-
msgid "Taxonomies"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
-
#: src/vue/
|
1186 |
-
|
1187 |
-
msgid "Priority"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: src/vue/
|
1191 |
-
|
1192 |
-
msgid "Frequency"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: src/vue/
|
1196 |
-
msgid "
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#: src/vue/
|
1200 |
-
msgid "
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: src/vue/
|
1204 |
-
msgid "
|
1205 |
msgstr ""
|
1206 |
|
1207 |
-
#: src/vue/
|
1208 |
-
msgid "
|
1209 |
msgstr ""
|
1210 |
|
1211 |
-
#: src/vue/
|
1212 |
-
msgid "
|
1213 |
msgstr ""
|
1214 |
|
1215 |
-
#: src/vue/
|
1216 |
-
msgid "
|
1217 |
msgstr ""
|
1218 |
|
1219 |
-
#: src/vue/
|
1220 |
-
msgid "
|
1221 |
msgstr ""
|
1222 |
|
1223 |
-
#: src/vue/
|
1224 |
-
msgid "
|
1225 |
msgstr ""
|
1226 |
|
1227 |
-
#: src/vue/
|
1228 |
-
msgid ""
|
1229 |
-
"All post types are set to noindex or your site does not have any post types "
|
1230 |
-
"registered that are supported by this feature."
|
1231 |
msgstr ""
|
1232 |
|
1233 |
-
#: src/vue/
|
1234 |
-
msgid ""
|
1235 |
-
"All taxonomies are set to noindex or your site does not have any taxonomies "
|
1236 |
-
"registered that are supported by this feature."
|
1237 |
msgstr ""
|
1238 |
|
1239 |
-
#: src/vue/
|
1240 |
-
msgid "
|
1241 |
msgstr ""
|
1242 |
|
1243 |
-
#: src/vue/
|
1244 |
-
msgid "
|
1245 |
msgstr ""
|
1246 |
|
1247 |
-
#: src/vue/
|
1248 |
-
msgid "
|
1249 |
msgstr ""
|
1250 |
|
1251 |
-
#: src/vue/
|
1252 |
-
msgid "
|
1253 |
msgstr ""
|
1254 |
|
1255 |
-
#: src/vue/
|
1256 |
-
msgid "
|
1257 |
msgstr ""
|
1258 |
|
1259 |
-
#: src/vue/
|
1260 |
-
msgid "
|
1261 |
msgstr ""
|
1262 |
|
1263 |
-
#: src/vue/
|
1264 |
-
msgid "
|
1265 |
msgstr ""
|
1266 |
|
1267 |
-
#: src/vue/
|
1268 |
-
msgid "
|
1269 |
msgstr ""
|
1270 |
|
1271 |
-
#: src/vue/
|
1272 |
-
msgid "
|
1273 |
msgstr ""
|
1274 |
|
1275 |
-
#: src/vue/
|
1276 |
-
msgid "
|
1277 |
msgstr ""
|
1278 |
|
1279 |
-
#: src/vue/
|
1280 |
-
msgid "
|
1281 |
msgstr ""
|
1282 |
|
1283 |
-
#: src/vue/
|
1284 |
-
msgid "
|
1285 |
msgstr ""
|
1286 |
|
1287 |
-
#: src/vue/
|
1288 |
-
msgid "
|
1289 |
msgstr ""
|
1290 |
|
1291 |
-
#: src/vue/
|
1292 |
-
msgid "
|
1293 |
msgstr ""
|
1294 |
|
1295 |
-
#: src/vue/
|
1296 |
-
msgid "
|
1297 |
msgstr ""
|
1298 |
|
1299 |
-
#: src/vue/
|
1300 |
-
msgid "
|
1301 |
msgstr ""
|
1302 |
|
1303 |
-
#: src/vue/
|
1304 |
-
msgid "
|
1305 |
msgstr ""
|
1306 |
|
1307 |
-
#: src/vue/
|
1308 |
-
msgid "
|
1309 |
msgstr ""
|
1310 |
|
1311 |
-
#: src/vue/
|
1312 |
-
msgid "
|
1313 |
msgstr ""
|
1314 |
|
1315 |
-
#: src/vue/
|
1316 |
-
msgid "
|
1317 |
msgstr ""
|
1318 |
|
1319 |
-
#: src/vue/
|
1320 |
-
msgid "
|
1321 |
msgstr ""
|
1322 |
|
1323 |
-
#: src/vue/
|
1324 |
-
msgid "
|
1325 |
msgstr ""
|
1326 |
|
1327 |
-
#: src/vue/
|
1328 |
-
msgid "
|
1329 |
msgstr ""
|
1330 |
|
1331 |
-
#: src/vue/
|
1332 |
-
msgid "
|
1333 |
msgstr ""
|
1334 |
|
1335 |
-
#: src/vue/
|
1336 |
-
msgid "
|
1337 |
msgstr ""
|
1338 |
|
1339 |
-
#: src/vue/
|
1340 |
-
msgid "
|
1341 |
msgstr ""
|
1342 |
|
1343 |
-
#: src/vue/
|
1344 |
-
msgid "
|
1345 |
msgstr ""
|
1346 |
|
1347 |
-
#: src/vue/
|
1348 |
-
msgid "
|
1349 |
msgstr ""
|
1350 |
|
1351 |
-
#: src/vue/
|
1352 |
-
msgid "
|
1353 |
msgstr ""
|
1354 |
|
1355 |
-
#: src/vue/
|
1356 |
-
msgid "
|
1357 |
msgstr ""
|
1358 |
|
1359 |
-
#: src/vue/
|
1360 |
-
msgid "
|
1361 |
msgstr ""
|
1362 |
|
1363 |
-
#: src/vue/
|
1364 |
-
msgid "
|
1365 |
msgstr ""
|
1366 |
|
1367 |
-
#: src/vue/
|
1368 |
-
msgid "
|
1369 |
msgstr ""
|
1370 |
|
1371 |
-
#: src/vue/
|
1372 |
-
msgid "
|
1373 |
msgstr ""
|
1374 |
|
1375 |
-
#: src/vue/
|
1376 |
-
msgid "
|
1377 |
msgstr ""
|
1378 |
|
1379 |
-
#: src/vue/
|
1380 |
-
|
|
|
|
|
|
|
|
|
1381 |
msgstr ""
|
1382 |
|
1383 |
-
|
1384 |
-
|
|
|
|
|
|
|
1385 |
msgstr ""
|
1386 |
|
1387 |
-
|
1388 |
-
|
|
|
1389 |
msgstr ""
|
1390 |
|
1391 |
-
|
1392 |
-
|
|
|
|
|
|
|
1393 |
msgstr ""
|
1394 |
|
1395 |
-
# Translators: 1 -
|
1396 |
-
#: src/vue/
|
1397 |
-
msgid "
|
|
|
|
|
1398 |
msgstr ""
|
1399 |
|
1400 |
-
|
1401 |
-
|
1402 |
-
msgid "For best results, you should strive for %1$s70 and above%2$s."
|
1403 |
msgstr ""
|
1404 |
|
1405 |
-
#: src/vue/
|
1406 |
-
|
|
|
1407 |
msgstr ""
|
1408 |
|
1409 |
-
#: src/vue/
|
1410 |
-
msgid "
|
|
|
|
|
1411 |
msgstr ""
|
1412 |
|
1413 |
-
#: src/vue/
|
1414 |
-
|
|
|
1415 |
msgstr ""
|
1416 |
|
1417 |
-
#: src/vue/
|
1418 |
-
msgid "
|
1419 |
msgstr ""
|
1420 |
|
1421 |
-
|
1422 |
-
#: src/vue/
|
1423 |
-
msgid "
|
1424 |
msgstr ""
|
1425 |
|
1426 |
-
|
1427 |
-
|
|
|
1428 |
msgstr ""
|
1429 |
|
1430 |
-
|
1431 |
-
|
|
|
1432 |
msgstr ""
|
1433 |
|
1434 |
-
|
1435 |
-
|
|
|
|
|
|
|
1436 |
msgstr ""
|
1437 |
|
1438 |
-
#: src/vue/components/common/
|
1439 |
-
msgid "
|
1440 |
msgstr ""
|
1441 |
|
1442 |
-
#: src/vue/components/common/
|
1443 |
-
msgid "
|
1444 |
msgstr ""
|
1445 |
|
1446 |
-
|
1447 |
-
|
|
|
1448 |
msgstr ""
|
1449 |
|
1450 |
-
|
1451 |
-
|
|
|
1452 |
msgstr ""
|
1453 |
|
1454 |
-
#: src/vue/
|
1455 |
-
msgid "
|
1456 |
msgstr ""
|
1457 |
|
1458 |
-
#: src/vue/components/common/
|
1459 |
-
msgid "
|
1460 |
msgstr ""
|
1461 |
|
1462 |
-
#: src/vue/
|
1463 |
-
msgid "
|
1464 |
msgstr ""
|
1465 |
|
1466 |
-
#: src/vue/components/
|
1467 |
-
|
|
|
|
|
|
|
|
|
1468 |
msgstr ""
|
1469 |
|
1470 |
-
#: src/vue/
|
1471 |
-
|
|
|
|
|
1472 |
msgstr ""
|
1473 |
|
1474 |
-
#: src/vue/
|
1475 |
-
|
|
|
|
|
1476 |
msgstr ""
|
1477 |
|
1478 |
-
#: src/vue/
|
1479 |
-
|
|
|
|
|
|
|
|
|
1480 |
msgstr ""
|
1481 |
|
1482 |
-
#: src/vue/
|
1483 |
-
msgid "
|
|
|
|
|
|
|
|
|
1484 |
msgstr ""
|
1485 |
|
1486 |
-
#: src/vue/
|
1487 |
-
msgid "
|
|
|
|
|
|
|
|
|
1488 |
msgstr ""
|
1489 |
|
1490 |
-
#: src/vue/
|
1491 |
-
|
|
|
1492 |
msgstr ""
|
1493 |
|
1494 |
-
#: src/vue/
|
1495 |
-
|
|
|
|
|
1496 |
msgstr ""
|
1497 |
|
1498 |
-
#: src/vue/
|
1499 |
-
|
|
|
1500 |
msgstr ""
|
1501 |
|
1502 |
-
#: src/vue/
|
1503 |
-
|
|
|
1504 |
msgstr ""
|
1505 |
|
1506 |
-
#: src/vue/
|
1507 |
-
|
|
|
|
|
|
|
1508 |
msgstr ""
|
1509 |
|
1510 |
-
|
1511 |
-
#: src/vue/
|
1512 |
-
|
|
|
|
|
1513 |
msgstr ""
|
1514 |
|
1515 |
-
#: src/vue/
|
|
|
1516 |
msgid ""
|
1517 |
-
"
|
1518 |
-
"
|
1519 |
msgstr ""
|
1520 |
|
1521 |
-
|
1522 |
-
#: src/vue/
|
1523 |
-
msgid "
|
1524 |
msgstr ""
|
1525 |
|
1526 |
-
# Translators:
|
1527 |
-
#: src/vue/
|
1528 |
-
|
1529 |
-
"
|
1530 |
-
"improve. Could you take a minute and let us know what we can do better?"
|
1531 |
msgstr ""
|
1532 |
|
1533 |
-
#: src/vue/pages/
|
1534 |
-
|
1535 |
-
#: src/vue/standalone/HtmlSitemapSidebar.vue:117
|
1536 |
-
msgid "Include All Post Types"
|
1537 |
msgstr ""
|
1538 |
|
1539 |
-
#: src/vue/pages/
|
1540 |
-
#: src/vue/
|
1541 |
-
|
|
|
1542 |
msgstr ""
|
1543 |
|
1544 |
-
#: src/vue/
|
1545 |
-
msgid "
|
1546 |
msgstr ""
|
1547 |
|
1548 |
-
#: src/vue/
|
1549 |
-
msgid "
|
1550 |
msgstr ""
|
1551 |
|
1552 |
-
#: src/vue/
|
1553 |
-
|
|
|
1554 |
msgstr ""
|
1555 |
|
1556 |
-
#: src/vue/
|
1557 |
-
msgid "
|
1558 |
msgstr ""
|
1559 |
|
1560 |
-
#: src/vue/
|
1561 |
-
msgid ""
|
1562 |
-
"The page that you have entered already exists. Please enter a page with a "
|
1563 |
-
"unique slug."
|
1564 |
msgstr ""
|
1565 |
|
1566 |
-
#: src/vue/
|
1567 |
-
msgid ""
|
1568 |
-
"The following shortcode attributes can be used to override the default "
|
1569 |
-
"settings:"
|
1570 |
msgstr ""
|
1571 |
|
1572 |
-
#: src/vue/
|
1573 |
-
msgid ""
|
1574 |
-
"The function accepts an associative array with the following arguments that "
|
1575 |
-
"can be used to override the default settings:"
|
1576 |
msgstr ""
|
1577 |
|
1578 |
-
#: src/vue/
|
1579 |
-
msgid "
|
1580 |
msgstr ""
|
1581 |
|
1582 |
-
#: src/vue/
|
1583 |
-
msgid "
|
1584 |
msgstr ""
|
1585 |
|
1586 |
-
#: src/vue/
|
1587 |
-
msgid "
|
1588 |
msgstr ""
|
1589 |
|
1590 |
-
#: src/vue/
|
1591 |
-
msgid "
|
1592 |
msgstr ""
|
1593 |
|
1594 |
-
|
1595 |
-
|
1596 |
-
msgid "The HTML tag that is used for the label of each section. Defaults to %1$s."
|
1597 |
msgstr ""
|
1598 |
|
1599 |
-
|
1600 |
-
|
1601 |
-
msgid "Whether the labels should be shown or not. Defaults to %1$s."
|
1602 |
msgstr ""
|
1603 |
|
1604 |
-
#: src/vue/
|
1605 |
-
msgid "
|
1606 |
msgstr ""
|
1607 |
|
1608 |
-
#: src/vue/
|
1609 |
-
msgid "
|
1610 |
msgstr ""
|
1611 |
|
1612 |
-
|
1613 |
-
|
1614 |
-
msgid "The sort direction. The supported values are %1$s and %2$s."
|
1615 |
msgstr ""
|
1616 |
|
1617 |
-
|
1618 |
-
|
1619 |
-
msgid "The sort order. The supported values are %1$s, %2$s, %3$s and %4$s."
|
1620 |
msgstr ""
|
1621 |
|
1622 |
-
|
1623 |
-
|
1624 |
-
msgid "%1$s %2$s Not Configured Properly"
|
1625 |
msgstr ""
|
1626 |
|
1627 |
-
#: src/vue/
|
1628 |
-
msgid "
|
1629 |
msgstr ""
|
1630 |
|
1631 |
-
#: src/vue/
|
1632 |
-
|
|
|
1633 |
msgstr ""
|
1634 |
|
1635 |
-
#: src/vue/
|
1636 |
-
|
|
|
1637 |
msgstr ""
|
1638 |
|
1639 |
-
#: src/vue/
|
1640 |
-
msgid "
|
1641 |
msgstr ""
|
1642 |
|
1643 |
-
#: src/vue/
|
1644 |
-
|
|
|
1645 |
msgstr ""
|
1646 |
|
1647 |
-
#: src/vue/
|
1648 |
-
msgid "
|
1649 |
msgstr ""
|
1650 |
|
1651 |
-
#: src/vue/
|
1652 |
-
msgid "
|
1653 |
msgstr ""
|
1654 |
|
1655 |
-
#: src/vue/
|
1656 |
-
msgid "
|
1657 |
msgstr ""
|
1658 |
|
1659 |
-
#: src/vue/
|
1660 |
-
msgid "
|
1661 |
msgstr ""
|
1662 |
|
1663 |
-
#: src/vue/
|
1664 |
-
msgid "
|
1665 |
msgstr ""
|
1666 |
|
1667 |
-
#: src/vue/
|
1668 |
-
msgid "
|
1669 |
msgstr ""
|
1670 |
|
1671 |
-
#: src/vue/
|
1672 |
-
msgid ""
|
1673 |
-
"You need to use titles and descriptions that are attractive to users and "
|
1674 |
-
"contain your keywords. Use the keywords naturally - keyword stuffing is "
|
1675 |
-
"usually detected and will result in a lower ranking. What's more, it's "
|
1676 |
-
"pretty off-putting for potential readers, who are more likely to click on "
|
1677 |
-
"an appealing link."
|
1678 |
msgstr ""
|
1679 |
|
1680 |
-
|
1681 |
-
|
|
|
1682 |
msgstr ""
|
1683 |
|
1684 |
-
|
1685 |
-
|
|
|
1686 |
msgstr ""
|
1687 |
|
1688 |
-
|
1689 |
-
|
1690 |
-
msgid "For the best SEO results there should be exactly one H1 tag on each page."
|
1691 |
msgstr ""
|
1692 |
|
1693 |
-
|
1694 |
-
|
1695 |
-
msgid "%1$d H1 tags were found."
|
1696 |
msgstr ""
|
1697 |
|
1698 |
-
#: src/vue/
|
1699 |
-
msgid "
|
1700 |
msgstr ""
|
1701 |
|
1702 |
-
#: src/vue/
|
1703 |
-
msgid "
|
1704 |
msgstr ""
|
1705 |
|
1706 |
-
#: src/vue/
|
1707 |
-
msgid ""
|
1708 |
-
"WordPress sites usually insert the page or post title as an H1 tag "
|
1709 |
-
"(although custom themes can change this behavior)."
|
1710 |
msgstr ""
|
1711 |
|
1712 |
-
#: src/vue/
|
1713 |
-
msgid ""
|
1714 |
-
"Ensure your most important keywords appear in the H1 tag - don't force it, "
|
1715 |
-
"use them in a natural way that makes sense to human readers."
|
1716 |
msgstr ""
|
1717 |
|
1718 |
-
#: src/vue/
|
1719 |
-
msgid ""
|
1720 |
-
"Because your headline plays a large role in reader engagement, it's worth "
|
1721 |
-
"spending extra time perfecting it. Many top copywriters spend hours getting "
|
1722 |
-
"their headlines just right - sometimes they spend longer on the headline "
|
1723 |
-
"than the rest of the article!"
|
1724 |
msgstr ""
|
1725 |
|
1726 |
-
#: src/vue/
|
1727 |
-
msgid ""
|
1728 |
-
"A good headline stimulates reader interest and offers a compelling reason "
|
1729 |
-
"to read your content. It promises a believable benefit."
|
1730 |
msgstr ""
|
1731 |
|
1732 |
-
#: src/vue/
|
1733 |
-
msgid ""
|
1734 |
-
"You should write as if your readers are selfish people with short attention "
|
1735 |
-
"spans (because that describes a large percentage of the world's "
|
1736 |
-
"population). Readers visit websites for selfish reasons - they're not there "
|
1737 |
-
"to make you happy."
|
1738 |
msgstr ""
|
1739 |
|
1740 |
-
#: src/vue/
|
1741 |
-
msgid "
|
1742 |
msgstr ""
|
1743 |
|
1744 |
-
#: src/vue/
|
1745 |
-
msgid "
|
1746 |
msgstr ""
|
1747 |
|
1748 |
-
|
1749 |
-
|
|
|
1750 |
msgstr ""
|
1751 |
|
1752 |
-
#: src/vue/
|
1753 |
-
msgid "
|
1754 |
msgstr ""
|
1755 |
|
1756 |
-
#: src/vue/
|
1757 |
-
msgid ""
|
1758 |
-
"Make sure you have a good balance of H2 tags to plain text in your content. "
|
1759 |
-
"Break the content down into logical sections, and use headings to introduce "
|
1760 |
-
"each new topic."
|
1761 |
msgstr ""
|
1762 |
|
1763 |
-
#: src/vue/
|
1764 |
-
msgid ""
|
1765 |
-
"Also, try to include synonyms and relevant terminology in H2 tag text. "
|
1766 |
-
"Search engines are pretty smart - they know which words usually occur "
|
1767 |
-
"together in each niche."
|
1768 |
msgstr ""
|
1769 |
|
1770 |
-
#: src/vue/
|
1771 |
-
msgid ""
|
1772 |
-
"It should be easy to include your main and supporting keywords in the H2 "
|
1773 |
-
"tags - after all, these keywords describe your content! If it's hard to "
|
1774 |
-
"work the keywords into your subheadings, it could be a sign that the "
|
1775 |
-
"keywords aren't closely related to your content."
|
1776 |
msgstr ""
|
1777 |
|
1778 |
-
#: src/vue/
|
1779 |
-
msgid ""
|
1780 |
-
"Don't try to force keywords into sub-headings if they feel unnatural. It "
|
1781 |
-
"will send the wrong message to your readers, possibly driving them away."
|
1782 |
msgstr ""
|
1783 |
|
1784 |
-
#: src/vue/
|
1785 |
-
msgid "
|
1786 |
msgstr ""
|
1787 |
|
1788 |
-
#: src/vue/
|
1789 |
-
msgid "
|
1790 |
msgstr ""
|
1791 |
|
1792 |
-
#: src/vue/
|
1793 |
-
msgid "
|
1794 |
msgstr ""
|
1795 |
|
1796 |
-
#: src/vue/
|
1797 |
-
msgid "
|
1798 |
msgstr ""
|
1799 |
|
1800 |
-
#: src/vue/
|
1801 |
-
msgid ""
|
1802 |
-
"Make sure every image has an alt tag, and add useful descriptions to each "
|
1803 |
-
"image. Add your keywords or synonyms - but do it in a natural way."
|
1804 |
msgstr ""
|
1805 |
|
1806 |
-
#: src/vue/
|
1807 |
-
|
|
|
1808 |
msgstr ""
|
1809 |
|
1810 |
-
#: src/vue/
|
1811 |
-
msgid "
|
1812 |
msgstr ""
|
1813 |
|
1814 |
-
#: src/vue/
|
1815 |
-
msgid "
|
1816 |
msgstr ""
|
1817 |
|
1818 |
-
#: src/vue/
|
1819 |
-
msgid "
|
1820 |
msgstr ""
|
1821 |
|
1822 |
-
#: src/vue/
|
1823 |
-
msgid "
|
1824 |
msgstr ""
|
1825 |
|
1826 |
-
#: src/vue/
|
1827 |
-
msgid "
|
1828 |
msgstr ""
|
1829 |
|
1830 |
-
#: src/vue/
|
1831 |
-
msgid "
|
1832 |
msgstr ""
|
1833 |
|
1834 |
-
#: src/vue/
|
1835 |
-
msgid "
|
1836 |
msgstr ""
|
1837 |
|
1838 |
-
#: src/vue/
|
1839 |
-
|
|
|
1840 |
msgstr ""
|
1841 |
|
1842 |
-
#: src/vue/
|
1843 |
-
|
1844 |
-
"
|
1845 |
-
"you link to high-quality sites - Google penalizes pages that link to "
|
1846 |
-
"\"spammy\" sites (ones that break the Google webmaster guidelines)."
|
1847 |
msgstr ""
|
1848 |
|
1849 |
-
#: src/vue/
|
1850 |
-
msgid ""
|
1851 |
-
"Ideally, the links should be highly relevant to the subject you're writing "
|
1852 |
-
"about. It's impossible to cover every aspect of a subject on a single page, "
|
1853 |
-
"but your readers may be fascinated by some detail you barely touch on. If "
|
1854 |
-
"you link to a resource where they can learn more, they'll be grateful. "
|
1855 |
-
"What's more, you'll be rewarded with higher rankings!"
|
1856 |
msgstr ""
|
1857 |
|
1858 |
-
#: src/vue/
|
1859 |
-
msgid "
|
1860 |
msgstr ""
|
1861 |
|
1862 |
-
#: src/vue/
|
1863 |
-
msgid "
|
1864 |
msgstr ""
|
1865 |
|
1866 |
-
#: src/vue/
|
1867 |
-
|
|
|
1868 |
msgstr ""
|
1869 |
|
1870 |
-
#: src/vue/
|
1871 |
-
msgid "
|
1872 |
msgstr ""
|
1873 |
|
1874 |
-
#: src/vue/
|
1875 |
-
msgid ""
|
1876 |
-
"Every page on your site should have a <link> tag with a 'rel=\"canonical\"' "
|
1877 |
-
"attribute. The link tag should go inside the page's head tag, and it should "
|
1878 |
-
"contain the page's \"correct\" URL."
|
1879 |
msgstr ""
|
1880 |
|
1881 |
-
#: src/vue/
|
1882 |
-
msgid ""
|
1883 |
-
"If you've republished an article from another source (such as another site "
|
1884 |
-
"or a different section of your own site) then you need to pick which URL is "
|
1885 |
-
"the \"correct\" one and use that!"
|
1886 |
msgstr ""
|
1887 |
|
1888 |
-
#: src/vue/
|
1889 |
-
msgid "
|
1890 |
msgstr ""
|
1891 |
|
1892 |
-
#: src/vue/
|
1893 |
-
msgid "
|
1894 |
msgstr ""
|
1895 |
|
1896 |
-
#: src/vue/
|
1897 |
-
msgid "
|
1898 |
msgstr ""
|
1899 |
|
1900 |
-
#: src/vue/
|
1901 |
-
msgid "
|
1902 |
msgstr ""
|
1903 |
|
1904 |
-
#: src/vue/
|
1905 |
-
msgid ""
|
1906 |
-
"Only ever use noindex meta tag or header on pages you want to keep out of "
|
1907 |
-
"the reach of search engines!"
|
1908 |
msgstr ""
|
1909 |
|
1910 |
-
#: src/vue/
|
1911 |
-
msgid ""
|
1912 |
-
"The www and non-www versions of your URL are not redirected to the same "
|
1913 |
-
"site."
|
1914 |
msgstr ""
|
1915 |
|
1916 |
-
#: src/vue/
|
1917 |
-
msgid "
|
1918 |
msgstr ""
|
1919 |
|
1920 |
-
|
1921 |
-
|
1922 |
-
"
|
1923 |
-
"site."
|
1924 |
msgstr ""
|
1925 |
|
1926 |
-
#: src/vue/
|
1927 |
-
msgid ""
|
1928 |
-
"Both the www and non-www versions of the URL are redirected to the same "
|
1929 |
-
"site."
|
1930 |
msgstr ""
|
1931 |
|
1932 |
-
#: src/vue/
|
1933 |
-
msgid ""
|
1934 |
-
"Decide whether you want your site's URLs to include a \"www\", or if you "
|
1935 |
-
"prefer a plain domain name. There are marketing pros and cons for each "
|
1936 |
-
"choice, but neither one is better or worse for SEO purposes - as long as "
|
1937 |
-
"you're consistent."
|
1938 |
msgstr ""
|
1939 |
|
1940 |
-
#: src/vue/
|
1941 |
-
msgid ""
|
1942 |
-
"You should use HTTP redirections (301 permanant redirects) to pass PageRank "
|
1943 |
-
"from the \"wrong\" URLs to the standard (canonical) ones. That way, your "
|
1944 |
-
"content will still benefit from backlinks if someone makes a mistake and "
|
1945 |
-
"uses the wrong URL."
|
1946 |
msgstr ""
|
1947 |
|
1948 |
-
#: src/vue/
|
1949 |
-
msgid "
|
1950 |
msgstr ""
|
1951 |
|
1952 |
-
#: src/vue/
|
1953 |
-
msgid "
|
1954 |
msgstr ""
|
1955 |
|
1956 |
-
#: src/vue/
|
1957 |
-
msgid "
|
1958 |
msgstr ""
|
1959 |
|
1960 |
-
#: src/vue/
|
1961 |
-
msgid ""
|
1962 |
-
"Your site has a robots.txt file which includes one or more \"disallow\" "
|
1963 |
-
"directives."
|
1964 |
msgstr ""
|
1965 |
|
1966 |
-
#: src/vue/
|
|
|
|
|
|
|
|
|
1967 |
msgid ""
|
1968 |
-
"
|
1969 |
-
"
|
1970 |
msgstr ""
|
1971 |
|
1972 |
-
#: src/vue/
|
1973 |
-
msgid "
|
1974 |
msgstr ""
|
1975 |
|
1976 |
-
#: src/vue/
|
1977 |
-
msgid "
|
1978 |
msgstr ""
|
1979 |
|
1980 |
-
|
1981 |
-
|
1982 |
-
msgid "Your SEO title is only %1$d characters long, which is too short."
|
1983 |
msgstr ""
|
1984 |
|
1985 |
-
|
1986 |
-
|
1987 |
-
msgid "Make sure that you only block parts you don't want to be indexed."
|
1988 |
msgstr ""
|
1989 |
|
1990 |
-
|
1991 |
-
#: src/vue/classes/SiteAnalysis.js:340
|
1992 |
msgid ""
|
1993 |
-
"
|
1994 |
-
"
|
1995 |
msgstr ""
|
1996 |
|
1997 |
-
# Translators: 1 -
|
1998 |
-
#: src/vue/
|
1999 |
msgid ""
|
2000 |
-
"
|
2001 |
-
"
|
2002 |
msgstr ""
|
2003 |
|
2004 |
-
|
2005 |
-
|
|
|
2006 |
msgstr ""
|
2007 |
|
2008 |
-
#: src/vue/
|
2009 |
-
|
|
|
2010 |
msgstr ""
|
2011 |
|
2012 |
-
#: src/vue/
|
2013 |
-
msgid "
|
2014 |
msgstr ""
|
2015 |
|
2016 |
-
|
2017 |
-
|
2018 |
-
msgid "The SEO title is only %1$d characters long, which is too short."
|
2019 |
msgstr ""
|
2020 |
|
2021 |
-
|
2022 |
-
|
2023 |
-
msgid ""
|
2024 |
-
"Insert a customized Open Graph meta tag for each important page on your "
|
2025 |
-
"site. The standard is very well documented - you can learn more from "
|
2026 |
-
"Facebook's developer pages."
|
2027 |
msgstr ""
|
2028 |
|
2029 |
-
|
2030 |
-
|
2031 |
-
msgid ""
|
2032 |
-
"%1$s provides a simple but powerful interface to craft your Open Graph "
|
2033 |
-
"data. You get immediate feedback with an interactive preview, and you don't "
|
2034 |
-
"have to mess around with raw HTML markup."
|
2035 |
msgstr ""
|
2036 |
|
2037 |
-
#: src/vue/
|
2038 |
-
msgid "
|
2039 |
msgstr ""
|
2040 |
|
2041 |
-
#: src/vue/
|
2042 |
-
msgid "
|
2043 |
msgstr ""
|
2044 |
|
2045 |
-
#: src/vue/
|
2046 |
-
msgid "
|
|
|
|
|
2047 |
msgstr ""
|
2048 |
|
2049 |
-
#: src/vue/
|
2050 |
-
msgid "
|
2051 |
msgstr ""
|
2052 |
|
2053 |
-
|
2054 |
-
|
2055 |
-
msgid ""
|
2056 |
-
"%1$s makes it extremely easy to add highly relevant Schema.org markup to "
|
2057 |
-
"your site. It has a simple graphical interface, so you don't have to get "
|
2058 |
-
"your hands dirty with complex HTML markup."
|
2059 |
msgstr ""
|
2060 |
|
2061 |
-
#: src/vue/
|
2062 |
-
msgid "
|
2063 |
msgstr ""
|
2064 |
|
2065 |
-
#: src/vue/
|
2066 |
-
msgid "
|
2067 |
msgstr ""
|
2068 |
|
2069 |
-
|
2070 |
-
|
|
|
|
|
|
|
2071 |
msgstr ""
|
2072 |
|
2073 |
-
|
2074 |
-
|
2075 |
-
msgid "Your SEO title is %1$d characters long, which is too long."
|
2076 |
msgstr ""
|
2077 |
|
2078 |
-
#: src/vue/
|
2079 |
-
msgid "
|
2080 |
msgstr ""
|
2081 |
|
2082 |
-
#: src/vue/
|
2083 |
-
msgid "
|
2084 |
msgstr ""
|
2085 |
|
2086 |
-
#: src/vue/
|
|
|
|
|
|
|
|
|
|
|
2087 |
msgid ""
|
2088 |
-
"
|
2089 |
-
"
|
2090 |
-
"can also use a \".htaccess\" file to change the settings for each folder."
|
2091 |
msgstr ""
|
2092 |
|
2093 |
-
#: src/vue/
|
2094 |
msgid ""
|
2095 |
-
"
|
2096 |
-
"
|
2097 |
-
"most of them give you options to control the caching headers."
|
2098 |
msgstr ""
|
2099 |
|
2100 |
-
|
2101 |
-
|
|
|
|
|
|
|
2102 |
msgstr ""
|
2103 |
|
2104 |
-
#: src/vue/
|
2105 |
-
msgid "
|
|
|
|
|
2106 |
msgstr ""
|
2107 |
|
2108 |
-
|
2109 |
-
|
2110 |
-
msgid "The SEO title is %1$d characters long, which is too long."
|
2111 |
msgstr ""
|
2112 |
|
2113 |
-
#: src/vue/
|
2114 |
-
msgid ""
|
2115 |
-
"JavaScript files appear in many places, including frameworks (like "
|
2116 |
-
"Bootstrap), themes and templates, and third-party plugins."
|
2117 |
msgstr ""
|
2118 |
|
2119 |
-
#: src/vue/
|
2120 |
-
msgid "
|
2121 |
msgstr ""
|
2122 |
|
2123 |
-
#: src/vue/
|
2124 |
-
msgid ""
|
2125 |
-
"There are server-side tools (including WordPress plugins) to automatically "
|
2126 |
-
"minify JavaScript files."
|
2127 |
msgstr ""
|
2128 |
|
2129 |
-
#: src/vue/
|
2130 |
-
msgid "
|
2131 |
msgstr ""
|
2132 |
|
2133 |
-
#: src/vue/
|
2134 |
-
msgid "
|
2135 |
msgstr ""
|
2136 |
|
2137 |
-
#: src/vue/
|
2138 |
-
msgid ""
|
2139 |
-
"CSS files appear in many places, including frameworks (like Bootstrap), "
|
2140 |
-
"themes and templates, and third-party plugins."
|
2141 |
msgstr ""
|
2142 |
|
2143 |
-
|
2144 |
-
|
|
|
|
|
|
|
2145 |
msgstr ""
|
2146 |
|
2147 |
-
|
|
|
2148 |
msgid ""
|
2149 |
-
"
|
2150 |
-
"
|
2151 |
msgstr ""
|
2152 |
|
2153 |
-
|
2154 |
-
|
2155 |
-
msgid "Your page makes %1$d requests."
|
2156 |
msgstr ""
|
2157 |
|
2158 |
-
|
2159 |
-
|
2160 |
-
msgid "The page makes %1$d requests."
|
2161 |
msgstr ""
|
2162 |
|
2163 |
-
#: src/vue/
|
2164 |
-
|
|
|
2165 |
msgstr ""
|
2166 |
|
2167 |
-
#: src/vue/
|
2168 |
-
msgid "
|
2169 |
msgstr ""
|
2170 |
|
2171 |
-
|
2172 |
-
|
|
|
2173 |
msgstr ""
|
2174 |
|
2175 |
-
#: src/vue/
|
2176 |
-
msgid "
|
2177 |
msgstr ""
|
2178 |
|
2179 |
-
|
2180 |
-
|
|
|
2181 |
msgstr ""
|
2182 |
|
2183 |
-
|
2184 |
-
|
2185 |
-
msgid "Your SEO title is set and is %1$d characters long."
|
2186 |
msgstr ""
|
2187 |
|
2188 |
-
|
2189 |
-
|
2190 |
-
msgid "The size of the HTML document is %1$d Kb."
|
2191 |
msgstr ""
|
2192 |
|
2193 |
-
#: src/vue/
|
2194 |
-
msgid "
|
2195 |
msgstr ""
|
2196 |
|
2197 |
-
#: src/vue/
|
2198 |
-
msgid "
|
2199 |
msgstr ""
|
2200 |
|
2201 |
-
#: src/vue/
|
2202 |
-
msgid ""
|
2203 |
-
"In order to reduce page size, remove any unnecessary tags from your markup. "
|
2204 |
-
"This includes developer comments, which are invisible to your users - "
|
2205 |
-
"search engines ignore the text in comments, too."
|
2206 |
msgstr ""
|
2207 |
|
2208 |
-
#: src/vue/
|
2209 |
-
msgid ""
|
2210 |
-
"Sometimes inline CSS is a culprit. A little inline CSS can help your page "
|
2211 |
-
"render faster. Too much will bloat the HTML file and increase the page "
|
2212 |
-
"loading time."
|
2213 |
msgstr ""
|
2214 |
|
2215 |
-
#: src/vue/
|
2216 |
-
msgid ""
|
2217 |
-
"You can reduce CSS repetition with HTML class and ID attributes. Often the "
|
2218 |
-
"same rules will be repeated across many page elements, embedded in each "
|
2219 |
-
"tag's \"style\" attribute. You can extract them into a single \"style\" tag "
|
2220 |
-
"and use classes and ID's to target each element."
|
2221 |
msgstr ""
|
2222 |
|
2223 |
-
#: src/vue/
|
|
|
|
|
|
|
|
|
2224 |
msgid ""
|
2225 |
-
"
|
2226 |
-
"
|
2227 |
-
"browser, but they make the markup easier for developers to read. So you "
|
2228 |
-
"should always strip them from your templates or themes before you use them "
|
2229 |
-
"in a production environment."
|
2230 |
msgstr ""
|
2231 |
|
2232 |
-
|
2233 |
-
|
2234 |
-
msgid "The SEO title is set and is %1$d characters long."
|
2235 |
msgstr ""
|
2236 |
|
2237 |
-
|
2238 |
-
|
2239 |
-
msgid ""
|
2240 |
-
"The response time of your page is %1$f seconds. It is recommended to keep "
|
2241 |
-
"it equal to or below 0.2 seconds."
|
2242 |
msgstr ""
|
2243 |
|
2244 |
-
|
2245 |
-
|
2246 |
-
msgid ""
|
2247 |
-
"The response time of the page is %1$f seconds. It is recommended to keep it "
|
2248 |
-
"equal to or below 0.2 seconds."
|
2249 |
msgstr ""
|
2250 |
|
2251 |
-
#: src/vue/
|
2252 |
-
msgid "
|
2253 |
msgstr ""
|
2254 |
|
2255 |
-
#: src/vue/
|
2256 |
-
msgid "
|
2257 |
msgstr ""
|
2258 |
|
2259 |
-
#: src/vue/
|
2260 |
-
msgid ""
|
2261 |
-
"If you want to continue to improve your response time, the simplest and "
|
2262 |
-
"fastest fix is to use a caching plugin. Caching plugins keep a cached "
|
2263 |
-
"version of each page on your site. Instead of building the page from "
|
2264 |
-
"scratch, the server will send the cached copy."
|
2265 |
msgstr ""
|
2266 |
|
2267 |
-
#: src/vue/
|
2268 |
-
msgid ""
|
2269 |
-
"You can get an even greater boost in speed with a content delivery network "
|
2270 |
-
"service. These services host a copy of your content on multiple servers "
|
2271 |
-
"spread out across the globe. A user's request is handled by the edge server "
|
2272 |
-
"that's closest to their physical location, so the content arrives "
|
2273 |
-
"incredibly fast."
|
2274 |
-
msgstr ""
|
2275 |
-
|
2276 |
-
#: src/vue/classes/SiteAnalysis.js:516
|
2277 |
-
msgid "Plugins from your website are publicly visible."
|
2278 |
msgstr ""
|
2279 |
|
2280 |
-
|
2281 |
-
|
|
|
2282 |
msgstr ""
|
2283 |
|
2284 |
-
|
2285 |
-
|
|
|
2286 |
msgstr ""
|
2287 |
|
2288 |
-
|
2289 |
-
|
|
|
|
|
|
|
2290 |
msgstr ""
|
2291 |
|
2292 |
-
#: src/vue/
|
2293 |
-
msgid ""
|
2294 |
-
"It's a great idea to try and hide the plugins you have visible. From time "
|
2295 |
-
"to time vulnerabilities are found in plugins and if your site is not "
|
2296 |
-
"updated in a timely fashion, outdated plugins and themes can be exploited."
|
2297 |
msgstr ""
|
2298 |
|
2299 |
-
|
2300 |
-
|
2301 |
-
msgid "Anyone can see that you are using the %1$s theme."
|
2302 |
msgstr ""
|
2303 |
|
2304 |
-
|
2305 |
-
|
2306 |
-
msgid "Anyone can see that they are using the %1$s theme."
|
2307 |
msgstr ""
|
2308 |
|
2309 |
-
#: src/vue/
|
2310 |
-
msgid "
|
2311 |
msgstr ""
|
2312 |
|
2313 |
-
#: src/vue/
|
2314 |
-
msgid "The
|
2315 |
msgstr ""
|
2316 |
|
2317 |
-
#: src/vue/
|
2318 |
-
msgid ""
|
2319 |
-
"Ensure your page's title includes your target keywords, and design it to "
|
2320 |
-
"encourage users to click."
|
2321 |
msgstr ""
|
2322 |
|
2323 |
-
#: src/vue/
|
2324 |
-
msgid ""
|
2325 |
-
"Writing compelling titles is both a science and an art. There are automated "
|
2326 |
-
"tools that can analyze your title against known metrics for readability and "
|
2327 |
-
"click-worthiness. You also need to understand the psychology of your target "
|
2328 |
-
"audience."
|
2329 |
msgstr ""
|
2330 |
|
2331 |
-
#: src/vue/
|
2332 |
-
msgid ""
|
2333 |
-
"It's a great idea to try and hide the theme you have visible. From time to "
|
2334 |
-
"time vulnerabilities are found in themes and if your site is not updated in "
|
2335 |
-
"a timely fashion, outdated plugins and themes can be exploited."
|
2336 |
msgstr ""
|
2337 |
|
2338 |
-
#: src/vue/
|
2339 |
-
msgid "
|
2340 |
msgstr ""
|
2341 |
|
2342 |
-
#: src/vue/
|
2343 |
-
msgid "
|
2344 |
msgstr ""
|
2345 |
|
2346 |
-
#: src/vue/
|
2347 |
-
msgid "
|
2348 |
msgstr ""
|
2349 |
|
2350 |
-
#: src/vue/
|
2351 |
-
msgid "
|
2352 |
msgstr ""
|
2353 |
|
2354 |
-
#: src/vue/
|
2355 |
-
msgid "
|
2356 |
msgstr ""
|
2357 |
|
2358 |
-
#: src/vue/
|
2359 |
msgid ""
|
2360 |
-
"
|
2361 |
-
"
|
2362 |
msgstr ""
|
2363 |
|
2364 |
-
#: src/vue/
|
2365 |
-
msgid ""
|
2366 |
-
"Alternatively, you can create an empty index.php file and save it in every "
|
2367 |
-
"directory on your site. That's an approach that WordPress uses and it works "
|
2368 |
-
"well."
|
2369 |
msgstr ""
|
2370 |
|
2371 |
-
#: src/vue/
|
2372 |
-
msgid "
|
2373 |
msgstr ""
|
2374 |
|
2375 |
-
#: src/vue/
|
2376 |
-
msgid "
|
2377 |
msgstr ""
|
2378 |
|
2379 |
-
#: src/vue/
|
2380 |
-
msgid "
|
2381 |
msgstr ""
|
2382 |
|
2383 |
-
|
2384 |
-
|
|
|
2385 |
msgstr ""
|
2386 |
|
2387 |
-
#: src/vue/
|
2388 |
-
msgid ""
|
2389 |
-
"Google Safe browsing shows warnings and alerts to users if they visit a "
|
2390 |
-
"suspicious website. If you are flagged by Google Safe Browsing, you should "
|
2391 |
-
"take immediate steps to fix that."
|
2392 |
msgstr ""
|
2393 |
|
2394 |
-
|
2395 |
-
|
|
|
2396 |
msgstr ""
|
2397 |
|
2398 |
-
|
2399 |
-
|
|
|
|
|
|
|
2400 |
msgstr ""
|
2401 |
|
2402 |
-
|
2403 |
-
|
|
|
2404 |
msgstr ""
|
2405 |
|
2406 |
-
|
2407 |
-
|
|
|
2408 |
msgstr ""
|
2409 |
|
2410 |
-
|
2411 |
-
|
2412 |
-
"
|
2413 |
-
"losing a lot of potential traffic. We recommend getting an SSL certificate "
|
2414 |
-
"installed immediately."
|
2415 |
msgstr ""
|
2416 |
|
2417 |
-
|
2418 |
-
|
|
|
2419 |
msgstr ""
|
2420 |
|
2421 |
-
|
2422 |
-
|
|
|
2423 |
msgstr ""
|
2424 |
|
2425 |
-
# Translators: 1 -
|
2426 |
-
#: src/vue/
|
2427 |
-
msgid "
|
2428 |
msgstr ""
|
2429 |
|
2430 |
-
# Translators: 1 -
|
2431 |
-
#: src/vue/
|
2432 |
-
msgid "
|
2433 |
msgstr ""
|
2434 |
|
2435 |
-
|
2436 |
-
|
2437 |
-
|
|
|
|
|
2438 |
msgstr ""
|
2439 |
|
2440 |
-
|
2441 |
-
|
2442 |
-
msgid "The meta description is %1$d characters long, which is too long."
|
2443 |
msgstr ""
|
2444 |
|
2445 |
-
|
2446 |
-
|
2447 |
-
msgid "Your meta description is set and is %1$d characters long."
|
2448 |
msgstr ""
|
2449 |
|
2450 |
-
|
2451 |
-
|
2452 |
-
msgid "The meta description is set and is %1$d characters long."
|
2453 |
msgstr ""
|
2454 |
|
2455 |
-
#: src/vue/
|
2456 |
-
msgid ""
|
2457 |
-
"Write a meta description for your page. Use your target keywords (in a "
|
2458 |
-
"natural way) and write with human readers in mind. Summarize the content - "
|
2459 |
-
"describe the topics your article discusses."
|
2460 |
msgstr ""
|
2461 |
|
2462 |
-
#: src/vue/
|
2463 |
-
msgid ""
|
2464 |
-
"The description should stimulate reader interest and get them to click on "
|
2465 |
-
"the article. Think of it as a mini-advertisement for your content."
|
2466 |
msgstr ""
|
2467 |
|
2468 |
-
#: src/vue/
|
2469 |
-
msgid "
|
2470 |
msgstr ""
|
2471 |
|
2472 |
-
#: src/vue/
|
2473 |
-
msgid "
|
2474 |
msgstr ""
|
2475 |
|
2476 |
-
#: src/vue/
|
2477 |
-
msgid "
|
2478 |
msgstr ""
|
2479 |
|
2480 |
-
#: src/vue/
|
2481 |
-
msgid "
|
2482 |
msgstr ""
|
2483 |
|
2484 |
-
#: src/vue/
|
2485 |
-
msgid "
|
|
|
|
|
2486 |
msgstr ""
|
2487 |
|
2488 |
-
#: src/vue/
|
2489 |
-
msgid "
|
|
|
|
|
2490 |
msgstr ""
|
2491 |
|
2492 |
-
#: src/vue/
|
2493 |
-
msgid "
|
2494 |
msgstr ""
|
2495 |
|
2496 |
-
#: src/vue/
|
2497 |
-
msgid "
|
2498 |
msgstr ""
|
2499 |
|
2500 |
-
#: src/vue/
|
2501 |
-
msgid "
|
2502 |
msgstr ""
|
2503 |
|
2504 |
-
#: src/vue/pages/
|
2505 |
-
msgid "
|
2506 |
msgstr ""
|
2507 |
|
2508 |
-
#: src/vue/
|
2509 |
-
msgid "
|
2510 |
msgstr ""
|
2511 |
|
2512 |
-
#: src/vue/
|
2513 |
-
msgid "
|
2514 |
msgstr ""
|
2515 |
|
2516 |
-
#: src/vue/
|
2517 |
-
|
2518 |
-
msgid "Regex"
|
2519 |
msgstr ""
|
2520 |
|
2521 |
-
#: src/vue/
|
2522 |
-
msgid "
|
2523 |
msgstr ""
|
2524 |
|
2525 |
-
#: src/vue/
|
2526 |
-
msgid "
|
2527 |
msgstr ""
|
2528 |
|
2529 |
-
#: src/vue/pages/
|
2530 |
-
msgid "
|
2531 |
msgstr ""
|
2532 |
|
2533 |
-
#: src/vue/
|
2534 |
-
msgid "
|
2535 |
msgstr ""
|
2536 |
|
2537 |
-
#: src/vue/
|
2538 |
-
msgid "
|
|
|
|
|
2539 |
msgstr ""
|
2540 |
|
2541 |
-
#: src/vue/pages/
|
2542 |
-
msgid "
|
2543 |
msgstr ""
|
2544 |
|
2545 |
-
#: src/vue/
|
2546 |
-
msgid "
|
2547 |
msgstr ""
|
2548 |
|
2549 |
-
#: src/vue/
|
2550 |
-
msgid "
|
2551 |
msgstr ""
|
2552 |
|
2553 |
-
#: src/vue/
|
2554 |
-
msgid "
|
2555 |
msgstr ""
|
2556 |
|
2557 |
-
#: src/vue/
|
2558 |
-
msgid "
|
2559 |
msgstr ""
|
2560 |
|
2561 |
-
#: src/vue/
|
2562 |
-
msgid "
|
2563 |
msgstr ""
|
2564 |
|
2565 |
-
#: src/vue/pages/
|
2566 |
-
msgid "
|
2567 |
msgstr ""
|
2568 |
|
2569 |
-
#: src/vue/
|
2570 |
-
msgid "
|
2571 |
msgstr ""
|
2572 |
|
2573 |
-
#: src/vue/
|
2574 |
-
msgid "
|
2575 |
msgstr ""
|
2576 |
|
2577 |
-
|
2578 |
-
|
2579 |
-
msgid ""
|
2580 |
-
"Enter a relative URL to redirect from or start by typing in page or post "
|
2581 |
-
"title, slug or ID. You can also use regex (%1$s)"
|
2582 |
msgstr ""
|
2583 |
|
2584 |
-
|
2585 |
-
|
2586 |
-
msgid "what's this?"
|
2587 |
msgstr ""
|
2588 |
|
2589 |
-
#: src/vue/
|
2590 |
-
msgid "
|
2591 |
msgstr ""
|
2592 |
|
2593 |
-
|
2594 |
-
|
|
|
2595 |
msgstr ""
|
2596 |
|
2597 |
-
#: src/vue/
|
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 |
msgstr ""
|
2612 |
|
2613 |
-
|
2614 |
-
|
2615 |
-
msgid "Your target URL should be an absolute URL like %1$s or start with a slash."
|
2616 |
msgstr ""
|
2617 |
|
2618 |
-
|
2619 |
-
|
2620 |
-
msgid "Your target URL contains the invalid character(s) %1$s"
|
2621 |
msgstr ""
|
2622 |
|
2623 |
-
#: src/vue/
|
2624 |
-
msgid ""
|
2625 |
-
"Your URL appears to contain a domain inside the path: %1$s. Did you mean to "
|
2626 |
-
"use %2$s instead?"
|
2627 |
msgstr ""
|
2628 |
|
2629 |
-
#: src/vue/
|
|
|
|
|
|
|
|
|
|
|
2630 |
msgid ""
|
2631 |
-
"
|
2632 |
-
"
|
2633 |
msgstr ""
|
2634 |
|
2635 |
-
|
2636 |
-
|
|
|
|
|
|
|
2637 |
msgstr ""
|
2638 |
|
2639 |
-
#: src/vue/
|
2640 |
-
msgid "
|
2641 |
msgstr ""
|
2642 |
|
2643 |
-
#: src/vue/components/common/core/
|
2644 |
-
|
2645 |
-
|
2646 |
-
|
|
|
2647 |
msgstr ""
|
2648 |
|
2649 |
-
|
2650 |
-
|
|
|
2651 |
msgstr ""
|
2652 |
|
2653 |
-
|
2654 |
-
|
|
|
2655 |
msgstr ""
|
2656 |
|
2657 |
-
#: src/vue/
|
2658 |
-
msgid "
|
2659 |
msgstr ""
|
2660 |
|
2661 |
-
|
2662 |
-
|
2663 |
-
msgid "Enter a page URL, e.g. %1$s"
|
2664 |
msgstr ""
|
2665 |
|
2666 |
-
#: src/vue/
|
2667 |
-
msgid "
|
2668 |
msgstr ""
|
2669 |
|
2670 |
-
#: src/vue/
|
2671 |
-
msgid "
|
2672 |
msgstr ""
|
2673 |
|
2674 |
-
|
2675 |
-
|
|
|
2676 |
msgstr ""
|
2677 |
|
2678 |
-
#: src/vue/
|
2679 |
-
msgid "
|
2680 |
msgstr ""
|
2681 |
|
2682 |
-
#: src/vue/components/common/
|
2683 |
-
msgid "
|
2684 |
msgstr ""
|
2685 |
|
2686 |
-
#: src/vue/components/common/
|
2687 |
-
msgid "
|
2688 |
msgstr ""
|
2689 |
|
2690 |
-
#: src/vue/components/common/
|
2691 |
-
msgid ""
|
2692 |
-
"This redirect is supported using the Relocate Site feature under Full Site "
|
2693 |
-
"Redirect tab."
|
2694 |
msgstr ""
|
2695 |
|
2696 |
-
#: src/vue/components/common/
|
2697 |
-
msgid "
|
2698 |
msgstr ""
|
2699 |
|
2700 |
-
#: src/vue/components/common/
|
2701 |
-
msgid "
|
2702 |
msgstr ""
|
2703 |
|
2704 |
-
|
2705 |
-
|
2706 |
-
msgid "Remember to enable the %1$s option if this is a regular expression."
|
2707 |
msgstr ""
|
2708 |
|
2709 |
-
|
2710 |
-
|
2711 |
-
msgid ""
|
2712 |
-
"To prevent a greedy regular expression you can use %1$s to anchor it to the "
|
2713 |
-
"start of the URL. For example: %2$s"
|
2714 |
msgstr ""
|
2715 |
|
2716 |
-
|
2717 |
-
|
2718 |
-
msgid "The caret %1$s should be at the start. For example: %2$s"
|
2719 |
msgstr ""
|
2720 |
|
2721 |
-
|
2722 |
-
|
2723 |
-
msgid "The source URL should probably start with a %1$s"
|
2724 |
msgstr ""
|
2725 |
|
2726 |
-
# Translators: 1
|
2727 |
-
#: src/vue/components/common/
|
2728 |
-
msgid "
|
2729 |
msgstr ""
|
2730 |
|
2731 |
-
#: src/vue/components/common/
|
2732 |
msgid ""
|
2733 |
-
"
|
2734 |
-
"
|
2735 |
msgstr ""
|
2736 |
|
2737 |
-
|
2738 |
-
|
|
|
2739 |
msgstr ""
|
2740 |
|
2741 |
-
|
2742 |
-
|
|
|
|
|
|
|
2743 |
msgstr ""
|
2744 |
|
2745 |
-
#: src/vue/components/
|
2746 |
-
msgid "
|
2747 |
msgstr ""
|
2748 |
|
2749 |
-
#: src/vue/components/
|
2750 |
-
msgid "
|
2751 |
msgstr ""
|
2752 |
|
2753 |
-
#: src/vue/components/
|
2754 |
-
msgid "
|
2755 |
msgstr ""
|
2756 |
|
2757 |
-
#: src/vue/
|
2758 |
-
msgid "
|
2759 |
msgstr ""
|
2760 |
|
2761 |
-
#: src/vue/
|
2762 |
-
msgid "
|
2763 |
msgstr ""
|
2764 |
|
2765 |
-
#: src/vue/
|
2766 |
-
msgid "
|
2767 |
msgstr ""
|
2768 |
|
2769 |
-
|
2770 |
-
|
|
|
2771 |
msgstr ""
|
2772 |
|
2773 |
-
#: src/vue/components/
|
2774 |
-
msgid "
|
2775 |
msgstr ""
|
2776 |
|
2777 |
-
|
2778 |
-
|
2779 |
-
msgid "upgrading to %1$s"
|
2780 |
msgstr ""
|
2781 |
|
2782 |
-
|
2783 |
-
|
2784 |
-
msgid "off"
|
2785 |
msgstr ""
|
2786 |
|
2787 |
-
#: src/vue/
|
2788 |
-
msgid "
|
2789 |
msgstr ""
|
2790 |
|
2791 |
-
#: src/vue/components/
|
2792 |
-
msgid "
|
2793 |
msgstr ""
|
2794 |
|
2795 |
-
#: src/vue/
|
2796 |
-
msgid "
|
2797 |
msgstr ""
|
2798 |
|
2799 |
-
#: src/vue/
|
2800 |
-
msgid "
|
2801 |
msgstr ""
|
2802 |
|
2803 |
-
|
2804 |
-
|
2805 |
-
|
|
|
2806 |
msgstr ""
|
2807 |
|
2808 |
-
|
2809 |
-
|
2810 |
-
|
|
|
2811 |
msgstr ""
|
2812 |
|
2813 |
-
|
2814 |
-
|
2815 |
-
|
|
|
2816 |
msgstr ""
|
2817 |
|
2818 |
-
|
2819 |
-
#: src/vue/pages/
|
2820 |
-
|
|
|
2821 |
msgstr ""
|
2822 |
|
2823 |
-
|
2824 |
-
|
2825 |
-
msgid "Your user account role does not have access to edit this field. %1$s"
|
2826 |
msgstr ""
|
2827 |
|
2828 |
-
#: src/vue/components/
|
2829 |
-
msgid "
|
2830 |
msgstr ""
|
2831 |
|
2832 |
-
|
2833 |
-
|
2834 |
-
msgid "You're using %1$s. To unlock more features, consider %2$s"
|
2835 |
msgstr ""
|
2836 |
|
2837 |
-
#: src/vue/components/
|
2838 |
-
msgid "The
|
2839 |
msgstr ""
|
2840 |
|
2841 |
-
|
2842 |
-
|
|
|
2843 |
msgstr ""
|
2844 |
|
2845 |
-
|
2846 |
-
|
|
|
2847 |
msgstr ""
|
2848 |
|
2849 |
-
#: src/vue/components/
|
2850 |
-
msgid "
|
2851 |
msgstr ""
|
2852 |
|
2853 |
-
#: src/vue/components/
|
2854 |
-
msgid "
|
2855 |
msgstr ""
|
2856 |
|
2857 |
-
|
2858 |
-
|
|
|
2859 |
msgstr ""
|
2860 |
|
2861 |
-
|
2862 |
-
|
|
|
2863 |
msgstr ""
|
2864 |
|
2865 |
-
#: src/vue/components/
|
2866 |
-
msgid "
|
2867 |
msgstr ""
|
2868 |
|
2869 |
-
#: src/vue/components/
|
2870 |
-
msgid "
|
2871 |
msgstr ""
|
2872 |
|
2873 |
-
#: src/vue/
|
2874 |
-
msgid "
|
2875 |
msgstr ""
|
2876 |
|
2877 |
-
|
2878 |
-
|
2879 |
-
#: src/vue/pages/about/views/GettingStarted.vue:178
|
2880 |
-
msgid "Pro"
|
2881 |
msgstr ""
|
2882 |
|
2883 |
-
|
2884 |
-
|
|
|
2885 |
msgstr ""
|
2886 |
|
2887 |
-
|
2888 |
-
|
2889 |
-
msgid ""
|
2890 |
-
"%1$s relies on the WordPress Rest API and your site might have it disabled. "
|
2891 |
-
"%2$s."
|
2892 |
msgstr ""
|
2893 |
|
2894 |
-
#: src/vue/
|
2895 |
-
msgid "
|
2896 |
msgstr ""
|
2897 |
|
2898 |
-
#: src/vue/
|
2899 |
-
msgid ""
|
2900 |
-
"Integrating with Google Maps will allow your users to find exactly where "
|
2901 |
-
"your business is located. Our interactive maps let them see your Google "
|
2902 |
-
"Reviews and get directions directly from your site. Create multiple maps "
|
2903 |
-
"for use with multiple locations."
|
2904 |
msgstr ""
|
2905 |
|
2906 |
-
#: src/vue/
|
2907 |
-
msgid "
|
2908 |
msgstr ""
|
2909 |
|
2910 |
-
#: src/vue/
|
2911 |
-
msgid "
|
2912 |
msgstr ""
|
2913 |
|
2914 |
-
|
2915 |
-
|
2916 |
-
msgid ""
|
2917 |
-
"To add this widget, visit the %1$swidgets page%2$s and look for the \"%3$s "
|
2918 |
-
"Local - Map\" widget."
|
2919 |
msgstr ""
|
2920 |
|
2921 |
-
|
2922 |
-
|
2923 |
-
msgid "Use the following shortcode to display the location map. %1$s"
|
2924 |
msgstr ""
|
2925 |
|
2926 |
-
|
2927 |
-
|
2928 |
-
msgid ""
|
2929 |
-
"To add this block, edit a page or post and search for the \"%1$s Local - "
|
2930 |
-
"Map\" block."
|
2931 |
msgstr ""
|
2932 |
|
2933 |
-
|
2934 |
-
#: src/vue/pages/
|
2935 |
-
|
2936 |
-
|
2937 |
-
"map. %1$s"
|
2938 |
msgstr ""
|
2939 |
|
2940 |
-
#: src/vue/
|
2941 |
-
msgid "
|
2942 |
msgstr ""
|
2943 |
|
2944 |
-
#: src/vue/
|
2945 |
-
msgid "
|
2946 |
msgstr ""
|
2947 |
|
2948 |
-
|
2949 |
-
|
2950 |
-
msgid ""
|
2951 |
-
"Use the following PHP code anywhere in your theme to display the location "
|
2952 |
-
"info. %1$s"
|
2953 |
msgstr ""
|
2954 |
|
2955 |
-
|
2956 |
-
|
2957 |
-
msgid ""
|
2958 |
-
"Whether your business has multiple locations, or just one, %1$s makes it "
|
2959 |
-
"easy to configure and display relevant information about your local "
|
2960 |
-
"business. You can use the custom-built tools below, or you can use the "
|
2961 |
-
"Locations custom post type (multiple locations only) to generate relevant "
|
2962 |
-
"and necessary information for search engines or for your customers."
|
2963 |
msgstr ""
|
2964 |
|
2965 |
-
#: src/vue/
|
2966 |
-
msgid ""
|
2967 |
-
"Use the %1$sLocations%2$s Post Type in the menu on the left to start adding "
|
2968 |
-
"your locations."
|
2969 |
msgstr ""
|
2970 |
|
2971 |
-
|
2972 |
-
|
2973 |
-
msgid ""
|
2974 |
-
"Multiple Locations feature is available only for %1$s Pro users. Upgrade to "
|
2975 |
-
"Pro and unlock all %2$s features!"
|
2976 |
msgstr ""
|
2977 |
|
2978 |
-
|
2979 |
-
|
2980 |
-
msgid ""
|
2981 |
-
"To add this widget, visit the %1$swidgets page%2$s and look for the \"%3$s "
|
2982 |
-
"Local - Business Info\" widget."
|
2983 |
msgstr ""
|
2984 |
|
2985 |
-
|
2986 |
-
|
2987 |
-
msgid "Use the following shortcode to display the location info. %1$s"
|
2988 |
msgstr ""
|
2989 |
|
2990 |
-
|
2991 |
-
|
2992 |
-
msgid ""
|
2993 |
-
"To add this block, edit a page or post and search for the \"%1$s Local - "
|
2994 |
-
"Business Info\" block."
|
2995 |
msgstr ""
|
2996 |
|
2997 |
-
#: src/vue/
|
2998 |
-
msgid "
|
2999 |
msgstr ""
|
3000 |
|
3001 |
-
#: src/vue/
|
3002 |
-
msgid ""
|
3003 |
-
"Integrating with Google Maps will allow your users to find exactly where "
|
3004 |
-
"your business is located. Our interactive maps let them see your Google "
|
3005 |
-
"Reviews and get directions directly from your site. Create multiple maps "
|
3006 |
-
"for use with multiple locations. %s"
|
3007 |
msgstr ""
|
3008 |
|
3009 |
-
#: src/vue/
|
3010 |
-
msgid "
|
3011 |
msgstr ""
|
3012 |
|
3013 |
-
#: src/vue/
|
3014 |
-
msgid ""
|
3015 |
-
"Your API Key is invalid. Please make sure you have set your key correctly. "
|
3016 |
-
"%1$s"
|
3017 |
msgstr ""
|
3018 |
|
3019 |
-
#: src/vue/
|
3020 |
-
msgid ""
|
3021 |
-
"Your Maps Embed API is not enabled. For a more seamless experience with "
|
3022 |
-
"rich information cards, please enable it in your Google Project. %1$s"
|
3023 |
msgstr ""
|
3024 |
|
3025 |
-
#: src/vue/
|
3026 |
-
msgid "
|
3027 |
msgstr ""
|
3028 |
|
3029 |
-
|
3030 |
-
|
|
|
3031 |
msgstr ""
|
3032 |
|
3033 |
-
#: src/vue/
|
3034 |
-
msgid "
|
3035 |
msgstr ""
|
3036 |
|
3037 |
-
|
3038 |
-
|
|
|
3039 |
msgstr ""
|
3040 |
|
3041 |
-
#: src/vue/
|
3042 |
-
msgid "
|
3043 |
msgstr ""
|
3044 |
|
3045 |
-
|
3046 |
-
|
|
|
3047 |
msgstr ""
|
3048 |
|
3049 |
-
#: src/vue/
|
3050 |
-
msgid "
|
3051 |
msgstr ""
|
3052 |
|
3053 |
-
|
3054 |
-
|
|
|
3055 |
msgstr ""
|
3056 |
|
3057 |
-
|
3058 |
-
|
3059 |
-
msgid "Access Control is only available for licensed %1$s %2$s users."
|
3060 |
msgstr ""
|
3061 |
|
3062 |
-
|
3063 |
-
#: src/vue/
|
3064 |
-
msgid "
|
3065 |
msgstr ""
|
3066 |
|
3067 |
-
#: src/vue/
|
3068 |
-
msgid "
|
3069 |
msgstr ""
|
3070 |
|
3071 |
-
|
3072 |
-
|
3073 |
-
msgid ""
|
3074 |
-
"By default Editors have access to %1$sSEO settings for General Settings, "
|
3075 |
-
"Search Appearance and Social Networks, as well as all settings for "
|
3076 |
-
"individual pages and posts.%2$s"
|
3077 |
msgstr ""
|
3078 |
|
3079 |
-
#: src/vue/
|
3080 |
-
msgid "
|
|
|
|
|
3081 |
msgstr ""
|
3082 |
|
3083 |
-
|
3084 |
-
#: src/vue/pages/settings/mixins/AccessControl.js:22
|
3085 |
msgid ""
|
3086 |
-
"
|
3087 |
-
"
|
3088 |
msgstr ""
|
3089 |
|
3090 |
-
#: src/vue/
|
3091 |
-
msgid "
|
3092 |
msgstr ""
|
3093 |
|
3094 |
-
|
3095 |
-
|
3096 |
-
msgid ""
|
3097 |
-
"By default Contributors have access to %1$sSEO settings for individual "
|
3098 |
-
"pages and posts that they already have permission to edit.%2$s"
|
3099 |
msgstr ""
|
3100 |
|
3101 |
-
#: src/vue/
|
3102 |
-
msgid "
|
3103 |
msgstr ""
|
3104 |
|
3105 |
-
|
3106 |
-
|
3107 |
-
msgid ""
|
3108 |
-
"By default SEO Managers have access to %1$sSEO settings for General "
|
3109 |
-
"Settings, Redirections, and individual pages and posts.%2$s"
|
3110 |
msgstr ""
|
3111 |
|
3112 |
-
#: src/vue/
|
3113 |
-
msgid "
|
3114 |
msgstr ""
|
3115 |
|
3116 |
-
|
3117 |
-
|
3118 |
-
msgid ""
|
3119 |
-
"By default SEO Editors have access to %1$sSEO settings for individual pages "
|
3120 |
-
"and posts.%2$s"
|
3121 |
msgstr ""
|
3122 |
|
3123 |
-
|
3124 |
-
|
3125 |
-
msgid ""
|
3126 |
-
"By default, only users with an Administrator role have permission to manage "
|
3127 |
-
"%1$s within your WordPress admin area. With Access Controls, though, you "
|
3128 |
-
"can easily extend specific access permissions to other user roles."
|
3129 |
msgstr ""
|
3130 |
|
3131 |
-
#: src/vue/pages/
|
3132 |
-
msgid "
|
3133 |
msgstr ""
|
3134 |
|
3135 |
-
#: src/vue/
|
3136 |
-
msgid "
|
3137 |
msgstr ""
|
3138 |
|
3139 |
-
#: src/vue/
|
3140 |
-
msgid "
|
3141 |
msgstr ""
|
3142 |
|
3143 |
-
#: src/vue/
|
3144 |
-
msgid "
|
3145 |
msgstr ""
|
3146 |
|
3147 |
-
#: src/vue/
|
3148 |
-
|
|
|
3149 |
msgstr ""
|
3150 |
|
3151 |
-
#: src/vue/
|
3152 |
-
msgid "
|
3153 |
msgstr ""
|
3154 |
|
3155 |
-
#: src/vue/
|
3156 |
-
msgid "
|
3157 |
msgstr ""
|
3158 |
|
3159 |
-
#: src/vue/
|
3160 |
-
msgid "
|
3161 |
msgstr ""
|
3162 |
|
3163 |
-
|
3164 |
-
|
|
|
3165 |
msgstr ""
|
3166 |
|
3167 |
-
#: src/vue/
|
3168 |
-
msgid "
|
3169 |
msgstr ""
|
3170 |
|
3171 |
-
#: src/vue/
|
3172 |
-
msgid ""
|
3173 |
-
"Include business locations in site-wide search results. Users searching for "
|
3174 |
-
"street name, zip code or city will now also get your business location(s) "
|
3175 |
-
"in their search results."
|
3176 |
msgstr ""
|
3177 |
|
3178 |
-
#: src/vue/
|
3179 |
-
msgid ""
|
3180 |
-
"Enhanced Search cannot be enabled on your website because there is a search "
|
3181 |
-
"query conflict. To learn more about this, %1$sclick here%2$s."
|
3182 |
msgstr ""
|
3183 |
|
3184 |
-
#: src/vue/
|
3185 |
-
msgid "
|
3186 |
msgstr ""
|
3187 |
|
3188 |
-
#: src/vue/
|
3189 |
-
msgid "
|
3190 |
msgstr ""
|
3191 |
|
3192 |
-
#: src/vue/pages/
|
3193 |
-
msgid "
|
3194 |
msgstr ""
|
3195 |
|
3196 |
-
#: src/vue/
|
3197 |
-
msgid ""
|
3198 |
-
"With multiple locations, you will have a new menu item in your admin "
|
3199 |
-
"sidebar. By default, this menu item is labeled using the plural term of "
|
3200 |
-
"locations with each single item being called a location. If you like, you "
|
3201 |
-
"may enter custom labels to better match your business."
|
3202 |
msgstr ""
|
3203 |
|
3204 |
-
#: src/vue/
|
3205 |
-
msgid "
|
3206 |
msgstr ""
|
3207 |
|
3208 |
-
|
3209 |
-
|
|
|
3210 |
msgstr ""
|
3211 |
|
3212 |
-
# Translators: 1 - Opening HTML
|
3213 |
-
#: src/vue/
|
3214 |
-
msgid ""
|
3215 |
-
"To add this widget, visit the %1$swidgets page%2$s and look for the \"%3$s "
|
3216 |
-
"Local - Opening Hours\" widget."
|
3217 |
msgstr ""
|
3218 |
|
3219 |
-
|
3220 |
-
|
3221 |
-
msgid "Use the following shortcode to display the opening hours info. %1$s"
|
3222 |
msgstr ""
|
3223 |
|
3224 |
-
|
3225 |
-
|
3226 |
-
msgid ""
|
3227 |
-
"To add this block, edit a page or post and search for the \"%1$s Local - "
|
3228 |
-
"Opening Hours\" block."
|
3229 |
msgstr ""
|
3230 |
|
3231 |
-
|
3232 |
-
|
3233 |
-
msgid ""
|
3234 |
-
"Use the following PHP code anywhere in your theme to display the opening "
|
3235 |
-
"hours. %1$s"
|
3236 |
msgstr ""
|
3237 |
|
3238 |
-
#: src/vue/
|
3239 |
-
msgid "
|
3240 |
msgstr ""
|
3241 |
|
3242 |
-
#: src/vue/
|
3243 |
-
|
3244 |
-
msgid "Displayed when the business is closed."
|
3245 |
msgstr ""
|
3246 |
|
3247 |
-
#: src/vue/
|
3248 |
-
msgid ""
|
3249 |
-
"Below are the default settings for all locations, which can be overwritten "
|
3250 |
-
"per %1$slocation%2$s."
|
3251 |
msgstr ""
|
3252 |
|
3253 |
-
#: src/vue/
|
3254 |
-
|
3255 |
-
msgid "Displayed when the business is open all day long."
|
3256 |
msgstr ""
|
3257 |
|
3258 |
-
#: src/vue/
|
3259 |
-
|
3260 |
-
msgid "Hours"
|
3261 |
msgstr ""
|
3262 |
|
3263 |
-
#: src/vue/
|
3264 |
-
msgid "
|
3265 |
-
msgstr ""
|
3266 |
-
|
3267 |
-
# Translators: 1 - The addon or plugin name.
|
3268 |
-
#: src/vue/pages/monsterinsights/views/Monsterinsights.vue:178
|
3269 |
-
msgid "Install %1$s"
|
3270 |
-
msgstr ""
|
3271 |
-
|
3272 |
-
# Translators: 1 - The name of one of our partner plugins.
|
3273 |
-
#: src/vue/pages/monsterinsights/views/Monsterinsights.vue:186
|
3274 |
-
msgid "%1$s is Installed & Active"
|
3275 |
-
msgstr ""
|
3276 |
-
|
3277 |
-
#: src/vue/pages/monsterinsights/views/Monsterinsights.vue:187
|
3278 |
-
msgid "Launch Setup Wizard"
|
3279 |
msgstr ""
|
3280 |
|
3281 |
-
#: src/vue/
|
3282 |
-
msgid "
|
3283 |
msgstr ""
|
3284 |
|
3285 |
-
|
3286 |
-
|
3287 |
-
msgid ""
|
3288 |
-
"%1$s connects AIOSEO to Google Analytics, providing a powerful integration. "
|
3289 |
-
"%2$s is a sister company of AIOSEO."
|
3290 |
msgstr ""
|
3291 |
|
3292 |
-
#: src/vue/
|
3293 |
-
msgid "
|
3294 |
msgstr ""
|
3295 |
|
3296 |
-
#: src/vue/
|
3297 |
-
msgid "
|
3298 |
msgstr ""
|
3299 |
|
3300 |
-
#: src/vue/
|
3301 |
-
msgid "
|
3302 |
msgstr ""
|
3303 |
|
3304 |
-
#: src/vue/
|
3305 |
-
msgid "
|
3306 |
msgstr ""
|
3307 |
|
3308 |
-
#: src/vue/
|
3309 |
-
msgid "
|
3310 |
msgstr ""
|
3311 |
|
3312 |
-
# Translators: 1 - The name
|
3313 |
-
#: src/vue/
|
3314 |
-
msgid "
|
3315 |
msgstr ""
|
3316 |
|
3317 |
-
# Translators: 1 - The name
|
3318 |
-
#: src/vue/
|
3319 |
msgid ""
|
3320 |
-
"
|
3321 |
-
"
|
|
|
|
|
3322 |
msgstr ""
|
3323 |
|
3324 |
-
|
3325 |
-
|
3326 |
-
msgid "Setup %1$s"
|
3327 |
msgstr ""
|
3328 |
|
3329 |
-
|
3330 |
-
|
3331 |
-
msgid "%1$s has an intuitive setup wizard to guide you through the setup process."
|
3332 |
msgstr ""
|
3333 |
|
3334 |
-
#: src/vue/
|
3335 |
-
#: src/vue/pages/about/views/
|
3336 |
-
|
3337 |
-
msgid "Local SEO"
|
3338 |
msgstr ""
|
3339 |
|
3340 |
-
#: src/vue/
|
3341 |
-
|
|
|
3342 |
msgstr ""
|
3343 |
|
3344 |
-
#: src/vue/
|
3345 |
-
|
|
|
3346 |
msgstr ""
|
3347 |
|
3348 |
-
#: src/vue/
|
3349 |
-
msgid "
|
3350 |
msgstr ""
|
3351 |
|
3352 |
-
#: src/vue/
|
3353 |
-
|
|
|
3354 |
msgstr ""
|
3355 |
|
3356 |
-
#: src/vue/
|
3357 |
-
msgid "
|
3358 |
msgstr ""
|
3359 |
|
3360 |
-
#: src/vue/
|
3361 |
-
msgid "
|
3362 |
msgstr ""
|
3363 |
|
3364 |
-
#: src/vue/
|
3365 |
-
msgid "
|
3366 |
msgstr ""
|
3367 |
|
3368 |
-
#: src/vue/
|
3369 |
-
msgid "
|
3370 |
msgstr ""
|
3371 |
|
3372 |
-
#: src/vue/
|
3373 |
-
msgid "
|
3374 |
msgstr ""
|
3375 |
|
3376 |
-
|
3377 |
-
|
|
|
3378 |
msgstr ""
|
3379 |
|
3380 |
-
#: src/vue/
|
3381 |
-
msgid "
|
3382 |
msgstr ""
|
3383 |
|
3384 |
-
# Translators: 1 -
|
3385 |
-
#: src/vue/pages/
|
3386 |
-
msgid "
|
3387 |
msgstr ""
|
3388 |
|
3389 |
-
#: src/vue/
|
3390 |
-
msgid "
|
3391 |
msgstr ""
|
3392 |
|
3393 |
-
#: src/vue/
|
3394 |
-
msgid "
|
3395 |
msgstr ""
|
3396 |
|
3397 |
-
#: src/vue/
|
3398 |
-
msgid "
|
3399 |
msgstr ""
|
3400 |
|
3401 |
-
#: src/vue/
|
3402 |
-
msgid "
|
3403 |
msgstr ""
|
3404 |
|
3405 |
-
#: src/vue/
|
3406 |
-
msgid "
|
3407 |
msgstr ""
|
3408 |
|
3409 |
-
#: src/vue/
|
3410 |
-
msgid ""
|
3411 |
-
"You can use these quicklinks to quickly access our settings pages to adjust "
|
3412 |
-
"your site's SEO settings."
|
3413 |
msgstr ""
|
3414 |
|
3415 |
-
#: src/vue/
|
3416 |
-
msgid ""
|
3417 |
-
"Configure how your website content will look in Google, Bing and other "
|
3418 |
-
"search engines."
|
3419 |
msgstr ""
|
3420 |
|
3421 |
-
#: src/vue/
|
3422 |
-
msgid ""
|
3423 |
-
"Check how your site scores with our SEO analyzer and compare against your "
|
3424 |
-
"competitor's site."
|
3425 |
msgstr ""
|
3426 |
|
3427 |
-
#: src/vue/
|
3428 |
-
msgid ""
|
3429 |
-
"Improve local SEO rankings with schema for business address, open hours, "
|
3430 |
-
"contact, and more."
|
3431 |
msgstr ""
|
3432 |
|
3433 |
-
#: src/vue/
|
3434 |
-
msgid ""
|
3435 |
-
"Setup Open Graph for Facebook, Twitter, etc. to show the right content / "
|
3436 |
-
"thumbnail preview."
|
3437 |
msgstr ""
|
3438 |
|
3439 |
-
#: src/vue/
|
3440 |
-
msgid "
|
3441 |
msgstr ""
|
3442 |
|
3443 |
-
#: src/vue/
|
3444 |
-
msgid ""
|
3445 |
-
"Fine-tune your site with our powerful tools including Robots.txt editor, "
|
3446 |
-
"import/export and more."
|
3447 |
msgstr ""
|
3448 |
|
3449 |
-
#: src/vue/
|
3450 |
-
msgid "
|
3451 |
msgstr ""
|
3452 |
|
3453 |
-
|
3454 |
-
|
3455 |
-
msgid "Get more features in %1$s %2$s:"
|
3456 |
msgstr ""
|
3457 |
|
3458 |
-
|
3459 |
-
|
3460 |
-
msgid "Upgrade to %1$s and Save %2$s"
|
3461 |
msgstr ""
|
3462 |
|
3463 |
-
#: src/vue/
|
3464 |
-
msgid "
|
3465 |
msgstr ""
|
3466 |
|
3467 |
-
# Translators: 1 -
|
3468 |
-
#: src/vue/
|
3469 |
-
msgid "
|
|
|
|
|
3470 |
msgstr ""
|
3471 |
|
3472 |
-
#: src/vue/
|
3473 |
-
msgid "
|
3474 |
msgstr ""
|
3475 |
|
3476 |
-
#: src/vue/pages/
|
3477 |
-
msgid "
|
3478 |
msgstr ""
|
3479 |
|
3480 |
-
#: src/vue/
|
3481 |
-
msgid "
|
3482 |
msgstr ""
|
3483 |
|
3484 |
-
|
3485 |
-
|
3486 |
-
msgid "Local SEO Maps are only available for licensed %1$s %2$s users."
|
3487 |
msgstr ""
|
3488 |
|
3489 |
-
|
|
|
3490 |
msgid ""
|
3491 |
-
"
|
3492 |
-
"
|
3493 |
msgstr ""
|
3494 |
|
3495 |
-
|
3496 |
-
|
|
|
3497 |
msgstr ""
|
3498 |
|
3499 |
-
#: src/vue/
|
3500 |
-
msgid "
|
3501 |
msgstr ""
|
3502 |
|
3503 |
-
#: src/vue/
|
3504 |
-
msgid ""
|
3505 |
-
"Override the default template for breadcrumbs on your site using our "
|
3506 |
-
"easy-to-use template editor."
|
3507 |
msgstr ""
|
3508 |
|
3509 |
-
#: src/vue/
|
3510 |
-
msgid "
|
3511 |
msgstr ""
|
3512 |
|
3513 |
-
#: src/vue/pages/
|
3514 |
-
msgid "
|
3515 |
msgstr ""
|
3516 |
|
3517 |
-
#: src/vue/
|
3518 |
-
msgid "
|
3519 |
msgstr ""
|
3520 |
|
3521 |
-
#: src/vue/pages/
|
3522 |
-
|
3523 |
-
#: src/vue/pages/settings/views/partials/Breadcrumbs/SearchArchives.vue:65
|
3524 |
-
msgid "Use a default template"
|
3525 |
msgstr ""
|
3526 |
|
3527 |
-
|
3528 |
-
#: src/vue/
|
3529 |
-
|
3530 |
-
|
3531 |
-
msgstr ""
|
3532 |
|
3533 |
-
|
3534 |
-
#: src/vue/
|
3535 |
-
|
3536 |
-
msgid "Show prefix link"
|
3537 |
msgstr ""
|
3538 |
|
3539 |
-
#: src/vue/
|
3540 |
-
msgid "
|
|
|
|
|
3541 |
msgstr ""
|
3542 |
|
3543 |
-
#: src/vue/
|
3544 |
-
msgid "
|
|
|
|
|
3545 |
msgstr ""
|
3546 |
|
3547 |
-
#: src/vue/
|
3548 |
-
msgid "
|
3549 |
msgstr ""
|
3550 |
|
3551 |
-
#: src/vue/
|
3552 |
-
msgid "
|
|
|
|
|
3553 |
msgstr ""
|
3554 |
|
3555 |
-
#: src/vue/pages/
|
3556 |
-
msgid "
|
3557 |
msgstr ""
|
3558 |
|
3559 |
-
#: src/vue/
|
3560 |
-
msgid "
|
3561 |
msgstr ""
|
3562 |
|
3563 |
-
#: src/vue/pages/
|
3564 |
-
msgid "
|
3565 |
msgstr ""
|
3566 |
|
3567 |
-
#: src/vue/pages/
|
3568 |
-
msgid "
|
3569 |
msgstr ""
|
3570 |
|
3571 |
-
#: src/vue/
|
3572 |
-
msgid "
|
3573 |
msgstr ""
|
3574 |
|
3575 |
-
#: src/vue/
|
3576 |
-
msgid "
|
3577 |
msgstr ""
|
3578 |
|
3579 |
-
#: src/vue/
|
3580 |
-
msgid "
|
3581 |
msgstr ""
|
3582 |
|
3583 |
-
#: src/vue/
|
3584 |
-
msgid "
|
|
|
|
|
3585 |
msgstr ""
|
3586 |
|
3587 |
-
#: src/vue/
|
3588 |
-
msgid "
|
3589 |
msgstr ""
|
3590 |
|
3591 |
-
#: src/vue/
|
3592 |
-
msgid "
|
3593 |
msgstr ""
|
3594 |
|
3595 |
-
|
3596 |
-
|
|
|
3597 |
msgstr ""
|
3598 |
|
3599 |
-
|
3600 |
-
|
|
|
|
|
|
|
3601 |
msgstr ""
|
3602 |
|
3603 |
-
|
3604 |
-
|
|
|
3605 |
msgstr ""
|
3606 |
|
3607 |
-
|
3608 |
-
|
|
|
3609 |
msgstr ""
|
3610 |
|
3611 |
-
|
3612 |
-
|
|
|
3613 |
msgstr ""
|
3614 |
|
3615 |
-
#: src/vue/
|
3616 |
-
msgid "
|
|
|
|
|
3617 |
msgstr ""
|
3618 |
|
3619 |
-
#: src/vue/
|
3620 |
-
msgid "
|
3621 |
msgstr ""
|
3622 |
|
3623 |
-
#: src/vue/
|
3624 |
-
msgid "
|
3625 |
msgstr ""
|
3626 |
|
3627 |
-
#: src/vue/
|
3628 |
-
msgid "
|
3629 |
msgstr ""
|
3630 |
|
3631 |
-
#: src/vue/
|
3632 |
-
msgid "
|
3633 |
msgstr ""
|
3634 |
|
3635 |
-
#: src/vue/
|
3636 |
-
msgid "
|
3637 |
msgstr ""
|
3638 |
|
3639 |
-
#: src/vue/
|
3640 |
-
msgid "
|
3641 |
msgstr ""
|
3642 |
|
3643 |
-
#: src/vue/
|
3644 |
-
msgid "
|
3645 |
msgstr ""
|
3646 |
|
3647 |
-
#: src/vue/
|
3648 |
-
msgid "
|
3649 |
msgstr ""
|
3650 |
|
3651 |
-
#: src/vue/
|
3652 |
-
msgid "
|
3653 |
msgstr ""
|
3654 |
|
3655 |
-
#: src/vue/
|
3656 |
-
msgid "
|
3657 |
msgstr ""
|
3658 |
|
3659 |
-
#: src/vue/
|
3660 |
-
msgid "
|
3661 |
msgstr ""
|
3662 |
|
3663 |
-
|
3664 |
-
|
3665 |
-
|
3666 |
-
|
|
|
|
|
|
|
3667 |
msgstr ""
|
3668 |
|
3669 |
-
#: src/vue/
|
3670 |
-
msgid "
|
3671 |
msgstr ""
|
3672 |
|
3673 |
-
#: src/vue/
|
3674 |
-
msgid "
|
3675 |
msgstr ""
|
3676 |
|
3677 |
-
|
3678 |
-
|
|
|
3679 |
msgstr ""
|
3680 |
|
3681 |
-
|
3682 |
-
|
|
|
3683 |
msgstr ""
|
3684 |
|
3685 |
-
#: src/vue/
|
3686 |
-
msgid "
|
3687 |
msgstr ""
|
3688 |
|
3689 |
-
#: src/vue/
|
3690 |
-
msgid "
|
3691 |
msgstr ""
|
3692 |
|
3693 |
-
#: src/vue/
|
3694 |
-
msgid "
|
|
|
|
|
3695 |
msgstr ""
|
3696 |
|
3697 |
-
#: src/vue/
|
3698 |
-
msgid "
|
|
|
|
|
3699 |
msgstr ""
|
3700 |
|
3701 |
-
#: src/vue/
|
3702 |
-
msgid "
|
|
|
|
|
|
|
|
|
3703 |
msgstr ""
|
3704 |
|
3705 |
-
#: src/vue/
|
3706 |
msgid ""
|
3707 |
-
"
|
3708 |
-
"your
|
3709 |
msgstr ""
|
3710 |
|
3711 |
-
#: src/vue/
|
3712 |
-
|
3713 |
-
|
|
|
|
|
|
|
3714 |
msgstr ""
|
3715 |
|
3716 |
-
#: src/vue/
|
3717 |
-
msgid "
|
3718 |
msgstr ""
|
3719 |
|
3720 |
-
#: src/vue/
|
3721 |
-
msgid ""
|
3722 |
-
"Looking for meta keywords? Click on the advanced tab above to add/edit meta "
|
3723 |
-
"keywords."
|
3724 |
msgstr ""
|
3725 |
|
3726 |
-
|
3727 |
-
|
3728 |
-
msgid ""
|
3729 |
-
"Not sure what keyphrases are used for? Check out our documentation for more "
|
3730 |
-
"information. %1$s"
|
3731 |
msgstr ""
|
3732 |
|
3733 |
-
|
3734 |
-
|
3735 |
-
msgid "%1$s Title"
|
3736 |
msgstr ""
|
3737 |
|
3738 |
-
#: src/vue/
|
3739 |
msgid ""
|
3740 |
-
"
|
3741 |
-
"
|
|
|
3742 |
msgstr ""
|
3743 |
|
3744 |
-
#: src/vue/
|
3745 |
msgid ""
|
3746 |
-
"
|
3747 |
-
"
|
3748 |
-
"
|
3749 |
msgstr ""
|
3750 |
|
3751 |
-
#: src/vue/
|
3752 |
-
msgid "
|
|
|
|
|
|
|
|
|
3753 |
msgstr ""
|
3754 |
|
3755 |
-
#: src/vue/
|
3756 |
msgid ""
|
3757 |
-
"
|
3758 |
-
"
|
3759 |
msgstr ""
|
3760 |
|
3761 |
-
#: src/vue/
|
3762 |
-
msgid "
|
3763 |
msgstr ""
|
3764 |
|
3765 |
-
#: src/vue/
|
3766 |
-
msgid "
|
3767 |
msgstr ""
|
3768 |
|
3769 |
-
#: src/vue/
|
3770 |
-
msgid "
|
3771 |
msgstr ""
|
3772 |
|
3773 |
-
#: src/vue/
|
3774 |
-
msgid "
|
3775 |
msgstr ""
|
3776 |
|
3777 |
-
#: src/vue/
|
3778 |
-
msgid "
|
|
|
|
|
3779 |
msgstr ""
|
3780 |
|
3781 |
-
|
3782 |
-
|
3783 |
-
msgid ""
|
3784 |
-
"Enable this feature if you want Twitter to display a preview card with "
|
3785 |
-
"images and a text excerpt when a link to your site is shared."
|
3786 |
msgstr ""
|
3787 |
|
3788 |
-
#: src/vue/
|
3789 |
-
msgid "
|
3790 |
msgstr ""
|
3791 |
|
3792 |
-
#: src/vue/
|
3793 |
-
msgid "
|
3794 |
msgstr ""
|
3795 |
|
3796 |
-
#: src/vue/
|
3797 |
-
msgid "
|
3798 |
msgstr ""
|
3799 |
|
3800 |
-
#: src/vue/
|
3801 |
-
msgid "
|
3802 |
msgstr ""
|
3803 |
|
3804 |
-
#: src/vue/
|
3805 |
-
msgid "
|
3806 |
msgstr ""
|
3807 |
|
3808 |
-
#: src/vue/
|
3809 |
-
msgid "
|
3810 |
msgstr ""
|
3811 |
|
3812 |
-
#: src/vue/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3813 |
msgid ""
|
3814 |
-
"
|
3815 |
-
"
|
|
|
3816 |
msgstr ""
|
3817 |
|
3818 |
-
#: src/vue/
|
3819 |
msgid ""
|
3820 |
-
"
|
3821 |
-
"
|
|
|
|
|
|
|
3822 |
msgstr ""
|
3823 |
|
3824 |
-
#: src/vue/
|
3825 |
-
msgid "
|
3826 |
msgstr ""
|
3827 |
|
3828 |
-
#: src/vue/
|
3829 |
-
msgid "
|
3830 |
msgstr ""
|
3831 |
|
3832 |
-
#: src/vue/
|
3833 |
-
msgid "
|
3834 |
msgstr ""
|
3835 |
|
3836 |
-
#: src/vue/
|
3837 |
-
msgid "
|
3838 |
msgstr ""
|
3839 |
|
3840 |
-
#: src/vue/
|
3841 |
-
msgid "
|
|
|
|
|
|
|
3842 |
msgstr ""
|
3843 |
|
3844 |
-
#: src/vue/
|
3845 |
msgid ""
|
3846 |
-
"
|
3847 |
-
"
|
3848 |
-
"
|
3849 |
msgstr ""
|
3850 |
|
3851 |
-
#: src/vue/
|
3852 |
-
msgid "
|
3853 |
msgstr ""
|
3854 |
|
3855 |
-
#: src/vue/
|
3856 |
-
msgid "
|
3857 |
msgstr ""
|
3858 |
|
3859 |
-
#: src/vue/
|
3860 |
-
msgid "
|
3861 |
msgstr ""
|
3862 |
|
3863 |
-
#: src/vue/
|
3864 |
-
msgid "
|
3865 |
msgstr ""
|
3866 |
|
3867 |
-
#: src/vue/
|
3868 |
-
msgid "
|
|
|
|
|
3869 |
msgstr ""
|
3870 |
|
3871 |
-
|
3872 |
-
#: src/vue/pages/settings/views/GeneralSettings.vue:62
|
3873 |
msgid ""
|
3874 |
-
"
|
3875 |
-
"
|
3876 |
msgstr ""
|
3877 |
|
3878 |
-
#: src/vue/
|
3879 |
-
msgid "
|
3880 |
msgstr ""
|
3881 |
|
3882 |
-
#: src/vue/
|
3883 |
msgid ""
|
3884 |
-
"
|
3885 |
-
"
|
3886 |
msgstr ""
|
3887 |
|
3888 |
-
#: src/vue/
|
3889 |
-
msgid "
|
|
|
|
|
3890 |
msgstr ""
|
3891 |
|
3892 |
-
#: src/vue/
|
3893 |
msgid ""
|
3894 |
-
"
|
3895 |
-
"
|
|
|
|
|
3896 |
msgstr ""
|
3897 |
|
3898 |
-
#: src/vue/
|
3899 |
-
msgid "
|
|
|
|
|
|
|
|
|
3900 |
msgstr ""
|
3901 |
|
3902 |
-
|
3903 |
-
|
3904 |
-
msgid "Select which Post Types you want to use the %1$s columns with."
|
3905 |
msgstr ""
|
3906 |
|
3907 |
-
#: src/vue/
|
3908 |
-
msgid "
|
3909 |
msgstr ""
|
3910 |
|
3911 |
-
#: src/vue/
|
3912 |
-
msgid "
|
3913 |
msgstr ""
|
3914 |
|
3915 |
-
|
3916 |
-
|
3917 |
-
|
|
|
3918 |
msgstr ""
|
3919 |
|
3920 |
-
#: src/vue/
|
3921 |
-
msgid "
|
|
|
|
|
3922 |
msgstr ""
|
3923 |
|
3924 |
-
#: src/vue/
|
3925 |
-
msgid "
|
3926 |
msgstr ""
|
3927 |
|
3928 |
-
#: src/vue/
|
3929 |
-
msgid "
|
3930 |
msgstr ""
|
3931 |
|
3932 |
-
|
3933 |
-
|
|
|
3934 |
msgstr ""
|
3935 |
|
3936 |
-
|
3937 |
-
|
|
|
3938 |
msgstr ""
|
3939 |
|
3940 |
-
|
3941 |
-
|
|
|
|
|
|
|
3942 |
msgstr ""
|
3943 |
|
3944 |
-
|
|
|
3945 |
msgid ""
|
3946 |
-
"
|
3947 |
-
"
|
3948 |
msgstr ""
|
3949 |
|
3950 |
-
#: src/vue/
|
3951 |
-
msgid "
|
3952 |
msgstr ""
|
3953 |
|
3954 |
-
#: src/vue/
|
3955 |
-
msgid "
|
3956 |
msgstr ""
|
3957 |
|
3958 |
-
#: src/vue/
|
3959 |
-
msgid "
|
3960 |
msgstr ""
|
3961 |
|
3962 |
-
|
3963 |
-
|
3964 |
-
"
|
3965 |
-
"with which WordPress configurations, themes and plugins we should test."
|
3966 |
msgstr ""
|
3967 |
|
3968 |
-
# Translators: 1 -
|
3969 |
-
#: src/vue/
|
3970 |
-
msgid "
|
|
|
|
|
|
|
3971 |
msgstr ""
|
3972 |
|
3973 |
-
# Translators: 1 - The
|
3974 |
-
#: src/vue/
|
3975 |
-
msgid "
|
|
|
|
|
|
|
3976 |
msgstr ""
|
3977 |
|
3978 |
-
|
3979 |
-
|
3980 |
-
msgid "The Dashboard Widget feature is only available for licensed %1$s users. %2$s"
|
3981 |
msgstr ""
|
3982 |
|
3983 |
-
#: src/vue/
|
3984 |
-
msgid "
|
3985 |
msgstr ""
|
3986 |
|
3987 |
-
|
3988 |
-
|
3989 |
-
msgid "Select which Taxonomies you want to use the %1$s columns with."
|
3990 |
msgstr ""
|
3991 |
|
3992 |
-
|
3993 |
-
|
3994 |
-
msgid "Uninstall %1$s"
|
3995 |
msgstr ""
|
3996 |
|
3997 |
-
# Translators: 1 - Plugin
|
3998 |
-
#: src/vue/
|
3999 |
msgid ""
|
4000 |
-
"
|
4001 |
-
"
|
|
|
4002 |
msgstr ""
|
4003 |
|
4004 |
-
|
4005 |
-
|
4006 |
-
msgid "Use the following shortcode to display the current breadcrumbs. %1$s"
|
4007 |
msgstr ""
|
4008 |
|
4009 |
-
|
4010 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4011 |
msgid ""
|
4012 |
-
"
|
4013 |
-
"
|
|
|
4014 |
msgstr ""
|
4015 |
|
4016 |
-
|
4017 |
-
#: src/vue/pages/settings/views/Breadcrumbs.vue:254
|
4018 |
msgid ""
|
4019 |
-
"
|
4020 |
-
"
|
|
|
4021 |
msgstr ""
|
4022 |
|
4023 |
-
|
4024 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4025 |
msgid ""
|
4026 |
-
"
|
4027 |
-
"-
|
4028 |
msgstr ""
|
4029 |
|
4030 |
-
|
4031 |
-
|
|
|
|
|
|
|
4032 |
msgid ""
|
4033 |
-
"
|
4034 |
-
"
|
4035 |
-
"and you don't need to make any changes for that to work. Breadcrumbs can "
|
4036 |
-
"also be used as a secondary navigation system that tells users where they "
|
4037 |
-
"are on a website relative to the homepage."
|
4038 |
msgstr ""
|
4039 |
|
4040 |
-
#: src/vue/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4041 |
msgid ""
|
4042 |
-
"
|
4043 |
-
"
|
4044 |
-
"hierarchy of links on a web page."
|
4045 |
msgstr ""
|
4046 |
|
4047 |
-
#: src/vue/
|
4048 |
-
msgid "
|
4049 |
msgstr ""
|
4050 |
|
4051 |
-
#: src/vue/
|
4052 |
-
msgid "
|
|
|
|
|
4053 |
msgstr ""
|
4054 |
|
4055 |
-
|
4056 |
-
|
|
|
4057 |
msgstr ""
|
4058 |
|
4059 |
-
# Translators: 1 - The
|
4060 |
-
#: src/vue/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4061 |
msgid ""
|
4062 |
-
"
|
4063 |
-
"your
|
|
|
4064 |
msgstr ""
|
4065 |
|
4066 |
-
#: src/vue/
|
4067 |
-
msgid "
|
|
|
|
|
|
|
4068 |
msgstr ""
|
4069 |
|
4070 |
-
#: src/vue/
|
4071 |
-
msgid "
|
|
|
|
|
|
|
|
|
4072 |
msgstr ""
|
4073 |
|
4074 |
-
#: src/vue/
|
4075 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
4076 |
msgstr ""
|
4077 |
|
4078 |
-
|
4079 |
-
|
|
|
4080 |
msgstr ""
|
4081 |
|
4082 |
-
|
4083 |
-
|
|
|
|
|
|
|
4084 |
msgstr ""
|
4085 |
|
4086 |
-
|
4087 |
-
|
|
|
|
|
|
|
4088 |
msgstr ""
|
4089 |
|
4090 |
-
#: src/vue/
|
4091 |
-
msgid "
|
4092 |
msgstr ""
|
4093 |
|
4094 |
-
#: src/vue/
|
4095 |
-
msgid "
|
4096 |
msgstr ""
|
4097 |
|
4098 |
-
#: src/vue/
|
4099 |
-
msgid "
|
|
|
|
|
|
|
|
|
4100 |
msgstr ""
|
4101 |
|
4102 |
-
#: src/vue/
|
4103 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
4104 |
msgstr ""
|
4105 |
|
4106 |
-
#: src/vue/
|
4107 |
-
msgid "
|
4108 |
msgstr ""
|
4109 |
|
4110 |
-
#: src/vue/
|
4111 |
-
msgid "
|
4112 |
msgstr ""
|
4113 |
|
4114 |
-
#: src/vue/
|
4115 |
-
msgid "
|
4116 |
msgstr ""
|
4117 |
|
4118 |
-
#: src/vue/
|
4119 |
-
msgid "
|
4120 |
msgstr ""
|
4121 |
|
4122 |
-
#: src/vue/
|
4123 |
-
msgid "
|
|
|
|
|
|
|
4124 |
msgstr ""
|
4125 |
|
4126 |
-
|
4127 |
-
|
|
|
4128 |
msgstr ""
|
4129 |
|
4130 |
-
|
4131 |
-
|
|
|
4132 |
msgstr ""
|
4133 |
|
4134 |
-
#: src/vue/
|
4135 |
-
msgid "
|
4136 |
msgstr ""
|
4137 |
|
4138 |
-
#: src/vue/
|
4139 |
-
msgid "
|
4140 |
msgstr ""
|
4141 |
|
4142 |
-
#: src/vue/
|
4143 |
-
msgid "
|
|
|
|
|
4144 |
msgstr ""
|
4145 |
|
4146 |
-
#: src/vue/
|
4147 |
-
msgid "
|
|
|
|
|
|
|
|
|
4148 |
msgstr ""
|
4149 |
|
4150 |
-
#: src/vue/
|
4151 |
-
msgid "
|
|
|
|
|
|
|
4152 |
msgstr ""
|
4153 |
|
4154 |
-
#: src/vue/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4155 |
msgid ""
|
4156 |
-
"
|
4157 |
-
"
|
4158 |
msgstr ""
|
4159 |
|
4160 |
-
#: src/vue/
|
4161 |
-
msgid "
|
|
|
|
|
|
|
4162 |
msgstr ""
|
4163 |
|
4164 |
-
#: src/vue/
|
4165 |
-
msgid "
|
4166 |
msgstr ""
|
4167 |
|
4168 |
-
#: src/vue/
|
4169 |
-
msgid "
|
4170 |
msgstr ""
|
4171 |
|
4172 |
-
#: src/vue/
|
4173 |
-
msgid "
|
4174 |
msgstr ""
|
4175 |
|
4176 |
-
#: src/vue/
|
|
|
|
|
|
|
|
|
4177 |
msgid ""
|
4178 |
-
"
|
4179 |
-
"
|
4180 |
-
"
|
4181 |
-
"search engines identify you as the original source of the content."
|
4182 |
msgstr ""
|
4183 |
|
4184 |
-
#: src/vue/
|
4185 |
-
msgid "
|
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 |
-
#: src/vue/
|
4209 |
-
msgid "
|
4210 |
msgstr ""
|
4211 |
|
4212 |
-
|
4213 |
-
|
|
|
4214 |
msgstr ""
|
4215 |
|
4216 |
-
# Translators: 1 -
|
4217 |
-
#: src/vue/
|
4218 |
-
msgid "
|
4219 |
msgstr ""
|
4220 |
|
4221 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4222 |
msgid ""
|
4223 |
-
"
|
4224 |
-
"
|
|
|
4225 |
msgstr ""
|
4226 |
|
4227 |
-
#: src/vue/
|
4228 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4229 |
msgstr ""
|
4230 |
|
4231 |
-
#: src/vue/
|
4232 |
-
msgid "
|
4233 |
msgstr ""
|
4234 |
|
4235 |
-
#: src/vue/
|
4236 |
-
|
4237 |
-
"
|
4238 |
-
"engagement and increase your SEO."
|
4239 |
msgstr ""
|
4240 |
|
4241 |
-
#: src/vue/
|
4242 |
-
|
|
|
4243 |
msgstr ""
|
4244 |
|
4245 |
-
#: src/vue/
|
4246 |
-
|
|
|
4247 |
msgstr ""
|
4248 |
|
4249 |
-
|
4250 |
-
|
|
|
4251 |
msgstr ""
|
4252 |
|
4253 |
-
|
4254 |
-
|
|
|
4255 |
msgstr ""
|
4256 |
|
4257 |
-
#: src/vue/
|
4258 |
-
|
|
|
4259 |
msgstr ""
|
4260 |
|
4261 |
-
#: src/vue/
|
4262 |
-
msgid "
|
4263 |
msgstr ""
|
4264 |
|
4265 |
-
#: src/vue/
|
4266 |
-
msgid "
|
4267 |
msgstr ""
|
4268 |
|
4269 |
-
#: src/vue/
|
4270 |
-
msgid "
|
4271 |
msgstr ""
|
4272 |
|
4273 |
-
|
4274 |
-
|
|
|
4275 |
msgstr ""
|
4276 |
|
4277 |
-
|
4278 |
-
|
|
|
4279 |
msgstr ""
|
4280 |
|
4281 |
-
|
4282 |
-
|
|
|
4283 |
msgstr ""
|
4284 |
|
4285 |
-
|
4286 |
-
|
|
|
4287 |
msgstr ""
|
4288 |
|
4289 |
-
#: src/vue/
|
4290 |
-
msgid "
|
4291 |
msgstr ""
|
4292 |
|
4293 |
-
#: src/vue/
|
4294 |
-
msgid "
|
4295 |
msgstr ""
|
4296 |
|
4297 |
-
#: src/vue/
|
4298 |
-
msgid ""
|
4299 |
-
"Minimum size: 200px x 200px, ideal ratio 1.91:1, 5MB max. (eg: 1640px x "
|
4300 |
-
"856px or 3280px x 1712px for retina screens)"
|
4301 |
msgstr ""
|
4302 |
|
4303 |
-
#: src/vue/
|
4304 |
-
msgid "
|
4305 |
msgstr ""
|
4306 |
|
4307 |
-
#: src/vue/
|
4308 |
-
msgid "
|
4309 |
msgstr ""
|
4310 |
|
4311 |
-
#: src/vue/
|
4312 |
-
msgid "
|
4313 |
msgstr ""
|
4314 |
|
4315 |
-
|
4316 |
-
|
|
|
4317 |
msgstr ""
|
4318 |
|
4319 |
-
#: src/vue/
|
4320 |
-
msgid "
|
4321 |
msgstr ""
|
4322 |
|
4323 |
-
#: src/vue/
|
4324 |
-
msgid "
|
4325 |
msgstr ""
|
4326 |
|
4327 |
-
|
4328 |
-
|
4329 |
-
msgid ""
|
4330 |
-
"The code above will be added between the %1$s tags on every page on your "
|
4331 |
-
"website."
|
4332 |
msgstr ""
|
4333 |
|
4334 |
-
#: src/vue/
|
4335 |
-
msgid "
|
4336 |
msgstr ""
|
4337 |
|
4338 |
-
#: src/vue/
|
4339 |
-
msgid "
|
4340 |
msgstr ""
|
4341 |
|
4342 |
-
|
4343 |
-
|
4344 |
-
msgid "Google Analytics is now handled by %1$s."
|
4345 |
msgstr ""
|
4346 |
|
4347 |
-
#: src/vue/
|
4348 |
-
msgid "
|
4349 |
msgstr ""
|
4350 |
|
4351 |
-
#: src/vue/
|
4352 |
-
msgid "
|
4353 |
msgstr ""
|
4354 |
|
4355 |
-
|
4356 |
-
|
4357 |
-
msgid ""
|
4358 |
-
"We recommend using the %1$sFree MonsterInsights%2$s plugin to get the most "
|
4359 |
-
"out of Google Analytics."
|
4360 |
msgstr ""
|
4361 |
|
4362 |
-
|
4363 |
-
|
4364 |
-
msgid ""
|
4365 |
-
"We recommend using the %1$sFree ExactMetrics%2$s plugin to get the most out "
|
4366 |
-
"of Google Analytics."
|
4367 |
msgstr ""
|
4368 |
|
4369 |
-
#: src/vue/
|
4370 |
-
|
|
|
4371 |
msgstr ""
|
4372 |
|
4373 |
-
|
4374 |
-
#: src/vue/pages/
|
4375 |
-
msgid "
|
4376 |
msgstr ""
|
4377 |
|
4378 |
-
|
4379 |
-
|
4380 |
-
msgid "Get your Google verification code in %1$s."
|
4381 |
msgstr ""
|
4382 |
|
4383 |
-
#: src/vue/
|
4384 |
-
msgid "
|
4385 |
msgstr ""
|
4386 |
|
4387 |
-
|
4388 |
-
|
4389 |
-
msgid "Bing Webmaster Tools"
|
4390 |
msgstr ""
|
4391 |
|
4392 |
-
|
4393 |
-
|
4394 |
-
msgid "Get your Bing verification code in %1$s."
|
4395 |
msgstr ""
|
4396 |
|
4397 |
-
|
4398 |
-
|
|
|
4399 |
msgstr ""
|
4400 |
|
4401 |
-
# Translators: 1 - "
|
4402 |
-
#: src/vue/pages/
|
4403 |
-
msgid "
|
4404 |
msgstr ""
|
4405 |
|
4406 |
-
|
4407 |
-
|
4408 |
-
msgid "Get your Yandex verification code in %1$s."
|
4409 |
msgstr ""
|
4410 |
|
4411 |
-
#: src/vue/pages/
|
4412 |
-
msgid "
|
4413 |
msgstr ""
|
4414 |
|
4415 |
-
|
4416 |
-
|
4417 |
-
msgid "Baidu Webmaster Tools"
|
4418 |
msgstr ""
|
4419 |
|
4420 |
-
|
4421 |
-
|
4422 |
-
msgid "Get your Baidu verification code in %1$s."
|
4423 |
msgstr ""
|
4424 |
|
4425 |
-
#: src/vue/pages/
|
4426 |
-
msgid "
|
4427 |
msgstr ""
|
4428 |
|
4429 |
-
|
4430 |
-
|
4431 |
-
msgid "Get your Pinterest verification code in your %1$s."
|
4432 |
msgstr ""
|
4433 |
|
4434 |
-
|
4435 |
-
|
4436 |
-
msgid "Pinterest account"
|
4437 |
msgstr ""
|
4438 |
|
4439 |
-
#: src/vue/pages/
|
4440 |
-
msgid "
|
4441 |
msgstr ""
|
4442 |
|
4443 |
-
#: src/vue/pages/
|
4444 |
-
msgid "
|
4445 |
msgstr ""
|
4446 |
|
4447 |
-
|
4448 |
-
|
4449 |
-
msgid "Get your Google Analytics ID in your %1$s."
|
4450 |
msgstr ""
|
4451 |
|
4452 |
-
# Translators: 1 -
|
4453 |
-
#: src/vue/pages/
|
4454 |
-
msgid "
|
4455 |
msgstr ""
|
4456 |
|
4457 |
-
#: src/vue/pages/
|
4458 |
-
msgid "
|
4459 |
msgstr ""
|
4460 |
|
4461 |
-
|
4462 |
-
|
4463 |
-
msgid "This enables Advanced Google Analytics options.%1$s%2$s"
|
4464 |
msgstr ""
|
4465 |
|
4466 |
-
#: src/vue/pages/
|
4467 |
-
msgid "
|
4468 |
msgstr ""
|
4469 |
|
4470 |
-
|
4471 |
-
|
4472 |
-
msgid "Enter your domain name without the %1$s to set your cookie domain.%2$s%3$s"
|
4473 |
msgstr ""
|
4474 |
|
4475 |
-
#: src/vue/pages/
|
4476 |
-
msgid "
|
4477 |
msgstr ""
|
4478 |
|
4479 |
-
# Translators: 1 -
|
4480 |
-
#: src/vue/pages/
|
4481 |
-
msgid ""
|
4482 |
-
"Use this option to enable tracking of multiple or additional "
|
4483 |
-
"domains.%1$s%2$s"
|
4484 |
msgstr ""
|
4485 |
-
|
4486 |
-
#: src/vue/pages/
|
4487 |
-
msgid "
|
4488 |
msgstr ""
|
4489 |
|
4490 |
-
|
4491 |
-
|
4492 |
-
msgid ""
|
4493 |
-
"Add a list of additional domains to track here. Enter one domain name per "
|
4494 |
-
"line without the http://.%1$s%2$s"
|
4495 |
msgstr ""
|
4496 |
|
4497 |
-
#: src/vue/pages/
|
4498 |
-
msgid "
|
4499 |
msgstr ""
|
4500 |
|
4501 |
-
|
4502 |
-
|
4503 |
-
msgid "This enables support for IP Anonymization in Google Analytics.%1$s%2$s"
|
4504 |
msgstr ""
|
4505 |
|
4506 |
-
#: src/vue/pages/
|
4507 |
-
msgid "
|
4508 |
msgstr ""
|
4509 |
|
4510 |
-
|
4511 |
-
|
4512 |
-
msgid ""
|
4513 |
-
"This enables support for the Display Advertiser Features in Google "
|
4514 |
-
"Analytics.%1$s%2$s"
|
4515 |
msgstr ""
|
4516 |
|
4517 |
-
#: src/vue/pages/
|
4518 |
-
msgid "
|
4519 |
msgstr ""
|
4520 |
|
4521 |
-
|
4522 |
-
|
4523 |
-
msgid "Exclude logged-in users from Google Analytics tracking by role.%1$s%2$s"
|
4524 |
msgstr ""
|
4525 |
|
4526 |
-
#: src/vue/pages/
|
4527 |
-
msgid "
|
4528 |
msgstr ""
|
4529 |
|
4530 |
-
|
4531 |
-
|
4532 |
-
msgid ""
|
4533 |
-
"This enables support for the Enhanced Link Attribution in Google "
|
4534 |
-
"Analytics.%1$s%2$s"
|
4535 |
msgstr ""
|
4536 |
|
4537 |
-
#: src/vue/pages/
|
4538 |
-
msgid "
|
4539 |
msgstr ""
|
4540 |
|
4541 |
-
|
4542 |
-
|
4543 |
-
|
|
|
4544 |
msgstr ""
|
4545 |
|
4546 |
-
#: src/vue/pages/
|
4547 |
-
msgid "
|
4548 |
msgstr ""
|
4549 |
|
4550 |
-
|
4551 |
-
|
4552 |
-
|
|
|
|
|
4553 |
msgstr ""
|
4554 |
|
4555 |
-
#: src/vue/pages/
|
4556 |
-
msgid "
|
4557 |
msgstr ""
|
4558 |
|
4559 |
-
#: src/vue/pages/
|
4560 |
-
msgid "
|
|
|
|
|
|
|
4561 |
msgstr ""
|
4562 |
|
4563 |
-
#: src/vue/pages/
|
4564 |
-
msgid "
|
4565 |
msgstr ""
|
4566 |
|
4567 |
-
#: src/vue/pages/
|
4568 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
4569 |
msgstr ""
|
4570 |
|
4571 |
-
#: src/vue/pages/settings/views/
|
4572 |
-
msgid "
|
4573 |
msgstr ""
|
4574 |
|
4575 |
-
#: src/vue/pages/
|
4576 |
-
msgid "
|
|
|
|
|
4577 |
msgstr ""
|
4578 |
|
4579 |
-
#: src/vue/pages/
|
4580 |
-
msgid "
|
4581 |
msgstr ""
|
4582 |
|
4583 |
-
#: src/vue/pages/
|
4584 |
-
msgid "
|
4585 |
msgstr ""
|
4586 |
|
4587 |
-
|
4588 |
-
|
|
|
|
|
|
|
4589 |
msgstr ""
|
4590 |
|
4591 |
-
#: src/vue/pages/
|
4592 |
-
msgid "
|
|
|
|
|
4593 |
msgstr ""
|
4594 |
|
4595 |
-
# Translators: 1 - "
|
4596 |
-
#: src/vue/pages/
|
4597 |
-
msgid "
|
|
|
|
|
|
|
4598 |
msgstr ""
|
4599 |
|
4600 |
-
#: src/vue/
|
4601 |
-
msgid "
|
|
|
|
|
|
|
4602 |
msgstr ""
|
4603 |
|
4604 |
-
#: src/vue/pages/about/views/
|
4605 |
-
msgid "
|
|
|
|
|
4606 |
msgstr ""
|
4607 |
|
4608 |
-
|
4609 |
-
|
|
|
|
|
|
|
|
|
|
|
4610 |
msgstr ""
|
4611 |
|
4612 |
-
#: src/vue/
|
4613 |
-
msgid "
|
|
|
|
|
4614 |
msgstr ""
|
4615 |
|
4616 |
-
|
4617 |
-
|
|
|
4618 |
msgstr ""
|
4619 |
|
4620 |
-
#: src/vue/
|
4621 |
-
msgid "
|
4622 |
msgstr ""
|
4623 |
|
4624 |
-
#: src/vue/
|
4625 |
-
msgid "
|
4626 |
msgstr ""
|
4627 |
|
4628 |
-
#: src/vue/
|
4629 |
-
msgid "
|
4630 |
msgstr ""
|
4631 |
|
4632 |
-
#: src/vue/
|
4633 |
-
msgid "
|
|
|
|
|
|
|
4634 |
msgstr ""
|
4635 |
|
4636 |
-
#: src/vue/
|
4637 |
-
msgid "
|
|
|
|
|
4638 |
msgstr ""
|
4639 |
|
4640 |
-
#: src/vue/
|
4641 |
-
msgid "
|
|
|
|
|
|
|
4642 |
msgstr ""
|
4643 |
|
4644 |
-
#: src/vue/
|
4645 |
-
msgid "
|
|
|
|
|
|
|
4646 |
msgstr ""
|
4647 |
|
4648 |
-
#: src/vue/
|
4649 |
msgid ""
|
4650 |
-
"
|
4651 |
-
"
|
4652 |
msgstr ""
|
4653 |
|
4654 |
-
#: src/vue/
|
4655 |
-
msgid "
|
|
|
|
|
|
|
4656 |
msgstr ""
|
4657 |
|
4658 |
-
#: src/vue/
|
4659 |
-
msgid "
|
|
|
|
|
|
|
|
|
4660 |
msgstr ""
|
4661 |
|
4662 |
-
#: src/vue/
|
4663 |
msgid ""
|
4664 |
-
"
|
4665 |
-
"
|
|
|
4666 |
msgstr ""
|
4667 |
|
4668 |
-
#: src/vue/
|
4669 |
msgid ""
|
4670 |
-
"
|
4671 |
-
"
|
4672 |
msgstr ""
|
4673 |
|
4674 |
-
#: src/vue/
|
4675 |
msgid ""
|
4676 |
-
"
|
4677 |
-
"
|
4678 |
msgstr ""
|
4679 |
|
4680 |
-
#: src/vue/pages/about/views/
|
4681 |
-
msgid "
|
|
|
|
|
4682 |
msgstr ""
|
4683 |
|
4684 |
-
#: src/vue/
|
4685 |
-
msgid "
|
|
|
|
|
4686 |
msgstr ""
|
4687 |
|
4688 |
-
#: src/vue/pages/
|
4689 |
-
msgid "
|
|
|
|
|
4690 |
msgstr ""
|
4691 |
|
4692 |
-
#: src/vue/
|
4693 |
-
msgid "
|
|
|
|
|
|
|
4694 |
msgstr ""
|
4695 |
|
4696 |
-
#: src/vue/
|
4697 |
-
msgid "
|
4698 |
msgstr ""
|
4699 |
|
4700 |
-
#: src/vue/
|
4701 |
-
msgid "
|
|
|
|
|
4702 |
msgstr ""
|
4703 |
|
4704 |
-
#: src/vue/
|
4705 |
-
msgid "
|
4706 |
msgstr ""
|
4707 |
|
4708 |
-
#: src/vue/
|
4709 |
-
msgid "
|
4710 |
msgstr ""
|
4711 |
|
4712 |
-
|
4713 |
-
|
|
|
|
|
|
|
4714 |
msgstr ""
|
4715 |
|
4716 |
-
#: src/vue/
|
4717 |
-
msgid "
|
4718 |
msgstr ""
|
4719 |
|
4720 |
-
#: src/vue/
|
4721 |
-
msgid "
|
4722 |
msgstr ""
|
4723 |
|
4724 |
-
#: src/vue/
|
4725 |
-
msgid "
|
4726 |
msgstr ""
|
4727 |
|
4728 |
-
#: src/vue/
|
4729 |
-
msgid "
|
4730 |
msgstr ""
|
4731 |
|
4732 |
-
#: src/vue/
|
4733 |
-
msgid "
|
4734 |
msgstr ""
|
4735 |
|
4736 |
-
#: src/vue/
|
4737 |
-
msgid "
|
4738 |
msgstr ""
|
4739 |
|
4740 |
-
#: src/vue/
|
4741 |
-
msgid "
|
4742 |
msgstr ""
|
4743 |
|
4744 |
-
#: src/vue/
|
4745 |
-
msgid "
|
4746 |
msgstr ""
|
4747 |
|
4748 |
-
#: src/vue/
|
4749 |
-
msgid "
|
4750 |
msgstr ""
|
4751 |
|
4752 |
-
|
4753 |
-
|
4754 |
-
msgid "Cause"
|
4755 |
msgstr ""
|
4756 |
|
4757 |
-
#: src/vue/
|
4758 |
-
msgid "
|
4759 |
msgstr ""
|
4760 |
|
4761 |
-
#: src/vue/
|
4762 |
-
msgid "
|
4763 |
msgstr ""
|
4764 |
|
4765 |
-
#: src/vue/
|
4766 |
-
msgid "
|
4767 |
msgstr ""
|
4768 |
|
4769 |
-
|
4770 |
-
|
4771 |
-
msgid "Band"
|
4772 |
msgstr ""
|
4773 |
|
4774 |
-
#: src/vue/
|
4775 |
-
msgid "
|
4776 |
msgstr ""
|
4777 |
|
4778 |
-
#: src/vue/
|
4779 |
-
msgid "
|
4780 |
msgstr ""
|
4781 |
|
4782 |
-
#: src/vue/
|
4783 |
-
msgid "
|
4784 |
msgstr ""
|
4785 |
|
4786 |
-
|
4787 |
-
|
|
|
|
|
|
|
|
|
4788 |
msgstr ""
|
4789 |
|
4790 |
-
#: src/vue/
|
4791 |
-
msgid "
|
4792 |
msgstr ""
|
4793 |
|
4794 |
-
#: src/vue/
|
4795 |
-
msgid "
|
4796 |
msgstr ""
|
4797 |
|
4798 |
-
#: src/vue/
|
4799 |
-
msgid "
|
|
|
|
|
|
|
4800 |
msgstr ""
|
4801 |
|
4802 |
-
|
4803 |
-
|
|
|
4804 |
msgstr ""
|
4805 |
|
4806 |
-
#: src/vue/
|
4807 |
-
msgid "
|
4808 |
msgstr ""
|
4809 |
|
4810 |
-
#: src/vue/
|
4811 |
-
msgid "
|
4812 |
msgstr ""
|
4813 |
|
4814 |
-
#: src/vue/
|
4815 |
-
msgid "
|
4816 |
msgstr ""
|
4817 |
|
4818 |
-
#: src/vue/
|
4819 |
-
msgid "
|
4820 |
msgstr ""
|
4821 |
|
4822 |
-
#: src/vue/
|
4823 |
-
msgid "
|
4824 |
msgstr ""
|
4825 |
|
4826 |
-
#: src/vue/
|
4827 |
-
msgid "
|
4828 |
msgstr ""
|
4829 |
|
4830 |
-
#: src/vue/
|
4831 |
-
msgid "
|
4832 |
msgstr ""
|
4833 |
|
4834 |
-
#: src/vue/
|
4835 |
-
msgid "
|
4836 |
msgstr ""
|
4837 |
|
4838 |
-
|
4839 |
-
|
|
|
4840 |
msgstr ""
|
4841 |
|
4842 |
-
#: src/vue/
|
4843 |
-
msgid "
|
4844 |
msgstr ""
|
4845 |
|
4846 |
-
#: src/vue/
|
4847 |
-
msgid "
|
4848 |
msgstr ""
|
4849 |
|
4850 |
-
#: src/vue/
|
4851 |
-
msgid "
|
4852 |
msgstr ""
|
4853 |
|
4854 |
-
#: src/vue/
|
4855 |
-
msgid "
|
4856 |
msgstr ""
|
4857 |
|
4858 |
-
#: src/vue/
|
4859 |
-
msgid "
|
|
|
|
|
4860 |
msgstr ""
|
4861 |
|
4862 |
-
#: src/vue/
|
4863 |
-
msgid "
|
|
|
|
|
|
|
|
|
4864 |
msgstr ""
|
4865 |
|
4866 |
-
#: src/vue/
|
4867 |
-
msgid "
|
|
|
|
|
|
|
|
|
4868 |
msgstr ""
|
4869 |
|
4870 |
-
#: src/vue/
|
4871 |
-
msgid "
|
4872 |
msgstr ""
|
4873 |
|
4874 |
-
#: src/vue/
|
4875 |
-
msgid "
|
|
|
|
|
4876 |
msgstr ""
|
4877 |
|
4878 |
-
#: src/vue/
|
4879 |
-
msgid "
|
4880 |
msgstr ""
|
4881 |
|
4882 |
-
#: src/vue/
|
4883 |
-
msgid "
|
4884 |
msgstr ""
|
4885 |
|
4886 |
-
#: src/vue/pages/
|
4887 |
-
|
4888 |
-
msgid "Article"
|
4889 |
msgstr ""
|
4890 |
|
4891 |
-
#: src/vue/
|
4892 |
-
msgid "
|
|
|
|
|
4893 |
msgstr ""
|
4894 |
|
4895 |
-
#: src/vue/
|
4896 |
-
msgid "
|
4897 |
msgstr ""
|
4898 |
|
4899 |
-
|
4900 |
-
|
|
|
|
|
|
|
4901 |
msgstr ""
|
4902 |
|
4903 |
-
#: src/vue/
|
4904 |
-
msgid "
|
4905 |
msgstr ""
|
4906 |
|
4907 |
-
#: src/vue/
|
4908 |
-
msgid "
|
4909 |
msgstr ""
|
4910 |
|
4911 |
-
#: src/vue/
|
4912 |
-
msgid "
|
4913 |
msgstr ""
|
4914 |
|
4915 |
-
#: src/vue/
|
4916 |
-
msgid "
|
4917 |
msgstr ""
|
4918 |
|
4919 |
-
#: src/vue/
|
4920 |
-
msgid "
|
|
|
|
|
4921 |
msgstr ""
|
4922 |
|
4923 |
-
#: src/vue/
|
4924 |
-
msgid "
|
|
|
|
|
|
|
4925 |
msgstr ""
|
4926 |
|
4927 |
-
#: src/vue/
|
4928 |
-
msgid "
|
|
|
|
|
4929 |
msgstr ""
|
4930 |
|
4931 |
-
#: src/vue/
|
4932 |
-
msgid "
|
4933 |
msgstr ""
|
4934 |
|
4935 |
-
#: src/vue/
|
4936 |
-
msgid "
|
4937 |
msgstr ""
|
4938 |
|
4939 |
-
#: src/vue/
|
4940 |
-
msgid "
|
4941 |
msgstr ""
|
4942 |
|
4943 |
-
#: src/vue/
|
4944 |
-
msgid "
|
4945 |
msgstr ""
|
4946 |
|
4947 |
-
#: src/vue/
|
4948 |
-
msgid "
|
4949 |
msgstr ""
|
4950 |
|
4951 |
-
#: src/vue/
|
4952 |
-
msgid "
|
4953 |
msgstr ""
|
4954 |
|
4955 |
-
|
4956 |
-
|
|
|
|
|
|
|
4957 |
msgstr ""
|
4958 |
|
4959 |
-
#: src/vue/
|
4960 |
-
msgid "
|
4961 |
msgstr ""
|
4962 |
|
4963 |
-
#: src/vue/
|
4964 |
-
msgid "
|
4965 |
msgstr ""
|
4966 |
|
4967 |
-
#: src/vue/
|
4968 |
-
msgid "
|
4969 |
msgstr ""
|
4970 |
|
4971 |
-
#: src/vue/
|
4972 |
-
msgid "
|
4973 |
msgstr ""
|
4974 |
|
4975 |
-
#: src/vue/
|
4976 |
-
|
|
|
4977 |
msgstr ""
|
4978 |
|
4979 |
-
#: src/vue/
|
4980 |
-
msgid "
|
|
|
|
|
|
|
|
|
4981 |
msgstr ""
|
4982 |
|
4983 |
-
#: src/vue/
|
4984 |
-
|
|
|
4985 |
msgstr ""
|
4986 |
|
4987 |
-
#: src/vue/
|
4988 |
-
|
|
|
4989 |
msgstr ""
|
4990 |
|
4991 |
-
|
4992 |
-
|
|
|
|
|
|
|
|
|
4993 |
msgstr ""
|
4994 |
|
4995 |
-
|
4996 |
-
|
|
|
|
|
4997 |
msgstr ""
|
4998 |
|
4999 |
-
|
5000 |
-
|
|
|
|
|
|
|
|
|
5001 |
msgstr ""
|
5002 |
|
5003 |
-
|
5004 |
-
|
|
|
|
|
|
|
|
|
5005 |
msgstr ""
|
5006 |
|
5007 |
-
|
5008 |
-
|
|
|
|
|
|
|
5009 |
msgstr ""
|
5010 |
|
5011 |
-
|
5012 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
5013 |
msgstr ""
|
5014 |
|
5015 |
-
#: src/vue/
|
5016 |
-
msgid "
|
|
|
|
|
5017 |
msgstr ""
|
5018 |
|
5019 |
-
|
5020 |
-
|
|
|
|
|
|
|
5021 |
msgstr ""
|
5022 |
|
5023 |
-
|
5024 |
-
|
|
|
|
|
|
|
5025 |
msgstr ""
|
5026 |
|
5027 |
-
|
5028 |
-
|
|
|
5029 |
msgstr ""
|
5030 |
|
5031 |
-
|
5032 |
-
|
|
|
|
|
|
|
5033 |
msgstr ""
|
5034 |
|
5035 |
-
#: src/vue/
|
5036 |
-
msgid "
|
|
|
|
|
|
|
|
|
5037 |
msgstr ""
|
5038 |
|
5039 |
-
#: src/vue/
|
5040 |
-
msgid "
|
5041 |
msgstr ""
|
5042 |
|
5043 |
-
#: src/vue/
|
5044 |
-
msgid "
|
|
|
|
|
5045 |
msgstr ""
|
5046 |
|
5047 |
-
#: src/vue/
|
5048 |
-
msgid "
|
|
|
|
|
5049 |
msgstr ""
|
5050 |
|
5051 |
-
#: src/vue/pages/
|
5052 |
-
msgid "
|
5053 |
msgstr ""
|
5054 |
|
5055 |
-
#: src/vue/
|
5056 |
-
msgid "
|
5057 |
msgstr ""
|
5058 |
|
5059 |
-
|
5060 |
-
|
|
|
|
|
|
|
5061 |
msgstr ""
|
5062 |
|
5063 |
-
#: src/vue/
|
5064 |
-
msgid "
|
5065 |
msgstr ""
|
5066 |
|
5067 |
-
#: src/vue/
|
5068 |
-
msgid "
|
5069 |
msgstr ""
|
5070 |
|
5071 |
-
#: src/vue/
|
5072 |
-
msgid "
|
5073 |
msgstr ""
|
5074 |
|
5075 |
-
#: src/vue/
|
5076 |
-
msgid "
|
5077 |
msgstr ""
|
5078 |
|
5079 |
-
#: src/vue/
|
5080 |
-
msgid "
|
5081 |
msgstr ""
|
5082 |
|
5083 |
-
#: src/vue/
|
5084 |
-
msgid "
|
5085 |
msgstr ""
|
5086 |
|
5087 |
-
#: src/vue/
|
5088 |
-
msgid "
|
5089 |
msgstr ""
|
5090 |
|
5091 |
-
|
5092 |
-
|
|
|
5093 |
msgstr ""
|
5094 |
|
5095 |
-
#: src/vue/
|
5096 |
-
msgid "
|
|
|
|
|
5097 |
msgstr ""
|
5098 |
|
5099 |
-
#: src/vue/
|
5100 |
-
msgid "
|
5101 |
msgstr ""
|
5102 |
|
5103 |
-
#: src/vue/
|
5104 |
-
msgid "
|
5105 |
msgstr ""
|
5106 |
|
5107 |
-
#: src/vue/
|
5108 |
-
msgid "
|
5109 |
msgstr ""
|
5110 |
|
5111 |
-
|
5112 |
-
|
|
|
5113 |
msgstr ""
|
5114 |
|
5115 |
-
|
5116 |
-
|
|
|
|
|
|
|
|
|
5117 |
msgstr ""
|
5118 |
|
5119 |
-
#: src/vue/
|
5120 |
-
msgid "
|
5121 |
msgstr ""
|
5122 |
|
5123 |
-
#: src/vue/
|
5124 |
-
msgid "
|
5125 |
msgstr ""
|
5126 |
|
5127 |
-
#: src/vue/
|
5128 |
-
msgid "
|
5129 |
msgstr ""
|
5130 |
|
5131 |
-
#: src/vue/
|
5132 |
-
msgid "
|
5133 |
msgstr ""
|
5134 |
|
5135 |
-
#: src/vue/
|
5136 |
-
msgid "
|
5137 |
msgstr ""
|
5138 |
|
5139 |
-
#: src/vue/
|
5140 |
-
msgid "
|
5141 |
msgstr ""
|
5142 |
|
5143 |
-
#: src/vue/
|
5144 |
-
msgid "
|
5145 |
msgstr ""
|
5146 |
|
5147 |
-
#: src/vue/
|
5148 |
-
msgid "
|
|
|
|
|
5149 |
msgstr ""
|
5150 |
|
5151 |
-
|
5152 |
-
|
|
|
|
|
|
|
5153 |
msgstr ""
|
5154 |
|
5155 |
-
#: src/vue/
|
5156 |
-
msgid "
|
5157 |
msgstr ""
|
5158 |
|
5159 |
-
|
5160 |
-
|
|
|
5161 |
msgstr ""
|
5162 |
|
5163 |
-
#: src/vue/pages/
|
5164 |
-
msgid "
|
5165 |
msgstr ""
|
5166 |
|
5167 |
-
#: src/vue/pages/
|
5168 |
-
msgid "
|
5169 |
msgstr ""
|
5170 |
|
5171 |
-
|
5172 |
-
|
5173 |
-
msgid "Multiple Keyphrases is a %1$s feature. %2$s"
|
5174 |
msgstr ""
|
5175 |
|
5176 |
-
#: src/vue/pages/
|
5177 |
-
msgid "
|
5178 |
msgstr ""
|
5179 |
|
5180 |
-
#: src/vue/pages/
|
5181 |
-
|
5182 |
-
msgid "Schema Type"
|
5183 |
msgstr ""
|
5184 |
|
5185 |
-
#: src/vue/pages/
|
5186 |
-
|
5187 |
-
msgid "Article Type"
|
5188 |
msgstr ""
|
5189 |
|
5190 |
-
#: src/vue/pages/
|
5191 |
-
|
5192 |
-
msgid "Blog Post"
|
5193 |
msgstr ""
|
5194 |
|
5195 |
-
#: src/vue/pages/
|
5196 |
-
|
5197 |
-
msgid "News Article"
|
5198 |
msgstr ""
|
5199 |
|
5200 |
-
|
5201 |
-
|
5202 |
-
"
|
5203 |
-
"be displayed when your site is shared on social media. Click on the button "
|
5204 |
-
"below to view and edit the preview."
|
5205 |
msgstr ""
|
5206 |
|
5207 |
-
|
5208 |
-
|
|
|
5209 |
msgstr ""
|
5210 |
|
5211 |
-
|
5212 |
-
|
5213 |
-
msgid "%1$s - Breadcrumbs"
|
5214 |
msgstr ""
|
5215 |
|
5216 |
-
#: src/vue/pages/
|
5217 |
-
msgid "
|
5218 |
msgstr ""
|
5219 |
|
5220 |
-
#: src/vue/pages/
|
5221 |
-
msgid "
|
5222 |
msgstr ""
|
5223 |
|
5224 |
-
#: src/vue/pages/
|
5225 |
-
msgid "
|
5226 |
msgstr ""
|
5227 |
|
5228 |
-
#: src/vue/pages/
|
5229 |
-
msgid "
|
5230 |
msgstr ""
|
5231 |
|
5232 |
-
#: src/vue/pages/
|
5233 |
-
msgid "
|
5234 |
msgstr ""
|
5235 |
|
5236 |
-
#: src/vue/pages/
|
5237 |
-
msgid "
|
5238 |
msgstr ""
|
5239 |
|
5240 |
-
#: src/vue/pages/
|
5241 |
-
msgid "
|
5242 |
msgstr ""
|
5243 |
|
5244 |
-
|
5245 |
-
|
|
|
5246 |
msgstr ""
|
5247 |
|
5248 |
-
#: src/vue/pages/
|
5249 |
-
msgid "
|
5250 |
msgstr ""
|
5251 |
|
5252 |
-
#: src/vue/
|
5253 |
-
msgid "
|
5254 |
msgstr ""
|
5255 |
|
5256 |
-
|
5257 |
-
|
5258 |
-
msgid ""
|
5259 |
-
"%1$sThe custom marker should be: 100x100 px.%2$s If the image exceeds those "
|
5260 |
-
"dimensions it could (partially) cover the info popup."
|
5261 |
msgstr ""
|
5262 |
|
5263 |
-
#: src/vue/pages/
|
5264 |
-
msgid "
|
5265 |
msgstr ""
|
5266 |
|
5267 |
-
#: src/vue/pages/
|
5268 |
-
msgid "
|
5269 |
msgstr ""
|
5270 |
|
5271 |
-
#: src/vue/pages/
|
5272 |
-
msgid "
|
|
|
|
|
5273 |
msgstr ""
|
5274 |
|
5275 |
-
#: src/vue/pages/
|
5276 |
-
msgid "
|
5277 |
msgstr ""
|
5278 |
|
5279 |
-
|
5280 |
-
|
5281 |
-
msgid "Additional Keyphrases by %1$s"
|
5282 |
msgstr ""
|
5283 |
|
5284 |
-
|
5285 |
-
|
|
|
|
|
|
|
|
|
5286 |
msgstr ""
|
5287 |
|
5288 |
-
#: src/vue/pages/
|
5289 |
-
msgid "
|
5290 |
msgstr ""
|
5291 |
|
5292 |
-
#: src/vue/pages/
|
5293 |
-
|
|
|
5294 |
msgstr ""
|
5295 |
|
5296 |
-
#: src/vue/
|
5297 |
-
msgid "
|
5298 |
msgstr ""
|
5299 |
|
5300 |
-
#: src/vue/pages/
|
5301 |
-
msgid "
|
|
|
|
|
|
|
5302 |
msgstr ""
|
5303 |
|
5304 |
-
#: src/vue/pages/
|
5305 |
-
msgid "
|
5306 |
msgstr ""
|
5307 |
|
5308 |
-
#: src/vue/pages/
|
5309 |
-
msgid "
|
5310 |
msgstr ""
|
5311 |
|
5312 |
-
#: src/vue/pages/
|
5313 |
-
msgid "
|
5314 |
msgstr ""
|
5315 |
|
5316 |
-
#: src/vue/pages/
|
5317 |
-
msgid "
|
5318 |
msgstr ""
|
5319 |
|
5320 |
-
|
5321 |
-
|
5322 |
-
msgid ""
|
5323 |
-
"Analyzing your content with %1$s keywords is only available to licensed "
|
5324 |
-
"%2$s users. %3$s"
|
5325 |
msgstr ""
|
5326 |
|
5327 |
-
|
5328 |
-
|
5329 |
-
msgid ""
|
5330 |
-
"%1$s integrates directly with %2$s to provide you with actionable "
|
5331 |
-
"keyphrases to help you write better content."
|
5332 |
msgstr ""
|
5333 |
|
5334 |
-
#: src/vue/pages/
|
5335 |
-
msgid "
|
5336 |
msgstr ""
|
5337 |
|
5338 |
-
|
5339 |
-
|
5340 |
-
msgid "Get Additional Keyphrases with %1$s!"
|
5341 |
msgstr ""
|
5342 |
|
5343 |
-
|
5344 |
-
|
5345 |
-
msgid "%1$sA valid license key is required%2$s in order to connect with %3$s."
|
5346 |
msgstr ""
|
5347 |
|
5348 |
-
|
5349 |
-
|
|
|
|
|
|
|
5350 |
msgstr ""
|
5351 |
|
5352 |
-
#: src/vue/pages/
|
5353 |
-
msgid "
|
5354 |
msgstr ""
|
5355 |
|
5356 |
-
#: src/vue/pages/search-appearance/
|
5357 |
-
msgid "
|
5358 |
msgstr ""
|
5359 |
|
5360 |
-
#: src/vue/pages/
|
5361 |
-
msgid "
|
5362 |
msgstr ""
|
5363 |
|
5364 |
-
#: src/vue/pages/
|
5365 |
-
msgid "
|
5366 |
msgstr ""
|
5367 |
|
5368 |
-
|
5369 |
-
|
|
|
|
|
|
|
|
|
5370 |
msgstr ""
|
5371 |
|
5372 |
-
|
5373 |
-
|
|
|
5374 |
msgstr ""
|
5375 |
|
5376 |
-
#: src/vue/pages/
|
5377 |
-
msgid "
|
5378 |
msgstr ""
|
5379 |
|
5380 |
-
#: src/vue/pages/
|
5381 |
-
msgid "
|
5382 |
msgstr ""
|
5383 |
|
5384 |
-
#: src/vue/pages/
|
5385 |
-
msgid "
|
5386 |
msgstr ""
|
5387 |
|
5388 |
-
#: src/vue/pages/
|
5389 |
-
msgid "
|
5390 |
msgstr ""
|
5391 |
|
5392 |
-
#: src/vue/pages/
|
5393 |
-
msgid "
|
5394 |
msgstr ""
|
5395 |
|
5396 |
-
#: src/vue/pages/
|
5397 |
-
msgid "
|
5398 |
msgstr ""
|
5399 |
|
5400 |
-
#: src/vue/
|
5401 |
-
|
|
|
5402 |
msgstr ""
|
5403 |
|
5404 |
-
#: src/vue/
|
5405 |
-
msgid "
|
5406 |
msgstr ""
|
5407 |
|
5408 |
-
#: src/vue/
|
5409 |
-
msgid "
|
5410 |
msgstr ""
|
5411 |
|
5412 |
-
#: src/vue/
|
5413 |
-
msgid "
|
5414 |
msgstr ""
|
5415 |
|
5416 |
-
#: src/vue/
|
5417 |
-
msgid "
|
5418 |
msgstr ""
|
5419 |
|
5420 |
-
#: src/vue/
|
5421 |
-
msgid "
|
5422 |
msgstr ""
|
5423 |
|
5424 |
-
#: src/vue/
|
5425 |
-
msgid "
|
5426 |
msgstr ""
|
5427 |
|
5428 |
-
#: src/vue/
|
5429 |
-
msgid "
|
5430 |
msgstr ""
|
5431 |
|
5432 |
-
#: src/vue/
|
5433 |
-
|
|
|
5434 |
msgstr ""
|
5435 |
|
5436 |
-
#: src/vue/
|
5437 |
-
msgid "
|
5438 |
msgstr ""
|
5439 |
|
5440 |
-
#: src/vue/
|
5441 |
-
msgid "
|
5442 |
msgstr ""
|
5443 |
|
5444 |
-
#: src/vue/pages/
|
5445 |
-
|
5446 |
-
msgid "Exclude Posts / Pages"
|
5447 |
msgstr ""
|
5448 |
|
5449 |
-
#: src/vue/pages/
|
5450 |
-
|
5451 |
-
msgid "Exclude Terms"
|
5452 |
msgstr ""
|
5453 |
|
5454 |
-
#: src/vue/
|
5455 |
-
msgid "
|
5456 |
msgstr ""
|
5457 |
|
5458 |
-
#: src/vue/pages/
|
5459 |
-
msgid "
|
5460 |
msgstr ""
|
5461 |
|
5462 |
-
#: src/vue/pages/
|
5463 |
-
|
|
|
|
|
5464 |
msgstr ""
|
5465 |
|
5466 |
-
#: src/vue/pages/
|
5467 |
-
|
|
|
5468 |
msgstr ""
|
5469 |
|
5470 |
-
#: src/vue/pages/
|
5471 |
-
msgid "
|
5472 |
msgstr ""
|
5473 |
|
5474 |
-
#: src/vue/pages/
|
5475 |
-
msgid "
|
5476 |
msgstr ""
|
5477 |
|
5478 |
-
#: src/vue/pages/
|
5479 |
-
msgid "
|
5480 |
msgstr ""
|
5481 |
|
5482 |
-
|
5483 |
-
|
5484 |
-
msgid "The log for the blocked bots is located here: %1$s"
|
5485 |
msgstr ""
|
5486 |
|
5487 |
-
#: src/vue/pages/
|
5488 |
-
msgid "
|
5489 |
msgstr ""
|
5490 |
|
5491 |
-
#: src/vue/pages/
|
5492 |
-
msgid "
|
5493 |
msgstr ""
|
5494 |
|
5495 |
-
#: src/vue/pages/
|
5496 |
-
msgid "
|
5497 |
msgstr ""
|
5498 |
|
5499 |
-
#: src/vue/pages/
|
5500 |
-
msgid "
|
5501 |
msgstr ""
|
5502 |
|
5503 |
-
#: src/vue/pages/
|
5504 |
-
msgid "
|
5505 |
msgstr ""
|
5506 |
|
5507 |
-
#: src/vue/pages/
|
5508 |
-
msgid "
|
5509 |
msgstr ""
|
5510 |
|
5511 |
-
|
5512 |
-
|
|
|
5513 |
msgstr ""
|
5514 |
|
5515 |
-
#: src/vue/pages/
|
5516 |
-
msgid "
|
5517 |
msgstr ""
|
5518 |
|
5519 |
-
#: src/vue/pages/
|
5520 |
-
msgid "
|
5521 |
msgstr ""
|
5522 |
|
5523 |
-
#: src/vue/pages/
|
5524 |
-
msgid "
|
5525 |
msgstr ""
|
5526 |
|
5527 |
-
#: src/vue/pages/
|
5528 |
-
msgid "
|
5529 |
msgstr ""
|
5530 |
|
5531 |
-
|
5532 |
-
|
5533 |
-
msgid "Import / Restore %1$s Settings"
|
5534 |
msgstr ""
|
5535 |
|
5536 |
-
#: src/vue/pages/
|
5537 |
-
msgid "
|
|
|
|
|
5538 |
msgstr ""
|
5539 |
|
5540 |
-
#: src/vue/pages/
|
5541 |
-
msgid "
|
|
|
|
|
5542 |
msgstr ""
|
5543 |
|
5544 |
-
#: src/vue/pages/
|
5545 |
-
msgid "
|
|
|
|
|
5546 |
msgstr ""
|
5547 |
|
5548 |
-
#: src/vue/pages/
|
5549 |
-
msgid "
|
|
|
|
|
5550 |
msgstr ""
|
5551 |
|
5552 |
-
#: src/vue/pages/
|
5553 |
-
msgid "
|
|
|
|
|
5554 |
msgstr ""
|
5555 |
|
5556 |
-
#: src/vue/pages/
|
5557 |
-
|
|
|
5558 |
msgstr ""
|
5559 |
|
5560 |
-
#: src/vue/pages/
|
5561 |
msgid ""
|
5562 |
-
"
|
5563 |
-
"
|
5564 |
msgstr ""
|
5565 |
|
5566 |
-
#: src/vue/pages/
|
5567 |
-
msgid "
|
5568 |
msgstr ""
|
5569 |
|
5570 |
-
|
5571 |
-
|
|
|
5572 |
msgstr ""
|
5573 |
|
5574 |
-
|
5575 |
-
|
|
|
5576 |
msgstr ""
|
5577 |
|
5578 |
-
#: src/vue/pages/
|
5579 |
-
msgid "
|
5580 |
msgstr ""
|
5581 |
|
5582 |
-
|
5583 |
-
|
|
|
5584 |
msgstr ""
|
5585 |
|
5586 |
-
#: src/vue/pages/
|
5587 |
-
|
5588 |
-
msgid "No, I changed my mind"
|
5589 |
msgstr ""
|
5590 |
|
5591 |
-
#: src/vue/pages/
|
5592 |
-
|
5593 |
-
msgid "This action cannot be undone."
|
5594 |
msgstr ""
|
5595 |
|
5596 |
-
#: src/vue/pages/tools/views/
|
5597 |
-
msgid "
|
5598 |
msgstr ""
|
5599 |
|
5600 |
-
#: src/vue/pages/tools/views/
|
5601 |
-
msgid "
|
5602 |
msgstr ""
|
5603 |
|
5604 |
-
#: src/vue/pages/tools/views/
|
5605 |
-
msgid "
|
5606 |
msgstr ""
|
5607 |
|
5608 |
-
#: src/vue/pages/tools/views/
|
5609 |
-
msgid "
|
5610 |
msgstr ""
|
5611 |
|
5612 |
-
#: src/vue/pages/tools/views/
|
5613 |
-
msgid "
|
5614 |
msgstr ""
|
5615 |
|
5616 |
-
# Translators: 1
|
5617 |
-
#: src/vue/pages/tools/views/
|
5618 |
-
msgid "
|
5619 |
msgstr ""
|
5620 |
|
5621 |
-
#: src/vue/pages/
|
5622 |
-
msgid "
|
5623 |
msgstr ""
|
5624 |
|
5625 |
-
#: src/vue/pages/
|
5626 |
-
msgid "
|
5627 |
msgstr ""
|
5628 |
|
5629 |
-
#: src/vue/pages/
|
5630 |
-
msgid "
|
5631 |
msgstr ""
|
5632 |
|
5633 |
#: src/vue/pages/tools/views/partials/ImportOthers.vue:122
|
@@ -5639,7 +5827,7 @@ msgstr ""
|
|
5639 |
msgid "Choose a plugin to import SEO data directly into %1$s."
|
5640 |
msgstr ""
|
5641 |
|
5642 |
-
#: src/vue/pages/
|
5643 |
msgid "Select a plugin..."
|
5644 |
msgstr ""
|
5645 |
|
@@ -5647,7 +5835,7 @@ msgstr ""
|
|
5647 |
msgid "All Settings"
|
5648 |
msgstr ""
|
5649 |
|
5650 |
-
#: src/vue/pages/
|
5651 |
msgid "not installed"
|
5652 |
msgstr ""
|
5653 |
|
@@ -5664,426 +5852,450 @@ msgid "Term Meta"
|
|
5664 |
msgstr ""
|
5665 |
|
5666 |
# Translators: 1 - The name of the plugin being imported (e.g "Yoast SEO").
|
5667 |
-
#: src/vue/pages/
|
5668 |
msgid "%1$s was successfully imported!"
|
5669 |
msgstr ""
|
5670 |
|
5671 |
# Translators: 1 - The name of the plugin being imported (e.g "Yoast SEO").
|
5672 |
-
#: src/vue/pages/
|
5673 |
msgid "An error occurred while importing %1$s. Please try again."
|
5674 |
msgstr ""
|
5675 |
|
5676 |
# Translators: 1 - The name of the plugin (e.g. "Yoast SEO"), 2 - The version of the plugin (e.g. "10.2.3").
|
5677 |
-
#: src/vue/pages/
|
5678 |
msgid ""
|
5679 |
"We do not support importing from the currently installed version of %1$s "
|
5680 |
"(%2$s). Please upgrade to the latest version and try again."
|
5681 |
msgstr ""
|
5682 |
|
5683 |
-
#: src/vue/pages/
|
5684 |
-
msgid "
|
5685 |
msgstr ""
|
5686 |
|
5687 |
-
#: src/vue/pages/
|
5688 |
-
msgid "
|
5689 |
msgstr ""
|
5690 |
|
5691 |
-
#: src/vue/pages/
|
5692 |
-
msgid "
|
5693 |
msgstr ""
|
5694 |
|
5695 |
-
#: src/vue/pages/
|
5696 |
-
msgid "
|
5697 |
msgstr ""
|
5698 |
|
5699 |
-
#: src/vue/pages/
|
5700 |
-
msgid "
|
5701 |
msgstr ""
|
5702 |
|
5703 |
-
#: src/vue/pages/
|
5704 |
-
msgid "
|
5705 |
msgstr ""
|
5706 |
|
5707 |
-
#: src/vue/pages/
|
5708 |
-
msgid "
|
5709 |
msgstr ""
|
5710 |
|
5711 |
-
|
5712 |
-
|
|
|
5713 |
msgstr ""
|
5714 |
|
5715 |
-
#: src/vue/pages/
|
5716 |
-
msgid "
|
5717 |
msgstr ""
|
5718 |
|
5719 |
-
#: src/vue/pages/
|
5720 |
-
msgid "
|
5721 |
msgstr ""
|
5722 |
|
5723 |
-
|
|
|
|
|
5724 |
msgid ""
|
5725 |
-
"
|
5726 |
-
"
|
5727 |
msgstr ""
|
5728 |
|
5729 |
-
|
5730 |
-
|
|
|
5731 |
msgstr ""
|
5732 |
|
5733 |
-
|
|
|
5734 |
msgid ""
|
5735 |
-
"
|
5736 |
-
"
|
5737 |
-
"Post screen)."
|
5738 |
msgstr ""
|
5739 |
|
5740 |
-
#: src/vue/pages/
|
5741 |
-
msgid "
|
5742 |
msgstr ""
|
5743 |
|
5744 |
-
#: src/vue/pages/
|
|
|
|
|
|
|
|
|
5745 |
msgid ""
|
5746 |
-
"
|
5747 |
-
"
|
5748 |
-
"screen)."
|
5749 |
msgstr ""
|
5750 |
|
5751 |
-
#: src/vue/pages/
|
5752 |
-
msgid "
|
5753 |
msgstr ""
|
5754 |
|
5755 |
-
#: src/vue/pages/
|
5756 |
-
msgid ""
|
5757 |
-
"Check this if you want your keywords on your Posts page (set in WordPress "
|
5758 |
-
"under Settings, Reading, Front Page Displays) and your archive pages to be "
|
5759 |
-
"dynamically generated from the keywords of the posts showing on that page. "
|
5760 |
-
"If unchecked, it will use the keywords set in the edit page screen for the "
|
5761 |
-
"posts page."
|
5762 |
msgstr ""
|
5763 |
|
5764 |
-
#: src/vue/pages/
|
5765 |
-
msgid ""
|
5766 |
-
"This string gets appended to the titles and descriptions of paginated pages "
|
5767 |
-
"(like term or archive pages)."
|
5768 |
msgstr ""
|
5769 |
|
5770 |
-
#: src/vue/pages/
|
5771 |
-
msgid "
|
5772 |
msgstr ""
|
5773 |
|
5774 |
-
#: src/vue/pages/
|
5775 |
-
msgid "
|
5776 |
msgstr ""
|
5777 |
|
5778 |
-
|
5779 |
-
|
5780 |
-
msgid ""
|
5781 |
-
"Choose whether %1$s should output the required schema markup that Google "
|
5782 |
-
"needs to generate a sitelinks search box."
|
5783 |
msgstr ""
|
5784 |
|
5785 |
-
#: src/vue/pages/
|
5786 |
-
msgid ""
|
5787 |
-
"A Description tag is required in order to properly display your meta "
|
5788 |
-
"descriptions on your site."
|
5789 |
msgstr ""
|
5790 |
|
5791 |
-
#: src/vue/pages/
|
5792 |
-
msgid "
|
5793 |
msgstr ""
|
5794 |
|
5795 |
-
|
5796 |
-
|
|
|
5797 |
msgstr ""
|
5798 |
|
5799 |
-
#: src/vue/pages/
|
5800 |
-
msgid "
|
5801 |
msgstr ""
|
5802 |
|
5803 |
-
#: src/vue/pages/
|
5804 |
-
|
|
|
5805 |
msgstr ""
|
5806 |
|
5807 |
-
|
5808 |
-
|
5809 |
-
msgid ""
|
5810 |
-
"Welcome to %1$s, the original SEO plugin for WordPress. At %2$s, we build "
|
5811 |
-
"software that helps you rank your website in search results and gain "
|
5812 |
-
"organic traffic."
|
5813 |
msgstr ""
|
5814 |
|
5815 |
-
#: src/vue/pages/
|
5816 |
-
msgid ""
|
5817 |
-
"Over the years, we found that most other WordPress SEO plugins were "
|
5818 |
-
"bloated, buggy, slow, and very hard to use. So we designed our plugin as an "
|
5819 |
-
"easy and powerful tool."
|
5820 |
msgstr ""
|
5821 |
|
5822 |
-
#: src/vue/pages/
|
5823 |
-
msgid ""
|
5824 |
-
"Our goal is to take the pain out of optimizing your website for search "
|
5825 |
-
"engines."
|
5826 |
msgstr ""
|
5827 |
|
5828 |
-
|
5829 |
-
#: src/vue/pages/about/views/AboutUs.vue:123
|
5830 |
msgid ""
|
5831 |
-
"
|
5832 |
-
"
|
5833 |
-
"software, OptinMonster, the best WordPress analytics plugin, "
|
5834 |
-
"MonsterInsights and many more."
|
5835 |
msgstr ""
|
5836 |
|
5837 |
-
#: src/vue/pages/
|
5838 |
-
msgid ""
|
5839 |
-
|
5840 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5841 |
msgstr ""
|
5842 |
|
5843 |
-
# Translators: 1 -
|
5844 |
-
#: src/vue/pages/
|
5845 |
-
msgid "
|
5846 |
msgstr ""
|
5847 |
|
5848 |
-
|
5849 |
-
|
|
|
5850 |
msgstr ""
|
5851 |
|
5852 |
-
#: src/vue/pages/
|
5853 |
-
msgid "
|
5854 |
msgstr ""
|
5855 |
|
5856 |
-
#: src/vue/pages/
|
5857 |
-
msgid "
|
5858 |
msgstr ""
|
5859 |
|
5860 |
-
|
|
|
5861 |
msgid ""
|
5862 |
-
"
|
5863 |
-
"
|
5864 |
-
"get more email subscribers."
|
5865 |
msgstr ""
|
5866 |
|
5867 |
-
#: src/vue/pages/
|
5868 |
-
msgid ""
|
5869 |
-
"WPForms allows you to create beautiful contact forms for your site in "
|
5870 |
-
"minutes, not hours!"
|
5871 |
msgstr ""
|
5872 |
|
5873 |
-
#: src/vue/pages/
|
5874 |
-
msgid ""
|
5875 |
-
"MonsterInsights makes it “effortless” to properly connect your WordPress "
|
5876 |
-
"site with Google Analytics, so you can start making data-driven decisions "
|
5877 |
-
"to grow your business."
|
5878 |
msgstr ""
|
5879 |
|
5880 |
-
#: src/vue/pages/
|
5881 |
-
msgid ""
|
5882 |
-
"The ExactMetrics Google Analytics for WordPress plugin helps you properly "
|
5883 |
-
"setup all the powerful Google Analytics tracking features without writing "
|
5884 |
-
"any code or hiring a developer."
|
5885 |
msgstr ""
|
5886 |
|
5887 |
-
#: src/vue/pages/
|
5888 |
-
msgid ""
|
5889 |
-
"Make sure your website's emails reach the inbox. Our goal is to make email "
|
5890 |
-
"deliverability easy and reliable. Trusted by over 2 million websites."
|
5891 |
msgstr ""
|
5892 |
|
5893 |
-
#: src/vue/pages/
|
5894 |
-
msgid ""
|
5895 |
-
"Create a simple Coming Soon Page, Under Construction or Maintenance Mode "
|
5896 |
-
"Page. Work on your site in private while visitors see a “Coming Soon” or "
|
5897 |
-
"“Maintenance Mode” page."
|
5898 |
msgstr ""
|
5899 |
|
5900 |
-
|
5901 |
-
|
5902 |
-
"
|
5903 |
-
"conversions with social proof notifications. Use it to boost sales on your "
|
5904 |
-
"Woocommerce store, increase signups on your membership site, get more email "
|
5905 |
-
"subscribers, and more."
|
5906 |
msgstr ""
|
5907 |
|
5908 |
-
|
|
|
5909 |
msgid ""
|
5910 |
-
"
|
5911 |
-
"
|
5912 |
-
"contests."
|
5913 |
msgstr ""
|
5914 |
|
5915 |
-
|
5916 |
-
|
5917 |
-
"
|
5918 |
-
"or Group."
|
5919 |
msgstr ""
|
5920 |
|
5921 |
-
|
5922 |
-
|
5923 |
-
"
|
5924 |
-
"from multiple Instagram accounts."
|
5925 |
msgstr ""
|
5926 |
|
5927 |
-
|
|
|
5928 |
msgid ""
|
5929 |
-
"
|
5930 |
-
"
|
|
|
|
|
|
|
5931 |
msgstr ""
|
5932 |
|
5933 |
-
#: src/vue/pages/
|
5934 |
-
msgid ""
|
5935 |
-
"The Feeds for YouTube plugin allows you to display customizable YouTube "
|
5936 |
-
"feeds from any YouTube channel."
|
5937 |
msgstr ""
|
5938 |
|
5939 |
-
#: src/vue/pages/
|
5940 |
-
msgid "
|
5941 |
msgstr ""
|
5942 |
|
5943 |
-
|
5944 |
-
#: src/vue/pages/tools/views/HtaccessEditor.vue:44
|
5945 |
msgid ""
|
5946 |
-
"
|
5947 |
-
"
|
5948 |
-
"with a convenient way of editing it. Care should always be taken when "
|
5949 |
-
"editing important files from within WordPress as an incorrect change could "
|
5950 |
-
"cause WordPress to become inaccessible. %1$sBe sure to make a backup before "
|
5951 |
-
"making changes and ensure that you have FTP access to your web server and "
|
5952 |
-
"know how to access and edit files via FTP.%2$s"
|
5953 |
-
msgstr ""
|
5954 |
-
|
5955 |
-
#: src/vue/plugins/truSEO/analysis/isExternalLink.js:20
|
5956 |
-
msgid "Great! You are linking to external resources."
|
5957 |
msgstr ""
|
5958 |
|
5959 |
-
#: src/vue/
|
5960 |
-
msgid "
|
5961 |
msgstr ""
|
5962 |
|
5963 |
-
#: src/vue/
|
5964 |
-
msgid "
|
5965 |
msgstr ""
|
5966 |
|
5967 |
-
#: src/vue/
|
5968 |
-
msgid "
|
5969 |
msgstr ""
|
5970 |
|
5971 |
-
#: src/vue/
|
5972 |
-
msgid "
|
5973 |
msgstr ""
|
5974 |
|
5975 |
-
#: src/vue/
|
5976 |
-
msgid "
|
|
|
|
|
5977 |
msgstr ""
|
5978 |
|
5979 |
-
#: src/vue/
|
5980 |
-
msgid "
|
5981 |
msgstr ""
|
5982 |
|
5983 |
-
#: src/vue/
|
5984 |
-
msgid "
|
5985 |
msgstr ""
|
5986 |
|
5987 |
-
#: src/vue/
|
5988 |
-
msgid "
|
5989 |
msgstr ""
|
5990 |
|
5991 |
-
#: src/vue/
|
5992 |
-
msgid "
|
5993 |
msgstr ""
|
5994 |
|
5995 |
-
#: src/vue/
|
5996 |
-
msgid ""
|
5997 |
-
"We couldn't find any internal links in your content. Add internal links in "
|
5998 |
-
"your content."
|
5999 |
msgstr ""
|
6000 |
|
6001 |
-
#: src/vue/pages/
|
6002 |
-
msgid "
|
6003 |
msgstr ""
|
6004 |
|
6005 |
-
#: src/vue/pages/
|
6006 |
-
msgid "Select
|
6007 |
msgstr ""
|
6008 |
|
6009 |
-
#: src/vue/pages/
|
6010 |
-
msgid "
|
6011 |
msgstr ""
|
6012 |
|
6013 |
-
#: src/vue/pages/
|
6014 |
-
msgid "
|
|
|
|
|
|
|
|
|
6015 |
msgstr ""
|
6016 |
|
6017 |
-
#: src/vue/pages/
|
6018 |
-
msgid "
|
|
|
|
|
6019 |
msgstr ""
|
6020 |
|
6021 |
-
#: src/vue/pages/
|
6022 |
-
msgid "
|
6023 |
msgstr ""
|
6024 |
|
6025 |
-
|
6026 |
-
|
6027 |
-
msgid ""
|
6028 |
-
"This action cannot be undone. Before taking this action, we recommend that "
|
6029 |
-
"you make a %1$sfull website backup first%2$s."
|
6030 |
msgstr ""
|
6031 |
|
6032 |
-
#: src/vue/pages/
|
6033 |
-
msgid "
|
6034 |
msgstr ""
|
6035 |
|
6036 |
-
#: src/vue/pages/
|
6037 |
-
msgid "
|
6038 |
msgstr ""
|
6039 |
|
6040 |
-
#: src/vue/pages/
|
6041 |
-
msgid "
|
6042 |
msgstr ""
|
6043 |
|
6044 |
-
#: src/vue/pages/
|
6045 |
-
msgid "
|
6046 |
msgstr ""
|
6047 |
|
6048 |
-
#: src/vue/pages/
|
6049 |
-
msgid "
|
6050 |
msgstr ""
|
6051 |
|
6052 |
-
#: src/vue/pages/
|
6053 |
-
msgid "
|
|
|
|
|
6054 |
msgstr ""
|
6055 |
|
6056 |
-
#: src/vue/pages/
|
6057 |
-
msgid "
|
|
|
|
|
|
|
6058 |
msgstr ""
|
6059 |
|
6060 |
-
#: src/vue/pages/
|
6061 |
-
msgid "
|
6062 |
msgstr ""
|
6063 |
|
6064 |
-
#: src/vue/pages/
|
6065 |
-
msgid "
|
|
|
|
|
6066 |
msgstr ""
|
6067 |
|
6068 |
-
#: src/vue/pages/
|
6069 |
-
msgid "
|
|
|
|
|
|
|
|
7 |
msgid "404"
|
8 |
msgstr ""
|
9 |
|
10 |
+
#: src/vue/pages/feature-manager/router/paths.js:19
|
11 |
+
#: src/vue/pages/feature-manager/views/Main.vue:20
|
12 |
+
msgid "Feature Manager"
|
13 |
+
msgstr ""
|
14 |
+
|
15 |
+
#: src/vue/pages/about/router/paths.js:19
|
16 |
+
msgid "About Us"
|
17 |
+
msgstr ""
|
18 |
+
|
19 |
+
#: src/vue/pages/about/router/paths.js:28
|
20 |
+
msgid "Getting Started"
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
+
#: src/vue/pages/about/router/paths.js:37
|
24 |
+
msgid "Lite vs. Pro"
|
25 |
msgstr ""
|
26 |
|
27 |
#: src/vue/pages/social-networks/router/paths.js:19
|
40 |
msgid "Pinterest"
|
41 |
msgstr ""
|
42 |
|
43 |
+
# Translators: 1 - The plugin short name ("AIOSEO").
|
44 |
+
#: src/vue/pages/connect-pro/router/paths.js:20
|
45 |
+
#: src/vue/pages/connect/router/paths.js:20
|
46 |
+
msgid "Connect with %1$s"
|
|
|
|
|
|
|
47 |
msgstr ""
|
48 |
|
49 |
+
#: src/vue/pages/search-appearance/router/paths.js:19
|
50 |
+
msgid "Global Settings"
|
51 |
msgstr ""
|
52 |
|
53 |
+
#: src/vue/pages/search-appearance/router/paths.js:28
|
54 |
+
#: src/vue/pages/settings/views/pro/Breadcrumbs.vue:56
|
55 |
+
msgid "Content Types"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: src/vue/components/common/core/PriorityScore.vue:63
|
59 |
+
#: src/vue/pages/sitemaps/views/GeneralSitemap.vue:429
|
60 |
+
msgid "Taxonomies"
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:142
|
64 |
+
#: src/vue/plugins/constants.js:1101
|
65 |
+
msgid "Image SEO"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: src/vue/pages/search-appearance/router/paths.js:55
|
69 |
+
#: src/vue/pages/settings/views/pro/Breadcrumbs.vue:68
|
70 |
+
msgid "Archives"
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:130
|
74 |
+
#: src/vue/pages/search-appearance/views/ContentTypes.vue:76
|
75 |
msgid "Advanced"
|
76 |
msgstr ""
|
77 |
|
92 |
msgid "No %s found"
|
93 |
msgstr ""
|
94 |
|
|
|
|
|
|
|
|
|
95 |
#: src/vue/pages/local-business-seo/blocks/LocationMap.js:212
|
96 |
msgid "Select a %s"
|
97 |
msgstr ""
|
98 |
|
99 |
# Translators: 1 - AIOSEO.
|
100 |
+
#: src/vue/pages/local-business-seo/blocks/Locations.js:46
|
101 |
+
msgid "%1$s Local - Locations"
|
102 |
+
msgstr ""
|
103 |
+
|
104 |
+
#: src/vue/pages/post-settings/registerScoreToggler.js:16
|
105 |
+
msgid "N/A"
|
106 |
+
msgstr ""
|
107 |
+
|
108 |
+
#: src/vue/pages/local-business-seo/blocks/BusinessInfo.js:211
|
109 |
+
msgid "Display Settings"
|
110 |
msgstr ""
|
111 |
|
112 |
# Translators: 1 - AIOSEO.
|
113 |
+
#: src/vue/pages/local-business-seo/blocks/BusinessInfo.js:46
|
114 |
+
msgid "%1$s Local - Business Info"
|
115 |
msgstr ""
|
116 |
|
117 |
#: src/vue/pages/local-business-seo/blocks/LocationMap.js:192
|
118 |
+
#: src/vue/pages/redirects/router/paths.js:64
|
119 |
msgid "Settings"
|
120 |
msgstr ""
|
121 |
|
133 |
msgid "%1$s Local - Opening Hours"
|
134 |
msgstr ""
|
135 |
|
|
|
|
|
|
|
|
|
136 |
#: src/vue/pages/local-seo/router/paths.js:19
|
137 |
msgid "Locations"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: src/vue/pages/local-business-seo/views/Main.vue:53
|
141 |
msgid "Opening Hours"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: src/vue/pages/local-business-seo/views/Main.vue:58
|
145 |
msgid "Maps"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: src/vue/pages/seo-analysis/router/paths.js:19
|
149 |
+
msgid "SEO Audit Checklist"
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: src/vue/pages/seo-analysis/router/paths.js:28
|
153 |
+
msgid "Analyze Competitor Site"
|
154 |
+
msgstr ""
|
155 |
+
|
156 |
+
#: src/vue/standalone/publish-panel/PostPublish.vue:30
|
157 |
+
msgid "Get out the word!"
|
158 |
+
msgstr ""
|
159 |
+
|
160 |
+
#: src/vue/standalone/publish-panel/PostPublish.vue:31
|
161 |
+
msgid ""
|
162 |
+
"Share your content on your favorite social media platforms to drive "
|
163 |
+
"engagement and increase your SEO."
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: src/vue/standalone/notifications/App.vue:17
|
167 |
+
msgid "You have new notifications!"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: src/vue/pages/posts-table/App.vue:219
|
171 |
msgid "Title:"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: src/vue/pages/posts-table/App.vue:220
|
175 |
msgid "Description:"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: src/vue/pages/posts-table/App.vue:221
|
179 |
+
msgid "Image Title:"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: src/vue/pages/posts-table/App.vue:222
|
183 |
+
msgid "Image Alt Tag:"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: src/vue/pages/posts-table/App.vue:223
|
187 |
msgid "Edit"
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: src/vue/pages/posts-table/App.vue:224
|
191 |
msgid "Save"
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: src/vue/pages/posts-table/App.vue:225
|
195 |
msgid "Cancel"
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: src/vue/pages/posts-table/App.vue:226
|
199 |
msgid "Please wait..."
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: src/vue/router/index.js:71
|
203 |
+
msgid "Are you sure you want to leave? you have unsaved changes!"
|
204 |
msgstr ""
|
205 |
|
206 |
#: src/vue/standalone/publish-panel/PrePublish.vue:148
|
234 |
msgid "Snippet Preview"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: src/vue/pages/post-settings/views/Advanced.vue:116
|
238 |
#: src/vue/standalone/publish-panel/PrePublish.vue:72
|
239 |
msgid "Canonical URL"
|
240 |
msgstr ""
|
244 |
msgstr ""
|
245 |
|
246 |
#: src/vue/pages/dashboard/views/Main.vue:226
|
247 |
+
#: src/vue/pages/settings/views/Advanced.vue:288
|
248 |
msgid "SEO Analysis"
|
249 |
msgstr ""
|
250 |
|
252 |
msgid "Readability"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:301
|
256 |
msgid "Focus Keyphrase"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: src/vue/pages/local-business-seo/views/BusinessInfo.vue:117
|
260 |
+
#: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:133
|
261 |
+
msgid "Address"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:323
|
265 |
+
msgid "Phone Number"
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:102
|
269 |
+
msgid "Fax Number"
|
|
|
|
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:103
|
273 |
+
msgid "Email Address"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:104
|
277 |
+
msgid "Show VAT ID"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:105
|
281 |
+
msgid "Show Tax ID"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:106
|
285 |
+
msgid "Phone/Fax Country Code"
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:96
|
289 |
+
msgid "Show labels"
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: src/vue/pages/local-business-seo/blocks/BusinessInfoSidebar.vue:97
|
293 |
+
msgid "Show icons"
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: src/vue/pages/local-business-seo/views/BusinessInfo.vue:109
|
297 |
+
#: src/vue/pages/local-business-seo/views/Main.vue:48
|
298 |
+
#: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:119
|
299 |
+
#: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:129
|
300 |
+
msgid "Business Info"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: src/vue/pages/local-business-seo/views/BusinessInfo.vue:110
|
304 |
+
#: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:130
|
305 |
+
#: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:321
|
306 |
+
msgid "Name"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: src/vue/utils/tags.js:64
|
310 |
+
msgid "Product Short Description"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: src/vue/utils/tags.js:65
|
314 |
+
msgid "A short description for your product."
|
|
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: src/vue/utils/tags.js:66
|
318 |
+
msgid "Sample short description for your product."
|
|
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: src/vue/utils/tags.js:82
|
322 |
+
msgid "Archive"
|
|
|
|
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: src/vue/utils/tags.js:83
|
326 |
+
msgid "archive"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:123
|
330 |
+
msgid "Set title attributes"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:124
|
334 |
+
msgid "Set alt tag attributes"
|
|
|
|
|
|
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:125
|
338 |
+
msgid "Strip punctuation for titles"
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:126
|
342 |
+
msgid "Strip punctuation for alt tags"
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: src/vue/components/common/core/FeatureCard.vue:131
|
346 |
+
#: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:57
|
347 |
+
#: src/vue/pages/sitemaps/views/pro/NewsSitemapActivate.vue:137
|
348 |
+
msgid ""
|
349 |
+
"An error occurred while activating the addon. Please upload it manually or "
|
350 |
+
"contact support for more information."
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:109
|
354 |
+
msgid "Social Meta (Open Graph Markup)"
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:112
|
358 |
+
msgid "Posts, Pages and custom Post Types only"
|
|
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:116
|
362 |
+
msgid "Posts, Pages, custom Post Types + Categories, Tags and custom Taxonomies"
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:120
|
366 |
+
msgid "WooCommerce Integration"
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:123
|
370 |
+
msgid "WooCommerce Products only"
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:127
|
374 |
+
msgid ""
|
375 |
+
"WooCommerce Products, Product Categories, Product Tags, Product Attributes "
|
376 |
+
"+ WooCommerce smart tags (price, brand, etc.)"
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:131
|
380 |
+
msgid "Schema Rich Snippets"
|
|
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:134
|
384 |
+
msgid "Posts, Pages, Categories and Tags only"
|
|
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:138
|
388 |
+
msgid ""
|
389 |
+
"Posts, Pages, Categories, Tags + Breadcrumb Navigation + advanced graphs "
|
390 |
+
"(Product, FAQ Page, Recipe, etc.)"
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:142
|
394 |
+
msgid "Visual Breadcrumb Trails"
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:145
|
398 |
+
msgid "Default template for all pages."
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:149
|
402 |
+
msgid "Granular control over the template for each post type, taxonomy and archive."
|
|
|
|
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:153
|
406 |
+
msgid "XML Sitemap"
|
|
|
|
|
|
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:156
|
410 |
+
msgid "Control the priority & frequency per Post Type/Taxonomy"
|
|
|
|
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:159
|
414 |
+
msgid "Complete Support"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:160
|
418 |
+
msgid "Control the priority & frequency of each Post, Page, Category, Tag, etc."
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: src/vue/pages/sitemaps/router/paths.js:28
|
422 |
+
#: src/vue/plugins/constants.js:1117
|
423 |
+
msgid "Video Sitemap"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:170
|
427 |
+
msgid "Submit your videos to search engines (Pro & Elite plans only)"
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: src/vue/pages/sitemaps/mixins/NewsSitemap.js:5
|
431 |
+
#: src/vue/pages/sitemaps/router/paths.js:38
|
432 |
+
#: src/vue/plugins/constants.js:1125
|
433 |
+
msgid "News Sitemap"
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:180
|
437 |
+
msgid "Submit your latest news stories to Google News (Pro & Elite plans only)"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:190
|
|
|
441 |
msgid ""
|
442 |
+
"Control the Title & Alt Tag attribute of your images (Plus, Pro & Elite "
|
443 |
+
"plans only)"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: src/vue/pages/dashboard/views/Main.vue:203
|
447 |
+
#: src/vue/pages/local-seo/views/Main.vue:23
|
448 |
+
#: src/vue/plugins/constants.js:1109
|
449 |
+
msgid "Local SEO"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:196
|
453 |
+
msgid "Not available"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:200
|
|
|
457 |
msgid ""
|
458 |
+
"Local Business schema (multiple locations supported) + Business Info & "
|
459 |
+
"Location blocks, widgets & shortcodes (Plus, Pro & Elite plans only)"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:204
|
463 |
+
msgid "Redirection Manager"
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:206
|
467 |
+
msgid "Not Available"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:209
|
471 |
+
msgid "Available as Addon Plugin"
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:210
|
475 |
+
msgid ""
|
476 |
+
"Create, manage and monitor redirects for 404's or modified posts + server "
|
477 |
+
"redirects, full site redirects and site aliases (Pro & Elite plans only)"
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: src/vue/plugins/constants.js:1050
|
481 |
+
msgid "Customer Support"
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:216
|
485 |
+
msgid "Limited Support"
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:219
|
489 |
+
msgid "Priority Support"
|
490 |
msgstr ""
|
491 |
|
492 |
+
# Translators: 1 - The abbreviated plugin name ("AIOSEO").
|
493 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:71
|
494 |
+
msgid "%1$s Lite vs. Pro"
|
495 |
msgstr ""
|
496 |
|
497 |
# Translators: 1 - The plugin name ("All in One SEO").
|
498 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:73
|
499 |
+
msgid ""
|
500 |
+
"Get the most out of %1$s by upgrading to Pro and unlocking all of the "
|
501 |
+
"powerful features."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:76
|
505 |
+
msgid "Features:"
|
|
|
|
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:79
|
509 |
+
msgid "Upgrade to Pro to Unlock Powerful SEO Features"
|
|
|
|
|
|
|
|
|
510 |
msgstr ""
|
511 |
|
512 |
+
# Translators: 1 - Plugin name ("All in One SEO"), 2 - Plugin short name ("AIOSEO").
|
513 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:81
|
514 |
msgid ""
|
515 |
+
"%1$s is the best WordPress SEO plugin. Join over 2,000,000+ Professionals "
|
516 |
+
"who are already using %2$s to improve their website search rankings."
|
|
|
|
|
517 |
msgstr ""
|
518 |
|
519 |
+
# Translators: 1 - "Pro".
|
520 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:83
|
521 |
+
msgid "Upgrade to %1$s Today"
|
|
|
|
|
|
|
522 |
msgstr ""
|
523 |
|
524 |
+
# Translators: 1 - Opening bold tag, 2 - Closing bold tag, 3 - "Pro", 4 - Opening bold tag, 5 - A percentage ("50%"), 6 - Closing bold tag.
|
525 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:86
|
526 |
msgid ""
|
527 |
+
"%1$sBonus:%2$s You can upgrade to the %3$s plan today and %4$ssave %5$s "
|
528 |
+
"off%6$s (discount auto-applied)."
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: src/vue/pages/about/views/lite/LiteVsPro.vue:98
|
532 |
+
msgid "Search Engine Optimization (SEO)"
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:282
|
536 |
+
#: src/vue/pages/local-seo/views/pro/OpeningHours.vue:218
|
537 |
msgid "Opening Hours Settings"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:50
|
|
|
|
|
|
|
541 |
msgid "Show Opening Hours"
|
542 |
msgstr ""
|
543 |
|
544 |
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:283
|
545 |
#: src/vue/pages/local-seo/views/pro/OpeningHours.vue:220
|
|
|
546 |
msgid "Display Opening Hours"
|
547 |
msgstr ""
|
548 |
|
549 |
#: src/vue/pages/local-business-seo/views/OpeningHours.vue:175
|
550 |
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:284
|
551 |
#: src/vue/pages/local-seo/views/pro/OpeningHours.vue:221
|
|
|
552 |
msgid "Labels"
|
553 |
msgstr ""
|
554 |
|
555 |
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:285
|
|
|
556 |
msgid "Closed label"
|
557 |
msgstr ""
|
558 |
|
559 |
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:286
|
|
|
560 |
msgid "Text to display when 'Closed' setting is checked"
|
561 |
msgstr ""
|
562 |
|
563 |
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:287
|
564 |
#: src/vue/pages/local-seo/views/pro/OpeningHours.vue:226
|
|
|
565 |
msgid "Open 24h label"
|
566 |
msgstr ""
|
567 |
|
568 |
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:288
|
|
|
569 |
msgid "Text to display when 'Open 24h' setting is checked"
|
570 |
msgstr ""
|
571 |
|
572 |
#: src/vue/pages/local-business-seo/views/OpeningHours.vue:183
|
573 |
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:289
|
574 |
#: src/vue/pages/local-seo/views/pro/OpeningHours.vue:229
|
|
|
575 |
msgid "Open 24/7"
|
576 |
msgstr ""
|
577 |
|
578 |
#: src/vue/pages/local-business-seo/views/OpeningHours.vue:184
|
579 |
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:290
|
580 |
#: src/vue/pages/local-seo/views/pro/OpeningHours.vue:230
|
|
|
581 |
msgid "Use 24h format"
|
582 |
msgstr ""
|
583 |
|
584 |
#: src/vue/pages/local-business-seo/views/OpeningHours.vue:186
|
585 |
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:291
|
586 |
#: src/vue/pages/local-seo/views/pro/OpeningHours.vue:231
|
|
|
587 |
msgid "Timezone"
|
588 |
msgstr ""
|
589 |
|
590 |
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:292
|
|
|
591 |
msgid "Select your timezone:"
|
592 |
msgstr ""
|
593 |
|
622 |
#: src/vue/pages/local-business-seo/views/OpeningHours.vue:181
|
623 |
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:301
|
624 |
#: src/vue/pages/local-seo/views/pro/OpeningHours.vue:234
|
|
|
625 |
msgid "Open 24h"
|
626 |
msgstr ""
|
627 |
|
628 |
#: src/vue/pages/local-business-seo/views/OpeningHours.vue:178
|
629 |
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:302
|
630 |
#: src/vue/pages/local-seo/views/pro/OpeningHours.vue:235
|
|
|
631 |
msgid "Closed"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:148
|
635 |
+
msgid "Advanced Locations Settings"
|
|
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:149
|
639 |
+
msgid "Locations Permalink"
|
|
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:150
|
643 |
+
msgid "Use custom slug"
|
|
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:151
|
647 |
+
msgid "Slug is empty or is already taken. Please enter a different one."
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:152
|
651 |
+
msgid "Locations Category Permalink"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:153
|
655 |
+
msgid "Use custom category slug"
|
|
|
|
|
|
|
|
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:154
|
659 |
+
msgid "Enhanced Search"
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:155
|
663 |
+
msgid ""
|
664 |
+
"Include business locations in site-wide search results. Users searching for "
|
665 |
+
"street name, zip code or city will now also get your business location(s) "
|
666 |
+
"in their search results."
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:156
|
670 |
+
msgid ""
|
671 |
+
"Enhanced Search cannot be enabled on your website because there is a search "
|
672 |
+
"query conflict. To learn more about this, %1$sclick here%2$s."
|
673 |
msgstr ""
|
674 |
|
675 |
+
#: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:157
|
676 |
+
msgid "Enhanced Search - Excerpt"
|
677 |
msgstr ""
|
678 |
|
679 |
+
#: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:158
|
680 |
+
msgid "Shows the location address appended to the search result."
|
681 |
msgstr ""
|
682 |
|
683 |
+
#: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:159
|
684 |
+
msgid "Custom Admin Labels"
|
685 |
+
msgstr ""
|
686 |
+
|
687 |
+
#: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:160
|
688 |
msgid ""
|
689 |
+
"With multiple locations, you will have a new menu item in your admin "
|
690 |
+
"sidebar. By default, this menu item is labeled using the plural term of "
|
691 |
+
"locations with each single item being called a location. If you like, you "
|
692 |
+
"may enter custom labels to better match your business."
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:161
|
696 |
+
msgid "Single label"
|
|
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: src/vue/pages/local-seo/views/pro/MultipleLocationsSettings.vue:162
|
700 |
+
msgid "Plural label"
|
|
|
|
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: src/vue/plugins/constants.js:1049
|
704 |
+
msgid "Manually Enter Type"
|
705 |
msgstr ""
|
706 |
|
707 |
+
#: src/vue/plugins/constants.js:1051
|
708 |
+
msgid "Technical Support"
|
709 |
msgstr ""
|
710 |
|
711 |
+
#: src/vue/plugins/constants.js:1052
|
712 |
+
msgid "Billing Support"
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: src/vue/plugins/constants.js:1053
|
716 |
+
msgid "Bill Payment"
|
717 |
msgstr ""
|
718 |
|
719 |
+
#: src/vue/plugins/constants.js:1054
|
720 |
+
msgid "Sales"
|
721 |
msgstr ""
|
722 |
|
723 |
+
#: src/vue/plugins/constants.js:1055
|
724 |
+
msgid "Reservations"
|
|
|
|
|
725 |
msgstr ""
|
726 |
|
727 |
+
#: src/vue/plugins/constants.js:1056
|
728 |
+
msgid "Credit Card Support"
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: src/vue/plugins/constants.js:1057
|
732 |
+
msgid "Emergency"
|
733 |
msgstr ""
|
734 |
|
735 |
+
#: src/vue/plugins/constants.js:1058
|
736 |
+
msgid "Bagage Tracking"
|
737 |
msgstr ""
|
738 |
|
739 |
+
#: src/vue/plugins/constants.js:1059
|
740 |
+
msgid "Roadside Assistance"
|
|
|
|
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: src/vue/plugins/constants.js:1060
|
744 |
+
msgid "Package Tracking"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: src/vue/pages/dashboard/views/Main.vue:233
|
748 |
+
#: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:133
|
749 |
+
#: src/vue/plugins/constants.js:1066
|
750 |
+
msgid "Sitemaps"
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: src/vue/plugins/constants.js:1067
|
754 |
+
msgid ""
|
755 |
+
"Sitemaps are a list of all your content that search engines use when they "
|
756 |
+
"crawl your site."
|
757 |
msgstr ""
|
758 |
|
759 |
+
#: src/vue/plugins/constants.js:1077
|
760 |
+
msgid "Optimized Search Appearance"
|
761 |
msgstr ""
|
762 |
|
763 |
+
#: src/vue/plugins/constants.js:1078
|
764 |
+
msgid "Get all the right tools to make sure your website shows up in Google Search."
|
765 |
msgstr ""
|
766 |
|
767 |
+
#: src/vue/pages/monsterinsights/views/Main.vue:20
|
768 |
+
#: src/vue/plugins/constants.js:1085
|
769 |
+
msgid "Analytics"
|
770 |
msgstr ""
|
771 |
|
772 |
+
#: src/vue/plugins/constants.js:1086
|
773 |
+
msgid ""
|
774 |
+
"Get the #1 analytics plugin to see how people find and use your website. "
|
775 |
+
"Simply put, see stats that matter."
|
776 |
msgstr ""
|
777 |
|
778 |
+
#: src/vue/plugins/constants.js:1093
|
779 |
+
msgid "Breadcrumbs"
|
780 |
msgstr ""
|
781 |
|
782 |
+
#: src/vue/plugins/constants.js:1102
|
783 |
+
msgid ""
|
784 |
+
"Globally control Title and Alt attributes for attachment pages and images "
|
785 |
+
"that are embedded in your content."
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: src/vue/plugins/constants.js:1110
|
789 |
+
msgid ""
|
790 |
+
"Tell Google about your business for display as a Knowledge Graph card or "
|
791 |
+
"business carousel."
|
792 |
msgstr ""
|
793 |
|
794 |
+
#: src/vue/plugins/constants.js:1118
|
795 |
+
msgid "Generate an XML Sitemap specifically for video content on your site."
|
796 |
msgstr ""
|
797 |
|
798 |
+
#: src/vue/plugins/constants.js:1126
|
799 |
+
msgid "Submit articles to Google News that were published in the last 48 hours."
|
800 |
msgstr ""
|
801 |
|
802 |
+
#: src/vue/plugins/constants.js:1133
|
803 |
+
msgid "Smart Redirects + 404 Detection"
|
804 |
msgstr ""
|
805 |
|
806 |
+
#: src/vue/plugins/constants.js:1134
|
807 |
+
msgid "Create and manage redirects for your broken links."
|
808 |
msgstr ""
|
809 |
|
810 |
+
#: src/vue/plugins/constants.js:1141
|
811 |
+
msgid "Internal Link Building Assistant"
|
|
|
812 |
msgstr ""
|
813 |
|
814 |
+
#: src/vue/plugins/constants.js:1149
|
815 |
+
msgid "Advanced Rich Snippets + Schema Markups"
|
|
|
816 |
msgstr ""
|
817 |
|
818 |
+
#: src/vue/plugins/constants.js:1160
|
819 |
+
msgid "Activities"
|
|
|
820 |
msgstr ""
|
821 |
|
822 |
+
#: src/vue/plugins/constants.js:1162
|
823 |
+
msgid "Activity"
|
824 |
msgstr ""
|
825 |
|
826 |
+
#: src/vue/plugins/constants.js:1163
|
827 |
+
msgid "Sport"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: src/vue/plugins/constants.js:1167
|
831 |
+
msgid "Businesses"
|
832 |
msgstr ""
|
833 |
|
834 |
+
#: src/vue/plugins/constants.js:1169
|
835 |
+
msgid "Bar"
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: src/vue/plugins/constants.js:1170
|
839 |
+
msgid "Company"
|
840 |
msgstr ""
|
841 |
|
842 |
+
#: src/vue/plugins/constants.js:1171
|
843 |
+
msgid "Cafe"
|
844 |
msgstr ""
|
845 |
|
846 |
+
#: src/vue/plugins/constants.js:1172
|
847 |
+
msgid "Hotel"
|
848 |
msgstr ""
|
849 |
|
850 |
+
#: src/vue/plugins/constants.js:1173
|
851 |
+
msgid "Restaurant"
|
852 |
msgstr ""
|
853 |
|
854 |
+
#: src/vue/plugins/constants.js:1177
|
855 |
+
msgid "Groups"
|
856 |
msgstr ""
|
857 |
|
858 |
+
# Translators: This refers to a charity/non-profit organization.
|
859 |
+
#: src/vue/plugins/constants.js:1180
|
860 |
+
msgid "Cause"
|
861 |
msgstr ""
|
862 |
|
863 |
+
#: src/vue/plugins/constants.js:1181
|
864 |
+
msgid "Sports League"
|
865 |
msgstr ""
|
866 |
|
867 |
+
#: src/vue/plugins/constants.js:1182
|
868 |
+
msgid "Sports Team"
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: src/vue/plugins/constants.js:1186
|
872 |
+
msgid "Organizations"
|
873 |
msgstr ""
|
874 |
|
875 |
+
# Translators: This refers to a music group.
|
876 |
+
#: src/vue/plugins/constants.js:1189
|
877 |
+
msgid "Band"
|
878 |
msgstr ""
|
879 |
|
880 |
+
#: src/vue/plugins/constants.js:1190
|
881 |
+
msgid "Non-Profit"
|
882 |
msgstr ""
|
883 |
|
884 |
+
#: src/vue/plugins/constants.js:1191
|
885 |
+
msgid "School"
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: src/vue/plugins/constants.js:1192
|
889 |
+
msgid "University"
|
890 |
msgstr ""
|
891 |
|
892 |
+
#: src/vue/plugins/constants.js:1196
|
893 |
+
msgid "People"
|
|
|
894 |
msgstr ""
|
895 |
|
896 |
+
#: src/vue/plugins/constants.js:1198
|
897 |
+
msgid "Actor"
|
898 |
msgstr ""
|
899 |
|
900 |
+
#: src/vue/plugins/constants.js:1199
|
901 |
+
msgid "Athlete"
|
902 |
msgstr ""
|
903 |
|
904 |
+
#: src/vue/plugins/constants.js:1200
|
905 |
+
msgid "Author"
|
906 |
msgstr ""
|
907 |
|
908 |
+
#: src/vue/plugins/constants.js:1201
|
909 |
+
msgid "Director"
|
910 |
msgstr ""
|
911 |
|
912 |
+
#: src/vue/plugins/constants.js:1202
|
913 |
+
msgid "Musician"
|
914 |
msgstr ""
|
915 |
|
916 |
+
#: src/vue/plugins/constants.js:1203
|
917 |
+
msgid "Politician"
|
918 |
msgstr ""
|
919 |
|
920 |
+
#: src/vue/plugins/constants.js:1204
|
921 |
+
msgid "Profile"
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: src/vue/plugins/constants.js:1205
|
925 |
+
msgid "Public Figure"
|
926 |
msgstr ""
|
927 |
|
928 |
+
#: src/vue/plugins/constants.js:1209
|
929 |
+
msgid "Places"
|
930 |
msgstr ""
|
931 |
|
932 |
+
#: src/vue/plugins/constants.js:1211
|
933 |
+
msgid "City"
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: src/vue/plugins/constants.js:1212
|
937 |
+
msgid "Country"
|
938 |
msgstr ""
|
939 |
|
940 |
+
#: src/vue/plugins/constants.js:1213
|
941 |
+
msgid "Landmark"
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: src/vue/plugins/constants.js:1214
|
945 |
+
msgid "State/Province"
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: src/vue/plugins/constants.js:1218
|
949 |
+
msgid "Products & Entertainment"
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: src/vue/plugins/constants.js:1220
|
953 |
+
msgid "Album"
|
954 |
msgstr ""
|
955 |
|
956 |
+
#: src/vue/plugins/constants.js:1221
|
957 |
+
msgid "Book"
|
|
|
|
|
958 |
msgstr ""
|
959 |
|
960 |
+
#: src/vue/plugins/constants.js:1222
|
961 |
+
msgid "Drink"
|
962 |
msgstr ""
|
963 |
|
964 |
+
#: src/vue/plugins/constants.js:1223
|
965 |
+
msgid "Food"
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: src/vue/plugins/constants.js:1224
|
969 |
+
msgid "Game"
|
|
|
970 |
msgstr ""
|
971 |
|
972 |
+
#: src/vue/plugins/constants.js:1225
|
973 |
+
msgid "Movie"
|
974 |
msgstr ""
|
975 |
|
976 |
+
#: src/vue/plugins/constants.js:1226
|
977 |
+
msgid "Product"
|
|
|
978 |
msgstr ""
|
979 |
|
980 |
+
#: src/vue/plugins/constants.js:1227
|
981 |
+
msgid "Song"
|
982 |
msgstr ""
|
983 |
|
984 |
+
#: src/vue/plugins/constants.js:1228
|
985 |
+
msgid "TV Show"
|
|
|
986 |
msgstr ""
|
987 |
|
988 |
+
#: src/vue/plugins/constants.js:1229
|
989 |
+
msgid "Episode"
|
990 |
msgstr ""
|
991 |
|
992 |
+
#: src/vue/plugins/constants.js:1233
|
993 |
+
msgid "Websites"
|
|
|
994 |
msgstr ""
|
995 |
|
996 |
+
#: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:73
|
997 |
+
#: src/vue/plugins/constants.js:1235
|
998 |
+
msgid "Article"
|
999 |
msgstr ""
|
1000 |
|
1001 |
+
#: src/vue/plugins/constants.js:1236
|
1002 |
+
msgid "Website"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
+
#: src/vue/plugins/constants.js:1286
|
1006 |
+
msgid "Ignore all parameters"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
+
#: src/vue/plugins/constants.js:1287
|
1010 |
+
msgid "Exact match all parameters in any order"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
+
#: src/vue/plugins/constants.js:1288
|
1014 |
+
msgid "Ignore & pass parameters to the target"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
+
#: src/vue/plugins/constants.js:1289
|
1018 |
+
msgid "Ignore all parameters except UTM"
|
1019 |
msgstr ""
|
1020 |
|
1021 |
+
#: src/vue/plugins/constants.js:1293
|
1022 |
+
msgid "Manual Redirects"
|
1023 |
msgstr ""
|
1024 |
|
1025 |
+
#: src/vue/plugins/constants.js:1294
|
1026 |
+
msgid "Modified Posts"
|
|
|
1027 |
msgstr ""
|
1028 |
|
1029 |
+
#: src/vue/plugins/constants.js:1295
|
1030 |
+
msgid "404 Redirects"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:134
|
1034 |
+
#: src/vue/plugins/constants.js:1299
|
1035 |
+
msgid "default"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
+
#: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:135
|
1039 |
+
#: src/vue/plugins/constants.js:1300
|
1040 |
+
msgid "Animal Shelter"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
+
#: src/vue/plugins/constants.js:1301
|
1044 |
+
msgid "Archive Organization"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
+
#: src/vue/plugins/constants.js:1302
|
1048 |
+
msgid "Automotive Business"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
+
#: src/vue/plugins/constants.js:1303
|
1052 |
+
msgid "Childcare"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
+
#: src/vue/plugins/constants.js:1304
|
1056 |
+
msgid "Dentist"
|
|
|
1057 |
msgstr ""
|
1058 |
|
1059 |
+
#: src/vue/plugins/constants.js:1305
|
1060 |
+
msgid "Dry Cleaning/Laundry"
|
|
|
|
|
|
|
|
|
|
|
1061 |
msgstr ""
|
1062 |
|
1063 |
+
#: src/vue/plugins/constants.js:1306
|
1064 |
+
msgid "Emergency Service"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
+
#: src/vue/plugins/constants.js:1307
|
1068 |
+
msgid "Employment Agency"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
+
#: src/vue/plugins/constants.js:1308
|
1072 |
+
msgid "Entertainment Business"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
+
#: src/vue/plugins/constants.js:1309
|
1076 |
+
msgid "Financial Service"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
+
#: src/vue/plugins/constants.js:1310
|
1080 |
+
msgid "Food Establishment"
|
|
|
1081 |
msgstr ""
|
1082 |
|
1083 |
+
#: src/vue/plugins/constants.js:1311
|
1084 |
+
msgid "Government Office"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
+
#: src/vue/plugins/constants.js:1312
|
1088 |
+
msgid "Health & Beauty Business"
|
1089 |
msgstr ""
|
1090 |
|
1091 |
+
#: src/vue/plugins/constants.js:1313
|
1092 |
+
msgid "Home & Construction Business"
|
1093 |
msgstr ""
|
1094 |
|
1095 |
+
#: src/vue/plugins/constants.js:1314
|
1096 |
+
msgid "Internet Cafe"
|
1097 |
msgstr ""
|
1098 |
|
1099 |
+
#: src/vue/plugins/constants.js:1315
|
1100 |
+
msgid "Legal Service"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
+
#: src/vue/plugins/constants.js:1316
|
1104 |
+
msgid "Library"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
+
#: src/vue/plugins/constants.js:1317
|
1108 |
+
msgid "Lodging Business"
|
|
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: src/vue/plugins/constants.js:1318
|
1112 |
+
msgid "Medical Business"
|
|
|
|
|
1113 |
msgstr ""
|
1114 |
|
1115 |
+
#: src/vue/plugins/constants.js:1319
|
1116 |
+
msgid "Professional Service"
|
|
|
1117 |
msgstr ""
|
1118 |
|
1119 |
+
#: src/vue/plugins/constants.js:1320
|
1120 |
+
msgid "Radio Station"
|
|
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: src/vue/plugins/constants.js:1321
|
1124 |
+
msgid "Real Estate Agent"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
+
#: src/vue/plugins/constants.js:1322
|
1128 |
+
msgid "Recycling Center"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
+
#: src/vue/plugins/constants.js:1323
|
1132 |
+
msgid "Self Storage"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
+
#: src/vue/plugins/constants.js:1324
|
1136 |
+
msgid "Shopping Center"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
+
#: src/vue/plugins/constants.js:1325
|
1140 |
+
msgid "Sports Activity Location"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
+
#: src/vue/plugins/constants.js:1326
|
1144 |
+
msgid "Store"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: src/vue/plugins/constants.js:1327
|
1148 |
+
msgid "Television Station"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
+
#: src/vue/plugins/constants.js:1328
|
1152 |
+
msgid "Tourist Information Center"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: src/vue/plugins/constants.js:1329
|
1156 |
+
msgid "Travel Agency"
|
|
|
|
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: src/vue/plugins/constants.js:1404
|
1160 |
+
msgid "General"
|
|
|
|
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: src/vue/plugins/constants.js:1411
|
1164 |
+
msgid "CORS"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
+
#: src/vue/plugins/constants.js:1422
|
1168 |
+
msgid "Security"
|
1169 |
msgstr ""
|
1170 |
|
1171 |
+
#: src/vue/plugins/constants.js:1439
|
1172 |
+
msgid "Login Status"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
+
#: src/vue/plugins/constants.js:1440
|
1176 |
+
msgid "Referrer"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
+
#: src/vue/plugins/constants.js:1441
|
1180 |
+
msgid "WordPress User Roles"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
+
#: src/vue/plugins/constants.js:1442
|
1184 |
+
msgid "User Agent"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: src/vue/plugins/constants.js:1443
|
1188 |
+
msgid "Cookie"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
+
#: src/vue/plugins/constants.js:1444
|
1192 |
+
msgid "IP"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
+
#: src/vue/plugins/constants.js:1445
|
1196 |
+
msgid "Server"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
+
#: src/vue/plugins/constants.js:1446
|
1200 |
+
msgid "HTTP Header"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
+
#: src/vue/plugins/constants.js:1447
|
1204 |
+
msgid "WordPress Filter"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
+
#: src/vue/plugins/constants.js:1448
|
1208 |
+
msgid "Locale"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
+
#: src/vue/plugins/constants.js:1449
|
1212 |
+
msgid "Mobile"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
+
#: src/vue/plugins/constants.js:1450
|
1216 |
+
msgid "Feeds"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
+
#: src/vue/plugins/constants.js:1451
|
1220 |
+
msgid "Libraries"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
+
#: src/vue/plugins/constants.js:1452
|
1224 |
+
msgid "Logged In"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
+
#: src/vue/plugins/constants.js:1453
|
1228 |
+
msgid "Logged Out"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
+
#: src/vue/plugins/constants.js:19
|
1232 |
+
msgid "always"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
+
#: src/vue/plugins/constants.js:20
|
1236 |
+
msgid "hourly"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
+
#: src/vue/plugins/constants.js:21
|
1240 |
+
msgid "daily"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
+
#: src/vue/plugins/constants.js:22
|
1244 |
+
msgid "weekly"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
+
#: src/vue/plugins/constants.js:23
|
1248 |
+
msgid "monthly"
|
1249 |
msgstr ""
|
1250 |
|
1251 |
+
#: src/vue/plugins/constants.js:24
|
1252 |
+
msgid "yearly"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
+
#: src/vue/plugins/constants.js:25
|
1256 |
+
msgid "never"
|
1257 |
msgstr ""
|
1258 |
|
1259 |
+
#: src/vue/plugins/constants.js:29
|
1260 |
+
msgid "No"
|
1261 |
msgstr ""
|
1262 |
|
1263 |
+
#: src/vue/plugins/constants.js:30
|
1264 |
+
msgid "Yes"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
+
#: src/vue/plugins/constants.js:31
|
1268 |
+
msgid "Off"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: src/vue/plugins/constants.js:32
|
1272 |
+
msgid "On"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: src/vue/plugins/constants.js:33
|
1276 |
+
msgid "Show"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
+
#: src/vue/plugins/constants.js:34
|
1280 |
+
msgid "Hide"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: src/vue/plugins/constants.js:35
|
1284 |
+
msgid "Learn More"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
+
#: src/vue/plugins/constants.js:36
|
1288 |
+
msgid "Disabled"
|
1289 |
msgstr ""
|
1290 |
|
1291 |
+
#: src/vue/plugins/constants.js:37
|
1292 |
+
msgid "Enabled"
|
1293 |
msgstr ""
|
1294 |
|
1295 |
+
#: src/vue/plugins/constants.js:38
|
1296 |
+
msgid "Preview"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: src/vue/plugins/constants.js:39
|
1300 |
+
msgid "Include"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:128
|
1304 |
+
#: src/vue/pages/post-settings/views/Twitter.vue:223
|
1305 |
+
#: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:331
|
1306 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:705
|
1307 |
+
#: src/vue/plugins/constants.js:40
|
1308 |
+
msgid "Remove"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
# Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag, 3 - The plugin short name ("AIOSEO").
|
1312 |
+
#: src/vue/pages/local-seo/views/pro/OpeningHours.vue:199
|
1313 |
+
msgid ""
|
1314 |
+
"To add this widget, visit the %1$swidgets page%2$s and look for the \"%3$s "
|
1315 |
+
"Local - Opening Hours\" widget."
|
1316 |
msgstr ""
|
1317 |
|
1318 |
+
# Translators: 1 - Learn more link.
|
1319 |
+
#: src/vue/pages/local-seo/views/pro/OpeningHours.vue:204
|
1320 |
+
msgid "Use the following shortcode to display the opening hours info. %1$s"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
+
# Translators: 1 - The plugin short name ("AIOSEO")
|
1324 |
+
#: src/vue/pages/local-seo/views/pro/OpeningHours.vue:209
|
1325 |
+
msgid ""
|
1326 |
+
"To add this block, edit a page or post and search for the \"%1$s Local - "
|
1327 |
+
"Opening Hours\" block."
|
1328 |
msgstr ""
|
1329 |
|
1330 |
+
# Translators: 1 - Learn more link.
|
1331 |
+
#: src/vue/pages/local-seo/views/pro/OpeningHours.vue:214
|
1332 |
+
msgid ""
|
1333 |
+
"Use the following PHP code anywhere in your theme to display the opening "
|
1334 |
+
"hours. %1$s"
|
1335 |
msgstr ""
|
1336 |
|
1337 |
+
#: src/vue/pages/local-seo/views/pro/OpeningHours.vue:222
|
1338 |
+
msgid "Default Location Settings"
|
|
|
1339 |
msgstr ""
|
1340 |
|
1341 |
+
#: src/vue/pages/local-business-seo/views/OpeningHours.vue:177
|
1342 |
+
#: src/vue/pages/local-seo/views/pro/OpeningHours.vue:224
|
1343 |
+
msgid "Displayed when the business is closed."
|
1344 |
msgstr ""
|
1345 |
|
1346 |
+
#: src/vue/pages/local-seo/views/pro/OpeningHours.vue:225
|
1347 |
+
msgid ""
|
1348 |
+
"Below are the default settings for all locations, which can be overwritten "
|
1349 |
+
"per %1$slocation%2$s."
|
1350 |
msgstr ""
|
1351 |
|
1352 |
+
#: src/vue/pages/local-business-seo/views/OpeningHours.vue:182
|
1353 |
+
#: src/vue/pages/local-seo/views/pro/OpeningHours.vue:227
|
1354 |
+
msgid "Displayed when the business is open all day long."
|
1355 |
msgstr ""
|
1356 |
|
1357 |
+
#: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:51
|
1358 |
+
msgid "Select your timezone"
|
1359 |
msgstr ""
|
1360 |
|
1361 |
+
#: src/vue/pages/local-business-seo/views/OpeningHours.vue:187
|
1362 |
+
#: src/vue/pages/local-seo/views/pro/OpeningHours.vue:233
|
1363 |
+
msgid "Hours"
|
1364 |
msgstr ""
|
1365 |
|
1366 |
+
# Translators: 1 - "Pro".
|
1367 |
+
#: src/vue/components/common/Cta.vue:236
|
1368 |
+
msgid "Upgrade to %1$s"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
+
# Translators: 1 - The plugin name ("All in One SEO").
|
1372 |
+
#: src/vue/components/common/Cta.vue:238
|
1373 |
+
msgid "This feature is only available for licensed %1$s %2$s users."
|
1374 |
msgstr ""
|
1375 |
|
1376 |
+
# Translators: 1 - Plugin short name ("AIOSEO"), 2 "Pro".
|
1377 |
+
#: src/vue/components/common/Cta.vue:240
|
1378 |
+
msgid ""
|
1379 |
+
"%1$s %2$s comes with many additional features to help take your site's SEO "
|
1380 |
+
"to the next level!"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
+
#: src/vue/components/common/Cta.vue:241
|
1384 |
+
msgid "Learn more about all features"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
+
#: src/vue/components/common/Cta.vue:242
|
1388 |
+
msgid "See all features"
|
1389 |
msgstr ""
|
1390 |
|
1391 |
+
# Translators: 1 - The current step count. 2 - The total step count.
|
1392 |
+
#: src/vue/components/common/wizard/Steps.vue:15
|
1393 |
+
msgid "Step %1$s of %2$s"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
+
# Translators: 1 - AIOSEO.
|
1397 |
+
#: src/vue/plugins/breadcrumbs/index.js:33
|
1398 |
+
msgid "%1$s - Breadcrumbs"
|
1399 |
msgstr ""
|
1400 |
|
1401 |
+
#: src/vue/plugins/html-sitemap/index.js:44
|
1402 |
+
msgid "%1$s - HTML Sitemap"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
+
#: src/vue/components/common/wizard/CloseAndExit.vue:14
|
1406 |
+
msgid "Close and Exit Wizard Without Saving"
|
1407 |
msgstr ""
|
1408 |
|
1409 |
+
#: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:52
|
1410 |
+
msgid "Google Maps"
|
1411 |
msgstr ""
|
1412 |
|
1413 |
+
#: src/vue/components/lite/local-business/BusinessType.vue:15
|
1414 |
+
#: src/vue/pages/local-business-seo/views/BusinessInfo.vue:111
|
1415 |
+
#: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:53
|
1416 |
+
#: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:122
|
1417 |
+
#: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:131
|
1418 |
+
msgid "Type"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
+
#: src/vue/pages/local-business-seo/views/BusinessInfo.vue:118
|
1422 |
+
#: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:54
|
1423 |
+
#: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:134
|
1424 |
+
msgid "Contact Info"
|
1425 |
msgstr ""
|
1426 |
|
1427 |
+
#: src/vue/pages/local-business-seo/views/BusinessInfo.vue:120
|
1428 |
+
#: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:55
|
1429 |
+
#: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:136
|
1430 |
+
msgid "Payment Info"
|
1431 |
msgstr ""
|
1432 |
|
1433 |
+
#: src/vue/pages/local-business-seo/views/BusinessInfo.vue:112
|
1434 |
+
#: src/vue/pages/local-seo/views/pro/LocalSeoCta.vue:56
|
1435 |
+
#: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:124
|
1436 |
+
#: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:138
|
1437 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:696
|
1438 |
+
msgid "Image"
|
1439 |
msgstr ""
|
1440 |
|
1441 |
+
#: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:127
|
1442 |
+
msgid ""
|
1443 |
+
"Local Business schema markup enables you to tell Google about your "
|
1444 |
+
"business, including your business name, address and phone number, opening "
|
1445 |
+
"hours and price range. This information may be displayed as a Knowledge "
|
1446 |
+
"Graph card or business carousel."
|
1447 |
msgstr ""
|
1448 |
|
1449 |
+
#: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:128
|
1450 |
+
msgid ""
|
1451 |
+
"Local business information may be displayed when users search for "
|
1452 |
+
"businesses on Google search or Google Maps. Google decides on a per search "
|
1453 |
+
"basis whether to display this information or not and it’s completely "
|
1454 |
+
"automated."
|
1455 |
msgstr ""
|
1456 |
|
1457 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:102
|
1458 |
+
#: src/vue/pages/local-seo/views/pro/Locations.vue:114
|
1459 |
+
msgid "Display Location Info"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: src/vue/pages/local-business-seo/views/BusinessInfo.vue:113
|
1463 |
+
#: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:123
|
1464 |
+
#: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:132
|
1465 |
+
msgid "URLs"
|
1466 |
msgstr ""
|
1467 |
|
1468 |
+
#: src/vue/pages/local-business-seo/views/BusinessInfo.vue:119
|
1469 |
+
#: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:135
|
1470 |
+
msgid "IDs"
|
1471 |
msgstr ""
|
1472 |
|
1473 |
+
#: src/vue/pages/local-business-seo/views/BusinessInfo.vue:121
|
1474 |
+
#: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:137
|
1475 |
+
msgid "Area Served"
|
1476 |
msgstr ""
|
1477 |
|
1478 |
+
#: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:125
|
1479 |
+
#: src/vue/pages/post-settings/views/Twitter.vue:222
|
1480 |
+
#: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:328
|
1481 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:689
|
1482 |
+
msgid "Upload or Select Image"
|
1483 |
msgstr ""
|
1484 |
|
1485 |
+
#: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:126
|
1486 |
+
#: src/vue/pages/post-settings/views/Twitter.vue:221
|
1487 |
+
#: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:329
|
1488 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:690
|
1489 |
+
msgid "Paste your image URL or select a new image"
|
1490 |
msgstr ""
|
1491 |
|
1492 |
+
#: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:127
|
1493 |
+
#: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:330
|
1494 |
msgid ""
|
1495 |
+
"Minimum size: 112px x 112px, The image must be in JPG, PNG, GIF, SVG, or "
|
1496 |
+
"WEBP format."
|
1497 |
msgstr ""
|
1498 |
|
1499 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:115
|
1500 |
+
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:303
|
1501 |
+
msgid "Upgrade to Pro and Unlock Local SEO"
|
1502 |
msgstr ""
|
1503 |
|
1504 |
+
# Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro".
|
1505 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:117
|
1506 |
+
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:305
|
1507 |
+
msgid "Local SEO is only available for licensed %1$s %2$s users."
|
|
|
1508 |
msgstr ""
|
1509 |
|
1510 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:92
|
1511 |
+
msgid "Local Business Schema"
|
|
|
|
|
1512 |
msgstr ""
|
1513 |
|
1514 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:93
|
1515 |
+
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:277
|
1516 |
+
#: src/vue/pages/local-seo/views/pro/Locations.vue:110
|
1517 |
+
msgid "Multiple Locations"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:94
|
1521 |
+
msgid "Business Info and Location blocks, widgets and shortcodes"
|
1522 |
msgstr ""
|
1523 |
|
1524 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:95
|
1525 |
+
msgid "Detailed Address, Contact and Payment Info"
|
1526 |
msgstr ""
|
1527 |
|
1528 |
+
#: src/vue/pages/local-seo/views/lite/Locations.vue:98
|
1529 |
+
#: src/vue/pages/local-seo/views/pro/Locations.vue:107
|
1530 |
+
msgid "Locations Settings"
|
1531 |
msgstr ""
|
1532 |
|
1533 |
+
#: src/vue/pages/post-settings/views/Main.vue:59
|
1534 |
+
msgid "Preview Snippet Editor"
|
1535 |
msgstr ""
|
1536 |
|
1537 |
+
#: src/vue/mixins/Image.js:119
|
1538 |
+
msgid "Choose Image"
|
|
|
|
|
1539 |
msgstr ""
|
1540 |
|
1541 |
+
#: src/vue/mixins/Image.js:55
|
1542 |
+
msgid "Default Image (Set Below)"
|
|
|
|
|
1543 |
msgstr ""
|
1544 |
|
1545 |
+
#: src/vue/mixins/Image.js:56
|
1546 |
+
msgid "Featured Image"
|
|
|
|
|
1547 |
msgstr ""
|
1548 |
|
1549 |
+
#: src/vue/mixins/Image.js:57
|
1550 |
+
msgid "Attached Image"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
+
#: src/vue/mixins/Image.js:58
|
1554 |
+
msgid "First Image in Content"
|
1555 |
msgstr ""
|
1556 |
|
1557 |
+
#: src/vue/mixins/Image.js:59
|
1558 |
+
msgid "Image from Custom Field"
|
1559 |
msgstr ""
|
1560 |
|
1561 |
+
#: src/vue/mixins/Image.js:60
|
1562 |
+
msgid "Post Author Image"
|
1563 |
msgstr ""
|
1564 |
|
1565 |
+
#: src/vue/mixins/Image.js:61
|
1566 |
+
msgid "First Available Image"
|
|
|
1567 |
msgstr ""
|
1568 |
|
1569 |
+
#: src/vue/mixins/Image.js:68
|
1570 |
+
msgid "Default Image Source (Set in Social Networks)"
|
|
|
1571 |
msgstr ""
|
1572 |
|
1573 |
+
#: src/vue/mixins/Image.js:71
|
1574 |
+
msgid "Custom Image"
|
1575 |
msgstr ""
|
1576 |
|
1577 |
+
#: src/vue/mixins/Wizard.js:6
|
1578 |
+
msgid "Skip this Step"
|
1579 |
msgstr ""
|
1580 |
|
1581 |
+
#: src/vue/mixins/Wizard.js:7
|
1582 |
+
msgid "Go Back"
|
|
|
1583 |
msgstr ""
|
1584 |
|
1585 |
+
#: src/vue/mixins/Wizard.js:8
|
1586 |
+
msgid "Save and Continue"
|
|
|
1587 |
msgstr ""
|
1588 |
|
1589 |
+
#: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:128
|
1590 |
+
msgid "Webmaster Tools"
|
|
|
1591 |
msgstr ""
|
1592 |
|
1593 |
+
#: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:129
|
1594 |
+
msgid "RSS Content"
|
1595 |
msgstr ""
|
1596 |
|
1597 |
+
#: src/vue/pages/dashboard/views/Main.vue:224
|
1598 |
+
#: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:131
|
1599 |
+
msgid "Search Appearance"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
+
#: src/vue/pages/dashboard/views/Main.vue:229
|
1603 |
+
#: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:132
|
1604 |
+
msgid "Social Networks"
|
1605 |
msgstr ""
|
1606 |
|
1607 |
+
#: src/vue/mixins/ToolsSettings.js:41
|
1608 |
+
msgid "Robots.txt"
|
1609 |
msgstr ""
|
1610 |
|
1611 |
+
#: src/vue/pages/tools/router/paths.js:37
|
1612 |
+
#: src/vue/pages/tools/views/BadBotBlocker.vue:89
|
1613 |
+
msgid "Bad Bot Blocker"
|
1614 |
msgstr ""
|
1615 |
|
1616 |
+
#: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:138
|
1617 |
+
msgid "Access Control"
|
1618 |
msgstr ""
|
1619 |
|
1620 |
+
#: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:146
|
1621 |
+
msgid "Local Business SEO"
|
1622 |
msgstr ""
|
1623 |
|
1624 |
+
#: src/vue/pages/redirects/router/paths.js:19
|
1625 |
+
msgid "Redirects"
|
1626 |
msgstr ""
|
1627 |
|
1628 |
+
#: src/vue/mixins/SeoSiteScore.js:10
|
1629 |
+
msgid "Excellent!"
|
1630 |
msgstr ""
|
1631 |
|
1632 |
+
#: src/vue/mixins/SeoSiteScore.js:11
|
1633 |
+
msgid "to see your Site Score."
|
1634 |
msgstr ""
|
1635 |
|
1636 |
+
#: src/vue/mixins/SeoSiteScore.js:12
|
1637 |
+
msgid "to analyze a competitor site."
|
1638 |
msgstr ""
|
1639 |
|
1640 |
+
#: src/vue/mixins/SeoSiteScore.js:13
|
1641 |
+
msgid "A valid license key is required"
|
|
|
|
|
|
|
|
|
|
|
1642 |
msgstr ""
|
1643 |
|
1644 |
+
# Translators: 1 - HTML Line break tag.
|
1645 |
+
#: src/vue/mixins/SeoSiteScore.js:6
|
1646 |
+
msgid "We've got some%1$swork to do!"
|
1647 |
msgstr ""
|
1648 |
|
1649 |
+
# Translators: 1 - HTML Line break tag.
|
1650 |
+
#: src/vue/mixins/SeoSiteScore.js:8
|
1651 |
+
msgid "Needs%1$sImprovement!"
|
1652 |
msgstr ""
|
1653 |
|
1654 |
+
#: src/vue/mixins/SeoSiteScore.js:9
|
1655 |
+
msgid "Very Good!"
|
|
|
1656 |
msgstr ""
|
1657 |
|
1658 |
+
#: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:90
|
1659 |
+
msgid "Critical Issues"
|
|
|
1660 |
msgstr ""
|
1661 |
|
1662 |
+
#: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:100
|
1663 |
+
msgid "Recommended Improvements"
|
1664 |
msgstr ""
|
1665 |
|
1666 |
+
#: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:110
|
1667 |
+
msgid "Good Results"
|
1668 |
msgstr ""
|
1669 |
|
1670 |
+
#: src/vue/components/common/core/SiteScoreCompetitor.vue:79
|
1671 |
+
msgid "Complete Site Audit Checklist"
|
|
|
|
|
1672 |
msgstr ""
|
1673 |
|
1674 |
+
#: src/vue/pages/post-settings/views/partialsGeneral/pageAnalysis.vue:30
|
1675 |
+
msgid "All Good!"
|
|
|
|
|
1676 |
msgstr ""
|
1677 |
|
1678 |
+
#: src/vue/pages/post-settings/views/partialsGeneral/pageAnalysis.vue:29
|
1679 |
+
msgid "Errors"
|
|
|
|
|
|
|
|
|
1680 |
msgstr ""
|
1681 |
|
1682 |
+
#: src/vue/mixins/License.js:11
|
1683 |
+
msgid "Your license has been disabled."
|
|
|
|
|
1684 |
msgstr ""
|
1685 |
|
1686 |
+
#: src/vue/mixins/License.js:15
|
1687 |
+
msgid "Your license key is invalid."
|
|
|
|
|
|
|
|
|
1688 |
msgstr ""
|
1689 |
|
1690 |
+
#: src/vue/mixins/License.js:4
|
1691 |
+
msgid "You have not yet added a license key."
|
1692 |
msgstr ""
|
1693 |
|
1694 |
+
#: src/vue/mixins/License.js:7
|
1695 |
+
msgid "Your license has expired."
|
1696 |
msgstr ""
|
1697 |
|
1698 |
+
# Translators: 1 - A number, 2 - A number.
|
1699 |
+
#: src/vue/mixins/MaxCounts.js:6
|
1700 |
+
msgid "%1$s out of %2$s max recommended characters."
|
1701 |
msgstr ""
|
1702 |
|
1703 |
+
#: src/vue/mixins/Notifications.js:6
|
1704 |
+
msgid "Notifications"
|
1705 |
msgstr ""
|
1706 |
|
1707 |
+
#: src/vue/mixins/Notifications.js:7
|
1708 |
+
msgid "New Notifications"
|
|
|
|
|
|
|
1709 |
msgstr ""
|
1710 |
|
1711 |
+
#: src/vue/mixins/Notifications.js:8
|
1712 |
+
msgid "Active Notifications"
|
|
|
|
|
|
|
1713 |
msgstr ""
|
1714 |
|
1715 |
+
#: src/vue/pages/sitemaps/views/HtmlSitemap.vue:228
|
1716 |
+
msgid "Ascending"
|
|
|
|
|
|
|
|
|
1717 |
msgstr ""
|
1718 |
|
1719 |
+
#: src/vue/pages/sitemaps/views/HtmlSitemap.vue:229
|
1720 |
+
msgid "Descending"
|
|
|
|
|
1721 |
msgstr ""
|
1722 |
|
1723 |
+
#: src/vue/pages/sitemaps/views/HtmlSitemap.vue:222
|
1724 |
+
msgid "Publish Date"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
+
#: src/vue/standalone/HtmlSitemapSidebar.vue:109
|
1728 |
+
msgid "Last Updated"
|
1729 |
msgstr ""
|
1730 |
|
1731 |
+
#: src/vue/pages/sitemaps/views/HtmlSitemap.vue:224
|
1732 |
+
msgid "Alphabetical"
|
1733 |
msgstr ""
|
1734 |
|
1735 |
+
#: src/vue/pages/sitemaps/views/HtmlSitemap.vue:225
|
1736 |
+
msgid "Post/Term ID"
|
1737 |
msgstr ""
|
1738 |
|
1739 |
+
#: src/vue/components/common/core/SingleRobotsMeta.vue:162
|
1740 |
+
msgid "Use Default Settings"
|
|
|
|
|
1741 |
msgstr ""
|
1742 |
|
1743 |
+
#: src/vue/components/common/core/PriorityScore.vue:62
|
1744 |
+
#: src/vue/pages/sitemaps/views/GeneralSitemap.vue:428
|
1745 |
+
msgid "Post Types"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
+
#: src/vue/pages/settings/views/Advanced.vue:290
|
1749 |
+
msgid "Include All Post Types"
|
1750 |
msgstr ""
|
1751 |
|
1752 |
+
#: src/vue/pages/settings/views/Advanced.vue:316
|
1753 |
+
msgid "Include All Taxonomies"
|
1754 |
msgstr ""
|
1755 |
|
1756 |
+
#: src/vue/standalone/HtmlSitemapSidebar.vue:119
|
1757 |
+
msgid "Show Labels"
|
1758 |
msgstr ""
|
1759 |
|
1760 |
+
#: src/vue/standalone/HtmlSitemapSidebar.vue:120
|
1761 |
+
msgid "Show Publication Date"
|
1762 |
msgstr ""
|
1763 |
|
1764 |
+
#: src/vue/pages/sitemaps/views/HtmlSitemap.vue:289
|
1765 |
+
msgid "Compact Archives"
|
1766 |
msgstr ""
|
1767 |
|
1768 |
+
#: src/vue/pages/sitemaps/views/HtmlSitemap.vue:285
|
1769 |
+
msgid "Sort Order"
|
1770 |
msgstr ""
|
1771 |
|
1772 |
+
#: src/vue/pages/sitemaps/views/HtmlSitemap.vue:286
|
1773 |
+
msgid "Sort Direction"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:401
|
1777 |
+
#: src/vue/pages/sitemaps/views/GeneralSitemap.vue:441
|
1778 |
+
msgid "Exclude Posts / Pages"
|
1779 |
msgstr ""
|
1780 |
|
1781 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:402
|
1782 |
+
#: src/vue/pages/sitemaps/views/GeneralSitemap.vue:442
|
1783 |
+
msgid "Exclude Terms"
|
|
|
|
|
1784 |
msgstr ""
|
1785 |
|
1786 |
+
#: src/vue/pages/local-business-seo/views/BusinessInfo.vue:114
|
1787 |
+
msgid "Website URL"
|
|
|
|
|
|
|
|
|
|
|
1788 |
msgstr ""
|
1789 |
|
1790 |
+
#: src/vue/pages/local-business-seo/views/BusinessInfo.vue:115
|
1791 |
+
msgid "About Page URL"
|
1792 |
msgstr ""
|
1793 |
|
1794 |
+
#: src/vue/pages/local-business-seo/views/BusinessInfo.vue:116
|
1795 |
+
msgid "Contact Page URL"
|
1796 |
msgstr ""
|
1797 |
|
1798 |
+
#: src/vue/pages/local-business-seo/views/BusinessInfo.vue:122
|
1799 |
+
#: src/vue/pages/local-seo/views/pro/LocationsBusinessInfo.vue:139
|
1800 |
+
msgid "Map"
|
1801 |
msgstr ""
|
1802 |
|
1803 |
+
#: src/vue/pages/local-business-seo/views/OpeningHours.vue:172
|
1804 |
+
msgid "Use Defaults"
|
1805 |
msgstr ""
|
1806 |
|
1807 |
+
#: src/vue/pages/local-business-seo/views/OpeningHours.vue:173
|
1808 |
+
msgid "Will default opening hours set globally"
|
|
|
|
|
|
|
1809 |
msgstr ""
|
1810 |
|
1811 |
+
#: src/vue/pages/local-business-seo/views/OpeningHours.vue:185
|
1812 |
+
msgid "I have two sets of openning hours per day"
|
|
|
|
|
|
|
1813 |
msgstr ""
|
1814 |
|
1815 |
+
#: src/vue/pages/post-settings/views/ModalContent.vue:41
|
1816 |
+
msgid "Modal Content"
|
1817 |
msgstr ""
|
1818 |
|
1819 |
+
#: src/vue/pages/post-settings/views/Social.vue:60
|
1820 |
+
msgid "Social"
|
1821 |
msgstr ""
|
1822 |
|
1823 |
+
#: src/vue/pages/post-settings/views/Advanced.vue:114
|
1824 |
+
msgid "Robots Setting"
|
1825 |
msgstr ""
|
1826 |
|
1827 |
+
#: src/vue/pages/post-settings/views/Advanced.vue:117
|
1828 |
+
msgid "Enter a URL to change the default Canonical URL"
|
1829 |
msgstr ""
|
1830 |
|
1831 |
+
#: src/vue/pages/sitemaps/views/GeneralSitemap.vue:444
|
1832 |
+
msgid "Priority Score"
|
|
|
|
|
1833 |
msgstr ""
|
1834 |
|
1835 |
+
#: src/vue/components/common/core/PriorityScore.vue:64
|
1836 |
+
msgid "Priority"
|
|
|
|
|
1837 |
msgstr ""
|
1838 |
|
1839 |
+
#: src/vue/components/common/core/PriorityScore.vue:65
|
1840 |
+
msgid "Frequency"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
+
# Translators: 1 - The plugin short name name ("AIOSEO"), 2 - "Learn more".
|
1844 |
+
#: src/vue/pages/settings/views/Advanced.vue:320
|
1845 |
+
msgid "This feature is only for licensed %1$s users. %2$s"
|
|
|
1846 |
msgstr ""
|
1847 |
|
1848 |
+
#: src/vue/pages/search-appearance/views/partials/Advanced.vue:112
|
1849 |
+
msgid "Keywords"
|
|
|
|
|
1850 |
msgstr ""
|
1851 |
|
1852 |
+
#: src/vue/pages/search-appearance/views/GlobalSettings.vue:443
|
1853 |
+
msgid "Press enter to create a keyword"
|
|
|
|
|
|
|
|
|
1854 |
msgstr ""
|
1855 |
|
1856 |
+
#: src/vue/pages/post-settings/views/General.vue:284
|
1857 |
+
msgid "Snippet Preview content here."
|
|
|
|
|
|
|
|
|
1858 |
msgstr ""
|
1859 |
|
1860 |
+
#: src/vue/pages/post-settings/views/General.vue:285
|
1861 |
+
msgid "Edit Snippet"
|
1862 |
msgstr ""
|
1863 |
|
1864 |
+
#: src/vue/pages/post-settings/views/General.vue:286
|
1865 |
+
msgid "Click on the tags below to insert variables into your title."
|
1866 |
msgstr ""
|
1867 |
|
1868 |
+
#: src/vue/pages/post-settings/views/General.vue:287
|
1869 |
+
msgid "Meta Description"
|
1870 |
msgstr ""
|
1871 |
|
1872 |
+
#: src/vue/pages/post-settings/views/General.vue:288
|
1873 |
+
msgid "Click on the tags below to insert variables into your meta description."
|
|
|
|
|
1874 |
msgstr ""
|
1875 |
|
1876 |
+
#: src/vue/pages/post-settings/views/General.vue:289
|
1877 |
+
msgid "Pillar Content"
|
1878 |
+
msgstr ""
|
1879 |
+
|
1880 |
+
#: src/vue/pages/post-settings/views/General.vue:290
|
1881 |
msgid ""
|
1882 |
+
"Cornerstone content should be the most important and extensive articles on "
|
1883 |
+
"your site."
|
1884 |
msgstr ""
|
1885 |
|
1886 |
+
#: src/vue/pages/post-settings/views/General.vue:292
|
1887 |
+
msgid "Additional Keyphrases"
|
1888 |
msgstr ""
|
1889 |
|
1890 |
+
#: src/vue/pages/post-settings/views/General.vue:293
|
1891 |
+
msgid "Page Analysis"
|
1892 |
msgstr ""
|
1893 |
|
1894 |
+
#: src/vue/pages/post-settings/views/General.vue:294
|
1895 |
+
msgid "Basic SEO"
|
|
|
1896 |
msgstr ""
|
1897 |
|
1898 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:698
|
1899 |
+
msgid "Title"
|
|
|
1900 |
msgstr ""
|
1901 |
|
1902 |
+
#: src/vue/pages/post-settings/views/General.vue:297
|
|
|
1903 |
msgid ""
|
1904 |
+
"Looking for meta keywords? Click on the advanced tab above to add/edit meta "
|
1905 |
+
"keywords."
|
1906 |
msgstr ""
|
1907 |
|
1908 |
+
# Translators: 1 - "Learn more link".
|
1909 |
+
#: src/vue/pages/post-settings/views/General.vue:299
|
1910 |
msgid ""
|
1911 |
+
"Not sure what keyphrases are used for? Check out our documentation for more "
|
1912 |
+
"information. %1$s"
|
1913 |
msgstr ""
|
1914 |
|
1915 |
+
# Translators: 1 - The type of page (Post, Page, Category, Tag, etc.).
|
1916 |
+
#: src/vue/pages/search-appearance/views/partials/Advanced.vue:125
|
1917 |
+
msgid "%1$s Title"
|
1918 |
msgstr ""
|
1919 |
|
1920 |
+
#: src/vue/plugins/truSEO/analysis/contentHasAssets.js:36
|
1921 |
+
#: src/vue/plugins/truSEO/analysis/lengthContent.js:25
|
1922 |
+
msgid "Please add some content first."
|
1923 |
msgstr ""
|
1924 |
|
1925 |
+
#: src/vue/plugins/truSEO/analysis/lengthContent.js:36
|
1926 |
+
msgid "The content length is ok. Good job!"
|
1927 |
msgstr ""
|
1928 |
|
1929 |
+
#: src/vue/plugins/truSEO/analysis/lengthContent.js:52
|
1930 |
+
msgid "This is far below the recommended minimum of words."
|
|
|
1931 |
msgstr ""
|
1932 |
|
1933 |
+
#: src/vue/plugins/truSEO/analysis/lengthContent.js:70
|
1934 |
+
msgid "Content Length"
|
|
|
|
|
|
|
|
|
1935 |
msgstr ""
|
1936 |
|
1937 |
+
#: src/vue/plugins/truSEO/analysis/lengthContent.js:71
|
1938 |
+
msgid "The content is below the minimum of words. Add more content."
|
|
|
|
|
|
|
|
|
1939 |
msgstr ""
|
1940 |
|
1941 |
+
#: src/vue/plugins/truSEO/analysis/isInternalLink.js:20
|
1942 |
+
msgid "You are linking to other resources on your website which is great."
|
1943 |
msgstr ""
|
1944 |
|
1945 |
+
#: src/vue/plugins/truSEO/analysis/isInternalLink.js:28
|
1946 |
+
msgid "Internal links"
|
1947 |
msgstr ""
|
1948 |
|
1949 |
+
#: src/vue/plugins/truSEO/analysis/isInternalLink.js:29
|
1950 |
+
msgid ""
|
1951 |
+
"We couldn't find any internal links in your content. Add internal links in "
|
1952 |
+
"your content."
|
1953 |
msgstr ""
|
1954 |
|
1955 |
+
#: src/vue/plugins/truSEO/analysis/isExternalLink.js:20
|
1956 |
+
msgid "Great! You are linking to external resources."
|
1957 |
msgstr ""
|
1958 |
|
1959 |
+
#: src/vue/plugins/truSEO/analysis/isExternalLink.js:28
|
1960 |
+
msgid "External links"
|
|
|
|
|
|
|
|
|
1961 |
msgstr ""
|
1962 |
|
1963 |
+
#: src/vue/plugins/truSEO/analysis/isExternalLink.js:29
|
1964 |
+
msgid "No outbound links were found. Link out to external resources."
|
1965 |
msgstr ""
|
1966 |
|
1967 |
+
#: src/vue/plugins/truSEO/analysis/transitionWords.js:39
|
1968 |
+
msgid "None of the sentences contain transition words. Use some."
|
1969 |
msgstr ""
|
1970 |
|
1971 |
+
# Translators: 1 - Percentage of the sentences.
|
1972 |
+
#: src/vue/plugins/truSEO/analysis/transitionWords.js:50
|
1973 |
+
msgid ""
|
1974 |
+
"Only %1$s of the sentences contain transition words, which is not enough. "
|
1975 |
+
"Use more of them."
|
1976 |
msgstr ""
|
1977 |
|
1978 |
+
#: src/vue/plugins/truSEO/analysis/transitionWords.js:58
|
1979 |
+
msgid "Transition words"
|
|
|
1980 |
msgstr ""
|
1981 |
|
1982 |
+
#: src/vue/plugins/truSEO/analysis/metadescriptionLength.js:54
|
1983 |
+
msgid "Well done!"
|
1984 |
msgstr ""
|
1985 |
|
1986 |
+
#: src/vue/plugins/truSEO/analysis/passiveVoice.js:36
|
1987 |
+
msgid "You're using enough active voice. That's great!"
|
1988 |
msgstr ""
|
1989 |
|
1990 |
+
#: src/vue/plugins/truSEO/analysis/passiveVoice.js:43
|
1991 |
+
msgid "Passive Voice"
|
1992 |
+
msgstr ""
|
1993 |
+
|
1994 |
+
# Translators: 1 - Percentage of the sentences, 2 - Expected maximum percentage of sentences.
|
1995 |
+
#: src/vue/plugins/truSEO/analysis/passiveVoice.js:45
|
1996 |
msgid ""
|
1997 |
+
"%1$s of the sentences contain passive voice, which is more than the "
|
1998 |
+
"recommended maximum of %2$s. Try to use their active counterparts."
|
|
|
1999 |
msgstr ""
|
2000 |
|
2001 |
+
#: src/vue/plugins/truSEO/analysis/subheadingsDistribution.js:100
|
2002 |
msgid ""
|
2003 |
+
"You are not using any subheadings, but your text is short enough and "
|
2004 |
+
"probably doesn't need them."
|
|
|
2005 |
msgstr ""
|
2006 |
|
2007 |
+
# Translators: 1 - Expand to the number of text sections not separated by subheadings, 2 - expands to the recommended number of words following a subheading.
|
2008 |
+
#: src/vue/plugins/truSEO/analysis/subheadingsDistribution.js:72
|
2009 |
+
msgid ""
|
2010 |
+
"%1$d section of your text is longer than %2$d words and is not separated by "
|
2011 |
+
"any subheadings. Add subheadings to improve readability."
|
2012 |
msgstr ""
|
2013 |
|
2014 |
+
#: src/vue/plugins/truSEO/analysis/subheadingsDistribution.js:81
|
2015 |
+
msgid ""
|
2016 |
+
"You are not using any subheadings, although your text is rather long. Try "
|
2017 |
+
"and add some subheadings."
|
2018 |
msgstr ""
|
2019 |
|
2020 |
+
#: src/vue/plugins/truSEO/analysis/subheadingsDistribution.js:91
|
2021 |
+
msgid "Great job!"
|
|
|
2022 |
msgstr ""
|
2023 |
|
2024 |
+
#: src/vue/plugins/truSEO/analysis/subheadingsDistribution.js:99
|
2025 |
+
msgid "Subheading distribution"
|
|
|
|
|
2026 |
msgstr ""
|
2027 |
|
2028 |
+
#: src/vue/plugins/truSEO/analysis/paragraphLength.js:21
|
2029 |
+
msgid "At least one paragraph is long. Consider using short paragraphs."
|
2030 |
msgstr ""
|
2031 |
|
2032 |
+
#: src/vue/plugins/truSEO/analysis/paragraphLength.js:28
|
2033 |
+
msgid "Paragraphs Length"
|
|
|
|
|
2034 |
msgstr ""
|
2035 |
|
2036 |
+
#: src/vue/plugins/truSEO/analysis/paragraphLength.js:29
|
2037 |
+
msgid "You are using short paragraphs."
|
2038 |
msgstr ""
|
2039 |
|
2040 |
+
#: src/vue/plugins/truSEO/analysis/sentenceLength.js:52
|
2041 |
+
msgid "Sentence length is looking great!"
|
2042 |
msgstr ""
|
2043 |
|
2044 |
+
#: src/vue/plugins/truSEO/analysis/sentenceLength.js:70
|
2045 |
+
msgid "Sentences Length"
|
|
|
|
|
2046 |
msgstr ""
|
2047 |
|
2048 |
+
# Translators: 1 - Number of the sentences, 2 - Number of words, 3 - Recommended maximum of words.
|
2049 |
+
#: src/vue/plugins/truSEO/analysis/sentenceLength.js:72
|
2050 |
+
msgid ""
|
2051 |
+
"%1$s of the sentences contain more than %2$s words, which is more than the "
|
2052 |
+
"recommended maximum of %3$s. Try to shorten the sentences."
|
2053 |
msgstr ""
|
2054 |
|
2055 |
+
# Translators: 1 - Number of sentences.
|
2056 |
+
#: src/vue/plugins/truSEO/analysis/consecutiveSentences.js:33
|
2057 |
msgid ""
|
2058 |
+
"The text contains %1$d consecutive sentences starting with the same word. "
|
2059 |
+
"Try to mix things up!"
|
2060 |
msgstr ""
|
2061 |
|
2062 |
+
#: src/vue/plugins/truSEO/analysis/consecutiveSentences.js:41
|
2063 |
+
msgid "Consecutive sentences"
|
|
|
2064 |
msgstr ""
|
2065 |
|
2066 |
+
#: src/vue/plugins/truSEO/analysis/consecutiveSentences.js:42
|
2067 |
+
msgid "There is enough variety in your sentences. That's great!"
|
|
|
2068 |
msgstr ""
|
2069 |
|
2070 |
+
#: src/vue/plugins/truSEO/analysis/calculateFleschReading.js:45
|
2071 |
+
#: src/vue/plugins/truSEO/analysis/keyphraseLength.js:39
|
2072 |
+
msgid "Good job!"
|
2073 |
msgstr ""
|
2074 |
|
2075 |
+
#: src/vue/plugins/truSEO/analysis/calculateFleschReading.js:49
|
2076 |
+
msgid "very easy"
|
2077 |
msgstr ""
|
2078 |
|
2079 |
+
# Translators: 1 - Flesch Reading Result Number, 2 - Read difficulty string.
|
2080 |
+
#: src/vue/plugins/truSEO/analysis/calculateFleschReading.js:77
|
2081 |
+
msgid "The copy scores %1$s in the test, which is considered %2$s to read."
|
2082 |
msgstr ""
|
2083 |
|
2084 |
+
#: src/vue/plugins/truSEO/analysis/calculateFleschReading.js:85
|
2085 |
+
msgid "Flesch Reading Ease"
|
2086 |
msgstr ""
|
2087 |
|
2088 |
+
# Translators: 1 - Flesch Reading Result Number, 2 - Read difficulty string, 3 - Note string.
|
2089 |
+
#: src/vue/plugins/truSEO/analysis/calculateFleschReading.js:87
|
2090 |
+
msgid "The copy scores %1$s in the test, which is considered %2$s to read. %3$s"
|
2091 |
msgstr ""
|
2092 |
|
2093 |
+
#: src/vue/plugins/truSEO/analysis/calculateFleschReading.js:95
|
2094 |
+
msgid "Flesch Reading Ease N/A"
|
|
|
2095 |
msgstr ""
|
2096 |
|
2097 |
+
#: src/vue/plugins/truSEO/analysis/calculateFleschReading.js:96
|
2098 |
+
msgid ":-)"
|
|
|
2099 |
msgstr ""
|
2100 |
|
2101 |
+
#: src/vue/plugins/truSEO/analysis/contentHasAssets.js:49
|
2102 |
+
msgid "Your content contains images and/or video(s)."
|
2103 |
msgstr ""
|
2104 |
|
2105 |
+
#: src/vue/plugins/truSEO/analysis/contentHasAssets.js:56
|
2106 |
+
msgid "Images/Videos in content"
|
2107 |
msgstr ""
|
2108 |
|
2109 |
+
#: src/vue/plugins/truSEO/analysis/contentHasAssets.js:57
|
2110 |
+
msgid "You are not using rich media like images or videos."
|
|
|
|
|
|
|
2111 |
msgstr ""
|
2112 |
|
2113 |
+
#: src/vue/plugins/truSEO/analysis/keyphraseInContent.js:20
|
2114 |
+
msgid "Focus Keyphrase found in content."
|
|
|
|
|
|
|
2115 |
msgstr ""
|
2116 |
|
2117 |
+
#: src/vue/plugins/truSEO/analysis/keyphraseInContent.js:28
|
2118 |
+
msgid "Focus Keyphrase in content"
|
|
|
|
|
|
|
|
|
2119 |
msgstr ""
|
2120 |
|
2121 |
+
#: src/vue/plugins/truSEO/analysis/keyphraseInContent.js:29
|
2122 |
+
msgid "Focus Keyphrase not found in content."
|
2123 |
+
msgstr ""
|
2124 |
+
|
2125 |
+
#: src/vue/plugins/truSEO/analysis/metadescriptionLength.js:24
|
2126 |
msgid ""
|
2127 |
+
"No meta description has been specified. Search engines will display copy "
|
2128 |
+
"from the page instead. Make sure to write one!"
|
|
|
|
|
|
|
2129 |
msgstr ""
|
2130 |
|
2131 |
+
#: src/vue/plugins/truSEO/analysis/metadescriptionLength.js:34
|
2132 |
+
msgid "The meta description is too short."
|
|
|
2133 |
msgstr ""
|
2134 |
|
2135 |
+
#: src/vue/plugins/truSEO/analysis/metadescriptionLength.js:43
|
2136 |
+
msgid "Meta description length"
|
|
|
|
|
|
|
2137 |
msgstr ""
|
2138 |
|
2139 |
+
#: src/vue/plugins/truSEO/analysis/metadescriptionLength.js:44
|
2140 |
+
msgid "The meta description is over 160 characters."
|
|
|
|
|
|
|
2141 |
msgstr ""
|
2142 |
|
2143 |
+
#: src/vue/plugins/truSEO/analysis/metadescriptionLength.js:53
|
2144 |
+
msgid "Meta description Length"
|
2145 |
msgstr ""
|
2146 |
|
2147 |
+
#: src/vue/plugins/truSEO/analysis/keyphraseInURL.js:29
|
2148 |
+
msgid "Focus Keyphrase used in the URL."
|
2149 |
msgstr ""
|
2150 |
|
2151 |
+
#: src/vue/plugins/truSEO/analysis/keyphraseInURL.js:37
|
2152 |
+
msgid "Focus Keyphrase in URL"
|
|
|
|
|
|
|
|
|
2153 |
msgstr ""
|
2154 |
|
2155 |
+
#: src/vue/plugins/truSEO/analysis/keyphraseInURL.js:38
|
2156 |
+
msgid "Focus Keyphrase not found in the URL."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2157 |
msgstr ""
|
2158 |
|
2159 |
+
# Translators: 1 - Focus Keyphrase or Keyphrase.
|
2160 |
+
#: src/vue/plugins/truSEO/analysis/keyphraseInImageAlt.js:31
|
2161 |
+
msgid "%1$s found in image alt attribute(s)."
|
2162 |
msgstr ""
|
2163 |
|
2164 |
+
# Translators: 1 - Focus Keyphrase or Keyphrase.
|
2165 |
+
#: src/vue/plugins/truSEO/analysis/keyphraseInImageAlt.js:40
|
2166 |
+
msgid "%1$s in image alt attributes"
|
2167 |
msgstr ""
|
2168 |
|
2169 |
+
# Translators: 1 - Focus Keyphrase or Keyphrase.
|
2170 |
+
#: src/vue/plugins/truSEO/analysis/keyphraseInImageAlt.js:42
|
2171 |
+
msgid ""
|
2172 |
+
"%1$s not found in image alt attribute(s). Add an image with your %1$s as "
|
2173 |
+
"alt text."
|
2174 |
msgstr ""
|
2175 |
|
2176 |
+
#: src/vue/plugins/truSEO/analysis/titleLength.js:19
|
2177 |
+
msgid "Please add a title first."
|
|
|
|
|
|
|
2178 |
msgstr ""
|
2179 |
|
2180 |
+
#: src/vue/plugins/truSEO/analysis/titleLength.js:29
|
2181 |
+
msgid "No title has been specified. Make sure to write one!"
|
|
|
2182 |
msgstr ""
|
2183 |
|
2184 |
+
#: src/vue/plugins/truSEO/analysis/titleLength.js:39
|
2185 |
+
msgid "The title is too short."
|
|
|
2186 |
msgstr ""
|
2187 |
|
2188 |
+
#: src/vue/plugins/truSEO/analysis/titleLength.js:48
|
2189 |
+
msgid "SEO Title length"
|
2190 |
msgstr ""
|
2191 |
|
2192 |
+
#: src/vue/plugins/truSEO/analysis/titleLength.js:49
|
2193 |
+
msgid "The title is over 60 characters."
|
2194 |
msgstr ""
|
2195 |
|
2196 |
+
#: src/vue/plugins/truSEO/analysis/titleLength.js:58
|
2197 |
+
msgid "Title Length"
|
|
|
|
|
2198 |
msgstr ""
|
2199 |
|
2200 |
+
#: src/vue/plugins/truSEO/analysis/keyphraseInTitle.js:20
|
2201 |
+
msgid "Focus Keyphrase found in SEO title."
|
|
|
|
|
|
|
|
|
2202 |
msgstr ""
|
2203 |
|
2204 |
+
#: src/vue/plugins/truSEO/analysis/keyphraseInTitle.js:28
|
2205 |
+
msgid "Focus Keyphrase in SEO title"
|
|
|
|
|
|
|
2206 |
msgstr ""
|
2207 |
|
2208 |
+
#: src/vue/plugins/truSEO/analysis/keyphraseInTitle.js:29
|
2209 |
+
msgid "Focus Keyphrase not found in SEO title."
|
2210 |
msgstr ""
|
2211 |
|
2212 |
+
#: src/vue/plugins/truSEO/analysis/keyphraseInSubHeadings.js:103
|
2213 |
+
msgid "Your H2 and H3 subheadings reflects the topic of your copy. Good job!"
|
2214 |
msgstr ""
|
2215 |
|
2216 |
+
#: src/vue/plugins/truSEO/analysis/keyphraseInSubHeadings.js:111
|
2217 |
+
msgid "Focus Keyphrase in Subheadings"
|
2218 |
msgstr ""
|
2219 |
|
2220 |
+
#: src/vue/plugins/truSEO/analysis/keyphraseInSubHeadings.js:112
|
2221 |
+
msgid "Use your focus keyphrase more in your H2 and H3 subheadings."
|
2222 |
msgstr ""
|
2223 |
|
2224 |
+
#: src/vue/plugins/truSEO/analysis/keyphraseInSubHeadings.js:76
|
2225 |
+
msgid "Use more focus keyphrases in your H2 and H3 subheadings!"
|
2226 |
msgstr ""
|
2227 |
|
2228 |
+
#: src/vue/plugins/truSEO/analysis/keyphraseInSubHeadings.js:85
|
2229 |
msgid ""
|
2230 |
+
"More than 75% of your H2 and H3 subheadings reflect the topic of your copy. "
|
2231 |
+
"That's too much. Don't over-optimize!"
|
2232 |
msgstr ""
|
2233 |
|
2234 |
+
#: src/vue/plugins/truSEO/analysis/keyphraseInSubHeadings.js:94
|
2235 |
+
msgid "Your H2 or H3 subheading reflects the topic of your copy. Good job!"
|
|
|
|
|
|
|
2236 |
msgstr ""
|
2237 |
|
2238 |
+
#: src/vue/plugins/truSEO/analysis/keyphraseBeginningTitle.js:18
|
2239 |
+
msgid "Focus Keyphrase used at the beginning of SEO title."
|
2240 |
msgstr ""
|
2241 |
|
2242 |
+
#: src/vue/plugins/truSEO/analysis/keyphraseBeginningTitle.js:26
|
2243 |
+
msgid "Focus Keyphrase at the beginning of SEO Title"
|
2244 |
msgstr ""
|
2245 |
|
2246 |
+
#: src/vue/plugins/truSEO/analysis/keyphraseBeginningTitle.js:27
|
2247 |
+
msgid "Focus Keyphrase doesn't appear at the beginning of SEO title."
|
2248 |
msgstr ""
|
2249 |
|
2250 |
+
# Translators: 1 - Focus Keyphrase or Keyphrase.
|
2251 |
+
#: src/vue/plugins/truSEO/analysis/keyphraseInIntroduction.js:22
|
2252 |
+
msgid "%1$s in introduction"
|
2253 |
msgstr ""
|
2254 |
|
2255 |
+
#: src/vue/plugins/truSEO/analysis/keyphraseInIntroduction.js:27
|
2256 |
+
msgid "No content added yet."
|
|
|
|
|
|
|
2257 |
msgstr ""
|
2258 |
|
2259 |
+
# Translators: 1 - Focus Keyphrase or Keyphrase.
|
2260 |
+
#: src/vue/plugins/truSEO/analysis/keyphraseInIntroduction.js:42
|
2261 |
+
msgid "Your %1$s appears in the first paragraph. Well done!"
|
2262 |
msgstr ""
|
2263 |
|
2264 |
+
# Translators: 1 - Focus Keyphrase or Keyphrase.
|
2265 |
+
#: src/vue/plugins/truSEO/analysis/keyphraseInIntroduction.js:52
|
2266 |
+
msgid ""
|
2267 |
+
"Your %1$s does not appear in the first paragraph. Make sure the topic is "
|
2268 |
+
"clear immediately."
|
2269 |
msgstr ""
|
2270 |
|
2271 |
+
# Translators: 1 - Focus Keyphrase or Keyphrase.
|
2272 |
+
#: src/vue/plugins/truSEO/analysis/keyphraseInDescription.js:19
|
2273 |
+
msgid "%1$s in meta description"
|
2274 |
msgstr ""
|
2275 |
|
2276 |
+
# Translators: 1 - Focus Keyphrase or Keyphrase.
|
2277 |
+
#: src/vue/plugins/truSEO/analysis/keyphraseInDescription.js:25
|
2278 |
+
msgid "%1$s found in meta description."
|
2279 |
msgstr ""
|
2280 |
|
2281 |
+
# Translators: 1 - Focus Keyphrase or Keyphrase.
|
2282 |
+
#: src/vue/plugins/truSEO/analysis/keyphraseInDescription.js:35
|
2283 |
+
msgid "%1$s not found in meta description."
|
|
|
|
|
2284 |
msgstr ""
|
2285 |
|
2286 |
+
# Translators: 1 - Focus Keyphrase or Keyphrase.
|
2287 |
+
#: src/vue/plugins/truSEO/analysis/keyphraseLength.js:23
|
2288 |
+
msgid "%1$s length"
|
2289 |
msgstr ""
|
2290 |
|
2291 |
+
# Translators: 1 - Focus Keyphrase or Keyphrase.
|
2292 |
+
#: src/vue/plugins/truSEO/analysis/keyphraseLength.js:29
|
2293 |
+
msgid "No %1$s was set. Set a %1$s in order to calculate your SEO score."
|
2294 |
msgstr ""
|
2295 |
|
2296 |
+
# Translators: 1 - Focus Keyphrase or Keyphrase.
|
2297 |
+
#: src/vue/plugins/truSEO/analysis/keyphraseLength.js:50
|
2298 |
+
msgid "%1$s is slightly long. Try to make it shorter."
|
2299 |
msgstr ""
|
2300 |
|
2301 |
+
# Translators: 1 - Focus Keyphrase or Keyphrase.
|
2302 |
+
#: src/vue/plugins/truSEO/analysis/keyphraseLength.js:60
|
2303 |
+
msgid "%1$s is too long. Try to make it shorter."
|
2304 |
msgstr ""
|
2305 |
|
2306 |
+
#: src/vue/pages/post-settings/views/SocialSideBar.vue:26
|
2307 |
+
msgid ""
|
2308 |
+
"Here you can view and edit the thumbnail, title and description that will "
|
2309 |
+
"be displayed when your site is shared on social media. Click on the button "
|
2310 |
+
"below to view and edit the preview."
|
2311 |
msgstr ""
|
2312 |
|
2313 |
+
#: src/vue/pages/post-settings/views/SocialSideBar.vue:27
|
2314 |
+
msgid "Preview & Edit"
|
|
|
2315 |
msgstr ""
|
2316 |
|
2317 |
+
#: src/vue/pages/post-settings/views/Twitter.vue:213
|
2318 |
+
msgid "Twitter Preview"
|
|
|
2319 |
msgstr ""
|
2320 |
|
2321 |
+
#: src/vue/pages/post-settings/views/Twitter.vue:214
|
2322 |
+
msgid "Use Data from Facebook Tab"
|
|
|
2323 |
msgstr ""
|
2324 |
|
2325 |
+
#: src/vue/pages/post-settings/views/Twitter.vue:215
|
2326 |
+
msgid "Image Source"
|
|
|
|
|
|
|
2327 |
msgstr ""
|
2328 |
|
2329 |
+
#: src/vue/pages/post-settings/views/Twitter.vue:216
|
2330 |
+
msgid "Custom Field Name"
|
|
|
|
|
2331 |
msgstr ""
|
2332 |
|
2333 |
+
#: src/vue/pages/post-settings/views/Twitter.vue:217
|
2334 |
+
msgid "Twitter Image"
|
2335 |
msgstr ""
|
2336 |
|
2337 |
+
#: src/vue/pages/post-settings/views/Twitter.vue:218
|
2338 |
+
msgid "Twitter Title"
|
2339 |
msgstr ""
|
2340 |
|
2341 |
+
#: src/vue/pages/post-settings/views/Twitter.vue:219
|
2342 |
+
msgid "Twitter Description"
|
2343 |
msgstr ""
|
2344 |
|
2345 |
+
#: src/vue/pages/post-settings/views/Twitter.vue:220
|
2346 |
+
msgid "Twitter Card Type"
|
2347 |
msgstr ""
|
2348 |
|
2349 |
+
#: src/vue/pages/post-settings/views/Twitter.vue:224
|
2350 |
+
msgid ""
|
2351 |
+
"Minimum size: 144px x 144px, ideal ratio 1:1, 5MB max. JPG, PNG, WEBP and "
|
2352 |
+
"GIF formats only."
|
2353 |
msgstr ""
|
2354 |
|
2355 |
+
#: src/vue/pages/post-settings/views/Twitter.vue:225
|
2356 |
+
msgid ""
|
2357 |
+
"Minimum size: 300px x 157px, ideal ratio 2:1, 5MB max. JPG, PNG, WEBP and "
|
2358 |
+
"GIF formats only."
|
2359 |
msgstr ""
|
2360 |
|
2361 |
+
#: src/vue/pages/post-settings/views/Twitter.vue:234
|
2362 |
+
msgid "Default (Set under Social Networks)"
|
2363 |
msgstr ""
|
2364 |
|
2365 |
+
#: src/vue/pages/post-settings/views/Twitter.vue:235
|
2366 |
+
msgid "Summary"
|
2367 |
msgstr ""
|
2368 |
|
2369 |
+
#: src/vue/pages/post-settings/views/Twitter.vue:236
|
2370 |
+
msgid "Summary with Large Image"
|
2371 |
msgstr ""
|
2372 |
|
2373 |
+
#: src/vue/pages/post-settings/views/Facebook.vue:238
|
2374 |
+
msgid "Facebook Preview"
|
2375 |
msgstr ""
|
2376 |
|
2377 |
+
#: src/vue/pages/post-settings/views/Facebook.vue:241
|
2378 |
+
msgid "Video URL"
|
2379 |
msgstr ""
|
2380 |
|
2381 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:683
|
2382 |
+
msgid "Width"
|
2383 |
msgstr ""
|
2384 |
|
2385 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:684
|
2386 |
+
msgid "Height"
|
|
|
2387 |
msgstr ""
|
2388 |
|
2389 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:729
|
2390 |
+
msgid "Object Type"
|
2391 |
msgstr ""
|
2392 |
|
2393 |
+
#: src/vue/pages/post-settings/views/Facebook.vue:245
|
2394 |
+
msgid "Facebook Image"
|
2395 |
msgstr ""
|
2396 |
|
2397 |
+
#: src/vue/pages/post-settings/views/Facebook.vue:246
|
2398 |
+
msgid "Facebook Title"
|
2399 |
msgstr ""
|
2400 |
|
2401 |
+
#: src/vue/pages/post-settings/views/Facebook.vue:247
|
2402 |
+
msgid "Facebook Description"
|
2403 |
msgstr ""
|
2404 |
|
2405 |
+
#: src/vue/pages/post-settings/views/Facebook.vue:250
|
2406 |
+
msgid ""
|
2407 |
+
"Minimum size: 200px x 200px, ideal ratio 1.91:1, 5MB max. (eg: 1640px x "
|
2408 |
+
"856px or 3280px x 1712px for retina screens)"
|
2409 |
msgstr ""
|
2410 |
|
2411 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:700
|
2412 |
+
msgid "Click on the tags below to insert variables into your site name."
|
2413 |
msgstr ""
|
2414 |
|
2415 |
+
#: src/vue/pages/post-settings/views/Facebook.vue:254
|
2416 |
+
msgid "Article Section"
|
2417 |
msgstr ""
|
2418 |
|
2419 |
+
#: src/vue/pages/post-settings/views/Facebook.vue:255
|
2420 |
+
msgid "Article Tags"
|
2421 |
msgstr ""
|
2422 |
|
2423 |
+
#: src/vue/pages/post-settings/views/Facebook.vue:256
|
2424 |
+
msgid "Press enter to create an article tag"
|
2425 |
msgstr ""
|
2426 |
|
2427 |
+
#: src/vue/pages/post-settings/views/Facebook.vue:264
|
2428 |
+
msgid "Default"
|
2429 |
msgstr ""
|
2430 |
|
2431 |
+
#: src/vue/pages/post-settings/views/Facebook.vue:264
|
2432 |
+
msgid "Default Object Type (Set in Social Networks)"
|
2433 |
msgstr ""
|
2434 |
|
2435 |
+
#: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:71
|
2436 |
+
msgid "Schema Type"
|
2437 |
msgstr ""
|
2438 |
|
2439 |
+
#: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:72
|
2440 |
+
msgid "Article Type"
|
2441 |
msgstr ""
|
2442 |
|
2443 |
+
#: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:74
|
2444 |
+
msgid "Blog Post"
|
2445 |
msgstr ""
|
2446 |
|
2447 |
+
#: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:75
|
2448 |
+
msgid "News Article"
|
|
|
|
|
|
|
2449 |
msgstr ""
|
2450 |
|
2451 |
+
#: src/vue/plugins/truSEO/researches/helpers/getKeyphraseType.js:6
|
2452 |
+
msgid "Focus keyphrase"
|
|
|
2453 |
msgstr ""
|
2454 |
|
2455 |
+
#: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:290
|
2456 |
+
msgid "Keyphrase"
|
2457 |
msgstr ""
|
2458 |
|
2459 |
+
# Translators: 1 - Semrush.
|
2460 |
+
#: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:286
|
2461 |
+
msgid "Additional Keyphrases by %1$s"
|
2462 |
msgstr ""
|
2463 |
|
2464 |
+
#: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:287
|
2465 |
+
msgid "Add Focus Keyphrase"
|
2466 |
msgstr ""
|
2467 |
|
2468 |
+
#: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:288
|
2469 |
+
msgid "Get Additional Keyphrases"
|
2470 |
msgstr ""
|
2471 |
|
2472 |
+
#: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:289
|
2473 |
+
msgid "Show Results For:"
|
2474 |
msgstr ""
|
2475 |
|
2476 |
+
#: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:291
|
2477 |
+
msgid "Volume"
|
2478 |
msgstr ""
|
2479 |
|
2480 |
+
#: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:292
|
2481 |
+
msgid "Trend"
|
|
|
2482 |
msgstr ""
|
2483 |
|
2484 |
+
#: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:293
|
2485 |
+
msgid "Add Keyphrase"
|
|
|
2486 |
msgstr ""
|
2487 |
|
2488 |
+
#: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:294
|
2489 |
+
msgid "Remove Keyphrase"
|
|
|
|
|
2490 |
msgstr ""
|
2491 |
|
2492 |
+
#: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:295
|
2493 |
+
msgid "No results"
|
2494 |
+
msgstr ""
|
2495 |
+
|
2496 |
+
# Translators: 1 - Plugin short name + Pro "AIOSEO Pro", 2 - Semrush, 3 - Link to learn more.
|
2497 |
+
#: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:297
|
2498 |
msgid ""
|
2499 |
+
"Analyzing your content with %1$s keywords is only available to licensed "
|
2500 |
+
"%2$s users. %3$s"
|
2501 |
msgstr ""
|
2502 |
|
2503 |
+
# Translators: 1 - Plugin short name "AIOSEO", 2 - Semrush.
|
2504 |
+
#: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:299
|
2505 |
+
msgid ""
|
2506 |
+
"%1$s integrates directly with %2$s to provide you with actionable "
|
2507 |
+
"keyphrases to help you write better content."
|
2508 |
msgstr ""
|
2509 |
|
2510 |
+
#: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:300
|
2511 |
+
msgid "To use this feature, first add a focus keyphrase."
|
2512 |
msgstr ""
|
2513 |
|
2514 |
+
#: src/vue/components/common/core/Keyphrase.vue:44
|
2515 |
+
#: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:302
|
2516 |
+
#: src/vue/pages/redirects/views/pro/Logs.vue:140
|
2517 |
+
#: src/vue/pages/redirects/views/pro/Logs404.vue:195
|
2518 |
+
msgid "Delete"
|
2519 |
msgstr ""
|
2520 |
|
2521 |
+
# Translators: 1 - Semrush.
|
2522 |
+
#: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:304
|
2523 |
+
msgid "Get Additional Keyphrases with %1$s!"
|
2524 |
msgstr ""
|
2525 |
|
2526 |
+
# Translators: 1 - Opening link tag, 2 - Closing link tag, 3 - Semrush.
|
2527 |
+
#: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:306
|
2528 |
+
msgid "%1$sA valid license key is required%2$s in order to connect with %3$s."
|
2529 |
msgstr ""
|
2530 |
|
2531 |
+
#: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:325
|
2532 |
+
msgid "You have exceeded the limit for requests. Please try again later."
|
2533 |
msgstr ""
|
2534 |
|
2535 |
+
#: src/vue/pages/post-settings/views/partialsGeneral/focusKeyphrase.vue:328
|
2536 |
+
msgid "An error occurred while fetching keyphrases. Please try again later."
|
|
|
2537 |
msgstr ""
|
2538 |
|
2539 |
+
#: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:75
|
2540 |
+
msgid "Add Additional Keyphrases"
|
2541 |
msgstr ""
|
2542 |
|
2543 |
+
#: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:76
|
2544 |
+
msgid "Improve your SEO rankings with additional keyphrases."
|
2545 |
msgstr ""
|
2546 |
|
2547 |
+
# Translators: 1 - "Pro" string, 2 - "Learn more link".
|
2548 |
+
#: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:79
|
2549 |
+
msgid "Multiple Keyphrases is a %1$s feature. %2$s"
|
2550 |
msgstr ""
|
2551 |
|
2552 |
+
#: src/vue/pages/post-settings/views/partialsGeneral/additionalKeyphrases.vue:81
|
2553 |
+
msgid "Click here to get"
|
2554 |
msgstr ""
|
2555 |
|
2556 |
+
#: src/vue/components/common/notifications/Review.vue:114
|
2557 |
+
msgid "Dismiss"
|
2558 |
msgstr ""
|
2559 |
|
2560 |
+
#: src/vue/components/common/notifications/Review.vue:115
|
2561 |
+
msgid "Yes, I love it!"
|
2562 |
msgstr ""
|
2563 |
|
2564 |
+
#: src/vue/components/common/notifications/Review.vue:116
|
2565 |
+
msgid "Not Really..."
|
|
|
|
|
2566 |
msgstr ""
|
2567 |
|
2568 |
+
#: src/vue/components/common/notifications/Review.vue:117
|
2569 |
+
msgid "Ok, you deserve it"
|
2570 |
msgstr ""
|
2571 |
|
2572 |
+
#: src/vue/components/common/notifications/Review.vue:118
|
2573 |
+
msgid "Nope, maybe later"
|
2574 |
msgstr ""
|
2575 |
|
2576 |
+
#: src/vue/components/common/notifications/Review.vue:119
|
2577 |
+
msgid "Give feedback"
|
|
|
2578 |
msgstr ""
|
2579 |
|
2580 |
+
#: src/vue/components/common/notifications/Review.vue:120
|
2581 |
+
msgid "No thanks"
|
|
|
|
|
|
|
2582 |
msgstr ""
|
2583 |
|
2584 |
+
#: src/vue/components/common/notifications/Review.vue:129
|
2585 |
+
msgid "That's Awesome!"
|
|
|
2586 |
msgstr ""
|
2587 |
|
2588 |
+
#: src/vue/components/common/notifications/Review.vue:131
|
2589 |
+
msgid "Help us improve"
|
|
|
2590 |
msgstr ""
|
2591 |
|
2592 |
+
# Translators: 1 = The plugin short name ("AIOSEO")
|
2593 |
+
#: src/vue/components/common/notifications/Review.vue:134
|
2594 |
+
msgid "Are you enjoying %1$s?"
|
2595 |
msgstr ""
|
2596 |
|
2597 |
+
#: src/vue/components/common/notifications/Review.vue:140
|
2598 |
msgid ""
|
2599 |
+
"Could you please do me a BIG favor and give it a 5-star rating on WordPress "
|
2600 |
+
"to help us spread the word and boost our motivation?"
|
2601 |
msgstr ""
|
2602 |
|
2603 |
+
# Translators: The plugin name ("All in One SEO").
|
2604 |
+
#: src/vue/components/common/notifications/Review.vue:143
|
2605 |
+
msgid "CEO of %1$s"
|
2606 |
msgstr ""
|
2607 |
|
2608 |
+
# Translators: The plugin name ("All in One SEO").
|
2609 |
+
#: src/vue/components/common/notifications/Review.vue:147
|
2610 |
+
msgid ""
|
2611 |
+
"We're sorry to hear you aren't enjoying %1$s. We would love a chance to "
|
2612 |
+
"improve. Could you take a minute and let us know what we can do better?"
|
2613 |
msgstr ""
|
2614 |
|
2615 |
+
#: src/vue/components/common/html-sitemap/ExcludeObjects.vue:94
|
2616 |
+
msgid "Type to search..."
|
2617 |
msgstr ""
|
2618 |
|
2619 |
+
#: src/vue/components/common/html-sitemap/ExcludeObjects.vue:95
|
2620 |
+
msgid "Begin typing a post ID, title or slug to search..."
|
2621 |
msgstr ""
|
2622 |
|
2623 |
+
#: src/vue/components/common/html-sitemap/ExcludeObjects.vue:96
|
2624 |
+
msgid "Begin typing a term ID or name to search..."
|
2625 |
msgstr ""
|
2626 |
|
2627 |
+
#: src/vue/components/common/html-sitemap/ExcludeObjects.vue:97
|
2628 |
+
msgid "No results found for your search. Try again!"
|
2629 |
msgstr ""
|
2630 |
|
2631 |
+
#: src/vue/components/common/html-sitemap/ExcludeObjects.vue:98
|
2632 |
+
msgid "Clear"
|
2633 |
msgstr ""
|
2634 |
|
2635 |
+
#: src/vue/components/common/html-sitemap/ExcludeObjects.vue:99
|
2636 |
+
msgid "ID"
|
2637 |
msgstr ""
|
2638 |
|
2639 |
+
# Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Addons".
|
2640 |
+
#: src/vue/components/common/notifications/UnlicensedAddons.vue:49
|
2641 |
+
msgid "%1$s %2$s Not Configured Properly"
|
2642 |
msgstr ""
|
2643 |
|
2644 |
+
#: src/vue/components/common/notifications/UnlicensedAddons.vue:51
|
2645 |
+
msgid "Upgrade"
|
2646 |
msgstr ""
|
2647 |
|
2648 |
+
#: src/vue/components/common/core/PostTypeOptions.vue:80
|
2649 |
+
msgid "Label:"
|
|
|
2650 |
msgstr ""
|
2651 |
|
2652 |
+
#: src/vue/components/common/core/PostTypeOptions.vue:81
|
2653 |
+
msgid "Slug:"
|
|
|
2654 |
msgstr ""
|
2655 |
|
2656 |
+
#: src/vue/pages/sitemaps/views/HtmlSitemap.vue:278
|
2657 |
+
msgid "Display HTML Sitemap"
|
2658 |
msgstr ""
|
2659 |
|
2660 |
+
#: src/vue/components/common/html-sitemap/DisplayInfo.vue:140
|
2661 |
+
msgid "Dedicated Page"
|
2662 |
msgstr ""
|
2663 |
|
2664 |
+
#: src/vue/components/common/html-sitemap/DisplayInfo.vue:141
|
2665 |
+
msgid "e.g. %1$s"
|
2666 |
msgstr ""
|
2667 |
|
2668 |
+
#: src/vue/components/common/html-sitemap/DisplayInfo.vue:142
|
2669 |
+
msgid "Open HTML Sitemap"
|
2670 |
msgstr ""
|
2671 |
|
2672 |
+
#: src/vue/components/common/html-sitemap/DisplayInfo.vue:143
|
2673 |
+
msgid ""
|
2674 |
+
"The page that you have entered already exists. Please enter a page with a "
|
2675 |
+
"unique slug."
|
2676 |
msgstr ""
|
2677 |
|
2678 |
+
#: src/vue/components/common/html-sitemap/DisplayInfo.vue:144
|
2679 |
+
msgid ""
|
2680 |
+
"The following shortcode attributes can be used to override the default "
|
2681 |
+
"settings:"
|
2682 |
msgstr ""
|
2683 |
|
2684 |
+
#: src/vue/components/common/html-sitemap/DisplayInfo.vue:145
|
2685 |
+
msgid ""
|
2686 |
+
"The function accepts an associative array with the following arguments that "
|
2687 |
+
"can be used to override the default settings:"
|
2688 |
msgstr ""
|
2689 |
|
2690 |
+
#: src/vue/components/common/core/DisplayInfo.vue:116
|
2691 |
+
#: src/vue/pages/settings/views/Advanced.vue:283
|
2692 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:706
|
2693 |
+
msgid "Advanced Settings"
|
2694 |
msgstr ""
|
2695 |
|
2696 |
+
#: src/vue/components/common/html-sitemap/DisplayInfo.vue:147
|
2697 |
+
msgid "To view the sitemap, enter a URL and save changes."
|
|
|
2698 |
msgstr ""
|
2699 |
|
2700 |
+
#: src/vue/components/common/html-sitemap/DisplayInfo.vue:148
|
2701 |
+
msgid "To view the new sitemap, first save changes."
|
2702 |
msgstr ""
|
2703 |
|
2704 |
+
#: src/vue/components/common/html-sitemap/DisplayInfo.vue:153
|
2705 |
+
msgid "The post types (by slug, comma-separated) that are included in the sitemap."
|
|
|
2706 |
msgstr ""
|
2707 |
|
2708 |
+
#: src/vue/components/common/html-sitemap/DisplayInfo.vue:157
|
2709 |
+
msgid "The taxonomies (by slug, comma-separated) that are included in the sitemap."
|
2710 |
msgstr ""
|
2711 |
|
2712 |
+
# Translators: 1 - The default value.
|
2713 |
+
#: src/vue/components/common/html-sitemap/DisplayInfo.vue:163
|
2714 |
+
msgid "The HTML tag that is used for the label of each section. Defaults to %1$s."
|
2715 |
msgstr ""
|
2716 |
|
2717 |
+
# Translators: 1 - The default value.
|
2718 |
+
#: src/vue/components/common/html-sitemap/DisplayInfo.vue:171
|
2719 |
+
msgid "Whether the labels should be shown or not. Defaults to %1$s."
|
2720 |
msgstr ""
|
2721 |
|
2722 |
+
#: src/vue/components/common/html-sitemap/DisplayInfo.vue:181
|
2723 |
+
msgid "Whether the publication date of posts should be shown."
|
2724 |
msgstr ""
|
2725 |
|
2726 |
+
#: src/vue/components/common/html-sitemap/DisplayInfo.vue:185
|
2727 |
+
msgid "Whether the regular sitemap or compact date archive sitemap is output."
|
2728 |
msgstr ""
|
2729 |
|
2730 |
+
# Translators: 1 - HTML code opening tag, 2 - HTML code closing tag.
|
2731 |
+
#: src/vue/components/common/html-sitemap/DisplayInfo.vue:192
|
2732 |
+
msgid "The sort direction. The supported values are %1$s and %2$s."
|
2733 |
msgstr ""
|
2734 |
|
2735 |
+
# Translators: 1 - HTML code opening tag, 2 - HTML code closing tag.
|
2736 |
+
#: src/vue/components/common/html-sitemap/DisplayInfo.vue:201
|
2737 |
+
msgid "The sort order. The supported values are %1$s, %2$s, %3$s and %4$s."
|
2738 |
msgstr ""
|
2739 |
|
2740 |
+
#: src/vue/components/common/core/SiteScoreAnalyze.vue:62
|
2741 |
+
msgid "An error occurred while analyzing your site."
|
2742 |
msgstr ""
|
2743 |
|
2744 |
+
#: src/vue/components/common/core/SiteScoreCompetitor.vue:76
|
2745 |
+
msgid "Warnings"
|
2746 |
msgstr ""
|
2747 |
|
2748 |
+
#: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:131
|
2749 |
+
msgid "The URL provided is invalid."
|
2750 |
msgstr ""
|
2751 |
|
2752 |
+
#: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:135
|
2753 |
+
msgid "We were unable to parse the content for this site."
|
|
|
|
|
2754 |
msgstr ""
|
2755 |
|
2756 |
+
# Translators: 1 - The plugin short name ('AIOSEO').
|
2757 |
+
#: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:140
|
2758 |
+
msgid "Your site is not connected. Please connect to %1$s, then try again."
|
2759 |
msgstr ""
|
2760 |
|
2761 |
+
#: src/vue/components/common/core/SeoSiteAnalysisResults.vue:107
|
2762 |
+
msgid "Advanced SEO"
|
|
|
|
|
|
|
2763 |
msgstr ""
|
2764 |
|
2765 |
+
#: src/vue/components/common/core/SeoSiteAnalysisResults.vue:108
|
2766 |
+
msgid "Performance"
|
2767 |
msgstr ""
|
2768 |
|
2769 |
+
#: src/vue/components/common/core/SeoSiteAnalysisResults.vue:110
|
2770 |
+
msgid "Keywords:"
|
|
|
|
|
|
|
|
|
2771 |
msgstr ""
|
2772 |
|
2773 |
+
#: src/vue/components/common/core/SingleRobotsMeta.vue:163
|
2774 |
+
msgid "Robots meta:"
|
2775 |
msgstr ""
|
2776 |
|
2777 |
+
#: src/vue/components/common/core/SingleRobotsMeta.vue:164
|
2778 |
+
msgid "Max Snippet"
|
2779 |
msgstr ""
|
2780 |
|
2781 |
+
#: src/vue/components/common/core/SingleRobotsMeta.vue:165
|
2782 |
+
msgid "Max Video Preview"
|
|
|
|
|
|
|
2783 |
msgstr ""
|
2784 |
|
2785 |
+
#: src/vue/components/common/core/SingleRobotsMeta.vue:166
|
2786 |
+
msgid "Max Image Preview"
|
|
|
2787 |
msgstr ""
|
2788 |
|
2789 |
+
#: src/vue/components/common/core/SingleRobotsMeta.vue:167
|
2790 |
+
msgid "Standard"
|
|
|
|
|
|
|
2791 |
msgstr ""
|
2792 |
|
2793 |
+
#: src/vue/components/common/core/SingleRobotsMeta.vue:168
|
2794 |
+
#: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:67
|
2795 |
+
#: src/vue/pages/settings/views/Advanced.vue:306
|
2796 |
+
msgid "None"
|
|
|
2797 |
msgstr ""
|
2798 |
|
2799 |
+
#: src/vue/components/common/core/SingleRobotsMeta.vue:169
|
2800 |
+
msgid "Large"
|
2801 |
msgstr ""
|
2802 |
|
2803 |
+
#: src/vue/components/common/core/SingleRobotsMeta.vue:170
|
2804 |
+
msgid "No Index"
|
2805 |
msgstr ""
|
2806 |
|
2807 |
+
#: src/vue/components/common/core/SingleRobotsMeta.vue:171
|
2808 |
+
msgid "No Follow"
|
|
|
|
|
|
|
2809 |
msgstr ""
|
2810 |
|
2811 |
+
#: src/vue/components/common/core/SingleRobotsMeta.vue:172
|
2812 |
+
msgid "No Archive"
|
|
|
|
|
|
|
|
|
|
|
|
|
2813 |
msgstr ""
|
2814 |
|
2815 |
+
#: src/vue/components/common/core/SingleRobotsMeta.vue:173
|
2816 |
+
msgid "No Translate"
|
|
|
|
|
2817 |
msgstr ""
|
2818 |
|
2819 |
+
#: src/vue/components/common/core/SingleRobotsMeta.vue:174
|
2820 |
+
msgid "No Image Index"
|
|
|
|
|
|
|
2821 |
msgstr ""
|
2822 |
|
2823 |
+
#: src/vue/components/common/core/SingleRobotsMeta.vue:175
|
2824 |
+
msgid "No Snippet"
|
|
|
|
|
|
|
2825 |
msgstr ""
|
2826 |
|
2827 |
+
#: src/vue/components/common/core/SingleRobotsMeta.vue:176
|
2828 |
+
msgid "No ODP"
|
|
|
2829 |
msgstr ""
|
2830 |
|
2831 |
+
#: src/vue/components/common/core/RobotsMeta.vue:96
|
2832 |
+
msgid "No Index Paginated"
|
|
|
|
|
|
|
2833 |
msgstr ""
|
2834 |
|
2835 |
+
#: src/vue/components/common/core/RobotsMeta.vue:97
|
2836 |
+
msgid "No Follow Paginated"
|
2837 |
msgstr ""
|
2838 |
|
2839 |
+
#: src/vue/components/common/core/RobotsMeta.vue:98
|
2840 |
+
msgid "No Index RSS Feeds"
|
|
|
|
|
|
|
|
|
2841 |
msgstr ""
|
2842 |
|
2843 |
+
#: src/vue/components/common/core/NotificationCards.vue:59
|
2844 |
+
msgid "Great Scott! Where'd they all go?"
|
2845 |
msgstr ""
|
2846 |
|
2847 |
+
#: src/vue/components/common/core/NotificationCards.vue:60
|
2848 |
+
msgid "You have no new notifications."
|
|
|
|
|
2849 |
msgstr ""
|
2850 |
|
2851 |
+
#: src/vue/components/common/core/NotificationCards.vue:61
|
2852 |
+
msgid "See Dismissed Notifications"
|
|
|
|
|
2853 |
msgstr ""
|
2854 |
|
2855 |
+
#: src/vue/components/common/core/Notification.vue:100
|
2856 |
+
msgid "a minute ago"
|
2857 |
msgstr ""
|
2858 |
|
2859 |
+
# Translators: A number will be prepended to this string, e.g. "2 minutes ago".
|
2860 |
+
#: src/vue/components/common/core/Notification.vue:104
|
2861 |
+
msgid "minutes ago"
|
2862 |
msgstr ""
|
2863 |
|
2864 |
+
#: src/vue/components/common/core/Notification.vue:106
|
2865 |
+
msgid "a day ago"
|
2866 |
msgstr ""
|
2867 |
|
2868 |
+
# Translators: A number will be prepended to this string, e.g. "2 days ago".
|
2869 |
+
#: src/vue/components/common/core/Notification.vue:110
|
2870 |
+
msgid "days ago"
|
2871 |
msgstr ""
|
2872 |
|
2873 |
+
#: src/vue/components/common/core/Notification.vue:111
|
2874 |
+
msgid "a month ago"
|
2875 |
msgstr ""
|
2876 |
|
2877 |
+
# Translators: A number will be prepended to this string, e.g. "2 months ago".
|
2878 |
+
#: src/vue/components/common/core/Notification.vue:115
|
2879 |
+
msgid "months ago"
|
2880 |
msgstr ""
|
2881 |
|
2882 |
+
#: src/vue/components/common/core/Notification.vue:117
|
2883 |
+
msgid "a year ago"
|
2884 |
msgstr ""
|
2885 |
|
2886 |
+
# Translators: A number will be prepended to this string, e.g. "2 years ago".
|
2887 |
+
#: src/vue/components/common/core/Notification.vue:121
|
2888 |
+
msgid "years ago"
|
2889 |
msgstr ""
|
2890 |
|
2891 |
+
#: src/vue/components/common/core/Notification.vue:99
|
2892 |
+
msgid "a few seconds ago"
|
|
|
2893 |
msgstr ""
|
2894 |
|
2895 |
+
#: src/vue/components/common/core/AddRedirection.vue:239
|
2896 |
+
#: src/vue/components/common/core/Main.vue:80
|
2897 |
+
msgid "Save Changes"
|
2898 |
msgstr ""
|
2899 |
|
2900 |
+
#: src/vue/components/common/core/PostTypeOptions.vue:82
|
2901 |
+
msgid "No post types available."
|
2902 |
msgstr ""
|
2903 |
|
2904 |
+
#: src/vue/components/common/core/PostTypeOptions.vue:83
|
2905 |
+
msgid "No taxonomies available."
|
|
|
|
|
|
|
|
|
2906 |
msgstr ""
|
2907 |
|
2908 |
+
#: src/vue/components/common/core/PostTypeOptions.vue:84
|
2909 |
+
msgid ""
|
2910 |
+
"All post types are set to noindex or your site does not have any post types "
|
2911 |
+
"registered that are supported by this feature."
|
2912 |
msgstr ""
|
2913 |
|
2914 |
+
#: src/vue/components/common/core/PostTypeOptions.vue:85
|
|
|
2915 |
msgid ""
|
2916 |
+
"All taxonomies are set to noindex or your site does not have any taxonomies "
|
2917 |
+
"registered that are supported by this feature."
|
2918 |
msgstr ""
|
2919 |
|
2920 |
+
#: src/vue/components/common/core/PriorityScore.vue:66
|
2921 |
+
msgid "Home Page"
|
2922 |
msgstr ""
|
2923 |
|
2924 |
+
#: src/vue/components/common/core/PriorityScore.vue:67
|
2925 |
+
msgid "Archive Pages"
|
|
|
|
|
|
|
2926 |
msgstr ""
|
2927 |
|
2928 |
+
#: src/vue/components/common/core/PriorityScore.vue:68
|
2929 |
+
msgid "Author Pages"
|
2930 |
msgstr ""
|
2931 |
|
2932 |
+
#: src/vue/components/common/core/SettingsSeparator.vue:101
|
2933 |
+
msgid "Custom separator:"
|
|
|
|
|
|
|
2934 |
msgstr ""
|
2935 |
|
2936 |
+
#: src/vue/components/common/core/SettingsSeparator.vue:102
|
2937 |
+
msgid "Show More"
|
2938 |
msgstr ""
|
2939 |
|
2940 |
+
#: src/vue/components/common/core/SettingsSeparator.vue:103
|
2941 |
+
msgid "Show Less"
|
|
|
|
|
|
|
2942 |
msgstr ""
|
2943 |
|
2944 |
+
#: src/vue/components/common/core/Notifications.vue:94
|
2945 |
+
msgid "Dismissed Notifications"
|
|
|
|
|
|
|
|
|
2946 |
msgstr ""
|
2947 |
|
2948 |
+
#: src/vue/pages/dashboard/views/Main.vue:239
|
2949 |
+
msgid "Dismiss All"
|
2950 |
msgstr ""
|
2951 |
|
2952 |
+
#: src/vue/components/common/core/HtmlTagsEditor.vue:100
|
2953 |
+
msgid "Click on the tags below to insert variables into your template."
|
2954 |
msgstr ""
|
2955 |
|
2956 |
+
#: src/vue/components/common/core/HtmlTagsEditor.vue:119
|
2957 |
+
msgid "View all tags"
|
2958 |
msgstr ""
|
2959 |
|
2960 |
+
#: src/vue/components/common/core/Help.vue:153
|
2961 |
+
msgid "Close"
|
2962 |
msgstr ""
|
2963 |
|
2964 |
+
#: src/vue/components/common/base/WpTable.vue:324
|
2965 |
+
#: src/vue/components/common/core/Help.vue:154
|
2966 |
+
msgid "Search"
|
2967 |
msgstr ""
|
2968 |
|
2969 |
+
#: src/vue/components/common/core/Help.vue:155
|
2970 |
+
msgid "View All"
|
2971 |
msgstr ""
|
2972 |
|
2973 |
+
#: src/vue/components/common/core/Help.vue:156
|
2974 |
+
msgid "Docs"
|
2975 |
msgstr ""
|
2976 |
|
2977 |
+
#: src/vue/components/common/core/Help.vue:157
|
2978 |
+
msgid "View Documentation"
|
2979 |
msgstr ""
|
2980 |
|
2981 |
+
# Translators: 1 - The plugin short name ("AIOEO").
|
2982 |
+
#: src/vue/components/common/core/Help.vue:159
|
2983 |
+
msgid "Browse documentation, reference material, and tutorials for %1$s."
|
2984 |
msgstr ""
|
2985 |
|
2986 |
+
#: src/vue/components/common/core/Help.vue:160
|
2987 |
+
msgid "View All Documentation"
|
2988 |
msgstr ""
|
2989 |
|
2990 |
+
#: src/vue/components/common/core/Help.vue:161
|
2991 |
+
msgid "Get Support"
|
|
|
|
|
|
|
2992 |
msgstr ""
|
2993 |
|
2994 |
+
#: src/vue/components/common/core/Help.vue:162
|
2995 |
+
msgid "Submit a ticket and our world class support team will be in touch soon."
|
|
|
|
|
2996 |
msgstr ""
|
2997 |
|
2998 |
+
#: src/vue/components/common/core/Help.vue:163
|
2999 |
+
msgid "Submit a Support Ticket"
|
3000 |
msgstr ""
|
3001 |
|
3002 |
+
#: src/vue/components/common/core/FeatureCard.vue:128
|
3003 |
+
msgid "Upgrade to Pro"
|
3004 |
msgstr ""
|
3005 |
|
3006 |
+
#: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:68
|
3007 |
+
msgid "Refresh Results"
|
3008 |
msgstr ""
|
3009 |
|
3010 |
+
#: src/vue/components/common/core/SiteScoreCompetitor.vue:81
|
3011 |
+
msgid "Mobile Snapshot"
|
|
|
|
|
|
|
|
|
3012 |
msgstr ""
|
3013 |
|
3014 |
+
#: src/vue/components/common/core/SiteScoreAnalyze.vue:57
|
3015 |
+
msgid "Your Overall Site Score"
|
3016 |
msgstr ""
|
3017 |
|
3018 |
+
# Translators: 1 - Opening bold HTML tag. 2 - Closing bold HTML tag.
|
3019 |
+
#: src/vue/components/common/core/SiteScoreAnalyze.vue:59
|
3020 |
+
msgid "A very good score is between %1$s60 and 80%2$s."
|
3021 |
msgstr ""
|
3022 |
|
3023 |
+
# Translators: 1 - Opening bold HTML tag. 2 - Closing bold HTML tag.
|
3024 |
+
#: src/vue/components/common/core/SiteScoreAnalyze.vue:61
|
3025 |
+
msgid "For best results, you should strive for %1$s70 and above%2$s."
|
|
|
|
|
3026 |
msgstr ""
|
3027 |
|
3028 |
+
#: src/vue/components/common/core/SiteScoreAnalyze.vue:68
|
3029 |
+
msgid "Read the Ultimate WordPress SEO Guide"
|
|
|
3030 |
msgstr ""
|
3031 |
|
3032 |
+
#: src/vue/components/common/core/SiteScore.vue:45
|
3033 |
+
msgid "Analyzing..."
|
|
|
|
|
|
|
3034 |
msgstr ""
|
3035 |
|
3036 |
+
#: src/vue/components/common/core/SocialProfiles.vue:124
|
3037 |
+
msgid "Your Facebook URL is invalid. Please check the format and try again."
|
|
|
|
|
|
|
3038 |
msgstr ""
|
3039 |
|
3040 |
+
#: src/vue/components/common/core/SocialProfiles.vue:135
|
3041 |
+
msgid "Your Twitter URL is invalid. Please check the format and try again."
|
3042 |
msgstr ""
|
3043 |
|
3044 |
+
#: src/vue/components/common/core/SocialProfiles.vue:146
|
3045 |
+
msgid "Your Instagram URL is invalid. Please check the format and try again."
|
|
|
3046 |
msgstr ""
|
3047 |
|
3048 |
+
#: src/vue/components/common/core/SocialProfiles.vue:157
|
3049 |
+
msgid "Your Pinterest URL is invalid. Please check the format and try again."
|
|
|
|
|
3050 |
msgstr ""
|
3051 |
|
3052 |
+
#: src/vue/components/common/core/SocialProfiles.vue:168
|
3053 |
+
msgid "Your YouTube URL is invalid. Please check the format and try again."
|
|
|
3054 |
msgstr ""
|
3055 |
|
3056 |
+
#: src/vue/components/common/core/SocialProfiles.vue:179
|
3057 |
+
msgid "Your LinkedIn URL is invalid. Please check the format and try again."
|
|
|
3058 |
msgstr ""
|
3059 |
|
3060 |
+
#: src/vue/components/common/core/SocialProfiles.vue:190
|
3061 |
+
msgid "Your Tumblr URL is invalid. Please check the format and try again."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3062 |
msgstr ""
|
3063 |
|
3064 |
+
#: src/vue/components/common/core/SocialProfiles.vue:201
|
3065 |
+
msgid "Your Yelp URL is invalid. Please check the format and try again."
|
3066 |
msgstr ""
|
3067 |
|
3068 |
+
#: src/vue/components/common/core/SocialProfiles.vue:212
|
3069 |
+
msgid "Your SoundCloud URL is invalid. Please check the format and try again."
|
|
|
|
|
|
|
3070 |
msgstr ""
|
3071 |
|
3072 |
+
#: src/vue/components/common/core/SocialProfiles.vue:223
|
3073 |
+
msgid "Your Wikipedia URL is invalid. Please check the format and try again."
|
3074 |
msgstr ""
|
3075 |
|
3076 |
+
#: src/vue/components/common/core/SocialProfiles.vue:234
|
3077 |
+
msgid "Your MySpace URL is invalid. Please check the format and try again."
|
3078 |
msgstr ""
|
3079 |
|
3080 |
+
#: src/vue/components/common/core/SocialProfiles.vue:241
|
3081 |
+
msgid "Use the same username for multiple social networks"
|
3082 |
msgstr ""
|
3083 |
|
3084 |
+
#: src/vue/components/common/core/SocialProfiles.vue:242
|
3085 |
+
msgid "Your Username:"
|
3086 |
msgstr ""
|
3087 |
|
3088 |
+
#: src/vue/components/common/core/GettingStarted.vue:83
|
3089 |
+
msgid "How to Get Started"
|
3090 |
msgstr ""
|
3091 |
|
3092 |
+
# Translators: 1 - The plugin name ("All in One SEO").
|
3093 |
+
#: src/vue/components/common/core/GettingStarted.vue:85
|
3094 |
+
msgid "Welcome to %1$s"
|
3095 |
msgstr ""
|
3096 |
|
3097 |
+
# Translators: 1 - The plugin name ("All in One SEO").
|
3098 |
+
#: src/vue/components/common/core/GettingStarted.vue:87
|
3099 |
msgid ""
|
3100 |
+
"Thank you for choosing the best WordPress SEO plugin. %1$s default settings "
|
3101 |
+
"works great out of the box. We created the setup wizard to guide you "
|
3102 |
+
"through some important configuration settings & custom-tailored SEO best "
|
3103 |
+
"practices for your site to help you improve rankings."
|
3104 |
msgstr ""
|
3105 |
|
3106 |
+
#: src/vue/components/common/core/GettingStarted.vue:88
|
3107 |
+
msgid "Launch the Setup Wizard"
|
|
|
3108 |
msgstr ""
|
3109 |
|
3110 |
+
#: src/vue/components/common/core/GettingStarted.vue:89
|
3111 |
+
msgid "Read the Setup Guide"
|
|
|
3112 |
msgstr ""
|
3113 |
|
3114 |
+
#: src/vue/components/common/core/FeatureCard.vue:125
|
3115 |
+
#: src/vue/pages/about/views/AboutUs.vue:136
|
3116 |
+
msgid "Activated"
|
|
|
3117 |
msgstr ""
|
3118 |
|
3119 |
+
#: src/vue/components/common/core/FeatureCard.vue:126
|
3120 |
+
#: src/vue/pages/about/views/AboutUs.vue:137
|
3121 |
+
msgid "Deactivated"
|
3122 |
msgstr ""
|
3123 |
|
3124 |
+
#: src/vue/components/common/core/FeatureCard.vue:127
|
3125 |
+
#: src/vue/pages/about/views/AboutUs.vue:138
|
3126 |
+
msgid "Not Installed"
|
3127 |
msgstr ""
|
3128 |
|
3129 |
+
#: src/vue/components/common/core/FeatureCard.vue:129
|
3130 |
+
msgid "Upgrade Your Plan"
|
3131 |
msgstr ""
|
3132 |
|
3133 |
+
#: src/vue/components/common/core/FeatureCard.vue:130
|
3134 |
+
#: src/vue/pages/about/views/AboutUs.vue:132
|
3135 |
+
msgid "Manage"
|
3136 |
msgstr ""
|
3137 |
|
3138 |
+
#: src/vue/components/common/core/AddRedirectionUrlResults.vue:52
|
3139 |
+
msgid "DRAFT"
|
3140 |
msgstr ""
|
3141 |
|
3142 |
+
#: src/vue/components/common/core/AddRedirectionUrlResults.vue:53
|
3143 |
+
msgid "PENDING"
|
3144 |
msgstr ""
|
3145 |
|
3146 |
+
#: src/vue/components/common/core/AddRedirectionUrlResults.vue:54
|
3147 |
+
msgid "FUTURE"
|
3148 |
msgstr ""
|
3149 |
|
3150 |
+
#: src/vue/components/common/core/AdditionalPages.vue:100
|
3151 |
+
msgid "Last Modified"
|
3152 |
msgstr ""
|
3153 |
|
3154 |
+
#: src/vue/components/common/core/AdditionalPages.vue:102
|
3155 |
+
msgid "Add New"
|
3156 |
msgstr ""
|
3157 |
|
3158 |
+
# Translators: 1 - An example URL (e.g. https://aioseo.com/example).
|
3159 |
+
#: src/vue/components/common/core/AdditionalPages.vue:96
|
3160 |
+
msgid "Enter a page URL, e.g. %1$s"
|
3161 |
msgstr ""
|
3162 |
|
3163 |
+
#: src/vue/components/common/core/AdditionalPages.vue:97
|
3164 |
+
msgid "Page URL"
|
3165 |
msgstr ""
|
3166 |
|
3167 |
+
# Translators: 1 - Learn more link.
|
3168 |
+
#: src/vue/pages/settings/views/WebmasterTools.vue:260
|
3169 |
+
msgid "Your user account role does not have access to edit this field. %1$s"
|
3170 |
msgstr ""
|
3171 |
|
3172 |
+
#: src/vue/components/common/core/AddRedirectionCustomRules.vue:109
|
3173 |
+
msgid "Custom Rules"
|
3174 |
msgstr ""
|
3175 |
|
3176 |
+
#: src/vue/components/common/core/AddRedirectionCustomRules.vue:110
|
3177 |
+
msgid "Select Rule"
|
3178 |
msgstr ""
|
3179 |
|
3180 |
+
#: src/vue/components/common/core/AddRedirectionCustomRules.vue:112
|
3181 |
+
msgid "Add Custom Rule"
|
3182 |
msgstr ""
|
3183 |
|
3184 |
+
#: src/vue/components/common/core/AddRedirectionCustomRules.vue:113
|
3185 |
+
msgid "Regex"
|
3186 |
msgstr ""
|
3187 |
|
3188 |
+
#: src/vue/components/common/core/AddRedirectionCustomRules.vue:114
|
3189 |
+
msgid "Select a Value or Add a New One"
|
3190 |
msgstr ""
|
3191 |
|
3192 |
+
#: src/vue/components/common/core/AddRedirectionCustomRules.vue:115
|
3193 |
+
msgid "Key"
|
|
|
|
|
3194 |
msgstr ""
|
3195 |
|
3196 |
+
#: src/vue/components/common/core/AddRedirectionCustomRules.vue:116
|
3197 |
+
msgid "Value"
|
|
|
|
|
3198 |
msgstr ""
|
3199 |
|
3200 |
+
#: src/vue/components/common/core/AddRedirectionCustomRules.vue:123
|
3201 |
+
msgid "Select Status"
|
|
|
|
|
3202 |
msgstr ""
|
3203 |
|
3204 |
+
#: src/vue/components/common/core/AddRedirectionCustomRules.vue:134
|
3205 |
+
msgid "Select Roles"
|
|
|
|
|
3206 |
msgstr ""
|
3207 |
|
3208 |
+
#: src/vue/components/common/core/AddRedirectionCustomRules.vue:165
|
3209 |
+
msgid "Learn more"
|
|
|
|
|
3210 |
msgstr ""
|
3211 |
|
3212 |
+
#: src/vue/components/common/core/AddRedirectionCustomRules.vue:178
|
3213 |
+
msgid "Enter an IP Address"
|
3214 |
msgstr ""
|
3215 |
|
3216 |
+
#: src/vue/components/common/core/AddRedirectionCustomRules.vue:186
|
3217 |
+
msgid "Enter the Server Name"
|
|
|
|
|
3218 |
msgstr ""
|
3219 |
|
3220 |
+
#: src/vue/components/common/core/AddRedirectionCustomRules.vue:199
|
3221 |
+
msgid "Enter a WordPress Filter Name"
|
3222 |
msgstr ""
|
3223 |
|
3224 |
+
#: src/vue/components/common/core/AddRedirectionCustomRules.vue:207
|
3225 |
+
msgid "Enter a Locale Code, e.g.: en_GB, es_ES"
|
|
|
3226 |
msgstr ""
|
3227 |
|
3228 |
+
#: src/vue/components/common/core/ApiBar.vue:15
|
3229 |
+
msgid "Pro"
|
|
|
3230 |
msgstr ""
|
3231 |
|
3232 |
+
#: src/vue/components/common/core/ApiBar.vue:16
|
3233 |
+
msgid "Click here to learn more"
|
3234 |
msgstr ""
|
3235 |
|
3236 |
+
# Translators: 1 - The plugin name ("All in One SEO"), 2 - "upgrading to Pro".
|
3237 |
+
#: src/vue/components/common/core/ApiBar.vue:26
|
3238 |
+
msgid ""
|
3239 |
+
"%1$s relies on the WordPress Rest API and your site might have it disabled. "
|
3240 |
+
"%2$s."
|
3241 |
msgstr ""
|
3242 |
|
3243 |
+
#: src/vue/components/common/core/AddRedirection.vue:231
|
3244 |
+
msgid "Redirect Type:"
|
3245 |
msgstr ""
|
3246 |
|
3247 |
+
#: src/vue/pages/redirects/views/pro/Redirects.vue:263
|
3248 |
+
msgid "Target URL"
|
3249 |
msgstr ""
|
3250 |
|
3251 |
+
#: src/vue/components/common/core/AddRedirection.vue:233
|
3252 |
+
msgid "Enter a URL or start by typing a page or post title, slug or ID."
|
3253 |
msgstr ""
|
3254 |
|
3255 |
+
#: src/vue/components/common/core/AddRedirection.vue:234
|
3256 |
+
msgid "Add URL"
|
|
|
3257 |
msgstr ""
|
3258 |
|
3259 |
+
# Translators: 1 - Oening link tag, 2 - Closing link tag.
|
3260 |
+
#: src/vue/components/common/core/AddRedirection.vue:236
|
3261 |
msgid ""
|
3262 |
+
"Enter a relative URL to redirect from or start by typing in page or post "
|
3263 |
+
"title, slug or ID. You can also use regex (%1$s)"
|
3264 |
msgstr ""
|
3265 |
|
3266 |
+
# Translators: 1 - Oening link tag, 2 - Closing link tag.
|
3267 |
+
#: src/vue/components/common/core/AddRedirection.vue:236
|
3268 |
+
msgid "what's this?"
|
3269 |
msgstr ""
|
3270 |
|
3271 |
+
#: src/vue/components/common/core/AddRedirection.vue:238
|
3272 |
+
msgid "Query Parameters:"
|
3273 |
msgstr ""
|
3274 |
|
3275 |
+
#: src/vue/components/common/core/AddRedirection.vue:241
|
3276 |
+
msgid "An error occurred while adding your redirects. Please try again later."
|
|
|
|
|
3277 |
msgstr ""
|
3278 |
|
3279 |
+
#: src/vue/components/common/core/AddRedirection.vue:269
|
3280 |
+
msgid "Source URL's"
|
3281 |
msgstr ""
|
3282 |
|
3283 |
+
#: src/vue/pages/redirects/views/pro/Redirects.vue:259
|
3284 |
+
msgid "Source URL"
|
3285 |
msgstr ""
|
3286 |
|
3287 |
+
#: src/vue/pages/redirects/views/pro/Logs404.vue:194
|
3288 |
+
msgid "Add Redirects"
|
3289 |
msgstr ""
|
3290 |
|
3291 |
+
#: src/vue/pages/redirects/views/pro/Logs404.vue:198
|
3292 |
+
msgid "Add Redirect"
|
|
|
|
|
3293 |
msgstr ""
|
3294 |
|
3295 |
+
# Translators: 1 - Adds a html tag with an option like: <code>^</code>, 2 - Adds a html tag with an option like: <code>^</code>.
|
3296 |
+
#: src/vue/components/common/core/AddRedirection.vue:287
|
3297 |
+
msgid "Your target URL should be an absolute URL like %1$s or start with a slash."
|
3298 |
+
msgstr ""
|
|
|
3299 |
|
3300 |
+
# Translators: 1 - Adds a html tag with an option like: <code>^</code>.
|
3301 |
+
#: src/vue/components/common/core/AddRedirection.vue:296
|
3302 |
+
msgid "Your target URL contains the invalid character(s) %1$s"
|
|
|
3303 |
msgstr ""
|
3304 |
|
3305 |
+
#: src/vue/components/common/core/AddRedirection.vue:309
|
3306 |
+
msgid ""
|
3307 |
+
"Your URL appears to contain a domain inside the path: %1$s. Did you mean to "
|
3308 |
+
"use %2$s instead?"
|
3309 |
msgstr ""
|
3310 |
|
3311 |
+
#: src/vue/components/common/core/AddRedirection.vue:405
|
3312 |
+
msgid ""
|
3313 |
+
"A redirect already exists for this source URL. To make changes, edit the "
|
3314 |
+
"original instead."
|
3315 |
msgstr ""
|
3316 |
|
3317 |
+
#: src/vue/components/common/core/AddRedirection.vue:447
|
3318 |
+
msgid "Moved Permanently"
|
3319 |
msgstr ""
|
3320 |
|
3321 |
+
#: src/vue/components/common/core/AddRedirection.vue:462
|
3322 |
+
msgid ""
|
3323 |
+
"This is a duplicate of a URL you are already adding. You can only add "
|
3324 |
+
"unique source URL's."
|
3325 |
msgstr ""
|
3326 |
|
3327 |
+
#: src/vue/pages/tools/views/SystemStatus.vue:126
|
3328 |
+
msgid "Copied!"
|
3329 |
msgstr ""
|
3330 |
|
3331 |
+
#: src/vue/components/common/core/CopyBlock.vue:48
|
3332 |
+
msgid "Click to Copy"
|
3333 |
msgstr ""
|
3334 |
|
3335 |
+
#: src/vue/pages/redirects/views/pro/Settings.vue:374
|
3336 |
+
msgid "Ignore Slash"
|
3337 |
msgstr ""
|
3338 |
|
3339 |
+
#: src/vue/pages/redirects/views/pro/Settings.vue:373
|
3340 |
+
msgid "Ignore Case"
|
3341 |
msgstr ""
|
3342 |
|
3343 |
+
#: src/vue/components/common/core/AddRedirectionUrl.vue:196
|
3344 |
+
msgid "The regex syntax is invalid."
|
3345 |
msgstr ""
|
3346 |
|
3347 |
+
#: src/vue/components/common/core/AddRedirectionUrl.vue:202
|
3348 |
+
msgid "Please enter a valid relative source URL."
|
3349 |
msgstr ""
|
3350 |
|
3351 |
+
#: src/vue/components/common/core/AddRedirectionUrl.vue:206
|
3352 |
+
msgid "Permalinks are not currently supported."
|
3353 |
msgstr ""
|
3354 |
|
3355 |
+
#: src/vue/components/common/core/AddRedirectionUrl.vue:210
|
3356 |
+
msgid ""
|
3357 |
+
"This redirect is supported using the Relocate Site feature under Full Site "
|
3358 |
+
"Redirect tab."
|
3359 |
msgstr ""
|
3360 |
|
3361 |
+
#: src/vue/components/common/core/AddRedirectionUrl.vue:226
|
3362 |
+
msgid "Your source is the same as a target and this will create a loop."
|
3363 |
msgstr ""
|
3364 |
|
3365 |
+
#: src/vue/components/common/core/AddRedirectionUrl.vue:243
|
3366 |
+
msgid "Anchor values are not sent to the server and cannot be redirected."
|
3367 |
msgstr ""
|
3368 |
|
3369 |
+
# Translators: 1 - Adds a html tag with an option like: <code>Regex</code>
|
3370 |
+
#: src/vue/components/common/core/AddRedirectionUrl.vue:248
|
3371 |
+
msgid "Remember to enable the %1$s option if this is a regular expression."
|
3372 |
msgstr ""
|
3373 |
|
3374 |
+
# Translators: 1 - Adds a html tag with an option like: <code>^</code>, 2 - Adds a html tag with an option like: <code>^</code>.
|
3375 |
+
#: src/vue/components/common/core/AddRedirectionUrl.vue:254
|
3376 |
+
msgid ""
|
3377 |
+
"To prevent a greedy regular expression you can use %1$s to anchor it to the "
|
3378 |
+
"start of the URL. For example: %2$s"
|
3379 |
msgstr ""
|
3380 |
|
3381 |
+
# Translators: 1 - Adds a html tag with an option like: <code>^</code>, 2 - Adds a html tag with an option like: <code>^</code>.
|
3382 |
+
#: src/vue/components/common/core/AddRedirectionUrl.vue:259
|
3383 |
+
msgid "The caret %1$s should be at the start. For example: %2$s"
|
3384 |
msgstr ""
|
3385 |
|
3386 |
+
# Translators: 1 - Adds a html tag with an option like: <code>^/</code>
|
3387 |
+
#: src/vue/components/common/core/AddRedirectionUrl.vue:264
|
3388 |
+
msgid "The source URL should probably start with a %1$s"
|
3389 |
msgstr ""
|
3390 |
|
3391 |
+
# Translators: 1 - Adds a html tag with an option like: <code>^/</code>
|
3392 |
+
#: src/vue/components/common/core/AddRedirectionUrl.vue:269
|
3393 |
+
msgid "The dollar symbol %1$s should be at the end. For example: %2$s"
|
3394 |
msgstr ""
|
3395 |
|
3396 |
+
#: src/vue/components/common/core/AddRedirectionUrl.vue:275
|
3397 |
+
msgid ""
|
3398 |
+
"Some servers may be configured to serve file resources directly, preventing "
|
3399 |
+
"a redirect occurring."
|
3400 |
msgstr ""
|
3401 |
|
3402 |
+
#: src/vue/components/common/core/DisplayInfo.vue:112
|
3403 |
+
msgid "Shortcode"
|
3404 |
msgstr ""
|
3405 |
|
3406 |
+
#: src/vue/components/common/core/DisplayInfo.vue:113
|
3407 |
+
msgid "Gutenberg Block"
|
3408 |
msgstr ""
|
3409 |
|
3410 |
+
#: src/vue/components/common/core/DisplayInfo.vue:114
|
3411 |
+
msgid "PHP Code"
|
3412 |
msgstr ""
|
3413 |
|
3414 |
+
#: src/vue/components/common/core/DisplayInfo.vue:115
|
3415 |
+
msgid "Widget"
|
3416 |
msgstr ""
|
3417 |
|
3418 |
+
#: src/vue/components/common/core/DisplayInfo.vue:90
|
3419 |
+
msgid "Display Info"
|
3420 |
msgstr ""
|
3421 |
|
3422 |
+
#: src/vue/classes/SiteAnalysis.js:102
|
3423 |
+
msgid "No keywords were found in the page title."
|
3424 |
msgstr ""
|
3425 |
|
3426 |
+
#: src/vue/classes/SiteAnalysis.js:105
|
3427 |
+
msgid "No keywords were found in your meta description."
|
3428 |
msgstr ""
|
3429 |
|
3430 |
+
#: src/vue/classes/SiteAnalysis.js:106
|
3431 |
+
msgid "No keywords were found in the meta description."
|
3432 |
msgstr ""
|
3433 |
|
3434 |
+
#: src/vue/classes/SiteAnalysis.js:108
|
3435 |
+
msgid "Both the page title and meta description are missing keywords."
|
3436 |
msgstr ""
|
3437 |
|
3438 |
+
#: src/vue/classes/SiteAnalysis.js:112
|
3439 |
+
msgid "One or more keywords were found in the title and description of your page."
|
3440 |
msgstr ""
|
3441 |
|
3442 |
+
#: src/vue/classes/SiteAnalysis.js:113
|
3443 |
+
msgid "One or more keywords were found in the title and description of the page."
|
3444 |
msgstr ""
|
3445 |
|
3446 |
+
#: src/vue/classes/SiteAnalysis.js:129
|
3447 |
+
msgid ""
|
3448 |
+
"You need to use titles and descriptions that are attractive to users and "
|
3449 |
+
"contain your keywords. Use the keywords naturally - keyword stuffing is "
|
3450 |
+
"usually detected and will result in a lower ranking. What's more, it's "
|
3451 |
+
"pretty off-putting for potential readers, who are more likely to click on "
|
3452 |
+
"an appealing link."
|
3453 |
msgstr ""
|
3454 |
|
3455 |
+
#: src/vue/classes/SiteAnalysis.js:130
|
3456 |
+
msgid "Edit Your Page Title & Description"
|
3457 |
msgstr ""
|
3458 |
|
3459 |
+
#: src/vue/classes/SiteAnalysis.js:139
|
3460 |
+
msgid "No H1 tag was found."
|
3461 |
msgstr ""
|
3462 |
|
3463 |
+
# Translators: 1 - The number of H1 tags found.
|
3464 |
+
#: src/vue/classes/SiteAnalysis.js:142
|
3465 |
+
msgid "For the best SEO results there should be exactly one H1 tag on each page."
|
3466 |
msgstr ""
|
3467 |
|
3468 |
+
# Translators: 1 - The number of H1 tags found.
|
3469 |
+
#: src/vue/classes/SiteAnalysis.js:142
|
3470 |
+
msgid "%1$d H1 tags were found."
|
3471 |
msgstr ""
|
3472 |
|
3473 |
+
#: src/vue/classes/SiteAnalysis.js:147
|
3474 |
+
msgid "One H1 tag was found on your page."
|
3475 |
msgstr ""
|
3476 |
|
3477 |
+
#: src/vue/classes/SiteAnalysis.js:148
|
3478 |
+
msgid "One H1 tag was found on the page."
|
3479 |
msgstr ""
|
3480 |
|
3481 |
+
#: src/vue/classes/SiteAnalysis.js:154
|
3482 |
+
msgid ""
|
3483 |
+
"WordPress sites usually insert the page or post title as an H1 tag "
|
3484 |
+
"(although custom themes can change this behavior)."
|
3485 |
msgstr ""
|
3486 |
|
3487 |
+
#: src/vue/classes/SiteAnalysis.js:154
|
3488 |
+
msgid ""
|
3489 |
+
"Ensure your most important keywords appear in the H1 tag - don't force it, "
|
3490 |
+
"use them in a natural way that makes sense to human readers."
|
3491 |
msgstr ""
|
3492 |
|
3493 |
+
#: src/vue/classes/SiteAnalysis.js:154
|
3494 |
+
msgid ""
|
3495 |
+
"Because your headline plays a large role in reader engagement, it's worth "
|
3496 |
+
"spending extra time perfecting it. Many top copywriters spend hours getting "
|
3497 |
+
"their headlines just right - sometimes they spend longer on the headline "
|
3498 |
+
"than the rest of the article!"
|
3499 |
msgstr ""
|
3500 |
|
3501 |
+
#: src/vue/classes/SiteAnalysis.js:154
|
3502 |
msgid ""
|
3503 |
+
"A good headline stimulates reader interest and offers a compelling reason "
|
3504 |
+
"to read your content. It promises a believable benefit."
|
3505 |
msgstr ""
|
3506 |
|
3507 |
+
#: src/vue/classes/SiteAnalysis.js:154
|
3508 |
+
msgid ""
|
3509 |
+
"You should write as if your readers are selfish people with short attention "
|
3510 |
+
"spans (because that describes a large percentage of the world's "
|
3511 |
+
"population). Readers visit websites for selfish reasons - they're not there "
|
3512 |
+
"to make you happy."
|
3513 |
msgstr ""
|
3514 |
|
3515 |
+
#: src/vue/classes/SiteAnalysis.js:165
|
3516 |
+
msgid "No H2 tags were found on your page."
|
3517 |
msgstr ""
|
3518 |
|
3519 |
+
#: src/vue/classes/SiteAnalysis.js:166
|
3520 |
+
msgid "No H2 tags were found on the page."
|
|
|
|
|
3521 |
msgstr ""
|
3522 |
|
3523 |
+
#: src/vue/classes/SiteAnalysis.js:170
|
3524 |
+
msgid "H2 tags were found on your page."
|
|
|
|
|
|
|
3525 |
msgstr ""
|
3526 |
|
3527 |
+
#: src/vue/classes/SiteAnalysis.js:171
|
3528 |
+
msgid "H2 tags were found on the page."
|
|
|
3529 |
msgstr ""
|
3530 |
|
3531 |
+
#: src/vue/classes/SiteAnalysis.js:177
|
3532 |
msgid ""
|
3533 |
+
"Make sure you have a good balance of H2 tags to plain text in your content. "
|
3534 |
+
"Break the content down into logical sections, and use headings to introduce "
|
3535 |
+
"each new topic."
|
3536 |
msgstr ""
|
3537 |
|
3538 |
+
#: src/vue/classes/SiteAnalysis.js:177
|
3539 |
msgid ""
|
3540 |
+
"Also, try to include synonyms and relevant terminology in H2 tag text. "
|
3541 |
+
"Search engines are pretty smart - they know which words usually occur "
|
3542 |
+
"together in each niche."
|
3543 |
msgstr ""
|
3544 |
|
3545 |
+
#: src/vue/classes/SiteAnalysis.js:177
|
3546 |
+
msgid ""
|
3547 |
+
"It should be easy to include your main and supporting keywords in the H2 "
|
3548 |
+
"tags - after all, these keywords describe your content! If it's hard to "
|
3549 |
+
"work the keywords into your subheadings, it could be a sign that the "
|
3550 |
+
"keywords aren't closely related to your content."
|
3551 |
msgstr ""
|
3552 |
|
3553 |
+
#: src/vue/classes/SiteAnalysis.js:177
|
3554 |
msgid ""
|
3555 |
+
"Don't try to force keywords into sub-headings if they feel unnatural. It "
|
3556 |
+
"will send the wrong message to your readers, possibly driving them away."
|
3557 |
msgstr ""
|
3558 |
|
3559 |
+
#: src/vue/classes/SiteAnalysis.js:188
|
3560 |
+
msgid "Some images on your page have no alt attribute."
|
3561 |
msgstr ""
|
3562 |
|
3563 |
+
#: src/vue/classes/SiteAnalysis.js:189
|
3564 |
+
msgid "Some images on the page have no alt attribute."
|
3565 |
msgstr ""
|
3566 |
|
3567 |
+
#: src/vue/classes/SiteAnalysis.js:193
|
3568 |
+
msgid "All images on your page have alt attributes."
|
3569 |
msgstr ""
|
3570 |
|
3571 |
+
#: src/vue/classes/SiteAnalysis.js:194
|
3572 |
+
msgid "All images on the page have alt attributes."
|
3573 |
msgstr ""
|
3574 |
|
3575 |
+
#: src/vue/classes/SiteAnalysis.js:200
|
3576 |
+
msgid ""
|
3577 |
+
"Make sure every image has an alt tag, and add useful descriptions to each "
|
3578 |
+
"image. Add your keywords or synonyms - but do it in a natural way."
|
3579 |
msgstr ""
|
3580 |
|
3581 |
+
#: src/vue/classes/SiteAnalysis.js:211
|
3582 |
+
msgid "No internal links were found on your page."
|
|
|
|
|
|
|
3583 |
msgstr ""
|
3584 |
|
3585 |
+
#: src/vue/classes/SiteAnalysis.js:212
|
3586 |
+
msgid "No internal links were found on the page."
|
3587 |
msgstr ""
|
3588 |
|
3589 |
+
#: src/vue/classes/SiteAnalysis.js:215
|
3590 |
+
msgid "Too few internal links on your page."
|
3591 |
msgstr ""
|
3592 |
|
3593 |
+
#: src/vue/classes/SiteAnalysis.js:216
|
3594 |
+
msgid "Too few internal links on the page."
|
3595 |
msgstr ""
|
3596 |
|
3597 |
+
#: src/vue/classes/SiteAnalysis.js:218
|
3598 |
+
msgid "The ratio of internal links to external links is uneven."
|
3599 |
msgstr ""
|
3600 |
|
3601 |
+
#: src/vue/classes/SiteAnalysis.js:222
|
3602 |
+
msgid "Your page has a correct number of internal and external links."
|
3603 |
msgstr ""
|
3604 |
|
3605 |
+
#: src/vue/classes/SiteAnalysis.js:223
|
3606 |
+
msgid "The page has a correct number of internal and external links."
|
3607 |
msgstr ""
|
3608 |
|
3609 |
+
#: src/vue/classes/SiteAnalysis.js:228
|
3610 |
+
msgid "Internal:"
|
3611 |
+
msgstr ""
|
3612 |
+
|
3613 |
+
#: src/vue/classes/SiteAnalysis.js:228
|
3614 |
+
msgid "External:"
|
3615 |
+
msgstr ""
|
3616 |
+
|
3617 |
+
#: src/vue/classes/SiteAnalysis.js:229
|
3618 |
msgid ""
|
3619 |
+
"Add links to external resources that are useful for your readers. Make sure "
|
3620 |
+
"you link to high-quality sites - Google penalizes pages that link to "
|
3621 |
+
"\"spammy\" sites (ones that break the Google webmaster guidelines)."
|
3622 |
msgstr ""
|
3623 |
|
3624 |
+
#: src/vue/classes/SiteAnalysis.js:229
|
3625 |
msgid ""
|
3626 |
+
"Ideally, the links should be highly relevant to the subject you're writing "
|
3627 |
+
"about. It's impossible to cover every aspect of a subject on a single page, "
|
3628 |
+
"but your readers may be fascinated by some detail you barely touch on. If "
|
3629 |
+
"you link to a resource where they can learn more, they'll be grateful. "
|
3630 |
+
"What's more, you'll be rewarded with higher rankings!"
|
3631 |
msgstr ""
|
3632 |
|
3633 |
+
#: src/vue/classes/SiteAnalysis.js:240
|
3634 |
+
msgid "No canonical link tag found on your page."
|
3635 |
msgstr ""
|
3636 |
|
3637 |
+
#: src/vue/classes/SiteAnalysis.js:241
|
3638 |
+
msgid "No canonical link tag found on the page."
|
3639 |
msgstr ""
|
3640 |
|
3641 |
+
#: src/vue/classes/SiteAnalysis.js:245
|
3642 |
+
msgid "Your page is using the canonical link tag."
|
3643 |
msgstr ""
|
3644 |
|
3645 |
+
#: src/vue/classes/SiteAnalysis.js:246
|
3646 |
+
msgid "The page is using the canonical link tag."
|
3647 |
msgstr ""
|
3648 |
|
3649 |
+
#: src/vue/classes/SiteAnalysis.js:252
|
3650 |
+
msgid ""
|
3651 |
+
"Every page on your site should have a <link> tag with a 'rel=\"canonical\"' "
|
3652 |
+
"attribute. The link tag should go inside the page's head tag, and it should "
|
3653 |
+
"contain the page's \"correct\" URL."
|
3654 |
msgstr ""
|
3655 |
|
3656 |
+
#: src/vue/classes/SiteAnalysis.js:252
|
3657 |
msgid ""
|
3658 |
+
"If you've republished an article from another source (such as another site "
|
3659 |
+
"or a different section of your own site) then you need to pick which URL is "
|
3660 |
+
"the \"correct\" one and use that!"
|
3661 |
msgstr ""
|
3662 |
|
3663 |
+
#: src/vue/classes/SiteAnalysis.js:263
|
3664 |
+
msgid "Your page contains a noindex header or meta tag."
|
3665 |
msgstr ""
|
3666 |
|
3667 |
+
#: src/vue/classes/SiteAnalysis.js:264
|
3668 |
+
msgid "The page contains a noindex header or meta tag."
|
3669 |
msgstr ""
|
3670 |
|
3671 |
+
#: src/vue/classes/SiteAnalysis.js:268
|
3672 |
+
msgid "Your page does not contain any noindex header or meta tag."
|
3673 |
msgstr ""
|
3674 |
|
3675 |
+
#: src/vue/classes/SiteAnalysis.js:269
|
3676 |
+
msgid "The page does not contain any noindex header or meta tag."
|
3677 |
msgstr ""
|
3678 |
|
3679 |
+
#: src/vue/classes/SiteAnalysis.js:274
|
3680 |
+
msgid ""
|
3681 |
+
"Only ever use noindex meta tag or header on pages you want to keep out of "
|
3682 |
+
"the reach of search engines!"
|
3683 |
msgstr ""
|
3684 |
|
3685 |
+
#: src/vue/classes/SiteAnalysis.js:285
|
|
|
3686 |
msgid ""
|
3687 |
+
"The www and non-www versions of your URL are not redirected to the same "
|
3688 |
+
"site."
|
3689 |
msgstr ""
|
3690 |
|
3691 |
+
#: src/vue/classes/SiteAnalysis.js:286
|
3692 |
+
msgid "The www and non-www versions of the URL are not redirected to the same site."
|
3693 |
msgstr ""
|
3694 |
|
3695 |
+
#: src/vue/classes/SiteAnalysis.js:290
|
3696 |
msgid ""
|
3697 |
+
"Both the www and non-www versions of your URL are redirected to the same "
|
3698 |
+
"site."
|
3699 |
msgstr ""
|
3700 |
|
3701 |
+
#: src/vue/classes/SiteAnalysis.js:291
|
3702 |
+
msgid ""
|
3703 |
+
"Both the www and non-www versions of the URL are redirected to the same "
|
3704 |
+
"site."
|
3705 |
msgstr ""
|
3706 |
|
3707 |
+
#: src/vue/classes/SiteAnalysis.js:296
|
3708 |
msgid ""
|
3709 |
+
"Decide whether you want your site's URLs to include a \"www\", or if you "
|
3710 |
+
"prefer a plain domain name. There are marketing pros and cons for each "
|
3711 |
+
"choice, but neither one is better or worse for SEO purposes - as long as "
|
3712 |
+
"you're consistent."
|
3713 |
msgstr ""
|
3714 |
|
3715 |
+
#: src/vue/classes/SiteAnalysis.js:296
|
3716 |
+
msgid ""
|
3717 |
+
"You should use HTTP redirections (301 permanant redirects) to pass PageRank "
|
3718 |
+
"from the \"wrong\" URLs to the standard (canonical) ones. That way, your "
|
3719 |
+
"content will still benefit from backlinks if someone makes a mistake and "
|
3720 |
+
"uses the wrong URL."
|
3721 |
msgstr ""
|
3722 |
|
3723 |
+
#: src/vue/classes/SiteAnalysis.js:30
|
3724 |
+
msgid "We couldn't find an SEO Title."
|
|
|
3725 |
msgstr ""
|
3726 |
|
3727 |
+
#: src/vue/classes/SiteAnalysis.js:307
|
3728 |
+
msgid "Your robots.txt file is missing or unavailable."
|
3729 |
msgstr ""
|
3730 |
|
3731 |
+
#: src/vue/classes/SiteAnalysis.js:308
|
3732 |
+
msgid "The robots.txt file is missing or unavailable."
|
3733 |
msgstr ""
|
3734 |
|
3735 |
+
#: src/vue/classes/SiteAnalysis.js:327
|
3736 |
+
msgid ""
|
3737 |
+
"Your site has a robots.txt file which includes one or more \"disallow\" "
|
3738 |
+
"directives."
|
3739 |
msgstr ""
|
3740 |
|
3741 |
+
#: src/vue/classes/SiteAnalysis.js:328
|
3742 |
+
msgid ""
|
3743 |
+
"The site has a robots.txt file which includes one or more \"disallow\" "
|
3744 |
+
"directives."
|
3745 |
msgstr ""
|
3746 |
|
3747 |
+
#: src/vue/classes/SiteAnalysis.js:332
|
3748 |
+
msgid "Your site has a robots.txt file."
|
3749 |
msgstr ""
|
3750 |
|
3751 |
+
#: src/vue/classes/SiteAnalysis.js:333
|
3752 |
+
msgid "The site has a robots.txt file."
|
3753 |
msgstr ""
|
3754 |
|
3755 |
+
# Translators: 1 - The length of the SEO title as a number.
|
3756 |
+
#: src/vue/classes/SiteAnalysis.js:34
|
3757 |
+
msgid "Your SEO title is only %1$d characters long, which is too short."
|
3758 |
msgstr ""
|
3759 |
|
3760 |
+
# Translators: 1 - The Plugin short name ("AIOSEO").
|
3761 |
+
#: src/vue/classes/SiteAnalysis.js:340
|
3762 |
+
msgid "Make sure that you only block parts you don't want to be indexed."
|
3763 |
msgstr ""
|
3764 |
|
3765 |
+
# Translators: 1 - The Plugin short name ("AIOSEO").
|
3766 |
+
#: src/vue/classes/SiteAnalysis.js:340
|
3767 |
+
msgid ""
|
3768 |
+
"You can manually create a robots.txt file and upload it to your site's web "
|
3769 |
+
"root. A simpler option is to use a plugin for your CMS platform."
|
3770 |
msgstr ""
|
3771 |
|
3772 |
+
# Translators: 1 - The Plugin short name ("AIOSEO").
|
3773 |
+
#: src/vue/classes/SiteAnalysis.js:340
|
3774 |
msgid ""
|
3775 |
+
"%1$s has a full suite of tools to manage the robots.txt file, along with "
|
3776 |
+
"other related technologies, like XML Sitemaps."
|
3777 |
msgstr ""
|
3778 |
|
3779 |
+
#: src/vue/classes/SiteAnalysis.js:350
|
3780 |
+
msgid "Some Open Graph meta tags are missing."
|
3781 |
msgstr ""
|
3782 |
|
3783 |
+
#: src/vue/classes/SiteAnalysis.js:352
|
3784 |
+
msgid "Duplicate Open Graph meta tags were found."
|
3785 |
msgstr ""
|
3786 |
|
3787 |
+
#: src/vue/classes/SiteAnalysis.js:355
|
3788 |
+
msgid "All the required Open Graph meta tags have been found."
|
3789 |
msgstr ""
|
3790 |
|
3791 |
+
# Translators: 1 - The length of the SEO title as a number.
|
3792 |
+
#: src/vue/classes/SiteAnalysis.js:36
|
3793 |
+
msgid "The SEO title is only %1$d characters long, which is too short."
|
|
|
3794 |
msgstr ""
|
3795 |
|
3796 |
+
# Translators: 1 - The Plugin short name ("AIOSEO").
|
3797 |
+
#: src/vue/classes/SiteAnalysis.js:362
|
3798 |
+
msgid ""
|
3799 |
+
"Insert a customized Open Graph meta tag for each important page on your "
|
3800 |
+
"site. The standard is very well documented - you can learn more from "
|
3801 |
+
"Facebook's developer pages."
|
3802 |
msgstr ""
|
3803 |
|
3804 |
+
# Translators: 1 - The Plugin short name ("AIOSEO").
|
3805 |
+
#: src/vue/classes/SiteAnalysis.js:362
|
3806 |
+
msgid ""
|
3807 |
+
"%1$s provides a simple but powerful interface to craft your Open Graph "
|
3808 |
+
"data. You get immediate feedback with an interactive preview, and you don't "
|
3809 |
+
"have to mess around with raw HTML markup."
|
3810 |
msgstr ""
|
3811 |
|
3812 |
+
#: src/vue/classes/SiteAnalysis.js:373
|
3813 |
+
msgid "No Schema.org data was found on your page."
|
|
|
3814 |
msgstr ""
|
3815 |
|
3816 |
+
#: src/vue/classes/SiteAnalysis.js:374
|
3817 |
+
msgid "No Schema.org data was found on the page."
|
3818 |
msgstr ""
|
3819 |
|
3820 |
+
#: src/vue/classes/SiteAnalysis.js:378
|
3821 |
+
msgid "We found Schema.org data on your page."
|
|
|
3822 |
msgstr ""
|
3823 |
|
3824 |
+
#: src/vue/classes/SiteAnalysis.js:379
|
3825 |
+
msgid "We found Schema.org data on the page."
|
|
|
3826 |
msgstr ""
|
3827 |
|
3828 |
+
# Translators: 1 - The Plugin short name ("AIOSEO").
|
3829 |
+
#: src/vue/classes/SiteAnalysis.js:385
|
3830 |
msgid ""
|
3831 |
+
"%1$s makes it extremely easy to add highly relevant Schema.org markup to "
|
3832 |
+
"your site. It has a simple graphical interface, so you don't have to get "
|
3833 |
+
"your hands dirty with complex HTML markup."
|
3834 |
msgstr ""
|
3835 |
|
3836 |
+
#: src/vue/classes/SiteAnalysis.js:386
|
3837 |
+
msgid "Edit Your Page"
|
|
|
3838 |
msgstr ""
|
3839 |
|
3840 |
+
#: src/vue/classes/SiteAnalysis.js:396
|
3841 |
+
msgid "Your server is not using \"expires\" headers for your images."
|
3842 |
+
msgstr ""
|
3843 |
+
|
3844 |
+
#: src/vue/classes/SiteAnalysis.js:397
|
3845 |
+
msgid "The server is not using \"expires\" headers for the images."
|
3846 |
+
msgstr ""
|
3847 |
+
|
3848 |
+
# Translators: 1 - The length of the SEO title as a number.
|
3849 |
+
#: src/vue/classes/SiteAnalysis.js:40
|
3850 |
+
msgid "Your SEO title is %1$d characters long, which is too long."
|
3851 |
+
msgstr ""
|
3852 |
+
|
3853 |
+
#: src/vue/classes/SiteAnalysis.js:401
|
3854 |
+
msgid "Your server is using \"expires\" headers for your images."
|
3855 |
+
msgstr ""
|
3856 |
+
|
3857 |
+
#: src/vue/classes/SiteAnalysis.js:402
|
3858 |
+
msgid "The server is using \"expires\" headers for the images."
|
3859 |
+
msgstr ""
|
3860 |
+
|
3861 |
+
#: src/vue/classes/SiteAnalysis.js:407
|
3862 |
msgid ""
|
3863 |
+
"If you use the Apache or NGINX web servers, you can edit the configuration "
|
3864 |
+
"files to set the \"expires\" header for all image files. For Apache, you "
|
3865 |
+
"can also use a \".htaccess\" file to change the settings for each folder."
|
3866 |
msgstr ""
|
3867 |
|
3868 |
+
#: src/vue/classes/SiteAnalysis.js:407
|
|
|
3869 |
msgid ""
|
3870 |
+
"Alternatively, you can use a CMS plugin to simplify the process - it's a "
|
3871 |
+
"more user-friendly option. WordPress has a host of caching plugins, and "
|
3872 |
+
"most of them give you options to control the caching headers."
|
3873 |
msgstr ""
|
3874 |
|
3875 |
+
#: src/vue/classes/SiteAnalysis.js:415
|
3876 |
+
msgid "Some Javascript files don't seem to be minified."
|
3877 |
+
msgstr ""
|
3878 |
+
|
3879 |
+
#: src/vue/classes/SiteAnalysis.js:418
|
3880 |
+
msgid "All Javascript files appear to be minified."
|
3881 |
+
msgstr ""
|
3882 |
+
|
3883 |
+
# Translators: 1 - The length of the SEO title as a number.
|
3884 |
+
#: src/vue/classes/SiteAnalysis.js:42
|
3885 |
+
msgid "The SEO title is %1$d characters long, which is too long."
|
3886 |
+
msgstr ""
|
3887 |
+
|
3888 |
+
#: src/vue/classes/SiteAnalysis.js:424
|
3889 |
msgid ""
|
3890 |
+
"JavaScript files appear in many places, including frameworks (like "
|
3891 |
+
"Bootstrap), themes and templates, and third-party plugins."
|
3892 |
msgstr ""
|
3893 |
|
3894 |
+
#: src/vue/classes/SiteAnalysis.js:424
|
3895 |
+
msgid "We recommend tracking down where the un-minified JavaScript files come from"
|
3896 |
+
msgstr ""
|
3897 |
+
|
3898 |
+
#: src/vue/classes/SiteAnalysis.js:424
|
3899 |
msgid ""
|
3900 |
+
"There are server-side tools (including WordPress plugins) to automatically "
|
3901 |
+
"minify JavaScript files."
|
|
|
|
|
|
|
3902 |
msgstr ""
|
3903 |
|
3904 |
+
#: src/vue/classes/SiteAnalysis.js:432
|
3905 |
+
msgid "Some CSS files don't seem to be minified."
|
3906 |
+
msgstr ""
|
3907 |
+
|
3908 |
+
#: src/vue/classes/SiteAnalysis.js:435
|
3909 |
+
msgid "All CSS files appear to be minified."
|
3910 |
+
msgstr ""
|
3911 |
+
|
3912 |
+
#: src/vue/classes/SiteAnalysis.js:441
|
3913 |
msgid ""
|
3914 |
+
"CSS files appear in many places, including frameworks (like Bootstrap), "
|
3915 |
+
"themes and templates, and third-party plugins."
|
|
|
3916 |
msgstr ""
|
3917 |
|
3918 |
+
#: src/vue/classes/SiteAnalysis.js:441
|
3919 |
+
msgid "We recommend tracking down where the un-minified CSS files come from."
|
3920 |
msgstr ""
|
3921 |
|
3922 |
+
#: src/vue/classes/SiteAnalysis.js:441
|
3923 |
+
msgid ""
|
3924 |
+
"There are server-side tools (including WordPress plugins) to automatically "
|
3925 |
+
"minify CSS files."
|
3926 |
msgstr ""
|
3927 |
|
3928 |
+
# Translators: 1 - The total number of page requests.
|
3929 |
+
#: src/vue/classes/SiteAnalysis.js:450
|
3930 |
+
msgid "Your page makes %1$d requests."
|
3931 |
msgstr ""
|
3932 |
|
3933 |
+
# Translators: 1 - The total number of page requests.
|
3934 |
+
#: src/vue/classes/SiteAnalysis.js:452
|
3935 |
+
msgid "The page makes %1$d requests."
|
3936 |
+
msgstr ""
|
3937 |
+
|
3938 |
+
#: src/vue/classes/SiteAnalysis.js:454
|
3939 |
+
msgid "More than 20 requests can result in slow page loading."
|
3940 |
+
msgstr ""
|
3941 |
+
|
3942 |
+
#: src/vue/classes/SiteAnalysis.js:462
|
3943 |
+
msgid "Images:"
|
3944 |
+
msgstr ""
|
3945 |
+
|
3946 |
+
#: src/vue/classes/SiteAnalysis.js:462
|
3947 |
+
msgid "JavaScript:"
|
3948 |
+
msgstr ""
|
3949 |
+
|
3950 |
+
#: src/vue/classes/SiteAnalysis.js:462
|
3951 |
+
msgid "CSS:"
|
3952 |
+
msgstr ""
|
3953 |
+
|
3954 |
+
#: src/vue/classes/SiteAnalysis.js:463
|
3955 |
+
msgid "Try to replace embedded objects with HTML5 alternatives."
|
3956 |
+
msgstr ""
|
3957 |
+
|
3958 |
+
# Translators: 1 - The length of the SEO title as a number.
|
3959 |
+
#: src/vue/classes/SiteAnalysis.js:47
|
3960 |
+
msgid "Your SEO title is set and is %1$d characters long."
|
3961 |
+
msgstr ""
|
3962 |
+
|
3963 |
+
# Translators: 1 - The total number of page requests.
|
3964 |
+
#: src/vue/classes/SiteAnalysis.js:471
|
3965 |
+
msgid "The size of the HTML document is %1$d Kb."
|
3966 |
+
msgstr ""
|
3967 |
+
|
3968 |
+
#: src/vue/classes/SiteAnalysis.js:473
|
3969 |
+
msgid "This is over our recommendation of 50 Kb."
|
3970 |
+
msgstr ""
|
3971 |
+
|
3972 |
+
#: src/vue/classes/SiteAnalysis.js:477
|
3973 |
+
msgid "This is under the average of 33 Kb."
|
3974 |
+
msgstr ""
|
3975 |
+
|
3976 |
+
#: src/vue/classes/SiteAnalysis.js:485
|
3977 |
msgid ""
|
3978 |
+
"In order to reduce page size, remove any unnecessary tags from your markup. "
|
3979 |
+
"This includes developer comments, which are invisible to your users - "
|
3980 |
+
"search engines ignore the text in comments, too."
|
3981 |
msgstr ""
|
3982 |
|
3983 |
+
#: src/vue/classes/SiteAnalysis.js:485
|
3984 |
+
msgid ""
|
3985 |
+
"Sometimes inline CSS is a culprit. A little inline CSS can help your page "
|
3986 |
+
"render faster. Too much will bloat the HTML file and increase the page "
|
3987 |
+
"loading time."
|
3988 |
msgstr ""
|
3989 |
|
3990 |
+
#: src/vue/classes/SiteAnalysis.js:485
|
3991 |
+
msgid ""
|
3992 |
+
"You can reduce CSS repetition with HTML class and ID attributes. Often the "
|
3993 |
+
"same rules will be repeated across many page elements, embedded in each "
|
3994 |
+
"tag's \"style\" attribute. You can extract them into a single \"style\" tag "
|
3995 |
+
"and use classes and ID's to target each element."
|
3996 |
msgstr ""
|
3997 |
|
3998 |
+
#: src/vue/classes/SiteAnalysis.js:485
|
3999 |
+
msgid ""
|
4000 |
+
"Removing white space can also have an impact on your HTML page's size. "
|
4001 |
+
"White space characters like carriage returns and tabs are ignored by the "
|
4002 |
+
"browser, but they make the markup easier for developers to read. So you "
|
4003 |
+
"should always strip them from your templates or themes before you use them "
|
4004 |
+
"in a production environment."
|
4005 |
msgstr ""
|
4006 |
|
4007 |
+
# Translators: 1 - The length of the SEO title as a number.
|
4008 |
+
#: src/vue/classes/SiteAnalysis.js:49
|
4009 |
+
msgid "The SEO title is set and is %1$d characters long."
|
4010 |
msgstr ""
|
4011 |
|
4012 |
+
# Translators: 1 - The total number of page requests.
|
4013 |
+
#: src/vue/classes/SiteAnalysis.js:495
|
4014 |
+
msgid ""
|
4015 |
+
"The response time of your page is %1$f seconds. It is recommended to keep "
|
4016 |
+
"it equal to or below 0.2 seconds."
|
4017 |
msgstr ""
|
4018 |
|
4019 |
+
# Translators: 1 - The total number of page requests.
|
4020 |
+
#: src/vue/classes/SiteAnalysis.js:497
|
4021 |
+
msgid ""
|
4022 |
+
"The response time of the page is %1$f seconds. It is recommended to keep it "
|
4023 |
+
"equal to or below 0.2 seconds."
|
4024 |
msgstr ""
|
4025 |
|
4026 |
+
#: src/vue/classes/SiteAnalysis.js:501
|
4027 |
+
msgid "Your response time is under 0.2 seconds."
|
4028 |
msgstr ""
|
4029 |
|
4030 |
+
#: src/vue/classes/SiteAnalysis.js:502
|
4031 |
+
msgid "The response time is under 0.2 seconds."
|
4032 |
msgstr ""
|
4033 |
|
4034 |
+
#: src/vue/classes/SiteAnalysis.js:507
|
4035 |
+
msgid ""
|
4036 |
+
"If you want to continue to improve your response time, the simplest and "
|
4037 |
+
"fastest fix is to use a caching plugin. Caching plugins keep a cached "
|
4038 |
+
"version of each page on your site. Instead of building the page from "
|
4039 |
+
"scratch, the server will send the cached copy."
|
4040 |
msgstr ""
|
4041 |
|
4042 |
+
#: src/vue/classes/SiteAnalysis.js:507
|
4043 |
+
msgid ""
|
4044 |
+
"You can get an even greater boost in speed with a content delivery network "
|
4045 |
+
"service. These services host a copy of your content on multiple servers "
|
4046 |
+
"spread out across the globe. A user's request is handled by the edge server "
|
4047 |
+
"that's closest to their physical location, so the content arrives "
|
4048 |
+
"incredibly fast."
|
4049 |
msgstr ""
|
4050 |
|
4051 |
+
#: src/vue/classes/SiteAnalysis.js:516
|
4052 |
+
msgid "Plugins from your website are publicly visible."
|
4053 |
msgstr ""
|
4054 |
|
4055 |
+
#: src/vue/classes/SiteAnalysis.js:517
|
4056 |
+
msgid "Plugins from the website are publicly visible."
|
4057 |
msgstr ""
|
4058 |
|
4059 |
+
#: src/vue/classes/SiteAnalysis.js:521
|
4060 |
+
msgid "You have no visible plugins!"
|
4061 |
msgstr ""
|
4062 |
|
4063 |
+
#: src/vue/classes/SiteAnalysis.js:522
|
4064 |
+
msgid "There are no visible plugins."
|
4065 |
msgstr ""
|
4066 |
|
4067 |
+
#: src/vue/classes/SiteAnalysis.js:528
|
4068 |
+
msgid ""
|
4069 |
+
"It's a great idea to try and hide the plugins you have visible. From time "
|
4070 |
+
"to time vulnerabilities are found in plugins and if your site is not "
|
4071 |
+
"updated in a timely fashion, outdated plugins and themes can be exploited."
|
4072 |
msgstr ""
|
4073 |
|
4074 |
+
# Translators: 1 - The name of the theme.
|
4075 |
+
#: src/vue/classes/SiteAnalysis.js:538
|
4076 |
+
msgid "Anyone can see that you are using the %1$s theme."
|
4077 |
msgstr ""
|
4078 |
|
4079 |
+
# Translators: 1 - The name of the theme.
|
4080 |
+
#: src/vue/classes/SiteAnalysis.js:540
|
4081 |
+
msgid "Anyone can see that they are using the %1$s theme."
|
4082 |
msgstr ""
|
4083 |
|
4084 |
+
#: src/vue/classes/SiteAnalysis.js:544
|
4085 |
+
msgid "Your theme is not visible!"
|
4086 |
msgstr ""
|
4087 |
|
4088 |
+
#: src/vue/classes/SiteAnalysis.js:545
|
4089 |
+
msgid "The theme is not visible."
|
4090 |
msgstr ""
|
4091 |
|
4092 |
+
#: src/vue/classes/SiteAnalysis.js:55
|
4093 |
+
msgid ""
|
4094 |
+
"Ensure your page's title includes your target keywords, and design it to "
|
4095 |
+
"encourage users to click."
|
4096 |
msgstr ""
|
4097 |
|
4098 |
+
#: src/vue/classes/SiteAnalysis.js:55
|
4099 |
+
msgid ""
|
4100 |
+
"Writing compelling titles is both a science and an art. There are automated "
|
4101 |
+
"tools that can analyze your title against known metrics for readability and "
|
4102 |
+
"click-worthiness. You also need to understand the psychology of your target "
|
4103 |
+
"audience."
|
4104 |
msgstr ""
|
4105 |
|
4106 |
+
#: src/vue/classes/SiteAnalysis.js:550
|
4107 |
+
msgid ""
|
4108 |
+
"It's a great idea to try and hide the theme you have visible. From time to "
|
4109 |
+
"time vulnerabilities are found in themes and if your site is not updated in "
|
4110 |
+
"a timely fashion, outdated plugins and themes can be exploited."
|
4111 |
msgstr ""
|
4112 |
|
4113 |
+
#: src/vue/classes/SiteAnalysis.js:559
|
4114 |
+
msgid "Directory Listing seems to be enabled on your server."
|
4115 |
+
msgstr ""
|
4116 |
+
|
4117 |
+
#: src/vue/classes/SiteAnalysis.js:56
|
4118 |
+
msgid "Edit Your Page Title"
|
4119 |
+
msgstr ""
|
4120 |
+
|
4121 |
+
#: src/vue/classes/SiteAnalysis.js:560
|
4122 |
+
msgid "Directory Listing seems to be enabled on the server."
|
4123 |
+
msgstr ""
|
4124 |
+
|
4125 |
+
#: src/vue/classes/SiteAnalysis.js:564
|
4126 |
+
msgid "Directory Listing seems to be disabled on your server."
|
4127 |
+
msgstr ""
|
4128 |
+
|
4129 |
+
#: src/vue/classes/SiteAnalysis.js:565
|
4130 |
+
msgid "Directory Listing seems to be disabled on the server."
|
4131 |
+
msgstr ""
|
4132 |
+
|
4133 |
+
#: src/vue/classes/SiteAnalysis.js:570
|
4134 |
msgid ""
|
4135 |
+
"Fortunately, every popular web server has options to prevent directory "
|
4136 |
+
"listings. They'll show a \"403 forbidden\" message instead."
|
4137 |
msgstr ""
|
4138 |
|
4139 |
+
#: src/vue/classes/SiteAnalysis.js:570
|
4140 |
+
msgid ""
|
4141 |
+
"Alternatively, you can create an empty index.php file and save it in every "
|
4142 |
+
"directory on your site. That's an approach that WordPress uses and it works "
|
4143 |
+
"well."
|
4144 |
msgstr ""
|
4145 |
|
4146 |
+
#: src/vue/classes/SiteAnalysis.js:579
|
4147 |
+
msgid "It looks like your site has been added to one of Google's malwares lists."
|
4148 |
msgstr ""
|
4149 |
|
4150 |
+
#: src/vue/classes/SiteAnalysis.js:580
|
4151 |
+
msgid "It looks like this site has been added to one of Google's malwares lists."
|
4152 |
msgstr ""
|
4153 |
|
4154 |
+
#: src/vue/classes/SiteAnalysis.js:584
|
4155 |
+
msgid "Google has not flagged your site for malware!"
|
4156 |
msgstr ""
|
4157 |
|
4158 |
+
#: src/vue/classes/SiteAnalysis.js:585
|
4159 |
+
msgid "Google has not flagged this site for malware."
|
4160 |
+
msgstr ""
|
4161 |
+
|
4162 |
+
#: src/vue/classes/SiteAnalysis.js:590
|
4163 |
msgid ""
|
4164 |
+
"Google Safe browsing shows warnings and alerts to users if they visit a "
|
4165 |
+
"suspicious website. If you are flagged by Google Safe Browsing, you should "
|
4166 |
+
"take immediate steps to fix that."
|
|
|
4167 |
msgstr ""
|
4168 |
|
4169 |
+
#: src/vue/classes/SiteAnalysis.js:599
|
4170 |
+
msgid "Your site is not using a secure transfer protocol (https)."
|
4171 |
msgstr ""
|
4172 |
|
4173 |
+
#: src/vue/classes/SiteAnalysis.js:600
|
4174 |
+
msgid "The site is not using a secure transfer protocol (https)."
|
4175 |
msgstr ""
|
4176 |
|
4177 |
+
#: src/vue/classes/SiteAnalysis.js:604
|
4178 |
+
msgid "Your site is using a secure transfer protocol (https)."
|
4179 |
msgstr ""
|
4180 |
|
4181 |
+
#: src/vue/classes/SiteAnalysis.js:605
|
4182 |
+
msgid "The site is using a secure transfer protocol (https)."
|
4183 |
msgstr ""
|
4184 |
|
4185 |
+
#: src/vue/classes/SiteAnalysis.js:610
|
4186 |
+
msgid ""
|
4187 |
+
"If you aren't using an SSL certificate for your site that means you are "
|
4188 |
+
"losing a lot of potential traffic. We recommend getting an SSL certificate "
|
4189 |
+
"installed immediately."
|
4190 |
msgstr ""
|
4191 |
|
4192 |
+
#: src/vue/classes/SiteAnalysis.js:66
|
4193 |
+
msgid "No meta description was found for your page."
|
4194 |
msgstr ""
|
4195 |
|
4196 |
+
#: src/vue/classes/SiteAnalysis.js:67
|
4197 |
+
msgid "No meta description was found for the page."
|
4198 |
msgstr ""
|
4199 |
|
4200 |
+
# Translators: 1 - The length of the meta description as a number.
|
4201 |
+
#: src/vue/classes/SiteAnalysis.js:71
|
4202 |
+
msgid "Your meta description is only %1$d characters long, which is too short."
|
4203 |
msgstr ""
|
4204 |
|
4205 |
+
# Translators: 1 - The length of the meta description as a number.
|
4206 |
+
#: src/vue/classes/SiteAnalysis.js:73
|
4207 |
+
msgid "The meta description is only %1$d characters long, which is too short."
|
4208 |
msgstr ""
|
4209 |
|
4210 |
+
# Translators: 1 - The length of the meta description as a number.
|
4211 |
+
#: src/vue/classes/SiteAnalysis.js:77
|
4212 |
+
msgid "Your meta description is %1$d characters long, which is too long."
|
4213 |
+
msgstr ""
|
4214 |
+
|
4215 |
+
# Translators: 1 - The length of the meta description as a number.
|
4216 |
+
#: src/vue/classes/SiteAnalysis.js:79
|
4217 |
+
msgid "The meta description is %1$d characters long, which is too long."
|
4218 |
+
msgstr ""
|
4219 |
+
|
4220 |
+
# Translators: 1 - The length of the meta description as a number.
|
4221 |
+
#: src/vue/classes/SiteAnalysis.js:84
|
4222 |
+
msgid "Your meta description is set and is %1$d characters long."
|
4223 |
+
msgstr ""
|
4224 |
+
|
4225 |
+
# Translators: 1 - The length of the meta description as a number.
|
4226 |
+
#: src/vue/classes/SiteAnalysis.js:86
|
4227 |
+
msgid "The meta description is set and is %1$d characters long."
|
4228 |
+
msgstr ""
|
4229 |
+
|
4230 |
+
#: src/vue/classes/SiteAnalysis.js:92
|
4231 |
msgid ""
|
4232 |
+
"Write a meta description for your page. Use your target keywords (in a "
|
4233 |
+
"natural way) and write with human readers in mind. Summarize the content - "
|
4234 |
+
"describe the topics your article discusses."
|
4235 |
msgstr ""
|
4236 |
|
4237 |
+
#: src/vue/classes/SiteAnalysis.js:92
|
4238 |
+
msgid ""
|
4239 |
+
"The description should stimulate reader interest and get them to click on "
|
4240 |
+
"the article. Think of it as a mini-advertisement for your content."
|
4241 |
+
msgstr ""
|
4242 |
+
|
4243 |
+
#: src/vue/classes/SiteAnalysis.js:93
|
4244 |
+
msgid "Edit Your Meta Description"
|
4245 |
+
msgstr ""
|
4246 |
+
|
4247 |
+
#: src/vue/components/common/base/WpBulkActions.vue:35
|
4248 |
+
msgid "Bulk Actions"
|
4249 |
+
msgstr ""
|
4250 |
+
|
4251 |
+
#: src/vue/components/common/base/WpBulkActions.vue:36
|
4252 |
+
msgid "Apply"
|
4253 |
+
msgstr ""
|
4254 |
+
|
4255 |
+
#: src/vue/components/common/base/WpTable.vue:336
|
4256 |
+
msgid "of"
|
4257 |
+
msgstr ""
|
4258 |
+
|
4259 |
+
#: src/vue/components/common/base/WpTable.vue:337
|
4260 |
+
msgid "items"
|
4261 |
msgstr ""
|
4262 |
|
4263 |
+
#: src/vue/components/common/base/WpTable.vue:338
|
4264 |
+
msgid "No items found"
|
4265 |
msgstr ""
|
4266 |
|
4267 |
+
#: src/vue/components/lite/local-business/Urls.vue:32
|
4268 |
+
#: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:129
|
4269 |
+
msgid "Website URL:"
|
|
|
4270 |
msgstr ""
|
4271 |
|
4272 |
+
#: src/vue/components/lite/local-business/Urls.vue:33
|
4273 |
+
#: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:130
|
4274 |
+
msgid "About Page URL:"
|
4275 |
msgstr ""
|
4276 |
|
4277 |
+
#: src/vue/components/lite/local-business/Urls.vue:34
|
4278 |
+
#: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:131
|
4279 |
+
msgid "Contact Page URL:"
|
4280 |
msgstr ""
|
4281 |
|
4282 |
+
# Translators: 1 - "Pro".
|
4283 |
+
#: src/vue/components/lite/core/UpgradeBar.vue:22
|
4284 |
+
msgid "upgrading to %1$s"
|
4285 |
msgstr ""
|
4286 |
|
4287 |
+
# Translators: This refers to a discount ("As a valued user you receive 50%, automatically applied at checkout!").
|
4288 |
+
#: src/vue/pages/settings/views/GeneralSettings.vue:57
|
4289 |
+
msgid "off"
|
4290 |
msgstr ""
|
4291 |
|
4292 |
+
#: src/vue/components/lite/settings/LicenseKey.vue:58
|
4293 |
+
#: src/vue/pages/setup-wizard/router/paths.js:82
|
4294 |
+
msgid "License Key"
|
4295 |
msgstr ""
|
4296 |
|
4297 |
+
#: src/vue/components/lite/settings/LicenseKey.vue:59
|
4298 |
+
msgid "Your license key provides access to updates and addons."
|
4299 |
msgstr ""
|
4300 |
|
4301 |
+
#: src/vue/components/lite/settings/LicenseKey.vue:60
|
4302 |
+
msgid "Paste your license key here"
|
4303 |
msgstr ""
|
4304 |
|
4305 |
+
#: src/vue/components/lite/settings/LicenseKey.vue:61
|
4306 |
+
msgid "Connect"
|
4307 |
msgstr ""
|
4308 |
|
4309 |
+
# Translators: 1 - "upgrading to Pro".
|
4310 |
+
#: src/vue/pages/settings/views/GeneralSettings.vue:73
|
4311 |
+
msgid "To unlock more features, consider %1$s."
|
4312 |
msgstr ""
|
4313 |
|
4314 |
+
# Translators: 1 - "50% off".
|
4315 |
+
#: src/vue/pages/settings/views/GeneralSettings.vue:77
|
4316 |
+
msgid "As a valued user you receive %1$s, automatically applied at checkout!"
|
4317 |
msgstr ""
|
4318 |
|
4319 |
+
# Translators: 1 - The plugin name ("All in One SEO").
|
4320 |
+
#: src/vue/components/lite/settings/LicenseKey.vue:80
|
4321 |
+
msgid "You're using %1$s - no license needed. Enjoy!"
|
4322 |
msgstr ""
|
4323 |
|
4324 |
+
# Translators: 1 - The plugin name ("All in One SEO").
|
4325 |
+
#: src/vue/components/lite/settings/LicenseKey.vue:84
|
4326 |
+
msgid "Already purchased? Simply enter your license key below to connect with %1$s!"
|
4327 |
msgstr ""
|
4328 |
|
4329 |
+
#: src/vue/components/lite/local-business/PaymentInfo.vue:37
|
4330 |
+
msgid "Price Indicator:"
|
4331 |
msgstr ""
|
4332 |
|
4333 |
+
#: src/vue/components/lite/local-business/PaymentInfo.vue:38
|
4334 |
+
msgid "Currencies Accepted:"
|
4335 |
msgstr ""
|
4336 |
|
4337 |
+
#: src/vue/components/lite/local-business/PaymentInfo.vue:39
|
4338 |
+
msgid "Payment Methods Accepted:"
|
|
|
|
|
4339 |
msgstr ""
|
4340 |
|
4341 |
+
#: src/vue/components/lite/local-business/BusinessIds.vue:25
|
4342 |
+
msgid "VAT ID:"
|
4343 |
msgstr ""
|
4344 |
|
4345 |
+
#: src/vue/components/lite/local-business/BusinessIds.vue:26
|
4346 |
+
msgid "Tax ID:"
|
4347 |
msgstr ""
|
4348 |
|
4349 |
+
#: src/vue/components/lite/core/UpgradeBar.vue:19
|
4350 |
+
msgid "Free"
|
4351 |
msgstr ""
|
4352 |
|
4353 |
+
# Translators: 1 - The plugin name ("All in One SEO"), 2 - "upgrading to Pro".
|
4354 |
+
#: src/vue/components/lite/core/UpgradeBar.vue:32
|
4355 |
+
msgid "You're using %1$s. To unlock more features, consider %2$s"
|
4356 |
msgstr ""
|
4357 |
|
4358 |
+
#: src/vue/components/lite/local-business/BusinessAddress.vue:55
|
4359 |
+
msgid "Address Line 1"
|
4360 |
msgstr ""
|
4361 |
|
4362 |
+
#: src/vue/components/lite/local-business/BusinessAddress.vue:56
|
4363 |
+
msgid "Address Line 2"
|
4364 |
msgstr ""
|
4365 |
|
4366 |
+
#: src/vue/components/lite/local-business/BusinessAddress.vue:57
|
4367 |
+
msgid "Zip code:"
|
|
|
|
|
|
|
4368 |
msgstr ""
|
4369 |
|
4370 |
+
#: src/vue/components/lite/local-business/BusinessAddress.vue:58
|
4371 |
+
msgid "City:"
|
4372 |
msgstr ""
|
4373 |
|
4374 |
+
#: src/vue/components/lite/local-business/BusinessAddress.vue:59
|
4375 |
+
msgid "State:"
|
4376 |
msgstr ""
|
4377 |
|
4378 |
+
#: src/vue/components/lite/local-business/BusinessAddress.vue:60
|
4379 |
+
msgid "Country:"
|
|
|
4380 |
msgstr ""
|
4381 |
|
4382 |
+
#: src/vue/components/lite/local-business/AreaServed.vue:16
|
4383 |
+
msgid "The geographic area where a service or offered item is provided."
|
4384 |
msgstr ""
|
4385 |
|
4386 |
+
#: src/vue/components/lite/local-business/BusinessContact.vue:28
|
4387 |
+
msgid "Email address:"
|
4388 |
msgstr ""
|
4389 |
|
4390 |
+
#: src/vue/components/lite/local-business/BusinessContact.vue:29
|
4391 |
+
msgid "Phone number:"
|
|
|
|
|
|
|
4392 |
msgstr ""
|
4393 |
|
4394 |
+
#: src/vue/components/lite/local-business/BusinessContact.vue:30
|
4395 |
+
msgid "Fax number:"
|
|
|
|
|
|
|
4396 |
msgstr ""
|
4397 |
|
4398 |
+
#: src/vue/components/lite/local-business/Name.vue:16
|
4399 |
+
#: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:120
|
4400 |
+
msgid "name"
|
4401 |
msgstr ""
|
4402 |
|
4403 |
+
#: src/vue/components/lite/local-business/Name.vue:17
|
4404 |
+
#: src/vue/pages/local-seo/views/pro/LocationsActivate.vue:121
|
4405 |
+
msgid "Your name or company name."
|
4406 |
msgstr ""
|
4407 |
|
4408 |
+
#: src/vue/components/common/base/WpAdditionalFilters.vue:46
|
4409 |
+
msgid "Filter"
|
|
|
4410 |
msgstr ""
|
4411 |
|
4412 |
+
#: src/vue/components/common/base/Editor.vue:122
|
4413 |
+
msgid "Search for an item..."
|
4414 |
msgstr ""
|
4415 |
|
4416 |
+
#: src/vue/components/common/base/Editor.vue:123
|
4417 |
+
msgid "Enter a custom field name..."
|
|
|
4418 |
msgstr ""
|
4419 |
|
4420 |
+
#: src/vue/pages/about/views/Main.vue:23
|
4421 |
+
msgid "About"
|
|
|
4422 |
msgstr ""
|
4423 |
|
4424 |
+
# Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro" string.
|
4425 |
+
#: src/vue/pages/about/views/GettingStarted.vue:130
|
4426 |
+
msgid "Get %1$s %2$s and Unlock all the Powerful Features"
|
4427 |
msgstr ""
|
4428 |
|
4429 |
+
# Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro" string.
|
4430 |
+
#: src/vue/pages/about/views/GettingStarted.vue:132
|
4431 |
+
msgid "Get %1$s %2$s and Unlock all the Powerful Features."
|
4432 |
msgstr ""
|
4433 |
|
4434 |
+
#: src/vue/pages/dashboard/views/Main.vue:202
|
4435 |
+
msgid "Smart Schema"
|
|
|
4436 |
msgstr ""
|
4437 |
|
4438 |
+
#: src/vue/pages/dashboard/views/Main.vue:204
|
4439 |
+
msgid "Advanced support for e-commerce"
|
4440 |
msgstr ""
|
4441 |
|
4442 |
+
#: src/vue/pages/dashboard/views/Main.vue:206
|
4443 |
+
msgid "Video SEO Module"
|
|
|
4444 |
msgstr ""
|
4445 |
|
4446 |
+
#: src/vue/pages/dashboard/views/Main.vue:208
|
4447 |
+
msgid "SEO for Categories, Tags and Custom Taxonomies"
|
|
|
4448 |
msgstr ""
|
4449 |
|
4450 |
+
#: src/vue/pages/about/views/GettingStarted.vue:141
|
4451 |
+
msgid "Social Meta for Categories, Tags and Custom Taxonomies"
|
4452 |
msgstr ""
|
4453 |
|
4454 |
+
#: src/vue/pages/dashboard/views/Main.vue:205
|
4455 |
+
msgid "Advanced Google Analytics tracking"
|
|
|
4456 |
msgstr ""
|
4457 |
|
4458 |
+
#: src/vue/pages/dashboard/views/Main.vue:207
|
4459 |
+
msgid "Greater control over display settings"
|
|
|
4460 |
msgstr ""
|
4461 |
|
4462 |
+
#: src/vue/pages/dashboard/views/Main.vue:210
|
4463 |
+
msgid "Ad free (no banner adverts)"
|
4464 |
msgstr ""
|
4465 |
|
4466 |
+
#: src/vue/pages/about/views/GettingStarted.vue:148
|
4467 |
+
msgid "Video Tutorials"
|
4468 |
msgstr ""
|
4469 |
|
4470 |
+
#: src/vue/pages/about/views/GettingStarted.vue:149
|
4471 |
+
msgid "View all video tutorials"
|
|
|
4472 |
msgstr ""
|
4473 |
|
4474 |
+
# Translators: 1 - The plugin short name ("AIOSEO").
|
4475 |
+
#: src/vue/pages/about/views/GettingStarted.vue:154
|
4476 |
+
msgid "%1$s Documentation"
|
4477 |
msgstr ""
|
4478 |
|
4479 |
+
#: src/vue/pages/about/views/GettingStarted.vue:155
|
4480 |
+
msgid "See our full documentation"
|
4481 |
msgstr ""
|
4482 |
|
4483 |
+
#: src/vue/pages/about/views/GettingStarted.vue:161
|
4484 |
+
msgid "Basic Guide to Google Analytics"
|
|
|
4485 |
msgstr ""
|
4486 |
|
4487 |
+
#: src/vue/pages/about/views/GettingStarted.vue:165
|
4488 |
+
msgid "Basic Guide to Google Search Console"
|
4489 |
msgstr ""
|
4490 |
|
4491 |
+
#: src/vue/pages/about/views/GettingStarted.vue:169
|
4492 |
+
msgid "Best Practices for Domains and URLs"
|
|
|
4493 |
msgstr ""
|
4494 |
|
4495 |
+
#: src/vue/pages/about/views/GettingStarted.vue:173
|
4496 |
+
msgid "How to Control Search Results"
|
4497 |
msgstr ""
|
4498 |
|
4499 |
+
# Translators: 1 - The plugin short name ("AIOSEO Pro"), 2 - "Pro" string.
|
4500 |
+
#: src/vue/pages/about/views/GettingStarted.vue:178
|
4501 |
+
msgid "Installing %1$s %2$s"
|
|
|
|
|
4502 |
msgstr ""
|
4503 |
+
|
4504 |
+
#: src/vue/pages/about/views/GettingStarted.vue:182
|
4505 |
+
msgid "Optimizing your Content Headings"
|
4506 |
msgstr ""
|
4507 |
|
4508 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:377
|
4509 |
+
msgid "Global Robots Meta"
|
|
|
|
|
|
|
4510 |
msgstr ""
|
4511 |
|
4512 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:378
|
4513 |
+
msgid "Noindex Empty Category and Tag Archives"
|
4514 |
msgstr ""
|
4515 |
|
4516 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:379
|
4517 |
+
msgid "Remove Stopwords from Permalinks"
|
|
|
4518 |
msgstr ""
|
4519 |
|
4520 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:380
|
4521 |
+
msgid "Remove Category Base Prefix"
|
4522 |
msgstr ""
|
4523 |
|
4524 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:383
|
4525 |
+
msgid "Automatically Add Missing Image Alt / Title Tags"
|
|
|
|
|
|
|
4526 |
msgstr ""
|
4527 |
|
4528 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:386
|
4529 |
+
msgid "Autogenerate Descriptions"
|
4530 |
msgstr ""
|
4531 |
|
4532 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:387
|
4533 |
+
msgid "Use Content for Autogenerated Descriptions"
|
|
|
4534 |
msgstr ""
|
4535 |
|
4536 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:388
|
4537 |
+
msgid "Run Shortcodes in Description"
|
4538 |
msgstr ""
|
4539 |
|
4540 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:389
|
4541 |
+
msgid "No Pagination for Canonical URLs"
|
|
|
|
|
|
|
4542 |
msgstr ""
|
4543 |
|
4544 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:390
|
4545 |
+
msgid "Use Meta Keywords"
|
4546 |
msgstr ""
|
4547 |
|
4548 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:391
|
4549 |
+
msgid ""
|
4550 |
+
"This option allows you to toggle the use of Meta Keywords throughout the "
|
4551 |
+
"whole of the site."
|
4552 |
msgstr ""
|
4553 |
|
4554 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:392
|
4555 |
+
msgid "Use Categories for Meta Keywords"
|
4556 |
msgstr ""
|
4557 |
|
4558 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:393
|
4559 |
+
msgid ""
|
4560 |
+
"Check this if you want your categories for a given post used as the Meta "
|
4561 |
+
"Keywords for this post (in addition to any keywords you specify on the Edit "
|
4562 |
+
"Post screen)."
|
4563 |
msgstr ""
|
4564 |
|
4565 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:394
|
4566 |
+
msgid "Use Tags for Meta Keywords"
|
4567 |
msgstr ""
|
4568 |
|
4569 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:395
|
4570 |
+
msgid ""
|
4571 |
+
"Check this if you want your tags for a given post used as the Meta Keywords "
|
4572 |
+
"for this post (in addition to any keywords you specify on the Edit Post "
|
4573 |
+
"screen)."
|
4574 |
msgstr ""
|
4575 |
|
4576 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:396
|
4577 |
+
msgid "Dynamically Generate Meta Keywords"
|
4578 |
msgstr ""
|
4579 |
|
4580 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:397
|
4581 |
+
msgid ""
|
4582 |
+
"Check this if you want your keywords on your Posts page (set in WordPress "
|
4583 |
+
"under Settings, Reading, Front Page Displays) and your archive pages to be "
|
4584 |
+
"dynamically generated from the keywords of the posts showing on that page. "
|
4585 |
+
"If unchecked, it will use the keywords set in the edit page screen for the "
|
4586 |
+
"posts page."
|
4587 |
msgstr ""
|
4588 |
|
4589 |
+
#: src/vue/pages/settings/views/partials/Breadcrumbs/Advanced.vue:73
|
4590 |
+
msgid "Paged Format"
|
4591 |
msgstr ""
|
4592 |
|
4593 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:399
|
4594 |
+
msgid ""
|
4595 |
+
"This string gets appended to the titles and descriptions of paginated pages "
|
4596 |
+
"(like term or archive pages)."
|
4597 |
msgstr ""
|
4598 |
|
4599 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:400
|
4600 |
+
msgid "Description Format"
|
4601 |
msgstr ""
|
4602 |
|
4603 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:403
|
4604 |
+
msgid "Enable Sitelinks Search Box"
|
4605 |
msgstr ""
|
4606 |
|
4607 |
+
# Translators: 1 - The plugin name ("All in One SEO").
|
4608 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:405
|
4609 |
+
msgid ""
|
4610 |
+
"Choose whether %1$s should output the required schema markup that Google "
|
4611 |
+
"needs to generate a sitelinks search box."
|
4612 |
msgstr ""
|
4613 |
|
4614 |
+
#: src/vue/pages/search-appearance/views/Advanced.vue:406
|
4615 |
+
msgid ""
|
4616 |
+
"A Description tag is required in order to properly display your meta "
|
4617 |
+
"descriptions on your site."
|
4618 |
msgstr ""
|
4619 |
|
4620 |
+
# Translators: 1 - The plugin name ("All in One SEO"), 2 - Same as previous.
|
4621 |
+
#: src/vue/pages/about/views/AboutUs.vue:119
|
4622 |
+
msgid ""
|
4623 |
+
"Welcome to %1$s, the original SEO plugin for WordPress. At %2$s, we build "
|
4624 |
+
"software that helps you rank your website in search results and gain "
|
4625 |
+
"organic traffic."
|
4626 |
msgstr ""
|
4627 |
|
4628 |
+
#: src/vue/pages/about/views/AboutUs.vue:120
|
4629 |
+
msgid ""
|
4630 |
+
"Over the years, we found that most other WordPress SEO plugins were "
|
4631 |
+
"bloated, buggy, slow, and very hard to use. So we designed our plugin as an "
|
4632 |
+
"easy and powerful tool."
|
4633 |
msgstr ""
|
4634 |
|
4635 |
+
#: src/vue/pages/about/views/AboutUs.vue:121
|
4636 |
+
msgid ""
|
4637 |
+
"Our goal is to take the pain out of optimizing your website for search "
|
4638 |
+
"engines."
|
4639 |
msgstr ""
|
4640 |
|
4641 |
+
# Translators: 1 - The plugin name ("All in One SEO"), 2 - Company name ("Awesome Motive").
|
4642 |
+
#: src/vue/pages/about/views/AboutUs.vue:123
|
4643 |
+
msgid ""
|
4644 |
+
"%1$s is brought to you by %2$s, the same team that’s behind the largest "
|
4645 |
+
"WordPress resource site, WPBeginner, the most popular lead-generation "
|
4646 |
+
"software, OptinMonster, the best WordPress analytics plugin, "
|
4647 |
+
"MonsterInsights and many more."
|
4648 |
msgstr ""
|
4649 |
|
4650 |
+
#: src/vue/pages/about/views/AboutUs.vue:124
|
4651 |
+
msgid ""
|
4652 |
+
"Yup, we know a thing or two about building awesome products that customers "
|
4653 |
+
"love."
|
4654 |
msgstr ""
|
4655 |
|
4656 |
+
# Translators: 1 - Company name ("Awesome Motive").
|
4657 |
+
#: src/vue/pages/about/views/AboutUs.vue:126
|
4658 |
+
msgid "The %1$s Team"
|
4659 |
msgstr ""
|
4660 |
|
4661 |
+
#: src/vue/pages/about/views/AboutUs.vue:130
|
4662 |
+
msgid "Install Plugin"
|
4663 |
msgstr ""
|
4664 |
|
4665 |
+
#: src/vue/pages/about/views/AboutUs.vue:131
|
4666 |
+
msgid "Activate"
|
4667 |
msgstr ""
|
4668 |
|
4669 |
+
#: src/vue/pages/about/views/AboutUs.vue:134
|
4670 |
+
msgid "Status:"
|
4671 |
msgstr ""
|
4672 |
|
4673 |
+
#: src/vue/pages/about/views/AboutUs.vue:145
|
4674 |
+
msgid ""
|
4675 |
+
"Our high-converting optin forms like Exit-Intent® popups, Fullscreen "
|
4676 |
+
"Welcome Mats, and Scroll boxes help you dramatically boost conversions and "
|
4677 |
+
"get more email subscribers."
|
4678 |
msgstr ""
|
4679 |
|
4680 |
+
#: src/vue/pages/about/views/AboutUs.vue:154
|
4681 |
+
msgid ""
|
4682 |
+
"WPForms allows you to create beautiful contact forms for your site in "
|
4683 |
+
"minutes, not hours!"
|
4684 |
msgstr ""
|
4685 |
|
4686 |
+
#: src/vue/pages/about/views/AboutUs.vue:171
|
4687 |
+
msgid ""
|
4688 |
+
"MonsterInsights makes it “effortless” to properly connect your WordPress "
|
4689 |
+
"site with Google Analytics, so you can start making data-driven decisions "
|
4690 |
+
"to grow your business."
|
4691 |
msgstr ""
|
4692 |
|
4693 |
+
#: src/vue/pages/about/views/AboutUs.vue:188
|
4694 |
+
msgid ""
|
4695 |
+
"The ExactMetrics Google Analytics for WordPress plugin helps you properly "
|
4696 |
+
"setup all the powerful Google Analytics tracking features without writing "
|
4697 |
+
"any code or hiring a developer."
|
4698 |
msgstr ""
|
4699 |
|
4700 |
+
#: src/vue/pages/about/views/AboutUs.vue:205
|
4701 |
msgid ""
|
4702 |
+
"Make sure your website's emails reach the inbox. Our goal is to make email "
|
4703 |
+
"deliverability easy and reliable. Trusted by over 2 million websites."
|
4704 |
msgstr ""
|
4705 |
|
4706 |
+
#: src/vue/pages/about/views/AboutUs.vue:222
|
4707 |
+
msgid ""
|
4708 |
+
"Create a simple Coming Soon Page, Under Construction or Maintenance Mode "
|
4709 |
+
"Page. Work on your site in private while visitors see a “Coming Soon” or "
|
4710 |
+
"“Maintenance Mode” page."
|
4711 |
msgstr ""
|
4712 |
|
4713 |
+
#: src/vue/pages/about/views/AboutUs.vue:239
|
4714 |
+
msgid ""
|
4715 |
+
"TrustPulse uses FOMO (Fear of Missing Out) to boost your sales and "
|
4716 |
+
"conversions with social proof notifications. Use it to boost sales on your "
|
4717 |
+
"Woocommerce store, increase signups on your membership site, get more email "
|
4718 |
+
"subscribers, and more."
|
4719 |
msgstr ""
|
4720 |
|
4721 |
+
#: src/vue/pages/about/views/AboutUs.vue:248
|
4722 |
msgid ""
|
4723 |
+
"Turn your visitors into brand ambassadors! Easily grow your email list, "
|
4724 |
+
"website traffic, and social media followers with powerful viral giveaways & "
|
4725 |
+
"contests."
|
4726 |
msgstr ""
|
4727 |
|
4728 |
+
#: src/vue/pages/about/views/AboutUs.vue:265
|
4729 |
msgid ""
|
4730 |
+
"Display completely customizable Facebook feeds of any public Facebook page "
|
4731 |
+
"or Group."
|
4732 |
msgstr ""
|
4733 |
|
4734 |
+
#: src/vue/pages/about/views/AboutUs.vue:282
|
4735 |
msgid ""
|
4736 |
+
"Display beautifully clean, customizable, and responsive Instagram feeds "
|
4737 |
+
"from multiple Instagram accounts."
|
4738 |
msgstr ""
|
4739 |
|
4740 |
+
#: src/vue/pages/about/views/AboutUs.vue:299
|
4741 |
+
msgid ""
|
4742 |
+
"Display completely customizable, responsive and search engine crawlable "
|
4743 |
+
"Twitter feeds on your website."
|
4744 |
msgstr ""
|
4745 |
|
4746 |
+
#: src/vue/pages/about/views/AboutUs.vue:316
|
4747 |
+
msgid ""
|
4748 |
+
"The Feeds for YouTube plugin allows you to display customizable YouTube "
|
4749 |
+
"feeds from any YouTube channel."
|
4750 |
msgstr ""
|
4751 |
|
4752 |
+
#: src/vue/pages/social-networks/views/SocialProfiles.vue:26
|
4753 |
+
msgid ""
|
4754 |
+
"To let search engines know which profiles are associated with this site, "
|
4755 |
+
"enter them below:"
|
4756 |
msgstr ""
|
4757 |
|
4758 |
+
#: src/vue/pages/social-networks/views/Pinterest.vue:46
|
4759 |
+
msgid ""
|
4760 |
+
"Pinterest uses Open Graph metadata just like Facebook, so be sure to keep "
|
4761 |
+
"Open Graph enabled on the Facebook tab checked if you want to optimize your "
|
4762 |
+
"site for Pinterest."
|
4763 |
msgstr ""
|
4764 |
|
4765 |
+
#: src/vue/pages/social-networks/views/Pinterest.vue:47
|
4766 |
+
msgid "Learn how to get your Pinterest Verification Code"
|
4767 |
msgstr ""
|
4768 |
|
4769 |
+
#: src/vue/pages/social-networks/views/Pinterest.vue:48
|
4770 |
+
msgid ""
|
4771 |
+
"If you have already confirmed your website with Pinterest, you can skip the "
|
4772 |
+
"step below."
|
4773 |
msgstr ""
|
4774 |
|
4775 |
+
#: src/vue/pages/social-networks/views/Pinterest.vue:49
|
4776 |
+
msgid "Pinterest Verification Code"
|
4777 |
msgstr ""
|
4778 |
|
4779 |
+
#: src/vue/pages/social-networks/views/Twitter.vue:432
|
4780 |
+
msgid "Twitter Card Settings"
|
4781 |
msgstr ""
|
4782 |
|
4783 |
+
# Translators: 1 - The plugin name ("All in One SEO").
|
4784 |
+
#: src/vue/pages/social-networks/views/Twitter.vue:434
|
4785 |
+
msgid ""
|
4786 |
+
"Enable this feature if you want Twitter to display a preview card with "
|
4787 |
+
"images and a text excerpt when a link to your site is shared."
|
4788 |
msgstr ""
|
4789 |
|
4790 |
+
#: src/vue/pages/social-networks/views/Twitter.vue:435
|
4791 |
+
msgid "Enable Twitter Card"
|
4792 |
msgstr ""
|
4793 |
|
4794 |
+
#: src/vue/pages/social-networks/views/Twitter.vue:436
|
4795 |
+
msgid "Default Card Type"
|
4796 |
msgstr ""
|
4797 |
|
4798 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:681
|
4799 |
+
msgid "Default Post Image Source"
|
4800 |
msgstr ""
|
4801 |
|
4802 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:682
|
4803 |
+
msgid "Default Term Image Source"
|
4804 |
msgstr ""
|
4805 |
|
4806 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:685
|
4807 |
+
msgid "Post Custom Field Name"
|
4808 |
msgstr ""
|
4809 |
|
4810 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:686
|
4811 |
+
msgid "Term Custom Field Name"
|
4812 |
msgstr ""
|
4813 |
|
4814 |
+
#: src/vue/pages/social-networks/views/Twitter.vue:445
|
4815 |
+
msgid "Default Post Twitter Image"
|
4816 |
msgstr ""
|
4817 |
|
4818 |
+
#: src/vue/pages/social-networks/views/Twitter.vue:446
|
4819 |
+
msgid "Default Term Twitter Image"
|
4820 |
msgstr ""
|
4821 |
|
4822 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:692
|
4823 |
+
msgid "Home Page Settings"
|
4824 |
msgstr ""
|
4825 |
|
4826 |
+
#: src/vue/pages/social-networks/views/Twitter.vue:452
|
4827 |
+
msgid "Home Page Image"
|
|
|
4828 |
msgstr ""
|
4829 |
|
4830 |
+
#: src/vue/pages/setup-wizard/views/SearchAppearance.vue:255
|
4831 |
+
msgid "Home Page Title"
|
4832 |
msgstr ""
|
4833 |
|
4834 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:699
|
4835 |
+
msgid "Use the home page title"
|
4836 |
msgstr ""
|
4837 |
|
4838 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:701
|
4839 |
+
msgid "Click on the tags below to insert variables into your home page title."
|
4840 |
msgstr ""
|
4841 |
|
4842 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:702
|
4843 |
+
msgid "Description"
|
|
|
4844 |
msgstr ""
|
4845 |
|
4846 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:703
|
4847 |
+
msgid "Use the home page description"
|
4848 |
msgstr ""
|
4849 |
|
4850 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:704
|
4851 |
+
msgid "Click on the tags below to insert variables into your description."
|
4852 |
msgstr ""
|
4853 |
|
4854 |
+
#: src/vue/pages/social-networks/views/Twitter.vue:460
|
4855 |
+
msgid "Show Twitter Author"
|
4856 |
msgstr ""
|
4857 |
|
4858 |
+
# Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag.
|
4859 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:728
|
4860 |
+
msgid ""
|
4861 |
+
"The home page settings below have been disabled because you are using a "
|
4862 |
+
"static home page. You can %1$sedit your home page settings%2$s directly to "
|
4863 |
+
"change the title, meta and image."
|
4864 |
msgstr ""
|
4865 |
|
4866 |
+
#: src/vue/pages/social-networks/views/Twitter.vue:463
|
4867 |
+
msgid "Card Type"
|
4868 |
msgstr ""
|
4869 |
|
4870 |
+
#: src/vue/pages/social-networks/views/Twitter.vue:464
|
4871 |
+
msgid "Additional Data"
|
4872 |
msgstr ""
|
4873 |
|
4874 |
+
#: src/vue/pages/social-networks/views/Twitter.vue:465
|
4875 |
+
msgid ""
|
4876 |
+
"Enable this option to show additional Twitter data on your posts and pages "
|
4877 |
+
"(i.e., who the post was written by and how long it might take to read the "
|
4878 |
+
"article)."
|
4879 |
msgstr ""
|
4880 |
|
4881 |
+
# Translators: 1 - The plugin short name ("AIOSEO"), 2 - Learn more link.
|
4882 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:722
|
4883 |
+
msgid "Default Term Image Source is only available for licensed %1$s users. %2$s"
|
4884 |
msgstr ""
|
4885 |
|
4886 |
+
#: src/vue/pages/connect/views/Main.vue:30
|
4887 |
+
msgid "Connecting..."
|
4888 |
msgstr ""
|
4889 |
|
4890 |
+
#: src/vue/pages/setup-wizard/views/Success.vue:150
|
4891 |
+
msgid "Video and News Sitemaps"
|
4892 |
msgstr ""
|
4893 |
|
4894 |
+
#: src/vue/pages/setup-wizard/views/Success.vue:151
|
4895 |
+
msgid "Image SEO Optimization"
|
4896 |
msgstr ""
|
4897 |
|
4898 |
+
#: src/vue/pages/setup-wizard/views/Success.vue:153
|
4899 |
+
msgid "Advanced WooCommerce"
|
4900 |
msgstr ""
|
4901 |
|
4902 |
+
#: src/vue/pages/setup-wizard/views/Success.vue:155
|
4903 |
+
msgid "And many more..."
|
4904 |
msgstr ""
|
4905 |
|
4906 |
+
#: src/vue/pages/feature-manager/views/FeatureManager.vue:147
|
4907 |
+
msgid "Activate All Features"
|
4908 |
msgstr ""
|
4909 |
|
4910 |
+
#: src/vue/pages/feature-manager/views/FeatureManager.vue:148
|
4911 |
+
msgid "Deactivate All Features"
|
4912 |
msgstr ""
|
4913 |
|
4914 |
+
#: src/vue/pages/feature-manager/views/FeatureManager.vue:149
|
4915 |
+
msgid "Search for Features..."
|
4916 |
msgstr ""
|
4917 |
|
4918 |
+
# Translators: 1 - The plugin name ("All in One SEO").
|
4919 |
+
#: src/vue/pages/feature-manager/views/FeatureManager.vue:151
|
4920 |
+
msgid "Upgrade %1$s to Pro and Unlock all Features!"
|
4921 |
msgstr ""
|
4922 |
|
4923 |
+
#: src/vue/pages/feature-manager/views/FeatureManager.vue:152
|
4924 |
+
msgid "Upgrade to Pro and Unlock All Features"
|
4925 |
msgstr ""
|
4926 |
|
4927 |
+
#: src/vue/pages/feature-manager/views/FeatureManager.vue:153
|
4928 |
+
msgid "A valid license key is required in order to use our addons."
|
4929 |
msgstr ""
|
4930 |
|
4931 |
+
#: src/vue/pages/feature-manager/views/FeatureManager.vue:154
|
4932 |
+
msgid "Enter License Key"
|
4933 |
msgstr ""
|
4934 |
|
4935 |
+
#: src/vue/pages/feature-manager/views/FeatureManager.vue:155
|
4936 |
+
msgid "Purchase License"
|
4937 |
msgstr ""
|
4938 |
|
4939 |
+
#: src/vue/pages/feature-manager/views/FeatureManager.vue:159
|
4940 |
+
msgid ""
|
4941 |
+
"Globally control the Title attribute and Alt text for images in your "
|
4942 |
+
"content. These attributes are essential for both accessibility and SEO."
|
4943 |
msgstr ""
|
4944 |
|
4945 |
+
#: src/vue/pages/sitemaps/mixins/VideoSitemap.js:8
|
4946 |
+
msgid ""
|
4947 |
+
"The Video Sitemap works in much the same way as the XML Sitemap module, it "
|
4948 |
+
"generates an XML Sitemap specifically for video content on your site. "
|
4949 |
+
"Search engines use this information to display rich snippet information in "
|
4950 |
+
"search results."
|
4951 |
msgstr ""
|
4952 |
|
4953 |
+
#: src/vue/pages/sitemaps/mixins/NewsSitemap.js:8
|
4954 |
+
msgid ""
|
4955 |
+
"Our Google News Sitemap lets you control which content you submit to Google "
|
4956 |
+
"News and only contains articles that were published in the last 48 hours. "
|
4957 |
+
"In order to submit a News Sitemap to Google, you must have added your site "
|
4958 |
+
"to Google’s Publisher Center and had it approved."
|
4959 |
msgstr ""
|
4960 |
|
4961 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:678
|
4962 |
+
msgid "General Facebook Settings"
|
4963 |
msgstr ""
|
4964 |
|
4965 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:679
|
4966 |
+
msgid ""
|
4967 |
+
"Enable this feature if you want Facebook and other social media to display "
|
4968 |
+
"a preview with images and a text excerpt when a link to your site is shared."
|
4969 |
msgstr ""
|
4970 |
|
4971 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:680
|
4972 |
+
msgid "Enable Open Graph Markup"
|
4973 |
msgstr ""
|
4974 |
|
4975 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:687
|
4976 |
+
msgid "Default Post Facebook Image"
|
4977 |
msgstr ""
|
4978 |
|
4979 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:688
|
4980 |
+
msgid "Default Term Facebook Image"
|
|
|
4981 |
msgstr ""
|
4982 |
|
4983 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:691
|
4984 |
+
msgid ""
|
4985 |
+
"Minimum size: 200px x 200px, ideal ratio 1.91:1, 8MB max. (eg: 1640px x "
|
4986 |
+
"856px or 3280px x 1712px for retina screens)"
|
4987 |
msgstr ""
|
4988 |
|
4989 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:693
|
4990 |
+
msgid "The Title of the Page or Site you are Sharing"
|
4991 |
msgstr ""
|
4992 |
|
4993 |
+
# Translators: 1 - The plugin name ("All in One SEO").
|
4994 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:695
|
4995 |
+
msgid ""
|
4996 |
+
"This is what your page configured with %1$s will look like when shared via "
|
4997 |
+
"Facebook. The site title and description will be automatically added."
|
4998 |
msgstr ""
|
4999 |
|
5000 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:697
|
5001 |
+
msgid "Site Name"
|
5002 |
msgstr ""
|
5003 |
|
5004 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:707
|
5005 |
+
msgid "Facebook Admin ID"
|
5006 |
msgstr ""
|
5007 |
|
5008 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:708
|
5009 |
+
msgid "Facebook App ID"
|
5010 |
msgstr ""
|
5011 |
|
5012 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:709
|
5013 |
+
msgid "Facebook Author URL"
|
5014 |
msgstr ""
|
5015 |
|
5016 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:710
|
5017 |
+
msgid ""
|
5018 |
+
"Enter your Facebook Admin ID here. You can enter multiple Facebook Admin "
|
5019 |
+
"IDs by separating them with a comma."
|
5020 |
msgstr ""
|
5021 |
|
5022 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:711
|
5023 |
+
msgid ""
|
5024 |
+
"The Facebook App ID of the site's app. In order to use Facebook Insights, "
|
5025 |
+
"you must add the App ID to your page. Insights lets you view analytics for "
|
5026 |
+
"traffic to your site from Facebook. Find the App ID in your App Dashboard."
|
5027 |
msgstr ""
|
5028 |
|
5029 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:712
|
5030 |
+
msgid ""
|
5031 |
+
"Will be overriden if the Facebook author URL is present in the individual "
|
5032 |
+
"User Profile."
|
5033 |
msgstr ""
|
5034 |
|
5035 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:713
|
5036 |
+
msgid "How to get your Facebook Admin ID"
|
5037 |
msgstr ""
|
5038 |
|
5039 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:714
|
5040 |
+
msgid "How to get your Facebook App ID"
|
5041 |
msgstr ""
|
5042 |
|
5043 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:715
|
5044 |
+
msgid "How to get your Facebook Author URL"
|
5045 |
msgstr ""
|
5046 |
|
5047 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:716
|
5048 |
+
msgid "Show Facebook Author"
|
5049 |
msgstr ""
|
5050 |
|
5051 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:717
|
5052 |
+
msgid "Default Post Type Object Types"
|
5053 |
msgstr ""
|
5054 |
|
5055 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:718
|
5056 |
+
msgid "Default Taxonomy Object Types"
|
5057 |
msgstr ""
|
5058 |
|
5059 |
+
# Translators: 1 - The plugin short name ("AIOSEO"), 2 - Learn more link.
|
5060 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:720
|
5061 |
+
msgid ""
|
5062 |
+
"Default Taxonomy Object Types are only available for licensed %1$s users. "
|
5063 |
+
"%2$s"
|
5064 |
msgstr ""
|
5065 |
|
5066 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:723
|
5067 |
+
msgid "Automatically Generate Article Tags"
|
5068 |
msgstr ""
|
5069 |
|
5070 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:724
|
5071 |
+
msgid "Use Keywords in Article Tags"
|
5072 |
msgstr ""
|
5073 |
|
5074 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:725
|
5075 |
+
msgid "Use Categories in Article Tags"
|
5076 |
msgstr ""
|
5077 |
|
5078 |
+
#: src/vue/pages/social-networks/views/Facebook.vue:726
|
5079 |
+
msgid "Use Post Tags in Article Tags"
|
5080 |
msgstr ""
|
5081 |
|
5082 |
+
#: src/vue/pages/local-seo/views/pro/Maps.vue:102
|
5083 |
+
#: src/vue/pages/local-seo/views/pro/MapsActivate.vue:50
|
5084 |
+
msgid "Google Maps API Key"
|
5085 |
msgstr ""
|
5086 |
|
5087 |
+
#: src/vue/pages/local-seo/views/pro/MapsActivate.vue:51
|
5088 |
+
msgid ""
|
5089 |
+
"Integrating with Google Maps will allow your users to find exactly where "
|
5090 |
+
"your business is located. Our interactive maps let them see your Google "
|
5091 |
+
"Reviews and get directions directly from your site. Create multiple maps "
|
5092 |
+
"for use with multiple locations."
|
5093 |
msgstr ""
|
5094 |
|
5095 |
+
#: src/vue/pages/local-seo/views/pro/Maps.vue:104
|
5096 |
+
#: src/vue/pages/local-seo/views/pro/MapsActivate.vue:52
|
5097 |
+
msgid "API Key"
|
5098 |
msgstr ""
|
5099 |
|
5100 |
+
#: src/vue/pages/local-seo/views/pro/Maps.vue:106
|
5101 |
+
#: src/vue/pages/local-seo/views/pro/MapsActivate.vue:53
|
5102 |
+
msgid "Map Settings"
|
5103 |
msgstr ""
|
5104 |
|
5105 |
+
# Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag, 3 - The plugin short name ("AIOSEO")
|
5106 |
+
#: src/vue/pages/local-seo/views/pro/Maps.vue:116
|
5107 |
+
#: src/vue/pages/local-seo/views/pro/MapsActivate.vue:59
|
5108 |
+
msgid ""
|
5109 |
+
"To add this widget, visit the %1$swidgets page%2$s and look for the \"%3$s "
|
5110 |
+
"Local - Map\" widget."
|
5111 |
msgstr ""
|
5112 |
|
5113 |
+
# Translators: 1 - Learn more link.
|
5114 |
+
#: src/vue/pages/local-seo/views/pro/Maps.vue:121
|
5115 |
+
#: src/vue/pages/local-seo/views/pro/MapsActivate.vue:64
|
5116 |
+
msgid "Use the following shortcode to display the location map. %1$s"
|
5117 |
msgstr ""
|
5118 |
|
5119 |
+
# Translators: 1 - The plugin short name ("AIOSEO")
|
5120 |
+
#: src/vue/pages/local-seo/views/pro/Maps.vue:126
|
5121 |
+
#: src/vue/pages/local-seo/views/pro/MapsActivate.vue:69
|
5122 |
+
msgid ""
|
5123 |
+
"To add this block, edit a page or post and search for the \"%1$s Local - "
|
5124 |
+
"Map\" block."
|
5125 |
msgstr ""
|
5126 |
|
5127 |
+
# Translators: 1 - Learn more link.
|
5128 |
+
#: src/vue/pages/local-seo/views/pro/Maps.vue:131
|
5129 |
+
#: src/vue/pages/local-seo/views/pro/MapsActivate.vue:74
|
5130 |
+
msgid ""
|
5131 |
+
"Use the following PHP code anywhere in your theme to display the location "
|
5132 |
+
"map. %1$s"
|
5133 |
msgstr ""
|
5134 |
|
5135 |
+
# Translators: 1 - Learn more link.
|
5136 |
+
#: src/vue/pages/local-seo/views/pro/Locations.vue:103
|
5137 |
+
msgid ""
|
5138 |
+
"Use the following PHP code anywhere in your theme to display the location "
|
5139 |
+
"info. %1$s"
|
5140 |
msgstr ""
|
5141 |
|
5142 |
+
# Translators: 1 - The plugin short name ("AIOSEO").
|
5143 |
+
#: src/vue/pages/local-seo/views/pro/Locations.vue:109
|
5144 |
+
msgid ""
|
5145 |
+
"Whether your business has multiple locations, or just one, %1$s makes it "
|
5146 |
+
"easy to configure and display relevant information about your local "
|
5147 |
+
"business. You can use the custom-built tools below, or you can use the "
|
5148 |
+
"Locations custom post type (multiple locations only) to generate relevant "
|
5149 |
+
"and necessary information for search engines or for your customers."
|
5150 |
msgstr ""
|
5151 |
|
5152 |
+
#: src/vue/pages/local-seo/views/pro/Locations.vue:111
|
5153 |
+
msgid ""
|
5154 |
+
"Use the %1$sLocations%2$s Post Type in the menu on the left to start adding "
|
5155 |
+
"your locations."
|
5156 |
msgstr ""
|
5157 |
|
5158 |
+
# Translators: 1 - The plugin short name ("AIOSEO"), 2 - The plugin short name ("AIOSEO").
|
5159 |
+
#: src/vue/pages/local-seo/views/pro/Locations.vue:113
|
5160 |
+
msgid ""
|
5161 |
+
"Multiple Locations feature is available only for %1$s Pro users. Upgrade to "
|
5162 |
+
"Pro and unlock all %2$s features!"
|
5163 |
msgstr ""
|
5164 |
|
5165 |
+
# Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag, 3 - The plugin short name ("AIOSEO")
|
5166 |
+
#: src/vue/pages/local-seo/views/pro/Locations.vue:88
|
5167 |
+
msgid ""
|
5168 |
+
"To add this widget, visit the %1$swidgets page%2$s and look for the \"%3$s "
|
5169 |
+
"Local - Business Info\" widget."
|
5170 |
msgstr ""
|
5171 |
|
5172 |
+
# Translators: 1 - Learn more link.
|
5173 |
+
#: src/vue/pages/local-seo/views/pro/Locations.vue:93
|
5174 |
+
msgid "Use the following shortcode to display the location info. %1$s"
|
5175 |
msgstr ""
|
5176 |
|
5177 |
+
# Translators: 1 - The plugin short name ("AIOSEO")
|
5178 |
+
#: src/vue/pages/local-seo/views/pro/Locations.vue:98
|
5179 |
+
msgid ""
|
5180 |
+
"To add this block, edit a page or post and search for the \"%1$s Local - "
|
5181 |
+
"Business Info\" block."
|
5182 |
msgstr ""
|
5183 |
|
5184 |
+
#: src/vue/pages/local-seo/views/pro/Maps.vue:103
|
5185 |
+
msgid ""
|
5186 |
+
"Integrating with Google Maps will allow your users to find exactly where "
|
5187 |
+
"your business is located. Our interactive maps let them see your Google "
|
5188 |
+
"Reviews and get directions directly from your site. Create multiple maps "
|
5189 |
+
"for use with multiple locations. %s"
|
5190 |
msgstr ""
|
5191 |
|
5192 |
+
#: src/vue/pages/local-seo/views/pro/Maps.vue:105
|
5193 |
+
msgid "A Google API Key is necessary to render your maps. %s"
|
5194 |
msgstr ""
|
5195 |
|
5196 |
+
#: src/vue/pages/local-seo/views/pro/Maps.vue:107
|
5197 |
+
msgid ""
|
5198 |
+
"Your API Key is invalid. Please make sure you have set your key correctly. "
|
5199 |
+
"%1$s"
|
5200 |
msgstr ""
|
5201 |
|
5202 |
+
#: src/vue/pages/local-seo/views/pro/Maps.vue:108
|
5203 |
+
msgid ""
|
5204 |
+
"Your Maps Embed API is not enabled. For a more seamless experience with "
|
5205 |
+
"rich information cards, please enable it in your Google Project. %1$s"
|
5206 |
msgstr ""
|
5207 |
|
5208 |
+
#: src/vue/pages/local-seo/views/pro/Maps.vue:109
|
5209 |
+
msgid "Display Map"
|
5210 |
msgstr ""
|
5211 |
|
5212 |
+
#: src/vue/pages/local-seo/views/pro/Maps.vue:110
|
5213 |
+
msgid "Map Preview"
|
5214 |
msgstr ""
|
5215 |
|
5216 |
+
# Translators: 1 - Strong tag, 2 - Close strong tag.
|
5217 |
+
#: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:100
|
5218 |
+
msgid ""
|
5219 |
+
"%1$sThe custom marker should be: 100x100 px.%2$s If the image exceeds those "
|
5220 |
+
"dimensions it could (partially) cover the info popup."
|
5221 |
msgstr ""
|
5222 |
|
5223 |
+
#: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:90
|
5224 |
+
msgid "Show label"
|
5225 |
msgstr ""
|
5226 |
|
5227 |
+
#: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:91
|
5228 |
+
msgid "Show icon"
|
5229 |
msgstr ""
|
5230 |
|
5231 |
+
#: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:93
|
5232 |
+
msgid "Map Display"
|
5233 |
msgstr ""
|
5234 |
|
5235 |
+
#: src/vue/pages/local-business-seo/blocks/LocationMapSidebar.vue:96
|
5236 |
+
msgid "Custom Marker"
|
5237 |
msgstr ""
|
5238 |
|
5239 |
+
#: src/vue/pages/local-seo/views/lite/Maps.vue:58
|
5240 |
+
msgid "Google Places Support"
|
5241 |
msgstr ""
|
5242 |
|
5243 |
+
#: src/vue/pages/local-seo/views/lite/Maps.vue:59
|
5244 |
+
msgid "Google Reviews"
|
5245 |
msgstr ""
|
5246 |
|
5247 |
+
#: src/vue/pages/local-seo/views/lite/Maps.vue:60
|
5248 |
+
msgid "Driving Directions"
|
5249 |
msgstr ""
|
5250 |
|
5251 |
+
# Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro".
|
5252 |
+
#: src/vue/pages/local-seo/views/lite/Maps.vue:70
|
5253 |
+
msgid "Local SEO Maps are only available for licensed %1$s %2$s users."
|
5254 |
msgstr ""
|
5255 |
|
5256 |
+
#: src/vue/pages/local-seo/views/lite/Maps.vue:71
|
5257 |
+
msgid ""
|
5258 |
+
"Show your location to your visitors using an interactive Google Map. Create "
|
5259 |
+
"multiple maps for use with multiple locations."
|
5260 |
msgstr ""
|
5261 |
|
5262 |
+
#: src/vue/pages/local-seo/views/lite/OpeningHours.vue:278
|
5263 |
+
msgid "Opening Hours block, widget and shortcode"
|
5264 |
msgstr ""
|
5265 |
|
5266 |
+
#: src/vue/pages/local-business-seo/blocks/OpeningHoursSidebar.vue:86
|
5267 |
+
msgid "Show Title"
|
5268 |
msgstr ""
|
5269 |
|
5270 |
+
#: src/vue/pages/local-business-seo/blocks/OpeningHoursSidebar.vue:87
|
5271 |
+
msgid "Show Icons"
|
5272 |
msgstr ""
|
5273 |
|
5274 |
+
# Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro".
|
5275 |
+
#: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:77
|
5276 |
+
msgid "Advanced Schema Markup is only available for licensed %1$s %2$s users."
|
5277 |
msgstr ""
|
5278 |
|
5279 |
+
# Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro".
|
5280 |
+
#: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:79
|
5281 |
+
msgid ""
|
5282 |
+
"%1$s %2$s allows you to customize the structured data markup for your Posts "
|
5283 |
+
"so that search engines can generate rich snippets for your content in "
|
5284 |
+
"search results."
|
5285 |
msgstr ""
|
5286 |
|
5287 |
+
#: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:80
|
5288 |
+
msgid "Upgrade to Pro and Unlock Advanced Schema Markup"
|
5289 |
msgstr ""
|
5290 |
|
5291 |
+
#: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:82
|
5292 |
+
msgid "Product (WooCommerce and EDD support)"
|
5293 |
msgstr ""
|
5294 |
|
5295 |
+
#: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:83
|
5296 |
+
msgid "FAQ Page"
|
5297 |
msgstr ""
|
5298 |
|
5299 |
+
#: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:84
|
5300 |
+
msgid "Software Application"
|
5301 |
msgstr ""
|
5302 |
|
5303 |
+
#: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:85
|
5304 |
+
msgid "Recipe"
|
5305 |
msgstr ""
|
5306 |
|
5307 |
+
#: src/vue/pages/search-appearance/views/partials/lite/Schema.vue:86
|
5308 |
+
msgid "Course"
|
5309 |
msgstr ""
|
5310 |
|
5311 |
+
#: src/vue/pages/search-appearance/views/ContentTypes.vue:70
|
5312 |
+
msgid "Custom Fields"
|
5313 |
msgstr ""
|
5314 |
|
5315 |
+
#: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:52
|
5316 |
+
msgid ""
|
5317 |
+
"List of custom field names to include in the SEO Page Analysis. Add one per "
|
5318 |
+
"line."
|
5319 |
msgstr ""
|
5320 |
|
5321 |
+
# Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro".
|
5322 |
+
#: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:54
|
5323 |
+
msgid ""
|
5324 |
+
"%1$s %2$s gives you advanced customizations for our page analysis feature, "
|
5325 |
+
"letting you add custom fields to analyze."
|
5326 |
msgstr ""
|
5327 |
|
5328 |
+
#: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:55
|
5329 |
+
msgid "Upgrade to Pro and Unlock Custom Fields"
|
5330 |
msgstr ""
|
5331 |
|
5332 |
+
# Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro".
|
5333 |
+
#: src/vue/pages/search-appearance/views/partials/lite/CustomFields.vue:57
|
5334 |
+
msgid "Custom Fields are only available for licensed %1$s %2$s users."
|
5335 |
msgstr ""
|
5336 |
|
5337 |
+
#: src/vue/pages/search-appearance/views/partials/pro/Schema.vue:117
|
5338 |
+
msgid "Web Page Type"
|
5339 |
msgstr ""
|
5340 |
|
5341 |
+
#: src/vue/pages/search-appearance/views/partials/TitleDescription.vue:144
|
5342 |
+
msgid "Show in Search Results"
|
5343 |
msgstr ""
|
5344 |
|
5345 |
+
#: src/vue/pages/search-appearance/views/partials/TitleDescription.vue:148
|
5346 |
+
msgid "Selecting \"No\" will no-index this page."
|
|
|
5347 |
msgstr ""
|
5348 |
|
5349 |
+
#: src/vue/pages/search-appearance/views/partials/Advanced.vue:107
|
5350 |
+
msgid "Robots Meta Settings"
|
5351 |
msgstr ""
|
5352 |
|
5353 |
+
#: src/vue/pages/search-appearance/views/partials/Advanced.vue:108
|
5354 |
+
msgid "Bulk Editing"
|
|
|
5355 |
msgstr ""
|
5356 |
|
5357 |
+
#: src/vue/pages/search-appearance/views/partials/Advanced.vue:109
|
5358 |
+
msgid "Read Only"
|
|
|
5359 |
msgstr ""
|
5360 |
|
5361 |
+
#: src/vue/pages/search-appearance/views/partials/Advanced.vue:110
|
5362 |
+
msgid "Other Options"
|
|
|
5363 |
msgstr ""
|
5364 |
|
5365 |
+
#: src/vue/pages/search-appearance/views/partials/Advanced.vue:111
|
5366 |
+
msgid "Show Date in Google Preview"
|
|
|
5367 |
msgstr ""
|
5368 |
|
5369 |
+
# Translators: 1 - The type of page (Post, Page, Category, Tag, etc.).
|
5370 |
+
#: src/vue/pages/search-appearance/views/partials/Advanced.vue:129
|
5371 |
+
msgid "Show %1$s Thumbnail in Google Custom Search"
|
|
|
|
|
5372 |
msgstr ""
|
5373 |
|
5374 |
+
# Translators: 1 - The plugin name ("All in One SEO")
|
5375 |
+
#: src/vue/pages/search-appearance/views/partials/Advanced.vue:133
|
5376 |
+
msgid "Show %1$s Meta Box"
|
5377 |
msgstr ""
|
5378 |
|
5379 |
+
#: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:112
|
5380 |
+
msgid "Title Attribute Format"
|
|
|
5381 |
msgstr ""
|
5382 |
|
5383 |
+
#: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:113
|
5384 |
+
msgid "Strip Punctuation for Title Attributes"
|
5385 |
msgstr ""
|
5386 |
|
5387 |
+
#: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:114
|
5388 |
+
msgid "Click on the tags below to insert variables into your title attribute."
|
5389 |
msgstr ""
|
5390 |
|
5391 |
+
#: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:115
|
5392 |
+
msgid "Alt Tag Attribute Format"
|
5393 |
msgstr ""
|
5394 |
|
5395 |
+
#: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:116
|
5396 |
+
msgid "Click on the tags below to insert variables into your alt tag attribute."
|
5397 |
msgstr ""
|
5398 |
|
5399 |
+
#: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:117
|
5400 |
+
msgid "Strip Punctuation for Alt Attributes"
|
5401 |
msgstr ""
|
5402 |
|
5403 |
+
#: src/vue/pages/sitemaps/mixins/NewsSitemap.js:16
|
5404 |
+
msgid "This feature requires one of the following plans:"
|
5405 |
msgstr ""
|
5406 |
|
5407 |
+
#: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:120
|
5408 |
+
msgid "Upgrade to Pro and Unlock Image SEO"
|
5409 |
msgstr ""
|
5410 |
|
5411 |
+
# Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro".
|
5412 |
+
#: src/vue/pages/search-appearance/views/lite/ImageSeo.vue:122
|
5413 |
+
msgid "Image SEO is only available for licensed %1$s %2$s users."
|
5414 |
msgstr ""
|
5415 |
|
5416 |
+
#: src/vue/pages/search-appearance/views/ContentTypes.vue:58
|
5417 |
+
msgid "Title & Description"
|
5418 |
msgstr ""
|
5419 |
|
5420 |
+
#: src/vue/pages/search-appearance/views/ContentTypes.vue:64
|
5421 |
+
msgid "Schema Markup"
|
5422 |
msgstr ""
|
5423 |
|
5424 |
+
#: src/vue/pages/search-appearance/views/Media.vue:106
|
5425 |
+
msgid "Redirect Attachment URLs"
|
|
|
|
|
|
|
5426 |
msgstr ""
|
5427 |
|
5428 |
+
#: src/vue/pages/search-appearance/views/Media.vue:107
|
5429 |
+
msgid "Attachment"
|
5430 |
msgstr ""
|
5431 |
|
5432 |
+
#: src/vue/pages/search-appearance/views/Media.vue:108
|
5433 |
+
msgid "Attachment Parent"
|
5434 |
msgstr ""
|
5435 |
|
5436 |
+
#: src/vue/pages/search-appearance/views/Media.vue:109
|
5437 |
+
msgid ""
|
5438 |
+
"We recommended redirecting attachment URL's back to the attachment since "
|
5439 |
+
"the default WordPress attachment pages have little SEO value."
|
5440 |
msgstr ""
|
5441 |
|
5442 |
+
#: src/vue/pages/search-appearance/views/GlobalSettings.vue:412
|
5443 |
+
msgid "Title Separator"
|
5444 |
msgstr ""
|
5445 |
|
5446 |
+
#: src/vue/pages/search-appearance/views/GlobalSettings.vue:413
|
5447 |
+
msgid "Separator Character"
|
|
|
5448 |
msgstr ""
|
5449 |
|
5450 |
+
# Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag.
|
5451 |
+
#: src/vue/pages/search-appearance/views/GlobalSettings.vue:415
|
5452 |
+
msgid ""
|
5453 |
+
"The home page settings below have been disabled because you are using a "
|
5454 |
+
"static home page. You can %1$sedit your home page settings%2$s directly to "
|
5455 |
+
"change the title and description."
|
5456 |
msgstr ""
|
5457 |
|
5458 |
+
#: src/vue/pages/search-appearance/views/GlobalSettings.vue:417
|
5459 |
+
msgid "Site Title"
|
5460 |
msgstr ""
|
5461 |
|
5462 |
+
#: src/vue/pages/search-appearance/views/GlobalSettings.vue:418
|
5463 |
+
#: src/vue/pages/setup-wizard/views/SearchAppearance.vue:253
|
5464 |
+
msgid "Click on the tags below to insert variables into your site title."
|
5465 |
msgstr ""
|
5466 |
|
5467 |
+
#: src/vue/pages/search-appearance/views/GlobalSettings.vue:421
|
5468 |
+
msgid "Knowledge Graph"
|
5469 |
msgstr ""
|
5470 |
|
5471 |
+
#: src/vue/pages/search-appearance/views/GlobalSettings.vue:422
|
5472 |
+
msgid ""
|
5473 |
+
"Google, Bing and other search engines use specific data from your schema "
|
5474 |
+
"markup to output data in their Knowledge Panels. This data is known as the "
|
5475 |
+
"Knowledge Graph. Use these settings to change how that data looks."
|
5476 |
msgstr ""
|
5477 |
|
5478 |
+
#: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:316
|
5479 |
+
msgid "Person or Organization"
|
5480 |
msgstr ""
|
5481 |
|
5482 |
+
#: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:318
|
5483 |
+
msgid "Person"
|
5484 |
msgstr ""
|
5485 |
|
5486 |
+
#: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:319
|
5487 |
+
msgid "Organization"
|
5488 |
msgstr ""
|
5489 |
|
5490 |
+
#: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:320
|
5491 |
+
msgid "Choose whether the site represents a person or an organization."
|
5492 |
msgstr ""
|
5493 |
|
5494 |
+
#: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:317
|
5495 |
+
msgid "Choose a Person"
|
|
|
|
|
|
|
5496 |
msgstr ""
|
5497 |
|
5498 |
+
#: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:324
|
5499 |
+
msgid "Choose a Contact Type"
|
|
|
|
|
|
|
5500 |
msgstr ""
|
5501 |
|
5502 |
+
#: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:325
|
5503 |
+
msgid "Contact Type"
|
5504 |
msgstr ""
|
5505 |
|
5506 |
+
#: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:326
|
5507 |
+
msgid "Select which team or department the phone number belongs to."
|
|
|
5508 |
msgstr ""
|
5509 |
|
5510 |
+
#: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:327
|
5511 |
+
msgid "Logo"
|
|
|
5512 |
msgstr ""
|
5513 |
|
5514 |
+
# Translators: 1 - Opening HTML bold tag, 2 - Closing HTML bold tag., 3 - "Pro", 4 - "Pro".
|
5515 |
+
#: src/vue/pages/search-appearance/views/GlobalSettings.vue:439
|
5516 |
+
msgid ""
|
5517 |
+
"Go to %1$sLocal SEO Settings%2$s and set up your local business info like "
|
5518 |
+
"location address, opening hours (%3$s), and Google Maps settings (%4$s)."
|
5519 |
msgstr ""
|
5520 |
|
5521 |
+
#: src/vue/pages/search-appearance/views/GlobalSettings.vue:440
|
5522 |
+
msgid "Go to Local SEO Settings"
|
5523 |
msgstr ""
|
5524 |
|
5525 |
+
#: src/vue/pages/search-appearance/views/GlobalSettings.vue:441
|
5526 |
+
msgid "Enable Schema Markup"
|
5527 |
msgstr ""
|
5528 |
|
5529 |
+
#: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:342
|
5530 |
+
msgid "Manually Enter Person"
|
5531 |
msgstr ""
|
5532 |
|
5533 |
+
#: src/vue/pages/search-appearance/views/Taxonomies.vue:59
|
5534 |
+
msgid "Upgrade to Pro and Unlock Custom Taxonomies"
|
5535 |
msgstr ""
|
5536 |
|
5537 |
+
# Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro".
|
5538 |
+
#: src/vue/pages/search-appearance/views/Taxonomies.vue:61
|
5539 |
+
msgid ""
|
5540 |
+
"%1$s %2$s lets you set the SEO title and description for custom taxonomies. "
|
5541 |
+
"You can also control all of the robots meta and other options just like the "
|
5542 |
+
"default category and tags taxonomies."
|
5543 |
msgstr ""
|
5544 |
|
5545 |
+
# Translators: 1 - Plugin short name ("AIOSEO"), 2 - "Pro".
|
5546 |
+
#: src/vue/pages/search-appearance/views/Taxonomies.vue:63
|
5547 |
+
msgid "Custom Taxonomy Support is only available for licensed %1$s %2$s users."
|
5548 |
msgstr ""
|
5549 |
|
5550 |
+
#: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:111
|
5551 |
+
msgid "Enter Competitor URL"
|
5552 |
msgstr ""
|
5553 |
|
5554 |
+
#: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:112
|
5555 |
+
msgid "Perform in-depth SEO Analysis of your competitor's website."
|
5556 |
msgstr ""
|
5557 |
|
5558 |
+
#: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:113
|
5559 |
+
msgid "Analyze"
|
5560 |
msgstr ""
|
5561 |
|
5562 |
+
#: src/vue/pages/seo-analysis/views/AnalyzeCompetitorSite.vue:114
|
5563 |
+
msgid "Please enter a valid URL."
|
5564 |
msgstr ""
|
5565 |
|
5566 |
+
#: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:67
|
5567 |
+
msgid "Complete SEO Checklist"
|
5568 |
msgstr ""
|
5569 |
|
5570 |
+
#: src/vue/pages/seo-analysis/views/SeoAuditChecklist.vue:80
|
5571 |
+
msgid "All Items"
|
5572 |
msgstr ""
|
5573 |
|
5574 |
+
#: src/vue/pages/dashboard/router/paths.js:19
|
5575 |
+
#: src/vue/pages/dashboard/views/Main.vue:211
|
5576 |
+
msgid "Dashboard"
|
5577 |
msgstr ""
|
5578 |
|
5579 |
+
#: src/vue/pages/tools/router/paths.js:19
|
5580 |
+
msgid "Robots.txt Editor"
|
5581 |
msgstr ""
|
5582 |
|
5583 |
+
#: src/vue/pages/tools/views/HtaccessEditor.vue:41
|
5584 |
+
msgid ".htaccess Editor"
|
5585 |
msgstr ""
|
5586 |
|
5587 |
+
#: src/vue/pages/tools/router/paths.js:46
|
5588 |
+
msgid "Import/Export"
|
5589 |
msgstr ""
|
5590 |
|
5591 |
+
#: src/vue/pages/tools/router/paths.js:55
|
5592 |
+
msgid "Database Tools"
|
5593 |
msgstr ""
|
5594 |
|
5595 |
+
#: src/vue/pages/tools/router/paths.js:64
|
5596 |
+
msgid "System Status"
|
5597 |
msgstr ""
|
5598 |
|
5599 |
+
#: src/vue/pages/setup-wizard/router/paths.js:19
|
5600 |
+
msgid "Welcome"
|
5601 |
msgstr ""
|
5602 |
|
5603 |
+
#: src/vue/pages/redirects/views/pro/partials/ImportOthers.vue:79
|
5604 |
+
msgid "Import"
|
5605 |
msgstr ""
|
5606 |
|
5607 |
+
#: src/vue/pages/settings/views/Breadcrumbs.vue:298
|
5608 |
+
#: src/vue/pages/setup-wizard/router/paths.js:37
|
5609 |
+
msgid "Category"
|
5610 |
msgstr ""
|
5611 |
|
5612 |
+
#: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:315
|
5613 |
+
msgid "Additional Site Information"
|
5614 |
msgstr ""
|
5615 |
|
5616 |
+
#: src/vue/pages/setup-wizard/router/paths.js:55
|
5617 |
+
msgid "Choose Features"
|
5618 |
msgstr ""
|
5619 |
|
5620 |
+
#: src/vue/pages/setup-wizard/router/paths.js:73
|
5621 |
+
msgid "Smart Recommendations"
|
|
|
5622 |
msgstr ""
|
5623 |
|
5624 |
+
#: src/vue/pages/setup-wizard/router/paths.js:91
|
5625 |
+
msgid "Success"
|
|
|
5626 |
msgstr ""
|
5627 |
|
5628 |
+
#: src/vue/store/actions.js:146
|
5629 |
+
msgid "We couldn't connect to the site, please try again later."
|
5630 |
msgstr ""
|
5631 |
|
5632 |
+
#: src/vue/pages/redirects/router/paths.js:28
|
5633 |
+
msgid "Full Site Redirect"
|
5634 |
msgstr ""
|
5635 |
|
5636 |
+
#: src/vue/pages/redirects/router/paths.js:37
|
5637 |
+
#: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:118
|
5638 |
+
#: src/vue/pages/tools/views/DatabaseTools.vue:265
|
5639 |
+
msgid "Logs"
|
5640 |
msgstr ""
|
5641 |
|
5642 |
+
#: src/vue/pages/redirects/router/paths.js:46
|
5643 |
+
#: src/vue/pages/tools/views/DatabaseTools.vue:269
|
5644 |
+
msgid "404 Logs"
|
5645 |
msgstr ""
|
5646 |
|
5647 |
+
#: src/vue/pages/redirects/router/paths.js:55
|
5648 |
+
msgid "Import / Export"
|
5649 |
msgstr ""
|
5650 |
|
5651 |
+
#: src/vue/pages/sitemaps/router/paths.js:19
|
5652 |
+
msgid "General Sitemap"
|
5653 |
msgstr ""
|
5654 |
|
5655 |
+
#: src/vue/pages/sitemaps/router/paths.js:48
|
5656 |
+
msgid "HTML Sitemap"
|
5657 |
msgstr ""
|
5658 |
|
5659 |
+
#: src/vue/pages/sitemaps/router/paths.js:57
|
5660 |
+
msgid "RSS Sitemap"
|
|
|
5661 |
msgstr ""
|
5662 |
|
5663 |
+
#: src/vue/pages/settings/router/paths.js:19
|
5664 |
+
msgid "General Settings"
|
5665 |
msgstr ""
|
5666 |
|
5667 |
+
#: src/vue/pages/dashboard/views/Main.vue:209
|
5668 |
+
msgid "Social meta for Categories, Tags and Custom Taxonomies"
|
5669 |
msgstr ""
|
5670 |
|
5671 |
+
#: src/vue/pages/dashboard/views/Main.vue:212
|
5672 |
+
msgid "There are no new notifications at this moment."
|
5673 |
msgstr ""
|
5674 |
|
5675 |
+
#: src/vue/pages/dashboard/views/Main.vue:213
|
5676 |
+
msgid "See all dismissed notifications."
|
5677 |
msgstr ""
|
5678 |
|
5679 |
+
#: src/vue/pages/dashboard/views/Main.vue:214
|
5680 |
+
msgid "SEO Site Score"
|
5681 |
msgstr ""
|
5682 |
|
5683 |
+
#: src/vue/pages/dashboard/views/Main.vue:215
|
5684 |
+
msgid "Support"
|
5685 |
msgstr ""
|
5686 |
|
5687 |
+
# Translators: 1 - The plugin name ("All in One SEO").
|
5688 |
+
#: src/vue/pages/dashboard/views/Main.vue:217
|
5689 |
+
msgid "Read the %1$s user guide"
|
5690 |
msgstr ""
|
5691 |
|
5692 |
+
#: src/vue/pages/dashboard/views/Main.vue:218
|
5693 |
+
msgid "Access our Premium Support"
|
5694 |
msgstr ""
|
5695 |
|
5696 |
+
#: src/vue/pages/dashboard/views/Main.vue:219
|
5697 |
+
msgid "View the Changelog"
|
5698 |
msgstr ""
|
5699 |
|
5700 |
+
#: src/vue/pages/dashboard/views/Main.vue:220
|
5701 |
+
msgid "Watch video tutorials"
|
5702 |
msgstr ""
|
5703 |
|
5704 |
+
#: src/vue/pages/dashboard/views/Main.vue:221
|
5705 |
+
msgid "Getting started? Read the Beginners Guide"
|
5706 |
msgstr ""
|
5707 |
|
5708 |
+
#: src/vue/pages/dashboard/views/Main.vue:222
|
5709 |
+
msgid "Quicklinks"
|
|
|
5710 |
msgstr ""
|
5711 |
|
5712 |
+
#: src/vue/pages/dashboard/views/Main.vue:223
|
5713 |
+
msgid ""
|
5714 |
+
"You can use these quicklinks to quickly access our settings pages to adjust "
|
5715 |
+
"your site's SEO settings."
|
5716 |
msgstr ""
|
5717 |
|
5718 |
+
#: src/vue/pages/dashboard/views/Main.vue:225
|
5719 |
+
msgid ""
|
5720 |
+
"Configure how your website content will look in Google, Bing and other "
|
5721 |
+
"search engines."
|
5722 |
msgstr ""
|
5723 |
|
5724 |
+
#: src/vue/pages/dashboard/views/Main.vue:227
|
5725 |
+
msgid ""
|
5726 |
+
"Check how your site scores with our SEO analyzer and compare against your "
|
5727 |
+
"competitor's site."
|
5728 |
msgstr ""
|
5729 |
|
5730 |
+
#: src/vue/pages/dashboard/views/Main.vue:228
|
5731 |
+
msgid ""
|
5732 |
+
"Improve local SEO rankings with schema for business address, open hours, "
|
5733 |
+
"contact, and more."
|
5734 |
msgstr ""
|
5735 |
|
5736 |
+
#: src/vue/pages/dashboard/views/Main.vue:230
|
5737 |
+
msgid ""
|
5738 |
+
"Setup Open Graph for Facebook, Twitter, etc. to show the right content / "
|
5739 |
+
"thumbnail preview."
|
5740 |
msgstr ""
|
5741 |
|
5742 |
+
#: src/vue/pages/dashboard/views/Main.vue:231
|
5743 |
+
#: src/vue/pages/redirects/views/pro/partials/ExportRedirects.vue:134
|
5744 |
+
msgid "Tools"
|
5745 |
msgstr ""
|
5746 |
|
5747 |
+
#: src/vue/pages/dashboard/views/Main.vue:232
|
5748 |
msgid ""
|
5749 |
+
"Fine-tune your site with our powerful tools including Robots.txt editor, "
|
5750 |
+
"import/export and more."
|
5751 |
msgstr ""
|
5752 |
|
5753 |
+
#: src/vue/pages/dashboard/views/Main.vue:234
|
5754 |
+
msgid "Manage all of your sitemap settings, including XML, Video, News and more."
|
5755 |
msgstr ""
|
5756 |
|
5757 |
+
# Translators: 1 - The plugin short name ("AIOSEO"), 2 - "Pro".
|
5758 |
+
#: src/vue/pages/dashboard/views/Main.vue:236
|
5759 |
+
msgid "Get more features in %1$s %2$s:"
|
5760 |
msgstr ""
|
5761 |
|
5762 |
+
# Translators: 1 - "Pro", 2 - A percentage ("50%").
|
5763 |
+
#: src/vue/pages/dashboard/views/Main.vue:238
|
5764 |
+
msgid "Upgrade to %1$s and Save %2$s"
|
5765 |
msgstr ""
|
5766 |
|
5767 |
+
#: src/vue/pages/dashboard/views/Main.vue:240
|
5768 |
+
msgid "Relaunch Setup Wizard"
|
5769 |
msgstr ""
|
5770 |
|
5771 |
+
# Translators: 1 - A number representing the remaining notifications.
|
5772 |
+
#: src/vue/pages/dashboard/views/Main.vue:249
|
5773 |
+
msgid "You have %1$s more notifications"
|
5774 |
msgstr ""
|
5775 |
|
5776 |
+
#: src/vue/pages/tools/views/BadBotBlocker.vue:90
|
5777 |
+
msgid "Block Bad Bots using HTTP"
|
|
|
5778 |
msgstr ""
|
5779 |
|
5780 |
+
#: src/vue/pages/tools/views/BadBotBlocker.vue:91
|
5781 |
+
msgid "Block Referral Spam using HTTP"
|
|
|
5782 |
msgstr ""
|
5783 |
|
5784 |
+
#: src/vue/pages/tools/views/BadBotBlocker.vue:92
|
5785 |
+
msgid "Track Blocked Bots"
|
5786 |
msgstr ""
|
5787 |
|
5788 |
+
#: src/vue/pages/tools/views/BadBotBlocker.vue:93
|
5789 |
+
msgid "Use Custom Blocklists"
|
5790 |
msgstr ""
|
5791 |
|
5792 |
+
#: src/vue/pages/tools/views/BadBotBlocker.vue:94
|
5793 |
+
msgid "User Agent Blocklist"
|
5794 |
msgstr ""
|
5795 |
|
5796 |
+
#: src/vue/pages/tools/views/BadBotBlocker.vue:95
|
5797 |
+
msgid "Referer Blocklist"
|
5798 |
msgstr ""
|
5799 |
|
5800 |
+
#: src/vue/pages/tools/views/BadBotBlocker.vue:96
|
5801 |
+
msgid "Blocked Bots Log"
|
5802 |
msgstr ""
|
5803 |
|
5804 |
+
# Translators: 1 - The location of the log file.
|
5805 |
+
#: src/vue/pages/tools/views/BadBotBlocker.vue:98
|
5806 |
+
msgid "The log for the blocked bots is located here: %1$s"
|
5807 |
msgstr ""
|
5808 |
|
5809 |
+
#: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:322
|
5810 |
+
msgid "Organization Name"
|
5811 |
msgstr ""
|
5812 |
|
5813 |
+
#: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:332
|
5814 |
+
msgid "Default Social Share Image"
|
5815 |
msgstr ""
|
5816 |
|
5817 |
+
#: src/vue/pages/setup-wizard/views/AdditionalInformation.vue:333
|
5818 |
+
msgid "Your Social Profiles"
|
5819 |
msgstr ""
|
5820 |
|
5821 |
#: src/vue/pages/tools/views/partials/ImportOthers.vue:122
|
5827 |
msgid "Choose a plugin to import SEO data directly into %1$s."
|
5828 |
msgstr ""
|
5829 |
|
5830 |
+
#: src/vue/pages/redirects/views/pro/partials/ImportOthers.vue:78
|
5831 |
msgid "Select a plugin..."
|
5832 |
msgstr ""
|
5833 |
|
5835 |
msgid "All Settings"
|
5836 |
msgstr ""
|
5837 |
|
5838 |
+
#: src/vue/pages/redirects/views/pro/partials/ImportOthers.vue:81
|
5839 |
msgid "not installed"
|
5840 |
msgstr ""
|
5841 |
|
5852 |
msgstr ""
|
5853 |
|
5854 |
# Translators: 1 - The name of the plugin being imported (e.g "Yoast SEO").
|
5855 |
+
#: src/vue/pages/redirects/views/pro/partials/ImportOthers.vue:109
|
5856 |
msgid "%1$s was successfully imported!"
|
5857 |
msgstr ""
|
5858 |
|
5859 |
# Translators: 1 - The name of the plugin being imported (e.g "Yoast SEO").
|
5860 |
+
#: src/vue/pages/redirects/views/pro/partials/ImportOthers.vue:113
|
5861 |
msgid "An error occurred while importing %1$s. Please try again."
|
5862 |
msgstr ""
|
5863 |
|
5864 |
# Translators: 1 - The name of the plugin (e.g. "Yoast SEO"), 2 - The version of the plugin (e.g. "10.2.3").
|
5865 |
+
#: src/vue/pages/redirects/views/pro/partials/ImportOthers.vue:156
|
5866 |
msgid ""
|
5867 |
"We do not support importing from the currently installed version of %1$s "
|
5868 |
"(%2$s). Please upgrade to the latest version and try again."
|
5869 |
msgstr ""
|
5870 |
|
5871 |
+
#: src/vue/pages/setup-wizard/views/Success.vue:134
|
5872 |
+
msgid "Congratulations, your site is now SEO ready!"
|
5873 |
msgstr ""
|
5874 |
|
5875 |
+
#: src/vue/pages/setup-wizard/views/Success.vue:135
|
5876 |
+
msgid "Finish Setup and Go to the Dashboard"
|
5877 |
msgstr ""
|
5878 |
|
5879 |
+
#: src/vue/pages/setup-wizard/views/Success.vue:136
|
5880 |
+
msgid "Here's what to do next:"
|
5881 |
msgstr ""
|
5882 |
|
5883 |
+
#: src/vue/pages/setup-wizard/views/Success.vue:137
|
5884 |
+
msgid "Join our Community"
|
5885 |
msgstr ""
|
5886 |
|
5887 |
+
#: src/vue/pages/setup-wizard/views/Success.vue:138
|
5888 |
+
msgid "Join on Facebook"
|
5889 |
msgstr ""
|
5890 |
|
5891 |
+
#: src/vue/pages/setup-wizard/views/Success.vue:139
|
5892 |
+
msgid "Follow on Twitter"
|
5893 |
msgstr ""
|
5894 |
|
5895 |
+
#: src/vue/pages/setup-wizard/views/Success.vue:140
|
5896 |
+
msgid "Read our Step By Step Guide to Improve your SEO Rankings"
|
5897 |
msgstr ""
|
5898 |
|
5899 |
+
# Translators: 1 - Plugin short name ("AIOSEO").
|
5900 |
+
#: src/vue/pages/setup-wizard/views/Success.vue:142
|
5901 |
+
msgid "Watch our Guided Tour of %1$s"
|
5902 |
msgstr ""
|
5903 |
|
5904 |
+
#: src/vue/pages/setup-wizard/views/Success.vue:143
|
5905 |
+
msgid "See Advanced Settings"
|
5906 |
msgstr ""
|
5907 |
|
5908 |
+
#: src/vue/pages/setup-wizard/views/Success.vue:144
|
5909 |
+
msgid "Setup Webmaster Tools"
|
5910 |
msgstr ""
|
5911 |
|
5912 |
+
# Translators: 1 - Opening bold tag. 2 - Closing bold tag. 3 - Opening bold tag. 4 - Percent between 1-100. 5 - Closing bold tag.
|
5913 |
+
#: src/vue/pages/setup-wizard/views/SmartRecommendations.vue:179
|
5914 |
+
#: src/vue/pages/setup-wizard/views/Success.vue:146
|
5915 |
msgid ""
|
5916 |
+
"%1$sBonus:%2$s You can upgrade your plan today and %3$ssave %4$s off%5$s "
|
5917 |
+
"(discount auto-applied)."
|
5918 |
msgstr ""
|
5919 |
|
5920 |
+
# Translators: 1 - The plugin short name ("AIOSEO").
|
5921 |
+
#: src/vue/pages/setup-wizard/views/Welcome.vue:42
|
5922 |
+
msgid "Welcome to the %1$s Setup Wizard!"
|
5923 |
msgstr ""
|
5924 |
|
5925 |
+
# Translators: 1 - The plugin short name ("AIOSEO").
|
5926 |
+
#: src/vue/pages/setup-wizard/views/Welcome.vue:44
|
5927 |
msgid ""
|
5928 |
+
"%1$s makes it easy to configure your site's SEO settings without the need "
|
5929 |
+
"to hire an expert. And it takes less than 10 minutes too!"
|
|
|
5930 |
msgstr ""
|
5931 |
|
5932 |
+
#: src/vue/pages/setup-wizard/views/Welcome.vue:45
|
5933 |
+
msgid "Let's Get Started"
|
5934 |
msgstr ""
|
5935 |
|
5936 |
+
#: src/vue/pages/setup-wizard/views/Welcome.vue:46
|
5937 |
+
msgid "Go back to the Dashboard"
|
5938 |
+
msgstr ""
|
5939 |
+
|
5940 |
+
#: src/vue/pages/setup-wizard/views/SearchAppearance.vue:250
|
5941 |
msgid ""
|
5942 |
+
"The way your site is displayed in search results is very important. Take "
|
5943 |
+
"some time to look over these settings and tweak as needed."
|
|
|
5944 |
msgstr ""
|
5945 |
|
5946 |
+
#: src/vue/pages/setup-wizard/views/SearchAppearance.vue:251
|
5947 |
+
msgid "Google Snippet Preview"
|
5948 |
msgstr ""
|
5949 |
|
5950 |
+
#: src/vue/pages/setup-wizard/views/SearchAppearance.vue:252
|
5951 |
+
msgid "Edit Title and Description"
|
|
|
|
|
|
|
|
|
|
|
5952 |
msgstr ""
|
5953 |
|
5954 |
+
#: src/vue/pages/setup-wizard/views/SearchAppearance.vue:257
|
5955 |
+
msgid "Is the site under construction or live (ready to be indexed)?"
|
|
|
|
|
5956 |
msgstr ""
|
5957 |
|
5958 |
+
#: src/vue/pages/setup-wizard/views/SearchAppearance.vue:258
|
5959 |
+
msgid "Under Construction"
|
5960 |
msgstr ""
|
5961 |
|
5962 |
+
#: src/vue/pages/setup-wizard/views/SearchAppearance.vue:259
|
5963 |
+
msgid "Live Site"
|
5964 |
msgstr ""
|
5965 |
|
5966 |
+
#: src/vue/pages/sitemaps/mixins/NewsSitemap.js:9
|
5967 |
+
msgid "Enable Sitemap"
|
|
|
|
|
|
|
5968 |
msgstr ""
|
5969 |
|
5970 |
+
#: src/vue/pages/setup-wizard/views/SearchAppearance.vue:262
|
5971 |
+
msgid "Do you have multiple authors?"
|
|
|
|
|
5972 |
msgstr ""
|
5973 |
|
5974 |
+
#: src/vue/pages/setup-wizard/views/SearchAppearance.vue:263
|
5975 |
+
msgid "Redirect attachment pages?"
|
5976 |
msgstr ""
|
5977 |
|
5978 |
+
# Translators: 1 - The plugin short name ("AIOSEO").
|
5979 |
+
#: src/vue/pages/tools/views/partials/ImportAioseo.vue:82
|
5980 |
+
msgid "Import / Restore %1$s Settings"
|
5981 |
msgstr ""
|
5982 |
|
5983 |
+
#: src/vue/pages/tools/views/partials/ImportAioseo.vue:83
|
5984 |
+
msgid "Import from a JSON or INI file..."
|
5985 |
msgstr ""
|
5986 |
|
5987 |
+
#: src/vue/pages/redirects/views/pro/partials/ImportAioseo.vue:84
|
5988 |
+
#: src/vue/pages/tools/views/partials/ImportAioseo.vue:84
|
5989 |
+
msgid "Choose a File"
|
5990 |
msgstr ""
|
5991 |
|
5992 |
+
#: src/vue/pages/tools/views/partials/ImportAioseo.vue:85
|
5993 |
+
msgid "Imported settings will overwrite existing settings and will not be merged."
|
|
|
|
|
|
|
|
|
5994 |
msgstr ""
|
5995 |
|
5996 |
+
#: src/vue/pages/tools/views/partials/ImportAioseo.vue:87
|
5997 |
+
msgid "A JSON or INI file is required to import settings."
|
|
|
|
|
|
|
5998 |
msgstr ""
|
5999 |
|
6000 |
+
#: src/vue/pages/tools/views/partials/ImportAioseo.vue:88
|
6001 |
+
msgid "Success! Your settings have been imported."
|
|
|
|
|
6002 |
msgstr ""
|
6003 |
|
6004 |
+
#: src/vue/pages/tools/views/partials/ImportAioseo.vue:89
|
|
|
6005 |
msgid ""
|
6006 |
+
"There was an error importing your settings. Please make sure you are "
|
6007 |
+
"uploading the correct file or it is in the proper format."
|
|
|
|
|
6008 |
msgstr ""
|
6009 |
|
6010 |
+
#: src/vue/pages/tools/views/partials/ExportSettings.vue:118
|
6011 |
+
msgid "Export Settings"
|
6012 |
+
msgstr ""
|
6013 |
+
|
6014 |
+
#: src/vue/pages/tools/views/partials/ExportSettings.vue:119
|
6015 |
+
msgid "Export All Settings"
|
6016 |
+
msgstr ""
|
6017 |
+
|
6018 |
+
#: src/vue/pages/tools/views/partials/ExportSettings.vue:120
|
6019 |
+
msgid "Export All Post Types"
|
6020 |
+
msgstr ""
|
6021 |
+
|
6022 |
+
#: src/vue/pages/tools/views/SystemStatus.vue:115
|
6023 |
+
msgid "System Status Info"
|
6024 |
+
msgstr ""
|
6025 |
+
|
6026 |
+
#: src/vue/pages/tools/views/SystemStatus.vue:116
|
6027 |
+
msgid "Download System Info File"
|
6028 |
+
msgstr ""
|
6029 |
+
|
6030 |
+
#: src/vue/pages/tools/views/SystemStatus.vue:117
|
6031 |
+
msgid "Copy to Clipboard"
|
6032 |
+
msgstr ""
|
6033 |
+
|
6034 |
+
#: src/vue/pages/tools/views/SystemStatus.vue:118
|
6035 |
+
msgid "Email Debug Information"
|
6036 |
+
msgstr ""
|
6037 |
+
|
6038 |
+
#: src/vue/pages/tools/views/SystemStatus.vue:119
|
6039 |
+
msgid "Submit"
|
6040 |
+
msgstr ""
|
6041 |
+
|
6042 |
+
#: src/vue/pages/tools/views/SystemStatus.vue:120
|
6043 |
+
msgid "WordPress"
|
6044 |
+
msgstr ""
|
6045 |
+
|
6046 |
+
#: src/vue/pages/tools/views/SystemStatus.vue:121
|
6047 |
+
msgid "Server Info"
|
6048 |
+
msgstr ""
|
6049 |
+
|
6050 |
+
#: src/vue/pages/tools/views/SystemStatus.vue:122
|
6051 |
+
msgid "Active Theme"
|
6052 |
+
msgstr ""
|
6053 |
+
|
6054 |
+
#: src/vue/pages/tools/views/SystemStatus.vue:123
|
6055 |
+
msgid "Must-Use Plugins"
|
6056 |
+
msgstr ""
|
6057 |
+
|
6058 |
+
#: src/vue/pages/tools/views/SystemStatus.vue:124
|
6059 |
+
msgid "Active Plugins"
|
6060 |
+
msgstr ""
|
6061 |
+
|
6062 |
+
#: src/vue/pages/tools/views/SystemStatus.vue:125
|
6063 |
+
msgid "Inactive Plugins"
|
6064 |
+
msgstr ""
|
6065 |
+
|
6066 |
+
#: src/vue/pages/monsterinsights/views/Monsterinsights.vue:176
|
6067 |
+
msgid "Click here"
|
6068 |
msgstr ""
|
6069 |
|
6070 |
+
# Translators: 1 - The addon or plugin name.
|
6071 |
+
#: src/vue/pages/monsterinsights/views/Monsterinsights.vue:178
|
6072 |
+
msgid "Install %1$s"
|
6073 |
msgstr ""
|
6074 |
|
6075 |
+
# Translators: 1 - The name of one of our partner plugins.
|
6076 |
+
#: src/vue/pages/monsterinsights/views/Monsterinsights.vue:186
|
6077 |
+
msgid "%1$s is Installed & Active"
|
6078 |
msgstr ""
|
6079 |
|
6080 |
+
#: src/vue/pages/monsterinsights/views/Monsterinsights.vue:187
|
6081 |
+
msgid "Launch Setup Wizard"
|
6082 |
msgstr ""
|
6083 |
|
6084 |
+
#: src/vue/pages/monsterinsights/views/Monsterinsights.vue:198
|
6085 |
+
msgid "The Best Google Analytics Plugin for WordPress"
|
6086 |
msgstr ""
|
6087 |
|
6088 |
+
# Translators: 1 - The name of one of our partner plugins, 2 - The name of one of our partner plugins.
|
6089 |
+
#: src/vue/pages/monsterinsights/views/Monsterinsights.vue:200
|
6090 |
msgid ""
|
6091 |
+
"%1$s connects AIOSEO to Google Analytics, providing a powerful integration. "
|
6092 |
+
"%2$s is a sister company of AIOSEO."
|
|
|
6093 |
msgstr ""
|
6094 |
|
6095 |
+
#: src/vue/pages/monsterinsights/views/Monsterinsights.vue:201
|
6096 |
+
msgid "Quick & Easy Google Analytics Setup"
|
|
|
|
|
6097 |
msgstr ""
|
6098 |
|
6099 |
+
#: src/vue/pages/monsterinsights/views/Monsterinsights.vue:202
|
6100 |
+
msgid "Google Analytics Dashboard + Real Time Stats"
|
|
|
|
|
|
|
6101 |
msgstr ""
|
6102 |
|
6103 |
+
#: src/vue/pages/monsterinsights/views/Monsterinsights.vue:203
|
6104 |
+
msgid "Google Analytics Enhanced Ecommerce Tracking"
|
|
|
|
|
|
|
6105 |
msgstr ""
|
6106 |
|
6107 |
+
#: src/vue/pages/monsterinsights/views/Monsterinsights.vue:204
|
6108 |
+
msgid "Universal Tracking for AMP and Instant Articles"
|
|
|
|
|
6109 |
msgstr ""
|
6110 |
|
6111 |
+
#: src/vue/pages/monsterinsights/views/Monsterinsights.vue:205
|
6112 |
+
msgid "Install &"
|
|
|
|
|
|
|
6113 |
msgstr ""
|
6114 |
|
6115 |
+
# Translators: 1 - The name of one of our partner plugins.
|
6116 |
+
#: src/vue/pages/monsterinsights/views/Monsterinsights.vue:207
|
6117 |
+
msgid "Activate %1$s"
|
|
|
|
|
|
|
6118 |
msgstr ""
|
6119 |
|
6120 |
+
# Translators: 1 - The name of one of our partner plugins.
|
6121 |
+
#: src/vue/pages/monsterinsights/views/Monsterinsights.vue:209
|
6122 |
msgid ""
|
6123 |
+
"%1$s shows you exactly which content gets the most visits, so you can "
|
6124 |
+
"analyze and optimize it for higher conversions."
|
|
|
6125 |
msgstr ""
|
6126 |
|
6127 |
+
# Translators: 1 - The name of one of our partner plugins.
|
6128 |
+
#: src/vue/pages/monsterinsights/views/Monsterinsights.vue:213
|
6129 |
+
msgid "Setup %1$s"
|
|
|
6130 |
msgstr ""
|
6131 |
|
6132 |
+
# Translators: 1 - The name of one of our partner plugins.
|
6133 |
+
#: src/vue/pages/monsterinsights/views/Monsterinsights.vue:217
|
6134 |
+
msgid "%1$s has an intuitive setup wizard to guide you through the setup process."
|
|
|
6135 |
msgstr ""
|
6136 |
|
6137 |
+
# Translators: 1 - The plugin name ("All in One SEO").
|
6138 |
+
#: src/vue/pages/sitemaps/views/GeneralSitemap.vue:417
|
6139 |
msgid ""
|
6140 |
+
"An XML Sitemap is a list of all your content that search engines use when "
|
6141 |
+
"they crawl your site. This is an essential part of SEO because it contains "
|
6142 |
+
"some important pieces of information that search engines need when crawling "
|
6143 |
+
"your site. The XML Sitemap created by %1$s tells search engines where to "
|
6144 |
+
"find all of the content on your site."
|
6145 |
msgstr ""
|
6146 |
|
6147 |
+
#: src/vue/pages/sitemaps/views/GeneralSitemap.vue:419
|
6148 |
+
msgid "Sitemap Settings"
|
|
|
|
|
6149 |
msgstr ""
|
6150 |
|
6151 |
+
#: src/vue/pages/sitemaps/views/GeneralSitemap.vue:420
|
6152 |
+
msgid "Enable Sitemap Indexes"
|
6153 |
msgstr ""
|
6154 |
|
6155 |
+
#: src/vue/pages/sitemaps/views/GeneralSitemap.vue:421
|
|
|
6156 |
msgid ""
|
6157 |
+
"Organize sitemap entries into distinct files in your sitemap. We recommend "
|
6158 |
+
"you enable this setting if your sitemap contains more than 1,000 URLs."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6159 |
msgstr ""
|
6160 |
|
6161 |
+
#: src/vue/pages/sitemaps/views/GeneralSitemap.vue:422
|
6162 |
+
msgid "Links Per Sitemap"
|
6163 |
msgstr ""
|
6164 |
|
6165 |
+
#: src/vue/pages/sitemaps/mixins/NewsSitemap.js:11
|
6166 |
+
msgid "Noindexed content will not be displayed in your sitemap."
|
6167 |
msgstr ""
|
6168 |
|
6169 |
+
#: src/vue/pages/sitemaps/mixins/NewsSitemap.js:12
|
6170 |
+
msgid "Do you get a blank sitemap or 404 error?"
|
6171 |
msgstr ""
|
6172 |
|
6173 |
+
#: src/vue/pages/sitemaps/views/GeneralSitemap.vue:425
|
6174 |
+
msgid "Open Sitemap"
|
6175 |
msgstr ""
|
6176 |
|
6177 |
+
#: src/vue/pages/sitemaps/views/GeneralSitemap.vue:426
|
6178 |
+
msgid ""
|
6179 |
+
"Allows you to specify the maximum number of posts in a sitemap (up to "
|
6180 |
+
"50,000)."
|
6181 |
msgstr ""
|
6182 |
|
6183 |
+
#: src/vue/pages/sitemaps/views/GeneralSitemap.vue:427
|
6184 |
+
msgid "Automatically Ping Search Engines"
|
6185 |
msgstr ""
|
6186 |
|
6187 |
+
#: src/vue/pages/sitemaps/views/GeneralSitemap.vue:430
|
6188 |
+
msgid "Date Archive Sitemap"
|
6189 |
msgstr ""
|
6190 |
|
6191 |
+
#: src/vue/pages/sitemaps/views/GeneralSitemap.vue:431
|
6192 |
+
msgid "Include Date Archives in your sitemap."
|
6193 |
msgstr ""
|
6194 |
|
6195 |
+
#: src/vue/pages/sitemaps/views/GeneralSitemap.vue:432
|
6196 |
+
msgid "Author Sitemap"
|
6197 |
msgstr ""
|
6198 |
|
6199 |
+
#: src/vue/pages/sitemaps/views/GeneralSitemap.vue:433
|
6200 |
+
msgid "Include Author Archives in your sitemap."
|
|
|
|
|
6201 |
msgstr ""
|
6202 |
|
6203 |
+
#: src/vue/pages/sitemaps/views/GeneralSitemap.vue:435
|
6204 |
+
msgid "Select which Post Types appear in your sitemap."
|
6205 |
msgstr ""
|
6206 |
|
6207 |
+
#: src/vue/pages/sitemaps/views/GeneralSitemap.vue:437
|
6208 |
+
msgid "Select which Taxonomies appear in your sitemap."
|
6209 |
msgstr ""
|
6210 |
|
6211 |
+
#: src/vue/pages/sitemaps/views/GeneralSitemap.vue:438
|
6212 |
+
msgid "Additional Pages"
|
6213 |
msgstr ""
|
6214 |
|
6215 |
+
#: src/vue/pages/sitemaps/views/GeneralSitemap.vue:439
|
6216 |
+
msgid ""
|
6217 |
+
"You can use this section to add any URLs to your sitemap which aren’t a "
|
6218 |
+
"part of your WordPress installation. For example, if you have a contact "
|
6219 |
+
"form that you would like to be included on your sitemap you can enter the "
|
6220 |
+
"information manually."
|
6221 |
msgstr ""
|
6222 |
|
6223 |
+
#: src/vue/pages/sitemaps/views/GeneralSitemap.vue:443
|
6224 |
+
msgid ""
|
6225 |
+
"Any posts that are assigned to these terms will also be excluded from your "
|
6226 |
+
"sitemap."
|
6227 |
msgstr ""
|
6228 |
|
6229 |
+
#: src/vue/pages/sitemaps/views/GeneralSitemap.vue:445
|
6230 |
+
msgid "Grouped"
|
6231 |
msgstr ""
|
6232 |
|
6233 |
+
#: src/vue/pages/sitemaps/views/GeneralSitemap.vue:446
|
6234 |
+
msgid "Post Type Priority Score"
|
|
|
|
|
|
|
6235 |
msgstr ""
|
6236 |
|
6237 |
+
#: src/vue/pages/sitemaps/views/GeneralSitemap.vue:447
|
6238 |
+
msgid "Taxonomy Priority Score"
|
6239 |
msgstr ""
|
6240 |
|
6241 |
+
#: src/vue/pages/sitemaps/views/GeneralSitemap.vue:448
|
6242 |
+
msgid "Exclude Images"
|
6243 |
msgstr ""
|
6244 |
|
6245 |
+
#: src/vue/pages/sitemaps/views/GeneralSitemap.vue:449
|
6246 |
+
msgid "Exclude Images from your sitemap."
|
6247 |
msgstr ""
|
6248 |
|
6249 |
+
#: src/vue/pages/sitemaps/views/GeneralSitemap.vue:450
|
6250 |
+
msgid "Dynamically Generate"
|
6251 |
msgstr ""
|
6252 |
|
6253 |
+
#: src/vue/pages/sitemaps/views/GeneralSitemap.vue:451
|
6254 |
+
msgid "Dynamically creates the XML Sitemap instead of using a static file."
|
6255 |
msgstr ""
|
6256 |
|
6257 |
+
#: src/vue/pages/sitemaps/views/GeneralSitemap.vue:452
|
6258 |
+
msgid ""
|
6259 |
+
"We recommend setting the amount of URLs per sitemap index to 1,000 or less. "
|
6260 |
+
"The more links, the longer it will take for the sitemap to load."
|
6261 |
msgstr ""
|
6262 |
|
6263 |
+
#: src/vue/pages/sitemaps/views/GeneralSitemap.vue:453
|
6264 |
+
msgid ""
|
6265 |
+
"Your static sitemap is currently being regenerated. This may take some time "
|
6266 |
+
"based on the size of your site. This may also cause the sitemap content to "
|
6267 |
+
"look outdated."
|
6268 |
msgstr ""
|
6269 |
|
6270 |
+
#: src/vue/pages/redirects/views/pro/RedirectsActivate.vue:83
|
6271 |
+
msgid "Site Aliases"
|
6272 |
msgstr ""
|
6273 |
|
6274 |
+
#: src/vue/pages/redirects/views/pro/partials/SiteAliases.vue:93
|
6275 |
+
msgid ""
|
6276 |
+
"Site aliases are disabled because you have relocated your site to another "
|
6277 |
+
"domain."
|
6278 |
msgstr ""
|
6279 |
|
6280 |
+
#: src/vue/pages/redirects/views/pro/partials/SiteAliases.vue:94
|
6281 |
+
msgid ""
|
6282 |
+
"A site alias is another domain that you want to be redirected to this site. "
|
6283 |
+
"For example, an old domain, or a subdomain. This will redirect all URLs, "
|
6284 |
+
"including WordPress login and admin. You will need to configure your system "
|
6285 |
+
"(DNS and server) to pass requests for the
|