Commit 70b86f4f authored by Simon's avatar Simon

release 1.8.0

parent 4a65857a
......@@ -182,8 +182,8 @@ services:
wp plugin install polylang --version=2.6.3 --activate-network;
# wp plugin update polylang --version=2.6.3;
wp plugin install wordpress-seo --version=11.8 --activate-network;
# wp plugin update wordpress-seo --version=11.8;
wp plugin install wordpress-seo --version=11.9 --activate-network;
# wp plugin update wordpress-seo --version=11.9;
wp plugin update akismet --version=4.1.2;
wp plugin uninstall hello;
......
......@@ -17,6 +17,7 @@ if ( ! defined( 'WPSEO_VERSION' ) ) {
* @param array $results Results array for encoding.
*/
function wpseo_ajax_json_echo_die( $results ) {
// phpcs:ignore WordPress.Security.EscapeOutput -- Reason: WPSEO_Utils::format_json_encode is safe.
echo WPSEO_Utils::format_json_encode( $results );
die();
}
......@@ -82,25 +83,6 @@ function wpseo_dismiss_tagline_notice() {
add_action( 'wp_ajax_wpseo_dismiss_tagline_notice', 'wpseo_dismiss_tagline_notice' );
/**
* Used in the editor to replace vars for the snippet preview.
*/
function wpseo_ajax_replace_vars() {
global $post;
check_ajax_referer( 'wpseo-replace-vars' );
$post = get_post( intval( filter_input( INPUT_POST, 'post_id' ) ) );
global $wp_query;
$wp_query->queried_object = $post;
$wp_query->queried_object_id = $post->ID;
$omit = array( 'excerpt', 'excerpt_only', 'title' );
echo wpseo_replace_vars( stripslashes( filter_input( INPUT_POST, 'string' ) ), $post, $omit );
die;
}
add_action( 'wp_ajax_wpseo_replace_vars', 'wpseo_ajax_replace_vars' );
/**
* Save an individual SEO title from the Bulk Editor.
*/
......@@ -293,6 +275,7 @@ function ajax_get_keyword_usage() {
}
wp_die(
// phpcs:ignore WordPress.Security.EscapeOutput -- Reason: WPSEO_Utils::format_json_encode is safe.
WPSEO_Utils::format_json_encode( WPSEO_Meta::keyword_usage( $keyword, $post_id ) )
);
}
......@@ -323,6 +306,7 @@ function ajax_get_term_keyword_usage() {
$usage = $usage[ $keyword ];
wp_die(
// phpcs:ignore WordPress.Security.EscapeOutput -- Reason: WPSEO_Utils::format_json_encode is safe.
WPSEO_Utils::format_json_encode( $usage )
);
}
......@@ -398,3 +382,25 @@ function wpseo_add_fb_admin() {
_deprecated_function( __FUNCTION__, 'WPSEO 7.0', 'This method is deprecated.' );
wpseo_ajax_json_echo_die( '' );
}
/**
* Used in the editor to replace vars for the snippet preview.
*
* @deprecated 11.9
* @codeCoverageIgnore
*/
function wpseo_ajax_replace_vars() {
_deprecated_function( __METHOD__, 'WPSEO 11.9' );
global $post;
check_ajax_referer( 'wpseo-replace-vars' );
$post = get_post( intval( filter_input( INPUT_POST, 'post_id' ) ) );
global $wp_query;
$wp_query->queried_object = $post;
$wp_query->queried_object_id = $post->ID;
$omit = array( 'excerpt', 'excerpt_only', 'title' );
echo wpseo_replace_vars( stripslashes( filter_input( INPUT_POST, 'string' ) ), $post, $omit );
die;
}
......@@ -28,6 +28,7 @@ class WPSEO_Recalculate_Scores_Ajax {
check_ajax_referer( 'wpseo_recalculate', 'nonce' );
wp_die(
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Reason: WPSEO_Utils::format_json_encode is considered safe.
WPSEO_Utils::format_json_encode(
array(
'posts' => $this->calculate_posts(),
......@@ -49,6 +50,7 @@ class WPSEO_Recalculate_Scores_Ajax {
$response = $fetch_object->get_items_to_recalculate( $paged );
if ( ! empty( $response ) ) {
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Reason: WPSEO_Utils::format_json_encode is considered safe.
wp_die( WPSEO_Utils::format_json_encode( $response ) );
}
}
......
......@@ -36,6 +36,7 @@ class WPSEO_Shortcode_Filter {
);
}
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Reason: WPSEO_Utils::format_json_encode is considered safe.
wp_die( WPSEO_Utils::format_json_encode( $parsed_shortcodes ) );
}
}
......@@ -679,22 +679,6 @@ class WPSEO_Admin_Init {
// WordPress hooks that have been deprecated since a Yoast SEO version.
$deprecated_filters = array(
'wpseo_metakey' => array(
'version' => '6.3',
'alternative' => null,
),
'wpseo_metakeywords' => array(
'version' => '6.3',
'alternative' => null,
),
'wpseo_stopwords' => array(
'version' => '7.0',
'alternative' => null,
),
'wpseo_redirect_orphan_attachment' => array(
'version' => '7.0',
'alternative' => null,
),
'wpseo_genesis_force_adjacent_rel_home' => array(
'version' => '9.4',
'alternative' => null,
......@@ -710,11 +694,13 @@ class WPSEO_Admin_Init {
// Show notice for each deprecated filter or action that has been registered.
foreach ( $deprecated_notices as $deprecated_filter ) {
$deprecation_info = $deprecated_filters[ $deprecated_filter ];
// phpcs:disable WordPress.Security.EscapeOutput.OutputNotEscaped -- only uses the hardcoded values from above.
_deprecated_hook(
$deprecated_filter,
'WPSEO ' . $deprecation_info['version'],
$deprecation_info['alternative']
);
// phpcs:enable WordPress.Security.EscapeOutput.OutputNotEscaped.
}
}
......@@ -734,13 +720,19 @@ class WPSEO_Admin_Init {
global $pagenow;
if ( $pagenow === 'options-permalink.php' ) {
$warning = esc_html__( 'WARNING:', 'wordpress-seo' );
/* translators: %1$s and %2$s expand to <i> items to emphasize the word in the middle. */
$message = esc_html__( 'Changing your permalinks settings can seriously impact your search engine visibility. It should almost %1$s never %2$s be done on a live website.', 'wordpress-seo' );
$link = esc_html__( 'Learn about why permalinks are important for SEO.', 'wordpress-seo' );
$url = WPSEO_Shortlinker::get( 'https://yoa.st/why-permalinks/' );
echo '<div class="notice notice-warning"><p><strong>' . $warning . '</strong><br>' . sprintf( $message, '<i>', '</i>' ) . '<br><a href="' . $url . '" target="_blank">' . $link . '</a></p></div>';
printf(
'<div class="notice notice-warning"><p><strong>%1$s</strong><br>%2$s<br><a href="%3$s" target="_blank">%4$s</a></p></div>',
esc_html__( 'WARNING:', 'wordpress-seo' ),
sprintf(
/* translators: %1$s and %2$s expand to <em> items to emphasize the word in the middle. */
esc_html__( 'Changing your permalinks settings can seriously impact your search engine visibility. It should almost %1$s never %2$s be done on a live website.', 'wordpress-seo' ),
'<em>',
'</em>'
),
esc_url( WPSEO_Shortlinker::get( 'https://yoa.st/why-permalinks/' ) ),
// The link's content.
esc_html__( 'Learn about why permalinks are important for SEO.', 'wordpress-seo' )
);
}
}
}
......@@ -70,6 +70,9 @@ class WPSEO_Bulk_Description_List_Table extends WPSEO_Bulk_List_Table {
case 'col_existing_yoast_seo_metadesc':
// @todo Inconsistent return/echo behavior R.
// I traced the escaping of the attributes to WPSEO_Bulk_List_Table::column_attributes. Alexander.
// The output of WPSEO_Bulk_List_Table::parse_meta_data_field is properly escaped.
// phpcs:ignore WordPress.Security.EscapeOutput
echo $this->parse_meta_data_field( $record->ID, $attributes );
break;
}
......
......@@ -409,11 +409,12 @@ class WPSEO_Bulk_List_Table extends WP_List_Table {
);
printf(
'<select name="post_type_filter" id="%2$s">%1$s</select>',
// phpcs:ignore WordPress.Security.EscapeOutput -- Reason: $options is properly escaped above.
$options,
esc_attr( 'post-type-filter-' . $instance_type )
);
submit_button( __( 'Filter', 'wordpress-seo' ), 'button', false, false, array( 'id' => 'post-query-submit' ) );
submit_button( esc_html__( 'Filter', 'wordpress-seo' ), 'button', false, false, array( 'id' => 'post-query-submit' ) );
echo '</div>';
}
}
......@@ -770,7 +771,7 @@ class WPSEO_Bulk_List_Table extends WP_List_Table {
}
if ( ! empty( $class ) ) {
$attributes = 'class="' . implode( ' ', $class ) . '"';
$attributes = 'class="' . esc_attr( implode( ' ', $class ) ) . '"';
}
$attributes .= ' data-colname="' . esc_attr( $column_display_name ) . '"';
......@@ -910,7 +911,11 @@ class WPSEO_Bulk_List_Table extends WP_List_Table {
$meta_value = $values[ $meta_value ];
}
return sprintf( '<td %2$s id="wpseo-existing-%4$s-%3$s">%1$s</td>', $meta_value, $attributes, $record_id, $this->target_db_field );
$id = "wpseo-existing-$record_id-$this->target_db_field";
// $attributes correctly escaped, verified by Alexander. See WPSEO_Bulk_Description_List_Table::parse_page_specific_column.
// phpcs:ignore WordPress.Security.EscapeOutput
return sprintf( '<td %2$s id="%3$s">%1$s</td>', esc_html( $meta_value ), $attributes, esc_attr( $id ) );
}
/**
......
......@@ -69,7 +69,10 @@ class WPSEO_Bulk_Title_Editor_List_Table extends WPSEO_Bulk_List_Table {
switch ( $column_name ) {
case 'col_existing_yoast_seo_title':
// @todo Inconsistent echo/return behavior R.
// @todo Inconsistent return/echo behavior R.
// I traced the escaping of the attributes to WPSEO_Bulk_List_Table::column_attributes.
// The output of WPSEO_Bulk_List_Table::parse_meta_data_field is properly escaped.
// phpcs:ignore WordPress.Security.EscapeOutput
echo $this->parse_meta_data_field( $record->ID, $attributes );
break;
......
......@@ -26,13 +26,6 @@ class WPSEO_Export {
*/
private $export = '';
/**
* Holds the export error message.
*
* @var string
*/
private $error = '';
/**
* Holds whether the export was a success.
*
......@@ -71,29 +64,7 @@ class WPSEO_Export {
)
);
echo '</p>';
echo '<textarea id="wpseo-export" rows="20" cols="100">' . $this->export . '</textarea>';
}
/**
* Returns true when the property error has a value.
*
* @return bool
*/
public function has_error() {
return ( $this->error !== '' );
}
/**
* Sets the error hook, to display the error to the user.
*/
public function set_error_hook() {
/* translators: %1$s expands to Yoast SEO */
$message = sprintf( __( 'Error creating %1$s export: ', 'wordpress-seo' ), 'Yoast SEO' ) . $this->error;
printf(
'<div class="notice notice-error"><p>%1$s</p></div>',
$message
);
echo '<textarea id="wpseo-export" rows="20" cols="100">' . esc_textarea( $this->export ) . '</textarea>';
}
/**
......@@ -173,4 +144,32 @@ class WPSEO_Export {
}
$this->write_line( $key . ' = ' . $val );
}
/* ********************* DEPRECATED METHODS ********************* */
/**
* Returns true when the property error has a value.
*
* @deprecated 11.9 Obsolete since the export setting refactor in 9.2.
*
* @codeCoverageIgnore
*
* @return bool
*/
public function has_error() {
_deprecated_function( __METHOD__, 'WPSEO 11.9' );
return false;
}
/**
* Sets the error hook, to display the error to the user.
*
* @deprecated 11.9 Obsolete since the export setting refactor in 9.2.
*
* @codeCoverageIgnore
*/
public function set_error_hook() {
_deprecated_function( __METHOD__, 'WPSEO 11.9' );
}
}
......@@ -15,14 +15,14 @@ class WPSEO_Gutenberg_Compatibility {
*
* @var string
*/
const CURRENT_RELEASE = '6.2.0';
const CURRENT_RELEASE = '6.3.0';
/**
* The minimally supported version of Gutenberg by the plugin.
*
* @var string
*/
const MINIMUM_SUPPORTED = '6.2.0';
const MINIMUM_SUPPORTED = '6.3.0';
/**
* Holds the current version.
......
......@@ -98,10 +98,12 @@ class WPSEO_Meta_Columns {
switch ( $column_name ) {
case 'wpseo-score':
// @phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Correctly escaped in render_score_indicator() method.
echo $this->parse_column_score( $post_id );
return;
case 'wpseo-score-readability':
// @phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Correctly escaped in render_score_indicator() method.
echo $this->parse_column_score_readability( $post_id );
return;
......@@ -733,7 +735,7 @@ class WPSEO_Meta_Columns {
$title = $rank->get_label();
}
return '<div aria-hidden="true" title="' . esc_attr( $title ) . '" class="wpseo-score-icon ' . esc_attr( $rank->get_css_class() ) . '"></div><span class="screen-reader-text wpseo-score-text">' . $title . '</span>';
return '<div aria-hidden="true" title="' . esc_attr( $title ) . '" class="' . esc_attr( 'wpseo-score-icon ' . $rank->get_css_class() ) . '"></div><span class="screen-reader-text wpseo-score-text">' . esc_html( $title ) . '</span>';
}
/**
......
......@@ -64,7 +64,7 @@ class WPSEO_Option_Tabs_Formatter {
*/
$option_tab_content = apply_filters( 'wpseo_option_tab-' . $tab_filter_name, null, $option_tabs, $tab );
if ( ! empty( $option_tab_content ) ) {
echo $option_tab_content;
echo wp_kses_post( $option_tab_content );
}
if ( empty( $option_tab_content ) ) {
......
......@@ -74,8 +74,8 @@ class WPSEO_Premium_Upsell_Admin_Block {
'<span aria-hidden="true" class="yoast-button-upsell__caret"></span>';
$upgrade_button = sprintf(
'<a id="wpseo-%1$s-popup-button" class="yoast-button-upsell" href="%2$s" target="_blank">%3$s</a>',
$this->identifier,
'<a id="%1$s" class="yoast-button-upsell" href="%2$s" target="_blank">%3$s</a>',
esc_attr( 'wpseo-' . $this->identifier . '-popup-button' ),
esc_url( $url ),
$button_text
);
......@@ -98,6 +98,7 @@ class WPSEO_Premium_Upsell_Admin_Block {
'</h2>';
echo '<ul class="' . esc_attr( $class . '--motivation' ) . '">' . $arguments_html . '</ul>';
// @phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Correctly escaped in $upgrade_button and $button_text above.
echo '<p>' . $upgrade_button . '</p>';
echo '</div>';
......
......@@ -132,11 +132,11 @@ class WPSEO_Social_Admin extends WPSEO_Metabox {
$tab_content .= $this->do_meta_box( $meta_field_defs[ $field_name ], $field_name );
}
$features = new WPSEO_Features();
/**
* If premium hide the form to show the social preview instead, we still need the fields to be output because
* the values of the social preview are saved in the hidden field.
*/
$features = new WPSEO_Features();
if ( $features->is_premium() ) {
return $this->hide_form( $tab_content );
}
......@@ -151,7 +151,7 @@ class WPSEO_Social_Admin extends WPSEO_Metabox {
*
* @return string The content.
*/
public function hide_form( $tab_content ) {
private function hide_form( $tab_content ) {
return '<div class="hidden">' . $tab_content . '</div>';
}
......
......@@ -141,12 +141,14 @@ class Yoast_Alerts {
private function output_ajax_response( $type ) {
$html = $this->get_view_html( $type );
// phpcs:disable WordPress.Security.EscapeOutput -- Reason: WPSEO_Utils::format_json_encode is safe.
echo WPSEO_Utils::format_json_encode(
array(
'html' => $html,
'total' => self::get_active_alert_count(),
)
);
// phpcs:enable -- Reason: WPSEO_Utils::format_json_encode is safe.
}
/**
......
......@@ -369,6 +369,7 @@ class Yoast_Notification_Center {
$notification_json[] = $notification->render();
}
// phpcs:ignore WordPress.Security.EscapeOutput -- Reason: WPSEO_Utils::format_json_encode is safe.
echo WPSEO_Utils::format_json_encode( $notification_json );
return;
......
......@@ -65,10 +65,12 @@ class WPSEO_Link_Reindex_Dashboard {
echo '<strong>' . esc_html__( 'Text link counter', 'wordpress-seo' ) . '</strong><br/>';
if ( ! $this->has_unprocessed() ) {
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Reason: `message_already_indexed` is considered a safe method.
echo $this->message_already_indexed();
}
if ( $this->has_unprocessed() ) {
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Reason: `message_start_indexing` is considered a safe method.
printf( '<span id="reindexLinks">%s</span>', $this->message_start_indexing() );
}
......@@ -100,7 +102,7 @@ class WPSEO_Link_Reindex_Dashboard {
if ( $this->has_unprocessed() ) {
$progress = sprintf(
/* translators: 1: expands to a <span> containing the number of items recalculated. 2: expands to a <strong> containing the total number of items. */
__( 'Text %1$s of %2$s processed.', 'wordpress-seo' ),
esc_html__( 'Text %1$s of %2$s processed.', 'wordpress-seo' ),
'<span id="wpseo_count_index_links">0</span>',
sprintf( '<strong id="wpseo_count_total">%d</strong>', $this->get_unprocessed_count() )
);
......@@ -116,7 +118,10 @@ class WPSEO_Link_Reindex_Dashboard {
);
?>
<div id="wpseo_index_links_wrapper" class="hidden">
<?php echo implode( '<hr />', $blocks ); ?>
<?php
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Reason: All inputs are escaped properly.
echo implode( '<hr />', $blocks );
?>
<button onclick="tb_remove();" type="button"
class="button"><?php esc_html_e( 'Stop counting', 'wordpress-seo' ); ?></button>
</div>
......@@ -199,40 +204,4 @@ class WPSEO_Link_Reindex_Dashboard {
esc_attr__( 'Count links in your texts', 'wordpress-seo' )
);
}
/* ********************* DEPRECATED METHODS ********************* */
/**
* Add the indexing interface for links to the dashboard.
*
* @deprecated 7.0
* @codeCoverageIgnore
*
* @return void
*/
public function add_link_index_interface() {
_deprecated_function( __METHOD__, 'WPSEO 7.0' );
$html = '';
$html .= '<h2>' . esc_html__( 'Text link counter', 'wordpress-seo' ) . '</h2>';
$html .= '<p>' . sprintf(
/* translators: 1: link to yoast.com post about internal linking suggestion. 4: is Yoast.com 3: is anchor closing. */
__( 'The links in all your public texts need to be counted. This will provide insights of which texts need more links to them. If you want to know more about the why and how of internal linking, check out %1$sthe article about internal linking on %2$s%3$s.', 'wordpress-seo' ),
'<a href="' . WPSEO_Shortlinker::get( 'https://yoa.st/15n' ) . '" target="_blank">',
'Yoast.com',
'</a>'
) . '</p>';
if ( ! $this->has_unprocessed() ) {
$html .= '<p>' . $this->message_already_indexed() . '</p>';
}
if ( $this->has_unprocessed() ) {
$html .= '<p id="reindexLinks">' . $this->message_start_indexing() . '</p>';
}
$html .= '<br />';
echo $html;
}
}
......@@ -40,9 +40,13 @@ class WPSEO_Metabox_Collapsibles_Sections extends WPSEO_Abstract_Metabox_Tab_Wit
printf( '<div id="%1$s" class="wpseo-meta-section">', esc_attr( 'wpseo-meta-section-' . $this->name ) );
echo '<div class="wpseo_content_wrapper">';
add_filter( 'wp_kses_allowed_html', array( 'WPSEO_Utils', 'extend_kses_post_with_forms' ) );
add_filter( 'wp_kses_allowed_html', array( 'WPSEO_Utils', 'extend_kses_post_with_a11y' ) );
foreach ( $this->collapsibles as $collapsible ) {
echo $collapsible->content();
echo wp_kses_post( $collapsible->content() );
}
remove_filter( 'wp_kses_allowed_html', array( 'WPSEO_Utils', 'extend_kses_post_with_forms' ) );
remove_filter( 'wp_kses_allowed_html', array( 'WPSEO_Utils', 'extend_kses_post_with_a11y' ) );
echo '</div></div>';
}
......
<?php
/**
* WPSEO plugin file.
*
* @package WPSEO\Admin\Metabox
*/
/**
* Generates and displays an additional metabox section.
*/
class WPSEO_Metabox_Section_Additional implements WPSEO_Metabox_Section {
/**
* Name of the section, used as an identifier in the HTML.
*
* @var string
*/
public $name;
/**
* Content of the tab's section.
*
* @var string
*/
public $content;
/**
* HTML to use in the tab header.
*
* @var string
*/
private $link_content;
/**
* Class to add to the link.
*
* @var string
*/
private $link_class;
/**
* Aria label to use for the link.
*
* @var string
*/
private $link_aria_label;
/**
* Constructor.
*
* @param string $name The name of the section, used as an identifier in the html.
* Can only contain URL safe characters.
* @param string $link_content The text content of the section link.
* @param string $content Optional. Content to use above the React root element.
* @param array $options Optional link attributes.
*/
public function __construct( $name, $link_content, $content = '', array $options = array() ) {
$this->name = $name;
$this->content = $content;
$default_options = array(
'link_class' => '',
'link_aria_label' => '',
);
$options = wp_parse_args( $options, $default_options );
$this->link_content = $link_content;
$this->link_class = $options['link_class'];
$this->link_aria_label = $options['link_aria_label'];
}
/**
* Outputs the section link.
*
* @return void
*/
public function display_link() {
printf(
'<li role="presentation"><a role="tab" href="#wpseo-meta-section-%1$s" id="wpseo-meta-tab-%1$s" aria-controls="wpseo-meta-section-%1$s" class="wpseo-meta-section-link %2$s"%3$s>%4$s</a></li>',
esc_attr( $this->name ),
esc_attr( $this->link_class ),
( '' !== $this->link_aria_label ) ? ' aria-label="' . esc_attr( $this->link_aria_label ) . '"' : '',
$this->link_content
);
}
/**
* Outputs the section content.
*
* @return void
*/
public function display_content() {
$html = sprintf(
'<div role="tabpanel" id="wpseo-meta-section-%1$s" aria-labelledby="wpseo-meta-tab-%1$s" tabindex="0" class="wpseo-meta-section wpseo-form">',
esc_attr( $this->name )
);
$html .= $this->content;
$html .= '</div>';
echo $html;
}
}
......@@ -90,7 +90,7 @@ class WPSEO_Metabox_Section_React implements WPSEO_Metabox_Section {
esc_attr( $this->name ),
esc_attr( $this->link_class ),
( '' !== $this->link_aria_label ) ? ' aria-label="' . esc_attr( $this->link_aria_label ) . '"' : '',
$this->link_content
wp_kses_post( $this->link_content )
);
}
......@@ -100,15 +100,19 @@ class WPSEO_Metabox_Section_React implements WPSEO_Metabox_Section {
* @return void
*/
public function display_content() {
$html = sprintf(
add_filter( 'wp_kses_allowed_html', array( 'WPSEO_Utils', 'extend_kses_post_with_forms' ) );
add_filter( 'wp_kses_allowed_html', array( 'WPSEO_Utils', 'extend_kses_post_with_a11y' ) );
printf(
'<div role="tabpanel" id="wpseo-meta-section-%1$s" aria-labelledby="wpseo-meta-tab-%1$s" tabindex="0" class="wpseo-meta-section">',
esc_attr( $this->name )
);
$html .= $this->content;
$html .= '<div id="wpseo-metabox-root" class="wpseo-metabox-root"></div>';
$html .= $this->html_after;
$html .= '</div>';
echo wp_kses_post( $this->content );
echo '<div id="wpseo-metabox-root" class="wpseo-metabox-root"></div>';
echo wp_kses_post( $this->html_after );
echo '</div>';
echo $html;
remove_filter( 'wp_kses_allowed_html', array( 'WPSEO_Utils', 'extend_kses_post_with_forms' ) );
remove_filter( 'wp_kses_allowed_html', array( 'WPSEO_Utils', 'extend_kses_post_with_a11y' ) );
}
}
......@@ -315,9 +315,7 @@ class WPSEO_Metabox extends WPSEO_Meta {
$content_sections[] = $this->social_admin->get_meta_section();
}
if ( has_action( 'wpseo_tab_header' ) || has_action( 'wpseo_tab_content' ) ) {
$content_sections[] = $this->get_addons_meta_section();
}
$content_sections = array_merge( $content_sections, $this->get_additional_meta_sections() );
return $content_sections;
}
......@@ -381,17 +379,54 @@ class WPSEO_Metabox extends WPSEO_Meta {
}
/**
* Returns a metabox section dedicated to hosting metabox tabs that have been added by other plugins through the
* `wpseo_tab_header` and `wpseo_tab_content` actions.
* Returns metabox sections that have been added by other plugins.
*
* @return WPSEO_Metabox_Section
* @return WPSEO_Metabox_Section_Additional[]
*/
private function get_addons_meta_section() {
return new WPSEO_Metabox_Addon_Tab_Section(
'addons',
'<span class="dashicons dashicons-admin-plugins"></span>' . __( 'Add-ons', 'wordpress-seo' )
protected function get_additional_meta_sections() {
$sections = array();
/**
* Private filter: 'yoast_free_additional_metabox_sections'.
*
* Meant for internal use only. Allows adding additional tabs to the Yoast SEO metabox.
*
* @since 11.9
*
* @param array[] $sections {
* An array of arrays with tab specifications.
*
* @type array $section {
* A tab specification.
*
* @type string $name The name of the tab. Used in the HTML IDs, href and aria properties.
* @type string $link_content The content of the tab link.
* @type string $content The content of the tab.
* @type array $options {
* Optional. Extra options.
*
* @type string $link_class Optional. The class for the tab link.
* @type string $link_aria_label Optional. The aria label of the tab link.
* }
* }
* }
*/
$requested_sections = apply_filters( 'yoast_free_additional_metabox_sections', array() );
foreach ( $requested_sections as $section ) {
if ( is_array( $section ) && array_key_exists( 'name', $section ) && array_key_exists( 'link_content', $section ) && array_key_exists( 'content', $section ) ) {
$options = array_key_exists( 'options', $section ) ? $section['options'] : array();
$sections[] = new WPSEO_Metabox_Section_Additional(
$section['name'],
$section['link_content'],
$section['content'],
$options
);
}
}
return $sections;
}
/**
* Retrieves the contents for the metabox tab.
......@@ -738,7 +773,6 @@ class WPSEO_Metabox extends WPSEO_Meta {
$asset_manager->enqueue_script( 'metabox' );
$asset_manager->enqueue_script( 'admin-media' );
$asset_manager->enqueue_script( 'post-scraper' );
$asset_manager->enqueue_script( 'replacevar-plugin' );
$asset_manager->enqueue_script( 'shortcode-plugin' );
......
......@@ -146,7 +146,7 @@ class WPSEO_Configuration_Notifier implements WPSEO_Listener {
private function notification( $title, $content, $show_dismissal = false ) {
$notification = '<div class="yoast-container yoast-container__configuration-wizard">';
$notification .= sprintf(
'<img src="%1$s" height="%2$s" width="%3$d" />',
'<img src="%1$s" height="%2$s" width="%3$d" alt="" />',
esc_url( plugin_dir_url( WPSEO_FILE ) . 'images/new-to-configuration-notice.svg' ),
60,
60
......
......@@ -202,13 +202,34 @@ class WPSEO_Taxonomy_Metabox {
}
$meta_fields = $this->taxonomy_social_fields->get_by_network( $network );
$content = $this->taxonomy_tab_content->html( $meta_fields );
/**
* If premium hide the form to show the social preview instead, we still need the fields to be output because
* the values of the social preview are saved in the hidden field.
*/
$features = new WPSEO_Features();
if ( $features->is_premium() ) {
$content = $this->hide_form( $content );
}
$tab_settings = new WPSEO_Metabox_Collapsible(
$name,
$this->social_admin->get_premium_notice( $network ) . $this->taxonomy_tab_content->html( $meta_fields ),
$this->social_admin->get_premium_notice( $network ) . $content,
$label
);
return $tab_settings;
}
/**
* Hides the given output when rendered to HTML.
*
* @param string $tab_content The social tab content.
*
* @return string The content.
*/
private function hide_form( $tab_content ) {
return '<div class="hidden">' . $tab_content . '</div>';
}
}
......@@ -158,7 +158,7 @@ $new_tab_message = '<span class="screen-reader-text">' . esc_html__( '(O
class="yoast-link--license">
<?php
/* translators: %s expands to the extension title */
printf( esc_html( 'Manage your %s subscription on MyYoast', 'wordpress-seo' ), $premium_extension->get_title() );
printf( esc_html__( 'Manage your %s subscription on MyYoast', 'wordpress-seo' ), $premium_extension->get_title() );
echo $new_tab_message;
?>
</a>
......@@ -168,7 +168,7 @@ $new_tab_message = '<span class="screen-reader-text">' . esc_html__( '(O
class="yoast-link--license">
<?php
/* translators: %s expands to the extension title */
printf( esc_html( 'Activate %s for your site on MyYoast', 'wordpress-seo' ), $premium_extension->get_title() );
printf( esc_html__( 'Activate %s for your site on MyYoast', 'wordpress-seo' ), $premium_extension->get_title() );
echo $new_tab_message;
?>
</a>
......@@ -242,7 +242,7 @@ $new_tab_message = '<span class="screen-reader-text">' . esc_html__( '(O
class="yoast-link--license">
<?php
/* translators: %s expands to the extension title */
printf( esc_html( 'Manage your %s subscription on MyYoast', 'wordpress-seo' ), $extension->get_title() );
printf( esc_html__( 'Manage your %s subscription on MyYoast', 'wordpress-seo' ), $extension->get_title() );
echo $new_tab_message;
?>
</a>
......@@ -252,7 +252,7 @@ $new_tab_message = '<span class="screen-reader-text">' . esc_html__( '(O
class="yoast-link--license">
<?php
/* translators: %s expands to the extension title */
printf( esc_html( 'Activate %s for your site on MyYoast', 'wordpress-seo' ), $extension->get_title() );
printf( esc_html__( 'Activate %s for your site on MyYoast', 'wordpress-seo' ), $extension->get_title() );
echo $new_tab_message;
?>
</a>
......
......@@ -8,32 +8,62 @@
/**
* Generates and displays a section containing metabox tabs that have been added by other plugins through the
* `wpseo_tab_header` and `wpseo_tab_content` actions.
*
* @deprecated 11.9
*/
class WPSEO_Metabox_Addon_Tab_Section extends WPSEO_Metabox_Tab_Section {
/**
* WPSEO_Metabox_Addon_Tab_Section constructor.
*
* @deprecated 11.9
*
* @param string $name The name of the section, used as an identifier in the html.
* Can only contain URL safe characters.
* @param string $link_content The text content of the section link.
* @param array $tabs The metabox tabs (`WPSEO_Metabox_Tabs[]`) to be included in the section.
* @param array $options Optional link attributes.
*/
public function __construct( $name, $link_content, array $tabs = array(), array $options = array() ) {
_deprecated_constructor( 'WPSEO_Metabox_Addon_Tab_Section', '11.9' );
parent::__construct( $name, $link_content, $tabs, $options );
}
/**
* Applies the actions for adding a tab to the metabox.
*
* @deprecated 11.9
*/
public function display_content() {
_deprecated_function( __METHOD__, '11.9' );
?>
<div role="tabpanel" id="wpseo-meta-section-addons" aria-labelledby="wpseo-meta-tab-addons" tabindex="0" class="wpseo-meta-section">
<div class="wpseo-metabox-tabs-div">
<ul class="wpseo-metabox-tabs">
<?php do_action( 'wpseo_tab_header' ); ?>
<?php
// @deprecated 11.9 This functionality has been replaced by the filter: `yoast_free_additional_metabox_sections`.
do_action_deprecated( 'wpseo_tab_header', array(), '11.9' );
?>
</ul>
<?php do_action( 'wpseo_tab_content' ); ?>
<?php
// @deprecated 11.9 This functionality has been replaced by the filter: `yoast_free_additional_metabox_sections`.
do_action_deprecated( 'wpseo_tab_content', array(), '11.9' );
?>
</div>
</div>
<?php
}
/**
* `WPSEO_Metabox_Addon_Section` always has "tabs", represented by registered actions. If this is not the case,
* `WPSEO_Metabox_Addon_Section` always has "sections", represented by registered actions. If this is not the case,
* it should not be instantiated.
*
* @deprecated 11.9
*
* @return bool
*/
protected function has_sections() {
_deprecated_function( __METHOD__, '11.9' );
return true;
}
}
......@@ -91,13 +91,7 @@ class WPSEO_Schema_Author extends WPSEO_Schema_Person implements WPSEO_Graph_Pie
* @return bool
*/
protected function is_post_author() {
/**
* Filter: 'wpseo_schema_article_post_type' - Allow changing for which post types we output Article schema.
*
* @api array $post_types The post types for which we output Article.
*/
$post_types = apply_filters( 'wpseo_schema_article_post_type', array( 'post' ) );
if ( is_singular( $post_types ) ) {
if ( is_singular() && WPSEO_Schema_Article::is_article_post_type() ) {
return true;
}
......
......@@ -116,7 +116,7 @@ class WPSEO_Shortlinker {
$cohort = '6-30';
break;
default:
$cohort = '>30';
$cohort = '30plus';
}
return $cohort;
}
......
......@@ -1216,6 +1216,155 @@ SVG;
return "<script type='application/ld+json' class='" . esc_attr( $class ) . "'>" . self::format_json_encode( $output ) . '</script>' . "\n";
}
/**
* Extends the allowed post tags with accessibility-related attributes.
*
* @param array $allowed_post_tags The allowed post tags.
* @codeCoverageIgnore
*
* @return array The allowed tags including post tags, input tags and select tags.
*/
public static function extend_kses_post_with_a11y( $allowed_post_tags ) {
static $a11y_tags;
if ( isset( $a11y_tags ) === false ) {
$a11y_tags = array(
'button' => array(
'aria-expanded' => true,
),
'div' => array(
'tabindex' => true,
),
// Below are attributes that are needed for backwards compatibility (WP < 5.1).
'span' => array(
'aria-hidden' => true,
),
'input' => array(
'aria-describedby' => true,
),
'select' => array(
'aria-describedby' => true,
),
'textarea' => array(
'aria-describedby' => true,
),
);
// Add the global allowed attributes to each html element.
$a11y_tags = array_map( '_wp_add_global_attributes', $a11y_tags );
}
return array_merge_recursive( $allowed_post_tags, $a11y_tags );
}
/**
* Extends the allowed post tags with input, select and option tags.
*
* @param array $allowed_post_tags The allowed post tags.
* @codeCoverageIgnore
*
* @return array The allowed tags including post tags, input tags, select tags and option tags.
*/
public static function extend_kses_post_with_forms( $allowed_post_tags ) {
static $input_tags;
if ( isset( $input_tags ) === false ) {
$input_tags = array(
'input' => array(
'accept' => true,
'accesskey' => true,
'align' => true,
'alt' => true,
'autocomplete' => true,
'autofocus' => true,
'checked' => true,
'contenteditable' => true,
'dirname' => true,
'disabled' => true,
'draggable' => true,
'dropzone' => true,
'form' => true,
'formaction' => true,
'formenctype' => true,
'formmethod' => true,
'formnovalidate' => true,
'formtarget' => true,
'height' => true,
'hidden' => true,
'lang' => true,
'list' => true,
'max' => true,
'maxlength' => true,
'min' => true,
'multiple' => true,
'name' => true,
'pattern' => true,
'placeholder' => true,
'readonly' => true,
'required' => true,
'size' => true,
'spellcheck' => true,
'src' => true,
'step' => true,
'tabindex' => true,
'translate' => true,
'type' => true,
'value' => true,
'width' => true,
/*
* Below are attributes that are needed for backwards compatibility (WP < 5.1).
* They are used for the social media image in the metabox.
* These can be removed once we move to the React versions of the social previews.
*/
'data-target' => true,
'data-target-id' => true,
),
'select' => array(
'accesskey' => true,
'autofocus' => true,
'contenteditable' => true,
'disabled' => true,
'draggable' => true,
'dropzone' => true,
'form' => true,
'hidden' => true,
'lang' => true,
'multiple' => true,
'name' => true,
'onblur' => true,
'onchange' => true,
'oncontextmenu' => true,
'onfocus' => true,
'oninput' => true,
'oninvalid' => true,
'onreset' => true,
'onsearch' => true,
'onselect' => true,
'onsubmit' => true,
'required' => true,
'size' => true,
'spellcheck' => true,
'tabindex' => true,
'translate' => true,
),
'option' => array(
'class' => true,
'disabled' => true,
'id' => true,
'label' => true,
'selected' => true,
'value' => true,
),
);
// Add the global allowed attributes to each html element.
$input_tags = array_map( '_wp_add_global_attributes', $input_tags );
}
return array_merge_recursive( $allowed_post_tags, $input_tags );
}
/* ********************* DEPRECATED METHODS ********************* */
/**
......
{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"nl"},"Has feedback":["Heeft feedback"],"Content optimization:":["Inhoudsoptimalisatie:"],"%1$sFlesch Reading Ease%2$s: The copy scores %3$s in the test, which is considered %4$s to read. %5$s":["%1$sFlesch Reading Ease%2$s: de tekst scoort %3$s in de test wat wordt beoordeeld als %4$s om te lezen. %5$s"],"%3$sImage alt attributes%5$s: Out of %2$d images on this page, %1$d have alt attributes with words from your keyphrase or synonyms. That's a bit much. %4$sOnly include the keyphrase or its synonyms when it really fits the image%5$s.":["%3$sImage alt attributen%5$s: Van de %2$d afbeeldingen op deze pagina ,%1$d hebben alt-attributen met woorden uit je keyphrase of synoniemen. Dat is een beetje teveel. %4$sNeem enkel de keyphrase of de synoniemen ervan op als deze echt in de afbeelding past%5$s."],"%1$sImage alt attributes%2$s: Good job!":["%1$sImage alt attributen%2$s: Goed gedaan!"],"%3$sImage alt attributes%5$s: Out of %2$d images on this page, only %1$d has an alt attribute that reflects the topic of your text. %4$sAdd your keyphrase or synonyms to the alt tags of more relevant images%5$s!":["Enkelvoud:%3$sImage alt-attributen%5$s: Van de %2$d afbeeldingen op deze pagina heeft alleen %1$d een alt-attribuut dat het onderwerp van je tekst weergeeft. %4$s Voeg je keyphrase of synoniemen toe aan de alt-tags van relevantere afbeeldingen%5$s!","Meervoud:%3$sImage alt-attributen%5$s: Van de %2$d afbeeldingen op deze pagina heeft alleen %1$d een alt-attribuut dat het onderwerp van je tekst weergeeft. %4$s Voeg je keyphrase of synoniemen toe aan de alt-tags van relevantere afbeeldingen%5$s!"],"%1$sImage alt attributes%3$s: Images on this page do not have alt attributes that reflect the topic of your text. %2$sAdd your keyphrase or synonyms to the alt tags of relevant images%3$s!":["%1$sImage alt attributen%3$s: Afbeeldingen op deze pagina hebben geen alt-attributen die het onderwerp van uw tekst weergeven.%2$sVoeg je keyphrase of synoniemen toe aan de alt-tags van relevante afbeeldingen%3$s!"],"%1$sImage alt attributes%3$s: Images on this page have alt attributes, but you have not set your keyphrase. %2$sFix that%3$s!":["%1$sImage alt attributen%3$s: Afbeeldingen op deze pagina hebben alt-kenmerken, maar je hebt je keyphrase nog niet ingesteld .%2$sDoe dat eerst%3$s!"],"%1$sKeyphrase in subheading%2$s: %3$s of your higher-level subheadings reflects the topic of your copy. Good job!":["%1$sKeyphrase in subkop%2$s: %3$s van de koppen met een hoger niveau geeft het onderwerp van je kopie weer. Goed gedaan!","%1$sKeyphrase in subkoppen%2$s: %3$s van de koppen met een hoger niveau geeft het onderwerp van je kopie weer. Goed gedaan!"],"%1$sKeyphrase in subheading%2$s: Your higher-level subheading reflects the topic of your copy. Good job!":["%1$sKeyphrase in subkop%2$s: Je subkop(en) met een hoger niveau geven het onderwerp van je kopie weer. Goed gedaan!"],"%1$sKeyphrase in subheading%3$s: %2$sUse more keyphrases or synonyms in your higher-level subheadings%3$s!":["%1$sKeyphrase in subkopje%3$s: %2$sGebruik meer keyphrases of synoniemen in je hogere rubrieken%3$s!"],"%1$sSingle title%3$s: H1s should only be used as your main title. Find all H1s in your text that aren't your main title and %2$schange them to a lower heading level%3$s!":["%1$sEnkele titel%3$s: H1s moeten alleen gebruikt worden voor de hoofd titel. Vind alle H1s in je tekst die niet de hoofdtitel zijn en %2$swijzig ze naar een lager koptekst niveau%3$s!"],"%1$sKeyphrase density%2$s: The focus keyphrase was found 0 times. That's less than the recommended minimum of %3$d times for a text of this length. %4$sFocus on your keyphrase%2$s!":["%1$sKeyphrase dichtheid%2$s: De focus keyphrase is 0 keer gevonden. Dat is minder dan het minimaal aanbevolen aantal van %3$d keer voor een tekst van deze lengte. %4$sFocus op je keyphrase%2$s!"],"%1$sKeyphrase density%2$s: The focus keyphrase was found %5$d time. That's less than the recommended minimum of %3$d times for a text of this length. %4$sFocus on your keyphrase%2$s!":["%1$sKeyphrase dichtheid%2$s: De focus keyphrase is %5$d keer gevonden. Dat is minder dan het minimum aanbevolen aantal van %3$d keer voor een tekst van deze lengte. %4$sFocus op je keyphrase%2$s!","%1$sKeyphrase dichtheid%2$s: De focus keyphrase is %5$d keer gevonden. Dat is minder dan het minimum aanbevolen aantal van %3$d keer voor een tekst van deze lengte. %4$sFocus op je keyphrase%2$s!"],"%1$sKeyphrase density%2$s: The focus keyphrase was found %3$d time. This is great!":["%1$sKeyphrase dichtheid%2$s: De focus keyphrase is %3$d keer gevonden. Dit is goed!","%1$sKeyphrase dichtheid%2$s: De focus keyphrase is %3$d keer gevonden. Dit is goed!"],"%1$sKeyphrase density%2$s: The focus keyphrase was found %5$d time. That's more than the recommended maximum of %3$d times for a text of this length. %4$sDon't overoptimize%2$s!":["%1$sKeyphrase dichtheid%2$s:De focus keyphrase is %5$d keer gevonden. Dat is meer dan het aanbevolen maximaal aantal van %3$d keer voor een tekst van deze lengte. %4$sProbeer niet te over optimaliseren%2$s!","%1$sKeyphrase dichtheid%2$s:De focus keyphrase is %5$d keer gevonden. Dat is meer dan het aanbevolen maximaal aantal van %3$d keer voor een tekst van deze lengte. %4$sProbeer niet te over optimaliseren%2$s!"],"%1$sKeyphrase density%2$s: The focus keyphrase was found %5$d time. That's way more than the recommended maximum of %3$d times for a text of this length. %4$sDon't overoptimize%2$s!":["%1$sKeyphrase dichtheid%2$s: De focus keyphrase is %5$d keer gevonden. Dat is veel meer dan het aanbevolen maximaal aantal van %3$d keer voor een tekst van deze lengte. %4$sProbeer niet te over optimaliseren%2$s!","%1$sKeyphrase dichtheid%2$s: De focus keyphrase is %5$d keer gevonden. Dat is veel meer dan het aanbevolen maximaal aantal van %3$d keer voor een tekst van deze lengte. %4$sProbeer niet te over optimaliseren%2$s!"],"%1$sFunction words in keyphrase%3$s: Your keyphrase \"%4$s\" contains function words only. %2$sLearn more about what makes a good keyphrase.%3$s":["%1$sFunctiewoorden in trefzin%3$s: Je keyphrase \"%4$s\" bavet alleen functiewoorden. %2$sBekijk wat een goede keyphrase is.%3$s"],"%1$sKeyphrase length%3$s: %2$sSet a keyphrase in order to calculate your SEO score%3$s.":["%1$sKeyphrase lengte%3$s: %2$sGeef een keyphrase op om je SEO score te kunnen berekenen%3$s."],"%1$sKeyphrase in slug%2$s: More than half of your keyphrase appears in the slug. That's great!":["%1$sKeyphrase in slug%2$s: Meer dan de helft van je keyphrase komt voor in de slug. Heel goed!"],"%1$sKeyphrase in slug%3$s: (Part of) your keyphrase does not appear in the slug. %2$sChange that%3$s!":["%1$sKeyphrase in slug%3$s: (Een deel van) je keyphrase lijkt niet voor te komen in de slug. %2$sVerander dit%3$s!"],"%1$sKeyphrase in slug%2$s: Great work!":["%1$sKeyphrase in slug%2$s: Goed bezig!"],"%1$sKeyphrase in title%3$s: Not all the words from your keyphrase \"%4$s\" appear in the SEO title. %2$sTry to use the exact match of your keyphrase in the SEO title%3$s.":["%1$sKeyphrase in de titel%3$s: Niet alle woorden uit je keyphrase \"%4$s\" zitten in de SEO-titel. %2$sProbeer om je volledige keyphrase te gebruiken in de SEO-titel%3$s."],"%1$sKeyphrase in title%3$s: Does not contain the exact match. %2$sTry to write the exact match of your keyphrase in the SEO title%3$s.":["%1$sKeyphrase in de titel%3$s: De titel bevat niet de volledige keyphrase. %2$sProbeer om je volledige keyphrase te gebruiken in de SEO-titel%3$s."],"%1$sKeyphrase in title%3$s: The exact match of the keyphrase appears in the SEO title, but not at the beginning. %2$sTry to move it to the beginning%3$s.":["%1$sKeyphrase in de titel%3$s: Je volledige keyphrase staat in de SEO-titel, maar niet aan het begin. %2$sProbeer de volledige keyphrase naar het begin te verplaatsen%3$s."],"%1$sKeyphrase in title%2$s: The exact match of the keyphrase appears at the beginning of the SEO title. Good job!":["%1$sKeyphrase in de titel%2$s: De volledige keyphrase staat aan het begin van de SEO-titel. Goed gedaan!"],"%1$sKeyphrase distribution%2$s: Good job!":["%1$sKeyphrase verdeling%2$s: Goed gedaan!"],"%1$sKeyphrase distribution%3$s: Uneven. Some parts of your text do not contain the keyphrase or its synonyms. %2$sDistribute them more evenly%3$s.":["%1$sKeyphrase verdeling%3$s: Slecht verdeeld. In sommige delen van je tekst komen de keyphrase of synoniemen niet voor. %2$sVerdeel ze beter over de tekst%3$s."],"%1$sKeyphrase distribution%3$s: Very uneven. Large parts of your text do not contain the keyphrase or its synonyms. %2$sDistribute them more evenly%3$s.":["%1$sKeyphrase verdeling%3$s: Zeer slecht verdeeld. In sommige delen van je tekst komen de keyphrase of synoniemen niet voor. %2$sVerdeel ze beter over de tekst%3$s."],"%1$sKeyphrase distribution%3$s: %2$sInclude your keyphrase or its synonyms in the text so that we can check keyphrase distribution%3$s.":["%1$sKeyphrase verdeling%3$s: %2$sGebruik je keyphrases of synoniemen in de tekst zodat we de keyphrase dichtheid kunnen bepalen%3$s."],"%4$sPreviously used keyphrase%6$s: You've used this keyphrase %1$s%2$d times before%3$s. %5$sDo not use your keyphrase more than once%6$s.":["%4$sEerder gebruikte keyphrase%6$s: Je hebt de volgende keyphrase %1$s%2$d keer eerder gebruikt%3$s. %5$sGebruik je keyphrase niet meer dan één keer%6$s."],"%3$sPreviously used keyphrase%5$s: You've used this keyphrase %1$sonce before%2$s. %4$sDo not use your keyphrase more than once%5$s.":["%3$sEerder gebruikte keyphrase%5$s: Je hebt de volgende keyphrase %1$séén keer eerder gebruikt%2$s. %4$sGebruik je keyphrase niet meer dan één keer%5$s."],"%1$sPreviously used keyphrase%2$s: You've not used this keyphrase before, very good.":["%1$sEerder gebruikt keyphrase%2$s: Je hebt dit keyphrase nog niet eerder gebruikt, heel goed."],"%1$sSlug stopwords%3$s: The slug for this page contains a stop word. %2$sRemove it%3$s!":["%1$sSlug stopwoorden%3$s: De slug voor deze pagina bevat een stopwoord. %2$sVerwijder deze%3$s!","%1$sSlug stopwoorden%3$s: De slug voor deze pagina bevat stopwoorden. %2$sVerwijder deze%3$s!"],"%1$sSlug too long%3$s: the slug for this page is a bit long. %2$sShorten it%3$s!":["%1$sSlug te lang%3$s: de slug voor deze pagina is een beetje te lang. %2$sMaak hem korter%3$s!"],"%1$sImage alt attributes%3$s: No images appear on this page. %2$sAdd some%3$s!":["%1$sAfbeelding alt attributes%3$s: Er staan geen afbeeldingen op deze pagina %2$sVoeg er een paar toe%3$s!"],"%1$sLink keyphrase%3$s: You're linking to another page with the words you want this page to rank for. %2$sDon't do that%3$s!":["%1$sKeyphrase-links%3$s: Je linkt naar een andere pagina met de woorden waarvan je wil dat deze pagina er op gevonden wordt. %2$sDat moet je niet doen%3$s!"],"This is far below the recommended minimum of %5$d word. %3$sAdd more content%4$s.":["Dit is veel minder dan het aanbevolen minimum aantal van %5$d woord. %3$sVoeg meer inhoud toe%4$s.","Dit is veel minder dan het aanbevolen minimum aantal van %5$d woorden. %3$sVoeg meer inhoud toe%4$s."],"This is below the recommended minimum of %5$d word. %3$sAdd more content%4$s.":["Dit is minder dan het aanbevolen aantal van %5$d woord. %3$sVoeg meer inhoud toe%4$s.","Dit is minder dan het aanbevolen aantal van %5$d woorden. %3$sVoeg meer inhoud toe%4$s."],"%2$sText length%4$s: The text contains %1$d word.":["%2$sTekstlengte%4$s: De tekst bevat %1$d woord.","%2$sTekstlengte%4$s: De tekst bevat %1$d woorden."],"%2$sText length%3$s: The text contains %1$d word. Good job!":["%2$sTekstlengte%3$s: De tekst bevat %1$d woord. Goed gedaan!","%2$sTekstlengte%3$s: De tekst bevat %1$d woorden. Goed gedaan!"],"%1$sKeyphrase in subheading%3$s: More than 75%% of your higher-level subheadings reflect the topic of your copy. That's too much. %2$sDon't over-optimize%3$s!":["%1$sKeyphrase in subkopje%3$s: Meer dan 75 %% van je subkoppen op een hoger niveau geven het onderwerp van je exemplaar weer. Dat is te veel. %2$sOver-optimaliseer niet%3$s!"],"%1$sSEO title width%3$s: %2$sPlease create an SEO title%3$s.":["%1$sSEO titel breedte%3$s: %2$sVoeg een SEO titel toe%3$s."],"%1$sSEO title width%3$s: The SEO title is wider than the viewable limit. %2$sTry to make it shorter%3$s.":["%1$sSEO titel lengte%3$s: de SEO-titel is langer dan de zichtbare limiet. %2$sProbeer die korter te maken%3$s."],"%1$sSEO title width%2$s: Good job!":["%1$s SEO titel breedte%2$s: Goed gedaan!"],"%1$sSEO title width%3$s: The SEO title is too short. %2$sUse the space to add keyphrase variations or create compelling call-to-action copy%3$s.":["%1$sBreedte van de SEO-titel%3$s: De SEO-titel is te kort. %2$sGebruik de ruimte om variaties op je keyphrase toe te voegen of schrijf een overtuigende call-to-action%3$s."],"%1$sOutbound links%2$s: There are both nofollowed and normal outbound links on this page. Good job!":["%1$sUitgaande links%2$s: Er staan zowel nofollow- als follow uitgaande links op deze pagina. Goed gedaan!"],"%1$sOutbound links%2$s: Good job!":["%1$sUitgaande links%2$s: Goed gedaan!"],"%1$sOutbound links%3$s: All outbound links on this page are nofollowed. %2$sAdd some normal links%3$s.":["%1$sUitgaande links%3$s: Alle uitgaande links op deze pagina zijn onvolgbaar. %2$sVoeg een aantal normale links toe%3$s."],"%1$sOutbound links%3$s: No outbound links appear in this page. %2$sAdd some%3$s!":["%1$sUitgaande links%3$s: Geen uitgaande links op deze pagina. %2$sVoeg ze toe%3$s!"],"%1$sMeta description length%2$s: Well done!":["%1$sLengte van de meta beschrijving%2$s: Goed gedaan!"],"%1$sMeta description length%3$s: The meta description is over %4$d characters. To ensure the entire description will be visible, %2$syou should reduce the length%3$s!":["%1$sLengte metabeschrijving%3$s: De metabeschrijving telt meer dan %4$d letters. Om er zeker van te zijn dat de hele beschrijving zichtbaar is %2$smoet je de tekst inkorten%3$s!"],"%1$sMeta description length%3$s: The meta description is too short (under %4$d characters). Up to %5$d characters are available. %2$sUse the space%3$s!":["%1$sLengte metabeschrijving%3$s: De metabeschrijving is te kort (minder dan %4$d letters). Je hebt nog ruimte voor %5$d letters. %2$sGebruik die%3$s!"],"%1$sMeta description length%3$s: No meta description has been specified. Search engines will display copy from the page instead. %2$sMake sure to write one%3$s!":["%1$sLengte metaomschrijving%3$s: Er is geen metaomschrijving. Zoekmachines tonen in plaats daarvan de tekst van het bericht. %2$sGeef een omschrijving%3$s!"],"%1$sKeyphrase in meta description%2$s: The meta description has been specified, but it does not contain the keyphrase. %3$sFix that%4$s!":["%1$sKeyphrase in meta description%2$s: Er is een meta description, maar de keyphrase zit er niet in. %3$sLos dat op%4$s!"],"%1$sKeyphrase in meta description%2$s: The meta description contains the keyphrase %3$s times, which is over the advised maximum of 2 times. %4$sLimit that%5$s!":["%1$sKeyphrase in meta description%2$s: De meta description bevat de keyphrase %3$s keer, wat meer is dan het geadviseerde maximum van 2 keer. %4$sPas dat aan%5$s!"],"%1$sKeyphrase in meta description%2$s: Keyphrase or synonym appear in the meta description. Well done!":["%1$sKeyphrase in metaomschrijving%2$s: De keyphrase of synoniem staan in de metaomschrijving. Goed zo!"],"%3$sKeyphrase length%5$s: The keyphrase is %1$d words long. That's way more than the recommended maximum of %2$d words. %4$sMake it shorter%5$s!":["%3$sKeyphraselengte%5$s: De keyphrase is %1$d woorden lang. Dat is veel meer dan het aanbevolen maximum van %2$d woorden. %4$sMaak het korter%5$s!"],"%3$sKeyphrase length%5$s: The keyphrase is %1$d words long. That's more than the recommended maximum of %2$d words. %4$sMake it shorter%5$s!":["%3$sKeyphrase lengte%5$s: De keyphrase is %1$d woorden lang. Dat is meer dan het aanbevolen maximum van %2$d woorden. %4$sMaak het korter%5$s!"],"%1$sKeyphrase length%2$s: Good job!":["%1$sKeyphraselengte%2$s: goed gedaan!"],"%1$sKeyphrase length%3$s: No focus keyphrase was set for this page. %2$sSet a keyphrase in order to calculate your SEO score%3$s.":["%1$sKeyphrase lengte%3$s: er is geen focus keyphrase ingesteld voor deze pagina. %2$sStel een keyphrase in om je SEO score te kunnen berekenen%3$s."],"%1$sKeyphrase in introduction%3$s: Your keyphrase or its synonyms do not appear in the first paragraph. %2$sMake sure the topic is clear immediately%3$s.":["%1$sKeyphrase in introductie%3$s: je keyphrase of synoniemen staan niet in de eerste alinea. %2$sZorg ervoor dat het onderwerp direct duidelijk is%3$s."],"%1$sKeyphrase in introduction%3$s:Your keyphrase or its synonyms appear in the first paragraph of the copy, but not within one sentence. %2$sFix that%3$s!":["%1$sKeyphrase in introductie%3$s: je keyphrase of synoniem staan in de eerste alinea van de tekst, maar niet in één zin. %2$sDoe dit wel%3$s!"],"%1$sKeyphrase in introduction%2$s: Well done!":["%1$sKeyphrase in introductie%2$s: goed gedaan!"],"%1$sInternal links%2$s: There are both nofollowed and normal internal links on this page. Good job!":["%1$sInterne links%2$s: er staan no-follow en normale interne links op deze pagina. Goed werk!"],"%1$sInternal links%2$s: You have enough internal links. Good job!":["%1$sInterne links%2$s: je hebt voldoende interne links. Goed werk!"],"%1$sInternal links%3$s: The internal links in this page are all nofollowed. %2$sAdd some good internal links%3$s.":["%1$sInterne links%3$s: de interne links op deze pagina zijn allemaal no-follow. %2$sVoeg wat goede interne links toe%3$s."],"%1$sInternal links%3$s: No internal links appear in this page, %2$smake sure to add some%3$s!":["%1$sInterne links%3$s: er staan geen interne links op deze pagina, %2$svoeg er een aantal toe%3$s!"],"%1$sTransition words%2$s: Well done!":["%1$sOvergangswoorden%2$s: goed gedaan!"],"%1$sTransition words%2$s: Only %3$s of the sentences contain transition words, which is not enough. %4$sUse more of them%2$s.":["%1$sOvergangswoorden%2$s: slechts %3$s van de zinnen bevatten overgangswoorden, dat is niet genoeg. %4$sGebruik er meer van%2$s."],"%1$sTransition words%2$s: None of the sentences contain transition words. %3$sUse some%2$s.":["%1$sOvergangswoorden%2$s: geen enkele zin bevat overgangswoorden. %3$sGebruik er een paar%2$s."],"%1$sNot enough content%2$s: %3$sPlease add some content to enable a good analysis%2$s.":["%1$sOnvoldoende inhoud%2$s: %3$sVoeg wat inhoud toe om een goede analyse mogelijk te maken%2$s."],"%1$sSubheading distribution%2$s: You are not using any subheadings, but your text is short enough and probably doesn't need them.":["%1$sKoptekst-verdeling%2$s: je gebruikt geen koptekst, maar je tekst is kort genoeg en heeft ze waarschijnlijk niet nodig."],"%1$sSubheading distribution%2$s: You are not using any subheadings, although your text is rather long. %3$sTry and add some subheadings%2$s.":["%1$sKoptekst-verdeling%2$s: je gebruik geen kopteksten, hoewel je tekst vrij lang is. %3$sProbeer wat kopteksten toe te voegen%2$s."],"%1$sSubheading distribution%2$s: %3$d section of your text is longer than %4$d words and is not separated by any subheadings. %5$sAdd subheadings to improve readability%2$s.":["%1$sKoptekst-verdeling%2$s: %3$d sectie van je tekst is langer dan %4$d woorden, en wordt niet verdeeld door kopteksten. %5$sVoeg kopteksten toe om de leesbaarheid te verbeteren%2$s.","%1$sKopteksten-verdeling%2$s: %3$d secties van je tekst zijn langer dan %4$d woorden, en worden niet verdeeld door kopteksten. %5$sVoeg kopteksten toe om de leesbaarheid te verbeteren%2$s."],"%1$sSubheading distribution%2$s: Great job!":["%1$sKoptekst-verdeling%2$s: goed gedaan!"],"%1$sSentence length%2$s: %3$s of the sentences contain more than %4$s words, which is more than the recommended maximum of %5$s. %6$sTry to shorten the sentences%2$s.":["%1$sZinslengte%2$s: %3$s van de zinnen bevat meer dan %4$s woorden, wat meer is dan het aanbevolen maximum van %5$s. %6$sProbeer de zinnen in te korten%2$s."],"%1$sSentence length%2$s: Great!":["%1$sZinslengte%2$s: Fantastisch!"],"%1$sConsecutive sentences%2$s: There is enough variety in your sentences. That's great!":["%1$sOpeenvolgende zinnen%2$s: er zit voldoende variatie in je zinnen. Dat is goed!"],"%1$sConsecutive sentences%2$s: The text contains %3$d consecutive sentences starting with the same word. %5$sTry to mix things up%2$s!":["%1$sOpeenvolgende zinnen%2$s: de tekst bevat %3$d opeenvolgende zinnen die beginnen met hetzelfde woord. %5$sProbeer het te variëren%2$s!","%1$sOpeenvolgende zinnen%2$s: de tekst bevat %4$d plaatsen waar %3$d of meer opeenvolgende zinnen die beginnen met hetzelfde woord. %5$sTry to mix things up%2$s!"],"%1$sPassive voice%2$s: %3$s of the sentences contain passive voice, which is more than the recommended maximum of %4$s. %5$sTry to use their active counterparts%2$s.":["%1$sLijdende vorm%2$s: %3$s van de zinnen bevat lijdende vorm, wat meer is dan het aangeraden maximum van %4$s. %5$sProbeer hun actieve tegenhangers te gebruiken%2$s."],"%1$sPassive voice%2$s: You're using enough active voice. That's great!":["%1$sLijdende vorm%2$s: je gebruikt voldoende actieve vorm. Dat is goed!"],"%1$sParagraph length%2$s: %3$d of the paragraphs contains more than the recommended maximum of %4$d words. %5$sShorten your paragraphs%2$s!":["%1$sParagraaflengte%2$s: %3$d van de paragrafen bevat meer dan het aanbevolen aantal van %4$d woorden. %5$sMaak je paragrafen korter%2$s!","%1$sParagraaflengte%2$s: %3$d van de paragrafen bevatten meer dan het aanbevolen aantal van %4$d woorden. %5$sMaak je paragrafen korter%2$s!"],"%1$sParagraph length%2$s: None of the paragraphs are too long. Great job!":["%1$sParagraaflengte%2$s: geen van de paragrafen is te lang. Goed werk!"],"Good job!":["Goed gedaan!"],"%1$sFlesch Reading Ease%2$s: The copy scores %3$s in the test, which is considered %4$s to read. %5$s%6$s%7$s":["%1$sFlesch Reading Ease%2$s: de tekst scoort %3$s in de test, wat wordt beschouwd als %4$s te lezen. %5$s%6$s%7$s"],"Scroll to see the preview content.":["Scrol om de voorbeeldinhoud te zien."],"An error occurred in the '%1$s' assessment":["Er ging iets fout in de '%1$s'-beoordeling"],"%1$s of the words contain %2$sover %3$s syllables%4$s, which is more than the recommended maximum of %5$s.":["%1$s van de woorden bevat %2$sover %3$s lettergrepen%4$s, wat meer is dan het aanbevolen maximum van %5$s."],"%1$s of the words contain %2$sover %3$s syllables%4$s, which is less than or equal to the recommended maximum of %5$s.":["%1$s van de woorden bevat %2$sover %3$s lettergrepen%4$s, wat minder is dan of gelijk aan het aanbevolen maximum van %5$s."],"This is slightly below the recommended minimum of %5$d word. %3$sAdd a bit more copy%4$s.":["Dit is net onder het %2$sminimum aantal aanbevolen%3$s van %4$d woord. Voeg nog iets meer tekst toe.","Dit is net onder het %2$sminimum aantal aanbevolen%3$s van %4$d woorden. Voeg nog iets meer tekst toe."],"The meta description contains %1$d sentence %2$sover %3$s words%4$s. Try to shorten this sentence.":["De meta-omschrijving bevat %1$d zin van %2$smeer dan %3$s woorden%4$s. Probeer deze in te korten.","De meta-omschrijving bevat %1$d zinnen van %2$smeer dan %3$s woorden%4$s. Probeer deze in te korten."],"The meta description contains no sentences %1$sover %2$s words%3$s.":["De meta-omschrijving bevat geen zinnen van %1$smeer dan %2$s woorden%3$s."],"Mobile preview":["Mobiel preview"],"Desktop preview":["Desktop preview"],"Please provide an SEO title by editing the snippet below.":["Voeg een SEO-titel toe door de snippet hieronder te bewerken."],"Meta description preview:":["Meta-omschrijvingvoorvertoning:"],"Slug preview:":["Voorvertoning slug:"],"SEO title preview:":["SEO-titel-preview:"],"Close snippet editor":["Snippet-editor sluiten"],"Slug":["Slug"],"Remove marks in the text":["Markeringen in de tekst verwijderen"],"Mark this result in the text":["Dit resultaat markeren in de text"],"Marks are disabled in current view":["Markeringen zijn uitgeschakeld in de huidige weergave"],"Good SEO score":["Goede SEO-score"],"OK SEO score":["Redelijke SEO-score"],"Feedback":["Reacties"],"ok":["ok"],"Please provide a meta description by editing the snippet below.":["Voeg een meta-omschrijving toe door de onderstaande snippet te bewerken."],"Edit snippet":["Snippet bewerken"],"You can click on each element in the preview to jump to the Snippet Editor.":["Je kan op elk element in het voorbeeld klikken om naar de snippet-editor te gaan."],"SEO title":["SEO-titel"],"Needs improvement":["Heeft verbetering nodig"],"Good":["Goed"],"very difficult":["heel moeilijk"],"Try to make shorter sentences, using less difficult words to improve readability":["Probeer kortere zinnen met minder moeilijke woorden te maken om de leesbaarheid te verbeteren."],"difficult":["moeilijk"],"Try to make shorter sentences to improve readability":["Probeer kortere zinnen te maken om de leesbaarheid te verbeteren."],"fairly difficult":["redelijk moeilijk"],"OK":["OK"],"fairly easy":["redelijk eenvoudig"],"easy":["eenvoudig"],"very easy":["heel eenvoudig"],"Meta description":["Meta-omschrijving"],"Snippet preview":["Snippetvoorvertoning"]}}}
\ No newline at end of file
{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"nl"},"Has feedback":["Heeft feedback"],"Content optimization:":["Inhoudsoptimalisatie:"],"%1$sFlesch Reading Ease%2$s: The copy scores %3$s in the test, which is considered %4$s to read. %5$s":["%1$sFlesch Reading Ease%2$s: de tekst scoort %3$s in de test wat wordt beoordeeld als %4$s om te lezen. %5$s"],"%3$sImage alt attributes%5$s: Out of %2$d images on this page, %1$d have alt attributes with words from your keyphrase or synonyms. That's a bit much. %4$sOnly include the keyphrase or its synonyms when it really fits the image%5$s.":["%3$sImage alt attributen%5$s: Van de %2$d afbeeldingen op deze pagina ,%1$d hebben alt-attributen met woorden uit je keyphrase of synoniemen. Dat is een beetje teveel. %4$sNeem enkel de keyphrase of de synoniemen ervan op als deze echt in de afbeelding past%5$s."],"%1$sImage alt attributes%2$s: Good job!":["%1$sImage alt attributen%2$s: Goed gedaan!"],"%3$sImage alt attributes%5$s: Out of %2$d images on this page, only %1$d has an alt attribute that reflects the topic of your text. %4$sAdd your keyphrase or synonyms to the alt tags of more relevant images%5$s!":["Enkelvoud:%3$sImage alt-attributen%5$s: Van de %2$d afbeeldingen op deze pagina heeft alleen %1$d een alt-attribuut dat het onderwerp van je tekst weergeeft. %4$s Voeg je keyphrase of synoniemen toe aan de alt-tags van relevantere afbeeldingen%5$s!","Meervoud:%3$sImage alt-attributen%5$s: Van de %2$d afbeeldingen op deze pagina heeft alleen %1$d een alt-attribuut dat het onderwerp van je tekst weergeeft. %4$s Voeg je keyphrase of synoniemen toe aan de alt-tags van relevantere afbeeldingen%5$s!"],"%1$sImage alt attributes%3$s: Images on this page do not have alt attributes that reflect the topic of your text. %2$sAdd your keyphrase or synonyms to the alt tags of relevant images%3$s!":["%1$sImage alt attributen%3$s: Afbeeldingen op deze pagina hebben geen alt-attributen die het onderwerp van uw tekst weergeven.%2$sVoeg je keyphrase of synoniemen toe aan de alt-tags van relevante afbeeldingen%3$s!"],"%1$sImage alt attributes%3$s: Images on this page have alt attributes, but you have not set your keyphrase. %2$sFix that%3$s!":["%1$sImage alt attributen%3$s: Afbeeldingen op deze pagina hebben alt-kenmerken, maar je hebt je keyphrase nog niet ingesteld .%2$sDoe dat eerst%3$s!"],"%1$sKeyphrase in subheading%2$s: %3$s of your higher-level subheadings reflects the topic of your copy. Good job!":["%1$sKeyphrase in subkop%2$s: %3$s van de koppen met een hoger niveau geeft het onderwerp van je kopie weer. Goed gedaan!","%1$sKeyphrase in subkoppen%2$s: %3$s van de koppen met een hoger niveau geeft het onderwerp van je kopie weer. Goed gedaan!"],"%1$sKeyphrase in subheading%2$s: Your higher-level subheading reflects the topic of your copy. Good job!":["%1$sKeyphrase in subkop%2$s: Je subkop(en) met een hoger niveau geven het onderwerp van je kopie weer. Goed gedaan!"],"%1$sKeyphrase in subheading%3$s: %2$sUse more keyphrases or synonyms in your higher-level subheadings%3$s!":["%1$sKeyphrase in subkopje%3$s: %2$sGebruik meer keyphrases of synoniemen in je hogere rubrieken%3$s!"],"%1$sSingle title%3$s: H1s should only be used as your main title. Find all H1s in your text that aren't your main title and %2$schange them to a lower heading level%3$s!":["%1$sEnkele titel%3$s: H1s moeten alleen gebruikt worden voor de hoofd titel. Vind alle H1s in je tekst die niet de hoofdtitel zijn en %2$swijzig ze naar een lager koptekst niveau%3$s!"],"%1$sKeyphrase density%2$s: The focus keyphrase was found 0 times. That's less than the recommended minimum of %3$d times for a text of this length. %4$sFocus on your keyphrase%2$s!":["%1$sKeyphrase dichtheid%2$s: De focus keyphrase is 0 keer gevonden. Dat is minder dan het minimaal aanbevolen aantal van %3$d keer voor een tekst van deze lengte. %4$sFocus op je keyphrase%2$s!"],"%1$sKeyphrase density%2$s: The focus keyphrase was found %5$d time. That's less than the recommended minimum of %3$d times for a text of this length. %4$sFocus on your keyphrase%2$s!":["%1$sKeyphrase dichtheid%2$s: De focus keyphrase is %5$d keer gevonden. Dat is minder dan het minimum aanbevolen aantal van %3$d keer voor een tekst van deze lengte. %4$sFocus op je keyphrase%2$s!","%1$sKeyphrase dichtheid%2$s: De focus keyphrase is %5$d keer gevonden. Dat is minder dan het minimum aanbevolen aantal van %3$d keer voor een tekst van deze lengte. %4$sFocus op je keyphrase%2$s!"],"%1$sKeyphrase density%2$s: The focus keyphrase was found %3$d time. This is great!":["%1$sKeyphrase dichtheid%2$s: De focus keyphrase is %3$d keer gevonden. Dit is goed!","%1$sKeyphrase dichtheid%2$s: De focus keyphrase is %3$d keer gevonden. Dit is goed!"],"%1$sKeyphrase density%2$s: The focus keyphrase was found %5$d time. That's more than the recommended maximum of %3$d times for a text of this length. %4$sDon't overoptimize%2$s!":["%1$sKeyphrase dichtheid%2$s:De focus keyphrase is %5$d keer gevonden. Dat is meer dan het aanbevolen maximaal aantal van %3$d keer voor een tekst van deze lengte. %4$sProbeer niet te over optimaliseren%2$s!","%1$sKeyphrase dichtheid%2$s:De focus keyphrase is %5$d keer gevonden. Dat is meer dan het aanbevolen maximaal aantal van %3$d keer voor een tekst van deze lengte. %4$sProbeer niet te over optimaliseren%2$s!"],"%1$sKeyphrase density%2$s: The focus keyphrase was found %5$d time. That's way more than the recommended maximum of %3$d times for a text of this length. %4$sDon't overoptimize%2$s!":["%1$sKeyphrase dichtheid%2$s: De focus keyphrase is %5$d keer gevonden. Dat is veel meer dan het aanbevolen maximaal aantal van %3$d keer voor een tekst van deze lengte. %4$sProbeer niet te over optimaliseren%2$s!","%1$sKeyphrase dichtheid%2$s: De focus keyphrase is %5$d keer gevonden. Dat is veel meer dan het aanbevolen maximaal aantal van %3$d keer voor een tekst van deze lengte. %4$sProbeer niet te over optimaliseren%2$s!"],"%1$sFunction words in keyphrase%3$s: Your keyphrase \"%4$s\" contains function words only. %2$sLearn more about what makes a good keyphrase.%3$s":["%1$sFunctiewoorden in trefzin%3$s: Je keyphrase \"%4$s\" bavet alleen functiewoorden. %2$sBekijk wat een goede keyphrase is.%3$s"],"%1$sKeyphrase length%3$s: %2$sSet a keyphrase in order to calculate your SEO score%3$s.":["%1$sKeyphrase lengte%3$s: %2$sGeef een keyphrase op om je SEO score te kunnen berekenen%3$s."],"%1$sKeyphrase in slug%2$s: More than half of your keyphrase appears in the slug. That's great!":["%1$sKeyphrase in slug%2$s: Meer dan de helft van je keyphrase komt voor in de slug. Heel goed!"],"%1$sKeyphrase in slug%3$s: (Part of) your keyphrase does not appear in the slug. %2$sChange that%3$s!":["%1$sKeyphrase in slug%3$s: (Een deel van) je keyphrase lijkt niet voor te komen in de slug. %2$sVerander dit%3$s!"],"%1$sKeyphrase in slug%2$s: Great work!":["%1$sKeyphrase in slug%2$s: Goed bezig!"],"%1$sKeyphrase in title%3$s: Not all the words from your keyphrase \"%4$s\" appear in the SEO title. %2$sTry to use the exact match of your keyphrase in the SEO title%3$s.":["%1$sKeyphrase in de titel%3$s: Niet alle woorden uit je keyphrase \"%4$s\" zitten in de SEO-titel. %2$sProbeer om je volledige keyphrase te gebruiken in de SEO-titel%3$s."],"%1$sKeyphrase in title%3$s: Does not contain the exact match. %2$sTry to write the exact match of your keyphrase in the SEO title%3$s.":["%1$sKeyphrase in de titel%3$s: De titel bevat niet de volledige keyphrase. %2$sProbeer om je volledige keyphrase te gebruiken in de SEO-titel%3$s."],"%1$sKeyphrase in title%3$s: The exact match of the keyphrase appears in the SEO title, but not at the beginning. %2$sTry to move it to the beginning%3$s.":["%1$sKeyphrase in de titel%3$s: Je volledige keyphrase staat in de SEO-titel, maar niet aan het begin. %2$sProbeer de volledige keyphrase naar het begin te verplaatsen%3$s."],"%1$sKeyphrase in title%2$s: The exact match of the keyphrase appears at the beginning of the SEO title. Good job!":["%1$sKeyphrase in de titel%2$s: De volledige keyphrase staat aan het begin van de SEO-titel. Goed gedaan!"],"%1$sKeyphrase distribution%2$s: Good job!":["%1$sKeyphrase verdeling%2$s: Goed gedaan!"],"%1$sKeyphrase distribution%3$s: Uneven. Some parts of your text do not contain the keyphrase or its synonyms. %2$sDistribute them more evenly%3$s.":["%1$sKeyphrase verdeling%3$s: Slecht verdeeld. In sommige delen van je tekst komen de keyphrase of synoniemen niet voor. %2$sVerdeel ze beter over de tekst%3$s."],"%1$sKeyphrase distribution%3$s: Very uneven. Large parts of your text do not contain the keyphrase or its synonyms. %2$sDistribute them more evenly%3$s.":["%1$sKeyphrase verdeling%3$s: Zeer slecht verdeeld. In sommige delen van je tekst komen de keyphrase of synoniemen niet voor. %2$sVerdeel ze beter over de tekst%3$s."],"%1$sKeyphrase distribution%3$s: %2$sInclude your keyphrase or its synonyms in the text so that we can check keyphrase distribution%3$s.":["%1$sKeyphrase verdeling%3$s: %2$sGebruik je keyphrases of synoniemen in de tekst zodat we de keyphrase dichtheid kunnen bepalen%3$s."],"%4$sPreviously used keyphrase%6$s: You've used this keyphrase %1$s%2$d times before%3$s. %5$sDo not use your keyphrase more than once%6$s.":["%4$sEerder gebruikte keyphrase%6$s: Je hebt de volgende keyphrase %1$s%2$d keer eerder gebruikt%3$s. %5$sGebruik je keyphrase niet meer dan één keer%6$s."],"%3$sPreviously used keyphrase%5$s: You've used this keyphrase %1$sonce before%2$s. %4$sDo not use your keyphrase more than once%5$s.":["%3$sEerder gebruikte keyphrase%5$s: Je hebt de volgende keyphrase %1$séén keer eerder gebruikt%2$s. %4$sGebruik je keyphrase niet meer dan één keer%5$s."],"%1$sPreviously used keyphrase%2$s: You've not used this keyphrase before, very good.":["%1$sEerder gebruikt keyphrase%2$s: Je hebt dit keyphrase nog niet eerder gebruikt, heel goed."],"%1$sSlug stopwords%3$s: The slug for this page contains a stop word. %2$sRemove it%3$s!":["%1$sSlug stopwoorden%3$s: De slug voor deze pagina bevat een stopwoord. %2$sVerwijder deze%3$s!","%1$sSlug stopwoorden%3$s: De slug voor deze pagina bevat stopwoorden. %2$sVerwijder deze%3$s!"],"%1$sSlug too long%3$s: the slug for this page is a bit long. %2$sShorten it%3$s!":["%1$sSlug te lang%3$s: de slug voor deze pagina is een beetje te lang. %2$sMaak hem korter%3$s!"],"%1$sImage alt attributes%3$s: No images appear on this page. %2$sAdd some%3$s!":["%1$sAfbeelding alt attributes%3$s: Er staan geen afbeeldingen op deze pagina %2$sVoeg er een paar toe%3$s!"],"%1$sLink keyphrase%3$s: You're linking to another page with the words you want this page to rank for. %2$sDon't do that%3$s!":["%1$sKeyphrase-links%3$s: Je linkt naar een andere pagina met de woorden waarvan je wil dat deze pagina er op gevonden wordt. %2$sDat moet je niet doen%3$s!"],"This is far below the recommended minimum of %5$d word. %3$sAdd more content%4$s.":["Dit is veel minder dan het aanbevolen minimum aantal van %5$d woord. %3$sVoeg meer inhoud toe%4$s.","Dit is veel minder dan het aanbevolen minimum aantal van %5$d woorden. %3$sVoeg meer inhoud toe%4$s."],"This is below the recommended minimum of %5$d word. %3$sAdd more content%4$s.":["Dit is minder dan het aanbevolen aantal van %5$d woord. %3$sVoeg meer inhoud toe%4$s.","Dit is minder dan het aanbevolen aantal van %5$d woorden. %3$sVoeg meer inhoud toe%4$s."],"%2$sText length%4$s: The text contains %1$d word.":["%2$sTekstlengte%4$s: De tekst bevat %1$d woord.","%2$sTekstlengte%4$s: De tekst bevat %1$d woorden."],"%2$sText length%3$s: The text contains %1$d word. Good job!":["%2$sTekstlengte%3$s: De tekst bevat %1$d woord. Goed gedaan!","%2$sTekstlengte%3$s: De tekst bevat %1$d woorden. Goed gedaan!"],"%1$sKeyphrase in subheading%3$s: More than 75%% of your higher-level subheadings reflect the topic of your copy. That's too much. %2$sDon't over-optimize%3$s!":["%1$sKeyphrase in subkopje%3$s: Meer dan 75 %% van je subkoppen op een hoger niveau geven het onderwerp van je exemplaar weer. Dat is te veel. %2$sOver-optimaliseer niet%3$s!"],"%1$sSEO title width%3$s: %2$sPlease create an SEO title%3$s.":["%1$sSEO titel breedte%3$s: %2$sVoeg een SEO titel toe%3$s."],"%1$sSEO title width%3$s: The SEO title is wider than the viewable limit. %2$sTry to make it shorter%3$s.":["%1$sSEO titel lengte%3$s: de SEO-titel is langer dan de zichtbare limiet. %2$sProbeer die korter te maken%3$s."],"%1$sSEO title width%2$s: Good job!":["%1$s SEO titel breedte%2$s: Goed gedaan!"],"%1$sSEO title width%3$s: The SEO title is too short. %2$sUse the space to add keyphrase variations or create compelling call-to-action copy%3$s.":["%1$sBreedte van de SEO-titel%3$s: De SEO-titel is te kort. %2$sGebruik de ruimte om variaties op je keyphrase toe te voegen of schrijf een overtuigende call-to-action%3$s."],"%1$sOutbound links%2$s: There are both nofollowed and normal outbound links on this page. Good job!":["%1$sUitgaande links%2$s: Er staan zowel nofollow- als follow uitgaande links op deze pagina. Goed gedaan!"],"%1$sOutbound links%2$s: Good job!":["%1$sUitgaande links%2$s: Goed gedaan!"],"%1$sOutbound links%3$s: All outbound links on this page are nofollowed. %2$sAdd some normal links%3$s.":["%1$sUitgaande links%3$s: Alle uitgaande links op deze pagina zijn onvolgbaar. %2$sVoeg een aantal normale links toe%3$s."],"%1$sOutbound links%3$s: No outbound links appear in this page. %2$sAdd some%3$s!":["%1$sUitgaande links%3$s: Geen uitgaande links op deze pagina. %2$sVoeg ze toe%3$s!"],"%1$sMeta description length%2$s: Well done!":["%1$sLengte van de meta beschrijving%2$s: Goed gedaan!"],"%1$sMeta description length%3$s: The meta description is over %4$d characters. To ensure the entire description will be visible, %2$syou should reduce the length%3$s!":["%1$sLengte metabeschrijving%3$s: De metabeschrijving telt meer dan %4$d letters. Om er zeker van te zijn dat de hele beschrijving zichtbaar is %2$smoet je de tekst inkorten%3$s!"],"%1$sMeta description length%3$s: The meta description is too short (under %4$d characters). Up to %5$d characters are available. %2$sUse the space%3$s!":["%1$sLengte metabeschrijving%3$s: De metabeschrijving is te kort (minder dan %4$d letters). Je hebt nog ruimte voor %5$d letters. %2$sGebruik die%3$s!"],"%1$sMeta description length%3$s: No meta description has been specified. Search engines will display copy from the page instead. %2$sMake sure to write one%3$s!":["%1$sLengte metaomschrijving%3$s: Er is geen metaomschrijving. Zoekmachines tonen in plaats daarvan de tekst van het bericht. %2$sGeef een omschrijving%3$s!"],"%1$sKeyphrase in meta description%2$s: The meta description has been specified, but it does not contain the keyphrase. %3$sFix that%4$s!":["%1$sKeyphrase in meta description%2$s: Er is een meta description, maar de keyphrase zit er niet in. %3$sLos dat op%4$s!"],"%1$sKeyphrase in meta description%2$s: The meta description contains the keyphrase %3$s times, which is over the advised maximum of 2 times. %4$sLimit that%5$s!":["%1$sKeyphrase in meta description%2$s: De meta description bevat de keyphrase %3$s keer, wat meer is dan het geadviseerde maximum van 2 keer. %4$sPas dat aan%5$s!"],"%1$sKeyphrase in meta description%2$s: Keyphrase or synonym appear in the meta description. Well done!":["%1$sKeyphrase in metaomschrijving%2$s: De keyphrase of synoniem staan in de metaomschrijving. Goed zo!"],"%3$sKeyphrase length%5$s: The keyphrase is %1$d words long. That's way more than the recommended maximum of %2$d words. %4$sMake it shorter%5$s!":["%3$sKeyphraselengte%5$s: De keyphrase is %1$d woorden lang. Dat is veel meer dan het aanbevolen maximum van %2$d woorden. %4$sMaak het korter%5$s!"],"%3$sKeyphrase length%5$s: The keyphrase is %1$d words long. That's more than the recommended maximum of %2$d words. %4$sMake it shorter%5$s!":["%3$sKeyphrase lengte%5$s: De keyphrase is %1$d woorden lang. Dat is meer dan het aanbevolen maximum van %2$d woorden. %4$sMaak het korter%5$s!"],"%1$sKeyphrase length%2$s: Good job!":["%1$sKeyphraselengte%2$s: goed gedaan!"],"%1$sKeyphrase length%3$s: No focus keyphrase was set for this page. %2$sSet a keyphrase in order to calculate your SEO score%3$s.":["%1$sKeyphrase lengte%3$s: Er is geen focus keyphrase ingesteld voor deze pagina. %2$sStel een keyphrase in om je SEO score te kunnen berekenen%3$s."],"%1$sKeyphrase in introduction%3$s: Your keyphrase or its synonyms do not appear in the first paragraph. %2$sMake sure the topic is clear immediately%3$s.":["%1$sKeyphrase in introductie%3$s: je keyphrase of synoniemen staan niet in de eerste alinea. %2$sZorg ervoor dat het onderwerp direct duidelijk is%3$s."],"%1$sKeyphrase in introduction%3$s:Your keyphrase or its synonyms appear in the first paragraph of the copy, but not within one sentence. %2$sFix that%3$s!":["%1$sKeyphrase in introductie%3$s: je keyphrase of synoniem staan in de eerste alinea van de tekst, maar niet in één zin. %2$sDoe dit wel%3$s!"],"%1$sKeyphrase in introduction%2$s: Well done!":["%1$sKeyphrase in introductie%2$s: goed gedaan!"],"%1$sInternal links%2$s: There are both nofollowed and normal internal links on this page. Good job!":["%1$sInterne links%2$s: er staan no-follow en normale interne links op deze pagina. Goed werk!"],"%1$sInternal links%2$s: You have enough internal links. Good job!":["%1$sInterne links%2$s: je hebt voldoende interne links. Goed werk!"],"%1$sInternal links%3$s: The internal links in this page are all nofollowed. %2$sAdd some good internal links%3$s.":["%1$sInterne links%3$s: de interne links op deze pagina zijn allemaal no-follow. %2$sVoeg wat goede interne links toe%3$s."],"%1$sInternal links%3$s: No internal links appear in this page, %2$smake sure to add some%3$s!":["%1$sInterne links%3$s: er staan geen interne links op deze pagina, %2$svoeg er een aantal toe%3$s!"],"%1$sTransition words%2$s: Well done!":["%1$sOvergangswoorden%2$s: goed gedaan!"],"%1$sTransition words%2$s: Only %3$s of the sentences contain transition words, which is not enough. %4$sUse more of them%2$s.":["%1$sOvergangswoorden%2$s: slechts %3$s van de zinnen bevatten overgangswoorden, dat is niet genoeg. %4$sGebruik er meer van%2$s."],"%1$sTransition words%2$s: None of the sentences contain transition words. %3$sUse some%2$s.":["%1$sOvergangswoorden%2$s: geen enkele zin bevat overgangswoorden. %3$sGebruik er een paar%2$s."],"%1$sNot enough content%2$s: %3$sPlease add some content to enable a good analysis%2$s.":["%1$sOnvoldoende inhoud%2$s: %3$sVoeg wat inhoud toe om een goede analyse mogelijk te maken%2$s."],"%1$sSubheading distribution%2$s: You are not using any subheadings, but your text is short enough and probably doesn't need them.":["%1$sKoptekst-verdeling%2$s: je gebruikt geen koptekst, maar je tekst is kort genoeg en heeft ze waarschijnlijk niet nodig."],"%1$sSubheading distribution%2$s: You are not using any subheadings, although your text is rather long. %3$sTry and add some subheadings%2$s.":["%1$sKoptekst-verdeling%2$s: je gebruik geen kopteksten, hoewel je tekst vrij lang is. %3$sProbeer wat kopteksten toe te voegen%2$s."],"%1$sSubheading distribution%2$s: %3$d section of your text is longer than %4$d words and is not separated by any subheadings. %5$sAdd subheadings to improve readability%2$s.":["%1$sKoptekst-verdeling%2$s: %3$d sectie van je tekst is langer dan %4$d woorden, en wordt niet verdeeld door kopteksten. %5$sVoeg kopteksten toe om de leesbaarheid te verbeteren%2$s.","%1$sKopteksten-verdeling%2$s: %3$d secties van je tekst zijn langer dan %4$d woorden, en worden niet verdeeld door kopteksten. %5$sVoeg kopteksten toe om de leesbaarheid te verbeteren%2$s."],"%1$sSubheading distribution%2$s: Great job!":["%1$sKoptekst-verdeling%2$s: goed gedaan!"],"%1$sSentence length%2$s: %3$s of the sentences contain more than %4$s words, which is more than the recommended maximum of %5$s. %6$sTry to shorten the sentences%2$s.":["%1$sZinslengte%2$s: %3$s van de zinnen bevat meer dan %4$s woorden, wat meer is dan het aanbevolen maximum van %5$s. %6$sProbeer de zinnen in te korten%2$s."],"%1$sSentence length%2$s: Great!":["%1$sZinslengte%2$s: Fantastisch!"],"%1$sConsecutive sentences%2$s: There is enough variety in your sentences. That's great!":["%1$sOpeenvolgende zinnen%2$s: er zit voldoende variatie in je zinnen. Dat is goed!"],"%1$sConsecutive sentences%2$s: The text contains %3$d consecutive sentences starting with the same word. %5$sTry to mix things up%2$s!":["%1$sOpeenvolgende zinnen%2$s: de tekst bevat %3$d opeenvolgende zinnen die beginnen met hetzelfde woord. %5$sProbeer het te variëren%2$s!","%1$sOpeenvolgende zinnen%2$s: de tekst bevat %4$d plaatsen waar %3$d of meer opeenvolgende zinnen die beginnen met hetzelfde woord. %5$sTry to mix things up%2$s!"],"%1$sPassive voice%2$s: %3$s of the sentences contain passive voice, which is more than the recommended maximum of %4$s. %5$sTry to use their active counterparts%2$s.":["%1$sLijdende vorm%2$s: %3$s van de zinnen bevat lijdende vorm, wat meer is dan het aangeraden maximum van %4$s. %5$sProbeer hun actieve tegenhangers te gebruiken%2$s."],"%1$sPassive voice%2$s: You're using enough active voice. That's great!":["%1$sLijdende vorm%2$s: je gebruikt voldoende actieve vorm. Dat is goed!"],"%1$sParagraph length%2$s: %3$d of the paragraphs contains more than the recommended maximum of %4$d words. %5$sShorten your paragraphs%2$s!":["%1$sParagraaflengte%2$s: %3$d van de paragrafen bevat meer dan het aanbevolen aantal van %4$d woorden. %5$sMaak je paragrafen korter%2$s!","%1$sParagraaflengte%2$s: %3$d van de paragrafen bevatten meer dan het aanbevolen aantal van %4$d woorden. %5$sMaak je paragrafen korter%2$s!"],"%1$sParagraph length%2$s: None of the paragraphs are too long. Great job!":["%1$sParagraaflengte%2$s: geen van de paragrafen is te lang. Goed werk!"],"Good job!":["Goed gedaan!"],"%1$sFlesch Reading Ease%2$s: The copy scores %3$s in the test, which is considered %4$s to read. %5$s%6$s%7$s":["%1$sFlesch Reading Ease%2$s: de tekst scoort %3$s in de test, wat wordt beschouwd als %4$s te lezen. %5$s%6$s%7$s"],"Scroll to see the preview content.":["Scrol om de voorbeeldinhoud te zien."],"An error occurred in the '%1$s' assessment":["Er ging iets fout in de '%1$s'-beoordeling"],"%1$s of the words contain %2$sover %3$s syllables%4$s, which is more than the recommended maximum of %5$s.":["%1$s van de woorden bevat %2$sover %3$s lettergrepen%4$s, wat meer is dan het aanbevolen maximum van %5$s."],"%1$s of the words contain %2$sover %3$s syllables%4$s, which is less than or equal to the recommended maximum of %5$s.":["%1$s van de woorden bevat %2$sover %3$s lettergrepen%4$s, wat minder is dan of gelijk aan het aanbevolen maximum van %5$s."],"This is slightly below the recommended minimum of %5$d word. %3$sAdd a bit more copy%4$s.":["Dit is net onder het %2$sminimum aantal aanbevolen%3$s van %4$d woord. Voeg nog iets meer tekst toe.","Dit is net onder het %2$sminimum aantal aanbevolen%3$s van %4$d woorden. Voeg nog iets meer tekst toe."],"The meta description contains %1$d sentence %2$sover %3$s words%4$s. Try to shorten this sentence.":["De meta-omschrijving bevat %1$d zin van %2$smeer dan %3$s woorden%4$s. Probeer deze in te korten.","De meta-omschrijving bevat %1$d zinnen van %2$smeer dan %3$s woorden%4$s. Probeer deze in te korten."],"The meta description contains no sentences %1$sover %2$s words%3$s.":["De meta-omschrijving bevat geen zinnen van %1$smeer dan %2$s woorden%3$s."],"Mobile preview":["Mobiele preview"],"Desktop preview":["Desktop preview"],"Please provide an SEO title by editing the snippet below.":["Voeg een SEO-titel toe door de snippet hieronder te bewerken."],"Meta description preview:":["Meta-omschrijvingvoorvertoning:"],"Slug preview:":["Voorvertoning slug:"],"SEO title preview:":["SEO-titel-preview:"],"Close snippet editor":["Snippet-editor sluiten"],"Slug":["Slug"],"Remove marks in the text":["Markeringen in de tekst verwijderen"],"Mark this result in the text":["Dit resultaat markeren in de text"],"Marks are disabled in current view":["Markeringen zijn uitgeschakeld in de huidige weergave"],"Good SEO score":["Goede SEO-score"],"OK SEO score":["Redelijke SEO-score"],"Feedback":["Reacties"],"ok":["ok"],"Please provide a meta description by editing the snippet below.":["Voeg een meta-omschrijving toe door de onderstaande snippet te bewerken."],"Edit snippet":["Snippet bewerken"],"You can click on each element in the preview to jump to the Snippet Editor.":["Je kan op elk element in het voorbeeld klikken om naar de snippet-editor te gaan."],"SEO title":["SEO-titel"],"Needs improvement":["Heeft verbetering nodig"],"Good":["Goed"],"very difficult":["heel moeilijk"],"Try to make shorter sentences, using less difficult words to improve readability":["Probeer kortere zinnen met minder moeilijke woorden te maken om de leesbaarheid te verbeteren."],"difficult":["moeilijk"],"Try to make shorter sentences to improve readability":["Probeer kortere zinnen te maken om de leesbaarheid te verbeteren."],"fairly difficult":["redelijk moeilijk"],"OK":["OK"],"fairly easy":["redelijk eenvoudig"],"easy":["eenvoudig"],"very easy":["heel eenvoudig"],"Meta description":["Meta-omschrijving"],"Snippet preview":["Snippetvoorvertoning"]}}}
\ No newline at end of file
{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=(n > 1);","lang":"pt_BR"},"Has feedback":["Tem feedback"],"Content optimization:":["\nOtimização de conteúdo"],"%1$sFlesch Reading Ease%2$s: The copy scores %3$s in the test, which is considered %4$s to read. %5$s":["%1$sFacilidade de leitura Flesch%2$s: A pontuação alcançada no teste foi %3$s, que é considerada %4$s de ler. %5$s"],"%3$sImage alt attributes%5$s: Out of %2$d images on this page, %1$d have alt attributes with words from your keyphrase or synonyms. That's a bit much. %4$sOnly include the keyphrase or its synonyms when it really fits the image%5$s.":["%3$sAtributos alt da imagem%5$s: Das %2$d imagens nessa página, %1$d tem atributos alt com palavras de sua frase-chave ou sinônimos. Isso é um pouco demais.%4$sInclua apenas a frase-chave, ou seus sinônimos, quando ela realmente se encaixa na imagem%5$s."],"%1$sImage alt attributes%2$s: Good job!":["%1$sAtributo alt de imagem%2$s: Bom trabalho!"],"%3$sImage alt attributes%5$s: Out of %2$d images on this page, only %1$d has an alt attribute that reflects the topic of your text. %4$sAdd your keyphrase or synonyms to the alt tags of more relevant images%5$s!":["%3$sAtributos alt da imagem%5$s: Das %2$d imagens nessa página, apenas %1$d tem um texto alternativo que reflete o tema do seu texto. %4$sAdicione sua frase-chave ou sinônimos ao texto alternativo das imagens mais relevantes%5$s!","%3$sAtributos alt da imagem%5$s: Das %2$d imagens nessa página, apenas %1$d tem um texto alternativo que reflete o tema do seu texto. %4$sAdicione sua frase-chave ou sinônimos ao texto alternativo das imagens mais relevantes%5$s!"],"%1$sImage alt attributes%3$s: Images on this page do not have alt attributes that reflect the topic of your text. %2$sAdd your keyphrase or synonyms to the alt tags of relevant images%3$s!":["%1$sAtributo alt da imagem%3$s: As imagens desta página não possuem um texto alternativo que corresponda ao tópico do seu texto. %2$sAdicione a sua frase-chave, ou seus sinônimos, nos textos alternativos (atributos 'alt') das imagens relevantes%3$s!"],"%1$sImage alt attributes%3$s: Images on this page have alt attributes, but you have not set your keyphrase. %2$sFix that%3$s!":["%1$sTexto alternativo da imagem%3$s: As imagens dessa página já tem um texto alternativo (atributo 'alt') definido, mas você não configurou a sua frase-chave. %2$sCorrija isto%3$s!"],"%1$sKeyphrase in subheading%2$s: %3$s of your higher-level subheadings reflects the topic of your copy. Good job!":["%1$sFrase-chave em subtítulo%2$s: %3$s subtítulo corresponde ao tópico do seu texto. Bom trabalho!","%1$sFrase-chave em subtítulos%2$s: %3$s subtítulos correspondem ao tópico do seu texto. Bom trabalho!"],"%1$sKeyphrase in subheading%2$s: Your higher-level subheading reflects the topic of your copy. Good job!":["%1$sFrase-chave em subtítulo%2$s: O seu subtítulo corresponde com o tópico do seu texto. Bom trabalho!"],"%1$sKeyphrase in subheading%3$s: %2$sUse more keyphrases or synonyms in your higher-level subheadings%3$s!":["%1$sFrase-chave nos subtítulos%3$s: %2$sUse mais vezes a sua frase-chave, ou sinônimos dela, nos subtítulos%3$s!"],"%1$sSingle title%3$s: H1s should only be used as your main title. Find all H1s in your text that aren't your main title and %2$schange them to a lower heading level%3$s!":["%1$sTítulo Único%3$s: A tag H1 só deve ser usada para o seu título principal. Encontre todas as tags H1 em seu texto que não sejam do seu título principal e %2$saltere-as para um título de nível inferior%3$s!"],"%1$sKeyphrase density%2$s: The focus keyphrase was found 0 times. That's less than the recommended minimum of %3$d times for a text of this length. %4$sFocus on your keyphrase%2$s!":["%1$sDensidade da frase-chave%2$s: A sua frase-chave em foco não foi encontrada nenhuma vez. Isso é menos que o mínimo recomendado de %3$d vezes para um texto desse tamanho. %4$sConcentre-se em sua frase-chave%2$s!"],"%1$sKeyphrase density%2$s: The focus keyphrase was found %5$d time. That's less than the recommended minimum of %3$d times for a text of this length. %4$sFocus on your keyphrase%2$s!":["%1$sDensidade da frase-chave%2$s: A frase-chave em foco foi encontrada %5$d vez. O mínimo recomendado é de %3$d vezes para um texto deste tamanho. %4$sConcentre-se na sua frase-chave%2$s!","%1$sDensidade da frase-chave%2$s: A frase-chave em foco foi encontrada %5$d vezes. O mínimo recomendado é de %3$d vezes para um texto deste tamanho. %4$sConcentre-se na sua frase-chave%2$s!"],"%1$sKeyphrase density%2$s: The focus keyphrase was found %3$d time. This is great!":["%1$sDensidade da frase-chave%2$s: A frase-chave em foco foi encontrada %3$d vez. Isso é ótimo!","%1$sDensidade da frase-chave%2$s: A frase-chave em foco foi encontrada %3$d vezes. Isso é ótimo!"],"%1$sKeyphrase density%2$s: The focus keyphrase was found %5$d time. That's more than the recommended maximum of %3$d times for a text of this length. %4$sDon't overoptimize%2$s!":["%1$sDensidade da frase-chave%2$s: A frase-chave em foco foi encontrada %5$d vez. O máximo recomendado é de %3$d vezes para um texto deste tamanho. %4$sNão exagere na otimização%2$s!","%1$sDensidade da frase-chave%2$s: A frase-chave em foco foi encontrada %5$d vezes. O máximo recomendado é de %3$d vezes para um texto deste tamanho. %4$sNão exagere na otimização%2$s!"],"%1$sKeyphrase density%2$s: The focus keyphrase was found %5$d time. That's way more than the recommended maximum of %3$d times for a text of this length. %4$sDon't overoptimize%2$s!":["%1$sDensidade da frase-chave%2$s: a frase-chave em foco foi encontrada %5$d vez. Isso é muito mais do que o máximo recomendado de %3$d vezes para um texto desse tamanho. %4$sNão exagere na otimização%2$s!","%1$sDensidade da frase-chave%2$s: a frase-chave em foco foi encontrada %5$d vezes. Isso é muito mais do que o máximo recomendado de %3$d vezes para um texto desse tamanho. %4$sNão exagere na otimização%2$s!"],"%1$sFunction words in keyphrase%3$s: Your keyphrase \"%4$s\" contains function words only. %2$sLearn more about what makes a good keyphrase.%3$s":["%1$sPalavras de função na frase-chave%3$s: Sua frase-chave \"%4$s\" contém apenas palavras de função. %2$sSaiba mais sobre o que faz uma boa frase-chave.%3$s"],"%1$sKeyphrase length%3$s: %2$sSet a keyphrase in order to calculate your SEO score%3$s.":["%1$sTamanho da frase-chave%3$s: %2$sDefina uma frase-chave para podermos calcular sua pontuação de SEO%3$s."],"%1$sKeyphrase in slug%2$s: More than half of your keyphrase appears in the slug. That's great!":["%1$sFrase-chave no slug%2$s: Mais da metade da sua frase-chave aparece no slug. Isso é ótimo!"],"%1$sKeyphrase in slug%3$s: (Part of) your keyphrase does not appear in the slug. %2$sChange that%3$s!":["%1$sFrase-chave no slug%3$s: (Parte da) sua frase-chave não aparece no slug. %2$sMude isso%3$s!"],"%1$sKeyphrase in slug%2$s: Great work!":["%1$sFrase-chave na slug%2$s: bom trabalho!"],"%1$sKeyphrase in title%3$s: Not all the words from your keyphrase \"%4$s\" appear in the SEO title. %2$sTry to use the exact match of your keyphrase in the SEO title%3$s.":["%1$sFrase-chave no título%3$s: Nem todos os termos da sua frase-chave \"%4$s\" aparecem no título de SEO. %2$sTente deixar sua frase-chave correspondente ao título de SEO%3$s."],"%1$sKeyphrase in title%3$s: Does not contain the exact match. %2$sTry to write the exact match of your keyphrase in the SEO title%3$s.":["%1$sFrase-chave no título%3$s: Não é exatamente a mesma. %2$sTente escrever seu título SEO com a combinação exata de palavras da frase-chave%3$s."],"%1$sKeyphrase in title%3$s: The exact match of the keyphrase appears in the SEO title, but not at the beginning. %2$sTry to move it to the beginning%3$s.":["%1$sPalavrachave no título%3$s: A combinação exata de sua frase-chave aparece no título de SEO, mas não no início. %2$sTente mover para o início%3$s."],"%1$sKeyphrase in title%2$s: The exact match of the keyphrase appears at the beginning of the SEO title. Good job!":["%1$sFrase-chave no título%2$s: A frase-chave combina e aparece no início do seu título de SEO. Parabéns!"],"%1$sKeyphrase distribution%2$s: Good job!":["%1$sDistribuição de frase-chave%2$s: Bom trabalho!"],"%1$sKeyphrase distribution%3$s: Uneven. Some parts of your text do not contain the keyphrase or its synonyms. %2$sDistribute them more evenly%3$s.":["%1$sDistruibuição de frase-chave%3$s: Desigual. Algumas partes do seu texto não contém a frase-chave ou algum sinônimo. %2$sMelhore sua distribuição no texto todo%3$s."],"%1$sKeyphrase distribution%3$s: Very uneven. Large parts of your text do not contain the keyphrase or its synonyms. %2$sDistribute them more evenly%3$s.":["%1$sDistribuição da frase-chave%3$s: Muito desigual. Boa parte do seu texto não contém a frase-chave ou sinônimos dela. %2$sFaça uma melhor distribuição%3$s."],"%1$sKeyphrase distribution%3$s: %2$sInclude your keyphrase or its synonyms in the text so that we can check keyphrase distribution%3$s.":["%1$sDistribuição da frase-chave%3$s: %2$sInclua sua frase-chave, ou sinônimos dela, no texto para verificar a distribuição da frase-chave%3$s."],"%4$sPreviously used keyphrase%6$s: You've used this keyphrase %1$s%2$d times before%3$s. %5$sDo not use your keyphrase more than once%6$s.":["%4$sFrase-chave usada anteriormente%6$s: Você usou esta frase-chave %1$s%2$d vezes antes%3$s. %5$sNão use a sua frase-chave mais de uma vez%6$s."],"%3$sPreviously used keyphrase%5$s: You've used this keyphrase %1$sonce before%2$s. %4$sDo not use your keyphrase more than once%5$s.":["%3$sFrase-chave usada anteriormente%5$s: Você usou esta frase-chave %1$suma vez antes%2$s. %4$sNão use a sua frase-chave mais de uma vez%5$s."],"%1$sPreviously used keyphrase%2$s: You've not used this keyphrase before, very good.":["%1$sFrase-chave utilizada anteriormente%2$s: Você não usou essa frase-chave antes, muito bom."],"%1$sSlug stopwords%3$s: The slug for this page contains a stop word. %2$sRemove it%3$s!":["%1$sSlug com palavra de parada%3$s: O slug dessa página contém um termo irrelevante. %2$sRemover%3$s!","%1$sSlug com palavra de parada%3$s: O slug dessa página contém termos irrelevantes. %2$sRemovê-los%3$s!"],"%1$sSlug too long%3$s: the slug for this page is a bit long. %2$sShorten it%3$s!":["%1$sSlug muito longo%3$s: o slug para esta página está um pouco longo. %2$sEncurte-o%3$s!"],"%1$sImage alt attributes%3$s: No images appear on this page. %2$sAdd some%3$s!":["%1$sAtributo alt da imagem%3$s: Nenhuma imagem encontrada nesta página. %2$sAdicione alguma%3$s!"],"%1$sLink keyphrase%3$s: You're linking to another page with the words you want this page to rank for. %2$sDon't do that%3$s!":["%1$sLinks com frase-chave%3$s: Você está vinculando para outra página com as palavras que você quer que essa página classifique. %2$sNão faça isso%3$s!"],"This is far below the recommended minimum of %5$d word. %3$sAdd more content%4$s.":["Isso está muito abaixo o mínimo recomendado de %5$d palavra. %3$sAdicione mais conteúdo%4$s.","Isso está muito abaixo o mínimo recomendado de %5$d palavras. %3$sAdicione mais conteúdo%4$s."],"This is below the recommended minimum of %5$d word. %3$sAdd more content%4$s.":["Isso está abaixo do mínimo recomendado de %5$d palavra. %3$sAdicione mais conteúdo%4$s.","Isso está abaixo do mínimo recomendado de %5$d palavras. %3$sAdicione mais conteúdo%4$s."],"%2$sText length%4$s: The text contains %1$d word.":["%2$sComprimento de texto%4$s: o texto contém %1$d palavra.","%2$sComprimento de texto%4$s: o texto contém %1$d palavras."],"%2$sText length%3$s: The text contains %1$d word. Good job!":["%2$sComprimento de texto%3$s: o texto contém %1$d palavra. Bom trabalho!","%2$sComprimento de texto%3$s: o texto contém %1$d palavras. Bom trabalho!"],"%1$sKeyphrase in subheading%3$s: More than 75%% of your higher-level subheadings reflect the topic of your copy. That's too much. %2$sDon't over-optimize%3$s!":["%1$sFrase-chave em subtítulo%3$s: Mais do que 75%% dos subtítulos correspondem com o tópico do seu texto. %2$sNão exagere na otimização%3$s!"],"%1$sSEO title width%3$s: %2$sPlease create an SEO title%3$s.":["%1$sLargura de título do SEO%3$s: %2$s crie um título de SEO%3$s."],"%1$sSEO title width%3$s: The SEO title is wider than the viewable limit. %2$sTry to make it shorter%3$s.":[],"%1$sSEO title width%2$s: Good job!":["%1$sSEO largura do título%2$s: bom trabalho!"],"%1$sSEO title width%3$s: The SEO title is too short. %2$sUse the space to add keyphrase variations or create compelling call-to-action copy%3$s.":["%1$sTamanho do título de SEO%3$s: O título de SEO é muito pequeno. %2$sAproveite o espaço para adicionar variações da frase-chave ou crie textos atrativos com chamadas de ação%3$s."],"%1$sOutbound links%2$s: There are both nofollowed and normal outbound links on this page. Good job!":["%1$sLinks de saída%2$s: Existem ambos links de saída, nofollow e normal, nesta página. Bom trabalho!"],"%1$sOutbound links%2$s: Good job!":["%1$sLinks de saída%2$s: Bom trabalho!"],"%1$sOutbound links%3$s: All outbound links on this page are nofollowed. %2$sAdd some normal links%3$s.":["%1$sLinks de saída%3$s: todos os links de saída desta pagina são nofollow. %2$sAdicione alguns links normais%3$s."],"%1$sOutbound links%3$s: No outbound links appear in this page. %2$sAdd some%3$s!":["%1$sLinks de saída%3$s: nenhum link de saída aparece nesta página. %2$sAdicione alguns%3$s!"],"%1$sMeta description length%2$s: Well done!":["%1$sTamanho da meta descrição%2$s: Bom trabalho!"],"%1$sMeta description length%3$s: The meta description is over %4$d characters. To ensure the entire description will be visible, %2$syou should reduce the length%3$s!":["%1$sTamanho da meta descrição%3$s: A meta descrição excede %4$d caracteres. Para garantir que a descrição inteira esteja visível, %2$svocê deve reduzir o tamanho%3$s!"],"%1$sMeta description length%3$s: The meta description is too short (under %4$d characters). Up to %5$d characters are available. %2$sUse the space%3$s!":["%1$sTamanho da meta descrição%3$s: A meta descrição é muito pequena (abaixo de %4$d caracteres). Há %5$d caracteres estão disponíveis. %2$sAproveite o espaço%3$s!"],"%1$sMeta description length%3$s: No meta description has been specified. Search engines will display copy from the page instead. %2$sMake sure to write one%3$s!":["%1$sTamanho da meta descrição%3$s: nenhuma meta descrição foi especificada. Mecanismos de pesquisa irão mostrar uma cópia no lugar. %2$sNão esqueça de escrever uma%3$s!"],"%1$sKeyphrase in meta description%2$s: The meta description has been specified, but it does not contain the keyphrase. %3$sFix that%4$s!":["%1$sFrase-chave na meta descrição%2$s: a meta descrição foi definida, mas não contém a frase-chave. %3$sCorrija%4$s!"],"%1$sKeyphrase in meta description%2$s: The meta description contains the keyphrase %3$s times, which is over the advised maximum of 2 times. %4$sLimit that%5$s!":["%1$sFrase-chave na meta descrição%2$s: A meta descrição contém a frase-chave %3$s vezes, porém o limite máximo é 2 vezes. %4$sCorrija%5$s!"],"%1$sKeyphrase in meta description%2$s: Keyphrase or synonym appear in the meta description. Well done!":["%1$sFrase-chave na meta descrição%2$s: Frase-chave ou sinônimo aparece na meta descrição. Bom trabalho!"],"%3$sKeyphrase length%5$s: The keyphrase is %1$d words long. That's way more than the recommended maximum of %2$d words. %4$sMake it shorter%5$s!":["%3$sTamanho da frase-chave%5$s: A sua frase-chave tem %1$d palavras. Isso é muito mais do que o máximo recomendado de %2$d palavras. %4$sDeixe-a mais curta%5$s!"],"%3$sKeyphrase length%5$s: The keyphrase is %1$d words long. That's more than the recommended maximum of %2$d words. %4$sMake it shorter%5$s!":["%3$sTamanho da frase-chave%5$s: A sua frase-chave tem %1$d palavras. Isso é mais do que o máximo recomendado de %2$d palavras. %4$sDeixe-a mais curta%5$s!"],"%1$sKeyphrase length%2$s: Good job!":["%1$sTamanho da frase-chave%2$s: Bom trabalho!"],"%1$sKeyphrase length%3$s: No focus keyphrase was set for this page. %2$sSet a keyphrase in order to calculate your SEO score%3$s.":["%1$sTamanho da frase-chave%3$s: Nenhuma frase-chave foi definida para essa página. %2$sDefina uma frase-chave para podermos calcular sua pontuação de SEO%3$s."],"%1$sKeyphrase in introduction%3$s: Your keyphrase or its synonyms do not appear in the first paragraph. %2$sMake sure the topic is clear immediately%3$s.":["%1$sFrase-chave na introdução%3$s: Sua frase-chave, ou algum sinônimo, não está no primeiro parágrafo do texto. %2$sCertifique-se de que o assunto seja identificado imediatamente%3$s."],"%1$sKeyphrase in introduction%3$s:Your keyphrase or its synonyms appear in the first paragraph of the copy, but not within one sentence. %2$sFix that%3$s!":["%1$sFrase-chave na introdução%3$s: Sua frase-chave, ou um sinônimo, aparece no primeiro parágrafo do texto, porém não está dentro de uma sentença. %2$sCorrija isto%3$s!"],"%1$sKeyphrase in introduction%2$s: Well done!":["%1$sFrase-chave na introdução%2$s: Bom trabalho!"],"%1$sInternal links%2$s: There are both nofollowed and normal internal links on this page. Good job!":["%1$sLinks internos%2$s: Existem tanto links nofollow quanto normais nessa página. Bom trabalho!"],"%1$sInternal links%2$s: You have enough internal links. Good job!":["%1$sLinks internos%2$s: Você tem links internos o suficiente. Bom trabalho!"],"%1$sInternal links%3$s: The internal links in this page are all nofollowed. %2$sAdd some good internal links%3$s.":["%1$sLinks internos%3$s: Todos os links desta página são nofollow. %2$sAdicione bons links internos%3$s."],"%1$sInternal links%3$s: No internal links appear in this page, %2$smake sure to add some%3$s!":["%1$sLinks internos%3$s: Nenhum link interno aparece nesta página, %2$sAdicione alguns links%3$s!"],"%1$sTransition words%2$s: Well done!":["%1$sPalavras de transição%2$s: concluído!"],"%1$sTransition words%2$s: Only %3$s of the sentences contain transition words, which is not enough. %4$sUse more of them%2$s.":["%1$sPalavras de transição%2$s: Somente %3$s das suas sentenças contêm palavras de transição, o que não é suficiente. %4$sUtilize mais palavras%2$s."],"%1$sTransition words%2$s: None of the sentences contain transition words. %3$sUse some%2$s.":["%1$sPalavras de transição%2$s: Nenhuma das sentenças contêm palavras de transição. %3$sUtilize algumas%2$s."],"%1$sNot enough content%2$s: %3$sPlease add some content to enable a good analysis%2$s.":["%1$sConteúdo insuficiente%2$s: %3$sAdicione algum conteúdo para que uma boa análise seja feita%2$s."],"%1$sSubheading distribution%2$s: You are not using any subheadings, but your text is short enough and probably doesn't need them.":["%1$sDistribuição de subtítulos%2$s: Você não está usando nenhum subtítulo, mas seu texto é pequeno o bastante para provavelmente não precisar deles."],"%1$sSubheading distribution%2$s: You are not using any subheadings, although your text is rather long. %3$sTry and add some subheadings%2$s.":["%1$sDistribuição de subtítulos%2$s: Você não está usando nenhum subtítulo, apesar de seu texto ser longo. %3$sTente adicionar alguns subtítulos%2$s."],"%1$sSubheading distribution%2$s: %3$d section of your text is longer than %4$d words and is not separated by any subheadings. %5$sAdd subheadings to improve readability%2$s.":["%1$sDistribuição de subtítulos%2$s: %3$d sessão do seu texto é maior do que %4$d palavras, e não está separada por nenhum subtítulo. %5$sAdicione subtítulos para melhorar a leitura.%2$s.","%1$sDistribuição de subtítulos%2$s: %3$d sessões do seu texto são maiores do que %4$d palavras, e não estão separadas por nenhum subtítulo. %5$sAdicione subtítulos para melhorar a leitura.%2$s."],"%1$sSubheading distribution%2$s: Great job!":["%1$sDistribuição de subtítulos%2$s: Bom trabalho!"],"%1$sSentence length%2$s: %3$s of the sentences contain more than %4$s words, which is more than the recommended maximum of %5$s. %6$sTry to shorten the sentences%2$s.":["%1$sTamanho da sentença%2$s: %3$s sentenças contém mais do que %4$s palavras, e o máximo recomendado é de %5$s. %6$sTente encurtar as sentenças%2$s."],"%1$sSentence length%2$s: Great!":["%1$sTamanho da frase%2$s: Ótimo!"],"%1$sConsecutive sentences%2$s: There is enough variety in your sentences. That's great!":["%1$sFrases consecutivas%2$s: Há variedade suficiente em suas frases. Isso é ótimo!"],"%1$sConsecutive sentences%2$s: The text contains %3$d consecutive sentences starting with the same word. %5$sTry to mix things up%2$s!":["%1$sFrases consecutivas%2$s: O texto contém %3$d frases consecutivas começando com a mesma palavra. %5$sTente diversificar as coisas%2$s!","%1$sFrases consecutivas%2$s: O texto contém %4$d instâncias, onde %3$d ou mais frases consecutivas começam com a mesma palavra. %5$sTente diversificar as coisas%2$s!"],"%1$sPassive voice%2$s: %3$s of the sentences contain passive voice, which is more than the recommended maximum of %4$s. %5$sTry to use their active counterparts%2$s.":["%1$sVoz passiva%2$s: %3$s das frases contém voz passiva, o que é mais do que o recomendado de %4$s. %5$sExperimente usar suas alternativas em voz ativa%2$s."],"%1$sPassive voice%2$s: You're using enough active voice. That's great!":["%1$sVoz passiva%2$s: Você esta usando voz ativa o suficiente. Isso é ótimo!"],"%1$sParagraph length%2$s: %3$d of the paragraphs contains more than the recommended maximum of %4$d words. %5$sShorten your paragraphs%2$s!":["%1$sTamanho do parágrafo%2$s: %3$d parágrafo contém mais do que o máximo recomendado de %4$d palavras. %5$sEncurte seu parágrafo%2$s!","%1$sTamanho do parágrafo%2$s: %3$d parágrafos contém mais do que o máximo recomendado de %4$d palavras. %5$sEncurte seus parágrafos%2$s!"],"%1$sParagraph length%2$s: None of the paragraphs are too long. Great job!":["%1$sTamanho dos parágrafos%2$s: Nenhum dos parágrafos é longo demais. Bom trabalho!"],"Good job!":["Bom trabalho!"],"%1$sFlesch Reading Ease%2$s: The copy scores %3$s in the test, which is considered %4$s to read. %5$s%6$s%7$s":["%1$sFacilidade de leitura Flesch%2$s: A pontuação alcançada no teste foi %3$s, que é considerada %4$s de ler. %5$s%6$s%7$s"],"Scroll to see the preview content.":["Role para baixo para visualizar o conteúdo."],"An error occurred in the '%1$s' assessment":["Ocorreu um erro no item %1$s"],"%1$s of the words contain %2$sover %3$s syllables%4$s, which is more than the recommended maximum of %5$s.":["%1$s palavra(s) contém %2$smais de %3$s sílabas%4$s, o que ultrapassa o máximo recomendado de %5$s."],"%1$s of the words contain %2$sover %3$s syllables%4$s, which is less than or equal to the recommended maximum of %5$s.":["%1$s palavra(s) contém %2$smais de %3$s sílabas%4$s, o que é menor ou igual ao máximo recomendado de %5$s."],"This is slightly below the recommended minimum of %5$d word. %3$sAdd a bit more copy%4$s.":["Isso é um pouco abaixo do recomendado de %5$d palavra. %3$sAdicione um pouco mais %4$s.","Isso é um pouco abaixo do recomendado de %5$d palavras. %3$sAdicione um pouco mais %4$s."],"The meta description contains %1$d sentence %2$sover %3$s words%4$s. Try to shorten this sentence.":["A meta descrição contém %1$d sentença %2$s que excede %3$s palavras %4$s. Tente encurtar esta frase.","A meta descrição contém %1$d sentenças %2$s que excedem %3$s palavras %4$s. Tente encurtar essas frases."],"The meta description contains no sentences %1$sover %2$s words%3$s.":["A meta descrição não contém frases %1$s que excedem %2$s palavras %3$s."],"Mobile preview":["Pré-visualização para dispositivos móveis"],"Desktop preview":["Pré-visualização para computadores"],"Please provide an SEO title by editing the snippet below.":["Forneça um título SEO editando a amostra abaixo."],"Meta description preview:":["Pré-visualização da Meta descrição:"],"Slug preview:":["Pré-visualização do Slug:"],"SEO title preview:":["Prévia do título SEO:"],"Close snippet editor":["Fechar editor de amostra"],"Slug":["Slug"],"Remove marks in the text":["Remover marcas no texto"],"Mark this result in the text":["Marcar este resultado no texto"],"Marks are disabled in current view":["Marcações desabilitadas na visualização atual"],"Good SEO score":["Pontuação de SEO boa"],"OK SEO score":["Pontuação de SEO média"],"Feedback":["Feedback"],"ok":["ok"],"Please provide a meta description by editing the snippet below.":["Forneça uma meta-descrição editando a amostra abaixo."],"Edit snippet":["Editar amostra"],"You can click on each element in the preview to jump to the Snippet Editor.":["Você pode clicar em cada elemento na prévia para ir ao Editor de Amostra."],"SEO title":["Título SEO"],"Needs improvement":["Precisa melhorar"],"Good":["Bom"],"very difficult":["muito difícil de"],"Try to make shorter sentences, using less difficult words to improve readability":["Tente escrever sentenças mais curtas, usando palavras menos difíceis para melhorar a leitura"],"difficult":["difícil de"],"Try to make shorter sentences to improve readability":["Tente escrever sentenças mais curtas para aumentar a legibilidade"],"fairly difficult":["razoavelmente difícil de"],"OK":["OK"],"fairly easy":["razoavelmente fácil de"],"easy":["fácil de"],"very easy":["muito fácil de"],"Meta description":["Meta-descrição"],"Snippet preview":["Prévia de amostra"]}}}
\ No newline at end of file
{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=(n > 1);","lang":"pt_BR"},"Has feedback":["Tem feedback"],"Content optimization:":["\nOtimização de conteúdo"],"%1$sFlesch Reading Ease%2$s: The copy scores %3$s in the test, which is considered %4$s to read. %5$s":["%1$sFacilidade de leitura Flesch%2$s: A pontuação alcançada no teste foi %3$s, que é considerada %4$s de ler. %5$s"],"%3$sImage alt attributes%5$s: Out of %2$d images on this page, %1$d have alt attributes with words from your keyphrase or synonyms. That's a bit much. %4$sOnly include the keyphrase or its synonyms when it really fits the image%5$s.":["%3$sAtributos alt da imagem%5$s: Das %2$d imagens nessa página, %1$d tem atributos alt com palavras de sua frase-chave ou sinônimos. Isso é um pouco demais.%4$sInclua apenas a frase-chave, ou seus sinônimos, quando ela realmente se encaixa na imagem%5$s."],"%1$sImage alt attributes%2$s: Good job!":["%1$sAtributo alt de imagem%2$s: Bom trabalho!"],"%3$sImage alt attributes%5$s: Out of %2$d images on this page, only %1$d has an alt attribute that reflects the topic of your text. %4$sAdd your keyphrase or synonyms to the alt tags of more relevant images%5$s!":["%3$sAtributos alt da imagem%5$s: Das %2$d imagens nessa página, apenas %1$d tem um texto alternativo que reflete o tema do seu texto. %4$sAdicione sua frase-chave ou sinônimos ao texto alternativo das imagens mais relevantes%5$s!","%3$sAtributos alt da imagem%5$s: Das %2$d imagens nessa página, apenas %1$d tem um texto alternativo que reflete o tema do seu texto. %4$sAdicione sua frase-chave ou sinônimos ao texto alternativo das imagens mais relevantes%5$s!"],"%1$sImage alt attributes%3$s: Images on this page do not have alt attributes that reflect the topic of your text. %2$sAdd your keyphrase or synonyms to the alt tags of relevant images%3$s!":["%1$sAtributo alt da imagem%3$s: As imagens desta página não possuem um texto alternativo que corresponda ao tópico do seu texto. %2$sAdicione a sua frase-chave, ou seus sinônimos, nos textos alternativos (atributos 'alt') das imagens relevantes%3$s!"],"%1$sImage alt attributes%3$s: Images on this page have alt attributes, but you have not set your keyphrase. %2$sFix that%3$s!":["%1$sTexto alternativo da imagem%3$s: As imagens dessa página já tem um texto alternativo (atributo 'alt') definido, mas você não configurou a sua frase-chave. %2$sCorrija isto%3$s!"],"%1$sKeyphrase in subheading%2$s: %3$s of your higher-level subheadings reflects the topic of your copy. Good job!":["%1$sFrase-chave em subtítulo%2$s: %3$s subtítulo corresponde ao tópico do seu texto. Bom trabalho!","%1$sFrase-chave em subtítulos%2$s: %3$s subtítulos correspondem ao tópico do seu texto. Bom trabalho!"],"%1$sKeyphrase in subheading%2$s: Your higher-level subheading reflects the topic of your copy. Good job!":["%1$sFrase-chave em subtítulo%2$s: O seu subtítulo corresponde com o tópico do seu texto. Bom trabalho!"],"%1$sKeyphrase in subheading%3$s: %2$sUse more keyphrases or synonyms in your higher-level subheadings%3$s!":["%1$sFrase-chave nos subtítulos%3$s: %2$sUse mais vezes a sua frase-chave, ou sinônimos dela, nos subtítulos%3$s!"],"%1$sSingle title%3$s: H1s should only be used as your main title. Find all H1s in your text that aren't your main title and %2$schange them to a lower heading level%3$s!":["%1$sTítulo Único%3$s: A tag H1 só deve ser usada para o seu título principal. Encontre todas as tags H1 em seu texto que não sejam do seu título principal e %2$saltere-as para um título de nível inferior%3$s!"],"%1$sKeyphrase density%2$s: The focus keyphrase was found 0 times. That's less than the recommended minimum of %3$d times for a text of this length. %4$sFocus on your keyphrase%2$s!":["%1$sDensidade da frase-chave%2$s: A sua frase-chave em foco não foi encontrada nenhuma vez. Isso é menos que o mínimo recomendado de %3$d vezes para um texto desse tamanho. %4$sConcentre-se em sua frase-chave%2$s!"],"%1$sKeyphrase density%2$s: The focus keyphrase was found %5$d time. That's less than the recommended minimum of %3$d times for a text of this length. %4$sFocus on your keyphrase%2$s!":["%1$sDensidade da frase-chave%2$s: A frase-chave em foco foi encontrada %5$d vez. O mínimo recomendado é de %3$d vezes para um texto deste tamanho. %4$sConcentre-se na sua frase-chave%2$s!","%1$sDensidade da frase-chave%2$s: A frase-chave em foco foi encontrada %5$d vezes. O mínimo recomendado é de %3$d vezes para um texto deste tamanho. %4$sConcentre-se na sua frase-chave%2$s!"],"%1$sKeyphrase density%2$s: The focus keyphrase was found %3$d time. This is great!":["%1$sDensidade da frase-chave%2$s: A frase-chave em foco foi encontrada %3$d vez. Isso é ótimo!","%1$sDensidade da frase-chave%2$s: A frase-chave em foco foi encontrada %3$d vezes. Isso é ótimo!"],"%1$sKeyphrase density%2$s: The focus keyphrase was found %5$d time. That's more than the recommended maximum of %3$d times for a text of this length. %4$sDon't overoptimize%2$s!":["%1$sDensidade da frase-chave%2$s: A frase-chave em foco foi encontrada %5$d vez. O máximo recomendado é de %3$d vezes para um texto deste tamanho. %4$sNão exagere na otimização%2$s!","%1$sDensidade da frase-chave%2$s: A frase-chave em foco foi encontrada %5$d vezes. O máximo recomendado é de %3$d vezes para um texto deste tamanho. %4$sNão exagere na otimização%2$s!"],"%1$sKeyphrase density%2$s: The focus keyphrase was found %5$d time. That's way more than the recommended maximum of %3$d times for a text of this length. %4$sDon't overoptimize%2$s!":["%1$sDensidade da frase-chave%2$s: a frase-chave em foco foi encontrada %5$d vez. Isso é muito mais do que o máximo recomendado de %3$d vezes para um texto desse tamanho. %4$sNão exagere na otimização%2$s!","%1$sDensidade da frase-chave%2$s: a frase-chave em foco foi encontrada %5$d vezes. Isso é muito mais do que o máximo recomendado de %3$d vezes para um texto desse tamanho. %4$sNão exagere na otimização%2$s!"],"%1$sFunction words in keyphrase%3$s: Your keyphrase \"%4$s\" contains function words only. %2$sLearn more about what makes a good keyphrase.%3$s":["%1$sPalavras de função na frase-chave%3$s: Sua frase-chave \"%4$s\" contém apenas palavras de função. %2$sSaiba mais sobre o que faz uma boa frase-chave.%3$s"],"%1$sKeyphrase length%3$s: %2$sSet a keyphrase in order to calculate your SEO score%3$s.":["%1$sTamanho da frase-chave%3$s: %2$sDefina uma frase-chave para podermos calcular sua pontuação de SEO%3$s."],"%1$sKeyphrase in slug%2$s: More than half of your keyphrase appears in the slug. That's great!":["%1$sFrase-chave no slug%2$s: Mais da metade da sua frase-chave aparece no slug. Isso é ótimo!"],"%1$sKeyphrase in slug%3$s: (Part of) your keyphrase does not appear in the slug. %2$sChange that%3$s!":["%1$sFrase-chave no slug%3$s: (Parte da) sua frase-chave não aparece no slug. %2$sMude isso%3$s!"],"%1$sKeyphrase in slug%2$s: Great work!":["%1$sFrase-chave na slug%2$s: bom trabalho!"],"%1$sKeyphrase in title%3$s: Not all the words from your keyphrase \"%4$s\" appear in the SEO title. %2$sTry to use the exact match of your keyphrase in the SEO title%3$s.":["%1$sFrase-chave no título%3$s: Nem todos os termos da sua frase-chave \"%4$s\" aparecem no título de SEO. %2$sTente deixar sua frase-chave correspondente ao título de SEO%3$s."],"%1$sKeyphrase in title%3$s: Does not contain the exact match. %2$sTry to write the exact match of your keyphrase in the SEO title%3$s.":["%1$sFrase-chave no título%3$s: Não é exatamente a mesma. %2$sTente escrever seu título SEO com a combinação exata de palavras da frase-chave%3$s."],"%1$sKeyphrase in title%3$s: The exact match of the keyphrase appears in the SEO title, but not at the beginning. %2$sTry to move it to the beginning%3$s.":["%1$sPalavrachave no título%3$s: A combinação exata de sua frase-chave aparece no título de SEO, mas não no início. %2$sTente mover para o início%3$s."],"%1$sKeyphrase in title%2$s: The exact match of the keyphrase appears at the beginning of the SEO title. Good job!":["%1$sFrase-chave no título%2$s: A frase-chave combina e aparece no início do seu título de SEO. Parabéns!"],"%1$sKeyphrase distribution%2$s: Good job!":["%1$sDistribuição de frase-chave%2$s: Bom trabalho!"],"%1$sKeyphrase distribution%3$s: Uneven. Some parts of your text do not contain the keyphrase or its synonyms. %2$sDistribute them more evenly%3$s.":["%1$sDistruibuição de frase-chave%3$s: Desigual. Algumas partes do seu texto não contém a frase-chave ou algum sinônimo. %2$sMelhore sua distribuição no texto todo%3$s."],"%1$sKeyphrase distribution%3$s: Very uneven. Large parts of your text do not contain the keyphrase or its synonyms. %2$sDistribute them more evenly%3$s.":["%1$sDistribuição da frase-chave%3$s: Muito desigual. Boa parte do seu texto não contém a frase-chave ou sinônimos dela. %2$sFaça uma melhor distribuição%3$s."],"%1$sKeyphrase distribution%3$s: %2$sInclude your keyphrase or its synonyms in the text so that we can check keyphrase distribution%3$s.":["%1$sDistribuição da frase-chave%3$s: %2$sInclua sua frase-chave, ou sinônimos dela, no texto para verificar a distribuição da frase-chave%3$s."],"%4$sPreviously used keyphrase%6$s: You've used this keyphrase %1$s%2$d times before%3$s. %5$sDo not use your keyphrase more than once%6$s.":["%4$sFrase-chave usada anteriormente%6$s: Você usou esta frase-chave %1$s%2$d vezes antes%3$s. %5$sNão use a sua frase-chave mais de uma vez%6$s."],"%3$sPreviously used keyphrase%5$s: You've used this keyphrase %1$sonce before%2$s. %4$sDo not use your keyphrase more than once%5$s.":["%3$sFrase-chave usada anteriormente%5$s: Você usou esta frase-chave %1$suma vez antes%2$s. %4$sNão use a sua frase-chave mais de uma vez%5$s."],"%1$sPreviously used keyphrase%2$s: You've not used this keyphrase before, very good.":["%1$sFrase-chave utilizada anteriormente%2$s: Você não usou essa frase-chave antes, muito bom."],"%1$sSlug stopwords%3$s: The slug for this page contains a stop word. %2$sRemove it%3$s!":["%1$sSlug com palavra de parada%3$s: O slug dessa página contém um termo irrelevante. %2$sRemover%3$s!","%1$sSlug com palavra de parada%3$s: O slug dessa página contém termos irrelevantes. %2$sRemovê-los%3$s!"],"%1$sSlug too long%3$s: the slug for this page is a bit long. %2$sShorten it%3$s!":["%1$sSlug muito longo%3$s: o slug para esta página está um pouco longo. %2$sEncurte-o%3$s!"],"%1$sImage alt attributes%3$s: No images appear on this page. %2$sAdd some%3$s!":["%1$sAtributo alt da imagem%3$s: Nenhuma imagem encontrada nesta página. %2$sAdicione alguma%3$s!"],"%1$sLink keyphrase%3$s: You're linking to another page with the words you want this page to rank for. %2$sDon't do that%3$s!":["%1$sLinks com frase-chave%3$s: Você está vinculando para outra página com as palavras que você quer que essa página classifique. %2$sNão faça isso%3$s!"],"This is far below the recommended minimum of %5$d word. %3$sAdd more content%4$s.":["Isso está muito abaixo o mínimo recomendado de %5$d palavra. %3$sAdicione mais conteúdo%4$s.","Isso está muito abaixo o mínimo recomendado de %5$d palavras. %3$sAdicione mais conteúdo%4$s."],"This is below the recommended minimum of %5$d word. %3$sAdd more content%4$s.":["Isso está abaixo do mínimo recomendado de %5$d palavra. %3$sAdicione mais conteúdo%4$s.","Isso está abaixo do mínimo recomendado de %5$d palavras. %3$sAdicione mais conteúdo%4$s."],"%2$sText length%4$s: The text contains %1$d word.":["%2$sComprimento de texto%4$s: o texto contém %1$d palavra.","%2$sComprimento de texto%4$s: o texto contém %1$d palavras."],"%2$sText length%3$s: The text contains %1$d word. Good job!":["%2$sComprimento de texto%3$s: o texto contém %1$d palavra. Bom trabalho!","%2$sComprimento de texto%3$s: o texto contém %1$d palavras. Bom trabalho!"],"%1$sKeyphrase in subheading%3$s: More than 75%% of your higher-level subheadings reflect the topic of your copy. That's too much. %2$sDon't over-optimize%3$s!":["%1$sFrase-chave em subtítulo%3$s: Mais do que 75%% dos subtítulos correspondem com o tópico do seu texto. %2$sNão exagere na otimização%3$s!"],"%1$sSEO title width%3$s: %2$sPlease create an SEO title%3$s.":["%1$sLargura de título do SEO%3$s: %2$s crie um título de SEO%3$s."],"%1$sSEO title width%3$s: The SEO title is wider than the viewable limit. %2$sTry to make it shorter%3$s.":["%1$sLargura do título de SEO%3$s: O título de SEO é maior do que o limite visível. %2$sTente encurtá-lo%3$s."],"%1$sSEO title width%2$s: Good job!":["%1$sSEO largura do título%2$s: bom trabalho!"],"%1$sSEO title width%3$s: The SEO title is too short. %2$sUse the space to add keyphrase variations or create compelling call-to-action copy%3$s.":["%1$sTamanho do título de SEO%3$s: O título de SEO é muito pequeno. %2$sAproveite o espaço para adicionar variações da frase-chave ou crie textos atrativos com chamadas de ação%3$s."],"%1$sOutbound links%2$s: There are both nofollowed and normal outbound links on this page. Good job!":["%1$sLinks de saída%2$s: Existem ambos links de saída, nofollow e normal, nesta página. Bom trabalho!"],"%1$sOutbound links%2$s: Good job!":["%1$sLinks de saída%2$s: Bom trabalho!"],"%1$sOutbound links%3$s: All outbound links on this page are nofollowed. %2$sAdd some normal links%3$s.":["%1$sLinks de saída%3$s: todos os links de saída desta pagina são nofollow. %2$sAdicione alguns links normais%3$s."],"%1$sOutbound links%3$s: No outbound links appear in this page. %2$sAdd some%3$s!":["%1$sLinks de saída%3$s: nenhum link de saída aparece nesta página. %2$sAdicione alguns%3$s!"],"%1$sMeta description length%2$s: Well done!":["%1$sTamanho da meta descrição%2$s: Bom trabalho!"],"%1$sMeta description length%3$s: The meta description is over %4$d characters. To ensure the entire description will be visible, %2$syou should reduce the length%3$s!":["%1$sTamanho da meta descrição%3$s: A meta descrição excede %4$d caracteres. Para garantir que a descrição inteira esteja visível, %2$svocê deve reduzir o tamanho%3$s!"],"%1$sMeta description length%3$s: The meta description is too short (under %4$d characters). Up to %5$d characters are available. %2$sUse the space%3$s!":["%1$sTamanho da meta descrição%3$s: A meta descrição é muito pequena (abaixo de %4$d caracteres). Há %5$d caracteres estão disponíveis. %2$sAproveite o espaço%3$s!"],"%1$sMeta description length%3$s: No meta description has been specified. Search engines will display copy from the page instead. %2$sMake sure to write one%3$s!":["%1$sTamanho da meta descrição%3$s: nenhuma meta descrição foi especificada. Mecanismos de pesquisa irão mostrar uma cópia no lugar. %2$sNão esqueça de escrever uma%3$s!"],"%1$sKeyphrase in meta description%2$s: The meta description has been specified, but it does not contain the keyphrase. %3$sFix that%4$s!":["%1$sFrase-chave na meta descrição%2$s: a meta descrição foi definida, mas não contém a frase-chave. %3$sCorrija%4$s!"],"%1$sKeyphrase in meta description%2$s: The meta description contains the keyphrase %3$s times, which is over the advised maximum of 2 times. %4$sLimit that%5$s!":["%1$sFrase-chave na meta descrição%2$s: A meta descrição contém a frase-chave %3$s vezes, porém o limite máximo é 2 vezes. %4$sCorrija%5$s!"],"%1$sKeyphrase in meta description%2$s: Keyphrase or synonym appear in the meta description. Well done!":["%1$sFrase-chave na meta descrição%2$s: Frase-chave ou sinônimo aparece na meta descrição. Bom trabalho!"],"%3$sKeyphrase length%5$s: The keyphrase is %1$d words long. That's way more than the recommended maximum of %2$d words. %4$sMake it shorter%5$s!":["%3$sTamanho da frase-chave%5$s: A sua frase-chave tem %1$d palavras. Isso é muito mais do que o máximo recomendado de %2$d palavras. %4$sDeixe-a mais curta%5$s!"],"%3$sKeyphrase length%5$s: The keyphrase is %1$d words long. That's more than the recommended maximum of %2$d words. %4$sMake it shorter%5$s!":["%3$sTamanho da frase-chave%5$s: A sua frase-chave tem %1$d palavras. Isso é mais do que o máximo recomendado de %2$d palavras. %4$sDeixe-a mais curta%5$s!"],"%1$sKeyphrase length%2$s: Good job!":["%1$sTamanho da frase-chave%2$s: Bom trabalho!"],"%1$sKeyphrase length%3$s: No focus keyphrase was set for this page. %2$sSet a keyphrase in order to calculate your SEO score%3$s.":["%1$sTamanho da frase-chave%3$s: Nenhuma frase-chave foi definida para essa página. %2$sDefina uma frase-chave para podermos calcular sua pontuação de SEO%3$s."],"%1$sKeyphrase in introduction%3$s: Your keyphrase or its synonyms do not appear in the first paragraph. %2$sMake sure the topic is clear immediately%3$s.":["%1$sFrase-chave na introdução%3$s: Sua frase-chave, ou algum sinônimo, não está no primeiro parágrafo do texto. %2$sCertifique-se de que o assunto seja identificado imediatamente%3$s."],"%1$sKeyphrase in introduction%3$s:Your keyphrase or its synonyms appear in the first paragraph of the copy, but not within one sentence. %2$sFix that%3$s!":["%1$sFrase-chave na introdução%3$s: Sua frase-chave, ou um sinônimo, aparece no primeiro parágrafo do texto, porém não está dentro de uma sentença. %2$sCorrija isto%3$s!"],"%1$sKeyphrase in introduction%2$s: Well done!":["%1$sFrase-chave na introdução%2$s: Bom trabalho!"],"%1$sInternal links%2$s: There are both nofollowed and normal internal links on this page. Good job!":["%1$sLinks internos%2$s: Existem tanto links nofollow quanto normais nessa página. Bom trabalho!"],"%1$sInternal links%2$s: You have enough internal links. Good job!":["%1$sLinks internos%2$s: Você tem links internos o suficiente. Bom trabalho!"],"%1$sInternal links%3$s: The internal links in this page are all nofollowed. %2$sAdd some good internal links%3$s.":["%1$sLinks internos%3$s: Todos os links desta página são nofollow. %2$sAdicione bons links internos%3$s."],"%1$sInternal links%3$s: No internal links appear in this page, %2$smake sure to add some%3$s!":["%1$sLinks internos%3$s: Nenhum link interno aparece nesta página, %2$sAdicione alguns links%3$s!"],"%1$sTransition words%2$s: Well done!":["%1$sPalavras de transição%2$s: concluído!"],"%1$sTransition words%2$s: Only %3$s of the sentences contain transition words, which is not enough. %4$sUse more of them%2$s.":["%1$sPalavras de transição%2$s: Somente %3$s das suas sentenças contêm palavras de transição, o que não é suficiente. %4$sUtilize mais palavras%2$s."],"%1$sTransition words%2$s: None of the sentences contain transition words. %3$sUse some%2$s.":["%1$sPalavras de transição%2$s: Nenhuma das sentenças contêm palavras de transição. %3$sUtilize algumas%2$s."],"%1$sNot enough content%2$s: %3$sPlease add some content to enable a good analysis%2$s.":["%1$sConteúdo insuficiente%2$s: %3$sAdicione algum conteúdo para que uma boa análise seja feita%2$s."],"%1$sSubheading distribution%2$s: You are not using any subheadings, but your text is short enough and probably doesn't need them.":["%1$sDistribuição de subtítulos%2$s: Você não está usando nenhum subtítulo, mas seu texto é pequeno o bastante para provavelmente não precisar deles."],"%1$sSubheading distribution%2$s: You are not using any subheadings, although your text is rather long. %3$sTry and add some subheadings%2$s.":["%1$sDistribuição de subtítulos%2$s: Você não está usando nenhum subtítulo, apesar de seu texto ser longo. %3$sTente adicionar alguns subtítulos%2$s."],"%1$sSubheading distribution%2$s: %3$d section of your text is longer than %4$d words and is not separated by any subheadings. %5$sAdd subheadings to improve readability%2$s.":["%1$sDistribuição de subtítulos%2$s: %3$d sessão do seu texto é maior do que %4$d palavras, e não está separada por nenhum subtítulo. %5$sAdicione subtítulos para melhorar a leitura.%2$s.","%1$sDistribuição de subtítulos%2$s: %3$d sessões do seu texto são maiores do que %4$d palavras, e não estão separadas por nenhum subtítulo. %5$sAdicione subtítulos para melhorar a leitura.%2$s."],"%1$sSubheading distribution%2$s: Great job!":["%1$sDistribuição de subtítulos%2$s: Bom trabalho!"],"%1$sSentence length%2$s: %3$s of the sentences contain more than %4$s words, which is more than the recommended maximum of %5$s. %6$sTry to shorten the sentences%2$s.":["%1$sTamanho da sentença%2$s: %3$s sentenças contém mais do que %4$s palavras, e o máximo recomendado é de %5$s. %6$sTente encurtar as sentenças%2$s."],"%1$sSentence length%2$s: Great!":["%1$sTamanho da frase%2$s: Ótimo!"],"%1$sConsecutive sentences%2$s: There is enough variety in your sentences. That's great!":["%1$sFrases consecutivas%2$s: Há variedade suficiente em suas frases. Isso é ótimo!"],"%1$sConsecutive sentences%2$s: The text contains %3$d consecutive sentences starting with the same word. %5$sTry to mix things up%2$s!":["%1$sFrases consecutivas%2$s: O texto contém %3$d frases consecutivas começando com a mesma palavra. %5$sTente diversificar as coisas%2$s!","%1$sFrases consecutivas%2$s: O texto contém %4$d instâncias, onde %3$d ou mais frases consecutivas começam com a mesma palavra. %5$sTente diversificar as coisas%2$s!"],"%1$sPassive voice%2$s: %3$s of the sentences contain passive voice, which is more than the recommended maximum of %4$s. %5$sTry to use their active counterparts%2$s.":["%1$sVoz passiva%2$s: %3$s das frases contém voz passiva, o que é mais do que o recomendado de %4$s. %5$sExperimente usar suas alternativas em voz ativa%2$s."],"%1$sPassive voice%2$s: You're using enough active voice. That's great!":["%1$sVoz passiva%2$s: Você esta usando voz ativa o suficiente. Isso é ótimo!"],"%1$sParagraph length%2$s: %3$d of the paragraphs contains more than the recommended maximum of %4$d words. %5$sShorten your paragraphs%2$s!":["%1$sTamanho do parágrafo%2$s: %3$d parágrafo contém mais do que o máximo recomendado de %4$d palavras. %5$sEncurte seu parágrafo%2$s!","%1$sTamanho do parágrafo%2$s: %3$d parágrafos contém mais do que o máximo recomendado de %4$d palavras. %5$sEncurte seus parágrafos%2$s!"],"%1$sParagraph length%2$s: None of the paragraphs are too long. Great job!":["%1$sTamanho dos parágrafos%2$s: Nenhum dos parágrafos é longo demais. Bom trabalho!"],"Good job!":["Bom trabalho!"],"%1$sFlesch Reading Ease%2$s: The copy scores %3$s in the test, which is considered %4$s to read. %5$s%6$s%7$s":["%1$sFacilidade de leitura Flesch%2$s: A pontuação alcançada no teste foi %3$s, que é considerada %4$s de ler. %5$s%6$s%7$s"],"Scroll to see the preview content.":["Role para baixo para visualizar o conteúdo."],"An error occurred in the '%1$s' assessment":["Ocorreu um erro no item %1$s"],"%1$s of the words contain %2$sover %3$s syllables%4$s, which is more than the recommended maximum of %5$s.":["%1$s palavra(s) contém %2$smais de %3$s sílabas%4$s, o que ultrapassa o máximo recomendado de %5$s."],"%1$s of the words contain %2$sover %3$s syllables%4$s, which is less than or equal to the recommended maximum of %5$s.":["%1$s palavra(s) contém %2$smais de %3$s sílabas%4$s, o que é menor ou igual ao máximo recomendado de %5$s."],"This is slightly below the recommended minimum of %5$d word. %3$sAdd a bit more copy%4$s.":["Isso é um pouco abaixo do recomendado de %5$d palavra. %3$sAdicione um pouco mais %4$s.","Isso é um pouco abaixo do recomendado de %5$d palavras. %3$sAdicione um pouco mais %4$s."],"The meta description contains %1$d sentence %2$sover %3$s words%4$s. Try to shorten this sentence.":["A meta descrição contém %1$d sentença %2$s que excede %3$s palavras %4$s. Tente encurtar esta frase.","A meta descrição contém %1$d sentenças %2$s que excedem %3$s palavras %4$s. Tente encurtar essas frases."],"The meta description contains no sentences %1$sover %2$s words%3$s.":["A meta descrição não contém frases %1$s que excedem %2$s palavras %3$s."],"Mobile preview":["Pré-visualização para dispositivos móveis"],"Desktop preview":["Pré-visualização para computadores"],"Please provide an SEO title by editing the snippet below.":["Forneça um título SEO editando a amostra abaixo."],"Meta description preview:":["Pré-visualização da Meta descrição:"],"Slug preview:":["Pré-visualização do Slug:"],"SEO title preview:":["Prévia do título SEO:"],"Close snippet editor":["Fechar editor de amostra"],"Slug":["Slug"],"Remove marks in the text":["Remover marcas no texto"],"Mark this result in the text":["Marcar este resultado no texto"],"Marks are disabled in current view":["Marcações desabilitadas na visualização atual"],"Good SEO score":["Pontuação de SEO boa"],"OK SEO score":["Pontuação de SEO média"],"Feedback":["Feedback"],"ok":["ok"],"Please provide a meta description by editing the snippet below.":["Forneça uma meta-descrição editando a amostra abaixo."],"Edit snippet":["Editar amostra"],"You can click on each element in the preview to jump to the Snippet Editor.":["Você pode clicar em cada elemento na prévia para ir ao Editor de Amostra."],"SEO title":["Título SEO"],"Needs improvement":["Precisa melhorar"],"Good":["Bom"],"very difficult":["muito difícil de"],"Try to make shorter sentences, using less difficult words to improve readability":["Tente escrever sentenças mais curtas, usando palavras menos difíceis para melhorar a leitura"],"difficult":["difícil de"],"Try to make shorter sentences to improve readability":["Tente escrever sentenças mais curtas para aumentar a legibilidade"],"fairly difficult":["razoavelmente difícil de"],"OK":["OK"],"fairly easy":["razoavelmente fácil de"],"easy":["fácil de"],"very easy":["muito fácil de"],"Meta description":["Meta-descrição"],"Snippet preview":["Prévia de amostra"]}}}
\ No newline at end of file
{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Has feedback":[],"Content optimization:":["Innehållsoptimering:"],"%1$sFlesch Reading Ease%2$s: The copy scores %3$s in the test, which is considered %4$s to read. %5$s":["%1$sFlesch Reading Ease%2$s: Innehållet får %3$s på testet, vilket anses vara %4$s att läsa. %5$s"],"%3$sImage alt attributes%5$s: Out of %2$d images on this page, %1$d have alt attributes with words from your keyphrase or synonyms. That's a bit much. %4$sOnly include the keyphrase or its synonyms when it really fits the image%5$s.":["%3$sAlt-parameter för bilder%5$s: Av totalt %2$d bild på denna sida har %1$d en alt-parameter med ord från nyckelordsfrasen eller dess synonymer. Det är i mesta laget. %4$sLägg bara in nyckelordsfrasen eller dess synonymer när den faktiskt passar för bilden%5$s!"],"%1$sImage alt attributes%2$s: Good job!":["%1$sAlt-parametrar för bilder%2$s: Bra jobbat!"],"%3$sImage alt attributes%5$s: Out of %2$d images on this page, only %1$d has an alt attribute that reflects the topic of your text. %4$sAdd your keyphrase or synonyms to the alt tags of more relevant images%5$s!":["%3$sAlt-parameter för bilder%5$s: Av totalt %2$d bild på denna sida har endast %1$d en alt-parameter som återspeglar textens tema. %4$sLägg in din nyckelordsfras eller dess synonymer i alt-parametrarna för fler relevanta bilder%5$s!","%3$sAlt-parameter för bilder%5$s: Av totalt %2$d bilder på denna sida har endast %1$d en alt-parameter som återspeglar textens tema. %4$sLägg in din nyckelordsfras eller dess synonymer i alt-parametrarna för fler relevanta bilder%5$s!"],"%1$sImage alt attributes%3$s: Images on this page do not have alt attributes that reflect the topic of your text. %2$sAdd your keyphrase or synonyms to the alt tags of relevant images%3$s!":["%1$sAlt-parametrar för bilder%3$s: Bilderna på denna sida har inte alt-parametrar som återspeglar textens ämne. %2$sLägg till nyckelordsfrasen eller dess synonymer i alt-parametrarna för relevanta bilder%3$s!"],"%1$sImage alt attributes%3$s: Images on this page have alt attributes, but you have not set your keyphrase. %2$sFix that%3$s!":["%1$sAlt-parametrar för bilder%3$s: Bilderna på denna sida har alt-parametrar, men du har inte angett din nyckelordsfras. %2$sRätta till det%3$s!"],"%1$sKeyphrase in subheading%2$s: %3$s of your higher-level subheadings reflects the topic of your copy. Good job!":["%1$sNyckelordsfras i underrubriker%2$s: %3$s av dina underrubriker på toppnivån återspeglar textens ämne. Stiligt!","%1$sNyckelordsfras i underrubriker%2$s: %3$s av dina underrubriker på toppnivån återspeglar textens ämne. Stiligt!"],"%1$sKeyphrase in subheading%2$s: Your higher-level subheading reflects the topic of your copy. Good job!":["%1$sNyckelordsfras i underrubrik%2$s: Underrubrikerna på toppnivån återspeglar textens ämne. Bra jobbat!"],"%1$sKeyphrase in subheading%3$s: %2$sUse more keyphrases or synonyms in your higher-level subheadings%3$s!":["%1$sNyckelordsfras i underrubriker%3$s: %2$sAnvänd oftare nyckelfrasen eller dess synonymer i dina underrubriker på toppnivå%3$s!"],"%1$sSingle title%3$s: H1s should only be used as your main title. Find all H1s in your text that aren't your main title and %2$schange them to a lower heading level%3$s!":["%1$sEndast en rubrik%3$s: Taggen H1 bör endast användas för din huvudrubrik. Hitta alla H1-taggar i texten som inte är huvudrubriken och %2$sändra dem till en lägre rubriknivå%3$s!"],"%1$sKeyphrase density%2$s: The focus keyphrase was found 0 times. That's less than the recommended minimum of %3$d times for a text of this length. %4$sFocus on your keyphrase%2$s!":["%1$sNyckelordsdensitet%2$s: Den fokuserade nyckelordsfrasen hittades 0 gånger. Det är lägre än rekommenderade minsta antalet, %3$d gånger i en text av denna längd. %4$sFokusera på din nyckelordsfras%2$s!"],"%1$sKeyphrase density%2$s: The focus keyphrase was found %5$d time. That's less than the recommended minimum of %3$d times for a text of this length. %4$sFocus on your keyphrase%2$s!":["%1$sNyckelordsdensitet%2$s: Den fokuserade nyckelordsfrasen hittades %5$d gång. Det är lägre än rekommenderade minsta antalet, %3$d gånger i en text av denna längd. %4$sFokusera på din nyckelordsfras%2$s!","%1$sNyckelordsdensitet%2$s: Den fokuserade nyckelordsfrasen hittades %5$d gånger. Det är lägre än rekommenderade minsta antalet, %3$d gånger i en text av denna längd. %4$sFokusera på din nyckelordsfras%2$s!"],"%1$sKeyphrase density%2$s: The focus keyphrase was found %3$d time. This is great!":["%1$sNyckelordsdensitet%2$s: Den fokuserade nyckelordsfrasen hittades %3$d gång. Det är perfekt!","%1$sNyckelordsdensitet%2$s: Den fokuserade nyckelordsfrasen hittades %3$d gånger. Det är perfekt!"],"%1$sKeyphrase density%2$s: The focus keyphrase was found %5$d time. That's more than the recommended maximum of %3$d times for a text of this length. %4$sDon't overoptimize%2$s!":["%1$sNyckelordsdensitet%2$s: Den fokuserade nyckelordsfrasen hittades %5$d gång. Det är mer än det rekommenderade högsta antalet, %3$d gånger för en text av denna längd. %4$sÖveroptimera inte%2$s!","%1$sNyckelordsdensitet%2$s: Den fokuserade nyckelordsfrasen hittades %5$d gånger. Det är mer än det rekommenderade högsta antalet, %3$d gånger för en text av denna längd. %4$sÖveroptimera inte%2$s!"],"%1$sKeyphrase density%2$s: The focus keyphrase was found %5$d time. That's way more than the recommended maximum of %3$d times for a text of this length. %4$sDon't overoptimize%2$s!":["%1$sNyckelordsdensitet%2$s: Den fokuserade nyckelordsfrasen hittades %5$d gång. Det är långt mer än det rekommenderade högsta antalet, %3$d gånger för en text av denna längd. %4$sÖveroptimera inte%2$s!","%1$sNyckelordsdensitet%2$s: Den fokuserade nyckelordsfrasen hittades %5$d gånger. Det är långt mer än det rekommenderade högsta antalet, %3$d gånger för en text av denna längd. %4$sÖveroptimera inte%2$s!"],"%1$sFunction words in keyphrase%3$s: Your keyphrase \"%4$s\" contains function words only. %2$sLearn more about what makes a good keyphrase.%3$s":["%1$sFunktionsord i nyckelordsfras%3$s: Din nyckelordsfras \"%4$s\" innehåller endast funktionsord. %2$sLäs mer om vad som gör en nyckelordsfras bra.%3$s"],"%1$sKeyphrase length%3$s: %2$sSet a keyphrase in order to calculate your SEO score%3$s.":["%1$sLängd på nyckelordsfras%3$s: %2$sAnge en nyckelordsfras för att räkna ut din SEO-poäng%3$s."],"%1$sKeyphrase in slug%2$s: More than half of your keyphrase appears in the slug. That's great!":["%1$sNyckelordsfrasen i permalänken%2$s: Mer än hälften av nyckelordsfrasen finns i permalänken. Jättebra!"],"%1$sKeyphrase in slug%3$s: (Part of) your keyphrase does not appear in the slug. %2$sChange that%3$s!":["%1$sNyckelordsfrasen i permalänken%3$s: (En del av) din nyckelordsfras saknas i permalänken. %2$sDet bör du åtgärda%3$s!"],"%1$sKeyphrase in slug%2$s: Great work!":["%1$sNyckelordsfrasen i slug%2$s: Bra jobbat!"],"%1$sKeyphrase in title%3$s: Not all the words from your keyphrase \"%4$s\" appear in the SEO title. %2$sTry to use the exact match of your keyphrase in the SEO title%3$s.":["%1$sNyckelordsfrasen i rubriken%3$s: Några ord i din nyckelordsfras ”%4$s” saknas i SEO-rubriken. %2$sSträva efter att ha en exakt kopia av din nyckelordsfras i SEO-rubriken%3$s."],"%1$sKeyphrase in title%3$s: Does not contain the exact match. %2$sTry to write the exact match of your keyphrase in the SEO title%3$s.":["%1$sNyckelordfras i rubrik%3$s: Innehåller inte exakt matchning. %2$sFörsök skriva den exakta matchningen för din nyckelordsfras i SEO-rubriken%3$s."],"%1$sKeyphrase in title%3$s: The exact match of the keyphrase appears in the SEO title, but not at the beginning. %2$sTry to move it to the beginning%3$s.":["%1$sNyckelordsfras i rubrik%3$s: Den exakta matchningen av nyckelordsfrasen visas i SEO-rubriken, men inte i början. %2$sFörsök flytta den till början%3$s."],"%1$sKeyphrase in title%2$s: The exact match of the keyphrase appears at the beginning of the SEO title. Good job!":["%1$sNyckelordsfras i rubrik%2$s: Den exakta matchningen av nyckelordsfrasen visas i början av SEO-rubriken. Bra jobbat!"],"%1$sKeyphrase distribution%2$s: Good job!":["%1$sFördelning av nyckelordsfras%2$s: Bra jobbat!"],"%1$sKeyphrase distribution%3$s: Uneven. Some parts of your text do not contain the keyphrase or its synonyms. %2$sDistribute them more evenly%3$s.":["%1$sFördelning av nyckelordsfras%3$s: Ojämn. Delar av din text innehåller inte nyckelordsfrasen eller dess synonymer. %2$sFördela nyckelordsfrasen mer jämnt%3$s."],"%1$sKeyphrase distribution%3$s: Very uneven. Large parts of your text do not contain the keyphrase or its synonyms. %2$sDistribute them more evenly%3$s.":["%1$sFördelning av nyckelordsfras%3$s: Väldigt ojämn. Stora delar av din text innehåller inte nyckelordsfrasen eller dess synonymer. %2$sFördela nyckelordsfrasen mer jämnt%3$s."],"%1$sKeyphrase distribution%3$s: %2$sInclude your keyphrase or its synonyms in the text so that we can check keyphrase distribution%3$s.":["%1$sFördelning av nyckelordsfras%3$s: %2$sInkludera din nyckelordsfras eller dess synonymer för att vi ska kunna analysera fördelningen%3$s."],"%4$sPreviously used keyphrase%6$s: You've used this keyphrase %1$s%2$d times before%3$s. %5$sDo not use your keyphrase more than once%6$s.":["%4$sTidigare använd nyckelordsfras%6$s: Du har använt denna nyckelordsfras %1$s%2$d gånger tidigare%3$s. %5$sAnvänd inte din nyckelordsfras mer än en gång%6$s."],"%3$sPreviously used keyphrase%5$s: You've used this keyphrase %1$sonce before%2$s. %4$sDo not use your keyphrase more than once%5$s.":["%3$sTidigare använd nyckelordsfras%5$s: Du har använt denna nyckelordsfras %1$sgång tidigare%2$s. %4$sAnvänd inte din nyckelordsfras mer än en gång%5$s."],"%1$sPreviously used keyphrase%2$s: You've not used this keyphrase before, very good.":["%1$sTidigare använd nyckelordsfras%2$s: Du har inte använt denna nyckelordsfras tidigare, mycket bra."],"%1$sSlug stopwords%3$s: The slug for this page contains a stop word. %2$sRemove it%3$s!":[],"%1$sSlug too long%3$s: the slug for this page is a bit long. %2$sShorten it%3$s!":["%1$sSlug för lång%3$s: slug för denna sida är lite för lång. %2$sGör den kortare%3$s!"],"%1$sImage alt attributes%3$s: No images appear on this page. %2$sAdd some%3$s!":[],"%1$sLink keyphrase%3$s: You're linking to another page with the words you want this page to rank for. %2$sDon't do that%3$s!":["%1$sNyckelordsfras i länk%3$s: Du länkar till en annan sida med orden som du vill att den här sidan ska ranka för. %2$sGör inte det%3$s!"],"This is far below the recommended minimum of %5$d word. %3$sAdd more content%4$s.":["Detta ligger långt under det rekommenderade minimumet av %5$d ord. %3$sLägg till mer innehåll%4$s.","Detta ligger långt under det rekommenderade minimumet av %5$d ord. %3$sLägg till mer innehåll%4$s."],"This is below the recommended minimum of %5$d word. %3$sAdd more content%4$s.":["Detta är under rekommenderat minimum av %5$d ord. %3$sLägg till mer innehåll%4$s.","Detta är under rekommenderat minimum av %5$d ord. %3$sLägg till mer innehåll%4$s."],"%2$sText length%4$s: The text contains %1$d word.":["%2$sTextlängd%4$s: Texten innehåller %1$d ord.","%2$sTextlängd%4$s: Texten innehåller %1$d ord."],"%2$sText length%3$s: The text contains %1$d word. Good job!":["%2$sTextlängd%3$s: Texten innehåller %1$d ord. Bra jobbat!","%2$sTextlängd%3$s: Texten innehåller %1$d ord. Bra jobbat!"],"%1$sKeyphrase in subheading%3$s: More than 75%% of your higher-level subheadings reflect the topic of your copy. That's too much. %2$sDon't over-optimize%3$s!":["%1$sNyckelordsfras i underrubrik%3$s: Över 75 %% av toppnivåns underrubriker återspeglar textens ämne. Det är för mycket. %2$sOptimera inte för hårt%3$s!"],"%1$sSEO title width%3$s: %2$sPlease create an SEO title%3$s.":["%1$sSEO rubrikbredd%3$s: %2$sSkapa en SEO-rubrik%3$s."],"%1$sSEO title width%3$s: The SEO title is wider than the viewable limit. %2$sTry to make it shorter%3$s.":["%1$sSEO rubrikbredd%3$s: SEO-rubriken är bredare än den synliga gränsen. %2$sFörsök att göra den kortare%3$s."],"%1$sSEO title width%2$s: Good job!":["%1$sSEO rubrikbredd%2$s: Bra jobbat!"],"%1$sSEO title width%3$s: The SEO title is too short. %2$sUse the space to add keyphrase variations or create compelling call-to-action copy%3$s.":["%1$sSEO-rubrikens längd%3$s: SEO-rubriken är för kort. %2$sAnvänd utrymmet till att lägga till varianter av nyckelordsfrasen eller skapa effektiv uppmanande text%3$s."],"%1$sOutbound links%2$s: There are both nofollowed and normal outbound links on this page. Good job!":["%1$sUtgående länkar%2$s: Det finns både nofollowed och normala utgående länkar på denna sida. Bra jobbat!"],"%1$sOutbound links%2$s: Good job!":["%1$sUtgående länkar%2$s: Bra jobbat!"],"%1$sOutbound links%3$s: All outbound links on this page are nofollowed. %2$sAdd some normal links%3$s.":["%1$sUtgående länkar%3$s: Alla utgående länkar på denna sida är nofollowed. %2$sLägg till några vanliga länkar%3$s."],"%1$sOutbound links%3$s: No outbound links appear in this page. %2$sAdd some%3$s!":["%1$sUtgående länkar%3$s: Inga utgående länkar visas på denna sida. %2$sLägg till några%3$s!"],"%1$sMeta description length%2$s: Well done!":["%1$sMetabeskrivningslängd%2$s: Bra gjort!"],"%1$sMeta description length%3$s: The meta description is over %4$d characters. To ensure the entire description will be visible, %2$syou should reduce the length%3$s!":["%1$sMetabeskrivningslängd%3$s: Metabeskrivningen är längre än %4$d tecken. För att vara säker på att hela beskrivningen är synlig, %2$sbör du korta ned den%3$s!"],"%1$sMeta description length%3$s: The meta description is too short (under %4$d characters). Up to %5$d characters are available. %2$sUse the space%3$s!":["%1$sMetabeskrivningslängd%3$s: Metabeskrivningen är för kort (under %4$d tecken). Upp till %5$d tecken är tillgängliga. %2$sAnvänd utrymmet%3$s!"],"%1$sMeta description length%3$s: No meta description has been specified. Search engines will display copy from the page instead. %2$sMake sure to write one%3$s!":["%1$sMetabeskrivningslängd%3$s: Ingen metabeskrivning har specifierats. Sökmotorer kommer att visa text från sidan istället. %2$sSe till att skriva en%3$s!"],"%1$sKeyphrase in meta description%2$s: The meta description has been specified, but it does not contain the keyphrase. %3$sFix that%4$s!":["%1$sNyckelordsfras i metabeskrivning%2$s: Metabeskrivningen har specificerats, men den innehåller inte nyckelordsfrasen. %3$sÅtgärda det%4$s!"],"%1$sKeyphrase in meta description%2$s: The meta description contains the keyphrase %3$s times, which is over the advised maximum of 2 times. %4$sLimit that%5$s!":["%1$sNyckelordsfras i metabeskrivningen%2$s: Nyckelordsfrasen återfinns i metabeskrivningen %3$s gånger, vilket är mer än det rekommenderade maximala värdet 2 gånger. %4$sMinska%5$s!"],"%1$sKeyphrase in meta description%2$s: Keyphrase or synonym appear in the meta description. Well done!":["%1$sNyckelordsfras i metabeskrivning%2$s: Nyckelordsfras eller synonym visas i metabeskrivningen. Bra gjort!"],"%3$sKeyphrase length%5$s: The keyphrase is %1$d words long. That's way more than the recommended maximum of %2$d words. %4$sMake it shorter%5$s!":["%3$sNyckelordsfraslängd%5$s: Nyckelordsfrasen är %1$d ord lång. Det är lågt mycket mer än det rekommenderade maximumet – %2$d ord. %4$sKorta ned%5$s!"],"%3$sKeyphrase length%5$s: The keyphrase is %1$d words long. That's more than the recommended maximum of %2$d words. %4$sMake it shorter%5$s!":["%3$sNyckelordsfraslängd%5$s: Nyckelordsfrasen är %1$d ord lång. Det är fler än det rekommenderade maximumet – %2$d ord. %4$sKorta ned%5$s!"],"%1$sKeyphrase length%2$s: Good job!":["%1$sNyckelordsfraslängd%2$s: Bra jobbat!"],"%1$sKeyphrase length%3$s: No focus keyphrase was set for this page. %2$sSet a keyphrase in order to calculate your SEO score%3$s.":[],"%1$sKeyphrase in introduction%3$s: Your keyphrase or its synonyms do not appear in the first paragraph. %2$sMake sure the topic is clear immediately%3$s.":["%1$sNyckelordsfras i introduktionen%3$s: Din nyckelordsfras eller dess synonymer förekommer inte i den första paragrafen. %2$sSe till att ämnet genast framgår%3$s."],"%1$sKeyphrase in introduction%3$s:Your keyphrase or its synonyms appear in the first paragraph of the copy, but not within one sentence. %2$sFix that%3$s!":["%1$sNyckelordsfras i introduktion%3$s:Din nyckelordsfras eller dess synonymer finns i det första stycket i texten, men inte inom samma mening. %2$sÅtgärda det%3$s!"],"%1$sKeyphrase in introduction%2$s: Well done!":["%1$sNyckelordsfras i inledning%2$s: Bra gjort!"],"%1$sInternal links%2$s: There are both nofollowed and normal internal links on this page. Good job!":["%1$sInterna länkar%2$s: Det finns både nofollowed och normal interna länkar på denna sida. Bra jobbat!"],"%1$sInternal links%2$s: You have enough internal links. Good job!":["%1$sInterna länkar%2$s: Du har tillräckligt med interna länkar. Bra jobbat!"],"%1$sInternal links%3$s: The internal links in this page are all nofollowed. %2$sAdd some good internal links%3$s.":["%1$sInterna länkar%3$s: De interna länkarna på denna sida är alla nofollow. %2$sLägg till några bra interna länkar%3$s."],"%1$sInternal links%3$s: No internal links appear in this page, %2$smake sure to add some%3$s!":["%1$sInterna länkar%3$s: Inga interna länkar visas på denna sida, %2$s var noga med att lägga till några%3$s!"],"%1$sTransition words%2$s: Well done!":["%1$sÖvergångsord%2$s: Bra gjort!"],"%1$sTransition words%2$s: Only %3$s of the sentences contain transition words, which is not enough. %4$sUse more of them%2$s.":["%1$sÖvergångsord%2$s: Endast %3$s av meningarna innehåller övergångsord, vilket inte är tillräckligt. %4$sAnvänd fler%2$s."],"%1$sTransition words%2$s: None of the sentences contain transition words. %3$sUse some%2$s.":["%1$sÖvergångsord%2$s: Ingen av meningarna innehåller övergångsord. %3$sAnvänd några%2$s."],"%1$sNot enough content%2$s: %3$sPlease add some content to enable a good analysis%2$s.":["%1$sInte tillräckligt med innehåll%2$s: %3$sLägg till lite innehåll för att möjliggöra en bra analys%2$s."],"%1$sSubheading distribution%2$s: You are not using any subheadings, but your text is short enough and probably doesn't need them.":["%1$sFördelning av underrubriker%2$s: Du använder inga underrubriker, men din text är så kort att du förmodligen inte behöver dem."],"%1$sSubheading distribution%2$s: You are not using any subheadings, although your text is rather long. %3$sTry and add some subheadings%2$s.":["%1$sFördelning av underrubriker%2$s: Du använder inga underrubriker trots att din text är ganska lång. %3$sFörsök lägga till några underrubriker%2$s."],"%1$sSubheading distribution%2$s: %3$d section of your text is longer than %4$d words and is not separated by any subheadings. %5$sAdd subheadings to improve readability%2$s.":[],"%1$sSubheading distribution%2$s: Great job!":["%1$sFördelning av underrubriker%2$s: Bra jobbat!"],"%1$sSentence length%2$s: %3$s of the sentences contain more than %4$s words, which is more than the recommended maximum of %5$s. %6$sTry to shorten the sentences%2$s.":["%1$sMeningslängd%2$s: %3$s meningarna innehåller mer än %4$s ord, vilket är mer än det rekommenderade maximalt %5$s. %6$sFörsök att förkorta meningarna%2$s."],"%1$sSentence length%2$s: Great!":["%1$sMeningslängd%2$s: Bra!"],"%1$sConsecutive sentences%2$s: There is enough variety in your sentences. That's great!":["%1$sEfterföljande meningar%2$s: Det finns tillräckligt med variation i dina meningar. Bra jobbat!"],"%1$sConsecutive sentences%2$s: The text contains %3$d consecutive sentences starting with the same word. %5$sTry to mix things up%2$s!":[],"%1$sPassive voice%2$s: %3$s of the sentences contain passive voice, which is more than the recommended maximum of %4$s. %5$sTry to use their active counterparts%2$s.":[],"%1$sPassive voice%2$s: You're using enough active voice. That's great!":[],"%1$sParagraph length%2$s: %3$d of the paragraphs contains more than the recommended maximum of %4$d words. %5$sShorten your paragraphs%2$s!":[],"%1$sParagraph length%2$s: None of the paragraphs are too long. Great job!":["%1$sLängd på textstycken%2$s: Inget stycke är för långt. Bra jobbat!"],"Good job!":["Bra jobbat!"],"%1$sFlesch Reading Ease%2$s: The copy scores %3$s in the test, which is considered %4$s to read. %5$s%6$s%7$s":[],"Scroll to see the preview content.":["Rulla ner för att se en förhandsvisning av innehållet."],"An error occurred in the '%1$s' assessment":["Ett fel uppstod i utvärderingen av '%1$s'"],"%1$s of the words contain %2$sover %3$s syllables%4$s, which is more than the recommended maximum of %5$s.":["%1$s av orden %2$söver %3$s stavelser%4$s, vilket är mer än det rekommenderade maximala %5$s."],"%1$s of the words contain %2$sover %3$s syllables%4$s, which is less than or equal to the recommended maximum of %5$s.":["%1$s av orden innehåller %2$söver %3$s stavelser%4$s, vilket är mindre än eller lika med det rekommenderade maximala %5$s."],"This is slightly below the recommended minimum of %5$d word. %3$sAdd a bit more copy%4$s.":["Detta är något under det rekommenderade minsta antalet på %5$d ord. %3$sLägg till lite mer text%4$s.","Detta är något under det rekommenderade minsta antalet på %5$d ord. %3$sLägg till lite mer text%4$s."],"The meta description contains %1$d sentence %2$sover %3$s words%4$s. Try to shorten this sentence.":["Metabeskrivningen innehåller %1$d mening %2$söver %3$s ord%4$s. Försök att förkorta denna mening.","Metabeskrivningen innehåller %1$d meningar %2$söver %3$s ord%4$s. Försök att förkorta dessa meningar."],"The meta description contains no sentences %1$sover %2$s words%3$s.":["Metabeskrivningen innehåller inga meningar %1$söver %2$s ord %3$s."],"Mobile preview":["Förhandsgranskning för mobil"],"Desktop preview":["Förhandsgranskning för stationär dator"],"Please provide an SEO title by editing the snippet below.":["Ange en SEO-rubrik genom att redigera förhandsvisningstexten nedan."],"Meta description preview:":["Metabeskrivning förhandsvisning:"],"Slug preview:":["Förhandsgranskning av slug:"],"SEO title preview:":["Förhandsvisning av SEO-rubrik:"],"Close snippet editor":["Stäng redigeraren för förhandsvisningstexten"],"Slug":["Slug"],"Remove marks in the text":["Ta bort markeringar i texten"],"Mark this result in the text":["Markera detta resultat i texten"],"Marks are disabled in current view":["Markeringen är inaktiverade i aktuell vy"],"Good SEO score":["Bra SEO-poäng"],"OK SEO score":["OK SEO-poäng"],"Feedback":["Återkoppling"],"ok":["ok"],"Please provide a meta description by editing the snippet below.":["Vänligen ange en metabeskrivning genom att redigera förhandsvisningstexten nedan."],"Edit snippet":["Redigera förhandsvisningstext"],"You can click on each element in the preview to jump to the Snippet Editor.":["Du kan klicka på varje element i förhandsgranskningen för att gå till redigeraren för förhandsvisningstexten."],"SEO title":["SEO-rubrik"],"Needs improvement":["Behöver förbättras"],"Good":["Bra"],"very difficult":["väldigt svår"],"Try to make shorter sentences, using less difficult words to improve readability":["Försök att göra kortare meningar, med mindre svåra ord för att förbättra läsbarheten"],"difficult":["svårt"],"Try to make shorter sentences to improve readability":["Försök att göra kortare meningar för att förbättra läsbarheten"],"fairly difficult":["ganska svårt"],"OK":["OK"],"fairly easy":["ganska lätt"],"easy":["lätt"],"very easy":["mycket lätt"],"Meta description":["Metabeskrivning"],"Snippet preview":["Förhandsvisningstext"]}}}
\ No newline at end of file
{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Has feedback":["Ny feedback"],"Content optimization:":["Innehållsoptimering:"],"%1$sFlesch Reading Ease%2$s: The copy scores %3$s in the test, which is considered %4$s to read. %5$s":["%1$sFlesch Reading Ease%2$s: Innehållet får %3$s på testet, vilket anses vara %4$s att läsa. %5$s"],"%3$sImage alt attributes%5$s: Out of %2$d images on this page, %1$d have alt attributes with words from your keyphrase or synonyms. That's a bit much. %4$sOnly include the keyphrase or its synonyms when it really fits the image%5$s.":["%3$sAlt-parameter för bilder%5$s: Av totalt %2$d bild på denna sida har %1$d en alt-parameter med ord från nyckelordsfrasen eller dess synonymer. Det är i mesta laget. %4$sLägg bara in nyckelordsfrasen eller dess synonymer när den faktiskt passar för bilden%5$s!"],"%1$sImage alt attributes%2$s: Good job!":["%1$sAlt-parametrar för bilder%2$s: Bra jobbat!"],"%3$sImage alt attributes%5$s: Out of %2$d images on this page, only %1$d has an alt attribute that reflects the topic of your text. %4$sAdd your keyphrase or synonyms to the alt tags of more relevant images%5$s!":["%3$sAlt-parameter för bilder%5$s: Av totalt %2$d bild på denna sida har endast %1$d en alt-parameter som återspeglar textens tema. %4$sLägg in din nyckelordsfras eller dess synonymer i alt-parametrarna för fler relevanta bilder%5$s!","%3$sAlt-parameter för bilder%5$s: Av totalt %2$d bilder på denna sida har endast %1$d en alt-parameter som återspeglar textens tema. %4$sLägg in din nyckelordsfras eller dess synonymer i alt-parametrarna för fler relevanta bilder%5$s!"],"%1$sImage alt attributes%3$s: Images on this page do not have alt attributes that reflect the topic of your text. %2$sAdd your keyphrase or synonyms to the alt tags of relevant images%3$s!":["%1$sAlt-parametrar för bilder%3$s: Bilderna på denna sida har inte alt-parametrar som återspeglar textens ämne. %2$sLägg till nyckelordsfrasen eller dess synonymer i alt-parametrarna för relevanta bilder%3$s!"],"%1$sImage alt attributes%3$s: Images on this page have alt attributes, but you have not set your keyphrase. %2$sFix that%3$s!":["%1$sAlt-parametrar för bilder%3$s: Bilderna på denna sida har alt-parametrar, men du har inte angett din nyckelordsfras. %2$sRätta till det%3$s!"],"%1$sKeyphrase in subheading%2$s: %3$s of your higher-level subheadings reflects the topic of your copy. Good job!":["%1$sNyckelordsfras i underrubriker%2$s: %3$s av dina underrubriker på toppnivån återspeglar textens ämne. Stiligt!","%1$sNyckelordsfras i underrubriker%2$s: %3$s av dina underrubriker på toppnivån återspeglar textens ämne. Stiligt!"],"%1$sKeyphrase in subheading%2$s: Your higher-level subheading reflects the topic of your copy. Good job!":["%1$sNyckelordsfras i underrubrik%2$s: Underrubrikerna på toppnivån återspeglar textens ämne. Bra jobbat!"],"%1$sKeyphrase in subheading%3$s: %2$sUse more keyphrases or synonyms in your higher-level subheadings%3$s!":["%1$sNyckelordsfras i underrubriker%3$s: %2$sAnvänd oftare nyckelfrasen eller dess synonymer i dina underrubriker på toppnivå%3$s!"],"%1$sSingle title%3$s: H1s should only be used as your main title. Find all H1s in your text that aren't your main title and %2$schange them to a lower heading level%3$s!":["%1$sEndast en rubrik%3$s: Taggen H1 bör endast användas för din huvudrubrik. Hitta alla H1-taggar i texten som inte är huvudrubriken och %2$sändra dem till en lägre rubriknivå%3$s!"],"%1$sKeyphrase density%2$s: The focus keyphrase was found 0 times. That's less than the recommended minimum of %3$d times for a text of this length. %4$sFocus on your keyphrase%2$s!":["%1$sNyckelordsdensitet%2$s: Den fokuserade nyckelordsfrasen hittades 0 gånger. Det är lägre än rekommenderade minsta antalet, %3$d gånger i en text av denna längd. %4$sFokusera på din nyckelordsfras%2$s!"],"%1$sKeyphrase density%2$s: The focus keyphrase was found %5$d time. That's less than the recommended minimum of %3$d times for a text of this length. %4$sFocus on your keyphrase%2$s!":["%1$sNyckelordsdensitet%2$s: Den fokuserade nyckelordsfrasen hittades %5$d gång. Det är lägre än rekommenderade minsta antalet, %3$d gånger i en text av denna längd. %4$sFokusera på din nyckelordsfras%2$s!","%1$sNyckelordsdensitet%2$s: Den fokuserade nyckelordsfrasen hittades %5$d gånger. Det är lägre än rekommenderade minsta antalet, %3$d gånger i en text av denna längd. %4$sFokusera på din nyckelordsfras%2$s!"],"%1$sKeyphrase density%2$s: The focus keyphrase was found %3$d time. This is great!":["%1$sNyckelordsdensitet%2$s: Den fokuserade nyckelordsfrasen hittades %3$d gång. Det är perfekt!","%1$sNyckelordsdensitet%2$s: Den fokuserade nyckelordsfrasen hittades %3$d gånger. Det är perfekt!"],"%1$sKeyphrase density%2$s: The focus keyphrase was found %5$d time. That's more than the recommended maximum of %3$d times for a text of this length. %4$sDon't overoptimize%2$s!":["%1$sNyckelordsdensitet%2$s: Den fokuserade nyckelordsfrasen hittades %5$d gång. Det är mer än det rekommenderade högsta antalet, %3$d gånger för en text av denna längd. %4$sÖveroptimera inte%2$s!","%1$sNyckelordsdensitet%2$s: Den fokuserade nyckelordsfrasen hittades %5$d gånger. Det är mer än det rekommenderade högsta antalet, %3$d gånger för en text av denna längd. %4$sÖveroptimera inte%2$s!"],"%1$sKeyphrase density%2$s: The focus keyphrase was found %5$d time. That's way more than the recommended maximum of %3$d times for a text of this length. %4$sDon't overoptimize%2$s!":["%1$sNyckelordsdensitet%2$s: Den fokuserade nyckelordsfrasen hittades %5$d gång. Det är långt mer än det rekommenderade högsta antalet, %3$d gånger för en text av denna längd. %4$sÖveroptimera inte%2$s!","%1$sNyckelordsdensitet%2$s: Den fokuserade nyckelordsfrasen hittades %5$d gånger. Det är långt mer än det rekommenderade högsta antalet, %3$d gånger för en text av denna längd. %4$sÖveroptimera inte%2$s!"],"%1$sFunction words in keyphrase%3$s: Your keyphrase \"%4$s\" contains function words only. %2$sLearn more about what makes a good keyphrase.%3$s":["%1$sFunktionsord i nyckelordsfras%3$s: Din nyckelordsfras \"%4$s\" innehåller endast funktionsord. %2$sLäs mer om vad som gör en nyckelordsfras bra.%3$s"],"%1$sKeyphrase length%3$s: %2$sSet a keyphrase in order to calculate your SEO score%3$s.":["%1$sLängd på nyckelordsfras%3$s: %2$sAnge en nyckelordsfras för att räkna ut din SEO-poäng%3$s."],"%1$sKeyphrase in slug%2$s: More than half of your keyphrase appears in the slug. That's great!":["%1$sNyckelordsfrasen i permalänken%2$s: Mer än hälften av nyckelordsfrasen finns i permalänken. Jättebra!"],"%1$sKeyphrase in slug%3$s: (Part of) your keyphrase does not appear in the slug. %2$sChange that%3$s!":["%1$sNyckelordsfrasen i permalänken%3$s: (En del av) din nyckelordsfras saknas i permalänken. %2$sDet bör du åtgärda%3$s!"],"%1$sKeyphrase in slug%2$s: Great work!":["%1$sNyckelordsfrasen i slug%2$s: Bra jobbat!"],"%1$sKeyphrase in title%3$s: Not all the words from your keyphrase \"%4$s\" appear in the SEO title. %2$sTry to use the exact match of your keyphrase in the SEO title%3$s.":["%1$sNyckelordsfrasen i rubriken%3$s: Några ord i din nyckelordsfras ”%4$s” saknas i SEO-rubriken. %2$sSträva efter att ha en exakt kopia av din nyckelordsfras i SEO-rubriken%3$s."],"%1$sKeyphrase in title%3$s: Does not contain the exact match. %2$sTry to write the exact match of your keyphrase in the SEO title%3$s.":["%1$sNyckelordfras i rubrik%3$s: Innehåller inte exakt matchning. %2$sFörsök skriva den exakta matchningen för din nyckelordsfras i SEO-rubriken%3$s."],"%1$sKeyphrase in title%3$s: The exact match of the keyphrase appears in the SEO title, but not at the beginning. %2$sTry to move it to the beginning%3$s.":["%1$sNyckelordsfras i rubrik%3$s: Den exakta matchningen av nyckelordsfrasen visas i SEO-rubriken, men inte i början. %2$sFörsök flytta den till början%3$s."],"%1$sKeyphrase in title%2$s: The exact match of the keyphrase appears at the beginning of the SEO title. Good job!":["%1$sNyckelordsfras i rubrik%2$s: Den exakta matchningen av nyckelordsfrasen visas i början av SEO-rubriken. Bra jobbat!"],"%1$sKeyphrase distribution%2$s: Good job!":["%1$sFördelning av nyckelordsfras%2$s: Bra jobbat!"],"%1$sKeyphrase distribution%3$s: Uneven. Some parts of your text do not contain the keyphrase or its synonyms. %2$sDistribute them more evenly%3$s.":["%1$sFördelning av nyckelordsfras%3$s: Ojämn. Delar av din text innehåller inte nyckelordsfrasen eller dess synonymer. %2$sFördela nyckelordsfrasen mer jämnt%3$s."],"%1$sKeyphrase distribution%3$s: Very uneven. Large parts of your text do not contain the keyphrase or its synonyms. %2$sDistribute them more evenly%3$s.":["%1$sFördelning av nyckelordsfras%3$s: Väldigt ojämn. Stora delar av din text innehåller inte nyckelordsfrasen eller dess synonymer. %2$sFördela nyckelordsfrasen mer jämnt%3$s."],"%1$sKeyphrase distribution%3$s: %2$sInclude your keyphrase or its synonyms in the text so that we can check keyphrase distribution%3$s.":["%1$sFördelning av nyckelordsfras%3$s: %2$sInkludera din nyckelordsfras eller dess synonymer för att vi ska kunna analysera fördelningen%3$s."],"%4$sPreviously used keyphrase%6$s: You've used this keyphrase %1$s%2$d times before%3$s. %5$sDo not use your keyphrase more than once%6$s.":["%4$sTidigare använd nyckelordsfras%6$s: Du har använt denna nyckelordsfras %1$s%2$d gånger tidigare%3$s. %5$sAnvänd inte din nyckelordsfras mer än en gång%6$s."],"%3$sPreviously used keyphrase%5$s: You've used this keyphrase %1$sonce before%2$s. %4$sDo not use your keyphrase more than once%5$s.":["%3$sTidigare använd nyckelordsfras%5$s: Du har använt denna nyckelordsfras %1$sgång tidigare%2$s. %4$sAnvänd inte din nyckelordsfras mer än en gång%5$s."],"%1$sPreviously used keyphrase%2$s: You've not used this keyphrase before, very good.":["%1$sTidigare använd nyckelordsfras%2$s: Du har inte använt denna nyckelordsfras tidigare, mycket bra."],"%1$sSlug stopwords%3$s: The slug for this page contains a stop word. %2$sRemove it%3$s!":[],"%1$sSlug too long%3$s: the slug for this page is a bit long. %2$sShorten it%3$s!":["%1$sSlug för lång%3$s: slug för denna sida är lite för lång. %2$sGör den kortare%3$s!"],"%1$sImage alt attributes%3$s: No images appear on this page. %2$sAdd some%3$s!":[],"%1$sLink keyphrase%3$s: You're linking to another page with the words you want this page to rank for. %2$sDon't do that%3$s!":["%1$sNyckelordsfras i länk%3$s: Du länkar till en annan sida med orden som du vill att den här sidan ska ranka för. %2$sGör inte det%3$s!"],"This is far below the recommended minimum of %5$d word. %3$sAdd more content%4$s.":["Detta ligger långt under det rekommenderade minimumet av %5$d ord. %3$sLägg till mer innehåll%4$s.","Detta ligger långt under det rekommenderade minimumet av %5$d ord. %3$sLägg till mer innehåll%4$s."],"This is below the recommended minimum of %5$d word. %3$sAdd more content%4$s.":["Detta är under rekommenderat minimum av %5$d ord. %3$sLägg till mer innehåll%4$s.","Detta är under rekommenderat minimum av %5$d ord. %3$sLägg till mer innehåll%4$s."],"%2$sText length%4$s: The text contains %1$d word.":["%2$sTextlängd%4$s: Texten innehåller %1$d ord.","%2$sTextlängd%4$s: Texten innehåller %1$d ord."],"%2$sText length%3$s: The text contains %1$d word. Good job!":["%2$sTextlängd%3$s: Texten innehåller %1$d ord. Bra jobbat!","%2$sTextlängd%3$s: Texten innehåller %1$d ord. Bra jobbat!"],"%1$sKeyphrase in subheading%3$s: More than 75%% of your higher-level subheadings reflect the topic of your copy. That's too much. %2$sDon't over-optimize%3$s!":["%1$sNyckelordsfras i underrubrik%3$s: Över 75 %% av toppnivåns underrubriker återspeglar textens ämne. Det är för mycket. %2$sOptimera inte för hårt%3$s!"],"%1$sSEO title width%3$s: %2$sPlease create an SEO title%3$s.":["%1$sSEO rubrikbredd%3$s: %2$sSkapa en SEO-rubrik%3$s."],"%1$sSEO title width%3$s: The SEO title is wider than the viewable limit. %2$sTry to make it shorter%3$s.":["%1$sSEO rubrikbredd%3$s: SEO-rubriken är bredare än den synliga gränsen. %2$sFörsök att göra den kortare%3$s."],"%1$sSEO title width%2$s: Good job!":["%1$sSEO rubrikbredd%2$s: Bra jobbat!"],"%1$sSEO title width%3$s: The SEO title is too short. %2$sUse the space to add keyphrase variations or create compelling call-to-action copy%3$s.":["%1$sSEO-rubrikens längd%3$s: SEO-rubriken är för kort. %2$sAnvänd utrymmet till att lägga till varianter av nyckelordsfrasen eller skapa effektiv uppmanande text%3$s."],"%1$sOutbound links%2$s: There are both nofollowed and normal outbound links on this page. Good job!":["%1$sUtgående länkar%2$s: Det finns både nofollowed och normala utgående länkar på denna sida. Bra jobbat!"],"%1$sOutbound links%2$s: Good job!":["%1$sUtgående länkar%2$s: Bra jobbat!"],"%1$sOutbound links%3$s: All outbound links on this page are nofollowed. %2$sAdd some normal links%3$s.":["%1$sUtgående länkar%3$s: Alla utgående länkar på denna sida är nofollowed. %2$sLägg till några vanliga länkar%3$s."],"%1$sOutbound links%3$s: No outbound links appear in this page. %2$sAdd some%3$s!":["%1$sUtgående länkar%3$s: Inga utgående länkar visas på denna sida. %2$sLägg till några%3$s!"],"%1$sMeta description length%2$s: Well done!":["%1$sMetabeskrivningslängd%2$s: Bra gjort!"],"%1$sMeta description length%3$s: The meta description is over %4$d characters. To ensure the entire description will be visible, %2$syou should reduce the length%3$s!":["%1$sMetabeskrivningslängd%3$s: Metabeskrivningen är längre än %4$d tecken. För att vara säker på att hela beskrivningen är synlig, %2$sbör du korta ned den%3$s!"],"%1$sMeta description length%3$s: The meta description is too short (under %4$d characters). Up to %5$d characters are available. %2$sUse the space%3$s!":["%1$sMetabeskrivningslängd%3$s: Metabeskrivningen är för kort (under %4$d tecken). Upp till %5$d tecken är tillgängliga. %2$sAnvänd utrymmet%3$s!"],"%1$sMeta description length%3$s: No meta description has been specified. Search engines will display copy from the page instead. %2$sMake sure to write one%3$s!":["%1$sMetabeskrivningslängd%3$s: Ingen metabeskrivning har specifierats. Sökmotorer kommer att visa text från sidan istället. %2$sSe till att skriva en%3$s!"],"%1$sKeyphrase in meta description%2$s: The meta description has been specified, but it does not contain the keyphrase. %3$sFix that%4$s!":["%1$sNyckelordsfras i metabeskrivning%2$s: Metabeskrivningen har specificerats, men den innehåller inte nyckelordsfrasen. %3$sÅtgärda det%4$s!"],"%1$sKeyphrase in meta description%2$s: The meta description contains the keyphrase %3$s times, which is over the advised maximum of 2 times. %4$sLimit that%5$s!":["%1$sNyckelordsfras i metabeskrivningen%2$s: Nyckelordsfrasen återfinns i metabeskrivningen %3$s gånger, vilket är mer än det rekommenderade maximala värdet 2 gånger. %4$sMinska%5$s!"],"%1$sKeyphrase in meta description%2$s: Keyphrase or synonym appear in the meta description. Well done!":["%1$sNyckelordsfras i metabeskrivning%2$s: Nyckelordsfras eller synonym visas i metabeskrivningen. Bra gjort!"],"%3$sKeyphrase length%5$s: The keyphrase is %1$d words long. That's way more than the recommended maximum of %2$d words. %4$sMake it shorter%5$s!":["%3$sNyckelordsfraslängd%5$s: Nyckelordsfrasen är %1$d ord lång. Det är lågt mycket mer än det rekommenderade maximumet – %2$d ord. %4$sKorta ned%5$s!"],"%3$sKeyphrase length%5$s: The keyphrase is %1$d words long. That's more than the recommended maximum of %2$d words. %4$sMake it shorter%5$s!":["%3$sNyckelordsfraslängd%5$s: Nyckelordsfrasen är %1$d ord lång. Det är fler än det rekommenderade maximumet – %2$d ord. %4$sKorta ned%5$s!"],"%1$sKeyphrase length%2$s: Good job!":["%1$sNyckelordsfraslängd%2$s: Bra jobbat!"],"%1$sKeyphrase length%3$s: No focus keyphrase was set for this page. %2$sSet a keyphrase in order to calculate your SEO score%3$s.":[],"%1$sKeyphrase in introduction%3$s: Your keyphrase or its synonyms do not appear in the first paragraph. %2$sMake sure the topic is clear immediately%3$s.":["%1$sNyckelordsfras i introduktionen%3$s: Din nyckelordsfras eller dess synonymer förekommer inte i den första paragrafen. %2$sSe till att ämnet genast framgår%3$s."],"%1$sKeyphrase in introduction%3$s:Your keyphrase or its synonyms appear in the first paragraph of the copy, but not within one sentence. %2$sFix that%3$s!":["%1$sNyckelordsfras i introduktion%3$s:Din nyckelordsfras eller dess synonymer finns i det första stycket i texten, men inte inom samma mening. %2$sÅtgärda det%3$s!"],"%1$sKeyphrase in introduction%2$s: Well done!":["%1$sNyckelordsfras i inledning%2$s: Bra gjort!"],"%1$sInternal links%2$s: There are both nofollowed and normal internal links on this page. Good job!":["%1$sInterna länkar%2$s: Det finns både nofollowed och normal interna länkar på denna sida. Bra jobbat!"],"%1$sInternal links%2$s: You have enough internal links. Good job!":["%1$sInterna länkar%2$s: Du har tillräckligt med interna länkar. Bra jobbat!"],"%1$sInternal links%3$s: The internal links in this page are all nofollowed. %2$sAdd some good internal links%3$s.":["%1$sInterna länkar%3$s: De interna länkarna på denna sida är alla nofollow. %2$sLägg till några bra interna länkar%3$s."],"%1$sInternal links%3$s: No internal links appear in this page, %2$smake sure to add some%3$s!":["%1$sInterna länkar%3$s: Inga interna länkar visas på denna sida, %2$s var noga med att lägga till några%3$s!"],"%1$sTransition words%2$s: Well done!":["%1$sÖvergångsord%2$s: Bra gjort!"],"%1$sTransition words%2$s: Only %3$s of the sentences contain transition words, which is not enough. %4$sUse more of them%2$s.":["%1$sÖvergångsord%2$s: Endast %3$s av meningarna innehåller övergångsord, vilket inte är tillräckligt. %4$sAnvänd fler%2$s."],"%1$sTransition words%2$s: None of the sentences contain transition words. %3$sUse some%2$s.":["%1$sÖvergångsord%2$s: Ingen av meningarna innehåller övergångsord. %3$sAnvänd några%2$s."],"%1$sNot enough content%2$s: %3$sPlease add some content to enable a good analysis%2$s.":["%1$sInte tillräckligt med innehåll%2$s: %3$sLägg till lite innehåll för att möjliggöra en bra analys%2$s."],"%1$sSubheading distribution%2$s: You are not using any subheadings, but your text is short enough and probably doesn't need them.":["%1$sFördelning av underrubriker%2$s: Du använder inga underrubriker, men din text är så kort att du förmodligen inte behöver dem."],"%1$sSubheading distribution%2$s: You are not using any subheadings, although your text is rather long. %3$sTry and add some subheadings%2$s.":["%1$sFördelning av underrubriker%2$s: Du använder inga underrubriker trots att din text är ganska lång. %3$sFörsök lägga till några underrubriker%2$s."],"%1$sSubheading distribution%2$s: %3$d section of your text is longer than %4$d words and is not separated by any subheadings. %5$sAdd subheadings to improve readability%2$s.":[],"%1$sSubheading distribution%2$s: Great job!":["%1$sFördelning av underrubriker%2$s: Bra jobbat!"],"%1$sSentence length%2$s: %3$s of the sentences contain more than %4$s words, which is more than the recommended maximum of %5$s. %6$sTry to shorten the sentences%2$s.":["%1$sMeningslängd%2$s: %3$s meningarna innehåller mer än %4$s ord, vilket är mer än det rekommenderade maximalt %5$s. %6$sFörsök att förkorta meningarna%2$s."],"%1$sSentence length%2$s: Great!":["%1$sMeningslängd%2$s: Bra!"],"%1$sConsecutive sentences%2$s: There is enough variety in your sentences. That's great!":["%1$sEfterföljande meningar%2$s: Det finns tillräckligt med variation i dina meningar. Bra jobbat!"],"%1$sConsecutive sentences%2$s: The text contains %3$d consecutive sentences starting with the same word. %5$sTry to mix things up%2$s!":[],"%1$sPassive voice%2$s: %3$s of the sentences contain passive voice, which is more than the recommended maximum of %4$s. %5$sTry to use their active counterparts%2$s.":[],"%1$sPassive voice%2$s: You're using enough active voice. That's great!":[],"%1$sParagraph length%2$s: %3$d of the paragraphs contains more than the recommended maximum of %4$d words. %5$sShorten your paragraphs%2$s!":[],"%1$sParagraph length%2$s: None of the paragraphs are too long. Great job!":["%1$sLängd på textstycken%2$s: Inget stycke är för långt. Bra jobbat!"],"Good job!":["Bra jobbat!"],"%1$sFlesch Reading Ease%2$s: The copy scores %3$s in the test, which is considered %4$s to read. %5$s%6$s%7$s":[],"Scroll to see the preview content.":["Rulla ner för att se en förhandsvisning av innehållet."],"An error occurred in the '%1$s' assessment":["Ett fel uppstod i utvärderingen av '%1$s'"],"%1$s of the words contain %2$sover %3$s syllables%4$s, which is more than the recommended maximum of %5$s.":["%1$s av orden %2$söver %3$s stavelser%4$s, vilket är mer än det rekommenderade maximala %5$s."],"%1$s of the words contain %2$sover %3$s syllables%4$s, which is less than or equal to the recommended maximum of %5$s.":["%1$s av orden innehåller %2$söver %3$s stavelser%4$s, vilket är mindre än eller lika med det rekommenderade maximala %5$s."],"This is slightly below the recommended minimum of %5$d word. %3$sAdd a bit more copy%4$s.":["Detta är något under det rekommenderade minsta antalet på %5$d ord. %3$sLägg till lite mer text%4$s.","Detta är något under det rekommenderade minsta antalet på %5$d ord. %3$sLägg till lite mer text%4$s."],"The meta description contains %1$d sentence %2$sover %3$s words%4$s. Try to shorten this sentence.":["Metabeskrivningen innehåller %1$d mening %2$söver %3$s ord%4$s. Försök att förkorta denna mening.","Metabeskrivningen innehåller %1$d meningar %2$söver %3$s ord%4$s. Försök att förkorta dessa meningar."],"The meta description contains no sentences %1$sover %2$s words%3$s.":["Metabeskrivningen innehåller inga meningar %1$söver %2$s ord %3$s."],"Mobile preview":["Förhandsgranskning för mobil"],"Desktop preview":["Förhandsgranskning för stationär dator"],"Please provide an SEO title by editing the snippet below.":["Ange en SEO-rubrik genom att redigera förhandsvisningstexten nedan."],"Meta description preview:":["Metabeskrivning förhandsvisning:"],"Slug preview:":["Förhandsgranskning av slug:"],"SEO title preview:":["Förhandsvisning av SEO-rubrik:"],"Close snippet editor":["Stäng redigeraren för förhandsvisningstexten"],"Slug":["Slug"],"Remove marks in the text":["Ta bort markeringar i texten"],"Mark this result in the text":["Markera detta resultat i texten"],"Marks are disabled in current view":["Markeringen är inaktiverade i aktuell vy"],"Good SEO score":["Bra SEO-poäng"],"OK SEO score":["OK SEO-poäng"],"Feedback":["Återkoppling"],"ok":["ok"],"Please provide a meta description by editing the snippet below.":["Vänligen ange en metabeskrivning genom att redigera förhandsvisningstexten nedan."],"Edit snippet":["Redigera förhandsvisningstext"],"You can click on each element in the preview to jump to the Snippet Editor.":["Du kan klicka på varje element i förhandsgranskningen för att gå till redigeraren för förhandsvisningstexten."],"SEO title":["SEO-rubrik"],"Needs improvement":["Behöver förbättras"],"Good":["Bra"],"very difficult":["väldigt svår"],"Try to make shorter sentences, using less difficult words to improve readability":["Försök att göra kortare meningar, med mindre svåra ord för att förbättra läsbarheten"],"difficult":["svårt"],"Try to make shorter sentences to improve readability":["Försök att göra kortare meningar för att förbättra läsbarheten"],"fairly difficult":["ganska svårt"],"OK":["OK"],"fairly easy":["ganska lätt"],"easy":["lätt"],"very easy":["mycket lätt"],"Meta description":["Metabeskrivning"],"Snippet preview":["Förhandsvisningstext"]}}}
\ No newline at end of file
{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);","lang":"hr"},"Truly optimize your site for a local audience with our %s plugin! Optimized address details, opening hours, store locator and pickup option!":["Uistinu optimizirajte svoju web-lokaciju za lokalnu publiku pomoću našeg %s dodatka! Optimizirani detalji adrese, radno vrijeme, lokator spremišta i mogućnost preuzimanja!"],"Serving local customers?":["Posluživanje lokalnih kupaca?"],"Get the %s plugin now":["Odmah nabavite dodatak %s"],"You can edit the details shown in meta data, like the social profiles, the name and the description of this user on their %1$s profile page.":["Možete urediti detalje prikazane u meta podacima, kao što su društveni profili, ime i opis tog korisnika na %1$s stranici profila."],"Select a user...":[],"Name:":[],"You have selected the user %1$s as the person this site represents. Their user profile information will now be used in search results. %2$sUpdate their profile to make sure the information is correct.%3$s":[],"Error: Please select a user below to make your site's meta data complete.":[],"New step added":[],"New question added":[],"To be able to create a redirect and fix this issue, you need %1$s. ":["Da biste stvorili preusmjeravanje i popravili ovaj problem, trebate %1$s. "],"You can buy the plugin, including one year of support and updates, on %1$s.":["Možete kupiti dodatak, uključujući jednu godinu podrške i ažuriranja, na %1$s."],"Free":["Besplatno"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":[],"Help on choosing the perfect focus keyphrase":[],"Would you like to add a related keyphrase?":[],"Go %s!":[],"Rank better with synonyms & related keyphrases":[],"Add related keyphrase":[],"Get %s":[],"Focus keyphrase":[],"Learn more about the readability analysis":["Saznajte više o Analizi čitljivosti."],"Describe the duration of the instruction:":["Opišite trajanje instrukcije:"],"Optional. Customize how you want to describe the duration of the instruction":["Opcionalno. Prilagodite kako želite opisati trajanje instrukcije."],"%s, %s and %s":["%s, %s i %s"],"%s and %s":["%s i %s"],"%d minute":["%d minuta","%d minute","%d minuta"],"%d hour":["%d sat","%d sata","%d sati"],"%d day":["%d dan","%d dana","%d dana"],"Enter a step title":["Upišite naslov koraka"],"Optional. This can give you better control over the styling of the steps.":["Opcionalno. Ovo vam može dati bolju kontrolu nad stilom koraka."],"CSS class(es) to apply to the steps":["CSS klase koje će se primijeniti na korake"],"minutes":["minute"],"hours":["sati"],"days":["dani"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":["Kreirajte Kako vodič na SEO prihvatljiv način. Možete kreirati samo jedan Kako blok po objavi."],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":["Izlistajte Često postavljana pitanja na SEO prihvatljiv način. Možete kreirati samo jedan ČPP blok po objavi."],"Copy error":["Kopiraj grešku"],"An error occurred loading the %s primary taxonomy picker.":["Dogodila se greška pri učitavanju %s primarnog selektora taksonomije."],"Time needed:":["Potrebno vremena"],"Move question down":["Povuci dole pitanje"],"Move question up":["Povuci pitanje gore "],"Insert question":["Postavite pitanje"],"Delete question":["Obrišite pitanje"],"Enter the answer to the question":["Umetnite odgovor na pitanje"],"Enter a question":["Postavite pitanje"],"Add question":["Dodaj pitanje"],"Frequently Asked Questions":["Često postavljana pitanja"],"Great news: you can, with %s!":["Odlične vijesti: možete, s %s!"],"Select the primary %s":["Odaberite primarni %s"],"Mark as cornerstone content":["Označi kao temeljni sadržaj"],"Move step down":["Pomakni dolje za jedan nivo"],"Move step up":["Pomakni gore za jedan nivo"],"Insert step":["Ubaci korak"],"Delete step":["Obriši korak"],"Add image":["Dodaj sliku"],"Enter a step description":["Unesite opis koraka"],"Enter a description":["Unesite opis"],"Unordered list":["Nebrojčani popis"],"Showing step items as an ordered list.":["Prikazuju se stavke koraka kao brojčana lista."],"Showing step items as an unordered list":["Prikazuju se stavke koraka kao nebrojčana lista."],"Add step":["Dodaj korak"],"Delete total time":["Obriši cijelokupno vrijeme"],"Add total time":["Dodaj cijelokupno vrijeme"],"How to":["Kako"],"How-to":["Kako"],"Snippet Preview":["Pretpregled isječka"],"Analysis results":["Rezultat analize"],"Enter a focus keyphrase to calculate the SEO score":["Unesite ključnu riječ da izračunate SEO rezultat"],"Learn more about Cornerstone Content.":["Saznajte više o Temeljnom sadržaju."],"Cornerstone content should be the most important and extensive articles on your site.":["Temeljni sadržaj trebaju biti najvažniji i opširniji članci na vašoj web-stranici."],"Add synonyms":["Dodajte sinonime"],"Would you like to add keyphrase synonyms?":["Želite li dodati sinonime ključne riječi?"],"Current year":["Trenutna godina"],"Page":["Stranica"],"Tagline":["Slogan"],"Modify your meta description by editing it right here":["Izmijenite meta opis tako da ga uredite upravo ovdje"],"ID":["ID"],"Separator":["Separator"],"Search phrase":["Fraza pretrage"],"Term description":["Opis pojma"],"Tag description":["Opis oznake"],"Category description":["Opis kategorije"],"Primary category":["Osnovna kategorija"],"Category":["Kategorija"],"Excerpt only":["Samo sažetak"],"Excerpt":["Sažetak"],"Site title":["Naslov stranice"],"Parent title":["Naslov matičnog"],"Date":["Datum"],"24/7 email support":["Email podrška 24 sata, 7 dana u tjednu"],"SEO analysis":["SEO analiza"],"Get support":["Zatraži podršku"],"Other benefits of %s for you:":["Drugi beneficije %s za vas:"],"Cornerstone content":["Temeljni sadržaj"],"Superfast internal linking suggestions":["Super brzo predlaganje unutarnjih poveznica"],"Great news: you can, with %1$s!":["Odlične vijesti: možete s %1$s!"],"1 year free support and updates included!":["Uključena 1 godina besplatnih ažuriranja i nadogradnji!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sPretpregled društvenih mreža%2$s: Facebook i Twitter"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sNema više mrtvih poveznica%2$s: jednostavni upravitelj preusmjeravanjima"],"No ads!":["Bez oglasa!"],"Please provide a meta description by editing the snippet below.":["Molimo, navedite meta opis uređujući isječak u nastavku."],"The name of the person":["Ime osobe"],"Readability analysis":["Analiza čitljivosti"],"Video tutorial":["Video upute"],"Knowledge base":["Baza znanja"],"Open":["Otvori"],"Title":["Naslov"],"Creating redirects is a %s feature":["Stvaranje preusmjeravanja je dostupno kao dio %s "],"Close":["Zatvori"],"Snippet preview":["Pretpregled isječka"],"FAQ":["Česta pitanja"],"Settings":["Postavke"]}}}
\ No newline at end of file
{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);","lang":"hr"},"Truly optimize your site for a local audience with our %s plugin! Optimized address details, opening hours, store locator and pickup option!":["Uistinu optimizirajte svoju web-lokaciju za lokalnu publiku pomoću našeg %s dodatka! Optimizirani detalji adrese, radno vrijeme, lokator spremišta i mogućnost preuzimanja!"],"Serving local customers?":["Posluživanje lokalnih kupaca?"],"Get the %s plugin now":["Odmah nabavite dodatak %s"],"You can edit the details shown in meta data, like the social profiles, the name and the description of this user on their %1$s profile page.":["Možete urediti detalje prikazane u meta podacima, kao što su društveni profili, ime i opis tog korisnika na %1$s stranici profila."],"Select a user...":[],"Name:":[],"You have selected the user %1$s as the person this site represents. Their user profile information will now be used in search results. %2$sUpdate their profile to make sure the information is correct.%3$s":[],"Error: Please select a user below to make your site's meta data complete.":[],"New step added":[],"New question added":[],"To be able to create a redirect and fix this issue, you need %1$s. ":["Da biste stvorili preusmjeravanje i popravili ovaj problem, trebate %1$s. "],"You can buy the plugin, including one year of support and updates, on %1$s.":["Možete kupiti dodatak, uključujući jednu godinu podrške i ažuriranja, na %1$s."],"Free":["Besplatno"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":[],"Help on choosing the perfect focus keyphrase":[],"Would you like to add a related keyphrase?":[],"Go %s!":[],"Rank better with synonyms & related keyphrases":[],"Add related keyphrase":[],"Get %s":[],"Focus keyphrase":["Ključna riječ"],"Learn more about the readability analysis":["Saznajte više o Analizi čitljivosti."],"Describe the duration of the instruction:":["Opišite trajanje instrukcije:"],"Optional. Customize how you want to describe the duration of the instruction":["Opcionalno. Prilagodite kako želite opisati trajanje instrukcije."],"%s, %s and %s":["%s, %s i %s"],"%s and %s":["%s i %s"],"%d minute":["%d minuta","%d minute","%d minuta"],"%d hour":["%d sat","%d sata","%d sati"],"%d day":["%d dan","%d dana","%d dana"],"Enter a step title":["Upišite naslov koraka"],"Optional. This can give you better control over the styling of the steps.":["Opcionalno. Ovo vam može dati bolju kontrolu nad stilom koraka."],"CSS class(es) to apply to the steps":["CSS klase koje će se primijeniti na korake"],"minutes":["minute"],"hours":["sati"],"days":["dani"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":["Kreirajte Kako vodič na SEO prihvatljiv način. Možete kreirati samo jedan Kako blok po objavi."],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":["Izlistajte Često postavljana pitanja na SEO prihvatljiv način. Možete kreirati samo jedan ČPP blok po objavi."],"Copy error":["Kopiraj grešku"],"An error occurred loading the %s primary taxonomy picker.":["Dogodila se greška pri učitavanju %s primarnog selektora taksonomije."],"Time needed:":["Potrebno vremena"],"Move question down":["Povuci dole pitanje"],"Move question up":["Povuci pitanje gore "],"Insert question":["Postavite pitanje"],"Delete question":["Obrišite pitanje"],"Enter the answer to the question":["Umetnite odgovor na pitanje"],"Enter a question":["Postavite pitanje"],"Add question":["Dodaj pitanje"],"Frequently Asked Questions":["Često postavljana pitanja"],"Great news: you can, with %s!":["Odlične vijesti: možete, s %s!"],"Select the primary %s":["Odaberite primarni %s"],"Mark as cornerstone content":["Označi kao temeljni sadržaj"],"Move step down":["Pomakni dolje za jedan nivo"],"Move step up":["Pomakni gore za jedan nivo"],"Insert step":["Ubaci korak"],"Delete step":["Obriši korak"],"Add image":["Dodaj sliku"],"Enter a step description":["Unesite opis koraka"],"Enter a description":["Unesite opis"],"Unordered list":["Nebrojčani popis"],"Showing step items as an ordered list.":["Prikazuju se stavke koraka kao brojčana lista."],"Showing step items as an unordered list":["Prikazuju se stavke koraka kao nebrojčana lista."],"Add step":["Dodaj korak"],"Delete total time":["Obriši cijelokupno vrijeme"],"Add total time":["Dodaj cijelokupno vrijeme"],"How to":["Kako"],"How-to":["Kako"],"Snippet Preview":["Pretpregled isječka"],"Analysis results":["Rezultat analize"],"Enter a focus keyphrase to calculate the SEO score":["Unesite ključnu riječ da izračunate SEO rezultat"],"Learn more about Cornerstone Content.":["Saznajte više o Temeljnom sadržaju."],"Cornerstone content should be the most important and extensive articles on your site.":["Temeljni sadržaj trebaju biti najvažniji i opširniji članci na vašoj web-stranici."],"Add synonyms":["Dodajte sinonime"],"Would you like to add keyphrase synonyms?":["Želite li dodati sinonime ključne riječi?"],"Current year":["Trenutna godina"],"Page":["Stranica"],"Tagline":["Slogan"],"Modify your meta description by editing it right here":["Izmijenite meta opis tako da ga uredite upravo ovdje"],"ID":["ID"],"Separator":["Separator"],"Search phrase":["Fraza pretrage"],"Term description":["Opis pojma"],"Tag description":["Opis oznake"],"Category description":["Opis kategorije"],"Primary category":["Osnovna kategorija"],"Category":["Kategorija"],"Excerpt only":["Samo sažetak"],"Excerpt":["Sažetak"],"Site title":["Naslov stranice"],"Parent title":["Naslov matičnog"],"Date":["Datum"],"24/7 email support":["Email podrška 24 sata, 7 dana u tjednu"],"SEO analysis":["SEO analiza"],"Get support":["Zatraži podršku"],"Other benefits of %s for you:":["Drugi beneficije %s za vas:"],"Cornerstone content":["Temeljni sadržaj"],"Superfast internal linking suggestions":["Super brzo predlaganje unutarnjih poveznica"],"Great news: you can, with %1$s!":["Odlične vijesti: možete s %1$s!"],"1 year free support and updates included!":["Uključena 1 godina besplatnih ažuriranja i nadogradnji!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sPretpregled društvenih mreža%2$s: Facebook i Twitter"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sNema više mrtvih poveznica%2$s: jednostavni upravitelj preusmjeravanjima"],"No ads!":["Bez oglasa!"],"Please provide a meta description by editing the snippet below.":["Molimo, navedite meta opis uređujući isječak u nastavku."],"The name of the person":["Ime osobe"],"Readability analysis":["Analiza čitljivosti"],"Video tutorial":["Video upute"],"Knowledge base":["Baza znanja"],"Open":["Otvori"],"Title":["Naslov"],"Creating redirects is a %s feature":["Stvaranje preusmjeravanja je dostupno kao dio %s "],"Close":["Zatvori"],"Snippet preview":["Pretpregled isječka"],"FAQ":["Česta pitanja"],"Settings":["Postavke"]}}}
\ No newline at end of file
{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"nl"},"Truly optimize your site for a local audience with our %s plugin! Optimized address details, opening hours, store locator and pickup option!":["Optimaliseer je site echt voor lokaal publiek met onze %s plugin! Geoptimaliseerde adres gegevens, openingstijden, winkel locatie kiezer en ophaal optie!"],"Serving local customers?":["Bedien je lokale klanten?"],"Get the %s plugin now":["Download nu de %s plugin"],"You can edit the details shown in meta data, like the social profiles, the name and the description of this user on their %1$s profile page.":["Je kunt de details die worden getoond in de metadata bewerken, zoals de sociale profielen, de naam en beschrijving van de gebruiker op hun %1$s profielpagina."],"Select a user...":["Selecteer een gebruiker..."],"Name:":["Naam:"],"You have selected the user %1$s as the person this site represents. Their user profile information will now be used in search results. %2$sUpdate their profile to make sure the information is correct.%3$s":["Je hebt gebruiker %1$s ingesteld als de persoon waarvoor deze site is gemaakt. De profielgegevens van zijn of haar account worden nu gebruikt in de zoekresultaten. %2$sWerk het profiel bij om zeker te weten dat alle informatie klopt.%3$s"],"Error: Please select a user below to make your site's meta data complete.":["Fout: selecteer hieronder een gebruiker om de metadata voor je site compleet te maken."],"New step added":["Nieuwe stap toegevoegd"],"New question added":["Nieuwe vraag toegevoegd"],"To be able to create a redirect and fix this issue, you need %1$s. ":["Om een redirect aan te kunnen maken en deze issue op te lossen heb je %1$s nodig."],"You can buy the plugin, including one year of support and updates, on %1$s.":["Je kunt de plugin aanschaffen, inclusief een jaar lang support en updates, op %1$s."],"Free":["Gratis"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":["Wist je dat %s ook verschillende woordvormen in je keyphrase analyseert, zoals meervoud of verleden tijd?"],"Help on choosing the perfect focus keyphrase":["Hulp bij het kiezen van de perfecte focus keyphrase"],"Would you like to add a related keyphrase?":["Wil je een verwant keyphrase toevoegen?"],"Go %s!":["Ga %s!"],"Rank better with synonyms & related keyphrases":["Scoor beter met synoniemen en verwante keyphrases"],"Add related keyphrase":["Voeg een gerelateerde keyphrase toe"],"Get %s":["Koop %s"],"Focus keyphrase":["Focus keyphrase"],"Learn more about the readability analysis":["Leer meer over Leesbaarheidsanalyse"],"Describe the duration of the instruction:":["Beschrijf de duur van de instructie:"],"Optional. Customize how you want to describe the duration of the instruction":["Optioneel: Pas de omschrijving van de duur van de instructie aan."],"%s, %s and %s":["%s, %s en %s"],"%s and %s":["%s en %s"],"%d minute":["%d minuut","%d minuten"],"%d hour":["%d uur","%d uren"],"%d day":["%d dag","%d dagen"],"Enter a step title":["Voer een stap titel in"],"Optional. This can give you better control over the styling of the steps.":["Optioneel. Hiermee heb je meer controle over de styling van de stappen."],"CSS class(es) to apply to the steps":["CSS class(es) die gebruikt worden voor de stappen"],"minutes":["minuten"],"hours":["uren"],"days":["dagen"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":["Maak een How-to guide op een SEO-vriendelijke manier. Je kunt slechts één How-to block per bericht gebruiken."],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":["Toon je veelgestelde vragen (FAQ's) op een SEO-vriendelijke manier. Je kunt slechts één FAQ block per bericht gebruiken."],"Copy error":["Copy fout"],"An error occurred loading the %s primary taxonomy picker.":["Er deed zich een fout voor met het laden van de %s primaire taxonomy picker."],"Time needed:":["Benodigde tijd:"],"Move question down":["Verplaats vraag naar beneden"],"Move question up":["Verplaats vraag naar boven"],"Insert question":["Vraag invoeren"],"Delete question":["Verwijder vraag"],"Enter the answer to the question":["Voer het antwoord op de vraag in"],"Enter a question":["Voer een vraag in"],"Add question":["Vraag toevoegen"],"Frequently Asked Questions":["Frequently Asked Questions"],"Great news: you can, with %s!":["Goed nieuws: dat kan, met %s!"],"Select the primary %s":["Selecteer de primaire %s"],"Mark as cornerstone content":["Markeer als cornerstone content"],"Move step down":["Stap naar beneden verplaatsen"],"Move step up":["Stap naar boven verplaatsen"],"Insert step":["Stap toevoegen"],"Delete step":["Stap verwijderen"],"Add image":["Afbeelding toevoegen"],"Enter a step description":["Beschrijving van een stap invullen"],"Enter a description":["Een beschrijving invullen"],"Unordered list":["Ongesorteerde lijst"],"Showing step items as an ordered list.":["Toon de stap onderdelen als geordende lijst."],"Showing step items as an unordered list":["Toon de stap onderdelen als ongeordende lijst"],"Add step":["Stap toevoegen"],"Delete total time":["Totale tijd verwijderen"],"Add total time":["Totale tijd toevoegen"],"How to":["Instructie"],"How-to":["Instructie"],"Snippet Preview":["Snippetvoorvertoning"],"Analysis results":["Analyse-resultaten"],"Enter a focus keyphrase to calculate the SEO score":["Voer een focus keyphrase in om de SEO score te berekenen"],"Learn more about Cornerstone Content.":["Leer meer over cornerstone content."],"Cornerstone content should be the most important and extensive articles on your site.":["Cornerstone content zou de belangrijkste en omvangrijkste artikelen op je site moeten zijn."],"Add synonyms":["Synoniemen toevoegen"],"Would you like to add keyphrase synonyms?":["Wil je keyphrase synoniemen toevoegen?"],"Current year":["Huidig jaar"],"Page":["Pagina"],"Tagline":["Slogan"],"Modify your meta description by editing it right here":["Bewerk je meta beschrijving door hem hier te bewerken"],"ID":["ID"],"Separator":["Scheidingsteken"],"Search phrase":["Zoekzin"],"Term description":["Termbeschrijving"],"Tag description":["Tagbeschrijving"],"Category description":["Categoriebeschrijving"],"Primary category":["Primaire categorie"],"Category":["Categorie"],"Excerpt only":["Alleen de samenvatting"],"Excerpt":["Samenvatting"],"Site title":["Site-titel"],"Parent title":["Bovenliggende titel"],"Date":["Datum"],"24/7 email support":["24/7 e-mail ondersteuning"],"SEO analysis":["SEO-analyse"],"Get support":["Krijg ondersteuning"],"Other benefits of %s for you:":["Andere voordelen van %s voor jou:"],"Cornerstone content":["Cornerstone content"],"Superfast internal linking suggestions":["Supersnelle interne linksuggesties"],"Great news: you can, with %1$s!":["Fantastisch nieuws: jij kan het met %1$s!"],"1 year free support and updates included!":["1 jaar gratis ondersteuning en updates inbegrepen!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sSocial media preview%2$s: Facebook & Twitter"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sGeen dode links meer%2$s: eenvoudige redirect manager"],"No ads!":["Geen advertenties!"],"Please provide a meta description by editing the snippet below.":["Voeg een meta-omschrijving toe door de onderstaande snippet te bewerken."],"The name of the person":["De naam van de persoon"],"Readability analysis":["Leesbaarheidsanalyse"],"Video tutorial":["Video-instructie"],"Knowledge base":["Kennisbank"],"Open":["Open"],"Title":["Titel"],"Creating redirects is a %s feature":["Het aanmaken van doorstuuradressen is een %s-functie"],"Close":["Sluiten"],"Snippet preview":["Snippetvoorvertoning"],"FAQ":["FAQ"],"Settings":["Instellingen"]}}}
\ No newline at end of file
{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"nl"},"Truly optimize your site for a local audience with our %s plugin! Optimized address details, opening hours, store locator and pickup option!":["Optimaliseer je site echt voor lokaal publiek met onze %s plugin! Geoptimaliseerde adres gegevens, openingstijden, winkel locatie kiezer en ophaal optie!"],"Serving local customers?":["Bedien je lokale klanten?"],"Get the %s plugin now":["Download nu de %s plugin"],"You can edit the details shown in meta data, like the social profiles, the name and the description of this user on their %1$s profile page.":["Je kunt de details die worden getoond in de metadata bewerken, zoals de sociale profielen, de naam en beschrijving van de gebruiker op hun %1$s profielpagina."],"Select a user...":["Selecteer een gebruiker..."],"Name:":["Naam:"],"You have selected the user %1$s as the person this site represents. Their user profile information will now be used in search results. %2$sUpdate their profile to make sure the information is correct.%3$s":["Je hebt gebruiker %1$s ingesteld als de persoon waarvoor deze site is gemaakt. De profielgegevens van zijn of haar account worden nu gebruikt in de zoekresultaten. %2$sWerk het profiel bij om zeker te weten dat alle informatie klopt.%3$s"],"Error: Please select a user below to make your site's meta data complete.":["Fout: selecteer hieronder een gebruiker om de metadata voor je site compleet te maken."],"New step added":["Nieuwe stap toegevoegd"],"New question added":["Nieuwe vraag toegevoegd"],"To be able to create a redirect and fix this issue, you need %1$s. ":["Om een redirect aan te kunnen maken en deze issue op te lossen heb je %1$s nodig."],"You can buy the plugin, including one year of support and updates, on %1$s.":["Je kunt de plugin aanschaffen, inclusief een jaar lang support en updates, op %1$s."],"Free":["Gratis"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":["Wist je dat %s ook verschillende woordvormen in je keyphrase analyseert, zoals meervoud of verleden tijd?"],"Help on choosing the perfect focus keyphrase":["Hulp bij het kiezen van de perfecte focus keyphrase"],"Would you like to add a related keyphrase?":["Wil je een verwant keyphrase toevoegen?"],"Go %s!":["Ga %s!"],"Rank better with synonyms & related keyphrases":["Scoor beter met synoniemen en verwante keyphrases"],"Add related keyphrase":["Voeg een gerelateerde keyphrase toe"],"Get %s":["Koop %s"],"Focus keyphrase":["Focus keyphrase"],"Learn more about the readability analysis":["Leer meer over Leesbaarheidsanalyse"],"Describe the duration of the instruction:":["Beschrijf de duur van de instructie:"],"Optional. Customize how you want to describe the duration of the instruction":["Optioneel: Pas de omschrijving van de duur van de instructie aan."],"%s, %s and %s":["%s, %s en %s"],"%s and %s":["%s en %s"],"%d minute":["%d minuut","%d minuten"],"%d hour":["%d uur","%d uren"],"%d day":["%d dag","%d dagen"],"Enter a step title":["Voer een stap titel in"],"Optional. This can give you better control over the styling of the steps.":["Optioneel. Hiermee heb je meer controle over de styling van de stappen."],"CSS class(es) to apply to the steps":["CSS class(es) die gebruikt worden voor de stappen"],"minutes":["minuten"],"hours":["uren"],"days":["dagen"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":["Maak een How-to guide op een SEO-vriendelijke manier. Je kunt slechts één How-to block per bericht gebruiken."],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":["Toon je veelgestelde vragen (FAQ's) op een SEO-vriendelijke manier. Je kunt slechts één FAQ block per bericht gebruiken."],"Copy error":["Copy fout"],"An error occurred loading the %s primary taxonomy picker.":["Er deed zich een fout voor met het laden van de %s primaire taxonomy picker."],"Time needed:":["Benodigde tijd:"],"Move question down":["Verplaats vraag naar beneden"],"Move question up":["Verplaats vraag naar boven"],"Insert question":["Vraag invoeren"],"Delete question":["Verwijder vraag"],"Enter the answer to the question":["Voer het antwoord op de vraag in"],"Enter a question":["Voer een vraag in"],"Add question":["Vraag toevoegen"],"Frequently Asked Questions":["Frequently Asked Questions"],"Great news: you can, with %s!":["Goed nieuws: dat kan, met %s!"],"Select the primary %s":["Selecteer de primaire %s"],"Mark as cornerstone content":["Markeer als cornerstone content"],"Move step down":["Stap naar beneden verplaatsen"],"Move step up":["Stap naar boven verplaatsen"],"Insert step":["Stap toevoegen"],"Delete step":["Stap verwijderen"],"Add image":["Afbeelding toevoegen"],"Enter a step description":["Beschrijving van een stap invullen"],"Enter a description":["Een beschrijving invullen"],"Unordered list":["Ongesorteerde lijst"],"Showing step items as an ordered list.":["Toon de stap onderdelen als geordende lijst."],"Showing step items as an unordered list":["Toon de stap onderdelen als ongeordende lijst"],"Add step":["Stap toevoegen"],"Delete total time":["Totale tijd verwijderen"],"Add total time":["Totale tijd toevoegen"],"How to":["Instructie"],"How-to":["Instructie"],"Snippet Preview":["Snippetvoorvertoning"],"Analysis results":["Analyse-resultaten"],"Enter a focus keyphrase to calculate the SEO score":["Voer een focus keyphrase in om de SEO-score te berekenen"],"Learn more about Cornerstone Content.":["Leer meer over cornerstone content."],"Cornerstone content should be the most important and extensive articles on your site.":["Cornerstone content zou de belangrijkste en omvangrijkste artikelen op je site moeten zijn."],"Add synonyms":["Synoniemen toevoegen"],"Would you like to add keyphrase synonyms?":["Wil je keyphrase synoniemen toevoegen?"],"Current year":["Huidig jaar"],"Page":["Pagina"],"Tagline":["Slogan"],"Modify your meta description by editing it right here":["Bewerk je meta description door hem hier te bewerken"],"ID":["ID"],"Separator":["Scheidingsteken"],"Search phrase":["Zoekzin"],"Term description":["Termbeschrijving"],"Tag description":["Tagbeschrijving"],"Category description":["Categoriebeschrijving"],"Primary category":["Primaire categorie"],"Category":["Categorie"],"Excerpt only":["Alleen de samenvatting"],"Excerpt":["Samenvatting"],"Site title":["Site-titel"],"Parent title":["Bovenliggende titel"],"Date":["Datum"],"24/7 email support":["24/7 e-mail ondersteuning"],"SEO analysis":["SEO-analyse"],"Get support":["Krijg ondersteuning"],"Other benefits of %s for you:":["Andere voordelen van %s voor jou:"],"Cornerstone content":["Cornerstone content"],"Superfast internal linking suggestions":["Supersnelle interne linksuggesties"],"Great news: you can, with %1$s!":["Fantastisch nieuws: jij kan het met %1$s!"],"1 year free support and updates included!":["1 jaar gratis ondersteuning en updates inbegrepen!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sSocial media preview%2$s: Facebook & Twitter"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sGeen dode links meer%2$s: eenvoudige redirect manager"],"No ads!":["Geen advertenties!"],"Please provide a meta description by editing the snippet below.":["Voeg een meta-omschrijving toe door de onderstaande snippet te bewerken."],"The name of the person":["De naam van de persoon"],"Readability analysis":["Leesbaarheidsanalyse"],"Video tutorial":["Video-instructie"],"Knowledge base":["Kennisbank"],"Open":["Open"],"Title":["Titel"],"Creating redirects is a %s feature":["Het aanmaken van doorstuuradressen is een %s-functie"],"Close":["Sluiten"],"Snippet preview":["Snippetvoorvertoning"],"FAQ":["FAQ"],"Settings":["Instellingen"]}}}
\ No newline at end of file
{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"pt"},"Truly optimize your site for a local audience with our %s plugin! Optimized address details, opening hours, store locator and pickup option!":[],"Serving local customers?":[],"Get the %s plugin now":[],"You can edit the details shown in meta data, like the social profiles, the name and the description of this user on their %1$s profile page.":[],"Select a user...":[],"Name:":["Nome:"],"You have selected the user %1$s as the person this site represents. Their user profile information will now be used in search results. %2$sUpdate their profile to make sure the information is correct.%3$s":[],"Error: Please select a user below to make your site's meta data complete.":[],"New step added":[],"New question added":[],"To be able to create a redirect and fix this issue, you need %1$s. ":[],"You can buy the plugin, including one year of support and updates, on %1$s.":[],"Free":["Gratuito"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":[],"Help on choosing the perfect focus keyphrase":["Ajuda sobre como escolher uma frase-chave principal perfeita"],"Would you like to add a related keyphrase?":[],"Go %s!":[],"Rank better with synonyms & related keyphrases":[],"Add related keyphrase":[],"Get %s":["Obter o %s"],"Focus keyphrase":["Frase-chave principal"],"Learn more about the readability analysis":["Saiba mais sobre a análise de legibilidade"],"Describe the duration of the instruction:":["Descreva a duração das instruções:"],"Optional. Customize how you want to describe the duration of the instruction":["Opcional. Personalize a forma como quer descrever a duração das instruções."],"%s, %s and %s":["%s, %s e %s"],"%s and %s":["%s e %s"],"%d minute":["%d minuto","%d minutos"],"%d hour":["%d hora","%d horas"],"%d day":["%d dia","%d dias"],"Enter a step title":["Insira o título do passo"],"Optional. This can give you better control over the styling of the steps.":["Opcional. Isto permite-lhe ter melhor controlo sobre os estilos dos passos."],"CSS class(es) to apply to the steps":["Classe(s) CSS a aplicar aos passos"],"minutes":["minutos"],"hours":["horas"],"days":["dias"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":["Crie um tutorial compatível com SEO. Apenas pode utilizar um bloco de tutorial por conteúdo."],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":["Crie uma lista de perguntas frequentes compatível com SEO. Apenas pode utilizar um bloco de perguntas frequentes por conteúdo."],"Copy error":["Erro ao copiar"],"An error occurred loading the %s primary taxonomy picker.":["Ocorreu um erro ao carregar o selector da taxonomia principal de %s."],"Time needed:":["Tempo necessário:"],"Move question down":["Mover pergunta para baixo"],"Move question up":["Mover pergunta para cima"],"Insert question":["Inserir pergunta"],"Delete question":["Eliminar pergunta"],"Enter the answer to the question":["Insira a resposta à pergunta"],"Enter a question":["Insira uma pergunta"],"Add question":["Adicionar pergunta"],"Frequently Asked Questions":["Perguntas frequentes"],"Great news: you can, with %s!":["Boas notícias: pode, com o %s!"],"Select the primary %s":["Seleccionar %s principal"],"Mark as cornerstone content":["Marcar como conteúdo principal"],"Move step down":["Mover passo para baixo"],"Move step up":["Mover passo para cima"],"Insert step":["Inserir passo"],"Delete step":["Eliminar passo"],"Add image":["Adicionar imagem"],"Enter a step description":["Insira a descrição do passo"],"Enter a description":["Insira uma descrição"],"Unordered list":["Lista não ordenada"],"Showing step items as an ordered list.":["Mostrar passos como uma lista ordenada."],"Showing step items as an unordered list":["Mostrar passos como uma lista não ordenada."],"Add step":["Adicionar passo"],"Delete total time":["Eliminar tempo total"],"Add total time":["Adicionar tempo total"],"How to":["Como"],"How-to":["Tutorial"],"Snippet Preview":["Pré-visualização do fragmento"],"Analysis results":["Resultados da análise"],"Enter a focus keyphrase to calculate the SEO score":["Insira uma frase-chave principal para calcular a classificação SEO"],"Learn more about Cornerstone Content.":["Saiba mais sobre conteúdo principal."],"Cornerstone content should be the most important and extensive articles on your site.":["Os conteúdos principais devem ser os artigos mais importantes e extensos do seu site."],"Add synonyms":["Adicionar sinónimos"],"Would you like to add keyphrase synonyms?":["Gostaria de adicionar sinónimos da frase-chave?"],"Current year":["Ano actual"],"Page":["Página"],"Tagline":["Descrição"],"Modify your meta description by editing it right here":["Modifique sua descrição editando-a aqui"],"ID":["ID"],"Separator":["Separador"],"Search phrase":["Frase de pesquisa"],"Term description":["Descrição do termo"],"Tag description":["Descrição da etiqueta"],"Category description":["Descrição da categoria"],"Primary category":["Categoria principal"],"Category":["Categoria"],"Excerpt only":["Apenas o excerto"],"Excerpt":["Excerto"],"Site title":["Título do site"],"Parent title":["Título do superior"],"Date":["Data"],"24/7 email support":["Suporte por email 24/7"],"SEO analysis":["Análise de SEO"],"Get support":["Obter suporte"],"Other benefits of %s for you:":["Outros benefícios do %s para si:"],"Cornerstone content":["Conteúdo principal"],"Superfast internal linking suggestions":["Sugestões rápidas para ligações internas"],"Great news: you can, with %1$s!":["Boas notícias: é possível com o %1$s!"],"1 year free support and updates included!":[],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sPré-visualizações das redes sociais%2$s: Facebook e Twitter"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sNão mais ligações quebradas%2$s: Easy Redirect Manager"],"No ads!":["Sem anúncios!"],"Please provide a meta description by editing the snippet below.":["Por favor, insira uma descrição editando o fragmento abaixo."],"The name of the person":["O nome da pessoa"],"Readability analysis":["Análise de legibilidade"],"Video tutorial":["Tutorial vídeo"],"Knowledge base":["Base de conhecimento"],"Open":["Abrir"],"Title":["Título"],"Creating redirects is a %s feature":["Criar redireccionamentos é uma funcionalidade de %s"],"Close":["Fechar"],"Snippet preview":["Pré-visualização do fragmento"],"FAQ":["Perguntas frequentes"],"Settings":["Definições"]}}}
\ No newline at end of file
{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"pt"},"Truly optimize your site for a local audience with our %s plugin! Optimized address details, opening hours, store locator and pickup option!":[],"Serving local customers?":[],"Get the %s plugin now":["Obter agora o plugin %s"],"You can edit the details shown in meta data, like the social profiles, the name and the description of this user on their %1$s profile page.":[],"Select a user...":["Seleccione um utilizador..."],"Name:":["Nome:"],"You have selected the user %1$s as the person this site represents. Their user profile information will now be used in search results. %2$sUpdate their profile to make sure the information is correct.%3$s":[],"Error: Please select a user below to make your site's meta data complete.":["Erro: Por favor seleccione um utilizador abaixo para completar os metadados do seu site."],"New step added":["Novo passo adicionado"],"New question added":["Nova pergunta adicionada"],"To be able to create a redirect and fix this issue, you need %1$s. ":[],"You can buy the plugin, including one year of support and updates, on %1$s.":[],"Free":["Gratuito"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":[],"Help on choosing the perfect focus keyphrase":["Ajuda sobre como escolher uma frase-chave principal perfeita"],"Would you like to add a related keyphrase?":[],"Go %s!":[],"Rank better with synonyms & related keyphrases":[],"Add related keyphrase":[],"Get %s":["Obter o %s"],"Focus keyphrase":["Frase-chave principal"],"Learn more about the readability analysis":["Saiba mais sobre a análise de legibilidade"],"Describe the duration of the instruction:":["Descreva a duração das instruções:"],"Optional. Customize how you want to describe the duration of the instruction":["Opcional. Personalize a forma como quer descrever a duração das instruções."],"%s, %s and %s":["%s, %s e %s"],"%s and %s":["%s e %s"],"%d minute":["%d minuto","%d minutos"],"%d hour":["%d hora","%d horas"],"%d day":["%d dia","%d dias"],"Enter a step title":["Insira o título do passo"],"Optional. This can give you better control over the styling of the steps.":["Opcional. Isto permite-lhe ter melhor controlo sobre os estilos dos passos."],"CSS class(es) to apply to the steps":["Classe(s) CSS a aplicar aos passos"],"minutes":["minutos"],"hours":["horas"],"days":["dias"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":["Crie um tutorial compatível com SEO. Apenas pode utilizar um bloco de tutorial por conteúdo."],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":["Crie uma lista de perguntas frequentes compatível com SEO. Apenas pode utilizar um bloco de perguntas frequentes por conteúdo."],"Copy error":["Erro ao copiar"],"An error occurred loading the %s primary taxonomy picker.":["Ocorreu um erro ao carregar o selector da taxonomia principal de %s."],"Time needed:":["Tempo necessário:"],"Move question down":["Mover pergunta para baixo"],"Move question up":["Mover pergunta para cima"],"Insert question":["Inserir pergunta"],"Delete question":["Eliminar pergunta"],"Enter the answer to the question":["Insira a resposta à pergunta"],"Enter a question":["Insira uma pergunta"],"Add question":["Adicionar pergunta"],"Frequently Asked Questions":["Perguntas frequentes"],"Great news: you can, with %s!":["Boas notícias: pode, com o %s!"],"Select the primary %s":["Seleccionar %s principal"],"Mark as cornerstone content":["Marcar como conteúdo principal"],"Move step down":["Mover passo para baixo"],"Move step up":["Mover passo para cima"],"Insert step":["Inserir passo"],"Delete step":["Eliminar passo"],"Add image":["Adicionar imagem"],"Enter a step description":["Insira a descrição do passo"],"Enter a description":["Insira uma descrição"],"Unordered list":["Lista não ordenada"],"Showing step items as an ordered list.":["Mostrar passos como uma lista ordenada."],"Showing step items as an unordered list":["Mostrar passos como uma lista não ordenada."],"Add step":["Adicionar passo"],"Delete total time":["Eliminar tempo total"],"Add total time":["Adicionar tempo total"],"How to":["Como"],"How-to":["Tutorial"],"Snippet Preview":["Pré-visualização do fragmento"],"Analysis results":["Resultados da análise"],"Enter a focus keyphrase to calculate the SEO score":["Insira uma frase-chave principal para calcular a classificação SEO"],"Learn more about Cornerstone Content.":["Saiba mais sobre conteúdo principal."],"Cornerstone content should be the most important and extensive articles on your site.":["Os conteúdos principais devem ser os artigos mais importantes e extensos do seu site."],"Add synonyms":["Adicionar sinónimos"],"Would you like to add keyphrase synonyms?":["Gostaria de adicionar sinónimos da frase-chave?"],"Current year":["Ano actual"],"Page":["Página"],"Tagline":["Descrição"],"Modify your meta description by editing it right here":["Modifique sua descrição editando-a aqui"],"ID":["ID"],"Separator":["Separador"],"Search phrase":["Frase de pesquisa"],"Term description":["Descrição do termo"],"Tag description":["Descrição da etiqueta"],"Category description":["Descrição da categoria"],"Primary category":["Categoria principal"],"Category":["Categoria"],"Excerpt only":["Apenas o excerto"],"Excerpt":["Excerto"],"Site title":["Título do site"],"Parent title":["Título do superior"],"Date":["Data"],"24/7 email support":["Suporte por email 24/7"],"SEO analysis":["Análise de SEO"],"Get support":["Obter suporte"],"Other benefits of %s for you:":["Outros benefícios do %s para si:"],"Cornerstone content":["Conteúdo principal"],"Superfast internal linking suggestions":["Sugestões rápidas para ligações internas"],"Great news: you can, with %1$s!":["Boas notícias: é possível com o %1$s!"],"1 year free support and updates included!":["1 ano de suporte e actualizações incluídas!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sPré-visualizações das redes sociais%2$s: Facebook e Twitter"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sNão mais ligações quebradas%2$s: Easy Redirect Manager"],"No ads!":["Sem anúncios!"],"Please provide a meta description by editing the snippet below.":["Por favor, insira uma descrição editando o fragmento abaixo."],"The name of the person":["O nome da pessoa"],"Readability analysis":["Análise de legibilidade"],"Video tutorial":["Tutorial vídeo"],"Knowledge base":["Base de conhecimento"],"Open":["Abrir"],"Title":["Título"],"Creating redirects is a %s feature":["Criar redireccionamentos é uma funcionalidade de %s"],"Close":["Fechar"],"Snippet preview":["Pré-visualização do fragmento"],"FAQ":["Perguntas frequentes"],"Settings":["Definições"]}}}
\ No newline at end of file
{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Truly optimize your site for a local audience with our %s plugin! Optimized address details, opening hours, store locator and pickup option!":[],"Serving local customers?":["Betjänar du lokala kunder?"],"Get the %s plugin now":["Skaffa tillägget %s nu"],"You can edit the details shown in meta data, like the social profiles, the name and the description of this user on their %1$s profile page.":["Du kan redigera detaljerna som visas i metadata, som social profil, namnet och beskrivningen av denna användare på dess %1$s profilsida."],"Select a user...":["Välj en användare…"],"Name:":["Namn:"],"You have selected the user %1$s as the person this site represents. Their user profile information will now be used in search results. %2$sUpdate their profile to make sure the information is correct.%3$s":["Du har valt användaren %1$s som den person denna webbplats representerar. Deras användarprofilinformation kommer nu att användas i sökresultaten. %2$sUppdatera dennes profil för att säkerställa att informationen är korrekt.%3$s"],"Error: Please select a user below to make your site's meta data complete.":["Fel: Välj en användare nedan för att göra din webbplats metadata komplett."],"New step added":["Nytt steg tillagd"],"New question added":["Ny fråga tillagd"],"To be able to create a redirect and fix this issue, you need %1$s. ":["För att kunna skapa en omdirigering och åtgärda problemet behöver du %1$s."],"You can buy the plugin, including one year of support and updates, on %1$s.":["Du kan köpa tillägget, inklusive ett års support och uppdateringar, på %1$s."],"Free":["Gratis"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":["Visste du att %s också analyserar olika versioner av ord i din nyckelordsfras, till exempel plural och olika tempus?"],"Help on choosing the perfect focus keyphrase":["Hjälp att välja den perfekta fokusnyckelordsfrasen"],"Would you like to add a related keyphrase?":["Vill du lägga till en relaterad nyckelordsfras?"],"Go %s!":["Kör %s!"],"Rank better with synonyms & related keyphrases":["Ranka högre med synonymer och relaterade nyckelordsfraser"],"Add related keyphrase":["Lägg till relaterad nyckelordsfras"],"Get %s":["Skaffa %s"],"Focus keyphrase":["Fokusnyckelordsfras"],"Learn more about the readability analysis":["Lär dig mer om läsbarhetsanalysen"],"Describe the duration of the instruction:":["Beskriv varaktigheten av instruktionen:"],"Optional. Customize how you want to describe the duration of the instruction":["Valfritt. Anpassa hur du vill beskriva varaktigheten av instruktionen"],"%s, %s and %s":["%s, %s och %s"],"%s and %s":["%s och %s"],"%d minute":["%d minut","%d minuter"],"%d hour":["%d timme","%d timmar"],"%d day":["%d dag","%d dagar"],"Enter a step title":["Ange en stegrubrik"],"Optional. This can give you better control over the styling of the steps.":["Valfritt. Detta kan ge dig bättre kontroll över utseendet på stegen."],"CSS class(es) to apply to the steps":["CSS-klass(er) som ska tillämpas på steget"],"minutes":["minuter"],"hours":["timmar"],"days":["dagar"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":["Skapa en Hur-gör-man-guide på ett SEO-vänligt sätt. Du kan endast använda ett Hur-gör-man-block per inlägg."],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":["Lista dina FAQs på ett SEO-vänligt sätt. Du kan endast använda ett FAQ-block per inlägg."],"Copy error":["Kopiera fel"],"An error occurred loading the %s primary taxonomy picker.":["Ett fel uppstod under hämtning av %s primära taxonomi-väljaren."],"Time needed:":["Tid som behövs:"],"Move question down":["Flytta fråga ner"],"Move question up":["Flytta fråga upp"],"Insert question":["Infoga fråga"],"Delete question":["Ta bort fråga"],"Enter the answer to the question":["Ange svaret på frågan"],"Enter a question":["Ange en fråga"],"Add question":["Lägg till fråga"],"Frequently Asked Questions":["Vanliga frågor"],"Great news: you can, with %s!":["Bra nyheter: du kan, med %s!"],"Select the primary %s":["Välj den primära %s"],"Mark as cornerstone content":["Markera som grundstensinnehåll"],"Move step down":["Flytta steg ner"],"Move step up":["Flytta steg upp"],"Insert step":["Infoga steg"],"Delete step":["Ta bort steg"],"Add image":["Lägg till bild"],"Enter a step description":["Ange en stegbeskrivning"],"Enter a description":["Ange en beskrivning"],"Unordered list":["Osorterad lista"],"Showing step items as an ordered list.":["Visar stegobjekt i en sorterad lista."],"Showing step items as an unordered list":["Visar stegobjekt i en osorterad lista."],"Add step":["Lägg till steg"],"Delete total time":["Ta bort total tid"],"Add total time":["Lägg till total tid"],"How to":["Hur man gör"],"How-to":["Hur-man-gör"],"Snippet Preview":["Förhandsgranska förhandsvisningstext"],"Analysis results":["Analysresultat"],"Enter a focus keyphrase to calculate the SEO score":["Ange en fokus-nyckelordsfras för att beräkna SEO-poängen"],"Learn more about Cornerstone Content.":["Lär dig mer om grundstensinnehåll."],"Cornerstone content should be the most important and extensive articles on your site.":["Grundstensinnehåll ska vara de viktigaste och mest omfattande artiklarna på din webbplats."],"Add synonyms":["Lägg till synonymer"],"Would you like to add keyphrase synonyms?":["Vill du lägga till nyckelordsfras-synonymer?"],"Current year":["Nuvarande år"],"Page":["Sida"],"Tagline":["Slogan"],"Modify your meta description by editing it right here":["Redigera din metabeskrivning genom att ändra den här"],"ID":["ID"],"Separator":["Avgränsare"],"Search phrase":["Sökfras"],"Term description":["Termbeskrivning"],"Tag description":["Etikettbeskrivning"],"Category description":["Kategoribeskrivning"],"Primary category":["Huvudkategori"],"Category":["Kategori"],"Excerpt only":["Endast utdrag"],"Excerpt":["Utdrag"],"Site title":["Sidrubrik"],"Parent title":["Överordnad rubrik"],"Date":["Datum"],"24/7 email support":["E-postsupport dygnet runt"],"SEO analysis":["SEO-analys"],"Get support":["Få support"],"Other benefits of %s for you:":["Fler fördelar för dig med %s:"],"Cornerstone content":["Grundstensinnehåll"],"Superfast internal linking suggestions":["Supersnabba interna länkningsförslag"],"Great news: you can, with %1$s!":["Goda nyheter: du kan, med %1$s!"],"1 year free support and updates included!":["1 års fri support och uppdateringar ingår!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sFörhandsgranskning för sociala medier%2$s: Facebook och Twitter"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sGör dig av med döda länkar%2$s: easy redirect manager"],"No ads!":["Ingen reklam!"],"Please provide a meta description by editing the snippet below.":["Vänligen ange en metabeskrivning genom att redigera förhandsvisningstexten nedan."],"The name of the person":["Personens namn"],"Readability analysis":["Läsbarhetsanalys"],"Video tutorial":["Videokurs"],"Knowledge base":["Kunskapsbank"],"Open":["Öppna"],"Title":["Rubrik"],"Creating redirects is a %s feature":["Att skapa omdirigeringar är en %s-funktion"],"Close":["Stäng"],"Snippet preview":["Förhandsvisningstext"],"FAQ":["Vanliga frågor"],"Settings":["Inställningar"]}}}
\ No newline at end of file
{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"Truly optimize your site for a local audience with our %s plugin! Optimized address details, opening hours, store locator and pickup option!":["Optimera din webbplats för lokala besökare med vårt tillägg %s! Optimerade adressuppgifter, öppettider, butikssökare och val för avhämtning!"],"Serving local customers?":["Betjänar du lokala kunder?"],"Get the %s plugin now":["Skaffa tillägget %s nu"],"You can edit the details shown in meta data, like the social profiles, the name and the description of this user on their %1$s profile page.":["Du kan redigera detaljerna som visas i metadata, som social profil, namnet och beskrivningen av denna användare på dess %1$s profilsida."],"Select a user...":["Välj en användare…"],"Name:":["Namn:"],"You have selected the user %1$s as the person this site represents. Their user profile information will now be used in search results. %2$sUpdate their profile to make sure the information is correct.%3$s":["Du har valt användaren %1$s som den person denna webbplats representerar. Deras användarprofilinformation kommer nu att användas i sökresultaten. %2$sUppdatera dennes profil för att säkerställa att informationen är korrekt.%3$s"],"Error: Please select a user below to make your site's meta data complete.":["Fel: Välj en användare nedan för att göra din webbplats metadata komplett."],"New step added":["Nytt steg tillagd"],"New question added":["Ny fråga tillagd"],"To be able to create a redirect and fix this issue, you need %1$s. ":["För att kunna skapa en omdirigering och åtgärda problemet behöver du %1$s."],"You can buy the plugin, including one year of support and updates, on %1$s.":["Du kan köpa tillägget, inklusive ett års support och uppdateringar, på %1$s."],"Free":["Gratis"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":["Visste du att %s också analyserar olika versioner av ord i din nyckelordsfras, till exempel plural och olika tempus?"],"Help on choosing the perfect focus keyphrase":["Hjälp att välja den perfekta fokusnyckelordsfrasen"],"Would you like to add a related keyphrase?":["Vill du lägga till en relaterad nyckelordsfras?"],"Go %s!":["Kör %s!"],"Rank better with synonyms & related keyphrases":["Ranka högre med synonymer och relaterade nyckelordsfraser"],"Add related keyphrase":["Lägg till relaterad nyckelordsfras"],"Get %s":["Skaffa %s"],"Focus keyphrase":["Fokusnyckelordsfras"],"Learn more about the readability analysis":["Lär dig mer om läsbarhetsanalysen"],"Describe the duration of the instruction:":["Beskriv varaktigheten av instruktionen:"],"Optional. Customize how you want to describe the duration of the instruction":["Valfritt. Anpassa hur du vill beskriva varaktigheten av instruktionen"],"%s, %s and %s":["%s, %s och %s"],"%s and %s":["%s och %s"],"%d minute":["%d minut","%d minuter"],"%d hour":["%d timme","%d timmar"],"%d day":["%d dag","%d dagar"],"Enter a step title":["Ange en stegrubrik"],"Optional. This can give you better control over the styling of the steps.":["Valfritt. Detta kan ge dig bättre kontroll över utseendet på stegen."],"CSS class(es) to apply to the steps":["CSS-klass(er) som ska tillämpas på steget"],"minutes":["minuter"],"hours":["timmar"],"days":["dagar"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":["Skapa en Hur-gör-man-guide på ett SEO-vänligt sätt. Du kan endast använda ett Hur-gör-man-block per inlägg."],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":["Lista dina FAQs på ett SEO-vänligt sätt. Du kan endast använda ett FAQ-block per inlägg."],"Copy error":["Kopiera fel"],"An error occurred loading the %s primary taxonomy picker.":["Ett fel uppstod under hämtning av %s primära taxonomi-väljaren."],"Time needed:":["Tid som behövs:"],"Move question down":["Flytta fråga ner"],"Move question up":["Flytta fråga upp"],"Insert question":["Infoga fråga"],"Delete question":["Ta bort fråga"],"Enter the answer to the question":["Ange svaret på frågan"],"Enter a question":["Ange en fråga"],"Add question":["Lägg till fråga"],"Frequently Asked Questions":["Vanliga frågor"],"Great news: you can, with %s!":["Bra nyheter: du kan, med %s!"],"Select the primary %s":["Välj den primära %s"],"Mark as cornerstone content":["Markera som grundstensinnehåll"],"Move step down":["Flytta steg ner"],"Move step up":["Flytta steg upp"],"Insert step":["Infoga steg"],"Delete step":["Ta bort steg"],"Add image":["Lägg till bild"],"Enter a step description":["Ange en stegbeskrivning"],"Enter a description":["Ange en beskrivning"],"Unordered list":["Osorterad lista"],"Showing step items as an ordered list.":["Visar stegobjekt i en sorterad lista."],"Showing step items as an unordered list":["Visar stegobjekt i en osorterad lista."],"Add step":["Lägg till steg"],"Delete total time":["Ta bort total tid"],"Add total time":["Lägg till total tid"],"How to":["Hur man gör"],"How-to":["Hur-man-gör"],"Snippet Preview":["Förhandsgranska förhandsvisningstext"],"Analysis results":["Analysresultat"],"Enter a focus keyphrase to calculate the SEO score":["Ange en fokus-nyckelordsfras för att beräkna SEO-poängen"],"Learn more about Cornerstone Content.":["Lär dig mer om grundstensinnehåll."],"Cornerstone content should be the most important and extensive articles on your site.":["Grundstensinnehåll ska vara de viktigaste och mest omfattande artiklarna på din webbplats."],"Add synonyms":["Lägg till synonymer"],"Would you like to add keyphrase synonyms?":["Vill du lägga till nyckelordsfras-synonymer?"],"Current year":["Nuvarande år"],"Page":["Sida"],"Tagline":["Slogan"],"Modify your meta description by editing it right here":["Redigera din metabeskrivning genom att ändra den här"],"ID":["ID"],"Separator":["Avgränsare"],"Search phrase":["Sökfras"],"Term description":["Termbeskrivning"],"Tag description":["Etikettbeskrivning"],"Category description":["Kategoribeskrivning"],"Primary category":["Huvudkategori"],"Category":["Kategori"],"Excerpt only":["Endast utdrag"],"Excerpt":["Utdrag"],"Site title":["Sidrubrik"],"Parent title":["Överordnad rubrik"],"Date":["Datum"],"24/7 email support":["E-postsupport dygnet runt"],"SEO analysis":["SEO-analys"],"Get support":["Få support"],"Other benefits of %s for you:":["Fler fördelar för dig med %s:"],"Cornerstone content":["Grundstensinnehåll"],"Superfast internal linking suggestions":["Supersnabba interna länkningsförslag"],"Great news: you can, with %1$s!":["Goda nyheter: du kan, med %1$s!"],"1 year free support and updates included!":["1 års fri support och uppdateringar ingår!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sFörhandsgranskning för sociala medier%2$s: Facebook och Twitter"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sGör dig av med döda länkar%2$s: easy redirect manager"],"No ads!":["Ingen reklam!"],"Please provide a meta description by editing the snippet below.":["Vänligen ange en metabeskrivning genom att redigera förhandsvisningstexten nedan."],"The name of the person":["Personens namn"],"Readability analysis":["Läsbarhetsanalys"],"Video tutorial":["Videokurs"],"Knowledge base":["Kunskapsbank"],"Open":["Öppna"],"Title":["Rubrik"],"Creating redirects is a %s feature":["Att skapa omdirigeringar är en %s-funktion"],"Close":["Stäng"],"Snippet preview":["Förhandsvisningstext"],"FAQ":["Vanliga frågor"],"Settings":["Inställningar"]}}}
\ No newline at end of file
......@@ -43,10 +43,10 @@ $generated_i18n_strings = array(
// Reference: js/src/components/SettingsReplacementVariableEditor.js:35
__( 'Modify your meta description by editing it right here', 'wordpress-seo' ),
// Reference: js/src/components/SnippetPreviewModal.js:52
// Reference: js/src/components/SnippetPreviewModal.js:53
__( 'Snippet preview', 'wordpress-seo' ),
// Reference: js/src/components/SnippetPreviewModal.js:57
// Reference: js/src/components/SnippetPreviewModal.js:59
// Reference: js/src/components/modals/Modal.js:78
__( 'Close', 'wordpress-seo' ),
......
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"bg"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":[],"The given image url cannot be loaded":[],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":[],"Are you trying to use multiple keyphrases? You should add them separately below.":[],"Mark as cornerstone content":["Маркиране като Фундаментална публикация (cornerstone content)"],"image preview":["Преглед на изображението"],"Copied!":["Копирано!"],"Not supported!":["Не се поддържа!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":[],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":[],"Consider linking to these {{a}}cornerstone articles:{{/a}}":[],"Consider linking to these articles:":[],"Copy link":["Копиране на линка"],"Copy link to suggested article: %s":["Копирайте връзката до предложената статия: %s"],"Need help?":["Нужда от помощ?"],"Choose an image":["Изберете изображение"],"Remove the image":["Премахване на изображението"],"MailChimp signup failed:":["Регистрацията в MailChimp е неуспешна:"],"Sign Up!":["Регистрирайте се!"],"There is an error with the request.":["Възникна грешка при заявката."],"Select profile":["Избор на профил"],"Choose a profile":["Изберете профил"],"Authorization code":["Код за оторизация"],"Reauthenticate with Google":["Повторна автентикация към Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["За да разрешите на %s да извлече информация от Google Search Console, въведете своя оторизационен код от Google. Бутонът отдолу ще отвори нов прозорец."],"Enter your Google Authorization Code and press the Authenticate button.":["Въведете оторизационния код от Google и натиснете бутона \"Автентикация\""],"There were no profiles found":["Не са открити профили"],"Authenticate":["Автентикация"],"Get Google Authorization Code":["Получаване на оторизационен код"],"Email":["Е-поща"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"bg"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":[],"The given image url cannot be loaded":[],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":[],"Are you trying to use multiple keyphrases? You should add them separately below.":[],"Mark as cornerstone content":["Маркиране като Фундаментална публикация (cornerstone content)"],"image preview":["Преглед на изображението"],"Copied!":["Копирано!"],"Not supported!":["Не се поддържа!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":[],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":[],"Consider linking to these {{a}}cornerstone articles:{{/a}}":[],"Consider linking to these articles:":[],"Copy link":["Копиране на линка"],"Copy link to suggested article: %s":["Копирайте връзката до предложената статия: %s"],"Modify your meta description by editing it right here":["Променете вашето мета описание, като го редактирате от тук"],"On":["Включено"],"Off":["Изключено"],"Good results":["Добри резултати"],"Need help?":["Нужда от помощ?"],"Remove highlight from the text":["Премахване на подчертаното от текста"],"Highlight this result in the text":["Маркирайте този резултат в текста"],"Considerations":["Съображения"],"Errors":["Грешки"],"Change language":["Промяна на езика"],"(Opens in a new browser tab)":["(Отваряне в нова табулация на браузера)"],"Scroll to see the preview content.":["Слезте надолу, за да видите съдържанието на прегледа."],"Mobile preview":["Преглед на мобилната версия"],"Desktop preview":["Преглед на настолната версия"],"Close snippet editor":["Затваряне на редактора на извадки"],"Slug":["Кратък адрес"],"Marks are disabled in current view":["Маркерите са изключени в текущия изглед"],"Choose an image":["Изберете изображение"],"Remove the image":["Премахване на изображението"],"MailChimp signup failed:":["Регистрацията в MailChimp е неуспешна:"],"Sign Up!":["Регистрирайте се!"],"There is an error with the request.":["Възникна грешка при заявката."],"Select profile":["Избор на профил"],"Choose a profile":["Изберете профил"],"Authorization code":["Код за оторизация"],"Reauthenticate with Google":["Повторна автентикация към Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["За да разрешите на %s да извлече информация от Google Search Console, въведете своя оторизационен код от Google. Бутонът отдолу ще отвори нов прозорец."],"Edit snippet":["Редактиране на извадката"],"Close the Wizard":["Затваряне на конфигуратора"],"SEO title":["SEO заглавие"],"Enter your Google Authorization Code and press the Authenticate button.":["Въведете оторизационния код от Google и натиснете бутона \"Автентикация\""],"Improvements":["Подобрения"],"Problems":["Проблеми"],"There were no profiles found":["Не са открити профили"],"Authenticate":["Автентикация"],"Get Google Authorization Code":["Получаване на оторизационен код"],"Search":["Търсене"],"Email":["Е-поща"],"Close":["Затваряне"],"Meta description":["Meta описание"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);","lang":"bs_BA"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":[],"The given image url cannot be loaded":[],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Ovo je list srodnog sadržaja prema kojem možete postaviti poveznice u objavi. {{a}}Pročitajte naš članak o strukturi web-stranice{{/a}} kako bi naučili više o tome kako interno povezivanje može poboljšati SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Pokušavate upotrijebiti više ključnih riječi? Trebate ih dodati zasebno ispod."],"Mark as cornerstone content":["Označi kao temeljni sadržaj"],"image preview":["Pregled slike"],"Copied!":["Kopirano!"],"Not supported!":["Nepodržano!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Pročitajte {{a}}naš artikl o strukturi{{/a}} web-stranice da bi više naučili kako unutarnje poveznice mogu pomoći poboljšati vaš SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Kada dodate još malo teksta, dobiti ćete listu predloženog sadržaja koje možete povezati u vašoj objavi."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Razmislite o povezivanju do ovih {{a}}temeljnih članaka:{{/a}}"],"Consider linking to these articles:":["Razmislite o povezivanju do ovih članaka:"],"Copy link":["Kopiraj poveznicu"],"Copy link to suggested article: %s":["Kopiraj poveznicu do predloženog članka; %s"],"Need help?":["Trebate pomoć?"],"Choose an image":["Odaberite jednu sliku"],"Remove the image":["Uklonite sliku"],"MailChimp signup failed:":["Prijava na MailChimp nije uspjela:"],"Sign Up!":["Prijavite se!"],"There is an error with the request.":["Došlo je do pogreške u vašem zahtjevu."],"Select profile":["Izaberite profil"],"Choose a profile":["Izaberite profil"],"Authorization code":[],"Reauthenticate with Google":["Ponovna provjera s Googleom"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Da bi ste omogućili %s da dohvati vaše podatke sa Googleove konzole za pretraživanje molimo vas da unesete vaš Googleov autorizacijski kod. Klikom na gumb ispod otvoriti će se novi prozor."],"Enter your Google Authorization Code and press the Authenticate button.":["Unesite svoj Google Authorization Code i kliknite gumb Autentifikacija."],"There were no profiles found":["Nema pronađenih profila"],"Authenticate":["Autentifikacija"],"Get Google Authorization Code":["Zatraži Google Authorization Code"],"Email":["E-pošta"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);","lang":"bs_BA"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":[],"The given image url cannot be loaded":[],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Ovo je list srodnog sadržaja prema kojem možete postaviti poveznice u objavi. {{a}}Pročitajte naš članak o strukturi web-stranice{{/a}} kako bi naučili više o tome kako interno povezivanje može poboljšati SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Pokušavate upotrijebiti više ključnih riječi? Trebate ih dodati zasebno ispod."],"Mark as cornerstone content":["Označi kao temeljni sadržaj"],"image preview":["Pregled slike"],"Copied!":["Kopirano!"],"Not supported!":["Nepodržano!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Pročitajte {{a}}naš artikl o strukturi{{/a}} web-stranice da bi više naučili kako unutarnje poveznice mogu pomoći poboljšati vaš SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Kada dodate još malo teksta, dobiti ćete listu predloženog sadržaja koje možete povezati u vašoj objavi."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Razmislite o povezivanju do ovih {{a}}temeljnih članaka:{{/a}}"],"Consider linking to these articles:":["Razmislite o povezivanju do ovih članaka:"],"Copy link":["Kopiraj poveznicu"],"Copy link to suggested article: %s":["Kopiraj poveznicu do predloženog članka; %s"],"Modify your meta description by editing it right here":["Izmijenite meta opis tako da ga uredite upravo ovdje"],"On":[],"Off":[],"Good results":["Dobri rezultati"],"Need help?":["Trebate pomoć?"],"Remove highlight from the text":["Ukloniti istaknuto iz teksta"],"Highlight this result in the text":["Označi ovaj rezultat u tekstu"],"Considerations":["Sagledavanja"],"Errors":["Greške"],"Change language":["Promijeni jezik"],"(Opens in a new browser tab)":["(Otvara se u novoj kartice preglednika)"],"Scroll to see the preview content.":["Pomaknite kako bi pretpregledali sadržaj."],"Mobile preview":["Mobilni pretpregled"],"Desktop preview":["Desktop pretpregled"],"Close snippet editor":["Zatvori uređivač isječaka"],"Slug":["Slug"],"Marks are disabled in current view":["Oznake (Marks) su onesposobljene u trenutnom pregledu"],"Choose an image":["Odaberite jednu sliku"],"Remove the image":["Uklonite sliku"],"MailChimp signup failed:":["Prijava na MailChimp nije uspjela:"],"Sign Up!":["Prijavite se!"],"There is an error with the request.":["Došlo je do pogreške u vašem zahtjevu."],"Select profile":["Izaberite profil"],"Choose a profile":["Izaberite profil"],"Authorization code":[],"Reauthenticate with Google":["Ponovna provjera s Googleom"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Da bi ste omogućili %s da dohvati vaše podatke sa Googleove konzole za pretraživanje molimo vas da unesete vaš Googleov autorizacijski kod. Klikom na gumb ispod otvoriti će se novi prozor."],"Edit snippet":["Uredi isječak"],"Close the Wizard":["Zatvorite Čarobnjaka"],"SEO title":["SEO naslov"],"Enter your Google Authorization Code and press the Authenticate button.":["Unesite svoj Google Authorization Code i kliknite gumb Autentifikacija."],"Improvements":["Poboljšanja"],"Problems":["Problemi"],"There were no profiles found":["Nema pronađenih profila"],"Authenticate":["Autentifikacija"],"Get Google Authorization Code":["Zatraži Google Authorization Code"],"Search":["Pretraži"],"Email":["E-pošta"],"Close":["Zatvori"],"Meta description":["Meta opis"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"ca"},"We could not find any relevant articles on your website that you could link to from your post.":["No hem pogut trobar cap article rellevant a la pàgina web que pugui enllaçar des de l'entrada."],"The image you selected is too small for Facebook":["La imatge que seleccionada és massa petita per Facebook"],"The given image url cannot be loaded":["No es pot carregar l'url de la imatge"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Aquesta és una llista de contingut relacionat que podeu enllaçar a l'entrada. {{a}}Llegiu l'article sobre l'estructura del lloc {{/a}} per tal d'obtenir més informació de com els enllaços interns poden ajudar-li a millorar el SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Esteu intentant utilitzar múltiples paraules clau? Hauríeu d'afegir-les separadament a sota."],"Mark as cornerstone content":["Marca com a contingut essencial"],"image preview":["previsualització de la imatge"],"Copied!":["S'ha copiat!"],"Not supported!":["No és compatible!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Llegiu {{a}}el nostre article sobre l'estructura dels llocs{{/a}} per a saber-ne més dels beneficis que tenen els enllaços interns per al SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Quan afegiu una mica més de text, us mostrarem una llista de continguts relacionats als quals podríeu enllaçar a l'entrada."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Considereu enllaçar a aquests {{a}}articles essencials:{{/ a}}"],"Consider linking to these articles:":["Considereu enllaçar a aquests articles:"],"Copy link":["Copia l'enllaç"],"Copy link to suggested article: %s":["Copia l'enllaç a l'article suggerit: %s"],"Need help?":["Necessiteu ajuda?"],"Choose an image":["Tria una imatge"],"Remove the image":["Suprimeix la imatge"],"MailChimp signup failed:":["Ha fallat el registre al MailChimp"],"Sign Up!":["Registreu-vos!"],"There is an error with the request.":["Hi ha un error amb la petició"],"Select profile":["Selecciona un perfil"],"Choose a profile":["Tria un perfil"],"Authorization code":["Codi d'autorització"],"Reauthenticate with Google":["Reautentica amb Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Per a permetre %s l'accés a la «Consola de cerca» de Google, introduïu el codi d'autorització de Google. Si feu clic al botó inferior s'obrirà una nova finestra."],"Enter your Google Authorization Code and press the Authenticate button.":["Introduïu el codi d'autorització de Google i premeu el botó «Autentica»"],"There were no profiles found":["No s'ha trobat cap perfil"],"Authenticate":["Autentica"],"Get Google Authorization Code":["Obté el codi d'autorització de Google"],"Email":["Adreça electrònica"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"ca"},"We could not find any relevant articles on your website that you could link to from your post.":["No hem pogut trobar cap article rellevant a la pàgina web que pugui enllaçar des de l'entrada."],"The image you selected is too small for Facebook":["La imatge que seleccionada és massa petita per Facebook"],"The given image url cannot be loaded":["No es pot carregar l'url de la imatge"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Aquesta és una llista de contingut relacionat que podeu enllaçar a l'entrada. {{a}}Llegiu l'article sobre l'estructura del lloc {{/a}} per tal d'obtenir més informació de com els enllaços interns poden ajudar-li a millorar el SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Esteu intentant utilitzar múltiples paraules clau? Hauríeu d'afegir-les separadament a sota."],"Mark as cornerstone content":["Marca com a contingut essencial"],"image preview":["previsualització de la imatge"],"Copied!":["S'ha copiat!"],"Not supported!":["No és compatible!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Llegiu {{a}}el nostre article sobre l'estructura dels llocs{{/a}} per a saber-ne més dels beneficis que tenen els enllaços interns per al SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Quan afegiu una mica més de text, us mostrarem una llista de continguts relacionats als quals podríeu enllaçar a l'entrada."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Considereu enllaçar a aquests {{a}}articles essencials:{{/ a}}"],"Consider linking to these articles:":["Considereu enllaçar a aquests articles:"],"Copy link":["Copia l'enllaç"],"Copy link to suggested article: %s":["Copia l'enllaç a l'article suggerit: %s"],"Modify your meta description by editing it right here":["Modifiqueu la descripció meta editant-la aquí."],"On":["Activat"],"Off":["Desactivat"],"Good results":["Bons resultats"],"Need help?":["Necessiteu ajuda?"],"Remove highlight from the text":["Elimineu el remarcat del text"],"Highlight this result in the text":["Remarque aquest resultat al text"],"Considerations":["Consideracions"],"Errors":["Errors"],"Change language":["Canvieu l'idioma"],"(Opens in a new browser tab)":["(S'obre en una nova pestanya del navegador)"],"Scroll to see the preview content.":["Desplaceu la pàgina per previsualitzar el contingut."],"Mobile preview":["Previsualització mòbil"],"Desktop preview":["Previsualització d'escriptori"],"Close snippet editor":["Tanca l'editor de la previsualització"],"Slug":["Resum"],"Marks are disabled in current view":["Les marques estan deshabilitades en la vista actual"],"Choose an image":["Tria una imatge"],"Remove the image":["Suprimeix la imatge"],"MailChimp signup failed:":["Ha fallat el registre al MailChimp"],"Sign Up!":["Registreu-vos!"],"There is an error with the request.":["Hi ha un error amb la petició"],"Select profile":["Selecciona un perfil"],"Choose a profile":["Tria un perfil"],"Authorization code":["Codi d'autorització"],"Reauthenticate with Google":["Reautentica amb Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Per a permetre %s l'accés a la «Consola de cerca» de Google, introduïu el codi d'autorització de Google. Si feu clic al botó inferior s'obrirà una nova finestra."],"Edit snippet":["Edita la previsualització"],"Close the Wizard":["Tanca l'assistent"],"SEO title":["Títol SEO"],"Enter your Google Authorization Code and press the Authenticate button.":["Introduïu el codi d'autorització de Google i premeu el botó «Autentica»"],"Improvements":["Millores"],"Problems":["Problemes"],"There were no profiles found":["No s'ha trobat cap perfil"],"Authenticate":["Autentica"],"Get Google Authorization Code":["Obté el codi d'autorització de Google"],"Search":["Cerca"],"Email":["Adreça electrònica"],"Close":["Tanca"],"Meta description":["Meta descripció"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;","lang":"cs_CZ"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":["Vybraný obrázek je příliš malý pro Facebook"],"The given image url cannot be loaded":["Zadanou URL obrázku nelze načíst"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":[],"Are you trying to use multiple keyphrases? You should add them separately below.":["Pokoušíte se přidat více klíčových slov? Přidávejte je samostatně níže."],"Mark as cornerstone content":["Označit jako klíčový obsah"],"image preview":["Náhled obrázku"],"Copied!":["Zkopírováno!"],"Not supported!":["Není podpováno!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Přečtěte si {{a}}náš článek o struktuře stránky{{/a}}, naučíte se více o interním prolinkování, což může zlepšit SEO. "],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":[],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Zvažte prolinkování s těmito {{a}}klíčovými články{{/a}}"],"Consider linking to these articles:":["Zvažte prolinkování s těmito články"],"Copy link":["Kopírovat odkaz"],"Copy link to suggested article: %s":["Zkopírovat odkaz na navržený článek: %s"],"Need help?":["Potřebujete pomoci?"],"Choose an image":["Vybrat obrázek"],"Remove the image":["Odstranit obrázek"],"MailChimp signup failed:":["Mailchimp registrace selhala"],"Sign Up!":["Přihlásit se!"],"There is an error with the request.":["Chyba v požadavku"],"Select profile":["Vybrat profil"],"Choose a profile":["Změnit profil"],"Authorization code":["Ověřovací kód"],"Reauthenticate with Google":["znovu ověřit proti Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Pro povolení přístupu %s k informacím vyhledávací konzole Google prosím zadejte svůj ověřovací kód Google. Po kliknutí na tlačítko níže se otevře nové okno."],"Enter your Google Authorization Code and press the Authenticate button.":["Zadejte svůj autorizační kód Google a stiskněte tlačítko Ověřit."],"There were no profiles found":["Nebyl nalezen žádný profil"],"Authenticate":["Autentizovat"],"Get Google Authorization Code":["Získat autorizační kód Google"],"Email":["E-mail"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;","lang":"cs_CZ"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":["Vybraný obrázek je příliš malý pro Facebook"],"The given image url cannot be loaded":["Zadanou URL obrázku nelze načíst"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":[],"Are you trying to use multiple keyphrases? You should add them separately below.":["Pokoušíte se přidat více klíčových slov? Přidávejte je samostatně níže."],"Mark as cornerstone content":["Označit jako klíčový obsah"],"image preview":["Náhled obrázku"],"Copied!":["Zkopírováno!"],"Not supported!":["Není podpováno!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Přečtěte si {{a}}náš článek o struktuře stránky{{/a}}, naučíte se více o interním prolinkování, což může zlepšit SEO. "],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":[],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Zvažte prolinkování s těmito {{a}}klíčovými články{{/a}}"],"Consider linking to these articles:":["Zvažte prolinkování s těmito články"],"Copy link":["Kopírovat odkaz"],"Copy link to suggested article: %s":["Zkopírovat odkaz na navržený článek: %s"],"Modify your meta description by editing it right here":["Upravte popis meta tím, že jej upravíte přímo zde"],"On":["Zapnuto"],"Off":["Vypnuto"],"Good results":["Dobré výsledky"],"Need help?":["Potřebujete pomoci?"],"Remove highlight from the text":["Odstraňte zvýraznění textu"],"Highlight this result in the text":["Zvýrazněte tento výsledek v textu."],"Considerations":["Úvahy"],"Errors":["Chyby"],"Change language":["Změnit jazyk"],"(Opens in a new browser tab)":["(Otevření v nové záložce)"],"Scroll to see the preview content.":["Posuňte stránky, aby jste si prohlédli předběžný obsah."],"Mobile preview":["Mobilní zobrazení"],"Desktop preview":["PC zobrazení"],"Close snippet editor":["Zavřít editor náhledu"],"Slug":["Slug"],"Marks are disabled in current view":["V aktuálním zobrazení jsou makra zakázána"],"Choose an image":["Vybrat obrázek"],"Remove the image":["Odstranit obrázek"],"MailChimp signup failed:":["Mailchimp registrace selhala"],"Sign Up!":["Přihlásit se!"],"There is an error with the request.":["Chyba v požadavku"],"Select profile":["Vybrat profil"],"Choose a profile":["Změnit profil"],"Authorization code":["Ověřovací kód"],"Reauthenticate with Google":["znovu ověřit proti Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Pro povolení přístupu %s k informacím vyhledávací konzole Google prosím zadejte svůj ověřovací kód Google. Po kliknutí na tlačítko níže se otevře nové okno."],"Edit snippet":["Upravit náhled"],"Close the Wizard":["Zavřít průvodce"],"SEO title":["SEO nadpis"],"Enter your Google Authorization Code and press the Authenticate button.":["Zadejte svůj autorizační kód Google a stiskněte tlačítko Ověřit."],"Improvements":["Vylepšení "],"Problems":["Problémy"],"There were no profiles found":["Nebyl nalezen žádný profil"],"Authenticate":["Autentizovat"],"Get Google Authorization Code":["Získat autorizační kód Google"],"Search":["Hledat"],"Email":["E-mail"],"Close":["Zavřít"],"Meta description":["Meta popis"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"da_DK"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":["Billedet, du har valgt, er for lille til Facebook."],"The given image url cannot be loaded":["Det valgte billedes url kan ikke indlæses"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Dette er en liste af relateret indhold som du kan linke til i dit indlæg. {{a}}Læs vores artikel om sidestruktur{{/a}} for at lære mere om hvordan interne links kan hjælpe med at forbedre dit SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Forsøger du at bruge flere søgeord? Du bør tilføje dem hver for sig nedenfor."],"Mark as cornerstone content":["Markér som hjørnestensindhold"],"image preview":["billedpreview"],"Copied!":["Kopieret!"],"Not supported!":["Ikke understøttet!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Læs {{a}}vores artikel om sitestruktur{{/a}} for at lære mere om hvordan interne links kan bidrage til at forbedre din SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Når du har tilføjet lidt mere tekst, vil vi give dig en liste med tilsvarende indhold her, så du kan tilføje links i dit indlæg."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Overvej at linke til disse {{a}}hjørnestensartikler:{{/a}}"],"Consider linking to these articles:":["Overvej at linke til disse artikler:"],"Copy link":["Kopiér link"],"Copy link to suggested article: %s":["Kopiér link til foreslået artikel: %s"],"Need help?":["Brug for hjælp?"],"Choose an image":["Vælg et billede"],"Remove the image":["Fjern billedet"],"MailChimp signup failed:":["MailChimp-tilmelding mislykkedes:"],"Sign Up!":["Tilmeld!"],"There is an error with the request.":["Der er en fejl ved forespørgslen."],"Select profile":["Vælg profil"],"Choose a profile":["Vælg en profil"],"Authorization code":["Autorisationskode"],"Reauthenticate with Google":["Reauthentificér hos Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["For at give %s lov til at hente information hos Google Search Console bedes du indtaste din Google-autorisationskode. Klikker du på knappen nedenfor, åbnes en nyt vindue."],"Enter your Google Authorization Code and press the Authenticate button.":["Indtast din Google Autentificeringskode og klik på knappen Autentificér."],"There were no profiles found":["Ingen profiler fundet"],"Authenticate":["Godkend"],"Get Google Authorization Code":["Hent Google-autorisationskode"],"Email":["E-mail"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"da_DK"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":["Billedet, du har valgt, er for lille til Facebook."],"The given image url cannot be loaded":["Det valgte billedes url kan ikke indlæses"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Dette er en liste af relateret indhold som du kan linke til i dit indlæg. {{a}}Læs vores artikel om sidestruktur{{/a}} for at lære mere om hvordan interne links kan hjælpe med at forbedre dit SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Forsøger du at bruge flere søgeord? Du bør tilføje dem hver for sig nedenfor."],"Mark as cornerstone content":["Markér som hjørnestensindhold"],"image preview":["billedpreview"],"Copied!":["Kopieret!"],"Not supported!":["Ikke understøttet!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Læs {{a}}vores artikel om sitestruktur{{/a}} for at lære mere om hvordan interne links kan bidrage til at forbedre din SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Når du har tilføjet lidt mere tekst, vil vi give dig en liste med tilsvarende indhold her, så du kan tilføje links i dit indlæg."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Overvej at linke til disse {{a}}hjørnestensartikler:{{/a}}"],"Consider linking to these articles:":["Overvej at linke til disse artikler:"],"Copy link":["Kopiér link"],"Copy link to suggested article: %s":["Kopiér link til foreslået artikel: %s"],"Modify your meta description by editing it right here":["Redigér din meta-beskrivelse ved at redigere den lige her"],"On":["Til"],"Off":["Fra"],"Good results":["Gode resultater"],"Need help?":["Brug for hjælp?"],"Remove highlight from the text":["Fjern fremhævelser fra teksten"],"Highlight this result in the text":["Fremhæv dette resultat i teksten"],"Considerations":["Overvejelser"],"Errors":["Fejl"],"Change language":["Ændr sprog"],"(Opens in a new browser tab)":["(Åbner i en ny browserfane)"],"Scroll to see the preview content.":["Scroll for at se preview-indholdet."],"Mobile preview":["Mobil-preview"],"Desktop preview":["Desktop-preview"],"Close snippet editor":["Luk snippeteditor"],"Slug":["Korttitel"],"Marks are disabled in current view":["Markeringer er deaktiveret i den aktuelle visning"],"Choose an image":["Vælg et billede"],"Remove the image":["Fjern billedet"],"MailChimp signup failed:":["MailChimp-tilmelding mislykkedes:"],"Sign Up!":["Tilmeld!"],"There is an error with the request.":["Der er en fejl ved forespørgslen."],"Select profile":["Vælg profil"],"Choose a profile":["Vælg en profil"],"Authorization code":["Autorisationskode"],"Reauthenticate with Google":["Reauthentificér hos Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["For at give %s lov til at hente information hos Google Search Console bedes du indtaste din Google-autorisationskode. Klikker du på knappen nedenfor, åbnes en nyt vindue."],"Edit snippet":["Redigér snippet"],"Close the Wizard":["Luk guiden"],"SEO title":["SEO-titel"],"Enter your Google Authorization Code and press the Authenticate button.":["Indtast din Google Autentificeringskode og klik på knappen Autentificér."],"Improvements":["Forbedringer"],"Problems":["Problemer"],"There were no profiles found":["Ingen profiler fundet"],"Authenticate":["Godkend"],"Get Google Authorization Code":["Hent Google-autorisationskode"],"Search":["Søg"],"Email":["E-mail"],"Close":["Luk"],"Meta description":["Meta beskrivelse"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"de_CH"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":[],"The given image url cannot be loaded":[],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":[],"Are you trying to use multiple keyphrases? You should add them separately below.":[],"Mark as cornerstone content":[],"image preview":[],"Copied!":[],"Not supported!":[],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":[],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":[],"Consider linking to these {{a}}cornerstone articles:{{/a}}":[],"Consider linking to these articles:":[],"Copy link":[],"Copy link to suggested article: %s":[],"Need help?":["Brauchst du Hilfe?"],"Choose an image":["Wähle ein Bild"],"Remove the image":["Bild entfernen"],"MailChimp signup failed:":["MailChimp-Registrierung fehlgeschlagen:"],"Sign Up!":["Anmelden"],"There is an error with the request.":["Es ist ein Fehler bei der Anfrage aufgetreten."],"Select profile":["Profil wählen"],"Choose a profile":["Wähle ein Profil"],"Authorization code":[],"Reauthenticate with Google":["Erneute Identifizierung mit Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Damit %s deine Google Search Console-Informationen abrufen kann, gebe bitte deinen Google Authorization Code ein. Wenn du auf den Button unten klickst, öffnet sich ein neues Fenster."],"Enter your Google Authorization Code and press the Authenticate button.":["Gib den Autorisierungscode von Google ein und klicke auf \"Authentifizieren\"."],"There were no profiles found":["Kein Profil gefunden."],"Authenticate":["Authentifizieren"],"Get Google Authorization Code":["Google-Autorisierungscode abrufen"],"Email":["E-Mail"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"de_CH"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":[],"The given image url cannot be loaded":[],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":[],"Are you trying to use multiple keyphrases? You should add them separately below.":[],"Mark as cornerstone content":[],"image preview":[],"Copied!":[],"Not supported!":[],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":[],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":[],"Consider linking to these {{a}}cornerstone articles:{{/a}}":[],"Consider linking to these articles:":[],"Copy link":[],"Copy link to suggested article: %s":[],"Modify your meta description by editing it right here":[],"On":[],"Off":[],"Good results":[],"Need help?":["Brauchst du Hilfe?"],"Remove highlight from the text":["Hervorhebung vom Text entfernen"],"Highlight this result in the text":["Dieses Resultat im Text hervorheben"],"Considerations":["Überlegungen"],"Errors":["Fehler"],"Change language":["Sprache wechseln"],"(Opens in a new browser tab)":["(Wird in einem neuen Browser Tab geöffnet)"],"Scroll to see the preview content.":["Scrolle, um die Vorschau zu sehen."],"Mobile preview":["Mobile Vorschau"],"Desktop preview":["Desktop-Vorschau"],"Close snippet editor":["Ausschnitt-Editor schließen"],"Slug":["Permalink"],"Marks are disabled in current view":["Markierungen sind in der aktuellen Ansicht deaktiviert."],"Choose an image":["Wähle ein Bild"],"Remove the image":["Bild entfernen"],"MailChimp signup failed:":["MailChimp-Registrierung fehlgeschlagen:"],"Sign Up!":["Anmelden"],"There is an error with the request.":["Es ist ein Fehler bei der Anfrage aufgetreten."],"Select profile":["Profil wählen"],"Choose a profile":["Wähle ein Profil"],"Authorization code":[],"Reauthenticate with Google":["Erneute Identifizierung mit Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Damit %s deine Google Search Console-Informationen abrufen kann, gebe bitte deinen Google Authorization Code ein. Wenn du auf den Button unten klickst, öffnet sich ein neues Fenster."],"Edit snippet":["Code-Schnipsel bearbeiten"],"Close the Wizard":["Schließe den Assistenten "],"SEO title":["SEO Titel"],"Enter your Google Authorization Code and press the Authenticate button.":["Gib den Autorisierungscode von Google ein und klicke auf \"Authentifizieren\"."],"Improvements":["Verbesserungen"],"Problems":["Probleme"],"There were no profiles found":["Kein Profil gefunden."],"Authenticate":["Authentifizieren"],"Get Google Authorization Code":["Google-Autorisierungscode abrufen"],"Search":["Suchen"],"Email":["E-Mail"],"Close":["Schließen"],"Meta description":["Meta-Beschreibung"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"We could not find any relevant articles on your website that you could link to from your post.":["Wir konnten keine relevanten Beiträge auf deiner Website finden, auf die du von deinem Beitrag aus verlinken könntet."],"The image you selected is too small for Facebook":["Das ausgewählte Bild ist zu klein für Facebook."],"The given image url cannot be loaded":["Die angegebene URL zum Bild konnte nicht geladen werden."],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Dies ist eine Liste von verwandtem Inhalt auf den du in deinem Beitrag verweisen kannst. {{a}}Lies unseren Artikel über Seitenstruktur{{/a}}, um mehr darüber zu lernen, wie interne Verlinkungen deinen SEO Score verbessern können."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Versuchst du, mehrere Keywords zu verwenden? Du solltest sie unten einzeln hinzufügen."],"Mark as cornerstone content":["Als Cornerstone-Inhalt markieren"],"image preview":["Bildvorschau"],"Copied!":["Kopiert!"],"Not supported!":["Nicht unterstützt!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Lies {{a}}unseren Artikel über Seitenstruktur{{/a}}, um mehr darüber zu erfahren, wie interne Verlinkungen deinen SEO Score verbessern können."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Hast du deiner Seite einmal etwas mehr Inhalt hinzugefügt, werden wir dir eine Liste mit verwandten Inhalten anzeigen, welche du in deinem Beitrag verlinken kannst."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Überlege, zu diesen {{a}}Cornerstone-Artikeln{{/a}} zu verlinken. "],"Consider linking to these articles:":["Überlege, auf diese Artikel zu verlinken "],"Copy link":["Link kopieren"],"Copy link to suggested article: %s":["Link zum vorgeschlagenen Artikel kopieren: %s"],"Need help?":["Hilfe benötigt?"],"Choose an image":["Wähle ein Bild"],"Remove the image":["Bild entfernen"],"MailChimp signup failed:":["MailChimp-Registrierung fehlgeschlagen:"],"Sign Up!":["Anmelden"],"There is an error with the request.":["Es ist ein Fehler bei der Anfrage aufgetreten."],"Select profile":["Profil wählen"],"Choose a profile":["Wähle ein Profil"],"Authorization code":["Autorisierungscode"],"Reauthenticate with Google":["Erneute Identifizierung mit Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Damit %s deine Google Search Console-Informationen abrufen kann, gebe bitte deinen Google Authorization Code ein. Wenn du auf den Button unten klickst, öffnet sich ein neues Fenster."],"Enter your Google Authorization Code and press the Authenticate button.":["Gib den Autorisierungscode von Google ein und klicke auf \"Authentifizieren\"."],"There were no profiles found":["Kein Profil gefunden."],"Authenticate":["Authentifizieren"],"Get Google Authorization Code":["Google-Autorisierungscode abrufen"],"Email":["E-Mail"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"We could not find any relevant articles on your website that you could link to from your post.":["Wir konnten keine relevanten Beiträge auf deiner Website finden, auf die du von deinem Beitrag aus verlinken könntet."],"The image you selected is too small for Facebook":["Das ausgewählte Bild ist zu klein für Facebook."],"The given image url cannot be loaded":["Die angegebene URL zum Bild konnte nicht geladen werden."],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Dies ist eine Liste von verwandtem Inhalt auf den du in deinem Beitrag verweisen kannst. {{a}}Lies unseren Artikel über Seitenstruktur{{/a}}, um mehr darüber zu lernen, wie interne Verlinkungen deinen SEO Score verbessern können."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Versuchst du, mehrere Keywords zu verwenden? Du solltest sie unten einzeln hinzufügen."],"Mark as cornerstone content":["Als Cornerstone-Inhalt markieren"],"image preview":["Bildvorschau"],"Copied!":["Kopiert!"],"Not supported!":["Nicht unterstützt!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Lies {{a}}unseren Artikel über Seitenstruktur{{/a}}, um mehr darüber zu erfahren, wie interne Verlinkungen deinen SEO Score verbessern können."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Hast du deiner Seite einmal etwas mehr Inhalt hinzugefügt, werden wir dir eine Liste mit verwandten Inhalten anzeigen, welche du in deinem Beitrag verlinken kannst."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Überlege, zu diesen {{a}}Cornerstone-Artikeln{{/a}} zu verlinken. "],"Consider linking to these articles:":["Überlege, auf diese Artikel zu verlinken "],"Copy link":["Link kopieren"],"Copy link to suggested article: %s":["Link zum vorgeschlagenen Artikel kopieren: %s"],"Modify your meta description by editing it right here":["Bearbeite direkt hier deine Meta-Beschreibung "],"On":["An"],"Off":["Aus"],"Good results":["Gute Ergebnisse"],"Need help?":["Hilfe benötigt?"],"Remove highlight from the text":["Text-Markierung entfernen"],"Highlight this result in the text":["Markiere dieses Ergebnis im Text"],"Considerations":["Überlegungen"],"Errors":["Fehler"],"Change language":["Sprache ändern"],"(Opens in a new browser tab)":["(Öffnet in einem neuen Browser Tab)"],"Scroll to see the preview content.":["Scrolle, um die Vorschau zu sehen."],"Mobile preview":["Mobile Vorschau"],"Desktop preview":["Desktop-Vorschau"],"Close snippet editor":["Ausschnitt-Editor schließen"],"Slug":["Permalink"],"Marks are disabled in current view":["Markierungen sind in der aktuellen Ansicht deaktiviert."],"Choose an image":["Wähle ein Bild"],"Remove the image":["Bild entfernen"],"MailChimp signup failed:":["MailChimp-Registrierung fehlgeschlagen:"],"Sign Up!":["Anmelden"],"There is an error with the request.":["Es ist ein Fehler bei der Anfrage aufgetreten."],"Select profile":["Profil wählen"],"Choose a profile":["Wähle ein Profil"],"Authorization code":["Autorisierungscode"],"Reauthenticate with Google":["Erneute Identifizierung mit Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Damit %s deine Google Search Console-Informationen abrufen kann, gebe bitte deinen Google Authorization Code ein. Wenn du auf den Button unten klickst, öffnet sich ein neues Fenster."],"Edit snippet":["Code-Schnipsel bearbeiten"],"Close the Wizard":["Schließe den Assistenten "],"SEO title":["SEO Titel"],"Enter your Google Authorization Code and press the Authenticate button.":["Gib den Autorisierungscode von Google ein und klicke auf \"Authentifizieren\"."],"Improvements":["Verbesserungen"],"Problems":["Probleme"],"There were no profiles found":["Kein Profil gefunden."],"Authenticate":["Authentifizieren"],"Get Google Authorization Code":["Google-Autorisierungscode abrufen"],"Search":["Suchen"],"Email":["E-Mail"],"Close":["Schließen"],"Meta description":["Meta-Beschreibung"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"el_GR"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":["Η εικόνα που επιλέξατε είναι πολύ μικρή για το Facebook"],"The given image url cannot be loaded":["Η εικόνα δεν μπορεί να φορτωθεί"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Αυτή είναι μία λίστα από σχετικό περιεχόμενο το οποίο θα μπορούσατε να συνδέσετε στο άρθρο σας {{a}}Διαβάστε το άρθρο μας σχετικά με την δομή του ιστότοπου{{/a}} μαθαίνοντας περισσότερα για το internal linking μπορεί να βοηθήσει στην βελτιστοποίηση του SEO σας."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Προσπαθείτε να χρησιμοποιήσετε πολλές λέξεις-κλειδιά; Θα πρέπει να τις προσθέσετε ξεχωριστά παρακάτω."],"Mark as cornerstone content":["Σημειώστε ως το βασικό περιεχόμενο"],"image preview":["προεπισκόπηση εικόνας"],"Copied!":["Αντιγράφηκε!"],"Not supported!":["Δεν υποστηρίζεται!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Διαβάστε {{a}}το άρθρο μας σχετικά με την δομή της ιστοσελίδας{{/a}} για να μάθετε περισσότερα σχετικά με το πως το internal linking μπορεί να βοηθήσει στην βελτίωση του SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Μόλις προσθέσετε λίγο περισσότερη ύλη, θα σας δώσουμε εδώ μια λίστα με συναφές περιεχόμενο στο οποίο μπορείτε να έχετε ως υπέρ-σύνδεσμο στο άρθρο σας. "],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Σκεφτείτε να χρησιμοποιήσετε υπέρ-σύνδεσμο για αυτά τα {{a}}βασικά άρθρα:{{/a}}"],"Consider linking to these articles:":["Σκεφτείτε να χρησιμοποιήσετε υπέρ-σύνδεσμο για αυτά τα άρθρα:"],"Copy link":["Αντιγραφή συνδέσμου"],"Copy link to suggested article: %s":["Αντιγραφή συνδέσμου στο προτεινόμενο άρθρο: %s"],"Need help?":["Χρειάζεστε βοήθεια;"],"Choose an image":["Επιλέξτε φωτογραφία"],"Remove the image":["Αφαιρέστε την φωτογραφία"],"MailChimp signup failed:":["Η εγγραφή μέσω MailChimp απέτυχε:"],"Sign Up!":["Εγγραφή!"],"There is an error with the request.":["Υπάρχει ένα λάθος με την αίτηση."],"Select profile":["Επιλογή προφίλ"],"Choose a profile":["Επιλέξτε ένα προφίλ"],"Authorization code":[],"Reauthenticate with Google":["Εκ νέου έλεγχος ταυτότητας μέσω Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Για να καταστεί δυνατή η σύδεση %s με τις πληροφορίες σας στο Google Search Console, παρακαλούμε εισάγετε τον κωδικό εξουσιοδότησης Google. Κάνοντας κλικ στο παρακάτω κουμπί θα ανοίξει ένα νέο παράθυρο."],"Enter your Google Authorization Code and press the Authenticate button.":["Εισαγάγετε τον Κώδικα Εξουσιοδότησης Google και πατήστε το κουμπί Επαλήθευση ταυτότητας."],"There were no profiles found":["Δεν βρέθηκαν προφίλ"],"Authenticate":["Πιστοποίηση"],"Get Google Authorization Code":["Λάβετε τον κωδικό Google (Google Authorization Code)"],"Email":["Email"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"el_GR"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":["Η εικόνα που επιλέξατε είναι πολύ μικρή για το Facebook"],"The given image url cannot be loaded":["Η εικόνα δεν μπορεί να φορτωθεί"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Αυτή είναι μία λίστα από σχετικό περιεχόμενο το οποίο θα μπορούσατε να συνδέσετε στο άρθρο σας {{a}}Διαβάστε το άρθρο μας σχετικά με την δομή του ιστότοπου{{/a}} μαθαίνοντας περισσότερα για το internal linking μπορεί να βοηθήσει στην βελτιστοποίηση του SEO σας."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Προσπαθείτε να χρησιμοποιήσετε πολλές λέξεις-κλειδιά; Θα πρέπει να τις προσθέσετε ξεχωριστά παρακάτω."],"Mark as cornerstone content":["Σημειώστε ως το βασικό περιεχόμενο"],"image preview":["προεπισκόπηση εικόνας"],"Copied!":["Αντιγράφηκε!"],"Not supported!":["Δεν υποστηρίζεται!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Διαβάστε {{a}}το άρθρο μας σχετικά με την δομή της ιστοσελίδας{{/a}} για να μάθετε περισσότερα σχετικά με το πως το internal linking μπορεί να βοηθήσει στην βελτίωση του SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Μόλις προσθέσετε λίγο περισσότερη ύλη, θα σας δώσουμε εδώ μια λίστα με συναφές περιεχόμενο στο οποίο μπορείτε να έχετε ως υπέρ-σύνδεσμο στο άρθρο σας. "],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Σκεφτείτε να χρησιμοποιήσετε υπέρ-σύνδεσμο για αυτά τα {{a}}βασικά άρθρα:{{/a}}"],"Consider linking to these articles:":["Σκεφτείτε να χρησιμοποιήσετε υπέρ-σύνδεσμο για αυτά τα άρθρα:"],"Copy link":["Αντιγραφή συνδέσμου"],"Copy link to suggested article: %s":["Αντιγραφή συνδέσμου στο προτεινόμενο άρθρο: %s"],"Modify your meta description by editing it right here":["Τροποποιήστε την περιγραφή meta σας επεξεργάζοντάς την εδώ"],"On":["Ανοιχτό"],"Off":[],"Good results":["Καλά αποτελέσματα"],"Need help?":["Χρειάζεστε βοήθεια;"],"Remove highlight from the text":[],"Highlight this result in the text":["Επισημάνετε αυτό το αποτέλεμα στο κείμενο"],"Considerations":[],"Errors":["Σφάλματα"],"Change language":["Αλλαγή γλώσσας"],"(Opens in a new browser tab)":["(Ανοίγει σε νέα καρτέλα)"],"Scroll to see the preview content.":["Μετακινηθείτε με κύλιση για να δείτε την προεπισκόπηση του περιεχομένου."],"Mobile preview":["Προεπισκόπηση σε κινητό"],"Desktop preview":["Προεπισκόπηση σε οθόνη υπολογιστή"],"Close snippet editor":["Κλείσε την μορφοποίηση αποσπάσματος"],"Slug":["Σύντομη περιγραφή"],"Marks are disabled in current view":["Τα σημάδια είναι απενεργοποιημένα σ' αυτή την όψη"],"Choose an image":["Επιλέξτε φωτογραφία"],"Remove the image":["Αφαιρέστε την φωτογραφία"],"MailChimp signup failed:":["Η εγγραφή μέσω MailChimp απέτυχε:"],"Sign Up!":["Εγγραφή!"],"There is an error with the request.":["Υπάρχει ένα λάθος με την αίτηση."],"Select profile":["Επιλογή προφίλ"],"Choose a profile":["Επιλέξτε ένα προφίλ"],"Authorization code":[],"Reauthenticate with Google":["Εκ νέου έλεγχος ταυτότητας μέσω Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Για να καταστεί δυνατή η σύδεση %s με τις πληροφορίες σας στο Google Search Console, παρακαλούμε εισάγετε τον κωδικό εξουσιοδότησης Google. Κάνοντας κλικ στο παρακάτω κουμπί θα ανοίξει ένα νέο παράθυρο."],"Edit snippet":["Μορφοποίησε το απόσπασμα"],"Close the Wizard":["Κλείστε τον οδηγό"],"SEO title":["Τίτλος SEO"],"Enter your Google Authorization Code and press the Authenticate button.":["Εισαγάγετε τον Κώδικα Εξουσιοδότησης Google και πατήστε το κουμπί Επαλήθευση ταυτότητας."],"Improvements":["Βελτιώσεις"],"Problems":["Προβλήματα"],"There were no profiles found":["Δεν βρέθηκαν προφίλ"],"Authenticate":["Πιστοποίηση"],"Get Google Authorization Code":["Λάβετε τον κωδικό Google (Google Authorization Code)"],"Search":["Αναζήτηση"],"Email":["Email"],"Close":["Κλείσιμο"],"Meta description":["Περιγραφή Meta"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_AU"},"We could not find any relevant articles on your website that you could link to from your post.":["We could not find any relevant articles on your website that you could link to from your post."],"The image you selected is too small for Facebook":["The image you selected is too small for Facebook"],"The given image url cannot be loaded":["The given image URL cannot be loaded"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Are you trying to use multiple keyphrases? You should add them separately below."],"Mark as cornerstone content":["Mark as cornerstone content"],"image preview":["image preview"],"Copied!":["Copied!"],"Not supported!":["Not supported!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Consider linking to these {{a}}cornerstone articles:{{/a}}"],"Consider linking to these articles:":["Consider linking to these articles:"],"Copy link":["Copy link"],"Copy link to suggested article: %s":["Copy link to suggested article: %s"],"Need help?":["Need help?"],"Choose an image":["Choose an image"],"Remove the image":["Remove the image"],"MailChimp signup failed:":["MailChimp signup failed:"],"Sign Up!":["Sign Up!"],"There is an error with the request.":["There is an error with the request."],"Select profile":["Select profile"],"Choose a profile":["Choose a profile"],"Authorization code":["Authorisation code"],"Reauthenticate with Google":["Reauthenticate with Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["To allow %s to fetch your Google Search Console information, please enter your Google Authorisation Code. Clicking the button below will open a new window."],"Enter your Google Authorization Code and press the Authenticate button.":["Enter your Google Authorisation Code and press the Authenticate button."],"There were no profiles found":["There were no profiles found"],"Authenticate":["Authenticate"],"Get Google Authorization Code":["Get Google Authorisation Code"],"Email":["Email"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_AU"},"We could not find any relevant articles on your website that you could link to from your post.":["We could not find any relevant articles on your website that you could link to from your post."],"The image you selected is too small for Facebook":["The image you selected is too small for Facebook"],"The given image url cannot be loaded":["The given image URL cannot be loaded"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Are you trying to use multiple keyphrases? You should add them separately below."],"Mark as cornerstone content":["Mark as cornerstone content"],"image preview":["image preview"],"Copied!":["Copied!"],"Not supported!":["Not supported!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Consider linking to these {{a}}cornerstone articles:{{/a}}"],"Consider linking to these articles:":["Consider linking to these articles:"],"Copy link":["Copy link"],"Copy link to suggested article: %s":["Copy link to suggested article: %s"],"Modify your meta description by editing it right here":["Modify your meta description by editing it right here"],"On":["On"],"Off":["Off"],"Good results":["Good results"],"Need help?":["Need help?"],"Remove highlight from the text":["Remove highlight from the text"],"Highlight this result in the text":["Highlight this result in the text"],"Considerations":["Considerations"],"Errors":["Errors"],"Change language":["Change language"],"(Opens in a new browser tab)":["(Opens in a new browser tab)"],"Scroll to see the preview content.":["Scroll to see the preview content."],"Mobile preview":["Mobile preview"],"Desktop preview":["Desktop preview"],"Close snippet editor":["Close snippet editor"],"Slug":["Slug"],"Marks are disabled in current view":["Marks are disabled in current view"],"Choose an image":["Choose an image"],"Remove the image":["Remove the image"],"MailChimp signup failed:":["MailChimp signup failed:"],"Sign Up!":["Sign Up!"],"There is an error with the request.":["There is an error with the request."],"Select profile":["Select profile"],"Choose a profile":["Choose a profile"],"Authorization code":["Authorisation code"],"Reauthenticate with Google":["Reauthenticate with Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["To allow %s to fetch your Google Search Console information, please enter your Google Authorisation Code. Clicking the button below will open a new window."],"Edit snippet":["Edit snippet"],"Close the Wizard":["Close the Wizard"],"SEO title":["SEO title"],"Enter your Google Authorization Code and press the Authenticate button.":["Enter your Google Authorisation Code and press the Authenticate button."],"Improvements":["Improvements"],"Problems":["Problems"],"There were no profiles found":["There were no profiles found"],"Authenticate":["Authenticate"],"Get Google Authorization Code":["Get Google Authorisation Code"],"Search":["Search"],"Email":["Email"],"Close":["Close"],"Meta description":["Meta description"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_CA"},"We could not find any relevant articles on your website that you could link to from your post.":["We could not find any relevant articles on your website that you could link to from your post."],"The image you selected is too small for Facebook":["The image you selected is too small for Facebook"],"The given image url cannot be loaded":["The given image URL cannot be loaded"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Are you trying to use multiple keyphrases? You should add them separately below."],"Mark as cornerstone content":["Mark as cornerstone content"],"image preview":["image preview"],"Copied!":["Copied!"],"Not supported!":["Not supported!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Consider linking to these {{a}}cornerstone articles:{{/a}}"],"Consider linking to these articles:":["Consider linking to these articles:"],"Copy link":["Copy link"],"Copy link to suggested article: %s":["Copy link to suggested article: %s"],"Need help?":["Need help?"],"Choose an image":["Choose an image"],"Remove the image":["Remove the image"],"MailChimp signup failed:":["MailChimp signup failed:"],"Sign Up!":["Sign Up!"],"There is an error with the request.":["There is an error with the request."],"Select profile":["Select profile"],"Choose a profile":["Choose a profile"],"Authorization code":["Authorization code"],"Reauthenticate with Google":["Reauthenticate with Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window."],"Enter your Google Authorization Code and press the Authenticate button.":["Enter your Google Authorization Code and press the Authenticate button."],"There were no profiles found":["There were no profiles found"],"Authenticate":["Authenticate"],"Get Google Authorization Code":["Get Google Authorization Code"],"Email":["Email"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_CA"},"We could not find any relevant articles on your website that you could link to from your post.":["We could not find any relevant articles on your website that you could link to from your post."],"The image you selected is too small for Facebook":["The image you selected is too small for Facebook"],"The given image url cannot be loaded":["The given image URL cannot be loaded"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Are you trying to use multiple keyphrases? You should add them separately below."],"Mark as cornerstone content":["Mark as cornerstone content"],"image preview":["image preview"],"Copied!":["Copied!"],"Not supported!":["Not supported!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Consider linking to these {{a}}cornerstone articles:{{/a}}"],"Consider linking to these articles:":["Consider linking to these articles:"],"Copy link":["Copy link"],"Copy link to suggested article: %s":["Copy link to suggested article: %s"],"Modify your meta description by editing it right here":["Modify your meta description by editing it right here"],"On":["On"],"Off":["Off"],"Good results":["Good results"],"Need help?":["Need help?"],"Remove highlight from the text":["Remove highlight from the text"],"Highlight this result in the text":["Highlight this result in the text"],"Considerations":["Considerations"],"Errors":["Errors"],"Change language":["Change language"],"(Opens in a new browser tab)":["(Opens in a new browser tab)"],"Scroll to see the preview content.":["Scroll to see the preview content."],"Mobile preview":["Mobile preview"],"Desktop preview":["Desktop preview"],"Close snippet editor":["Close snippet editor"],"Slug":["Slug"],"Marks are disabled in current view":["Marks are disabled in current view"],"Choose an image":["Choose an image"],"Remove the image":["Remove the image"],"MailChimp signup failed:":["MailChimp signup failed:"],"Sign Up!":["Sign Up!"],"There is an error with the request.":["There is an error with the request."],"Select profile":["Select profile"],"Choose a profile":["Choose a profile"],"Authorization code":["Authorization code"],"Reauthenticate with Google":["Reauthenticate with Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window."],"Edit snippet":["Edit snippet"],"Close the Wizard":["Close the Wizard"],"SEO title":["SEO title"],"Enter your Google Authorization Code and press the Authenticate button.":["Enter your Google Authorization Code and press the Authenticate button."],"Improvements":["Improvements"],"Problems":["Problems"],"There were no profiles found":["There were no profiles found"],"Authenticate":["Authenticate"],"Get Google Authorization Code":["Get Google Authorization Code"],"Search":["Search"],"Email":["Email"],"Close":["Close"],"Meta description":["Meta description"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"We could not find any relevant articles on your website that you could link to from your post.":["We could not find any relevant articles on your website that you could link to from your post."],"The image you selected is too small for Facebook":["The image you selected is too small for Facebook"],"The given image url cannot be loaded":["The given image URL cannot be loaded"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Are you trying to use multiple keyphrases? You should add them separately below."],"Mark as cornerstone content":["Mark as cornerstone content"],"image preview":["image preview"],"Copied!":["Copied!"],"Not supported!":["Not supported!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Consider linking to these {{a}}cornerstone articles:{{/a}}"],"Consider linking to these articles:":["Consider linking to these articles:"],"Copy link":["Copy link"],"Copy link to suggested article: %s":["Copy link to suggested article: %s"],"Need help?":["Need help?"],"Choose an image":["Choose an image"],"Remove the image":["Remove the image"],"MailChimp signup failed:":["MailChimp signup failed:"],"Sign Up!":["Sign Up!"],"There is an error with the request.":["There is an error with the request."],"Select profile":["Select profile"],"Choose a profile":["Choose a profile"],"Authorization code":["Authorisation code"],"Reauthenticate with Google":["Reauthenticate with Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["To allow %s to fetch your Google Search Console information, please enter your Google Authorisation Code. Clicking the button below will open a new window."],"Enter your Google Authorization Code and press the Authenticate button.":["Enter your Google Authorisation Code and press the Authenticate button."],"There were no profiles found":["There were no profiles found"],"Authenticate":["Authenticate"],"Get Google Authorization Code":["Get Google Authorisation Code"],"Email":["Email"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"We could not find any relevant articles on your website that you could link to from your post.":["We could not find any relevant articles on your website that you could link to from your post."],"The image you selected is too small for Facebook":["The image you selected is too small for Facebook"],"The given image url cannot be loaded":["The given image URL cannot be loaded"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Are you trying to use multiple keyphrases? You should add them separately below."],"Mark as cornerstone content":["Mark as cornerstone content"],"image preview":["image preview"],"Copied!":["Copied!"],"Not supported!":["Not supported!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Consider linking to these {{a}}cornerstone articles:{{/a}}"],"Consider linking to these articles:":["Consider linking to these articles:"],"Copy link":["Copy link"],"Copy link to suggested article: %s":["Copy link to suggested article: %s"],"Modify your meta description by editing it right here":["Modify your meta description by editing it right here"],"On":["On"],"Off":["Off"],"Good results":["Good results"],"Need help?":["Need help?"],"Remove highlight from the text":["Remove highlight from the text"],"Highlight this result in the text":["Highlight this result in the text"],"Considerations":["Considerations"],"Errors":["Errors"],"Change language":["Change language"],"(Opens in a new browser tab)":["(Opens in a new browser tab)"],"Scroll to see the preview content.":["Scroll to see the preview content."],"Mobile preview":["Mobile preview"],"Desktop preview":["Desktop preview"],"Close snippet editor":["Close snippet editor"],"Slug":["Slug"],"Marks are disabled in current view":["Marks are disabled in current view"],"Choose an image":["Choose an image"],"Remove the image":["Remove the image"],"MailChimp signup failed:":["MailChimp signup failed:"],"Sign Up!":["Sign Up!"],"There is an error with the request.":["There is an error with the request."],"Select profile":["Select profile"],"Choose a profile":["Choose a profile"],"Authorization code":["Authorisation code"],"Reauthenticate with Google":["Reauthenticate with Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["To allow %s to fetch your Google Search Console information, please enter your Google Authorisation Code. Clicking the button below will open a new window."],"Edit snippet":["Edit snippet"],"Close the Wizard":["Close the Wizard"],"SEO title":["SEO title"],"Enter your Google Authorization Code and press the Authenticate button.":["Enter your Google Authorisation Code and press the Authenticate button."],"Improvements":["Improvements"],"Problems":["Problems"],"There were no profiles found":["There were no profiles found"],"Authenticate":["Authenticate"],"Get Google Authorization Code":["Get Google Authorisation Code"],"Search":["Search"],"Email":["Email"],"Close":["Close"],"Meta description":["Meta description"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_NZ"},"We could not find any relevant articles on your website that you could link to from your post.":["We could not find any relevant articles on your website that you could link to from your post."],"The image you selected is too small for Facebook":["The image you selected is too small for Facebook"],"The given image url cannot be loaded":["The given image URL cannot be loaded"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Are you trying to use multiple keyphrases? You should add them separately below."],"Mark as cornerstone content":["Mark as cornerstone content"],"image preview":["image preview"],"Copied!":["Copied!"],"Not supported!":["Not supported!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Consider linking to these {{a}}cornerstone articles:{{/a}}"],"Consider linking to these articles:":["Consider linking to these articles:"],"Copy link":["Copy link"],"Copy link to suggested article: %s":["Copy link to suggested article: %s"],"Need help?":["Need help?"],"Choose an image":["Choose an image"],"Remove the image":["Remove the image"],"MailChimp signup failed:":["MailChimp signup failed:"],"Sign Up!":["Sign Up!"],"There is an error with the request.":["There is an error with the request."],"Select profile":["Select profile"],"Choose a profile":["Choose a profile"],"Authorization code":["Authorisation code"],"Reauthenticate with Google":["Reauthenticate with Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["To allow %s to fetch your Google Search Console information, please enter your Google Authorisation Code. Clicking the button below will open a new window."],"Enter your Google Authorization Code and press the Authenticate button.":["Enter your Google Authorisation Code and press the Authenticate button."],"There were no profiles found":["There were no profiles found"],"Authenticate":["Authenticate"],"Get Google Authorization Code":["Get Google Authorisation Code"],"Email":["Email"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_NZ"},"We could not find any relevant articles on your website that you could link to from your post.":["We could not find any relevant articles on your website that you could link to from your post."],"The image you selected is too small for Facebook":["The image you selected is too small for Facebook"],"The given image url cannot be loaded":["The given image URL cannot be loaded"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Are you trying to use multiple keyphrases? You should add them separately below."],"Mark as cornerstone content":["Mark as cornerstone content"],"image preview":["image preview"],"Copied!":["Copied!"],"Not supported!":["Not supported!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Consider linking to these {{a}}cornerstone articles:{{/a}}"],"Consider linking to these articles:":["Consider linking to these articles:"],"Copy link":["Copy link"],"Copy link to suggested article: %s":["Copy link to suggested article: %s"],"Modify your meta description by editing it right here":["Modify your meta description by editing it right here"],"On":["On"],"Off":["Off"],"Good results":["Good results"],"Need help?":["Need help?"],"Remove highlight from the text":["Remove highlight from the text"],"Highlight this result in the text":["Highlight this result in the text"],"Considerations":["Considerations"],"Errors":["Errors"],"Change language":["Change language"],"(Opens in a new browser tab)":["(Opens in a new browser tab)"],"Scroll to see the preview content.":["Scroll to see the preview content."],"Mobile preview":["Mobile preview"],"Desktop preview":["Desktop preview"],"Close snippet editor":["Close snippet editor"],"Slug":["Slug"],"Marks are disabled in current view":["Marks are disabled in current view"],"Choose an image":["Choose an image"],"Remove the image":["Remove the image"],"MailChimp signup failed:":["MailChimp signup failed:"],"Sign Up!":["Sign Up!"],"There is an error with the request.":["There is an error with the request."],"Select profile":["Select profile"],"Choose a profile":["Choose a profile"],"Authorization code":["Authorisation code"],"Reauthenticate with Google":["Reauthenticate with Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["To allow %s to fetch your Google Search Console information, please enter your Google Authorisation Code. Clicking the button below will open a new window."],"Edit snippet":["Edit snippet"],"Close the Wizard":["Close the Wizard"],"SEO title":["SEO title"],"Enter your Google Authorization Code and press the Authenticate button.":["Enter your Google Authorisation Code and press the Authenticate button."],"Improvements":["Improvements"],"Problems":["Problems"],"There were no profiles found":["There were no profiles found"],"Authenticate":["Authenticate"],"Get Google Authorization Code":["Get Google Authorisation Code"],"Search":["Search"],"Email":["Email"],"Close":["Close"],"Meta description":["Meta description"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_ZA"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":["The image you selected is too small for Facebook"],"The given image url cannot be loaded":["The given image URL cannot be loaded"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Are you trying to use multiple keyphrases? You should add them separately below."],"Mark as cornerstone content":["Mark as cornerstone content"],"image preview":["image preview"],"Copied!":["Copied!"],"Not supported!":["Not supported!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Consider linking to these {{a}}cornerstone articles:{{/a}}"],"Consider linking to these articles:":["Consider linking to these articles:"],"Copy link":["Copy link"],"Copy link to suggested article: %s":["Copy link to suggested article: %s"],"Need help?":["Need help?"],"Choose an image":["Choose an image"],"Remove the image":["Remove the image"],"MailChimp signup failed:":["MailChimp signup failed:"],"Sign Up!":["Sign Up!"],"There is an error with the request.":["There is an error with the request."],"Select profile":["Select profile"],"Choose a profile":["Choose a profile"],"Authorization code":["Authorisation code"],"Reauthenticate with Google":["Reauthenticate with Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["To allow %s to fetch your Google Search Console information, please enter your Google Authorisation Code. Clicking the button below will open a new window."],"Enter your Google Authorization Code and press the Authenticate button.":["Enter your Google Authorisation Code and press the Authenticate button."],"There were no profiles found":["There were no profiles found"],"Authenticate":["Authenticate"],"Get Google Authorization Code":["Get Google Authorisation Code"],"Email":["Email"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_ZA"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":["The image you selected is too small for Facebook"],"The given image url cannot be loaded":["The given image URL cannot be loaded"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Are you trying to use multiple keyphrases? You should add them separately below."],"Mark as cornerstone content":["Mark as cornerstone content"],"image preview":["image preview"],"Copied!":["Copied!"],"Not supported!":["Not supported!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Consider linking to these {{a}}cornerstone articles:{{/a}}"],"Consider linking to these articles:":["Consider linking to these articles:"],"Copy link":["Copy link"],"Copy link to suggested article: %s":["Copy link to suggested article: %s"],"Modify your meta description by editing it right here":["Modify your meta description by editing it right here"],"On":["On"],"Off":["Off"],"Good results":["Good results"],"Need help?":["Need help?"],"Remove highlight from the text":["Remove highlight from the text"],"Highlight this result in the text":["Highlight this result in the text"],"Considerations":["Considerations"],"Errors":["Errors"],"Change language":["Change language"],"(Opens in a new browser tab)":["(Opens in a new browser tab)"],"Scroll to see the preview content.":["Scroll to see the preview content."],"Mobile preview":["Mobile preview"],"Desktop preview":["Desktop preview"],"Close snippet editor":["Close snippet editor"],"Slug":["Slug"],"Marks are disabled in current view":["Marks are disabled in current view"],"Choose an image":["Choose an image"],"Remove the image":["Remove the image"],"MailChimp signup failed:":["MailChimp signup failed:"],"Sign Up!":["Sign Up!"],"There is an error with the request.":["There is an error with the request."],"Select profile":["Select profile"],"Choose a profile":["Choose a profile"],"Authorization code":["Authorisation code"],"Reauthenticate with Google":["Reauthenticate with Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["To allow %s to fetch your Google Search Console information, please enter your Google Authorisation Code. Clicking the button below will open a new window."],"Edit snippet":["Edit snippet"],"Close the Wizard":["Close the Wizard"],"SEO title":["SEO title"],"Enter your Google Authorization Code and press the Authenticate button.":["Enter your Google Authorisation Code and press the Authenticate button."],"Improvements":["Improvements"],"Problems":["Problems"],"There were no profiles found":["There were no profiles found"],"Authenticate":["Authenticate"],"Get Google Authorization Code":["Get Google Authorisation Code"],"Search":["Search"],"Email":["Email"],"Close":["Close"],"Meta description":["Meta description"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"es_AR"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":["La imagen seleccionada es demasiado pequeña para utilizar con Facebook"],"The given image url cannot be loaded":["La URL de la imagen no puede ser cargada."],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":[],"Are you trying to use multiple keyphrases? You should add them separately below.":[],"Mark as cornerstone content":[],"image preview":[],"Copied!":[],"Not supported!":[],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":[],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":[],"Consider linking to these {{a}}cornerstone articles:{{/a}}":[],"Consider linking to these articles:":[],"Copy link":[],"Copy link to suggested article: %s":[],"Need help?":["¿Necesitás ayuda?"],"Choose an image":["Elegí una imagen"],"Remove the image":["Eliminar la imagen"],"MailChimp signup failed:":["El registro en Mailchimp ha fallado:"],"Sign Up!":["¡Registrate!"],"There is an error with the request.":["Ocurrió un error en la petición."],"Select profile":["Seleccionar perfil"],"Choose a profile":["Elegí un perfil"],"Authorization code":[],"Reauthenticate with Google":["Volver a identificar con Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Para permitir que %s obtenga tu información de la consola de búsqueda de Google, ingresá tu código de autorización de Google. Al hacer clic en el botón de abajo, se abrirá una nueva ventana. "],"Enter your Google Authorization Code and press the Authenticate button.":["Ingresá tu código de autorización de Google y presioná el botón Autorizar."],"There were no profiles found":["No se encontraron perfiles"],"Authenticate":["Autorizar"],"Get Google Authorization Code":["Obtener el código de autorización de Google"],"Email":["Correo"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"es_AR"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":["La imagen seleccionada es demasiado pequeña para utilizar con Facebook"],"The given image url cannot be loaded":["La URL de la imagen no puede ser cargada."],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":[],"Are you trying to use multiple keyphrases? You should add them separately below.":[],"Mark as cornerstone content":[],"image preview":[],"Copied!":[],"Not supported!":[],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":[],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":[],"Consider linking to these {{a}}cornerstone articles:{{/a}}":[],"Consider linking to these articles:":[],"Copy link":[],"Copy link to suggested article: %s":[],"Modify your meta description by editing it right here":[],"On":[],"Off":[],"Good results":["Buenos resultados"],"Need help?":["¿Necesitás ayuda?"],"Remove highlight from the text":["Eliminar resaltado del texto"],"Highlight this result in the text":["Resaltar este resultado en el texto"],"Considerations":["Consideraciones"],"Errors":["Errores"],"Change language":["Cambiar idioma"],"(Opens in a new browser tab)":["(Se abre en una nueva pestaña del navegador)"],"Scroll to see the preview content.":["Desplazate hacia abajo para ver el contenido previo."],"Mobile preview":["Vista previa de dispositivos móviles"],"Desktop preview":["Previsualización de escritorio"],"Close snippet editor":["Cerrar el editor de snippet"],"Slug":["Slug"],"Marks are disabled in current view":["Las marcas están desactivadas en la vista actual"],"Choose an image":["Elegí una imagen"],"Remove the image":["Eliminar la imagen"],"MailChimp signup failed:":["El registro en Mailchimp ha fallado:"],"Sign Up!":["¡Registrate!"],"There is an error with the request.":["Ocurrió un error en la petición."],"Select profile":["Seleccionar perfil"],"Choose a profile":["Elegí un perfil"],"Authorization code":[],"Reauthenticate with Google":["Volver a identificar con Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Para permitir que %s obtenga tu información de la consola de búsqueda de Google, ingresá tu código de autorización de Google. Al hacer clic en el botón de abajo, se abrirá una nueva ventana. "],"Edit snippet":["Editar snippet"],"Close the Wizard":["Cerrar el asistente"],"SEO title":["Título SEO"],"Enter your Google Authorization Code and press the Authenticate button.":["Ingresá tu código de autorización de Google y presioná el botón Autorizar."],"Improvements":["Mejoras"],"Problems":["Problemas"],"There were no profiles found":["No se encontraron perfiles"],"Authenticate":["Autorizar"],"Get Google Authorization Code":["Obtener el código de autorización de Google"],"Search":["Buscar"],"Email":["Correo"],"Close":["Cerrar"],"Meta description":["Meta description"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"es"},"We could not find any relevant articles on your website that you could link to from your post.":["No hemos podido encontrar ningún artículo relevante en tu web al que puedas enlazar desde tu entrada."],"The image you selected is too small for Facebook":["La imagen que has elegido es demasiado pequeña para Facebook"],"The given image url cannot be loaded":["La URL de la imagen dada no se puede cargar"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Esta es una lista de contenido relacionado al que podrías enlazar en tu entrada. {{a}}Lee nuestro artículo sobre la estructura del sitio{{/a}} para aprende rmás sobre como el enlazado interno puede ayudar a mejorar tu SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["¿Estás tratando de utilizar varias frases clave? Debes añadirlas por separado a continuación."],"Mark as cornerstone content":["Marcar como contenido esencial"],"image preview":["vista previa de imagen"],"Copied!":["¡Copiado!"],"Not supported!":["¡No compatible!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Lee {{a}}nuestro artículo sobre de la estructura del sitio{{{/a}} para saber más sobre cómo los enlaces internos pueden ayudar a mejorar tu SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Cuando añadas algo más de texto te mostraremos aquí una lista de contenidos relacionados a los que podrías enlazar en tu entrada."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Plantéate enlazar a estos {{a}}artículos esenciales{{/a}}"],"Consider linking to these articles:":["Plantéate enlazar a estos artículos:"],"Copy link":["Copiar enlace"],"Copy link to suggested article: %s":["Copiar enlace al artículo sugerido: %s"],"Need help?":["¿Necesitas ayuda?"],"Choose an image":["Elige una imagen"],"Remove the image":["Quita la imagen"],"MailChimp signup failed:":["El registro en Mailchimp ha fallado:"],"Sign Up!":["¡Regístrate!"],"There is an error with the request.":["Ocurrió un error en la petición."],"Select profile":["Elige perfil"],"Choose a profile":["Elige un perfil"],"Authorization code":["Código de autorización"],"Reauthenticate with Google":["Volver a identificar con Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Para permitir que %s obtenga tu información de la consola de búsqueda de Google, por favor, introduce tu código de autorización de Google. Al hacer clic en el botón de abajo se abrirá una nueva ventana. "],"Enter your Google Authorization Code and press the Authenticate button.":["Introduce tu código de autorización de Google y pulsa el botón Autorizar."],"There were no profiles found":["No se encontraron perfiles"],"Authenticate":["Autorizar"],"Get Google Authorization Code":["Obtener el código de autorización de Google"],"Email":["Correo"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"es"},"We could not find any relevant articles on your website that you could link to from your post.":["No hemos podido encontrar ningún artículo relevante en tu web al que puedas enlazar desde tu entrada."],"The image you selected is too small for Facebook":["La imagen que has elegido es demasiado pequeña para Facebook"],"The given image url cannot be loaded":["La URL de la imagen dada no se puede cargar"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Esta es una lista de contenido relacionado al que podrías enlazar en tu entrada. {{a}}Lee nuestro artículo sobre la estructura del sitio{{/a}} para aprende rmás sobre como el enlazado interno puede ayudar a mejorar tu SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["¿Estás tratando de utilizar varias frases clave? Debes añadirlas por separado a continuación."],"Mark as cornerstone content":["Marcar como contenido esencial"],"image preview":["vista previa de imagen"],"Copied!":["¡Copiado!"],"Not supported!":["¡No compatible!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Lee {{a}}nuestro artículo sobre de la estructura del sitio{{{/a}} para saber más sobre cómo los enlaces internos pueden ayudar a mejorar tu SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Cuando añadas algo más de texto te mostraremos aquí una lista de contenidos relacionados a los que podrías enlazar en tu entrada."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Plantéate enlazar a estos {{a}}artículos esenciales{{/a}}"],"Consider linking to these articles:":["Plantéate enlazar a estos artículos:"],"Copy link":["Copiar enlace"],"Copy link to suggested article: %s":["Copiar enlace al artículo sugerido: %s"],"Modify your meta description by editing it right here":["Modifica tu meta description editándola aquí mismo"],"On":["Activo"],"Off":["Inactivo"],"Good results":["Buenos resultados"],"Need help?":["¿Necesitas ayuda?"],"Remove highlight from the text":["Quitar el resaltado del texto"],"Highlight this result in the text":["Resalta este resultado en el texto"],"Considerations":["Consideraciones"],"Errors":["Errores"],"Change language":["Cambiar idioma"],"(Opens in a new browser tab)":["(Se abre en una nueva pestaña del navegador)"],"Scroll to see the preview content.":["Navega para ver la vista previa del contenido."],"Mobile preview":["Vista previa móvil"],"Desktop preview":["Vista previa escritorio"],"Close snippet editor":["Cerrar el editor de snippet"],"Slug":["Slug"],"Marks are disabled in current view":["Las marcas están desactivadas en la vista actual"],"Choose an image":["Elige una imagen"],"Remove the image":["Quita la imagen"],"MailChimp signup failed:":["El registro en Mailchimp ha fallado:"],"Sign Up!":["¡Regístrate!"],"There is an error with the request.":["Ocurrió un error en la petición."],"Select profile":["Elige perfil"],"Choose a profile":["Elige un perfil"],"Authorization code":["Código de autorización"],"Reauthenticate with Google":["Volver a identificar con Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Para permitir que %s obtenga tu información de la consola de búsqueda de Google, por favor, introduce tu código de autorización de Google. Al hacer clic en el botón de abajo se abrirá una nueva ventana. "],"Edit snippet":["Editar snippet"],"Close the Wizard":["Cerrar el asistente"],"SEO title":["Título SEO"],"Enter your Google Authorization Code and press the Authenticate button.":["Introduce tu código de autorización de Google y pulsa el botón Autorizar."],"Improvements":["A mejorar"],"Problems":["Problemas"],"There were no profiles found":["No se encontraron perfiles"],"Authenticate":["Autorizar"],"Get Google Authorization Code":["Obtener el código de autorización de Google"],"Search":["Buscar"],"Email":["Correo"],"Close":["Cerrar"],"Meta description":["Meta description"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"es_MX"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":[],"The given image url cannot be loaded":[],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":[],"Are you trying to use multiple keyphrases? You should add them separately below.":[],"Mark as cornerstone content":["Marcar como contenido piedra angular"],"image preview":["vista previa de la imagen"],"Copied!":["Copiado!"],"Not supported!":["No soportado!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":[],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":[],"Consider linking to these {{a}}cornerstone articles:{{/a}}":[],"Consider linking to these articles:":["Considere enlazar hacia estos artículos"],"Copy link":["Copiar enlace"],"Copy link to suggested article: %s":[],"Need help?":["¿Necesitas ayuda?"],"Choose an image":["Escoja una imagen"],"Remove the image":["Quitar una imagen"],"MailChimp signup failed:":["Falló registro en Mailchimp:"],"Sign Up!":["¡Regístrate!"],"There is an error with the request.":["Hubo un error con la solicitud"],"Select profile":["Seleccione un perfil"],"Choose a profile":["Escoja un perfil"],"Authorization code":[],"Reauthenticate with Google":["Verificar nuevamente con Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Para permitir que %s obtenga su información de la Consola de Búsqueda de Google, por favor introduzca su Código de Autorización de Google. Al hacer click en el botón de abajo se abrirá una nueva ventana."],"Enter your Google Authorization Code and press the Authenticate button.":["Ingrese su código de autorización de Google y presione el botón Autenticar"],"There were no profiles found":["No hubo perfiles encontrados"],"Authenticate":["Autenticar"],"Get Google Authorization Code":["Obtener el Código de Autorización de Google"],"Email":["Email"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"es_MX"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":[],"The given image url cannot be loaded":[],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":[],"Are you trying to use multiple keyphrases? You should add them separately below.":[],"Mark as cornerstone content":["Marcar como contenido piedra angular"],"image preview":["vista previa de la imagen"],"Copied!":["Copiado!"],"Not supported!":["No soportado!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":[],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":[],"Consider linking to these {{a}}cornerstone articles:{{/a}}":[],"Consider linking to these articles:":["Considere enlazar hacia estos artículos"],"Copy link":["Copiar enlace"],"Copy link to suggested article: %s":[],"Modify your meta description by editing it right here":["Modifique su meta descripción modificándola aquí"],"On":[],"Off":["Apagado"],"Good results":["Buenos resultados"],"Need help?":["¿Necesitas ayuda?"],"Remove highlight from the text":["Remueve la parte destacada del texto"],"Highlight this result in the text":["Resalta este resultado en el texto"],"Considerations":["Consideraciones"],"Errors":["Errores"],"Change language":["Cambiar idioma"],"(Opens in a new browser tab)":["Abrir en nueva pestaña de buscador"],"Scroll to see the preview content.":["Desplácese para ver el contenido de la vista previa."],"Mobile preview":["Vista previa móvil"],"Desktop preview":["Vista previa del escritorio"],"Close snippet editor":["Cerrar el editor de snippet"],"Slug":["Slug"],"Marks are disabled in current view":["Las marcas están deshabilitadas en la vista actual"],"Choose an image":["Escoja una imagen"],"Remove the image":["Quitar una imagen"],"MailChimp signup failed:":["Falló registro en Mailchimp:"],"Sign Up!":["¡Regístrate!"],"There is an error with the request.":["Hubo un error con la solicitud"],"Select profile":["Seleccione un perfil"],"Choose a profile":["Escoja un perfil"],"Authorization code":[],"Reauthenticate with Google":["Verificar nuevamente con Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Para permitir que %s obtenga su información de la Consola de Búsqueda de Google, por favor introduzca su Código de Autorización de Google. Al hacer click en el botón de abajo se abrirá una nueva ventana."],"Edit snippet":["Editar snippet"],"Close the Wizard":["Cerrar el asistente"],"SEO title":["Título SEO"],"Enter your Google Authorization Code and press the Authenticate button.":["Ingrese su código de autorización de Google y presione el botón Autenticar"],"Improvements":["Mejoras"],"Problems":["Problemas"],"There were no profiles found":["No hubo perfiles encontrados"],"Authenticate":["Autenticar"],"Get Google Authorization Code":["Obtener el Código de Autorización de Google"],"Search":["Búsqueda"],"Email":["Email"],"Close":["Cerrar"],"Meta description":["Descripción meta"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"es_PE"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":["La imagen que has elegido es demasiado pequeña para Facebook"],"The given image url cannot be loaded":["La URL de la imagen dada no se puede cargar"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Esta es una lista de contenido relacionado al que podrías enlazar en tu entrada. {{a}}Lee nuestro artículo sobre la estructura del sitio{{/a}} para aprende rmás sobre como el enlazado interno puede ayudar a mejorar tu SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["¿Estás tratando de utilizar varias frases clave? Debes añadirlas por separado a continuación."],"Mark as cornerstone content":["Marcar como contenido esencial"],"image preview":["vista previa de imagen"],"Copied!":["¡Copiado!"],"Not supported!":["¡No compatible!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Lee {{a}}nuestro artículo sobre de la estructura del sitio{{{/a}} para saber más sobre cómo los enlaces internos pueden ayudar a mejorar tu SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Cuando añadas algo más de texto te mostraremos aquí una lista de contenidos relacionados a los que podrías enlazar en tu entrada."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Plantéate enlazar a estos {{a}}artículos esenciales{{/a}}"],"Consider linking to these articles:":["Plantéate enlazar a estos artículos:"],"Copy link":["Copiar enlace"],"Copy link to suggested article: %s":["Copiar enlace al artículo sugerido: %s"],"Need help?":["¿Necesitas ayuda?"],"Choose an image":["Elige una imagen"],"Remove the image":["Eliminar la imagen"],"MailChimp signup failed:":["El registro en Mailchimp ha fallado:"],"Sign Up!":["¡Regístrate!"],"There is an error with the request.":["Ocurrió un error en la petición."],"Select profile":["Elige perfil"],"Choose a profile":["Elige un perfil"],"Authorization code":["Código de autorización"],"Reauthenticate with Google":["Volver a identificar con Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Para permitir que %s obtenga tu información de la consola de búsqueda de Google, por favor, introduce tu código de autorización de Google. Al hacer clic en el botón de abajo se abrirá una nueva ventana."],"Enter your Google Authorization Code and press the Authenticate button.":["Introduce tu código de autorización de Google y pulsa el botón Autorizar."],"There were no profiles found":["No se encontraron perfiles"],"Authenticate":["Autorizar"],"Get Google Authorization Code":["Obtener el código de autorización de Google"],"Email":["Correo"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"es_PE"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":["La imagen que has elegido es demasiado pequeña para Facebook"],"The given image url cannot be loaded":["La URL de la imagen dada no se puede cargar"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Esta es una lista de contenido relacionado al que podrías enlazar en tu entrada. {{a}}Lee nuestro artículo sobre la estructura del sitio{{/a}} para aprende rmás sobre como el enlazado interno puede ayudar a mejorar tu SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["¿Estás tratando de utilizar varias frases clave? Debes añadirlas por separado a continuación."],"Mark as cornerstone content":["Marcar como contenido esencial"],"image preview":["vista previa de imagen"],"Copied!":["¡Copiado!"],"Not supported!":["¡No compatible!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Lee {{a}}nuestro artículo sobre de la estructura del sitio{{{/a}} para saber más sobre cómo los enlaces internos pueden ayudar a mejorar tu SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Cuando añadas algo más de texto te mostraremos aquí una lista de contenidos relacionados a los que podrías enlazar en tu entrada."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Plantéate enlazar a estos {{a}}artículos esenciales{{/a}}"],"Consider linking to these articles:":["Plantéate enlazar a estos artículos:"],"Copy link":["Copiar enlace"],"Copy link to suggested article: %s":["Copiar enlace al artículo sugerido: %s"],"Modify your meta description by editing it right here":["Modifica tu meta description editándola aquí mismo"],"On":["Activo"],"Off":["Inactivo"],"Good results":["Buenos resultados"],"Need help?":["¿Necesitas ayuda?"],"Remove highlight from the text":["Quitar el resaltado del texto"],"Highlight this result in the text":["Resalta este resultado en el texto"],"Considerations":["Consideraciones"],"Errors":["Errores"],"Change language":["Cambiar idioma"],"(Opens in a new browser tab)":["(Se abre en una nueva pestaña del navegador)"],"Scroll to see the preview content.":["Navega para ver la vista previa del contenido."],"Mobile preview":["Vista previa móvil"],"Desktop preview":["Vista previa escritorio"],"Close snippet editor":["Cerrar el editor de snippet"],"Slug":["Slug"],"Marks are disabled in current view":["Las marcas están desactivadas en la vista actual"],"Choose an image":["Elige una imagen"],"Remove the image":["Eliminar la imagen"],"MailChimp signup failed:":["El registro en Mailchimp ha fallado:"],"Sign Up!":["¡Regístrate!"],"There is an error with the request.":["Ocurrió un error en la petición."],"Select profile":["Elige perfil"],"Choose a profile":["Elige un perfil"],"Authorization code":["Código de autorización"],"Reauthenticate with Google":["Volver a identificar con Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Para permitir que %s obtenga tu información de la consola de búsqueda de Google, por favor, introduce tu código de autorización de Google. Al hacer clic en el botón de abajo se abrirá una nueva ventana."],"Edit snippet":["Editar snippet"],"Close the Wizard":["Cerrar el asistente"],"SEO title":["Título SEO"],"Enter your Google Authorization Code and press the Authenticate button.":["Introduce tu código de autorización de Google y pulsa el botón Autorizar."],"Improvements":["A mejorar"],"Problems":["Problemas"],"There were no profiles found":["No se encontraron perfiles"],"Authenticate":["Autorizar"],"Get Google Authorization Code":["Obtener el código de autorización de Google"],"Search":["Buscar"],"Email":["Correo"],"Close":["Cerrar"],"Meta description":["Meta description"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"es_VE"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":["La imagen que has elegido es demasiado pequeña para Facebook"],"The given image url cannot be loaded":["La URL de la imagen dada no se puede cargar"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Esta es una lista de contenido relacionado al que podrías enlazar en tu entrada. {{a}}Lee nuestro artículo sobre la estructura del sitio{{/a}} para aprende rmás sobre como el enlazado interno puede ayudar a mejorar tu SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["¿Estás tratando de utilizar varias frases clave? Debes añadirlas por separado a continuación."],"Mark as cornerstone content":["Marcar como contenido esencial"],"image preview":["vista previa de imagen"],"Copied!":["¡Copiado!"],"Not supported!":["¡No compatible!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Lee {{a}}nuestro artículo sobre de la estructura del sitio{{{/a}} para saber más sobre cómo los enlaces internos pueden ayudar a mejorar tu SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Cuando añadas algo más de texto te mostraremos aquí una lista de contenidos relacionados a los que podrías enlazar en tu entrada."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Plantéate enlazar a estos {{a}}artículos esenciales{{/a}}"],"Consider linking to these articles:":["Plantéate enlazar a estos artículos:"],"Copy link":["Copiar enlace"],"Copy link to suggested article: %s":["Copiar enlace al artículo sugerido: %s"],"Need help?":["¿Necesitas ayuda?"],"Choose an image":["Elige una imagen"],"Remove the image":["Quita la imagen"],"MailChimp signup failed:":["El registro en Mailchimp ha fallado:"],"Sign Up!":["¡Regístrate!"],"There is an error with the request.":["Ocurrió un error en la petición."],"Select profile":["Elige perfil"],"Choose a profile":["Elige un perfil"],"Authorization code":["Código de autorización"],"Reauthenticate with Google":["Volver a identificar con Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Para permitir que %s obtenga tu información de la consola de búsqueda de Google, por favor, introduce tu código de autorización de Google. Al hacer clic en el botón de abajo se abrirá una nueva ventana. "],"Enter your Google Authorization Code and press the Authenticate button.":["Introduce tu código de autorización de Google y pulsa el botón Autorizar."],"There were no profiles found":["No se encontraron perfiles"],"Authenticate":["Autorizar"],"Get Google Authorization Code":["Obtener el código de autorización de Google"],"Email":["Correo"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"es_VE"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":["La imagen que has elegido es demasiado pequeña para Facebook"],"The given image url cannot be loaded":["La URL de la imagen dada no se puede cargar"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Esta es una lista de contenido relacionado al que podrías enlazar en tu entrada. {{a}}Lee nuestro artículo sobre la estructura del sitio{{/a}} para aprende rmás sobre como el enlazado interno puede ayudar a mejorar tu SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["¿Estás tratando de utilizar varias frases clave? Debes añadirlas por separado a continuación."],"Mark as cornerstone content":["Marcar como contenido esencial"],"image preview":["vista previa de imagen"],"Copied!":["¡Copiado!"],"Not supported!":["¡No compatible!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Lee {{a}}nuestro artículo sobre de la estructura del sitio{{{/a}} para saber más sobre cómo los enlaces internos pueden ayudar a mejorar tu SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Cuando añadas algo más de texto te mostraremos aquí una lista de contenidos relacionados a los que podrías enlazar en tu entrada."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Plantéate enlazar a estos {{a}}artículos esenciales{{/a}}"],"Consider linking to these articles:":["Plantéate enlazar a estos artículos:"],"Copy link":["Copiar enlace"],"Copy link to suggested article: %s":["Copiar enlace al artículo sugerido: %s"],"Modify your meta description by editing it right here":["Modifica tu meta description editándola aquí mismo"],"On":["Activo"],"Off":["Inactivo"],"Good results":["Buenos resultados"],"Need help?":["¿Necesitas ayuda?"],"Remove highlight from the text":["Quitar el resaltado del texto"],"Highlight this result in the text":["Resalta este resultado en el texto"],"Considerations":["Consideraciones"],"Errors":["Errores"],"Change language":["Cambiar idioma"],"(Opens in a new browser tab)":["(Se abre en una nueva pestaña del navegador)"],"Scroll to see the preview content.":["Navega para ver la vista previa del contenido."],"Mobile preview":["Vista previa móvil"],"Desktop preview":["Vista previa escritorio"],"Close snippet editor":["Cerrar el editor de snippet"],"Slug":["Slug"],"Marks are disabled in current view":["Las marcas están desactivadas en la vista actual"],"Choose an image":["Elige una imagen"],"Remove the image":["Quita la imagen"],"MailChimp signup failed:":["El registro en Mailchimp ha fallado:"],"Sign Up!":["¡Regístrate!"],"There is an error with the request.":["Ocurrió un error en la petición."],"Select profile":["Elige perfil"],"Choose a profile":["Elige un perfil"],"Authorization code":["Código de autorización"],"Reauthenticate with Google":["Volver a identificar con Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Para permitir que %s obtenga tu información de la consola de búsqueda de Google, por favor, introduce tu código de autorización de Google. Al hacer clic en el botón de abajo se abrirá una nueva ventana. "],"Edit snippet":["Editar snippet"],"Close the Wizard":["Cerrar el asistente"],"SEO title":["Título SEO"],"Enter your Google Authorization Code and press the Authenticate button.":["Introduce tu código de autorización de Google y pulsa el botón Autorizar."],"Improvements":["A mejorar"],"Problems":["Problemas"],"There were no profiles found":["No se encontraron perfiles"],"Authenticate":["Autorizar"],"Get Google Authorization Code":["Obtener el código de autorización de Google"],"Search":["Buscar"],"Email":["Correo"],"Close":["Cerrar"],"Meta description":["Meta description"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=1; plural=0;","lang":"fa"},"We could not find any relevant articles on your website that you could link to from your post.":["ما نمی توانیم مقالات مرتبط با سایت شما برای پیوند به نوشته پیدا کنیم."],"The image you selected is too small for Facebook":["تصویر انتخابی شما برای فیسبوک کوچک است"],"The given image url cannot be loaded":["آدرس تصویر داده شده نمیتواند بارگذاری شود"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["این لیستی از محتواهایی می باشد که شما می توانید در نوشته خود به آن لینک دهید.{{a}} درباره ساختار سایت مقاله مارا بخوانید{{/a}} برای یادگیری بیشتر درباره لینک‌های داخلی که می تواند به سئوی شما کمک کند."],"Are you trying to use multiple keyphrases? You should add them separately below.":["آیا می خواهید از چندین عبارت کلیدی استفاده کنید؟ باید بطور جداگانه در زیر وارد کنید."],"Mark as cornerstone content":["نشانه گذاری بعنوان محتوای مهم"],"image preview":["پیش‌نمایش تصویر"],"Copied!":["کپی شد!"],"Not supported!":["پشتیبانی نمی شود!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["مطالعه {{a}}درباره ساختار سایت{{/a}} برای یادگیری درباره چگونگی بهبود سئو با لینک‌سازی داخلی."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["وقتی یکبار کمی بیشتر کپی کنید.به شما لیستی از محتواهای مرتبط که می توانید در نوشته خود لینک کنید به شما پیشنهاد می دهد."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["پیوند دادن به اینها را درنظر بگیرید {{a}}مقالات مهم{{/a}}"],"Consider linking to these articles:":["لینک دادن به این مقالات را در نظر بگیرید:"],"Copy link":["کپی لینک"],"Copy link to suggested article: %s":["کپی لینک به مقاله پیشنهادی: %s"],"Need help?":["به کمک نیاز دارید؟"],"Choose an image":["انتخاب تصویر"],"Remove the image":["پاک کردن این عکس"],"MailChimp signup failed:":["ثبت‌نام در Mailchimp شکست خورد:"],"Sign Up!":["ثبت‌نام!"],"There is an error with the request.":["خطایی با این درخواست رخ داده است."],"Select profile":["انتخاب پروفایل"],"Choose a profile":["انتخاب یک پروفایل"],"Authorization code":["کد مجوز گوگل"],"Reauthenticate with Google":["تعیین هویت مجدد با گوگل"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["برای اجازه %s آوردن اطلاعات شما از کنسول گوگل، لطفا کد تائیدیه گوگل را وارد کنید. روی دکمه زیر کلیک کنید تا در پنجره جدید باز شود."],"Enter your Google Authorization Code and press the Authenticate button.":["کد تائیدیه گوگل را وارد کرده و دکمه تائیدیه را بفشارید."],"There were no profiles found":["هیچ مشخصات کاربری پیدا نشد"],"Authenticate":["تصدیق"],"Get Google Authorization Code":["دریافت کد تصدیق گوگل"],"Email":["ایمیل"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=1; plural=0;","lang":"fa"},"We could not find any relevant articles on your website that you could link to from your post.":["ما نمی‌توانیم مقالات مرتبط با سایت شما برای پیوند به نوشته پیدا کنیم."],"The image you selected is too small for Facebook":["تصویر انتخابی شما برای فیسبوک کوچک است"],"The given image url cannot be loaded":["آدرس تصویر داده شده نمیتواند بارگذاری شود"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["این لیستی از محتواهایی می باشد که شما می توانید در نوشته خود به آن لینک دهید.{{a}} درباره ساختار سایت مقاله مارا بخوانید{{/a}} برای یادگیری بیشتر درباره لینک‌های داخلی که می تواند به سئوی شما کمک کند."],"Are you trying to use multiple keyphrases? You should add them separately below.":["آیا می خواهید از چندین عبارت کلیدی استفاده کنید؟ باید بطور جداگانه در زیر وارد کنید."],"Mark as cornerstone content":["نشانه گذاری بعنوان محتوای مهم"],"image preview":["پیش‌نمایش تصویر"],"Copied!":["کپی شد!"],"Not supported!":["پشتیبانی نمی شود!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["مطالعه {{a}}درباره ساختار سایت{{/a}} برای یادگیری درباره چگونگی بهبود سئو با لینک‌سازی داخلی."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["وقتی یکبار کمی بیشتر کپی کنید.به شما لیستی از محتواهای مرتبط که می توانید در نوشته خود لینک کنید به شما پیشنهاد می دهد."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["پیوند دادن به اینها را درنظر بگیرید {{a}}مقالات مهم{{/a}}"],"Consider linking to these articles:":["لینک دادن به این مقالات را در نظر بگیرید:"],"Copy link":["کپی لینک"],"Copy link to suggested article: %s":["کپی لینک به مقاله پیشنهادی: %s"],"Modify your meta description by editing it right here":["توضیحات متا را با ویرایش آن درست در اینجا اصلاح کنید"],"On":["روشن"],"Off":["خاموش"],"Good results":["نتایج خوب"],"Need help?":["به کمک نیاز دارید؟"],"Remove highlight from the text":["حذف برجسته کردن از متن"],"Highlight this result in the text":["این نتیجه را در متن برجسته کنید"],"Considerations":["ملاحظات"],"Errors":["خطاها"],"Change language":["تغییر زبان"],"(Opens in a new browser tab)":["(در یک برگه جدید مرورگر باز میکند)"],"Scroll to see the preview content.":["برای دیدن پیشنمایش محتوا اسکرول کنید."],"Mobile preview":["پیش نمایش موبایل"],"Desktop preview":["پیش نمایش دسکتاپ"],"Close snippet editor":["بستن ویرایشگر اسنیپت"],"Slug":["نامک"],"Marks are disabled in current view":["علائم در نمای جاری غیرفعال هستند"],"Choose an image":["انتخاب تصویر"],"Remove the image":["پاک کردن این عکس"],"MailChimp signup failed:":["ثبت‌نام در Mailchimp شکست خورد:"],"Sign Up!":["ثبت‌نام!"],"There is an error with the request.":["خطایی با این درخواست رخ داده است."],"Select profile":["انتخاب پروفایل"],"Choose a profile":["انتخاب یک پروفایل"],"Authorization code":["کد مجوز گوگل"],"Reauthenticate with Google":["تعیین هویت مجدد با گوگل"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["برای اجازه %s آوردن اطلاعات شما از کنسول گوگل، لطفا کد تائیدیه گوگل را وارد کنید. روی دکمه زیر کلیک کنید تا در پنجره جدید باز شود."],"Edit snippet":["ویرایش اسنیپت"],"Close the Wizard":["بستن نصب آسان"],"SEO title":["عنوان سئو"],"Enter your Google Authorization Code and press the Authenticate button.":["کد تائیدیه گوگل را وارد کرده و دکمه تائیدیه را بفشارید."],"Improvements":["بهبودها"],"Problems":["مشکلات"],"There were no profiles found":["هیچ مشخصات کاربری پیدا نشد"],"Authenticate":["تصدیق"],"Get Google Authorization Code":["دریافت کد تصدیق گوگل"],"Search":["جستجو"],"Email":["ایمیل"],"Close":["بستن"],"Meta description":["توضیح متا"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"fr_CA"},"We could not find any relevant articles on your website that you could link to from your post.":["Nous n’avons pas trouvé d’article pertinent sur votre site vers lequel vous pourriez faire un lien."],"The image you selected is too small for Facebook":["L’image sélectionnée est trop petite pour Facebook"],"The given image url cannot be loaded":["L’URL de l’image ne peut pas être chargée"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Ceci est une liste de contenus liés vers lesquels vous pourriez faire des liens dans cette publication. {{a}}Lisez notre article sur la structure des sites{{/a}} pour en apprendre plus sur l’intérêt des liens internes pour votre référencement."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Essayez-vous d’utiliser plusieurs requêtes? Vous devriez les ajouter ci-dessous séparément."],"Mark as cornerstone content":["Marquer comme contenu Cornerstone"],"image preview":["Prévisualisation de l'image"],"Copied!":["Copié!"],"Not supported!":["Non supporté!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Lire {{a}}notre article sur la structure d'un site{{/a}} pour en apprendre plus sur comment les liens internes peuvent améliorer le référencement naturel."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Quand vous aurez plus de matériel, nous vous donnerons ici une liste de contenus suggérés que vous pourrez lier à votre article."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Envisager un lien vers ces {{a}}articles incontournables{{/a}}"],"Consider linking to these articles:":["Envisager des liens vers ces articles"],"Copy link":["Copier le lien"],"Copy link to suggested article: %s":["Copier le lien vers l'article suggéré: %s"],"Need help?":["Besoin d'aide?"],"Choose an image":["Choisir une image"],"Remove the image":["Supprimer cette image"],"MailChimp signup failed:":["Échec d’inscription à MailChimp :"],"Sign Up!":["Abonnez-vous !"],"There is an error with the request.":["Une erreur s’est produite avec votre requête."],"Select profile":["Sélectionnez un profil"],"Choose a profile":["Choisissez un profil"],"Authorization code":["Code d’autorisation"],"Reauthenticate with Google":["Se ré-authentifier avec Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Pour permettre à %s de récupérer vos informations de la Google Search Console, veuillez saisir votre code d’autorisation de Google. Lorsque vous cliquerez sur le bouton ci-dessous une nouvelle fenêtre s’ouvrira."],"Enter your Google Authorization Code and press the Authenticate button.":["Saisissez votre code d’autorisation de Google et appuyez sur le bouton d’authentification."],"There were no profiles found":["Aucun profil n’a été trouvé. "],"Authenticate":["S’authentifier"],"Get Google Authorization Code":["Obtenir un Code d’Autorisation Google"],"Email":["E-mail"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"fr_CA"},"We could not find any relevant articles on your website that you could link to from your post.":["Nous n’avons pas trouvé d’article pertinent sur votre site vers lequel vous pourriez faire un lien."],"The image you selected is too small for Facebook":["L’image sélectionnée est trop petite pour Facebook"],"The given image url cannot be loaded":["L’URL de l’image ne peut pas être chargée"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Ceci est une liste de contenus liés vers lesquels vous pourriez faire des liens dans cette publication. {{a}}Lisez notre article sur la structure des sites{{/a}} pour en apprendre plus sur l’intérêt des liens internes pour votre référencement."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Essayez-vous d’utiliser plusieurs requêtes? Vous devriez les ajouter ci-dessous séparément."],"Mark as cornerstone content":["Marquer comme contenu Cornerstone"],"image preview":["Prévisualisation de l'image"],"Copied!":["Copié!"],"Not supported!":["Non supporté!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Lire {{a}}notre article sur la structure d'un site{{/a}} pour en apprendre plus sur comment les liens internes peuvent améliorer le référencement naturel."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Quand vous aurez plus de matériel, nous vous donnerons ici une liste de contenus suggérés que vous pourrez lier à votre article."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Envisager un lien vers ces {{a}}articles incontournables{{/a}}"],"Consider linking to these articles:":["Envisager des liens vers ces articles"],"Copy link":["Copier le lien"],"Copy link to suggested article: %s":["Copier le lien vers l'article suggéré: %s"],"Modify your meta description by editing it right here":["Modifiez votre méta description directement ici"],"On":["Activé"],"Off":["Désactivé"],"Good results":["Déjà optimisé"],"Need help?":["Besoin d'aide?"],"Remove highlight from the text":["Retirer le surlignement du texte"],"Highlight this result in the text":["Surligner ce résultat dans le texte"],"Considerations":["Considérations "],"Errors":["Erreurs"],"Change language":["Changer de langue"],"(Opens in a new browser tab)":["(S’ouvre dans un nouvel onglet) "],"Scroll to see the preview content.":["Faire défiler pour voir l’aperçu du contenu."],"Mobile preview":["Prévisualisation \"Mobile\""],"Desktop preview":["Prévisualisation \"PC de bureau\""],"Close snippet editor":["Fermer l’éditeur d’extrait"],"Slug":["Identifiant"],"Marks are disabled in current view":["Les marques sont désactivés dans la vue actuelle"],"Choose an image":["Choisir une image"],"Remove the image":["Supprimer cette image"],"MailChimp signup failed:":["Échec d’inscription à MailChimp :"],"Sign Up!":["Abonnez-vous !"],"There is an error with the request.":["Une erreur s’est produite avec votre requête."],"Select profile":["Sélectionnez un profil"],"Choose a profile":["Choisissez un profil"],"Authorization code":["Code d’autorisation"],"Reauthenticate with Google":["Se ré-authentifier avec Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Pour permettre à %s de récupérer vos informations de la Google Search Console, veuillez saisir votre code d’autorisation de Google. Lorsque vous cliquerez sur le bouton ci-dessous une nouvelle fenêtre s’ouvrira."],"Edit snippet":["Modifier l’extrait"],"Close the Wizard":["Fermer l’assistant"],"SEO title":["Titre SEO"],"Enter your Google Authorization Code and press the Authenticate button.":["Saisissez votre code d’autorisation de Google et appuyez sur le bouton d’authentification."],"Improvements":["Améliorations"],"Problems":["Problèmes"],"There were no profiles found":["Aucun profil n’a été trouvé. "],"Authenticate":["S’authentifier"],"Get Google Authorization Code":["Obtenir un Code d’Autorisation Google"],"Search":["Rechercher"],"Email":["E-mail"],"Close":["Fermer"],"Meta description":["Méta description"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n > 1;","lang":"fr"},"We could not find any relevant articles on your website that you could link to from your post.":["Nous n’avons pas trouvé d’article pertinent sur votre site vers lequel vous pourriez faire un lien."],"The image you selected is too small for Facebook":["L’image sélectionnée est trop petite pour Facebook"],"The given image url cannot be loaded":["L’URL de l’image ne peut pas être chargée"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Ceci est une liste de contenu liés vers lesquels vous pourriez faire des liens dans cette publication. {{a}}Lisez notre article sur la structure des sites{{/a}} pour en apprendre plus sur l’intérêt du maillage interne pour votre référencement."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Essayez-vous d’utiliser plusieurs requêtes ? Vous devriez les ajouter ci-dessous séparément."],"Mark as cornerstone content":["Marquer comme contenu Cornerstone"],"image preview":["prévisualisation de l’image"],"Copied!":["Copié !"],"Not supported!":["Non compatible !"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Lisez {{a}}notre article sur la structure de site{{/a}} pour en savoir plus sur l’impact du maillage interne sur votre référencement naturel."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Une fois que vous aurez ajouté plus de texte, nous vous donnerons une liste de contenus liés que vous pourriez mentionner dans votre publication."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Envisagez de faire des liens vers ces {{a}}articles Cornerstone :{{/a}}"],"Consider linking to these articles:":["Envisagez de faire des liens vers ces articles :"],"Copy link":["Copier le lien"],"Copy link to suggested article: %s":["Copier le lien de l’article suggéré : %s"],"Need help?":["Besoin d’aide ?"],"Choose an image":["Choisir une image"],"Remove the image":["Supprimer cette image"],"MailChimp signup failed:":["Échec d’inscription à MailChimp :"],"Sign Up!":["Abonnez-vous !"],"There is an error with the request.":["Une erreur s’est produite avec votre requête."],"Select profile":["Sélectionnez un profil"],"Choose a profile":["Choisissez un profil"],"Authorization code":["Code d’autorisation"],"Reauthenticate with Google":["Se ré-authentifier avec Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Pour permettre à %s de récupérer vos informations de la Google Search Console, veuillez saisir votre code d’autorisation de Google. Lorsque vous cliquerez sur le bouton ci-dessous une nouvelle fenêtre s’ouvrira."],"Enter your Google Authorization Code and press the Authenticate button.":["Saisissez votre code d’autorisation de Google et appuyez sur le bouton d’authentification."],"There were no profiles found":["Aucun profil n’a été trouvé. "],"Authenticate":["S’authentifier"],"Get Google Authorization Code":["Obtenir un Code d’Autorisation Google"],"Email":["E-mail"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n > 1;","lang":"fr"},"We could not find any relevant articles on your website that you could link to from your post.":["Nous n’avons pas trouvé d’article pertinent sur votre site vers lequel vous pourriez faire un lien."],"The image you selected is too small for Facebook":["L’image sélectionnée est trop petite pour Facebook"],"The given image url cannot be loaded":["L’URL de l’image ne peut pas être chargée"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Ceci est une liste de contenu liés vers lesquels vous pourriez faire des liens dans cette publication. {{a}}Lisez notre article sur la structure des sites{{/a}} pour en apprendre plus sur l’intérêt du maillage interne pour votre référencement."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Essayez-vous d’utiliser plusieurs requêtes ? Vous devriez les ajouter ci-dessous séparément."],"Mark as cornerstone content":["Marquer comme contenu Cornerstone"],"image preview":["prévisualisation de l’image"],"Copied!":["Copié !"],"Not supported!":["Non compatible !"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Lisez {{a}}notre article sur la structure de site{{/a}} pour en savoir plus sur l’impact du maillage interne sur votre référencement naturel."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Une fois que vous aurez ajouté plus de texte, nous vous donnerons une liste de contenus liés que vous pourriez mentionner dans votre publication."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Envisagez de faire des liens vers ces {{a}}articles Cornerstone :{{/a}}"],"Consider linking to these articles:":["Envisagez de faire des liens vers ces articles :"],"Copy link":["Copier le lien"],"Copy link to suggested article: %s":["Copier le lien de l’article suggéré : %s"],"Modify your meta description by editing it right here":["Modifiez votre méta description en l’éditant ici"],"On":["Activé"],"Off":["Désactivé"],"Good results":["Déjà optimisé"],"Need help?":["Besoin d’aide ?"],"Remove highlight from the text":["Retirer le surlignement du texte"],"Highlight this result in the text":["Surligner ce résultat dans le texte"],"Considerations":["Considérations"],"Errors":["Erreurs"],"Change language":["Changer de langue"],"(Opens in a new browser tab)":["(S’ouvre dans un nouvel onglet)"],"Scroll to see the preview content.":["Faites défiler pour voir la prévisualisation du contenu."],"Mobile preview":["Prévisualisation \"Mobile\""],"Desktop preview":["Prévisualisation \"PC de bureau\""],"Close snippet editor":["Fermer l’éditeur de métadonnées"],"Slug":["Slug"],"Marks are disabled in current view":["Les marques sont désactivés dans la vue actuelle"],"Choose an image":["Choisir une image"],"Remove the image":["Supprimer cette image"],"MailChimp signup failed:":["Échec d’inscription à MailChimp :"],"Sign Up!":["Abonnez-vous !"],"There is an error with the request.":["Une erreur s’est produite avec votre requête."],"Select profile":["Sélectionnez un profil"],"Choose a profile":["Choisissez un profil"],"Authorization code":["Code d’autorisation"],"Reauthenticate with Google":["Se ré-authentifier avec Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Pour permettre à %s de récupérer vos informations de la Google Search Console, veuillez saisir votre code d’autorisation de Google. Lorsque vous cliquerez sur le bouton ci-dessous une nouvelle fenêtre s’ouvrira."],"Edit snippet":["Modifier les métadonnées"],"Close the Wizard":["Fermer l’assistant"],"SEO title":["Méta titre"],"Enter your Google Authorization Code and press the Authenticate button.":["Saisissez votre code d’autorisation de Google et appuyez sur le bouton d’authentification."],"Improvements":["Améliorations"],"Problems":["Problèmes"],"There were no profiles found":["Aucun profil n’a été trouvé. "],"Authenticate":["S’authentifier"],"Get Google Authorization Code":["Obtenir un Code d’Autorisation Google"],"Search":["Rechercher"],"Email":["E-mail"],"Close":["Fermer"],"Meta description":["Méta description"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"gl_ES"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":["A imaxe que elixiches é demasiado pequena para Facebook"],"The given image url cannot be loaded":["A URL da imaxe dada non se pode cargar"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Esta é unha lista de contido relacionado ao que podes vincular na túa publicación. {{a}} Lea o noso artigo sobre a estrutura do sitio {{/ a}} para obter máis información sobre como o enlace interno pode axudar a mellorar o seu SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Estás a tratar de usar varias palabras crave? Debe agregalas por separado a continuación."],"Mark as cornerstone content":["Marcar como contido fundamental"],"image preview":["previsualización de imaxe"],"Copied!":["Copiado!"],"Not supported!":["Non soportado!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Le {{a}}o noso artigo sobre a estrutura do sitio{{/ a}} para obter máis información sobre como as ligazóns internas poden axudarche a mellorar o teu SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Unha vez engadas un pouco máis de texto, darémosche aquí unha lista de contido relacionado o cal ti poderías ligar dende a túa entrada."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Considera ligar a estos {{a}}artigos esenciais:{{/a}}"],"Consider linking to these articles:":["Considera enlazar a estes artigos:"],"Copy link":["Copiar ligazon"],"Copy link to suggested article: %s":["Copia a ligazón ao artigo suxerido: %s"],"Need help?":["Necesitas axuda?"],"Choose an image":["Elixe unha imaxe"],"Remove the image":["Quita a imaxe"],"MailChimp signup failed:":["Ou rexistro en Mailchimp fallou:"],"Sign Up!":["Rexístrate!"],"There is an error with the request.":["Ocorreu un erro na solicitude."],"Select profile":["Elixe perfil"],"Choose a profile":["Elixe un perfil"],"Authorization code":["Código de autorización"],"Reauthenticate with Google":["Volver a identificar con Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Para permitir que %s obteña a túa información da consola de procura de Google, por favor, introduce o teu código de autorización de Google. Ao facer clic non botón de abaixo abrirase unha nova xanela."],"Enter your Google Authorization Code and press the Authenticate button.":["Introduce o teu código de autorización de Google e preme o botón Autorizar."],"There were no profiles found":["Non se atoparon perfís"],"Authenticate":["Autorizar"],"Get Google Authorization Code":["Obter o código de autorización de Google"],"Email":["Correo"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"gl_ES"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":["A imaxe que elixiches é demasiado pequena para Facebook"],"The given image url cannot be loaded":["A URL da imaxe dada non se pode cargar"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Esta é unha lista de contido relacionado ao que podes vincular na túa publicación. {{a}} Lea o noso artigo sobre a estrutura do sitio {{/ a}} para obter máis información sobre como o enlace interno pode axudar a mellorar o seu SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Estás a tratar de usar varias palabras crave? Debe agregalas por separado a continuación."],"Mark as cornerstone content":["Marcar como contido fundamental"],"image preview":["previsualización de imaxe"],"Copied!":["Copiado!"],"Not supported!":["Non soportado!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Le {{a}}o noso artigo sobre a estrutura do sitio{{/ a}} para obter máis información sobre como as ligazóns internas poden axudarche a mellorar o teu SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Unha vez engadas un pouco máis de texto, darémosche aquí unha lista de contido relacionado o cal ti poderías ligar dende a túa entrada."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Considera ligar a estos {{a}}artigos esenciais:{{/a}}"],"Consider linking to these articles:":["Considera enlazar a estes artigos:"],"Copy link":["Copiar ligazon"],"Copy link to suggested article: %s":["Copia a ligazón ao artigo suxerido: %s"],"Modify your meta description by editing it right here":["Modifique a súa meta descrición editandoa aquí"],"On":["Acendido"],"Off":["Apagado"],"Good results":["Bos resultados"],"Need help?":["Necesitas axuda?"],"Remove highlight from the text":["Eliminar resaltado do texto"],"Highlight this result in the text":["Resalta este resultado no texto"],"Considerations":["Consideracións"],"Errors":["Erros"],"Change language":["Cambiar idioma"],"(Opens in a new browser tab)":["(Ábrese nunha nova pestana do navegador)"],"Scroll to see the preview content.":["Navega para ver a vista previa do contido."],"Mobile preview":["Vista previa móvil"],"Desktop preview":["Vista previa do escritorio"],"Close snippet editor":["Pechar o editor de snippet"],"Slug":["Slug"],"Marks are disabled in current view":["As marcas están desactivadas na vista actual"],"Choose an image":["Elixe unha imaxe"],"Remove the image":["Quita a imaxe"],"MailChimp signup failed:":["Ou rexistro en Mailchimp fallou:"],"Sign Up!":["Rexístrate!"],"There is an error with the request.":["Ocorreu un erro na solicitude."],"Select profile":["Elixe perfil"],"Choose a profile":["Elixe un perfil"],"Authorization code":["Código de autorización"],"Reauthenticate with Google":["Volver a identificar con Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Para permitir que %s obteña a túa información da consola de procura de Google, por favor, introduce o teu código de autorización de Google. Ao facer clic non botón de abaixo abrirase unha nova xanela."],"Edit snippet":["Editar snippet"],"Close the Wizard":["Pechar o asistente"],"SEO title":["Título SEO"],"Enter your Google Authorization Code and press the Authenticate button.":["Introduce o teu código de autorización de Google e preme o botón Autorizar."],"Improvements":["Melloras"],"Problems":["Problemas"],"There were no profiles found":["Non se atoparon perfís"],"Authenticate":["Autorizar"],"Get Google Authorization Code":["Obter o código de autorización de Google"],"Search":["Buscar"],"Email":["Correo"],"Close":["Pechar"],"Meta description":["Meta descrición"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"he_IL"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":["התמונה שנבחרה קטנה מדי עבור פייסבוק"],"The given image url cannot be loaded":["לא ניתן לטעון תמונה מהכתובת שניתנה"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["זוהי רשימה של תכנים רלוונטיים שניתן לקשר אליה מהפוסט. {{a}}קרא את המאמר שלנו על היררכית אתרים{{/a}} כדי ללמוד עוד על הדרך בה קישורים פנימיים יכולים לסייע בשיפור ה-SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["האם אתה מנסה להשתמש בביטוי מפתח מרובים? יש להוסיף אותם למטה בנפרד."],"Mark as cornerstone content":["סמן כעוגני תוכן"],"image preview":["תצוגת תמונה"],"Copied!":["הועתק"],"Not supported!":["לא נתמך!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["קרא {{a}}את המאמר שלנו על מבנה האתר{{/a}} כדי ללמוד איך קישורים פנימיים יכולים לשפר את ה-SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["לאחר הוספת תוכן נוסף, תוצג רשימה של תוכן קשור שאליו ניתן יהיה לקשר מהפוסט הזה."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["יש לשקול להוסיף קישורים ל{{a}}עוגני תוכן{{/a}} אלה:"],"Consider linking to these articles:":["יש לשקול להוסיף קישורים למאמרים אלה:"],"Copy link":["העתק קישור"],"Copy link to suggested article: %s":["העתק קישור למאמר מוצע: %s"],"Need help?":["צריך עזרה?"],"Choose an image":["בחר תמונה"],"Remove the image":["הסר תמונה"],"MailChimp signup failed:":["הרשמה למייל-צ'ימפ נכשלה:"],"Sign Up!":["הירשם!"],"There is an error with the request.":["קיימת שגיאה בבקשה."],"Select profile":["בחירת פרופיל"],"Choose a profile":["בחר פרופיל"],"Authorization code":["קוד זיהוי"],"Reauthenticate with Google":["אמת מחדש באמצעות גוגל"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["כדי לאפשר ל-%s לאחזר מידע מקונסולת החיפוש של גוגל, אנא הזן את קוד הזיהוי של גוגל. לחיצה על הכפתור למטה תגרום לפתיחת חלון חדש."],"Enter your Google Authorization Code and press the Authenticate button.":["הזן קוד זיהוי של גוגל ולחץ על כפתור האימות."],"There were no profiles found":["לא נמצאו פרופילים"],"Authenticate":["אימות"],"Get Google Authorization Code":["קבל קוד זיהוי מגוגל"],"Email":["אימייל"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"he_IL"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":["התמונה שנבחרה קטנה מדי עבור פייסבוק"],"The given image url cannot be loaded":["לא ניתן לטעון תמונה מהכתובת שניתנה"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["זוהי רשימה של תכנים רלוונטיים שניתן לקשר אליה מהפוסט. {{a}}קרא את המאמר שלנו על היררכית אתרים{{/a}} כדי ללמוד עוד על הדרך בה קישורים פנימיים יכולים לסייע בשיפור ה-SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["האם אתה מנסה להשתמש בביטוי מפתח מרובים? יש להוסיף אותם למטה בנפרד."],"Mark as cornerstone content":["סמן כעוגני תוכן"],"image preview":["תצוגת תמונה"],"Copied!":["הועתק"],"Not supported!":["לא נתמך!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["קרא {{a}}את המאמר שלנו על מבנה האתר{{/a}} כדי ללמוד איך קישורים פנימיים יכולים לשפר את ה-SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["לאחר הוספת תוכן נוסף, תוצג רשימה של תוכן קשור שאליו ניתן יהיה לקשר מהפוסט הזה."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["יש לשקול להוסיף קישורים ל{{a}}עוגני תוכן{{/a}} אלה:"],"Consider linking to these articles:":["יש לשקול להוסיף קישורים למאמרים אלה:"],"Copy link":["העתק קישור"],"Copy link to suggested article: %s":["העתק קישור למאמר מוצע: %s"],"Modify your meta description by editing it right here":["שנה את תיאור המטא על ידי עריכתו כאן"],"On":["מופעל"],"Off":["מכובה"],"Good results":["תוצאות טובות"],"Need help?":["צריך עזרה?"],"Remove highlight from the text":["תמחק את ההדגשה מהטקסט"],"Highlight this result in the text":["הדגש את התוצאה הזו בטקסט"],"Considerations":["נקודות לשיקול דעת"],"Errors":["שגיאות"],"Change language":["שינוי שפה"],"(Opens in a new browser tab)":["(פתח בטאב חדש בדפדפן)"],"Scroll to see the preview content.":["גלול לתצוגה מוקדמת של התוכן."],"Mobile preview":["תצוגה מקדימה למובייל"],"Desktop preview":["תצוגה מקדימה למחשב"],"Close snippet editor":["סגור את עורך הסניפט"],"Slug":["סלאג"],"Marks are disabled in current view":["סימונים אינם פעילים בתצוגה הנוכחית"],"Choose an image":["בחר תמונה"],"Remove the image":["הסר תמונה"],"MailChimp signup failed:":["הרשמה למייל-צ'ימפ נכשלה:"],"Sign Up!":["הירשם!"],"There is an error with the request.":["קיימת שגיאה בבקשה."],"Select profile":["בחירת פרופיל"],"Choose a profile":["בחר פרופיל"],"Authorization code":["קוד זיהוי"],"Reauthenticate with Google":["אמת מחדש באמצעות גוגל"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["כדי לאפשר ל-%s לאחזר מידע מקונסולת החיפוש של גוגל, אנא הזן את קוד הזיהוי של גוגל. לחיצה על הכפתור למטה תגרום לפתיחת חלון חדש."],"Edit snippet":["ערוך סניפט"],"Close the Wizard":["סגור את האשף"],"SEO title":["כותרת SEO"],"Enter your Google Authorization Code and press the Authenticate button.":["הזן קוד זיהוי של גוגל ולחץ על כפתור האימות."],"Improvements":["שיפורים"],"Problems":["בעיות"],"There were no profiles found":["לא נמצאו פרופילים"],"Authenticate":["אימות"],"Get Google Authorization Code":["קבל קוד זיהוי מגוגל"],"Search":["חיפוש"],"Email":["אימייל"],"Close":["סגור"],"Meta description":["תיאור מטא"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);","lang":"hr"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":[],"The given image url cannot be loaded":[],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Ovo je list srodnog sadržaja prema kojem možete postaviti poveznice u objavi. {{a}}Pročitajte naš članak o strukturi web-stranice{{/a}} kako bi naučili više o tome kako interno povezivanje može poboljšati SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Pokušavate upotrijebiti više ključnih riječi? Trebate ih dodati zasebno ispod."],"Mark as cornerstone content":["Označi kao temeljni sadržaj"],"image preview":["Pregled slike"],"Copied!":["Kopirano!"],"Not supported!":["Nepodržano!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Pročitajte {{a}}naš artikl o strukturi{{/a}} web-stranice da bi više naučili kako unutarnje poveznice mogu pomoći poboljšati vaš SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Kada dodate još malo teksta, dobiti ćete listu predloženog sadržaja koje možete povezati u vašoj objavi."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Razmislite o povezivanju do ovih {{a}}temeljnih članaka:{{/a}}"],"Consider linking to these articles:":["Razmislite o povezivanju do ovih članaka:"],"Copy link":["Kopiraj poveznicu"],"Copy link to suggested article: %s":["Kopiraj poveznicu do predloženog članka; %s"],"Need help?":["Trebate pomoć?"],"Choose an image":["Odaberite jednu sliku"],"Remove the image":["Uklonite sliku"],"MailChimp signup failed:":["Prijava na MailChimp nije uspjela:"],"Sign Up!":["Prijavite se!"],"There is an error with the request.":["Došlo je do pogreške u vašem zahtjevu."],"Select profile":["Izaberite profil"],"Choose a profile":["Izaberite profil"],"Authorization code":["Autorizacijski kod"],"Reauthenticate with Google":["Ponovna provjera s Googleom"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Da bi ste omogućili %s da dohvati vaše podatke sa Googleove konzole za pretraživanje molimo vas da unesete vaš Googleov autorizacijski kod. Klikom na gumb ispod otvoriti će se novi prozor."],"Enter your Google Authorization Code and press the Authenticate button.":["Unesite svoj Google Authorization Code i kliknite gumb Autentifikacija."],"There were no profiles found":["Nema pronađenih profila"],"Authenticate":["Autentifikacija"],"Get Google Authorization Code":["Zatraži Google Authorization Code"],"Email":["E-pošta"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);","lang":"hr"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":[],"The given image url cannot be loaded":[],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Ovo je list srodnog sadržaja prema kojem možete postaviti poveznice u objavi. {{a}}Pročitajte naš članak o strukturi web-stranice{{/a}} kako bi naučili više o tome kako interno povezivanje može poboljšati SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Pokušavate upotrijebiti više ključnih riječi? Trebate ih dodati zasebno ispod."],"Mark as cornerstone content":["Označi kao temeljni sadržaj"],"image preview":["Pregled slike"],"Copied!":["Kopirano!"],"Not supported!":["Nepodržano!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Pročitajte {{a}}naš artikl o strukturi{{/a}} web-stranice da bi više naučili kako unutarnje poveznice mogu pomoći poboljšati vaš SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Kada dodate još malo teksta, dobiti ćete listu predloženog sadržaja koje možete povezati u vašoj objavi."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Razmislite o povezivanju do ovih {{a}}temeljnih članaka:{{/a}}"],"Consider linking to these articles:":["Razmislite o povezivanju do ovih članaka:"],"Copy link":["Kopiraj poveznicu"],"Copy link to suggested article: %s":["Kopiraj poveznicu do predloženog članka; %s"],"Modify your meta description by editing it right here":["Izmijenite meta opis tako da ga uredite upravo ovdje"],"On":[],"Off":[],"Good results":["Dobri rezultati"],"Need help?":["Trebate pomoć?"],"Remove highlight from the text":["Ukloniti istaknuto iz teksta"],"Highlight this result in the text":["Označi ovaj rezultat u tekstu"],"Considerations":["Sagledavanja"],"Errors":["Greške"],"Change language":["Promijeni jezik"],"(Opens in a new browser tab)":["(Otvara se u novoj kartice preglednika)"],"Scroll to see the preview content.":["Pomaknite kako bi pretpregledali sadržaj."],"Mobile preview":["Mobilni pretpregled"],"Desktop preview":["Desktop pretpregled"],"Close snippet editor":["Zatvori uređivač isječaka"],"Slug":["Slug"],"Marks are disabled in current view":["Oznake (Marks) su onesposobljene u trenutnom pregledu"],"Choose an image":["Odaberite jednu sliku"],"Remove the image":["Uklonite sliku"],"MailChimp signup failed:":["Prijava na MailChimp nije uspjela:"],"Sign Up!":["Prijavite se!"],"There is an error with the request.":["Došlo je do pogreške u vašem zahtjevu."],"Select profile":["Izaberite profil"],"Choose a profile":["Izaberite profil"],"Authorization code":["Autorizacijski kod"],"Reauthenticate with Google":["Ponovna provjera s Googleom"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Da bi ste omogućili %s da dohvati vaše podatke sa Googleove konzole za pretraživanje molimo vas da unesete vaš Googleov autorizacijski kod. Klikom na gumb ispod otvoriti će se novi prozor."],"Edit snippet":["Uredi isječak"],"Close the Wizard":["Zatvorite Čarobnjaka"],"SEO title":["SEO naslov"],"Enter your Google Authorization Code and press the Authenticate button.":["Unesite svoj Google Authorization Code i kliknite gumb Autentifikacija."],"Improvements":["Poboljšanja"],"Problems":["Problemi"],"There were no profiles found":["Nema pronađenih profila"],"Authenticate":["Autentifikacija"],"Get Google Authorization Code":["Zatraži Google Authorization Code"],"Search":["Pretraži"],"Email":["E-pošta"],"Close":["Zatvori"],"Meta description":["Meta opis"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"hu"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":[],"The given image url cannot be loaded":[],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":[],"Are you trying to use multiple keyphrases? You should add them separately below.":["Több kulcskifejezést próbál hozzáadni? Alább tudja hozzáadni őket elkülönítve."],"Mark as cornerstone content":[],"image preview":["kép előnézete"],"Copied!":["Másolva!"],"Not supported!":["Nem támogatott!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Olvasd el {{a}}írásunkat az oldal struktúrákról{{/a}}, hogy megtudhasd miképp segít a belső linkelés növelni a SEO értéked."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":[],"Consider linking to these {{a}}cornerstone articles:{{/a}}":[],"Consider linking to these articles:":["Mérlegelje ezen cikkek linkelését:"],"Copy link":["Hivatkozás másolása"],"Copy link to suggested article: %s":[],"Need help?":["Szükséged van segítségre?"],"Choose an image":["Kép kiválasztása"],"Remove the image":["Kép eltávolítás"],"MailChimp signup failed:":["MailChimp regisztráció sikertelen:"],"Sign Up!":["Regisztráció!"],"There is an error with the request.":["Hiba történt a lekérés során."],"Select profile":["Profil választása"],"Choose a profile":["Profil választás"],"Authorization code":[],"Reauthenticate with Google":["Google Újrahitelesítés"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Ahhoz, hogy %s letöltse a Google Search Console információkért kérjük, adja meg a Google engedélyezési kódot. Az alábbi gombra kattintva megnyílik egy új ablakban."],"Enter your Google Authorization Code and press the Authenticate button.":["Írd be a Google Authorization Code-ot (hitelesítő kód) és nyomj a Hitelesítés gombra."],"There were no profiles found":["Nem található ilyen profil"],"Authenticate":["Hitelesítés"],"Get Google Authorization Code":["Adja meg a Google Jóváhagyó Kódját"],"Email":["Email"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"hu"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":[],"The given image url cannot be loaded":[],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":[],"Are you trying to use multiple keyphrases? You should add them separately below.":["Több kulcskifejezést próbál hozzáadni? Alább tudja hozzáadni őket elkülönítve."],"Mark as cornerstone content":[],"image preview":["kép előnézete"],"Copied!":["Másolva!"],"Not supported!":["Nem támogatott!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Olvasd el {{a}}írásunkat az oldal struktúrákról{{/a}}, hogy megtudhasd miképp segít a belső linkelés növelni a SEO értéked."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":[],"Consider linking to these {{a}}cornerstone articles:{{/a}}":[],"Consider linking to these articles:":["Mérlegelje ezen cikkek linkelését:"],"Copy link":["Hivatkozás másolása"],"Copy link to suggested article: %s":[],"Modify your meta description by editing it right here":["Itt szerkesztve módosíthatod a meta leírásod"],"On":["Be"],"Off":["Ki"],"Good results":["Jó eredmények"],"Need help?":["Szükséged van segítségre?"],"Remove highlight from the text":["Szövegkiemelés eltávolítása."],"Highlight this result in the text":["Emeld ki ezt az eredményt a szövegben."],"Considerations":["Megfontolandók"],"Errors":["Hibák"],"Change language":["Nyelv változtatása"],"(Opens in a new browser tab)":["(Új böngésző lapon nyílik)"],"Scroll to see the preview content.":["Az előnézet megtekintéséhez görgessen lejjebb."],"Mobile preview":["Mobil előnézett"],"Desktop preview":["Asztali előnézett"],"Close snippet editor":["Kivonat szerkesztő bezárása"],"Slug":["Keresőbarát név"],"Marks are disabled in current view":["A jelek tiltva vannak a jelenlegi nézetben"],"Choose an image":["Kép kiválasztása"],"Remove the image":["Kép eltávolítás"],"MailChimp signup failed:":["MailChimp regisztráció sikertelen:"],"Sign Up!":["Regisztráció!"],"There is an error with the request.":["Hiba történt a lekérés során."],"Select profile":["Profil választása"],"Choose a profile":["Profil választás"],"Authorization code":[],"Reauthenticate with Google":["Google Újrahitelesítés"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Ahhoz, hogy %s letöltse a Google Search Console információkért kérjük, adja meg a Google engedélyezési kódot. Az alábbi gombra kattintva megnyílik egy új ablakban."],"Edit snippet":["Kivonat szerkesztése"],"Close the Wizard":["Varázsló bezárása"],"SEO title":["SEO cím"],"Enter your Google Authorization Code and press the Authenticate button.":["Írd be a Google Authorization Code-ot (hitelesítő kód) és nyomj a Hitelesítés gombra."],"Improvements":["Fejlesztések"],"Problems":["Problémák"],"There were no profiles found":["Nem található ilyen profil"],"Authenticate":["Hitelesítés"],"Get Google Authorization Code":["Adja meg a Google Jóváhagyó Kódját"],"Search":["Keresés"],"Email":["Email"],"Close":["Bezár"],"Meta description":["Metaleírás"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"it"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":["L'immagine che hai selezionato è troppo piccola per Facebook "],"The given image url cannot be loaded":["L'URL dell'immagine inserito non può essere caricato"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Questa è una lista di contenuti correlati che potresti inserire come collegamenti nel tuo articolo {{a}}Leggi il nostro articolo sulla struttura di un sito{{/a}} per approfondire il ruolo dell'internal linking nella tua strategia SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Stai cercando di utilizzare più frasi chiave? Dovresti aggiungerle separatamente sotto."],"Mark as cornerstone content":["Indica come contenuto centrale"],"image preview":["anteprima dell'immagine"],"Copied!":["Copiato!"],"Not supported!":["Non supportato!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Leggi {{a}} il nostro articolo sulla struttura del sito {{/a}} per imparare di più su come i link interni possono aiutarti a migliorare la tua strategia SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Una volta aggiunto più contenuto, ti forniremo qui un elenco di contenuti correlati a cui potresti collegare il tuo articolo."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Prendi in considerazione di inserire il collegamento a questi {{a}}articoli cornerstone:{{/a}}"],"Consider linking to these articles:":["Prendi in considerazione di inserire il collegamento a questi articoli:"],"Copy link":["Copia il link"],"Copy link to suggested article: %s":["Copia il link all'articolo suggerito: %s"],"Need help?":["Ti serve aiuto?"],"Choose an image":["Seleziona un'immagine"],"Remove the image":["Rimuovi l'immagine"],"MailChimp signup failed:":["Iscrizione a MailChimp fallita:"],"Sign Up!":["Iscriviti!"],"There is an error with the request.":["C'è un errore con questa richiesta."],"Select profile":["Seleziona il profilo"],"Choose a profile":["Scegli un profilo"],"Authorization code":["Codice di autorizzazione"],"Reauthenticate with Google":["Autenticati nuovamente con Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Per consentire a %s di recuperare le tue informazioni dalla Google Search Console, inserisci il Codice di autorizzazione di Google. Facendo clic sul link sottostante si aprirà una nuova finestra."],"Enter your Google Authorization Code and press the Authenticate button.":["inserisci il tuo Codice di Autorizzazione di Google e premi il pulsante di Autenticazione."],"There were no profiles found":["Nessun profilo trovato"],"Authenticate":["Autenticati"],"Get Google Authorization Code":["Ricevi Codice di Autorizzazione di Google."],"Email":["Email"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"it"},"We could not find any relevant articles on your website that you could link to from your post.":["Non troviamo nessun articolo rilevante sul tuo sito che possa essere inserito come link nel tuo articolo."],"The image you selected is too small for Facebook":["L'immagine che hai selezionato è troppo piccola per Facebook "],"The given image url cannot be loaded":["L'URL dell'immagine inserito non può essere caricato"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Questa è una lista di contenuti correlati che potresti inserire come collegamenti nel tuo articolo {{a}}Leggi il nostro articolo sulla struttura di un sito{{/a}} per approfondire il ruolo dell'internal linking nella tua strategia SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Stai cercando di utilizzare più frasi chiave? Dovresti aggiungerle separatamente sotto."],"Mark as cornerstone content":["Indica come contenuto centrale"],"image preview":["anteprima dell'immagine"],"Copied!":["Copiato!"],"Not supported!":["Non supportato!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Leggi {{a}} il nostro articolo sulla struttura del sito {{/a}} per imparare di più su come i link interni possono aiutarti a migliorare la tua strategia SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Una volta aggiunto più contenuto, ti forniremo qui un elenco di contenuti correlati a cui potresti collegare il tuo articolo."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Prendi in considerazione di inserire il collegamento a questi {{a}}articoli cornerstone:{{/a}}"],"Consider linking to these articles:":["Prendi in considerazione di inserire il collegamento a questi articoli:"],"Copy link":["Copia il link"],"Copy link to suggested article: %s":["Copia il link all'articolo suggerito: %s"],"Modify your meta description by editing it right here":["Modifica la tua descrizione meta scrivendola qui"],"On":["On"],"Off":["Off"],"Good results":["Risultati buoni"],"Need help?":["Ti serve aiuto?"],"Remove highlight from the text":["Rimuovi evidenziazione nel testo"],"Highlight this result in the text":["Evidenzia questo risultato nel testo"],"Considerations":["Considerazioni"],"Errors":["Errori"],"Change language":["Cambia lingua"],"(Opens in a new browser tab)":["(Si apre in una nuova scheda del browser)"],"Scroll to see the preview content.":["Scorri per vedere l'anteprima del contenuto."],"Mobile preview":["Anteprima in modalità mobile"],"Desktop preview":["Anteprima in modalità desktop"],"Close snippet editor":["Chiudi editor snippet"],"Slug":["Slug"],"Marks are disabled in current view":["L'evidenziazione è disabilitata"],"Choose an image":["Seleziona un'immagine"],"Remove the image":["Rimuovi l'immagine"],"MailChimp signup failed:":["Iscrizione a MailChimp fallita:"],"Sign Up!":["Iscriviti!"],"There is an error with the request.":["C'è un errore con questa richiesta."],"Select profile":["Seleziona il profilo"],"Choose a profile":["Scegli un profilo"],"Authorization code":["Codice di autorizzazione"],"Reauthenticate with Google":["Autenticati nuovamente con Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Per consentire a %s di recuperare le tue informazioni dalla Google Search Console, inserisci il Codice di autorizzazione di Google. Facendo clic sul link sottostante si aprirà una nuova finestra."],"Edit snippet":["Modifica snippet"],"Close the Wizard":["Chiudi la procedura guidata"],"SEO title":["Titolo SEO"],"Enter your Google Authorization Code and press the Authenticate button.":["inserisci il tuo Codice di Autorizzazione di Google e premi il pulsante di Autenticazione."],"Improvements":["Miglioramenti"],"Problems":["Problemi"],"There were no profiles found":["Nessun profilo trovato"],"Authenticate":["Autenticati"],"Get Google Authorization Code":["Ricevi Codice di Autorizzazione di Google."],"Search":["Ricerca"],"Email":["Email"],"Close":["Chiudi"],"Meta description":["Meta descrizione"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=1; plural=0;","lang":"ja_JP"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":["Facebook 用に選択した画像が小さすぎます"],"The given image url cannot be loaded":["この画像の URL を読み込めません"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":[],"Are you trying to use multiple keyphrases? You should add them separately below.":["複数のキーフレーズを使用したいですか ? 以下に個別に追加してください。"],"Mark as cornerstone content":["コーナーストーンコンテンツとしてマーク"],"image preview":["画像のプレビュー"],"Copied!":["コピーしました。"],"Not supported!":["サポート対象外です。"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["{{a}}サイト構造についての記事{{/a}}を読み、内部リンクが SEO を改善するしくみを学びましょう。"],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["文字をもう少し追加すると、記事内からリンクが可能な関連コンテンツがここにリスト表示されます。"],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["以下の{{a}}コーナーストーン記事{{/a}}へのリンクを検討してください:"],"Consider linking to these articles:":["これらの記事へのリンクを検討してください:"],"Copy link":["リンクをコピー"],"Copy link to suggested article: %s":["提案記事へのリンクをコピー: %s"],"Need help?":["ヘルプが必要ですか ?"],"Choose an image":["画像を選択する"],"Remove the image":["画像を削除する"],"MailChimp signup failed:":["MailChimp の登録に失敗しました:"],"Sign Up!":["登録"],"There is an error with the request.":["リクエストにエラーがあります。"],"Select profile":["プロフィールを選択"],"Choose a profile":["プロフィールを選択"],"Authorization code":["認証コード"],"Reauthenticate with Google":["Google で再認証する"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["%s がGoogle サーチコンソールの情報を取得するのを許可するには Google 認証コードを入力してください。下のボタンをクリックすると新しいウィンドウが開きます。"],"Enter your Google Authorization Code and press the Authenticate button.":["Google の認証コードを入力して、「認証」のボタンを押してください。"],"There were no profiles found":["プロファイルがありません"],"Authenticate":["認証"],"Get Google Authorization Code":["Google 認証コードを取得する"],"Email":["メール"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=1; plural=0;","lang":"ja_JP"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":["Facebook 用に選択した画像が小さすぎます"],"The given image url cannot be loaded":["この画像の URL を読み込めません"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":[],"Are you trying to use multiple keyphrases? You should add them separately below.":["複数のキーフレーズを使用したいですか ? 以下に個別に追加してください。"],"Mark as cornerstone content":["コーナーストーンコンテンツとしてマーク"],"image preview":["画像のプレビュー"],"Copied!":["コピーしました。"],"Not supported!":["サポート対象外です。"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["{{a}}サイト構造についての記事{{/a}}を読み、内部リンクが SEO を改善するしくみを学びましょう。"],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["文字をもう少し追加すると、記事内からリンクが可能な関連コンテンツがここにリスト表示されます。"],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["以下の{{a}}コーナーストーン記事{{/a}}へのリンクを検討してください:"],"Consider linking to these articles:":["これらの記事へのリンクを検討してください:"],"Copy link":["リンクをコピー"],"Copy link to suggested article: %s":["提案記事へのリンクをコピー: %s"],"Modify your meta description by editing it right here":["メタディスクリプションの設定をここで編集して変更します"],"On":["オン"],"Off":["オフ"],"Good results":["良い結果"],"Need help?":["ヘルプが必要ですか ?"],"Remove highlight from the text":["テキストからハイライトを削除"],"Highlight this result in the text":["この結果をテキストで強調表示"],"Considerations":["検討事項"],"Errors":["エラー"],"Change language":["言語変更"],"(Opens in a new browser tab)":["(新しいブラウザータブで開く)"],"Scroll to see the preview content.":["コンテンツのプレビューを見るにはスクロールしてください。"],"Mobile preview":["モバイルプレビュー"],"Desktop preview":["デスクトッププレビュー"],"Close snippet editor":["スニペットエディターを閉じる"],"Slug":["スラッグ"],"Marks are disabled in current view":["現在のビューでマークが無効になっています"],"Choose an image":["画像を選択する"],"Remove the image":["画像を削除する"],"MailChimp signup failed:":["MailChimp の登録に失敗しました:"],"Sign Up!":["登録"],"There is an error with the request.":["リクエストにエラーがあります。"],"Select profile":["プロフィールを選択"],"Choose a profile":["プロフィールを選択"],"Authorization code":["認証コード"],"Reauthenticate with Google":["Google で再認証する"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["%s がGoogle サーチコンソールの情報を取得するのを許可するには Google 認証コードを入力してください。下のボタンをクリックすると新しいウィンドウが開きます。"],"Edit snippet":["スニペットを編集"],"Close the Wizard":["ウィザードを閉じる"],"SEO title":["SEO タイトル"],"Enter your Google Authorization Code and press the Authenticate button.":["Google の認証コードを入力して、「認証」のボタンを押してください。"],"Improvements":["改善"],"Problems":["問題点"],"There were no profiles found":["プロファイルがありません"],"Authenticate":["認証"],"Get Google Authorization Code":["Google 認証コードを取得する"],"Search":["検索"],"Email":["メール"],"Close":["閉じる"],"Meta description":["メタディスクリプション"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"nb_NO"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":["Bildet du valgte, er for lite for Facebook"],"The given image url cannot be loaded":["Kan ikke laste inn URL-adressen for angitt bilde"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Dette er en liste over relatert innhold som du kan lenke til i ditt innlegg. {{a}}Les vår artikkel om nettstedstruktur{{/a}} for å lære mer om hvordan intern lenking kan bidra til å forbedre din SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Prøver du å bruke flere nøkkelord? Du bør legge dem separat nedenfor."],"Mark as cornerstone content":["Merk som hjørnesteinsinnhold"],"image preview":["forhåndsvisning av bilde"],"Copied!":["Kopiert!"],"Not supported!":["Ikke støttet!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Les {{a}}artikkelen vår om nettstedstruktur{{/a}} for å lære mer om hvordan internlenker kan hjelpe deg til bedre SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Når du legger til litt mer tekst, gir vi deg en liste over relatert innhold her som du kan lenke til i innlegget ditt."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Vurder å lenke til disse {{a}}hjørnesteinsartiklene:{{/a)}"],"Consider linking to these articles:":["Vurder å lenke til disse artiklene:"],"Copy link":["Kopier lenke"],"Copy link to suggested article: %s":["Kopier lenke til foreslått artikkel: %s"],"Need help?":["Trenger du hjelp?"],"Choose an image":["Velg et bilde"],"Remove the image":["Fjern bildet"],"MailChimp signup failed:":["MailChimp-registrering mislyktes:"],"Sign Up!":["Registrer!"],"There is an error with the request.":["Det er en feil med forespørselen."],"Select profile":["Velg profil"],"Choose a profile":["Velg en profil"],"Authorization code":["Godkjenningskode"],"Reauthenticate with Google":["Godkjenn på nytt med Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["For å tillate %s å hente informasjonen om Google Search Console, skriv inn Google Autorisasjonskoden din. Hvis du klikker på knappen nedenfor, åpnes et nytt vindu."],"Enter your Google Authorization Code and press the Authenticate button.":["Skriv inn Google-autentiseringskoden din og trykk Autentiser-knappen."],"There were no profiles found":["Fant ingen profiler"],"Authenticate":["Autentisér"],"Get Google Authorization Code":["Hent autorisasjonskode fra Google"],"Email":["E-post"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"nb_NO"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":["Bildet du valgte, er for lite for Facebook"],"The given image url cannot be loaded":["Kan ikke laste inn URL-adressen for angitt bilde"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Dette er en liste over relatert innhold som du kan lenke til i ditt innlegg. {{a}}Les vår artikkel om nettstedstruktur{{/a}} for å lære mer om hvordan intern lenking kan bidra til å forbedre din SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Prøver du å bruke flere nøkkelord? Du bør legge dem separat nedenfor."],"Mark as cornerstone content":["Merk som hjørnesteinsinnhold"],"image preview":["forhåndsvisning av bilde"],"Copied!":["Kopiert!"],"Not supported!":["Ikke støttet!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Les {{a}}artikkelen vår om nettstedstruktur{{/a}} for å lære mer om hvordan internlenker kan hjelpe deg til bedre SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Når du legger til litt mer tekst, gir vi deg en liste over relatert innhold her som du kan lenke til i innlegget ditt."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Vurder å lenke til disse {{a}}hjørnesteinsartiklene:{{/a)}"],"Consider linking to these articles:":["Vurder å lenke til disse artiklene:"],"Copy link":["Kopier lenke"],"Copy link to suggested article: %s":["Kopier lenke til foreslått artikkel: %s"],"Modify your meta description by editing it right here":["Endre meta beskrivelsen din ved å redigere den her"],"On":["På"],"Off":["Av"],"Good results":["Gode resultater"],"Need help?":["Trenger du hjelp?"],"Remove highlight from the text":["Fjern fremhevelse fra teksten"],"Highlight this result in the text":["Fremhev dette resultat i teksten"],"Considerations":["Vurderinger"],"Errors":["Feil"],"Change language":["Endre språk"],"(Opens in a new browser tab)":["(Åpnes i en ny fane i nettleseren)"],"Scroll to see the preview content.":["Bla ned for å se forhåndsvisningen."],"Mobile preview":["Mobilforhåndsvisning"],"Desktop preview":["Skrivebordsforhåndsvisning"],"Close snippet editor":["Lukk tekstvindu"],"Slug":["Permalenke"],"Marks are disabled in current view":["Merker er deaktivert i den gjeldende visningen"],"Choose an image":["Velg et bilde"],"Remove the image":["Fjern bildet"],"MailChimp signup failed:":["MailChimp-registrering mislyktes:"],"Sign Up!":["Registrer!"],"There is an error with the request.":["Det er en feil med forespørselen."],"Select profile":["Velg profil"],"Choose a profile":["Velg en profil"],"Authorization code":["Godkjenningskode"],"Reauthenticate with Google":["Godkjenn på nytt med Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["For å tillate %s å hente informasjonen om Google Search Console, skriv inn Google Autorisasjonskoden din. Hvis du klikker på knappen nedenfor, åpnes et nytt vindu."],"Edit snippet":["Rediger tekstutdrag"],"Close the Wizard":["Lukke veilederen"],"SEO title":["SEO-tittel"],"Enter your Google Authorization Code and press the Authenticate button.":["Skriv inn Google-autentiseringskoden din og trykk Autentiser-knappen."],"Improvements":["Forbedringer"],"Problems":["Problemer"],"There were no profiles found":["Fant ingen profiler"],"Authenticate":["Autentisér"],"Get Google Authorization Code":["Hent autorisasjonskode fra Google"],"Search":["Søk"],"Email":["E-post"],"Close":["Lukk"],"Meta description":["Meta-beskrivelse"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"nl_BE"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":["De afbeelding die u hebt geselecteerd is te klein voor Facebook"],"The given image url cannot be loaded":["De opgegeven afbeeldings-URL kan niet worden geladen"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Dit is een lijst van gerelateerde content waar je naar kunt linken in je bericht. {{a}}Lees ons artikel over site structure{{/a}} om meer te leren over hoe intern linken je SEO kan verbeteren."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Probeer je meerdere keyphrases te gebruiken? Vul ze dan hieronder apart in."],"Mark as cornerstone content":["Markeer als cornerstone content"],"image preview":["Voorbeeld van afbeelding"],"Copied!":["Gekopieerd!"],"Not supported!":["Niet ondersteund!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Lees {{a}}ons artikel over websitestructuur{{/a}} om meer te leren hoe intern linken je kan helpen met het verbeteren van je SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Zodra je meer inhoud toevoegt geven we je hier een lijst met gerelateerde inhoud waar je naar zou kunnen linken in je bericht."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Overweeg om te linken naar deze {{a}}cornerstone artikelen:{{/a}}"],"Consider linking to these articles:":["Overweeg naar deze artikelen te linken:"],"Copy link":["Link kopieëren"],"Copy link to suggested article: %s":["Kopieer link naar het voorgestelde artikel: %s"],"Need help?":["Hulp nodig?"],"Choose an image":["Een afbeelding kiezen"],"Remove the image":["De afbeelding verwijderen"],"MailChimp signup failed:":["Aanmelden voor Mailchimp mislukt:"],"Sign Up!":["Meld je aan!"],"There is an error with the request.":["Tijdens je verzoek is er een fout opgetreden."],"Select profile":["Profiel selecteren"],"Choose a profile":["Een profiel kiezen"],"Authorization code":["Autorisatiecode"],"Reauthenticate with Google":["Herautoriseer met Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Voer uw Google-autorisatiecode in zodat %s de informatie uit Google Search Console kan ophalen. De knop hieronder opent een nieuw venster."],"Enter your Google Authorization Code and press the Authenticate button.":["Voer de Google-autorisatiecode in en druk op de knop Autenticatie."],"There were no profiles found":["Er zijn geen profielen gevonden"],"Authenticate":["Autoriseren"],"Get Google Authorization Code":["Google-autorisatiecode verkrijgen"],"Email":["E-mailadres"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"nl_BE"},"We could not find any relevant articles on your website that you could link to from your post.":["We konden geen enkel relevant bericht op je website vinden om een link te maken in dit bericht."],"The image you selected is too small for Facebook":["De afbeelding die u hebt geselecteerd is te klein voor Facebook"],"The given image url cannot be loaded":["De opgegeven afbeeldings-URL kan niet worden geladen"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Dit is een lijst van gerelateerde content waar je naar kunt linken in je bericht. {{a}}Lees ons artikel over site structure{{/a}} om meer te leren over hoe intern linken je SEO kan verbeteren."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Probeer je meerdere keyphrases te gebruiken? Vul ze dan hieronder apart in."],"Mark as cornerstone content":["Markeer als cornerstone content"],"image preview":["Voorbeeld van afbeelding"],"Copied!":["Gekopieerd!"],"Not supported!":["Niet ondersteund!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Lees {{a}}ons artikel over websitestructuur{{/a}} om meer te leren hoe intern linken je kan helpen met het verbeteren van je SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Zodra je meer inhoud toevoegt geven we je hier een lijst met gerelateerde inhoud waar je naar zou kunnen linken in je bericht."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Overweeg om te linken naar deze {{a}}cornerstone artikelen:{{/a}}"],"Consider linking to these articles:":["Overweeg naar deze artikelen te linken:"],"Copy link":["Link kopieëren"],"Copy link to suggested article: %s":["Kopieer link naar het voorgestelde artikel: %s"],"Modify your meta description by editing it right here":["Pas je metabeschrijving aan, door deze hier te bewerken"],"On":["Aan"],"Off":["Uit"],"Good results":["Goeie resultaten"],"Need help?":["Hulp nodig?"],"Remove highlight from the text":["Markering uit de tekst verwijderen"],"Highlight this result in the text":["Markeer dit resultaat in de tekst"],"Considerations":["Overwegingen"],"Errors":["Fouten"],"Change language":["Wijzig taal"],"(Opens in a new browser tab)":["(Opent in een nieuwe browsertab)"],"Scroll to see the preview content.":["Scrol om de voorbeeldinhoud te zien."],"Mobile preview":["Mobiel preview"],"Desktop preview":["Desktop preview"],"Close snippet editor":["Snippet-editor sluiten"],"Slug":["Slug"],"Marks are disabled in current view":["Markeringen zijn uitgeschakeld in de huidige weergave"],"Choose an image":["Een afbeelding kiezen"],"Remove the image":["De afbeelding verwijderen"],"MailChimp signup failed:":["Aanmelden voor Mailchimp mislukt:"],"Sign Up!":["Meld je aan!"],"There is an error with the request.":["Tijdens je verzoek is er een fout opgetreden."],"Select profile":["Profiel selecteren"],"Choose a profile":["Een profiel kiezen"],"Authorization code":["Autorisatiecode"],"Reauthenticate with Google":["Herautoriseer met Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Voer uw Google-autorisatiecode in zodat %s de informatie uit Google Search Console kan ophalen. De knop hieronder opent een nieuw venster."],"Edit snippet":["Snippet bewerken"],"Close the Wizard":["De hulp sluiten"],"SEO title":["SEO-titel"],"Enter your Google Authorization Code and press the Authenticate button.":["Voer de Google-autorisatiecode in en druk op de knop Autenticatie."],"Improvements":["Verbeteringen"],"Problems":["Problemen"],"There were no profiles found":["Er zijn geen profielen gevonden"],"Authenticate":["Autoriseren"],"Get Google Authorization Code":["Google-autorisatiecode verkrijgen"],"Search":["Zoeken"],"Email":["E-mailadres"],"Close":["Sluiten"],"Meta description":["Meta-omschrijving"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"nl"},"We could not find any relevant articles on your website that you could link to from your post.":["We hebben geen relevante artikelen gevonden op je website waar je naartoe kan linken vanuit je bericht."],"The image you selected is too small for Facebook":["De afbeelding die je hebt geselecteerd is te klein voor Facebook"],"The given image url cannot be loaded":["De opgegeven afbeelding url kan niet worden geladen"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Dit is een lijst van gerelateerde content waar je naar kunt linken in je bericht. {{a}}Lees ons artikel over site structure{{/a}} om meer te leren over hoe intern linken je SEO kan verbeteren."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Probeer je meerdere keyphrases te gebruiken? Vul ze dan hieronder apart in."],"Mark as cornerstone content":["Markeer als cornerstone content"],"image preview":["Voorbeeld van afbeelding"],"Copied!":["Gekopieerd!"],"Not supported!":["Niet ondersteund!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Lees {{a}}ons artikel over sitestructuur{{/a}} om meer te leren hoe intern linken je kan helpen met het verbeteren van je SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Zodra je meer inhoud toevoegt geven we je hier een lijst met gerelateerde inhoud waar je naar zou kunnen linken in je bericht."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Overweeg om te linken naar deze {{a}}cornerstone artikelen:{{/a}}"],"Consider linking to these articles:":["Overweeg naar deze artikelen te linken:"],"Copy link":["Link kopieëren"],"Copy link to suggested article: %s":["Kopieer link naar het voorgestelde artikel: %s"],"Need help?":["Hulp nodig?"],"Choose an image":["Een afbeelding kiezen"],"Remove the image":["De afbeelding verwijderen"],"MailChimp signup failed:":["Aanmelden voor Mailchimp mislukt:"],"Sign Up!":["Meld je aan!"],"There is an error with the request.":["Tijdens je verzoek is er een fout opgetreden."],"Select profile":["Profiel selecteren"],"Choose a profile":["Een profiel kiezen"],"Authorization code":["Autorisatiecode"],"Reauthenticate with Google":["Herautoriseer met Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Voer uw Google-autorisatiecode in zodat %s de informatie uit Google Search Console kan ophalen. De knop hieronder opent een nieuw venster."],"Enter your Google Authorization Code and press the Authenticate button.":["Voer de Google-autorisatiecode in en druk op de knop Autoriseren."],"There were no profiles found":["Er zijn geen profielen gevonden"],"Authenticate":["Autoriseren"],"Get Google Authorization Code":["Google-autorisatiecode verkrijgen"],"Email":["E-mailadres"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"nl"},"We could not find any relevant articles on your website that you could link to from your post.":["We hebben geen relevante artikelen gevonden op je website waar je naartoe kan linken vanuit je bericht."],"The image you selected is too small for Facebook":["De afbeelding die je hebt geselecteerd is te klein voor Facebook"],"The given image url cannot be loaded":["De opgegeven afbeelding url kan niet worden geladen"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Dit is een lijst van gerelateerde content waar je naar kunt linken in je bericht. {{a}}Lees ons artikel over site structure{{/a}} om meer te leren over hoe intern linken je SEO kan verbeteren."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Probeer je meerdere keyphrases te gebruiken? Vul ze dan hieronder apart in."],"Mark as cornerstone content":["Markeer als cornerstone content"],"image preview":["Voorbeeld van afbeelding"],"Copied!":["Gekopieerd!"],"Not supported!":["Niet ondersteund!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Lees {{a}}ons artikel over sitestructuur{{/a}} om meer te leren hoe intern linken je kan helpen met het verbeteren van je SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Zodra je meer inhoud toevoegt geven we je hier een lijst met gerelateerde inhoud waar je naar zou kunnen linken in je bericht."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Overweeg om te linken naar deze {{a}}cornerstone artikelen:{{/a}}"],"Consider linking to these articles:":["Overweeg naar deze artikelen te linken:"],"Copy link":["Link kopieëren"],"Copy link to suggested article: %s":["Kopieer de link naar het voorgestelde artikel: %s"],"Modify your meta description by editing it right here":["Bewerk je meta description door hem hier te bewerken"],"On":["Aan"],"Off":["Uit"],"Good results":["Goede resultaten"],"Need help?":["Hulp nodig?"],"Remove highlight from the text":["Markering uit de tekst verwijderen"],"Highlight this result in the text":["Markeer dit resultaat in de tekst"],"Considerations":["Overwegingen"],"Errors":["Fouten"],"Change language":["Wijzig taal"],"(Opens in a new browser tab)":["(Opent in een nieuwe browsertab)"],"Scroll to see the preview content.":["Scrol om de voorbeeldinhoud te zien."],"Mobile preview":["Mobiele preview"],"Desktop preview":["Desktop preview"],"Close snippet editor":["Snippet-editor sluiten"],"Slug":["Slug"],"Marks are disabled in current view":["Markeringen zijn uitgeschakeld in de huidige weergave"],"Choose an image":["Een afbeelding kiezen"],"Remove the image":["De afbeelding verwijderen"],"MailChimp signup failed:":["Aanmelden voor Mailchimp mislukt:"],"Sign Up!":["Meld je aan!"],"There is an error with the request.":["Tijdens je verzoek is er een fout opgetreden."],"Select profile":["Profiel selecteren"],"Choose a profile":["Een profiel kiezen"],"Authorization code":["Autorisatiecode"],"Reauthenticate with Google":["Herautoriseer met Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Voer uw Google-autorisatiecode in zodat %s de informatie uit Google Search Console kan ophalen. De knop hieronder opent een nieuw venster."],"Edit snippet":["Snippet bewerken"],"Close the Wizard":["De hulp sluiten"],"SEO title":["SEO-titel"],"Enter your Google Authorization Code and press the Authenticate button.":["Voer de Google-autorisatiecode in en druk op de knop Autoriseren."],"Improvements":["Verbeteringen"],"Problems":["Problemen"],"There were no profiles found":["Er zijn geen profielen gevonden"],"Authenticate":["Autoriseren"],"Get Google Authorization Code":["Google-autorisatiecode verkrijgen"],"Search":["Zoeken"],"Email":["E-mailadres"],"Close":["Sluiten"],"Meta description":["Meta-omschrijving"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);","lang":"pl"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":["Wybrany obrazek jest za mały na Facebooka"],"The given image url cannot be loaded":["Podany adres obrazka nie może zostać wczytany"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Jest to lista powiązanych treści, do których możesz się odnieść w swoim poście. {{{a}}}Zapoznaj się z naszym artykułem na temat struktury witryny{{/a}}, aby dowiedzieć się więcej na temat tego, w jaki sposób wewnętrzne linkowanie może pomóc ulepszyć SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Chcesz użyć wielu słów kluczowych? Wpisz je oddzielnie poniżej."],"Mark as cornerstone content":["Zaznacz jako kluczową treść"],"image preview":["podgląd obrazka"],"Copied!":["Skopiowano!"],"Not supported!":["Brak wsparcia!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Przeczytaj {{a}}nasz artykuł o strukturze witryny{{/a}}, aby dowiedzieć się więcej jak wewnętrzne linki mogą poprawić twoje SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Gdy tylko dodasz trochę więcej tekstu, wyświetlimy listę podobnych artykułów, do których możesz dodać link."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Rozważ dodanie linków do tych {{a}}kluczowych artykułów:{{/a}}"],"Consider linking to these articles:":["Rozważ dodanie linków do tych artykułów:"],"Copy link":["Skopiuj link"],"Copy link to suggested article: %s":["Skopiuj link do sugerowanego artykułu: %s"],"Need help?":["Potrzebujesz pomocy?"],"Choose an image":["Wybierz obrazek"],"Remove the image":["Usuń obrazek"],"MailChimp signup failed:":["Zapis do MailChimpa nie powiódł się:"],"Sign Up!":["Zapisz się!"],"There is an error with the request.":["Wystąpił błąd w zapytaniu."],"Select profile":["Wybierz profil"],"Choose a profile":["Wybierz profil"],"Authorization code":["Kod uwierzytelniający"],"Reauthenticate with Google":["Ponowne uwierzytelnienie w Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Aby umożliwić %s pobieranie informacji z Google Search Console, wprowadź kod uwierzytelniający od Google. Kliknięcie poniższego przycisku otworzy nowe okno."],"Enter your Google Authorization Code and press the Authenticate button.":["Wprowadź kod uwierzytelniający od Google i wciśnij przycisk Uwierzytelnij."],"There were no profiles found":["Nie znaleziono żadnych profilów"],"Authenticate":["Uwierzytelnij"],"Get Google Authorization Code":["Pobierz kod uwierzytelniający Google"],"Email":["Email"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);","lang":"pl"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":["Wybrany obrazek jest za mały na Facebooka"],"The given image url cannot be loaded":["Podany adres obrazka nie może zostać wczytany"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Jest to lista powiązanych treści, do których możesz się odnieść w swoim poście. {{{a}}}Zapoznaj się z naszym artykułem na temat struktury witryny{{/a}}, aby dowiedzieć się więcej na temat tego, w jaki sposób wewnętrzne linkowanie może pomóc ulepszyć SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Chcesz użyć wielu słów kluczowych? Wpisz je oddzielnie poniżej."],"Mark as cornerstone content":["Zaznacz jako kluczową treść"],"image preview":["podgląd obrazka"],"Copied!":["Skopiowano!"],"Not supported!":["Brak wsparcia!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Przeczytaj {{a}}nasz artykuł o strukturze witryny{{/a}}, aby dowiedzieć się więcej jak wewnętrzne linki mogą poprawić twoje SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Gdy tylko dodasz trochę więcej tekstu, wyświetlimy listę podobnych artykułów, do których możesz dodać link."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Rozważ dodanie linków do tych {{a}}kluczowych artykułów:{{/a}}"],"Consider linking to these articles:":["Rozważ dodanie linków do tych artykułów:"],"Copy link":["Skopiuj link"],"Copy link to suggested article: %s":["Skopiuj link do sugerowanego artykułu: %s"],"Modify your meta description by editing it right here":["Zmień opis meta edytując go tutaj"],"On":["Włącz"],"Off":["Wyłącz"],"Good results":["Dobre wyniki"],"Need help?":["Potrzebujesz pomocy?"],"Remove highlight from the text":["Usuń podświetlenia z tekstu"],"Highlight this result in the text":["Podświetlaj ten wynik w tekście"],"Considerations":["Warte rozważenia"],"Errors":["Błędy"],"Change language":["Zmień język"],"(Opens in a new browser tab)":["(Otworzy się w nowej zakładce)"],"Scroll to see the preview content.":["Przewiń, aby zobaczyć podgląd treści."],"Mobile preview":["Podgląd na urządzeniach mobilnych"],"Desktop preview":["Podgląd na komputerach"],"Close snippet editor":["Zamknij edytor wyglądu podstrony w wynikach wyszukiwania"],"Slug":["Slug"],"Marks are disabled in current view":["Znaczniki są wyłączone w obecnym widoku"],"Choose an image":["Wybierz obrazek"],"Remove the image":["Usuń obrazek"],"MailChimp signup failed:":["Zapis do MailChimpa nie powiódł się:"],"Sign Up!":["Zapisz się!"],"There is an error with the request.":["Wystąpił błąd w zapytaniu."],"Select profile":["Wybierz profil"],"Choose a profile":["Wybierz profil"],"Authorization code":["Kod uwierzytelniający"],"Reauthenticate with Google":["Ponowne uwierzytelnienie w Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Aby umożliwić %s pobieranie informacji z Google Search Console, wprowadź kod uwierzytelniający od Google. Kliknięcie poniższego przycisku otworzy nowe okno."],"Edit snippet":["Edytuj wygląd podstrony w wynikach wyszukiwania"],"Close the Wizard":["Zamknij kreator"],"SEO title":["Tytuł SEO"],"Enter your Google Authorization Code and press the Authenticate button.":["Wprowadź kod uwierzytelniający od Google i wciśnij przycisk Uwierzytelnij."],"Improvements":["Usprawnienia"],"Problems":["Problemy"],"There were no profiles found":["Nie znaleziono żadnych profilów"],"Authenticate":["Uwierzytelnij"],"Get Google Authorization Code":["Pobierz kod uwierzytelniający Google"],"Search":["Szukaj"],"Email":["Email"],"Close":["Zamknij"],"Meta description":["Opis"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"pt_AO"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":[],"The given image url cannot be loaded":[],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Esta é uma lista de conteúdos relacionados para os quais poderá criar ligações no seu conteúdo. {{a}}Leia o nosso artigo sobre a estrutura do site{{/a}} para saber mais sobre como as ligações internas podem ajudar a melhorar o seu SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Está a tentar usar múltiplas frases-chave? Deve adicioná-las abaixo separadamente."],"Mark as cornerstone content":["Marcar como conteúdo principal"],"image preview":["Pré-visualização da imagem"],"Copied!":["Copiado!"],"Not supported!":["Não suportado!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":[],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Ao adicionar mais algum texto, será mostrada aqui uma lista de conteúdos relacionados, para os quais poderá adicionar ligações no seu conteúdo."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Considere criar ligações para estes {{a}}artigos principais{{/a}}:"],"Consider linking to these articles:":["Considere criar ligações para estes artigos:"],"Copy link":["Copiar ligação"],"Copy link to suggested article: %s":["Copiar ligação para o artigo sugerido: %s"],"Need help?":["Precisa de ajuda?"],"Choose an image":["Escolha uma imagem"],"Remove the image":["Remover a imagem"],"MailChimp signup failed:":["Falhou ao subscrever no MailChimp:"],"Sign Up!":["Subscrever!"],"There is an error with the request.":["Ocorreu um erro com o pedido."],"Select profile":["Seleccionar perfil"],"Choose a profile":["Escolha um perfil"],"Authorization code":["Código de autorização"],"Reauthenticate with Google":["Autenticar de novo com o Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Para autorizar o %s a obter a sua informação do Google Search Console, por favor insira o seu código de autorização do Google. Ao clicar no botão abaixo abre uma nova janela."],"Enter your Google Authorization Code and press the Authenticate button.":["Insira o seu código de autorização do Google e carregue no botão Autenticar."],"There were no profiles found":["Nenhum perfil encontrado"],"Authenticate":["Autenticar"],"Get Google Authorization Code":["Obter o código de autorização do Google"],"Email":["Email"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"pt_AO"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":[],"The given image url cannot be loaded":[],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Esta é uma lista de conteúdos relacionados para os quais poderá criar ligações no seu conteúdo. {{a}}Leia o nosso artigo sobre a estrutura do site{{/a}} para saber mais sobre como as ligações internas podem ajudar a melhorar o seu SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Está a tentar usar múltiplas frases-chave? Deve adicioná-las abaixo separadamente."],"Mark as cornerstone content":["Marcar como conteúdo principal"],"image preview":["Pré-visualização da imagem"],"Copied!":["Copiado!"],"Not supported!":["Não suportado!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":[],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Ao adicionar mais algum texto, será mostrada aqui uma lista de conteúdos relacionados, para os quais poderá adicionar ligações no seu conteúdo."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Considere criar ligações para estes {{a}}artigos principais{{/a}}:"],"Consider linking to these articles:":["Considere criar ligações para estes artigos:"],"Copy link":["Copiar ligação"],"Copy link to suggested article: %s":["Copiar ligação para o artigo sugerido: %s"],"Modify your meta description by editing it right here":["Modifique sua descrição editando-a aqui"],"On":["Ligado"],"Off":["Desligado"],"Good results":["Bons resultados"],"Need help?":["Precisa de ajuda?"],"Remove highlight from the text":["Remover o destaque do texto"],"Highlight this result in the text":["Destacar este resultado no texto"],"Considerations":["Considerações"],"Errors":["Erros"],"Change language":["Alterar idioma"],"(Opens in a new browser tab)":["(Abrir num novo separador)"],"Scroll to see the preview content.":["Deslize para baixo para pré-visualizar o conteúdo."],"Mobile preview":["Pré-visualizar em dispositivo móvel"],"Desktop preview":["Pré-visualizar em computador"],"Close snippet editor":["Fechar editor de fragmentos"],"Slug":["Slug"],"Marks are disabled in current view":["Marcações desativadas na vista atual"],"Choose an image":["Escolha uma imagem"],"Remove the image":["Remover a imagem"],"MailChimp signup failed:":["Falhou ao subscrever no MailChimp:"],"Sign Up!":["Subscrever!"],"There is an error with the request.":["Ocorreu um erro com o pedido."],"Select profile":["Seleccionar perfil"],"Choose a profile":["Escolha um perfil"],"Authorization code":["Código de autorização"],"Reauthenticate with Google":["Autenticar de novo com o Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Para autorizar o %s a obter a sua informação do Google Search Console, por favor insira o seu código de autorização do Google. Ao clicar no botão abaixo abre uma nova janela."],"Edit snippet":["Editar fragmento"],"Close the Wizard":["Fechar o assistente"],"SEO title":["Título SEO"],"Enter your Google Authorization Code and press the Authenticate button.":["Insira o seu código de autorização do Google e carregue no botão Autenticar."],"Improvements":["Melhoramentos"],"Problems":["Problemas"],"There were no profiles found":["Nenhum perfil encontrado"],"Authenticate":["Autenticar"],"Get Google Authorization Code":["Obter o código de autorização do Google"],"Search":["Pesquisar"],"Email":["Email"],"Close":["Fechar"],"Meta description":["Descrição"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=(n > 1);","lang":"pt_BR"},"We could not find any relevant articles on your website that you could link to from your post.":["Não foi possível encontrar nenhum artigo relevante no seu website que você possa vincular a partir de sua postagem."],"The image you selected is too small for Facebook":["A imagem que você selecionou é muito pequena para o Facebook"],"The given image url cannot be loaded":["O URL da imagem especificada não pode ser carregado"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Essa é uma lista de conteúdos relacionados a quais você poderia incluir um link no seu post. {{a}} Leia nosso artigo sobre estrutura de site {{/a}} para aprender mais como links internos pode ajudar a melhorar seu SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Você está tentando usar mais de uma frase-chave? Você deve adicioná-las separadamente abaixo."],"Mark as cornerstone content":["Marcar como conteúdo de base"],"image preview":["Pré-visualizar imagem"],"Copied!":["Copiado!"],"Not supported!":["Não suportado!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Leia {{a}}nosso artigo sobre estrutura de sites{{/a}} para aprender mais sobre como links internos podem ajudar a melhorar seu SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Depois de adicionar um pouco mais de texto, forneceremos uma lista de conteúdo relacionado ao qual você pode vincular sua postagem."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Considere linkar com estes {{a}}artigos de embasamento{{/a}}"],"Consider linking to these articles:":["Considere fazer link para esses artigos:"],"Copy link":["Copiar link"],"Copy link to suggested article: %s":["Copiar link para artigos sugeridos: %s"],"Need help?":["Precisando de ajuda?"],"Choose an image":["Escolha uma imagem"],"Remove the image":["Remover a imagem"],"MailChimp signup failed:":["O registro no MailChimp falhou:"],"Sign Up!":["Cadastre-se!"],"There is an error with the request.":["Há um erro na sua solicitação."],"Select profile":["Selecione o perfil"],"Choose a profile":["Escolha um perfil"],"Authorization code":["Código de autorização"],"Reauthenticate with Google":["Reautenticar com o Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Para autorizar %s a buscar suas informações do Google Search Console, digite o seu código de autorização do Google. Clique no botão abaixo para abrir uma nova janela."],"Enter your Google Authorization Code and press the Authenticate button.":["Digite seu código de autorização do Google e pressione o botão Autenticar."],"There were no profiles found":["Nenhum perfil encontrado"],"Authenticate":["Autenticar"],"Get Google Authorization Code":["Obter Código de Autorização do Google"],"Email":["E-mail"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=(n > 1);","lang":"pt_BR"},"We could not find any relevant articles on your website that you could link to from your post.":["Não foi possível encontrar nenhum artigo relevante no seu website que você possa vincular a partir de sua postagem."],"The image you selected is too small for Facebook":["A imagem que você selecionou é muito pequena para o Facebook"],"The given image url cannot be loaded":["O URL da imagem especificada não pode ser carregado"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Essa é uma lista de conteúdos relacionados a quais você poderia incluir um link no seu post. {{a}} Leia nosso artigo sobre estrutura de site {{/a}} para aprender mais como links internos pode ajudar a melhorar seu SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Você está tentando usar mais de uma frase-chave? Você deve adicioná-las separadamente abaixo."],"Mark as cornerstone content":["Marcar como conteúdo de base"],"image preview":["Pré-visualizar imagem"],"Copied!":["Copiado!"],"Not supported!":["Não suportado!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Leia {{a}}nosso artigo sobre estrutura de sites{{/a}} para aprender mais sobre como links internos podem ajudar a melhorar seu SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Depois de adicionar um pouco mais de texto, forneceremos uma lista de conteúdo relacionado ao qual você pode vincular sua postagem."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Considere linkar com estes {{a}}artigos de embasamento{{/a}}"],"Consider linking to these articles:":["Considere fazer link para esses artigos:"],"Copy link":["Copiar link"],"Copy link to suggested article: %s":["Copiar link para artigos sugeridos: %s"],"Modify your meta description by editing it right here":["Modifique sua meta descrição editando aqui"],"On":["Ligado"],"Off":["Desligado"],"Good results":["Bons resultados "],"Need help?":["Precisando de ajuda?"],"Remove highlight from the text":["Remover o destaque do texto"],"Highlight this result in the text":["Realçar este resultado no texto"],"Considerations":["Considerações"],"Errors":["Erros"],"Change language":["Alterar língua"],"(Opens in a new browser tab)":["(Abre numa nova aba do navegador)"],"Scroll to see the preview content.":["Role para baixo para visualizar o conteúdo."],"Mobile preview":["Pré-visualização para dispositivos móveis"],"Desktop preview":["Pré-visualização para computadores"],"Close snippet editor":["Fechar editor de amostra"],"Slug":["Slug"],"Marks are disabled in current view":["Marcações desabilitadas na visualização atual"],"Choose an image":["Escolha uma imagem"],"Remove the image":["Remover a imagem"],"MailChimp signup failed:":["O registro no MailChimp falhou:"],"Sign Up!":["Cadastre-se!"],"There is an error with the request.":["Há um erro na sua solicitação."],"Select profile":["Selecione o perfil"],"Choose a profile":["Escolha um perfil"],"Authorization code":["Código de autorização"],"Reauthenticate with Google":["Reautenticar com o Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Para autorizar %s a buscar suas informações do Google Search Console, digite o seu código de autorização do Google. Clique no botão abaixo para abrir uma nova janela."],"Edit snippet":["Editar amostra"],"Close the Wizard":["Fechar assistente de configuração"],"SEO title":["Título SEO"],"Enter your Google Authorization Code and press the Authenticate button.":["Digite seu código de autorização do Google e pressione o botão Autenticar."],"Improvements":["Melhorias"],"Problems":["Problemas"],"There were no profiles found":["Nenhum perfil encontrado"],"Authenticate":["Autenticar"],"Get Google Authorization Code":["Obter Código de Autorização do Google"],"Search":["Pesquisar"],"Email":["E-mail"],"Close":["Fechar"],"Meta description":["Meta-descrição"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"pt"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":[],"The given image url cannot be loaded":[],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Esta é uma lista de conteúdos relacionados para os quais poderá criar ligações no seu conteúdo. {{a}}Leia o nosso artigo sobre a estrutura do site{{/a}} para saber mais sobre como as ligações internas podem ajudar a melhorar o seu SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Está a tentar usar múltiplas frases-chave? Deve adicioná-las abaixo separadamente."],"Mark as cornerstone content":["Marcar como conteúdo principal"],"image preview":["Pré-visualização da imagem"],"Copied!":["Copiado!"],"Not supported!":["Não suportado!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":[],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Ao adicionar mais algum texto, será mostrada aqui uma lista de conteúdos relacionados, para os quais poderá adicionar ligações no seu conteúdo."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Considere criar ligações para estes {{a}}artigos principais{{/a}}:"],"Consider linking to these articles:":["Considere criar ligações para estes artigos:"],"Copy link":["Copiar ligação"],"Copy link to suggested article: %s":["Copiar ligação para o artigo sugerido: %s"],"Need help?":["Precisa de ajuda?"],"Choose an image":["Escolha uma imagem"],"Remove the image":["Remover a imagem"],"MailChimp signup failed:":["Falhou ao subscrever no MailChimp:"],"Sign Up!":["Subscrever!"],"There is an error with the request.":["Ocorreu um erro com o pedido."],"Select profile":["Seleccionar perfil"],"Choose a profile":["Escolha um perfil"],"Authorization code":["Código de autorização"],"Reauthenticate with Google":["Autenticar de novo com o Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Para autorizar o %s a obter a sua informação do Google Search Console, por favor insira o seu código de autorização do Google. Ao clicar no botão abaixo abre uma nova janela."],"Enter your Google Authorization Code and press the Authenticate button.":["Insira o seu código de autorização do Google e carregue no botão Autenticar."],"There were no profiles found":["Nenhum perfil encontrado"],"Authenticate":["Autenticar"],"Get Google Authorization Code":["Obter o código de autorização do Google"],"Email":["Email"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"pt"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":["A imagem seleccionada é demasiado pequena para o Facebook"],"The given image url cannot be loaded":["Não é possível carregar o URL da imagem"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Esta é uma lista de conteúdos relacionados para os quais poderá criar ligações no seu conteúdo. {{a}}Leia o nosso artigo sobre a estrutura do site{{/a}} para saber mais sobre como as ligações internas podem ajudar a melhorar o seu SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Está a tentar usar múltiplas frases-chave? Deve adicioná-las abaixo separadamente."],"Mark as cornerstone content":["Marcar como conteúdo principal"],"image preview":["Pré-visualização da imagem"],"Copied!":["Copiado!"],"Not supported!":["Não suportado!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":[],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Ao adicionar mais algum texto, será mostrada aqui uma lista de conteúdos relacionados, para os quais poderá adicionar ligações no seu conteúdo."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Considere criar ligações para estes {{a}}artigos principais{{/a}}:"],"Consider linking to these articles:":["Considere criar ligações para estes artigos:"],"Copy link":["Copiar ligação"],"Copy link to suggested article: %s":["Copiar ligação para o artigo sugerido: %s"],"Modify your meta description by editing it right here":["Modifique sua descrição editando-a aqui"],"On":["Ligado"],"Off":["Desligado"],"Good results":["Bons resultados"],"Need help?":["Precisa de ajuda?"],"Remove highlight from the text":["Remover o destaque do texto"],"Highlight this result in the text":["Destacar este resultado no texto"],"Considerations":["Considerações"],"Errors":["Erros"],"Change language":["Alterar idioma"],"(Opens in a new browser tab)":["(Abrir num novo separador)"],"Scroll to see the preview content.":["Deslize para baixo para pré-visualizar o conteúdo."],"Mobile preview":["Pré-visualizar em dispositivo móvel"],"Desktop preview":["Pré-visualizar em computador"],"Close snippet editor":["Fechar editor de fragmentos"],"Slug":["Slug"],"Marks are disabled in current view":["Marcações desativadas na vista atual"],"Choose an image":["Escolha uma imagem"],"Remove the image":["Remover a imagem"],"MailChimp signup failed:":["Falhou ao subscrever no MailChimp:"],"Sign Up!":["Subscrever!"],"There is an error with the request.":["Ocorreu um erro com o pedido."],"Select profile":["Seleccionar perfil"],"Choose a profile":["Escolha um perfil"],"Authorization code":["Código de autorização"],"Reauthenticate with Google":["Autenticar de novo com o Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Para autorizar o %s a obter a sua informação do Google Search Console, por favor insira o seu código de autorização do Google. Ao clicar no botão abaixo abre uma nova janela."],"Edit snippet":["Editar fragmento"],"Close the Wizard":["Fechar o assistente"],"SEO title":["Título SEO"],"Enter your Google Authorization Code and press the Authenticate button.":["Insira o seu código de autorização do Google e carregue no botão Autenticar."],"Improvements":["Melhoramentos"],"Problems":["Problemas"],"There were no profiles found":["Nenhum perfil encontrado"],"Authenticate":["Autenticar"],"Get Google Authorization Code":["Obter o código de autorização do Google"],"Search":["Pesquisar"],"Email":["Email"],"Close":["Fechar"],"Meta description":["Descrição"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2);","lang":"ro"},"We could not find any relevant articles on your website that you could link to from your post.":["Nu am putut găsi niciun articol relevant pe situl tău web pe care să-l poți lega la articolul tău."],"The image you selected is too small for Facebook":["Imaginea selectată este prea mică pentru Facebook"],"The given image url cannot be loaded":["URL-ul dat pentru imagine nu poate fi încărcat"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Aceasta este o listă a conținuturilor similare pe care ai putea să le legi în articolul tău. {{a}}Citește articolul nostru despre structura sitului{{/a}} pentru a afla mai multe despre cum legăturile interne pot ajuta la îmbunătățirea SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Încerci să folosești mai multe fraze cheie? Ar trebui să le adaugi separat, mai jos."],"Mark as cornerstone content":["Fă-l conținut fundamental"],"image preview":["previzualizare imagine"],"Copied!":["Copiată!"],"Not supported!":["Nesuportată!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Citește {{a}}articolul nostru despre structura sitului{{/a}} pentru a afla mai multe despre cum te pot ajuta legăturile interne să-ți îmbunătățească SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["După ce adaugi mai mult text, îți vom oferi aici o listă cu conținut similar la care ai putea să te legi în articolul tău."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Ia în considerare legarea la aceste {{a}}articole fundamentale:{{/a}}"],"Consider linking to these articles:":["Ia în considerare legarea la aceste articole:"],"Copy link":["Copiază legătura"],"Copy link to suggested article: %s":["Copiază legătura la articolul sugerat: %s"],"Need help?":["Ai nevoie de ajutor?"],"Choose an image":["Alege o imagine"],"Remove the image":["Înlătură imaginea"],"MailChimp signup failed:":["Autentificarea MailChimp a eșuat:"],"Sign Up!":["Înregistrează-te!"],"There is an error with the request.":["Există o eroare cu cererea."],"Select profile":["Selectează profil"],"Choose a profile":["Alege un profil"],"Authorization code":["Cod de autorizare"],"Reauthenticate with Google":["Reautentificare cu Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Pentru a-i permite lui %s să aducă informațiile tale din Consola de căutare Google, te rog introdu codul de autorizare Google. Dând clic pe butonul de mai jos se va deschide o fereastră nouă."],"Enter your Google Authorization Code and press the Authenticate button.":["Introdu codul tău de autorizare Google și apasă butonul Autentificare."],"There were no profiles found":["N-am găsit niciun profil"],"Authenticate":["Autentificare"],"Get Google Authorization Code":["Obține codul de autorizare Google"],"Email":["Email"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2);","lang":"ro"},"We could not find any relevant articles on your website that you could link to from your post.":["Nu am putut găsi niciun articol relevant pe situl tău web pe care să-l poți lega la articolul tău."],"The image you selected is too small for Facebook":["Imaginea selectată este prea mică pentru Facebook"],"The given image url cannot be loaded":["URL-ul dat pentru imagine nu poate fi încărcat"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Aceasta este o listă a conținuturilor similare pe care ai putea să le legi în articolul tău. {{a}}Citește articolul nostru despre structura sitului{{/a}} pentru a afla mai multe despre cum legăturile interne pot ajuta la îmbunătățirea SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Încerci să folosești mai multe fraze cheie? Ar trebui să le adaugi separat, mai jos."],"Mark as cornerstone content":["Fă-l conținut fundamental"],"image preview":["previzualizare imagine"],"Copied!":["Copiată!"],"Not supported!":["Nesuportată!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Citește {{a}}articolul nostru despre structura sitului{{/a}} pentru a afla mai multe despre cum te pot ajuta legăturile interne să-ți îmbunătățească SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["După ce adaugi mai mult text, îți vom oferi aici o listă cu conținut similar la care ai putea să te legi în articolul tău."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Ia în considerare legarea la aceste {{a}}articole fundamentale:{{/a}}"],"Consider linking to these articles:":["Ia în considerare legarea la aceste articole:"],"Copy link":["Copiază legătura"],"Copy link to suggested article: %s":["Copiază legătura la articolul sugerat: %s"],"Modify your meta description by editing it right here":["Modifică-ți descrierea meta editând-o chiar aici"],"On":["Pornit"],"Off":["Oprit"],"Good results":["Rezultate bune"],"Need help?":["Ai nevoie de ajutor?"],"Remove highlight from the text":["Înlătură evidențiarea din text"],"Highlight this result in the text":["Evidențiază acest rezultat în text"],"Considerations":["Considerații"],"Errors":["Erori"],"Change language":["Schimbă limba"],"(Opens in a new browser tab)":["(Se deschide într-o filă nouă a navigatorului)"],"Scroll to see the preview content.":["Derulează pentru a vedea conținutul previzualizării."],"Mobile preview":["Previzualizare pe mobil"],"Desktop preview":["Previzualizare desktop"],"Close snippet editor":["Închide editor fragment"],"Slug":["Descriptor"],"Marks are disabled in current view":["Marcajele sunt dezactivate în vizualizarea curentă"],"Choose an image":["Alege o imagine"],"Remove the image":["Înlătură imaginea"],"MailChimp signup failed:":["Autentificarea MailChimp a eșuat:"],"Sign Up!":["Înregistrează-te!"],"There is an error with the request.":["Există o eroare cu cererea."],"Select profile":["Selectează profil"],"Choose a profile":["Alege un profil"],"Authorization code":["Cod de autorizare"],"Reauthenticate with Google":["Reautentificare cu Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Pentru a-i permite lui %s să aducă informațiile tale din Consola de căutare Google, te rog introdu codul de autorizare Google. Dând clic pe butonul de mai jos se va deschide o fereastră nouă."],"Edit snippet":["Editează fragment"],"Close the Wizard":["Închide asistentul"],"SEO title":["Titlu SEO"],"Enter your Google Authorization Code and press the Authenticate button.":["Introdu codul tău de autorizare Google și apasă butonul Autentificare."],"Improvements":["Necesită îmbunătățire"],"Problems":["Probleme"],"There were no profiles found":["N-am găsit niciun profil"],"Authenticate":["Autentificare"],"Get Google Authorization Code":["Obține codul de autorizare Google"],"Search":["Caută"],"Email":["Email"],"Close":["Închide"],"Meta description":["Descriere meta"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);","lang":"ru"},"We could not find any relevant articles on your website that you could link to from your post.":["Мы не смогли найти на вашем веб-сайте соответствующие статьи, на которые вы могли бы сослаться в своем сообщении."],"The image you selected is too small for Facebook":["Выбранное изображение слишком маленькое для Facebook"],"The given image url cannot be loaded":["Ссылка на изображение не загружается"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Это список связанного содержимого, на которое вы можете сослаться в записи. {{a}}Прочитайте нашу статью о структуре сайта{{/a}}, чтобы узнать как внутренняя перелинковка может улучшить SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Вы пытаетесь использовать несколько ключевых слов? Вы должны добавить их раздельно ниже."],"Mark as cornerstone content":["Отметить как основное содержимое"],"image preview":["Предварительный просмотр изображения"],"Copied!":["Скопировано!"],"Not supported!":["Не поддерживается!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Прочитайте {{a}}нашу статью о структуре сайта{{/a}} для того, чтобы узнать больше как внутренняя перелинковка улучшает SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Как только вы напишете чуть больше, мы предложим вам список связанного содержимого, на которое вы можете сослаться в записи."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Рассмотрите создание ссылок на эти {{a}}статьи основного содержимого:{{/a}}"],"Consider linking to these articles:":["Подумайте о размещении ссылок на эти статьи:"],"Copy link":["Скопировать ссылку"],"Copy link to suggested article: %s":["Скопировать ссылку в предложенную статью: %s"],"Need help?":["Нужна помощь?"],"Choose an image":["Выберите изображение"],"Remove the image":["Удалить изображение"],"MailChimp signup failed:":["Регистрация в MailChimp не удалась:"],"Sign Up!":["Зарегистрироваться!"],"There is an error with the request.":["Ошибка запроса."],"Select profile":["Выберите профиль"],"Choose a profile":["Выберите профиль"],"Authorization code":["Код авторизации"],"Reauthenticate with Google":["Повторно авторизоваться с помощью Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Чтобы разрешить %s извлечь информацию Google Search Console, введите код авторизации Google. При нажатии на кнопку ниже, откроется новое окно."],"Enter your Google Authorization Code and press the Authenticate button.":["Введите ваш код авторизации Google и, нажмите кнопку Аутентификация"],"There were no profiles found":["Не было найдено профилей"],"Authenticate":["Аутентификация"],"Get Google Authorization Code":["Получить код авторизации от Google"],"Email":["Email"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);","lang":"ru"},"We could not find any relevant articles on your website that you could link to from your post.":["Мы не смогли найти на вашем веб-сайте соответствующие статьи, на которые вы могли бы сослаться в своем сообщении."],"The image you selected is too small for Facebook":["Выбранное изображение слишком маленькое для Facebook"],"The given image url cannot be loaded":["Ссылка на изображение не загружается"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Это список связанного содержимого, на которое вы можете сослаться в записи. {{a}}Прочитайте нашу статью о структуре сайта{{/a}}, чтобы узнать как внутренняя перелинковка может улучшить SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Вы пытаетесь использовать несколько ключевых слов? Вы должны добавить их раздельно ниже."],"Mark as cornerstone content":["Отметить как основное содержимое"],"image preview":["Предварительный просмотр изображения"],"Copied!":["Скопировано!"],"Not supported!":["Не поддерживается!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Прочитайте {{a}}нашу статью о структуре сайта{{/a}} для того, чтобы узнать больше как внутренняя перелинковка улучшает SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Как только вы напишете чуть больше, мы предложим вам список связанного содержимого, на которое вы можете сослаться в записи."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Рассмотрите создание ссылок на эти {{a}}статьи основного содержимого:{{/a}}"],"Consider linking to these articles:":["Подумайте о размещении ссылок на эти статьи:"],"Copy link":["Скопировать ссылку"],"Copy link to suggested article: %s":["Скопировать ссылку в предложенную статью: %s"],"Modify your meta description by editing it right here":["Измените свое мета-описание, отредактировав его прямо здесь"],"On":["Вкл"],"Off":["Выкл"],"Good results":["Хорошие результаты"],"Need help?":["Нужна помощь?"],"Remove highlight from the text":["Убрать выделение из текста"],"Highlight this result in the text":["Выделить результат в тексте"],"Considerations":["На рассмотрении"],"Errors":["Ошибки"],"Change language":["Сменить язык"],"(Opens in a new browser tab)":["(Откроется в новой вкладке браузера)"],"Scroll to see the preview content.":["Прокрутите, чтобы увидеть предпросмотр содержимого."],"Mobile preview":["Предварительный просмотр для мобильного устройства."],"Desktop preview":["Предварительный просмотр для Настольного ПК"],"Close snippet editor":["Закрыть редактор сниппета"],"Slug":["Ярлык"],"Marks are disabled in current view":["Маhrths отключены в текущем представлении"],"Choose an image":["Выберите изображение"],"Remove the image":["Удалить изображение"],"MailChimp signup failed:":["Регистрация в MailChimp не удалась:"],"Sign Up!":["Зарегистрироваться!"],"There is an error with the request.":["Ошибка запроса."],"Select profile":["Выберите профиль"],"Choose a profile":["Выберите профиль"],"Authorization code":["Код авторизации"],"Reauthenticate with Google":["Повторно авторизоваться с помощью Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Чтобы разрешить %s извлечь информацию Google Search Console, введите код авторизации Google. При нажатии на кнопку ниже, откроется новое окно."],"Edit snippet":["Изменить сниппет"],"Close the Wizard":["Закройте мастер"],"SEO title":["SEO-заголовок"],"Enter your Google Authorization Code and press the Authenticate button.":["Введите ваш код авторизации Google и, нажмите кнопку Аутентификация"],"Improvements":["Улучшения"],"Problems":["Проблемы"],"There were no profiles found":["Не было найдено профилей"],"Authenticate":["Аутентификация"],"Get Google Authorization Code":["Получить код авторизации от Google"],"Search":["Поиск"],"Email":["Email"],"Close":["Закрыть"],"Meta description":["Мета-описание"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;","lang":"sk"},"We could not find any relevant articles on your website that you could link to from your post.":["Nenašli sme na vašej webstránke relevantné články na ktoré by ste mohli prelinkovať z vášho článku"],"The image you selected is too small for Facebook":["Obrázok, ktorý ste vybrali je pre Facebook príliš malý"],"The given image url cannot be loaded":["Nie je možné načítať obrázok na zadanej url adrese"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":[],"Are you trying to use multiple keyphrases? You should add them separately below.":[],"Mark as cornerstone content":[],"image preview":["náhľad obrázka"],"Copied!":["Skopírované!"],"Not supported!":["Nie je podporované!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Prečítajte si {{a}}náš článok o štruktúre webovej stránky{{/a}}, kde sa dozviete viac o tom, ako môžu interné odkazy pomôcť vášmu SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":[],"Consider linking to these {{a}}cornerstone articles:{{/a}}":[],"Consider linking to these articles:":["Zvážte prelinkovanie na tieto články:"],"Copy link":["Skopírovať odkaz"],"Copy link to suggested article: %s":[],"Need help?":["Potrebujete pomoc?"],"Choose an image":["Vyberte si obrázok"],"Remove the image":["Odstrániť obrázok"],"MailChimp signup failed:":["MailChimp registrácia zlyhala:"],"Sign Up!":["Prihláste sa!"],"There is an error with the request.":["Vyskytla sa chyba pri tejto požiadavke."],"Select profile":["Vybrať profil"],"Choose a profile":["Zvoliť profil"],"Authorization code":["Autorizačný kód"],"Reauthenticate with Google":["Re-autorizovať s Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":[],"Enter your Google Authorization Code and press the Authenticate button.":["Zadajte svoj Google autorizačný kód a stlačte tlačidlo autentifikovať."],"There were no profiles found":["Žiadne profily neboli nájdené"],"Authenticate":["Autentifikovať"],"Get Google Authorization Code":["Získať Google autorizačný kód"],"Email":["Email"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;","lang":"sk"},"We could not find any relevant articles on your website that you could link to from your post.":["Nenašli sme na vašej webstránke relevantné články na ktoré by ste mohli prelinkovať z vášho článku"],"The image you selected is too small for Facebook":["Obrázok, ktorý ste vybrali je pre Facebook príliš malý"],"The given image url cannot be loaded":["Nie je možné načítať obrázok na zadanej url adrese"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":[],"Are you trying to use multiple keyphrases? You should add them separately below.":[],"Mark as cornerstone content":[],"image preview":["náhľad obrázka"],"Copied!":["Skopírované!"],"Not supported!":["Nie je podporované!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Prečítajte si {{a}}náš článok o štruktúre webovej stránky{{/a}}, kde sa dozviete viac o tom, ako môžu interné odkazy pomôcť vášmu SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":[],"Consider linking to these {{a}}cornerstone articles:{{/a}}":[],"Consider linking to these articles:":["Zvážte prelinkovanie na tieto články:"],"Copy link":["Skopírovať odkaz"],"Copy link to suggested article: %s":[],"Modify your meta description by editing it right here":["Upravte váš meta popis priamou editáciou tu."],"On":["Zapnúť"],"Off":["Vypnúť"],"Good results":["Dobré výsledky"],"Need help?":["Potrebujete pomoc?"],"Remove highlight from the text":["Odstrániť zvýraznenie textu"],"Highlight this result in the text":["Zvýrazni tento výsledok v texte."],"Considerations":["Dôležité informácie"],"Errors":["Chyby"],"Change language":["Zmeň jazyk"],"(Opens in a new browser tab)":["(Otvára sa na novej karte prehliadača)"],"Scroll to see the preview content.":["Prejdite na zobrazenie ukážky obsahu."],"Mobile preview":["Mobilné zobrazenie"],"Desktop preview":[],"Close snippet editor":["Zatvoriť editor úryvku"],"Slug":["Slug"],"Marks are disabled in current view":["Značky sú zakázané v aktuálnom pohľade"],"Choose an image":["Vyberte si obrázok"],"Remove the image":["Odstrániť obrázok"],"MailChimp signup failed:":["MailChimp registrácia zlyhala:"],"Sign Up!":["Prihláste sa!"],"There is an error with the request.":["Vyskytla sa chyba pri tejto požiadavke."],"Select profile":["Vybrať profil"],"Choose a profile":["Zvoliť profil"],"Authorization code":["Autorizačný kód"],"Reauthenticate with Google":["Re-autorizovať s Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":[],"Edit snippet":["Editovať úryvok"],"Close the Wizard":["Zatvoriť sprievodcu"],"SEO title":["SEO názov"],"Enter your Google Authorization Code and press the Authenticate button.":["Zadajte svoj Google autorizačný kód a stlačte tlačidlo autentifikovať."],"Improvements":["Vylepšenia"],"Problems":["Problémy"],"There were no profiles found":["Žiadne profily neboli nájdené"],"Authenticate":["Autentifikovať"],"Get Google Authorization Code":["Získať Google autorizačný kód"],"Search":["Vyhľadať"],"Email":["Email"],"Close":["Zatvoriť"],"Meta description":["Meta popis"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);","lang":"sr_RS"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":[],"The given image url cannot be loaded":[],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":[],"Are you trying to use multiple keyphrases? You should add them separately below.":[],"Mark as cornerstone content":["Обележи као кључни садржај"],"image preview":["преглед слике"],"Copied!":["Копирано."],"Not supported!":["Није подржано"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":[],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":[],"Consider linking to these {{a}}cornerstone articles:{{/a}}":[],"Consider linking to these articles:":[],"Copy link":["Копирајте везу"],"Copy link to suggested article: %s":["Копирај везу на препорученом чланку: %s"],"Need help?":["Треба вам помоћ?"],"Choose an image":["Одаберите неку слику"],"Remove the image":["Уклоните слику"],"MailChimp signup failed:":["Није успело пријављивање на MailChimp:"],"Sign Up!":["Пријавите се."],"There is an error with the request.":["Постоји грешка у захтеву."],"Select profile":["Изабери профил"],"Choose a profile":["Изабери профил"],"Authorization code":[],"Reauthenticate with Google":["Поново потврди Google идентитет"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Да бисте омогућили да %s преузме ваше податке са Google Search Console, молимо вас да унесете ваш Google Authorization Code. Кликом на дугме испод овог текста ће се отворити нови прозор."],"Enter your Google Authorization Code and press the Authenticate button.":["Упишите ваш Google Authorization Code и кликните на дугме \"Провера идентитета\"."],"There were no profiles found":["Није пронађен ниједан профил"],"Authenticate":["Потврђивање идентитета"],"Get Google Authorization Code":["Преузмите Google код за ауторизацију"],"Email":["Е-пошта"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);","lang":"sr_RS"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":[],"The given image url cannot be loaded":[],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":[],"Are you trying to use multiple keyphrases? You should add them separately below.":[],"Mark as cornerstone content":["Обележи као кључни садржај"],"image preview":["преглед слике"],"Copied!":["Копирано."],"Not supported!":["Није подржано"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":[],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":[],"Consider linking to these {{a}}cornerstone articles:{{/a}}":[],"Consider linking to these articles:":[],"Copy link":["Копирајте везу"],"Copy link to suggested article: %s":["Копирај везу на препорученом чланку: %s"],"Modify your meta description by editing it right here":[],"On":["Укључено"],"Off":["Искључено"],"Good results":["Добри резултати"],"Need help?":["Треба вам помоћ?"],"Remove highlight from the text":["Уклоните истицање текста из вашег текста."],"Highlight this result in the text":["Назначи овај резултат у тексту"],"Considerations":["Разматрања"],"Errors":["Грешке"],"Change language":["Промени језик"],"(Opens in a new browser tab)":["(Отвара се на новој картици прегледача)"],"Scroll to see the preview content.":["Скролуј како би прегледао садржај."],"Mobile preview":["Приказ за мобилне уређаје"],"Desktop preview":["Приказ за стоне рачунаре"],"Close snippet editor":["Искључи уређивач фрагмената"],"Slug":["Подложак"],"Marks are disabled in current view":["Ознаке су искључене у тренутном приказу"],"Choose an image":["Одаберите неку слику"],"Remove the image":["Уклоните слику"],"MailChimp signup failed:":["Није успело пријављивање на MailChimp:"],"Sign Up!":["Пријавите се."],"There is an error with the request.":["Постоји грешка у захтеву."],"Select profile":["Изабери профил"],"Choose a profile":["Изабери профил"],"Authorization code":[],"Reauthenticate with Google":["Поново потврди Google идентитет"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Да бисте омогућили да %s преузме ваше податке са Google Search Console, молимо вас да унесете ваш Google Authorization Code. Кликом на дугме испод овог текста ће се отворити нови прозор."],"Edit snippet":["Уреди фрагмент"],"Close the Wizard":["Затвори Чаробњака"],"SEO title":["SEO Наслов"],"Enter your Google Authorization Code and press the Authenticate button.":["Упишите ваш Google Authorization Code и кликните на дугме \"Провера идентитета\"."],"Improvements":["Унапређења"],"Problems":["Проблеми"],"There were no profiles found":["Није пронађен ниједан профил"],"Authenticate":["Потврђивање идентитета"],"Get Google Authorization Code":["Преузмите Google код за ауторизацију"],"Search":["Претрага"],"Email":["Е-пошта"],"Close":["Затвори"],"Meta description":["Мета опис"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"We could not find any relevant articles on your website that you could link to from your post.":["Vi kunde inte hitta några relevanta artiklar på din webbplats som du kan länka till från ditt inlägg."],"The image you selected is too small for Facebook":["Den bild du valt är för liten för Facebook"],"The given image url cannot be loaded":["Den angivna bild-URL:en kan inte laddas"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Detta är en lista med relaterat innehåll som du kan länka i ditt inlägg. {{a}}Läs vår artikel om webbplatsstruktur{{/a}} för att lära dig mer om hur intern länkning kan bidra till att förbättra din SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Försöker du använda flera nyckelordsfraser? Du borde lägga till dem separat nedan."],"Mark as cornerstone content":["Markera som grundstensinnehåll"],"image preview":["förhandsgranskning av bild"],"Copied!":["Kopierad!"],"Not supported!":["Stöds inte!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Läs {{a}}vår artikel om webbplatsstruktur{{/a}} för att lära dig mer om hur interna länkar kan hjälpa dig att förbättra din SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["När du lagt till lite mer text, ger vi dig en lista på relaterat innehåll du kan länka i ditt inlägg."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Överväg att länka till dessa {{a}}grundstensartiklar:{{/a}}"],"Consider linking to these articles:":["Överväg att länka till dessa artiklar:"],"Copy link":["Kopiera länk"],"Copy link to suggested article: %s":["Kopiera länk till föreslagen artikel: %s"],"Need help?":["Behöver du hjälp?"],"Choose an image":["Välj en bild"],"Remove the image":["Ta bort bilden"],"MailChimp signup failed:":["MailChimp-registrering misslyckades:"],"Sign Up!":["Registrera!"],"There is an error with the request.":["Ett fel uppstod vid förfrågan."],"Select profile":["Välj profil"],"Choose a profile":["Välj en profil"],"Authorization code":["Auktoriseringskod"],"Reauthenticate with Google":["Autentisera med Google igen"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["För att tillåta %s att hämta din Google Search Console information, vänligen ange din Google auktoriseringskod. Klickar du på knappen nedan öppnas ett nytt fönster."],"Enter your Google Authorization Code and press the Authenticate button.":["Fyll i din auktoriseringskod från Google och tryck på knappen \"Autentisera\"."],"There were no profiles found":["Inga profiler hittades"],"Authenticate":["Autentisera"],"Get Google Authorization Code":["Hämta auktoriseringskod från Google"],"Email":["Epost"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"We could not find any relevant articles on your website that you could link to from your post.":["Vi kunde inte hitta några relevanta artiklar på din webbplats som du kan länka till från ditt inlägg."],"The image you selected is too small for Facebook":["Den bild du valt är för liten för Facebook"],"The given image url cannot be loaded":["Den angivna bild-URL:en kan inte laddas"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Detta är en lista med relaterat innehåll som du kan länka i ditt inlägg. {{a}}Läs vår artikel om webbplatsstruktur{{/a}} för att lära dig mer om hur intern länkning kan bidra till att förbättra din SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Försöker du använda flera nyckelordsfraser? Du borde lägga till dem separat nedan."],"Mark as cornerstone content":["Markera som grundstensinnehåll"],"image preview":["förhandsgranskning av bild"],"Copied!":["Kopierad!"],"Not supported!":["Stöds inte!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Läs {{a}}vår artikel om webbplatsstruktur{{/a}} för att lära dig mer om hur interna länkar kan hjälpa dig att förbättra din SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["När du lagt till lite mer text, ger vi dig en lista på relaterat innehåll du kan länka i ditt inlägg."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Överväg att länka till dessa {{a}}grundstensartiklar:{{/a}}"],"Consider linking to these articles:":["Överväg att länka till dessa artiklar:"],"Copy link":["Kopiera länk"],"Copy link to suggested article: %s":["Kopiera länk till föreslagen artikel: %s"],"Modify your meta description by editing it right here":["Redigera din metabeskrivning genom att ändra den här"],"On":["På"],"Off":["Av"],"Good results":["Bra resultat"],"Need help?":["Behöver du hjälp?"],"Remove highlight from the text":["Ta bort markering från texten"],"Highlight this result in the text":["Markera detta resultat i texten"],"Considerations":["Överväganden"],"Errors":["Fel"],"Change language":["Byt språk"],"(Opens in a new browser tab)":["(Öppnas i en ny webbläsarflik)"],"Scroll to see the preview content.":["Rulla ner för att se en förhandsvisning av innehållet."],"Mobile preview":["Förhandsgranskning för mobil"],"Desktop preview":["Förhandsgranskning för stationär dator"],"Close snippet editor":["Stäng redigeraren för förhandsvisningstexten"],"Slug":["Slug"],"Marks are disabled in current view":["Markeringen är inaktiverade i aktuell vy"],"Choose an image":["Välj en bild"],"Remove the image":["Ta bort bilden"],"MailChimp signup failed:":["MailChimp-registrering misslyckades:"],"Sign Up!":["Registrera!"],"There is an error with the request.":["Ett fel uppstod vid förfrågan."],"Select profile":["Välj profil"],"Choose a profile":["Välj en profil"],"Authorization code":["Auktoriseringskod"],"Reauthenticate with Google":["Autentisera med Google igen"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["För att tillåta %s att hämta din Google Search Console information, vänligen ange din Google auktoriseringskod. Klickar du på knappen nedan öppnas ett nytt fönster."],"Edit snippet":["Redigera förhandsvisningstext"],"Close the Wizard":["Stäng guiden"],"SEO title":["SEO-rubrik"],"Enter your Google Authorization Code and press the Authenticate button.":["Fyll i din auktoriseringskod från Google och tryck på knappen \"Autentisera\"."],"Improvements":["Förbättringar"],"Problems":["Problem"],"There were no profiles found":["Inga profiler hittades"],"Authenticate":["Autentisera"],"Get Google Authorization Code":["Hämta auktoriseringskod från Google"],"Search":["Sök"],"Email":["Epost"],"Close":["Stäng"],"Meta description":["Metabeskrivning"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=(n > 1);","lang":"tr"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":[],"The given image url cannot be loaded":[],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":[],"Are you trying to use multiple keyphrases? You should add them separately below.":[],"Mark as cornerstone content":["Köşetaşı içerik olarak işaretle"],"image preview":["görsel önizlemesi"],"Copied!":["Kopyalandı!"],"Not supported!":["Desteklenmiyor!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Dahili bağlantının SEO'nuzu iyileştirmeye nasıl yardımcı olabileceği hakkında daha fazla bilgi edinmek için {{a}}site yapısıyla ilgili makalemizi{{/}} okuyun."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Biraz daha fazla yazı ekledikten sonra, yazınınıza bağlayabileceğiniz alakalı bir içerik listesi vereceğiz."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Bu {{a}}köşe yazılarına{{/a}} bağlantı vermeyi düşünün:"],"Consider linking to these articles:":["Bu makalelere bağlantı vermeyi düşünün:"],"Copy link":["Linki kopyala"],"Copy link to suggested article: %s":["Önerilen makelenin bağlanısını kopyala: %s"],"Need help?":["Yardıma ihtiyacınız var mı?"],"Choose an image":["Bir resim seç"],"Remove the image":["Görseli kaldır"],"MailChimp signup failed:":["MailChimp üyeliği başarısız oldu:"],"Sign Up!":["Üye ol!"],"There is an error with the request.":["İstekle ilgili bir problem var."],"Select profile":["Profil seçin"],"Choose a profile":["Bir profil seçin"],"Authorization code":["Doğrulama kodu"],"Reauthenticate with Google":["Google ile yeniden doğrula"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["%s Google Arama Konsolu bilgisini alabilmek için Google Yetkilendirme Kodu'na ihtiyaç duyuyor. Aşağıdaki düğmeye tıklayınca yeni bir pencere açılacaktır."],"Enter your Google Authorization Code and press the Authenticate button.":["Google yetkilendirme kodunuzu girin ve yetkilendir butonuna basın."],"There were no profiles found":["Profil bulunamadı"],"Authenticate":["Yetkilendir"],"Get Google Authorization Code":["Google doğrulama kodu edinin"],"Email":["E-posta"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=(n > 1);","lang":"tr"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":[],"The given image url cannot be loaded":[],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":[],"Are you trying to use multiple keyphrases? You should add them separately below.":[],"Mark as cornerstone content":["Köşetaşı içerik olarak işaretle"],"image preview":["görsel önizlemesi"],"Copied!":["Kopyalandı!"],"Not supported!":["Desteklenmiyor!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Dahili bağlantının SEO'nuzu iyileştirmeye nasıl yardımcı olabileceği hakkında daha fazla bilgi edinmek için {{a}}site yapısıyla ilgili makalemizi{{/}} okuyun."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Biraz daha fazla yazı ekledikten sonra, yazınınıza bağlayabileceğiniz alakalı bir içerik listesi vereceğiz."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Bu {{a}}köşe yazılarına{{/a}} bağlantı vermeyi düşünün:"],"Consider linking to these articles:":["Bu makalelere bağlantı vermeyi düşünün:"],"Copy link":["Linki kopyala"],"Copy link to suggested article: %s":["Önerilen makelenin bağlanısını kopyala: %s"],"Modify your meta description by editing it right here":["Meta açıklamasını burayı düzenleyerek güncelleyebilirsiniz"],"On":["Açık"],"Off":["Kapalı"],"Good results":["İyi sonuçlar"],"Need help?":["Yardıma ihtiyacınız var mı?"],"Remove highlight from the text":["Metinden vurguyu kaldır"],"Highlight this result in the text":["Bu sonucu metin içinde vurgulayın"],"Considerations":["Dikkate alınmalılar"],"Errors":["Hatalar"],"Change language":["Dil değiştir"],"(Opens in a new browser tab)":["(Yeni sekmede açılır)"],"Scroll to see the preview content.":["İçeriği ön izlemek için kaydırın"],"Mobile preview":["Mobil ön izleme"],"Desktop preview":["Masaüstü ön izleme"],"Close snippet editor":[],"Slug":["Kısa isim"],"Marks are disabled in current view":["İşaretler bu görünüşte etkisizdir"],"Choose an image":["Bir resim seç"],"Remove the image":["Görseli kaldır"],"MailChimp signup failed:":["MailChimp üyeliği başarısız oldu:"],"Sign Up!":["Üye ol!"],"There is an error with the request.":["İstekle ilgili bir problem var."],"Select profile":["Profil seçin"],"Choose a profile":["Bir profil seçin"],"Authorization code":["Doğrulama kodu"],"Reauthenticate with Google":["Google ile yeniden doğrula"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["%s Google Arama Konsolu bilgisini alabilmek için Google Yetkilendirme Kodu'na ihtiyaç duyuyor. Aşağıdaki düğmeye tıklayınca yeni bir pencere açılacaktır."],"Edit snippet":["Kod parçacığını düzenle"],"Close the Wizard":["Sihirbazı kapat"],"SEO title":["SEO başlığı"],"Enter your Google Authorization Code and press the Authenticate button.":["Google yetkilendirme kodunuzu girin ve yetkilendir butonuna basın."],"Improvements":["İyileştirmeler"],"Problems":["Problemler"],"There were no profiles found":["Profil bulunamadı"],"Authenticate":["Yetkilendir"],"Get Google Authorization Code":["Google doğrulama kodu edinin"],"Search":["Arama"],"Email":["E-posta"],"Close":["Kapat"],"Meta description":["Meta açıklaması"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);","lang":"uk_UA"},"We could not find any relevant articles on your website that you could link to from your post.":["Ми не змогли знайти на вашому сайті відповідні статті, на які ви могли б послатися в своєму записі."],"The image you selected is too small for Facebook":["Зображення, яке ви обрали, занадто мале для Facebook"],"The given image url cannot be loaded":["URL даного зображення не може бути завантажений"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Цей список зв'язаного вмісту на які ви можете посилатись у дописі. {{a}}Прочитайте нашу статтю про структуру сайту{{/a}}, щоб дізнатись як внутрішні посилання можуть покращити SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Ви намагаєтесь використати декілька ключових слів? Окремо нижче ви повинні їх додати."],"Mark as cornerstone content":["Відмітити як основний вміст"],"image preview":["попередній перегляд"],"Copied!":["Скопійовано!"],"Not supported!":["Не підтримується!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Читайте нашу статтю про структуру сайту, аби більше дізнатись про те_ як внутрішні посилання можуть допомогти покращити ваш SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Щойно ви додасте ще трохи копій, ми надамо вам перелік пов'язаного контенту (вмісту), до котрого ви зможете посилатись у ваших записах"],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Перегляньте посилання на ці ключові статті"],"Consider linking to these articles:":["Переглянте посилання на ці статті"],"Copy link":["Скопіювати посилання"],"Copy link to suggested article: %s":["Скопіюйте посилання до пропонованої статті: %s"],"Need help?":["Потрібна допомога?"],"Choose an image":["Вибрати зображення"],"Remove the image":["Вилучити зображення"],"MailChimp signup failed:":["Помилка реєстрації MailChimp:"],"Sign Up!":["Зареєструватись!"],"There is an error with the request.":["Існує помилка з запитом."],"Select profile":["Виберіть профіль"],"Choose a profile":["Виберіть профіль"],"Authorization code":["Код авторизації"],"Reauthenticate with Google":["Повторне автентифікації за допомогою Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Щоб дозволити %s завантажити інформацію про Google Search Console, введіть свій Авторизаційний код Google. Натиснувши на кнопку нижче, відкриється нове вікно"],"Enter your Google Authorization Code and press the Authenticate button.":["Введіть ваш код авторизації Google і натисніть кнопку Аутентифікація."],"There were no profiles found":["Профілі не знайдено"],"Authenticate":["Аутентифікувати"],"Get Google Authorization Code":["Отримати код авторизації Google"],"Email":["Email"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);","lang":"uk_UA"},"We could not find any relevant articles on your website that you could link to from your post.":["Ми не змогли знайти на вашому сайті відповідні статті, на які ви могли б послатися в своєму записі."],"The image you selected is too small for Facebook":["Зображення, яке ви обрали, занадто мале для Facebook"],"The given image url cannot be loaded":["URL даного зображення не може бути завантажений"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Цей список зв'язаного вмісту на які ви можете посилатись у дописі. {{a}}Прочитайте нашу статтю про структуру сайту{{/a}}, щоб дізнатись як внутрішні посилання можуть покращити SEO."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Ви намагаєтесь використати декілька ключових слів? Окремо нижче ви повинні їх додати."],"Mark as cornerstone content":["Відмітити як основний вміст"],"image preview":["попередній перегляд"],"Copied!":["Скопійовано!"],"Not supported!":["Не підтримується!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Читайте нашу статтю про структуру сайту, аби більше дізнатись про те_ як внутрішні посилання можуть допомогти покращити ваш SEO."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Щойно ви додасте ще трохи копій, ми надамо вам перелік пов'язаного контенту (вмісту), до котрого ви зможете посилатись у ваших записах"],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Перегляньте посилання на ці ключові статті"],"Consider linking to these articles:":["Переглянте посилання на ці статті"],"Copy link":["Скопіювати посилання"],"Copy link to suggested article: %s":["Скопіюйте посилання до пропонованої статті: %s"],"Modify your meta description by editing it right here":["Вкажіть свій мета-опис, редагуючи його прямо тут"],"On":["Увімкнено"],"Off":["Вимкнено"],"Good results":["Гарні результати"],"Need help?":["Потрібна допомога?"],"Remove highlight from the text":["Видалити виділення з тексту"],"Highlight this result in the text":["Виділіть цей результат у тексті"],"Considerations":["Міркування"],"Errors":["Помилки"],"Change language":["Змінити мову"],"(Opens in a new browser tab)":["(Відкриється в новій вкладці браузера)"],"Scroll to see the preview content.":["Прокрутіть, щоб побачити попередній перегляд контенту"],"Mobile preview":["Мобільний перегляд"],"Desktop preview":["Перегляд на комп'ютері"],"Close snippet editor":["Закрийте фрагмент редактора"],"Slug":["Частина посилання"],"Marks are disabled in current view":["Знаки відключені в поточному перегляді"],"Choose an image":["Вибрати зображення"],"Remove the image":["Вилучити зображення"],"MailChimp signup failed:":["Помилка реєстрації MailChimp:"],"Sign Up!":["Зареєструватись!"],"There is an error with the request.":["Існує помилка з запитом."],"Select profile":["Виберіть профіль"],"Choose a profile":["Виберіть профіль"],"Authorization code":["Код авторизації"],"Reauthenticate with Google":["Повторне автентифікації за допомогою Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Щоб дозволити %s завантажити інформацію про Google Search Console, введіть свій Авторизаційний код Google. Натиснувши на кнопку нижче, відкриється нове вікно"],"Edit snippet":["Редагувати сніпет"],"Close the Wizard":["Закрийте Майстра"],"SEO title":["SEO-заголовок"],"Enter your Google Authorization Code and press the Authenticate button.":["Введіть ваш код авторизації Google і натисніть кнопку Аутентифікація."],"Improvements":["Поліпшення"],"Problems":["Проблеми"],"There were no profiles found":["Профілі не знайдено"],"Authenticate":["Аутентифікувати"],"Get Google Authorization Code":["Отримати код авторизації Google"],"Search":["Шукати"],"Email":["Email"],"Close":["Закрити"],"Meta description":["Мета-опис"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=1; plural=0;","lang":"vi_VN"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":["Ảnh bạn chọn quá nhỏ cho Facebook"],"The given image url cannot be loaded":["Không thể tải được đường dẫn ảnh đã nhập"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Đây là danh sách nội dung liên quan bạn có thể liên kết trong bài viết. {{a}}Đọc bài viết của chúng tôi về cấu trúc trang web{{/a}} để biết thêm về cách liên kết nội bộ có thể giúp cải thiện SEO của bạn."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Bạn đang cố gắng sử dụng nhiều cụm từ khóa? Bạn nên thêm chúng riêng biệt bên dưới."],"Mark as cornerstone content":["Đánh dấu là nội dung quan trọng"],"image preview":["xem trước hình ảnh"],"Copied!":["Đã sao chép!"],"Not supported!":["Không được hỗ trợ!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Đọc {{a}} bài viết của chúng tôi về cấu trúc trang web {{/ a}} để tìm hiểu thêm về cách liên kết nội bộ có thể giúp cải thiện SEO của bạn."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Khi bạn thêm nhiều hơn một bản sao, chúng tôi sẽ cung cấp cho bạn một danh sách nội dung có liên quan ở đây để bạn có thể liên kết trong bài viết của mình."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Cân nhắc liên kết tới {{a}}những bài viết chủ đạo{{/a}}"],"Consider linking to these articles:":["Xem xét việc liên kết đến các bài viết này"],"Copy link":["Sao chép liên kết"],"Copy link to suggested article: %s":["Sao chép liên kết đến bài viết được đề xuất: %s"],"Need help?":["Cần trợ giúp?"],"Choose an image":["Chọn một ảnh"],"Remove the image":["Xóa ảnh"],"MailChimp signup failed:":["Đăng ký MailChimp thất bại:"],"Sign Up!":["Đăng ký!"],"There is an error with the request.":["Có lỗi trong yêu cầu."],"Select profile":["Chọn Hồ sơ"],"Choose a profile":["Chọn hồ sơ"],"Authorization code":["Mã cấp quyền"],"Reauthenticate with Google":["Xác thực lại với Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Để cho phép %s lấy dữ liệu từ Google Search Console của bạn, vui lòng nhập mã xác thực Google. Nhấp chuột vào nút bên dưới để mở một cửa sổ mới."],"Enter your Google Authorization Code and press the Authenticate button.":["Nhập mã xác thực Google của bạn và bấm nút Authenticate."],"There were no profiles found":["Không có hồ sơ nào"],"Authenticate":["Xác thực"],"Get Google Authorization Code":["Lấy mã Google Authorization"],"Email":["Email"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=1; plural=0;","lang":"vi_VN"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":["Ảnh bạn chọn quá nhỏ cho Facebook"],"The given image url cannot be loaded":["Không thể tải được đường dẫn ảnh đã nhập"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Đây là danh sách nội dung liên quan bạn có thể liên kết trong bài viết. {{a}}Đọc bài viết của chúng tôi về cấu trúc trang web{{/a}} để biết thêm về cách liên kết nội bộ có thể giúp cải thiện SEO của bạn."],"Are you trying to use multiple keyphrases? You should add them separately below.":["Bạn đang cố gắng sử dụng nhiều cụm từ khóa? Bạn nên thêm chúng riêng biệt bên dưới."],"Mark as cornerstone content":["Đánh dấu là nội dung quan trọng"],"image preview":["xem trước hình ảnh"],"Copied!":["Đã sao chép!"],"Not supported!":["Không được hỗ trợ!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["Đọc {{a}} bài viết của chúng tôi về cấu trúc trang web {{/ a}} để tìm hiểu thêm về cách liên kết nội bộ có thể giúp cải thiện SEO của bạn."],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["Khi bạn thêm nhiều hơn một bản sao, chúng tôi sẽ cung cấp cho bạn một danh sách nội dung có liên quan ở đây để bạn có thể liên kết trong bài viết của mình."],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["Cân nhắc liên kết tới {{a}}những bài viết chủ đạo{{/a}}"],"Consider linking to these articles:":["Xem xét việc liên kết đến các bài viết này"],"Copy link":["Sao chép liên kết"],"Copy link to suggested article: %s":["Sao chép liên kết đến bài viết được đề xuất: %s"],"Modify your meta description by editing it right here":["Chỉnh meta description của bạn bằng cách chỉnh sửa ngay tại đây"],"On":["Bật"],"Off":["Tắt"],"Good results":["Kết quả tốt"],"Need help?":["Cần trợ giúp?"],"Remove highlight from the text":["Xóa đánh dấu khỏi văn bản"],"Highlight this result in the text":["Đánh dấu kết quả này trong văn bản"],"Considerations":["Xem xét"],"Errors":["Lỗi"],"Change language":["Thay đổi ngôn ngữ"],"(Opens in a new browser tab)":["(Mở trong cửa số mới)"],"Scroll to see the preview content.":["Cuộn để xem trước nội dung."],"Mobile preview":["Xem thử trên điện thoại"],"Desktop preview":["Xem thử trên máy tính"],"Close snippet editor":["Đóng công cụ chỉnh sửa Đoạn trích dẫn"],"Slug":["Đường dẫn"],"Marks are disabled in current view":["Các đánh dấu đã bị ngưng kích hoạt trong giao diện hiện tại"],"Choose an image":["Chọn một ảnh"],"Remove the image":["Xóa ảnh"],"MailChimp signup failed:":["Đăng ký MailChimp thất bại:"],"Sign Up!":["Đăng ký!"],"There is an error with the request.":["Có lỗi trong yêu cầu."],"Select profile":["Chọn Hồ sơ"],"Choose a profile":["Chọn hồ sơ"],"Authorization code":["Mã cấp quyền"],"Reauthenticate with Google":["Xác thực lại với Google"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["Để cho phép %s lấy dữ liệu từ Google Search Console của bạn, vui lòng nhập mã xác thực Google. Nhấp chuột vào nút bên dưới để mở một cửa sổ mới."],"Edit snippet":["Sửa snippet"],"Close the Wizard":["Đóng"],"SEO title":["Tiêu đề SEO"],"Enter your Google Authorization Code and press the Authenticate button.":["Nhập mã xác thực Google của bạn và bấm nút Authenticate."],"Improvements":["Các cải tiến"],"Problems":["Các vấn đề"],"There were no profiles found":["Không có hồ sơ nào"],"Authenticate":["Xác thực"],"Get Google Authorization Code":["Lấy mã Google Authorization"],"Search":["Tìm kiếm"],"Email":["Email"],"Close":["Đóng"],"Meta description":["Thẻ mô tả"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=1; plural=0;","lang":"zh_CN"},"We could not find any relevant articles on your website that you could link to from your post.":["我们无法在您的网站上找到可以从您的文章链接到的任何相关文章。"],"The image you selected is too small for Facebook":["您选择的图像对Facebook来说太小了"],"The given image url cannot be loaded":["无法加载指定的图像网址"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["这是您可以在日志中链接到的相关内容的列表。{{a}}阅读我们关于站点结构的文章{{a}}了解更多关于内部链接如何帮助改进SEO的信息。"],"Are you trying to use multiple keyphrases? You should add them separately below.":["您想用多个关键词吗?您应该在下面单独添加。"],"Mark as cornerstone content":["标记为基石内容"],"image preview":["图像预览"],"Copied!":["已复制!"],"Not supported!":["获取帮助!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["阅读{{a}}我们关于站点结构的文章{{a}}了解更多关于内部链接如何帮助改进SEO的信息。"],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["一旦您再增加一点副本,我们会给您一份相关内容的列表,您可以在这里链接到您的文章。"],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["考虑链接到这些{{a}}基石文章:{{/a}}"],"Consider linking to these articles:":["考虑链接到这些文章:"],"Copy link":["复制链接"],"Copy link to suggested article: %s":["将链接复制到建议文章:%s"],"Need help?":["需要帮助?"],"Choose an image":["选择一张图像"],"Remove the image":["删除图像"],"MailChimp signup failed:":["Mailchimp注册失败:"],"Sign Up!":["注册!"],"There is an error with the request.":["该请求有一个错误。"],"Select profile":["选择属性"],"Choose a profile":["选择一项属性"],"Authorization code":["授权码"],"Reauthenticate with Google":["Google重新认证"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["为了 %s Google 搜索控制台能够获取您的信息,请输入您Google认证码,并点击按钮打开一个新窗口。"],"Enter your Google Authorization Code and press the Authenticate button.":["请输入您的 Google 授权码,并点击[验证]按钮。"],"There were no profiles found":["没有找到配置文件"],"Authenticate":["认证"],"Get Google Authorization Code":["获取Google授权码"],"Email":["电子信箱"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=1; plural=0;","lang":"zh_CN"},"We could not find any relevant articles on your website that you could link to from your post.":["我们无法在您的网站上找到可以从您的文章链接到的任何相关文章。"],"The image you selected is too small for Facebook":["您选择的图像对Facebook来说太小了"],"The given image url cannot be loaded":["无法加载指定的图像网址"],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["这是您可以在日志中链接到的相关内容的列表。{{a}}阅读我们关于站点结构的文章{{a}}了解更多关于内部链接如何帮助改进SEO的信息。"],"Are you trying to use multiple keyphrases? You should add them separately below.":["您想用多个关键词吗?您应该在下面单独添加。"],"Mark as cornerstone content":["标记为基石内容"],"image preview":["图像预览"],"Copied!":["已复制!"],"Not supported!":["获取帮助!"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["阅读{{a}}我们关于站点结构的文章{{a}}了解更多关于内部链接如何帮助改进SEO的信息。"],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["一旦您再增加一点副本,我们会给您一份相关内容的列表,您可以在这里链接到您的文章。"],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["考虑链接到这些{{a}}基石文章:{{/a}}"],"Consider linking to these articles:":["考虑链接到这些文章:"],"Copy link":["复制链接"],"Copy link to suggested article: %s":["将链接复制到建议文章:%s"],"Modify your meta description by editing it right here":["通过在此处进行编辑来修改元描述"],"On":["开启"],"Off":["关闭"],"Good results":["好的结果"],"Need help?":["需要帮助?"],"Remove highlight from the text":["从文本中删除高亮显示"],"Highlight this result in the text":["在文本中高亮显示此结果"],"Considerations":["注意事项"],"Errors":["错误"],"Change language":["更改语言"],"(Opens in a new browser tab)":["(在新的浏览器选项卡中打开)"],"Scroll to see the preview content.":["滚动查看预览内容。"],"Mobile preview":["手机版预览"],"Desktop preview":["桌面版预览"],"Close snippet editor":["关闭片段编辑器"],"Slug":["别名"],"Marks are disabled in current view":["标记/对号在当前视图已被禁用"],"Choose an image":["选择一张图像"],"Remove the image":["删除图像"],"MailChimp signup failed:":["Mailchimp注册失败:"],"Sign Up!":["注册!"],"There is an error with the request.":["该请求有一个错误。"],"Select profile":["选择属性"],"Choose a profile":["选择一项属性"],"Authorization code":["授权码"],"Reauthenticate with Google":["Google重新认证"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["为了 %s Google 搜索控制台能够获取您的信息,请输入您Google认证码,并点击按钮打开一个新窗口。"],"Edit snippet":["编辑片段"],"Close the Wizard":["关闭向导"],"SEO title":["SEO标题"],"Enter your Google Authorization Code and press the Authenticate button.":["请输入您的 Google 授权码,并点击[验证]按钮。"],"Improvements":["改进"],"Problems":["问题"],"There were no profiles found":["没有找到配置文件"],"Authenticate":["认证"],"Get Google Authorization Code":["获取Google授权码"],"Search":["搜索"],"Email":["电子信箱"],"Close":["关闭"],"Meta description":["元描述"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=1; plural=0;","lang":"zh_TW"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":[],"The given image url cannot be loaded":[],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["這是您可以在文章中連結的相關內容列表。{{a}}閱讀我們關於網站結構{{/a}}的文章,瞭解更多內部連結如何幫助您改善SEO。"],"Are you trying to use multiple keyphrases? You should add them separately below.":["您是否嘗試使用多個關鍵字?您應該在下面單獨增加它們。"],"Mark as cornerstone content":["標記為基石內容"],"image preview":["圖片預覽"],"Copied!":["已複製!"],"Not supported!":["不支援"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":[],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["增加更多內容後,我們會在此處為您提供相關內容列表,您可以在文章中找到這些內容。"],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["考慮連結到這些{{a}}基石文章:{{/a}}"],"Consider linking to these articles:":["考慮連結到這些文章:"],"Copy link":["複製連結"],"Copy link to suggested article: %s":["複製指向建議文章的連結:%s"],"Need help?":["需要幫助嗎?"],"Choose an image":["選擇圖片"],"Remove the image":["移除圖片"],"MailChimp signup failed:":["MailChimp 加入失敗:"],"Sign Up!":["註冊"],"There is an error with the request.":["請求出錯。"],"Select profile":["選擇檔案"],"Choose a profile":["選擇一個檔案"],"Authorization code":["認證碼"],"Reauthenticate with Google":["使用Google重新認證"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["要允許 %s 取得Google網站管理員資訊,請輸入Google認證碼。點擊下面按鈕將開啟一個新視窗。"],"Enter your Google Authorization Code and press the Authenticate button.":["輸入您的Google認證碼並點擊認證按鈕。"],"There were no profiles found":["找不到任何資訊檔案"],"Authenticate":["驗證"],"Get Google Authorization Code":["取得 Google 認證碼"],"Email":["電子信箱"]}}}
\ No newline at end of file
{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=1; plural=0;","lang":"zh_TW"},"We could not find any relevant articles on your website that you could link to from your post.":[],"The image you selected is too small for Facebook":[],"The given image url cannot be loaded":[],"This is a list of related content to which you could link in your post. {{a}}Read our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":["這是您可以在文章中連結的相關內容列表。{{a}}閱讀我們關於網站結構{{/a}}的文章,瞭解更多內部連結如何幫助您改善SEO。"],"Are you trying to use multiple keyphrases? You should add them separately below.":["您是否嘗試使用多個關鍵字?您應該在下面單獨增加它們。"],"Mark as cornerstone content":["標記為基石內容"],"image preview":["圖片預覽"],"Copied!":["已複製!"],"Not supported!":["不支援"],"Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.":[],"Once you add a bit more copy, we'll give you a list of related content here to which you could link in your post.":["增加更多內容後,我們會在此處為您提供相關內容列表,您可以在文章中找到這些內容。"],"Consider linking to these {{a}}cornerstone articles:{{/a}}":["考慮連結到這些{{a}}基石文章:{{/a}}"],"Consider linking to these articles:":["考慮連結到這些文章:"],"Copy link":["複製連結"],"Copy link to suggested article: %s":["複製指向建議文章的連結:%s"],"Modify your meta description by editing it right here":["在此處編輯來修改 Meta 描述"],"On":["啟用"],"Off":["關閉"],"Good results":["良好的結果"],"Need help?":["需要幫助嗎?"],"Remove highlight from the text":[],"Highlight this result in the text":[],"Considerations":["注意事項"],"Errors":["錯誤"],"Change language":["更改語言"],"(Opens in a new browser tab)":["(在瀏覽器的新分頁中開啟)"],"Scroll to see the preview content.":["捲動以預覽內容"],"Mobile preview":["行動裝置預覽"],"Desktop preview":["桌面預覽"],"Close snippet editor":["關閉代碼預覽編輯"],"Slug":["代稱"],"Marks are disabled in current view":["在當前瀏覽中標記為禁用"],"Choose an image":["選擇圖片"],"Remove the image":["移除圖片"],"MailChimp signup failed:":["MailChimp 加入失敗:"],"Sign Up!":["註冊"],"There is an error with the request.":["請求出錯。"],"Select profile":["選擇檔案"],"Choose a profile":["選擇一個檔案"],"Authorization code":["認證碼"],"Reauthenticate with Google":["使用Google重新認證"],"To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.":["要允許 %s 取得Google網站管理員資訊,請輸入Google認證碼。點擊下面按鈕將開啟一個新視窗。"],"Edit snippet":["編輯代碼"],"Close the Wizard":["關閉設定精靈。"],"SEO title":["SEO標題"],"Enter your Google Authorization Code and press the Authenticate button.":["輸入您的Google認證碼並點擊認證按鈕。"],"Improvements":["改進"],"Problems":["問題"],"There were no profiles found":["找不到任何資訊檔案"],"Authenticate":["驗證"],"Get Google Authorization Code":["取得 Google 認證碼"],"Search":["搜尋"],"Email":["電子信箱"],"Close":["關閉"],"Meta description":["Meta 描述"]}}}
\ No newline at end of file
<?php
/* THIS IS A GENERATED FILE. DO NOT EDIT DIRECTLY. */
$generated_i18n_strings = array(
// Reference: js/src/components/ConnectGoogleSearchConsole.js:367
__( 'Get Google Authorization Code', 'wordpress-seo' ),
// Reference: node_modules/@yoast/algolia-search-box/AlgoliaSearcher.js:232
__( 'Something went wrong. Please try again later.', 'wordpress-seo' ),
// Reference: js/src/components/ConnectGoogleSearchConsole.js:360
__( 'To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.', 'wordpress-seo' ),
// Reference: node_modules/@yoast/algolia-search-box/AlgoliaSearcher.js:247
__( 'Loading...', 'wordpress-seo' ),
// Reference: js/src/components/ConnectGoogleSearchConsole.js:348
__( 'Reauthenticate with Google', 'wordpress-seo' ),
// Reference: node_modules/@yoast/algolia-search-box/SearchBar.js:139
__( 'Search the Yoast Knowledge Base for answers to your questions:', 'wordpress-seo' ),
// Reference: js/src/components/ConnectGoogleSearchConsole.js:323
__( 'Authenticate', 'wordpress-seo' ),
// Reference: node_modules/@yoast/algolia-search-box/SearchBar.js:140
__( 'Type here to search...', 'wordpress-seo' ),
// Reference: js/src/components/ConnectGoogleSearchConsole.js:314
__( 'Authorization code', 'wordpress-seo' ),
// Reference: node_modules/@yoast/algolia-search-box/SearchBar.js:161
__( 'Search', 'wordpress-seo' ),
// Reference: js/src/components/ConnectGoogleSearchConsole.js:305
__( 'Enter your Google Authorization Code and press the Authenticate button.', 'wordpress-seo' ),
// Reference: node_modules/@yoast/algolia-search-box/SearchResultDetail.js:45
__( 'View in KB', 'wordpress-seo' ),
// Reference: js/src/components/ConnectGoogleSearchConsole.js:279
__( 'Choose a profile', 'wordpress-seo' ),
// Reference: node_modules/@yoast/algolia-search-box/SearchResultDetail.js:46
__( 'Open the knowledge base article in a new window or read it in the iframe below', 'wordpress-seo' ),
// Reference: js/src/components/ConnectGoogleSearchConsole.js:271
__( 'Select profile', 'wordpress-seo' ),
// Reference: node_modules/@yoast/algolia-search-box/SearchResultDetail.js:47
__( 'Go back', 'wordpress-seo' ),
// Reference: js/src/components/ConnectGoogleSearchConsole.js:258
__( 'There were no profiles found', 'wordpress-seo' ),
// Reference: node_modules/@yoast/algolia-search-box/SearchResultDetail.js:48
__( 'Go back to the search results', 'wordpress-seo' ),
// Reference: js/src/components/ConnectGoogleSearchConsole.js:111
__( 'There is an error with the request.', 'wordpress-seo' ),
// Reference: node_modules/@yoast/algolia-search-box/SearchResultDetail.js:82
__( 'Search result', 'wordpress-seo' ),
// Reference: js/src/components/MailchimpSignup.js:225
__( 'Email', 'wordpress-seo' ),
// Reference: node_modules/@yoast/algolia-search-box/SearchResultDetail.js:89
__( 'Knowledge base article', 'wordpress-seo' ),
// Reference: js/src/components/MailchimpSignup.js:206
__( 'Sign Up!', 'wordpress-seo' ),
// Reference: node_modules/@yoast/algolia-search-box/SearchResults.js:113
__( 'No results found.', 'wordpress-seo' ),
// Reference: js/src/components/MailchimpSignup.js:109
__( 'MailChimp signup failed:', 'wordpress-seo' ),
// Reference: node_modules/@yoast/algolia-search-box/SearchResults.js:160
__( 'Number of results found: %d', 'wordpress-seo' ),
// Reference: js/src/components/MediaUpload.js:141 js/src/components/MediaUpload.js:18
// Reference: js/src/components/MediaUpload.js:17
__( 'Choose an image', 'wordpress-seo' ),
// Reference: node_modules/@yoast/algolia-search-box/SearchResults.js:167
__( 'Search results', 'wordpress-seo' ),
// Reference: js/src/components/MediaUpload.js:122
__( 'image preview', 'wordpress-seo' ),
// Reference: node_modules/@yoast/analysis-report/AnalysisList.js:65
__( 'Marks are disabled in current view', 'wordpress-seo' ),
// Reference: js/src/components/MediaUpload.js:100
__( 'Remove the image', 'wordpress-seo' ),
// Reference: node_modules/@yoast/analysis-report/AnalysisList.js:67
__( 'Remove highlight from the text', 'wordpress-seo' ),
// Reference: node_modules/@yoast/analysis-report/AnalysisList.js:69
__( 'Highlight this result in the text', 'wordpress-seo' ),
// Reference: node_modules/@yoast/analysis-report/ContentAnalysis.js:100
__( 'Improvements', 'wordpress-seo' ),
// Reference: node_modules/@yoast/analysis-report/ContentAnalysis.js:103
__( 'Considerations', 'wordpress-seo' ),
// Reference: node_modules/@yoast/analysis-report/ContentAnalysis.js:106
__( 'Good results', 'wordpress-seo' ),
// Reference: node_modules/@yoast/analysis-report/ContentAnalysis.js:94
__( 'Errors', 'wordpress-seo' ),
// Reference: node_modules/@yoast/analysis-report/ContentAnalysis.js:97
__( 'Problems', 'wordpress-seo' ),
// Reference: node_modules/@yoast/components/ErrorBoundary.js:51
__( 'Something went wrong. Please reload the page.', 'wordpress-seo' ),
// Reference: node_modules/@yoast/components/KeywordSuggestions.js:106
// Reference: node_modules/@yoast/components/WordOccurrences.js:130
__( 'Prominent words', 'wordpress-seo' ),
// Reference: node_modules/@yoast/components/KeywordSuggestions.js:23
__( 'Read our %1$sultimate guide to keyword research%2$s to learn more about keyword research and keyword strategy.', 'wordpress-seo' ),
// Reference: node_modules/@yoast/components/KeywordSuggestions.js:50
__( 'Once you add a bit more copy, we\'ll give you a list of words that occur the most in the content. These give an indication of what your content focuses on.', 'wordpress-seo' ),
// Reference: node_modules/@yoast/components/KeywordSuggestions.js:57
__( 'The following words occur the most in the content. These give an indication of what your content focuses on. If the words differ a lot from your topic, you might want to rewrite your content accordingly. ', 'wordpress-seo' ),
// Reference: node_modules/@yoast/components/KeywordSuggestions.js:67
__( 'Once you add a bit more copy, we\'ll give you a list of words and word combinations that occur the most in the content. These give an indication of what your content focuses on.', 'wordpress-seo' ),
// Reference: node_modules/@yoast/components/KeywordSuggestions.js:74
__( 'The following words and word combinations occur the most in the content. These give an indication of what your content focuses on. If the words differ a lot from your topic, you might want to rewrite your content accordingly. ', 'wordpress-seo' ),
// Reference: node_modules/@yoast/components/LanguageNotice.js:51
__( 'Your site language is set to %s. ', 'wordpress-seo' ),
// Reference: node_modules/@yoast/components/LanguageNotice.js:54
__( 'Your site language is set to %s. If this is not correct, contact your site administrator.', 'wordpress-seo' ),
// Reference: node_modules/@yoast/components/LanguageNotice.js:70
__( 'Change language', 'wordpress-seo' ),
// Reference: node_modules/@yoast/components/Notification.js:101
__( 'Dismiss this notice', 'wordpress-seo' ),
// Reference: node_modules/@yoast/components/Toggle.js:146
__( 'On', 'wordpress-seo' ),
// Reference: node_modules/@yoast/components/Toggle.js:146
__( 'Off', 'wordpress-seo' ),
// Reference: node_modules/@yoast/components/WordOccurrences.js:57
__( '%d occurrences', 'wordpress-seo' ),
// Reference: node_modules/yoast-components/composites/LinkSuggestions/LinkSuggestion.js:48
__( 'Copy link', 'wordpress-seo' ),
......@@ -93,6 +153,129 @@ $generated_i18n_strings = array(
__( 'The given image url cannot be loaded', 'wordpress-seo' ),
// Reference: node_modules/yoast-components/composites/Plugin/SocialPreviews/Facebook/components/FacebookImage.js:150
__( 'The image you selected is too small for Facebook', 'wordpress-seo' )
__( 'The image you selected is too small for Facebook', 'wordpress-seo' ),
// Reference: node_modules/@yoast/configuration-wizard/ConfigurationWizard.js:191
__( 'A problem occurred when saving the current step, {{link}}please file a bug report{{/link}} describing what step you are on and which changes you want to make (if any).', 'wordpress-seo' ),
// Reference: node_modules/@yoast/configuration-wizard/ConfigurationWizard.js:277
__( 'Close', 'wordpress-seo' ),
// Reference: node_modules/@yoast/configuration-wizard/ConfigurationWizard.js:278
__( 'Close the Wizard', 'wordpress-seo' ),
// Reference: node_modules/@yoast/configuration-wizard/ConfigurationWizard.js:361
__( 'Previous', 'wordpress-seo' ),
// Reference: node_modules/@yoast/configuration-wizard/ConfigurationWizard.js:366
__( 'Next', 'wordpress-seo' ),
// Reference: node_modules/@yoast/configuration-wizard/ConfigurationWizard.js:375
__( '%s installation wizard', 'wordpress-seo' ),
// Reference: node_modules/@yoast/configuration-wizard/StepIndicator.js:52
__( 'Step %1$d: %2$s', 'wordpress-seo' ),
// Reference: node_modules/@yoast/helpers/makeOutboundLink.js:75
__( '(Opens in a new browser tab)', 'wordpress-seo' ),
// Reference: node_modules/@yoast/search-metadata-previews/snippet-editor/ModeSwitcher.js:80
__( 'Mobile preview', 'wordpress-seo' ),
// Reference: node_modules/@yoast/search-metadata-previews/snippet-editor/ModeSwitcher.js:91
__( 'Desktop preview', 'wordpress-seo' ),
// Reference: node_modules/@yoast/search-metadata-previews/snippet-editor/ReplacementVariableEditor.js:92
__( 'Insert snippet variable', 'wordpress-seo' ),
// Reference: node_modules/@yoast/search-metadata-previews/snippet-editor/ReplacementVariableEditorStandalone.js:308
_n_noop( '%d result found, use up and down arrow keys to navigate', '%d results found, use up and down arrow keys to navigate', 'wordpress-seo' ),
// Reference: node_modules/@yoast/search-metadata-previews/snippet-editor/ReplacementVariableEditorStandalone.js:319
__( 'No results', 'wordpress-seo' ),
// Reference: node_modules/@yoast/search-metadata-previews/snippet-editor/SettingsSnippetEditorFields.js:135
// Reference: node_modules/@yoast/search-metadata-previews/snippet-editor/SnippetEditorFields.js:182
__( 'SEO title', 'wordpress-seo' ),
// Reference: node_modules/@yoast/search-metadata-previews/snippet-editor/SettingsSnippetEditorFields.js:152
// Reference: node_modules/@yoast/search-metadata-previews/snippet-editor/SnippetEditorFields.js:228
__( 'Meta description', 'wordpress-seo' ),
// Reference: node_modules/@yoast/search-metadata-previews/snippet-editor/SnippetEditor.js:251
__( 'Modify your meta description by editing it right here', 'wordpress-seo' ),
// Reference: node_modules/@yoast/search-metadata-previews/snippet-editor/SnippetEditor.js:271
__( 'Close snippet editor', 'wordpress-seo' ),
// Reference: node_modules/@yoast/search-metadata-previews/snippet-editor/SnippetEditor.js:555
__( 'Edit snippet', 'wordpress-seo' ),
// Reference: node_modules/@yoast/search-metadata-previews/snippet-editor/SnippetEditorFields.js:205
__( 'Slug', 'wordpress-seo' ),
// Reference: node_modules/@yoast/search-metadata-previews/snippet-preview/FixedWidthContainer.js:132
__( 'Scroll to see the preview content.', 'wordpress-seo' ),
// Reference: node_modules/@yoast/search-metadata-previews/snippet-preview/SnippetPreview.js:453
__( 'Please provide a meta description by editing the snippet below. If you don’t, Google will try to find a relevant part of your post to show in the search results.', 'wordpress-seo' ),
// Reference: node_modules/@yoast/search-metadata-previews/snippet-preview/SnippetPreview.js:743
__( 'SEO title preview', 'wordpress-seo' ),
// Reference: node_modules/@yoast/search-metadata-previews/snippet-preview/SnippetPreview.js:758
__( 'Url preview', 'wordpress-seo' ),
// Reference: node_modules/@yoast/search-metadata-previews/snippet-preview/SnippetPreview.js:766
__( 'Meta description preview', 'wordpress-seo' ),
// Reference: js/src/components/ConnectGoogleSearchConsole.js:367
__( 'Get Google Authorization Code', 'wordpress-seo' ),
// Reference: js/src/components/ConnectGoogleSearchConsole.js:360
__( 'To allow %s to fetch your Google Search Console information, please enter your Google Authorization Code. Clicking the button below will open a new window.', 'wordpress-seo' ),
// Reference: js/src/components/ConnectGoogleSearchConsole.js:348
__( 'Reauthenticate with Google', 'wordpress-seo' ),
// Reference: js/src/components/ConnectGoogleSearchConsole.js:323
__( 'Authenticate', 'wordpress-seo' ),
// Reference: js/src/components/ConnectGoogleSearchConsole.js:314
__( 'Authorization code', 'wordpress-seo' ),
// Reference: js/src/components/ConnectGoogleSearchConsole.js:305
__( 'Enter your Google Authorization Code and press the Authenticate button.', 'wordpress-seo' ),
// Reference: js/src/components/ConnectGoogleSearchConsole.js:279
__( 'Choose a profile', 'wordpress-seo' ),
// Reference: js/src/components/ConnectGoogleSearchConsole.js:271
__( 'Select profile', 'wordpress-seo' ),
// Reference: js/src/components/ConnectGoogleSearchConsole.js:258
__( 'There were no profiles found', 'wordpress-seo' ),
// Reference: js/src/components/ConnectGoogleSearchConsole.js:111
__( 'There is an error with the request.', 'wordpress-seo' ),
// Reference: js/src/components/MailchimpSignup.js:225
__( 'Email', 'wordpress-seo' ),
// Reference: js/src/components/MailchimpSignup.js:206
__( 'Sign Up!', 'wordpress-seo' ),
// Reference: js/src/components/MailchimpSignup.js:109
__( 'MailChimp signup failed:', 'wordpress-seo' ),
// Reference: js/src/components/MediaUpload.js:141 js/src/components/MediaUpload.js:18
// Reference: js/src/components/MediaUpload.js:17
__( 'Choose an image', 'wordpress-seo' ),
// Reference: js/src/components/MediaUpload.js:122
__( 'image preview', 'wordpress-seo' ),
// Reference: js/src/components/MediaUpload.js:100
__( 'Remove the image', 'wordpress-seo' )
);
/* THIS IS THE END OF THE GENERATED FILE */
./node_modules/yoastseo/src/app.js
./node_modules/yoastseo/src/assessment.js
./node_modules/yoastseo/src/assessmentHelpers/checkForTooLongSentences.js
./node_modules/yoastseo/src/assessmentHelpers/recommendedKeywordCount.js
./node_modules/yoastseo/src/assessments/index.js
./node_modules/yoastseo/src/assessments/readability/fleschReadingEaseAssessment.js
./node_modules/yoastseo/src/assessments/readability/paragraphTooLongAssessment.js
./node_modules/yoastseo/src/assessments/readability/passiveVoiceAssessment.js
./node_modules/yoastseo/src/assessments/readability/sentenceBeginningsAssessment.js
./node_modules/yoastseo/src/assessments/readability/sentenceLengthInDescriptionAssessment.js
./node_modules/yoastseo/src/assessments/readability/sentenceLengthInTextAssessment.js
./node_modules/yoastseo/src/assessments/readability/subheadingDistributionTooLongAssessment.js
./node_modules/yoastseo/src/assessments/readability/textPresenceAssessment.js
./node_modules/yoastseo/src/assessments/readability/transitionWordsAssessment.js
./node_modules/yoastseo/src/assessments/readability/wordComplexityAssessment.js
./node_modules/yoastseo/src/assessments/seo/FunctionWordsInKeyphraseAssessment.js
./node_modules/yoastseo/src/assessments/seo/InternalLinksAssessment.js
./node_modules/yoastseo/src/assessments/seo/IntroductionKeywordAssessment.js
./node_modules/yoastseo/src/assessments/seo/KeyphraseDistributionAssessment.js
./node_modules/yoastseo/src/assessments/seo/KeyphraseLengthAssessment.js
./node_modules/yoastseo/src/assessments/seo/KeywordDensityAssessment.js
./node_modules/yoastseo/src/assessments/seo/keywordStopWordsAssessment.js
./node_modules/yoastseo/src/assessments/seo/MetaDescriptionKeywordAssessment.js
./node_modules/yoastseo/src/assessments/seo/MetaDescriptionLengthAssessment.js
./node_modules/yoastseo/src/assessments/seo/OutboundLinksAssessment.js
./node_modules/yoastseo/src/assessments/seo/PageTitleWidthAssessment.js
./node_modules/yoastseo/src/assessments/seo/SingleH1Assessment.js
./node_modules/yoastseo/src/assessments/seo/SubHeadingsKeywordAssessment.js
./node_modules/yoastseo/src/assessments/seo/taxonomyTextLengthAssessment.js
./node_modules/yoastseo/src/assessments/seo/TextCompetingLinksAssessment.js
./node_modules/yoastseo/src/assessments/seo/TextImagesAssessment.js
./node_modules/yoastseo/src/assessments/seo/TextLengthAssessment.js
./node_modules/yoastseo/src/assessments/seo/TitleKeywordAssessment.js
./node_modules/yoastseo/src/assessments/seo/UrlKeywordAssessment.js
./node_modules/yoastseo/src/assessments/seo/UrlLengthAssessment.js
./node_modules/yoastseo/src/assessments/seo/urlStopWordsAssessment.js
./node_modules/yoastseo/src/assessor.js
./node_modules/yoastseo/src/bundledPlugins/index.js
./node_modules/yoastseo/src/bundledPlugins/previouslyUsedKeywords.js
./node_modules/yoastseo/src/config/config.js
./node_modules/yoastseo/src/config/content/ca.js
./node_modules/yoastseo/src/config/content/combinedConfig.js
./node_modules/yoastseo/src/config/content/default.js
./node_modules/yoastseo/src/config/content/es.js
./node_modules/yoastseo/src/config/content/it.js
./node_modules/yoastseo/src/config/content/pl.js
./node_modules/yoastseo/src/config/content/ru.js
./node_modules/yoastseo/src/config/diacritics.js
./node_modules/yoastseo/src/config/index.js
./node_modules/yoastseo/src/config/presenter.js
./node_modules/yoastseo/src/config/removalWords.js
./node_modules/yoastseo/src/config/stopwords.js
./node_modules/yoastseo/src/config/syllables.js
./node_modules/yoastseo/src/config/transliterations.js
./node_modules/yoastseo/src/config/transliterationsWPstyle.js
./node_modules/yoastseo/src/config/wordBoundaries.js
./node_modules/yoastseo/src/contentAssessor.js
./node_modules/yoastseo/src/cornerstone/contentAssessor.js
./node_modules/yoastseo/src/cornerstone/relatedKeywordAssessor.js
./node_modules/yoastseo/src/cornerstone/seoAssessor.js
./node_modules/yoastseo/src/errors/invalidType.js
./node_modules/yoastseo/src/errors/missingArgument.js
./node_modules/yoastseo/src/helpers/createMeasurementElement.js
./node_modules/yoastseo/src/helpers/domManipulation.js
./node_modules/yoastseo/src/helpers/errors.js
./node_modules/yoastseo/src/helpers/formatNumber.js
./node_modules/yoastseo/src/helpers/formatString.js
./node_modules/yoastseo/src/helpers/getFirstWordExceptions.js
./node_modules/yoastseo/src/helpers/getFormsForLanguage.js
./node_modules/yoastseo/src/helpers/getFunctionWords.js
./node_modules/yoastseo/src/helpers/getFunctionWordsLanguages.js
./node_modules/yoastseo/src/helpers/getLanguage.js
./node_modules/yoastseo/src/helpers/getLanguageAvailability.js
./node_modules/yoastseo/src/helpers/getLanguagesWithWordFormSupport.js
./node_modules/yoastseo/src/helpers/getStemForLanguage.js
./node_modules/yoastseo/src/helpers/getTransitionWords.js
./node_modules/yoastseo/src/helpers/gini.js
./node_modules/yoastseo/src/helpers/html.js
./node_modules/yoastseo/src/helpers/includesAny.js
./node_modules/yoastseo/src/helpers/index.js
./node_modules/yoastseo/src/helpers/inRange.js
./node_modules/yoastseo/src/helpers/isValueTooLong.js
./node_modules/yoastseo/src/helpers/keyphraseLengthFactor.js
./node_modules/yoastseo/src/helpers/shortlinker/index.js
./node_modules/yoastseo/src/helpers/shortlinker/Shortlinker.js
./node_modules/yoastseo/src/helpers/shortlinker/singleton.js
./node_modules/yoastseo/src/helpers/syllableCountIterator.js
./node_modules/yoastseo/src/helpers/syllableCountStep.js
./node_modules/yoastseo/src/helpers/types.js
./node_modules/yoastseo/src/interpreters/index.js
./node_modules/yoastseo/src/interpreters/scoreToRating.js
./node_modules/yoastseo/src/markers/addMark.js
./node_modules/yoastseo/src/markers/addMarkSingleWord.js
./node_modules/yoastseo/src/markers/index.js
./node_modules/yoastseo/src/markers/removeDuplicateMarks.js
./node_modules/yoastseo/src/markers/removeMarks.js
./node_modules/yoastseo/src/morphology/english/determineStem.js
./node_modules/yoastseo/src/morphology/english/getAdjectiveForms.js
./node_modules/yoastseo/src/morphology/english/getForms.js
./node_modules/yoastseo/src/morphology/english/getNounForms.js
./node_modules/yoastseo/src/morphology/english/getVerbForms.js
./node_modules/yoastseo/src/morphology/german/addAdjectiveSuffixes.js
./node_modules/yoastseo/src/morphology/german/addVerbSuffixes.js
./node_modules/yoastseo/src/morphology/german/createFormsForStemmed3rdSgVerbs.js
./node_modules/yoastseo/src/morphology/german/detectAndStemRegularParticiple.js
./node_modules/yoastseo/src/morphology/german/determineStem.js
./node_modules/yoastseo/src/morphology/german/generateAdjectiveExceptionForms.js
./node_modules/yoastseo/src/morphology/german/generateNounExceptionForms.js
./node_modules/yoastseo/src/morphology/german/generateParticipleForm.js
./node_modules/yoastseo/src/morphology/german/generateRegularNounForms.js
./node_modules/yoastseo/src/morphology/german/generateRegularVerbForms.js
./node_modules/yoastseo/src/morphology/german/generateVerbExceptionForms.js
./node_modules/yoastseo/src/morphology/german/getForms.js
./node_modules/yoastseo/src/morphology/german/helpers.js
./node_modules/yoastseo/src/morphology/german/stem.js
./node_modules/yoastseo/src/morphology/morphoHelpers/buildFormRule.js
./node_modules/yoastseo/src/morphology/morphoHelpers/createRulesFromMorphologyData.js
./node_modules/yoastseo/src/morphology/morphoHelpers/suffixHelpers.js
./node_modules/yoastseo/src/parsedPaper/assess/assessmentListFactories.js
./node_modules/yoastseo/src/parsedPaper/assess/assessments/Assessment.js
./node_modules/yoastseo/src/parsedPaper/assess/assessments/index.js
./node_modules/yoastseo/src/parsedPaper/assess/assessorFactories.js
./node_modules/yoastseo/src/parsedPaper/assess/cornerstone/assessmentListFactories.js
./node_modules/yoastseo/src/parsedPaper/assess/cornerstone/index.js
./node_modules/yoastseo/src/parsedPaper/assess/index.js
./node_modules/yoastseo/src/parsedPaper/assess/scoreAggregators/index.js
./node_modules/yoastseo/src/parsedPaper/assess/scoreAggregators/ReadabilityScoreAggregator.js
./node_modules/yoastseo/src/parsedPaper/assess/scoreAggregators/ScoreAggregator.js
./node_modules/yoastseo/src/parsedPaper/assess/scoreAggregators/SEOScoreAggregator.js
./node_modules/yoastseo/src/parsedPaper/assess/TreeAssessor.js
./node_modules/yoastseo/src/parsedPaper/build/PaperParser.js
./node_modules/yoastseo/src/parsedPaper/build/tree/cleanup/calculateTextIndices.js
./node_modules/yoastseo/src/parsedPaper/build/tree/cleanup/getElementContent.js
./node_modules/yoastseo/src/parsedPaper/build/tree/cleanup/postParsing.js
./node_modules/yoastseo/src/parsedPaper/build/tree/html/buildTree.js
./node_modules/yoastseo/src/parsedPaper/build/tree/html/htmlConstants.js
./node_modules/yoastseo/src/parsedPaper/build/tree/html/TreeAdapter.js
./node_modules/yoastseo/src/parsedPaper/build/tree/index.js
./node_modules/yoastseo/src/parsedPaper/build/tree/TreeBuilder.js
./node_modules/yoastseo/src/parsedPaper/ParsedPaper.js
./node_modules/yoastseo/src/parsedPaper/research/index.js
./node_modules/yoastseo/src/parsedPaper/research/researches/Headings.js
./node_modules/yoastseo/src/parsedPaper/research/researches/index.js
./node_modules/yoastseo/src/parsedPaper/research/researches/Research.js
./node_modules/yoastseo/src/parsedPaper/research/TreeResearcher.js
./node_modules/yoastseo/src/parsedPaper/structure/tree/FormattingElement.js
./node_modules/yoastseo/src/parsedPaper/structure/tree/index.js
./node_modules/yoastseo/src/parsedPaper/structure/tree/nodes/Heading.js
./node_modules/yoastseo/src/parsedPaper/structure/tree/nodes/Ignored.js
./node_modules/yoastseo/src/parsedPaper/structure/tree/nodes/index.js
./node_modules/yoastseo/src/parsedPaper/structure/tree/nodes/LeafNode.js
./node_modules/yoastseo/src/parsedPaper/structure/tree/nodes/List.js
./node_modules/yoastseo/src/parsedPaper/structure/tree/nodes/ListItem.js
./node_modules/yoastseo/src/parsedPaper/structure/tree/nodes/Node.js
./node_modules/yoastseo/src/parsedPaper/structure/tree/nodes/Paragraph.js
./node_modules/yoastseo/src/parsedPaper/structure/tree/nodes/StructuredNode.js
./node_modules/yoastseo/src/parsedPaper/structure/tree/nodes/Whitespace.js
./node_modules/yoastseo/src/parsedPaper/structure/tree/TextContainer.js
./node_modules/yoastseo/src/pluggable.js
./node_modules/yoastseo/src/relatedKeywordAssessor.js
./node_modules/yoastseo/src/relatedKeywordTaxonomyAssessor.js
./node_modules/yoastseo/src/renderers/AssessorPresenter.js
./node_modules/yoastseo/src/researcher.js
./node_modules/yoastseo/src/researches/buildKeywordForms.js
./node_modules/yoastseo/src/researches/calculateFleschReading.js
./node_modules/yoastseo/src/researches/catalan/transitionWords.js
./node_modules/yoastseo/src/researches/catalan/twoPartTransitionWords.js
./node_modules/yoastseo/src/researches/countLinks.js
./node_modules/yoastseo/src/researches/countSentencesFromDescription.js
./node_modules/yoastseo/src/researches/countSentencesFromText.js
./node_modules/yoastseo/src/researches/dutch/firstWordExceptions.js
./node_modules/yoastseo/src/researches/dutch/functionWords.js
./node_modules/yoastseo/src/researches/dutch/passiveVoice/auxiliaries.js
./node_modules/yoastseo/src/researches/dutch/passiveVoice/DutchParticiple.js
./node_modules/yoastseo/src/researches/dutch/passiveVoice/irregulars.js
./node_modules/yoastseo/src/researches/dutch/passiveVoice/nonParticiples.js
./node_modules/yoastseo/src/researches/dutch/passiveVoice/SentencePart.js
./node_modules/yoastseo/src/researches/dutch/passiveVoice/stopwords.js
./node_modules/yoastseo/src/researches/dutch/transitionWords.js
./node_modules/yoastseo/src/researches/dutch/twoPartTransitionWords.js
./node_modules/yoastseo/src/researches/english/firstWordExceptions.js
./node_modules/yoastseo/src/researches/english/functionWords.js
./node_modules/yoastseo/src/researches/english/passiveVoice/auxiliaries.js
./node_modules/yoastseo/src/researches/english/passiveVoice/EnglishParticiple.js
./node_modules/yoastseo/src/researches/english/passiveVoice/irregulars.js
./node_modules/yoastseo/src/researches/english/passiveVoice/non-verb-ending-ed.js
./node_modules/yoastseo/src/researches/english/passiveVoice/SentencePart.js
./node_modules/yoastseo/src/researches/english/passiveVoice/stopwords.js
./node_modules/yoastseo/src/researches/english/transitionWords.js
./node_modules/yoastseo/src/researches/english/twoPartTransitionWords.js
./node_modules/yoastseo/src/researches/findKeywordFormsInString.js
./node_modules/yoastseo/src/researches/findKeywordInFirstParagraph.js
./node_modules/yoastseo/src/researches/findKeywordInPageTitle.js
./node_modules/yoastseo/src/researches/findTransitionWords.js
./node_modules/yoastseo/src/researches/french/firstWordExceptions.js
./node_modules/yoastseo/src/researches/french/functionWords.js
./node_modules/yoastseo/src/researches/french/passiveVoice/auxiliaries.js
./node_modules/yoastseo/src/researches/french/passiveVoice/exceptionsParticiples.js
./node_modules/yoastseo/src/researches/french/passiveVoice/FrenchParticiple.js
./node_modules/yoastseo/src/researches/french/passiveVoice/irregulars.js
./node_modules/yoastseo/src/researches/french/passiveVoice/SentencePart.js
./node_modules/yoastseo/src/researches/french/passiveVoice/stopwords.js
./node_modules/yoastseo/src/researches/french/transitionWords.js
./node_modules/yoastseo/src/researches/french/twoPartTransitionWords.js
./node_modules/yoastseo/src/researches/functionWordsInKeyphrase.js
./node_modules/yoastseo/src/researches/german/firstWordExceptions.js
./node_modules/yoastseo/src/researches/german/functionWords.js
./node_modules/yoastseo/src/researches/german/passiveVoice/auxiliaries.js
./node_modules/yoastseo/src/researches/german/passiveVoice/determinePassives.js
./node_modules/yoastseo/src/researches/german/passiveVoice/exceptionsParticiplesActive.js
./node_modules/yoastseo/src/researches/german/passiveVoice/GermanParticiple.js
./node_modules/yoastseo/src/researches/german/passiveVoice/getParticiples.js
./node_modules/yoastseo/src/researches/german/passiveVoice/irregulars.js
./node_modules/yoastseo/src/researches/german/passiveVoice/regex.js
./node_modules/yoastseo/src/researches/german/passiveVoice/SentencePart.js
./node_modules/yoastseo/src/researches/german/passiveVoice/stopwords.js
./node_modules/yoastseo/src/researches/german/transitionWords.js
./node_modules/yoastseo/src/researches/german/twoPartTransitionWords.js
./node_modules/yoastseo/src/researches/getKeywordDensity.js
./node_modules/yoastseo/src/researches/getLinks.js
./node_modules/yoastseo/src/researches/getLinkStatistics.js
./node_modules/yoastseo/src/researches/getParagraphLength.js
./node_modules/yoastseo/src/researches/getPassiveVoice.js
./node_modules/yoastseo/src/researches/getProminentWordsForInsights.js
./node_modules/yoastseo/src/researches/getProminentWordsForInternalLinking.js
./node_modules/yoastseo/src/researches/getSentenceBeginnings.js
./node_modules/yoastseo/src/researches/getSubheadingTextLengths.js
./node_modules/yoastseo/src/researches/getTopicDensity.js
./node_modules/yoastseo/src/researches/getWordComplexity.js
./node_modules/yoastseo/src/researches/h1s.js
./node_modules/yoastseo/src/researches/imageAltTags.js
./node_modules/yoastseo/src/researches/imageCountInText.js
./node_modules/yoastseo/src/researches/italian/firstWordExceptions.js
./node_modules/yoastseo/src/researches/italian/functionWords.js
./node_modules/yoastseo/src/researches/italian/passiveVoice/auxiliaries.js
./node_modules/yoastseo/src/researches/italian/passiveVoice/ItalianParticiple.js
./node_modules/yoastseo/src/researches/italian/passiveVoice/participles.js
./node_modules/yoastseo/src/researches/italian/passiveVoice/SentencePart.js
./node_modules/yoastseo/src/researches/italian/passiveVoice/stopwords.js
./node_modules/yoastseo/src/researches/italian/transitionWords.js
./node_modules/yoastseo/src/researches/italian/twoPartTransitionWords.js
./node_modules/yoastseo/src/researches/keyphraseDistribution.js
./node_modules/yoastseo/src/researches/keyphraseLength.js
./node_modules/yoastseo/src/researches/keywordCount.js
./node_modules/yoastseo/src/researches/keywordCountInUrl.js
./node_modules/yoastseo/src/researches/matchKeywordInSubheadings.js
./node_modules/yoastseo/src/researches/metaDescriptionKeyword.js
./node_modules/yoastseo/src/researches/metaDescriptionLength.js
./node_modules/yoastseo/src/researches/pageTitleWidth.js
./node_modules/yoastseo/src/researches/passiveVoice/morphological/determinePassiveSentence.js
./node_modules/yoastseo/src/researches/passiveVoice/periphrastic/checkException.js
./node_modules/yoastseo/src/researches/passiveVoice/periphrastic/determinePassives.js
./node_modules/yoastseo/src/researches/passiveVoice/periphrastic/determinePassiveSentencePart.js
./node_modules/yoastseo/src/researches/passiveVoice/periphrastic/determineSentencePartIsPassive.js
./node_modules/yoastseo/src/researches/passiveVoice/periphrastic/freeAuxiliaryParticipleOrder/nonDirectParticiplePrecedenceException.js
./node_modules/yoastseo/src/researches/passiveVoice/periphrastic/getIndicesWithRegex.js
./node_modules/yoastseo/src/researches/passiveVoice/periphrastic/getParticiples.js
./node_modules/yoastseo/src/researches/passiveVoice/periphrastic/getSentenceParts.js
./node_modules/yoastseo/src/researches/passiveVoice/periphrastic/getSentencePartsSplitOnStopwords.js
./node_modules/yoastseo/src/researches/passiveVoice/periphrastic/matchParticiples.js
./node_modules/yoastseo/src/researches/polish/firstWordExceptions.js
./node_modules/yoastseo/src/researches/polish/functionWords.js
./node_modules/yoastseo/src/researches/polish/passiveVoice/auxiliaries.js
./node_modules/yoastseo/src/researches/polish/passiveVoice/participles.js
./node_modules/yoastseo/src/researches/polish/passiveVoice/PolishParticiple.js
./node_modules/yoastseo/src/researches/polish/passiveVoice/SentencePart.js
./node_modules/yoastseo/src/researches/polish/passiveVoice/stopwords.js
./node_modules/yoastseo/src/researches/polish/transitionWords.js
./node_modules/yoastseo/src/researches/polish/twoPartTransitionWords.js
./node_modules/yoastseo/src/researches/portuguese/functionWords.js
./node_modules/yoastseo/src/researches/portuguese/transitionWords.js
./node_modules/yoastseo/src/researches/portuguese/twoPartTransitionWords.js
./node_modules/yoastseo/src/researches/readingTime.js
./node_modules/yoastseo/src/researches/relevantWords.js
./node_modules/yoastseo/src/researches/russian/firstWordExceptions.js
./node_modules/yoastseo/src/researches/russian/functionWords.js
./node_modules/yoastseo/src/researches/russian/passiveVoice/participles.js
./node_modules/yoastseo/src/researches/russian/passiveVoice/participlesShortenedList.js
./node_modules/yoastseo/src/researches/russian/transitionWords.js
./node_modules/yoastseo/src/researches/russian/twoPartTransitionWords.js
./node_modules/yoastseo/src/researches/sentences.js
./node_modules/yoastseo/src/researches/spanish/firstWordExceptions.js
./node_modules/yoastseo/src/researches/spanish/functionWords.js
./node_modules/yoastseo/src/researches/spanish/passiveVoice/auxiliaries.js
./node_modules/yoastseo/src/researches/spanish/passiveVoice/participles.js
./node_modules/yoastseo/src/researches/spanish/passiveVoice/SentencePart.js
./node_modules/yoastseo/src/researches/spanish/passiveVoice/SpanishParticiple.js
./node_modules/yoastseo/src/researches/spanish/passiveVoice/stopwords.js
./node_modules/yoastseo/src/researches/spanish/transitionWords.js
./node_modules/yoastseo/src/researches/spanish/twoPartTransitionWords.js
./node_modules/yoastseo/src/researches/stopWordsInKeyword.js
./node_modules/yoastseo/src/researches/stopWordsInText.js
./node_modules/yoastseo/src/researches/stopWordsInUrl.js
./node_modules/yoastseo/src/researches/swedish/firstWordExceptions.js
./node_modules/yoastseo/src/researches/swedish/functionWords.js
./node_modules/yoastseo/src/researches/swedish/passiveVoice/participles.js
./node_modules/yoastseo/src/researches/swedish/transitionWords.js
./node_modules/yoastseo/src/researches/swedish/twoPartTransitionWords.js
./node_modules/yoastseo/src/researches/topicCount.js
./node_modules/yoastseo/src/researches/urlIsTooLong.js
./node_modules/yoastseo/src/researches/wordCountInText.js
./node_modules/yoastseo/src/seoAssessor.js
./node_modules/yoastseo/src/snippetPreview.js
./node_modules/yoastseo/src/snippetPreviewToggler.js
./node_modules/yoastseo/src/stringProcessing/addWordboundary.js
./node_modules/yoastseo/src/stringProcessing/checkNofollow.js
./node_modules/yoastseo/src/stringProcessing/countSentences.js
./node_modules/yoastseo/src/stringProcessing/countWordOccurrences.js
./node_modules/yoastseo/src/stringProcessing/countWords.js
./node_modules/yoastseo/src/stringProcessing/createRegexFromArray.js
./node_modules/yoastseo/src/stringProcessing/createRegexFromDoubleArray.js
./node_modules/yoastseo/src/stringProcessing/createWordRegex.js
./node_modules/yoastseo/src/stringProcessing/determineProminentWords.js
./node_modules/yoastseo/src/stringProcessing/directPrecedenceException.js
./node_modules/yoastseo/src/stringProcessing/directPrecedenceExceptionWithoutRegex.js
./node_modules/yoastseo/src/stringProcessing/findEmptyDivisions.js
./node_modules/yoastseo/src/stringProcessing/findKeywordInUrl.js
./node_modules/yoastseo/src/stringProcessing/followsIndex.js
./node_modules/yoastseo/src/stringProcessing/getAlttagContent.js
./node_modules/yoastseo/src/stringProcessing/getAnchorsFromText.js
./node_modules/yoastseo/src/stringProcessing/getLinkType.js
./node_modules/yoastseo/src/stringProcessing/getSentences.js
./node_modules/yoastseo/src/stringProcessing/getSubheadings.js
./node_modules/yoastseo/src/stringProcessing/getSubheadingTexts.js
./node_modules/yoastseo/src/stringProcessing/getVariationsApostrophe.js
./node_modules/yoastseo/src/stringProcessing/getWords.js
./node_modules/yoastseo/src/stringProcessing/htmlParser.js
./node_modules/yoastseo/src/stringProcessing/imageInText.js
./node_modules/yoastseo/src/stringProcessing/includesIndex.js
./node_modules/yoastseo/src/stringProcessing/index.js
./node_modules/yoastseo/src/stringProcessing/indices.js
./node_modules/yoastseo/src/stringProcessing/markWordsInSentences.js
./node_modules/yoastseo/src/stringProcessing/matchParagraphs.js
./node_modules/yoastseo/src/stringProcessing/matchStringWithRegex.js
./node_modules/yoastseo/src/stringProcessing/matchTextWithArray.js
./node_modules/yoastseo/src/stringProcessing/matchTextWithTransliteration.js
./node_modules/yoastseo/src/stringProcessing/matchTextWithWord.js
./node_modules/yoastseo/src/stringProcessing/matchWordInSentence.js
./node_modules/yoastseo/src/stringProcessing/parseSynonyms.js
./node_modules/yoastseo/src/stringProcessing/precedenceException.js
./node_modules/yoastseo/src/stringProcessing/precedenceExceptionWithoutRegex.js
./node_modules/yoastseo/src/stringProcessing/precedesIndex.js
./node_modules/yoastseo/src/stringProcessing/quotes.js
./node_modules/yoastseo/src/stringProcessing/relevantWords.js
./node_modules/yoastseo/src/stringProcessing/removeNonWordCharacters.js
./node_modules/yoastseo/src/stringProcessing/removePunctuation.js
./node_modules/yoastseo/src/stringProcessing/removePunctuationExceptQuotes.js
./node_modules/yoastseo/src/stringProcessing/removeSentenceTerminators.js
./node_modules/yoastseo/src/stringProcessing/replaceDiacritics.js
./node_modules/yoastseo/src/stringProcessing/replaceString.js
./node_modules/yoastseo/src/stringProcessing/sanitizeString.js
./node_modules/yoastseo/src/stringProcessing/sentencesLength.js
./node_modules/yoastseo/src/stringProcessing/SentenceTokenizer.js
./node_modules/yoastseo/src/stringProcessing/specialCharacterMappings.js
./node_modules/yoastseo/src/stringProcessing/stripHTMLTags.js
./node_modules/yoastseo/src/stringProcessing/stripNonTextTags.js
./node_modules/yoastseo/src/stringProcessing/stripNumbers.js
./node_modules/yoastseo/src/stringProcessing/stripSpaces.js
./node_modules/yoastseo/src/stringProcessing/stripWordBoundaries.js
./node_modules/yoastseo/src/stringProcessing/subheadingsMatch.js
./node_modules/yoastseo/src/stringProcessing/syllables/count.js
./node_modules/yoastseo/src/stringProcessing/syllables/DeviationFragment.js
./node_modules/yoastseo/src/stringProcessing/transliterate.js
./node_modules/yoastseo/src/stringProcessing/transliterateWPstyle.js
./node_modules/yoastseo/src/stringProcessing/unifyWhitespace.js
./node_modules/yoastseo/src/stringProcessing/url.js
./node_modules/yoastseo/src/stringProcessing/urlStructure.js
./node_modules/yoastseo/src/taxonomyAssessor.js
./node_modules/yoastseo/src/templates.js
./node_modules/yoastseo/src/values/AssessmentResult.js
./node_modules/yoastseo/src/values/Mark.js
./node_modules/yoastseo/src/values/Paper.js
./node_modules/yoastseo/src/values/Participle.js
./node_modules/yoastseo/src/values/ProminentWord.js
./node_modules/yoastseo/src/values/Sentence.js
./node_modules/yoastseo/src/values/SentencePart.js
./node_modules/yoastseo/src/values/WordCombination.js
./node_modules/yoastseo/src/worker/AnalysisWebWorker.js
./node_modules/yoastseo/src/worker/AnalysisWorkerWrapper.js
./node_modules/yoastseo/src/worker/createWorker.js
./node_modules/yoastseo/src/worker/index.js
./node_modules/yoastseo/src/worker/request/index.js
./node_modules/yoastseo/src/worker/request/Request.js
./node_modules/yoastseo/src/worker/request/Result.js
./node_modules/yoastseo/src/worker/scheduler/index.js
./node_modules/yoastseo/src/worker/scheduler/Scheduler.js
./node_modules/yoastseo/src/worker/scheduler/Task.js
./node_modules/yoastseo/src/worker/transporter/index.js
./node_modules/yoastseo/src/worker/transporter/parse.js
./node_modules/yoastseo/src/worker/transporter/serialize.js
./node_modules/yoastseo/src/worker/wrapTryCatchAroundAction.js
\ No newline at end of file
......@@ -6,7 +6,7 @@ License URI: http://www.gnu.org/licenses/gpl.html
Tags: SEO, XML sitemap, Content analysis, Readability
Requires at least: 4.9
Tested up to: 5.2.2
Stable tag: 11.8
Stable tag: 11.9
Requires PHP: 5.2.4
Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using the Yoast SEO plugin.
......@@ -105,6 +105,20 @@ You'll find answers to many of your questions on [kb.yoast.com](https://yoa.st/1
== Changelog ==
= 11.9.0 =
Release Date: August 20th, 2019
Are you ready for another exciting release to round up the Yoast SEO 11 cycle? Because we are! In Yoast SEO 11.9 we have improvements for security and accessibility. Read more about Yoast SEO 11.9 in [our 11.9 release post](https://yoa.st/release-11-9)!
Enhancements:
* Improves security by adding output escaping.
Bugfixes:
* Fixes a bug where the image from the configuration wizard notification was missing an empty alt attribute.
* Fixes a bug where some translations would be missing in the metabox, sidebar, configuration wizard and the help center.
= 11.8.0 =
Release Date: August 6th, 2019
......@@ -123,20 +137,5 @@ Bugfixes:
* Fixes a bug where the checkbox in the customizer about showing the blog page in the breadcrumbs would do exactly the opposite of what it promised. Props to [@garrett-eclipse](https://github.com/garrett-eclipse).
* Fixes a bug where the snippet title and meta description fields would still be left-to-right when the site was set to a right-to-left language.
= 11.7.0 =
Release Date: July 23rd, 2019
By now you probably know the 11.x releases of Yoast SEO are all about Schema. In this release, we’ve enabled the possibility to use a subset of HTML tags in the FAQ and HowTo blocks! Find out all about Yoast SEO 11.7 in [our 11.7 release post](https://yoa.st/release-11-7)!
Enhancements:
* Allows a subset of HTML tags in FAQ answer, HowTo description and HowToStep description schema output: `<h1>`, `<h2>`, `<h3>`, `<h4>`, `<h5>`, `<h6>`, `<br>`, `<ol>`, `<ul>`, `<li>`, `<a>`, `<p>`, `<b>`, `<strong>`, `<i>`, `<em>`, and their closing counterparts.
* Remove the `noindex` from feeds as this causes issues for podcasts and other feeds.
* Improves the accessibility of the horizontal tabs in the metabox by implementing an ARIA tabbed user interface.
Bugfixes:
* Fixes a bug where the avatar in the knowledge graph settings would incorrectly overwrite the default user profile picture.
= Earlier versions =
For the changelog of earlier versions, please refer to [the changelog on yoast.com](https://yoa.st/yoast-seo-changelog).
......@@ -4,4 +4,4 @@
require_once dirname(__FILE__) . '/composer'.'/autoload_real_52.php';
return ComposerAutoloaderInitef11612b0e7577d8b2eff7699a58f0a4::getLoader();
return ComposerAutoloaderInit82fe43dbdc6ff7d5af608a2bcf94ee18::getLoader();
......@@ -297,7 +297,7 @@ return array(
'WPSEO_Meta_Table_Accessible' => $baseDir . '/admin/class-meta-table-accessible.php',
'WPSEO_Meta_Values_Validator' => $baseDir . '/inc/indexables/validators/class-meta-values-validator.php',
'WPSEO_Metabox' => $baseDir . '/admin/metabox/class-metabox.php',
'WPSEO_Metabox_Addon_Tab_Section' => $baseDir . '/admin/metabox/class-metabox-addon-section.php',
'WPSEO_Metabox_Addon_Tab_Section' => $baseDir . '/deprecated/class-metabox-addon-section.php',
'WPSEO_Metabox_Analysis' => $baseDir . '/admin/metabox/interface-metabox-analysis.php',
'WPSEO_Metabox_Analysis_Readability' => $baseDir . '/admin/metabox/class-metabox-analysis-readability.php',
'WPSEO_Metabox_Analysis_SEO' => $baseDir . '/admin/metabox/class-metabox-analysis-seo.php',
......@@ -309,6 +309,7 @@ return array(
'WPSEO_Metabox_Formatter_Interface' => $baseDir . '/admin/formatter/interface-metabox-formatter.php',
'WPSEO_Metabox_Null_Tab' => $baseDir . '/admin/metabox/class-metabox-null-tab.php',
'WPSEO_Metabox_Section' => $baseDir . '/admin/metabox/interface-metabox-section.php',
'WPSEO_Metabox_Section_Additional' => $baseDir . '/admin/metabox/class-metabox-section-additional.php',
'WPSEO_Metabox_Section_React' => $baseDir . '/admin/metabox/class-metabox-section-react.php',
'WPSEO_Metabox_Section_Readability' => $baseDir . '/admin/metabox/class-metabox-section-readability.php',
'WPSEO_Metabox_Tab' => $baseDir . '/admin/metabox/interface-metabox-tab.php',
......
......@@ -2,7 +2,7 @@
// autoload_real_52.php generated by xrstf/composer-php52
class ComposerAutoloaderInitef11612b0e7577d8b2eff7699a58f0a4 {
class ComposerAutoloaderInit82fe43dbdc6ff7d5af608a2bcf94ee18 {
private static $loader;
public static function loadClassLoader($class) {
......@@ -19,9 +19,9 @@ class ComposerAutoloaderInitef11612b0e7577d8b2eff7699a58f0a4 {
return self::$loader;
}
spl_autoload_register(array('ComposerAutoloaderInitef11612b0e7577d8b2eff7699a58f0a4', 'loadClassLoader'), true /*, true */);
spl_autoload_register(array('ComposerAutoloaderInit82fe43dbdc6ff7d5af608a2bcf94ee18', 'loadClassLoader'), true /*, true */);
self::$loader = $loader = new xrstf_Composer52_ClassLoader();
spl_autoload_unregister(array('ComposerAutoloaderInitef11612b0e7577d8b2eff7699a58f0a4', 'loadClassLoader'));
spl_autoload_unregister(array('ComposerAutoloaderInit82fe43dbdc6ff7d5af608a2bcf94ee18', 'loadClassLoader'));
$vendorDir = dirname(dirname(__FILE__));
$baseDir = dirname($vendorDir);
......
......@@ -322,7 +322,7 @@ class ComposerStaticInitf22b8825991ccda35c7813f5b3928f77
'WPSEO_Meta_Table_Accessible' => __DIR__ . '/../..' . '/admin/class-meta-table-accessible.php',
'WPSEO_Meta_Values_Validator' => __DIR__ . '/../..' . '/inc/indexables/validators/class-meta-values-validator.php',
'WPSEO_Metabox' => __DIR__ . '/../..' . '/admin/metabox/class-metabox.php',
'WPSEO_Metabox_Addon_Tab_Section' => __DIR__ . '/../..' . '/admin/metabox/class-metabox-addon-section.php',
'WPSEO_Metabox_Addon_Tab_Section' => __DIR__ . '/../..' . '/deprecated/class-metabox-addon-section.php',
'WPSEO_Metabox_Analysis' => __DIR__ . '/../..' . '/admin/metabox/interface-metabox-analysis.php',
'WPSEO_Metabox_Analysis_Readability' => __DIR__ . '/../..' . '/admin/metabox/class-metabox-analysis-readability.php',
'WPSEO_Metabox_Analysis_SEO' => __DIR__ . '/../..' . '/admin/metabox/class-metabox-analysis-seo.php',
......@@ -334,6 +334,7 @@ class ComposerStaticInitf22b8825991ccda35c7813f5b3928f77
'WPSEO_Metabox_Formatter_Interface' => __DIR__ . '/../..' . '/admin/formatter/interface-metabox-formatter.php',
'WPSEO_Metabox_Null_Tab' => __DIR__ . '/../..' . '/admin/metabox/class-metabox-null-tab.php',
'WPSEO_Metabox_Section' => __DIR__ . '/../..' . '/admin/metabox/interface-metabox-section.php',
'WPSEO_Metabox_Section_Additional' => __DIR__ . '/../..' . '/admin/metabox/class-metabox-section-additional.php',
'WPSEO_Metabox_Section_React' => __DIR__ . '/../..' . '/admin/metabox/class-metabox-section-react.php',
'WPSEO_Metabox_Section_Readability' => __DIR__ . '/../..' . '/admin/metabox/class-metabox-section-readability.php',
'WPSEO_Metabox_Tab' => __DIR__ . '/../..' . '/admin/metabox/interface-metabox-tab.php',
......
......@@ -15,7 +15,7 @@ if ( ! function_exists( 'add_filter' ) ) {
* {@internal Nobody should be able to overrule the real version number as this can cause
* serious issues with the options, so no if ( ! defined() ).}}
*/
define( 'WPSEO_VERSION', '11.8' );
define( 'WPSEO_VERSION', '11.9' );
if ( ! defined( 'WPSEO_PATH' ) ) {
......
......@@ -8,7 +8,7 @@
*
* @wordpress-plugin
* Plugin Name: Yoast SEO
* Version: 11.8
* Version: 11.9
* Plugin URI: https://yoa.st/1uj
* Description: The first true all-in-one SEO solution for WordPress, including on-page content analysis, XML sitemaps and much more.
* Author: Team Yoast
......@@ -18,7 +18,7 @@
* License: GPL v3
*
* WC requires at least: 3.0
* WC tested up to: 3.5
* WC tested up to: 3.7
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
......
......@@ -148,7 +148,7 @@
<?php
endif;
?>
<script src="/wp-content/themes/biuro/js/main-1e4dd15b.min.js" async></script>
<script src="/wp-content/themes/biuro/js/main-1618cb33.min.js" async></script>
<?php
// global $time_start;
......
......@@ -643,8 +643,7 @@ function copyTextToClipboard (text) {
if (document.querySelector('.js-copy-to-clipboard')) {
document.querySelector('.js-copy-to-clipboard').addEventListener('click', (e) => {
e.preventDefault();
const sep = (window.location.href.indexOf('?') === -1) ? '?' : '&';
copyTextToClipboard(window.location.href + sep + 'utm_source=biuro&utm_medium=Share&utm_campaign=Copy');
copyTextToClipboard(window.location.origin + window.location.pathname + '?utm_source=copy_share_button_job_page ');
});
}
......@@ -676,8 +675,8 @@ if (document.querySelector('.js-copy-to-clipboard')) {
node.addEventListener('click', (e) => {
window.dataLayer = window.dataLayer || [];
window.dataLayer.push({
'event': 'shareClick',
'shareLabel': node.dataset.label || ''
event: 'shareClick',
shareLabel: node.dataset.label || ''
});
});
});
......@@ -779,10 +778,9 @@ if (messenger) {
messenger.addEventListener('click', (e) => {
e.preventDefault();
const sep = (window.location.href.indexOf('?') === -1) ? '?' : '&';
const target = e.currentTarget;
window.location.href = 'fb-messenger://share/?link=' + encodeURIComponent(window.location.href + sep + 'utm_source=biuro&utm_medium=Share&utm_campaign=Messenger&app_id=' + target.dataset.id);
window.location.href = 'fb-messenger://share/?link=' + encodeURIComponent(window.location.origin + window.location.pathname + '?utm_source=messenger_share_button_job_page&app_id=' + target.dataset.id);
setTimeout(() => {
if (document.hidden || !isPageActive) {
......@@ -802,7 +800,6 @@ if (whatsapp) {
const target = e.currentTarget;
// window.location.href = 'whatsapp://send?text=' + encodeURIComponent(target.dataset.text);
window.location.href = 'whatsapp://send?text=' + target.dataset.text;
setTimeout(() => {
......
<?php
// $jobID = get_the_ID();
$ID = get_the_ID();
$pod = pods( 'job', get_the_ID() );
$pod = pods( 'job', $ID );
echo do_shortcode('[biuro-contacts--position job_id="' . $pod->field( 'livas-id' ) . '"]');
$requestURL = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' ? "https" : "http") . "://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";
$requestURL = get_post_permalink( $ID );
$redirectURL = $requestURL;
$sep = (false !== strpos($_SERVER['REQUEST_URI'], '?')) ? '&' : '?';
$mailto = 'mailto:?subject=' . __('Job position', 'biuro') . ': ' . $pod->field( 'title' ) . '&body=' . __('I think you might like this job offer', 'biuro') . ': ' . urlencode($requestURL . $sep . 'utm_source=biuro&utm_medium=Share&utm_campaign=Email');
$mailto = 'mailto:?subject=' . __('Job position', 'biuro') . ': ' . $pod->field( 'title' ) . '&body=' . __('I think you might like this job offer', 'biuro') . ': ' . urlencode($requestURL . '?utm_source=email_share_button_job_page') . '%0D%0A%0D%0A';
$social = get_option( 'wpseo_social' );
......@@ -52,12 +48,12 @@
<a rel="noopener" href="https://www.facebook.com/dialog/share?app_id=<?php echo $appID; ?>&display=popup&amp;link=<?php echo urlencode($requestURL . $sep . 'utm_source=biuro&utm_medium=Share&utm_campaign=Facebook'); ?>&redirect_uri=<?php echo $redirectURL; ?>" class="gtm-share-click js-share-facebook c-share--option c-share--option-facebook" data-label="Facebook">
<a rel="noopener" href="https://www.facebook.com/dialog/share?app_id=<?php echo $appID; ?>&display=popup&amp;href=<?php echo urlencode($requestURL . '?utm_source=facebook_share_button_job_page'); ?>&redirect_uri=<?php echo $requestURL; ?>" class="gtm-share-click js-share-facebook c-share--option c-share--option-facebook" data-label="Facebook">
<svg width="9px" height="18px" class="c-ico--share-facebook">
<use xlink:href="#ico--job-facebook"></use>
</svg>
</a>
<a rel="noopener" href="https://www.facebook.com/dialog/send?app_id=<?php echo $appID; ?>&amp;link=<?php echo urlencode($requestURL . $sep . 'utm_source=biuro&utm_medium=Share&utm_campaign=Messenger'); ?>&redirect_uri=<?php echo $redirectURL; ?>" class="gtm-share-click js-share-messenger c-share--option c-share--option-messenger" data-label="Messenger" data-id="<?php echo $appID; ?>">
<a rel="noopener" href="https://www.facebook.com/dialog/send?app_id=<?php echo $appID; ?>&amp;link=<?php echo urlencode($requestURL . '?utm_source=messenger_share_button_job_page'); ?>&redirect_uri=<?php echo $requestURL; ?>" class="gtm-share-click js-share-messenger c-share--option c-share--option-messenger" data-label="Messenger" data-id="<?php echo $appID; ?>">
<svg width="15px" height="15px" class="c-ico--share-messenger">
<use xlink:href="#ico--job-messenger"></use>
</svg>
......@@ -76,7 +72,7 @@
</div>
</a>
<?php
$waText = urlencode(__('I think you might like this job offer', 'biuro') . ': ' . $requestURL . $sep . 'utm_source=biuro&utm_medium=Share&utm_campaign=Whatsapp');
$waText = __('I think you might like this job offer', 'biuro') . ': ' . urlencode($requestURL . '?utm_source=whatsapp_share_button_job_page');
?>
<a target="_blank" rel="noopener" href="https://wa.me/?text=<?php echo $waText; ?>" data-text="<?php echo $waText; ?>" class="js-share-whatsapp gtm-share-click c-share--option c-share--option-phone" data-label="WhatsApp">
<svg width="17px" height="18px" class="c-ico--share-whatsapp">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment