Plugin Directory

Changeset 2065083


Ignore:
Timestamp:
04/08/2019 01:45:52 PM (7 years ago)
Author:
ireneyoast
Message:

Committing 11.0-RC2 to trunk

Location:
wordpress-seo/trunk
Files:
90 added
79 deleted
185 edited

Legend:

Unmodified
Added
Removed
  • wordpress-seo/trunk/admin/ajax.php

    r2021176 r2065083  
    2222 */
    2323function wpseo_ajax_json_echo_die( $results ) {
    24     echo wp_json_encode( $results );
     24    echo WPSEO_Utils::format_json_encode( $results );
    2525    die();
    2626}
     
    298298
    299299    wp_die(
    300         wp_json_encode( WPSEO_Meta::keyword_usage( $keyword, $post_id ) )
     300        WPSEO_Utils::format_json_encode( WPSEO_Meta::keyword_usage( $keyword, $post_id ) )
    301301    );
    302302}
     
    328328
    329329    wp_die(
    330         wp_json_encode( $usage )
     330        WPSEO_Utils::format_json_encode( $usage )
    331331    );
    332332}
  • wordpress-seo/trunk/admin/ajax/class-recalculate-scores-ajax.php

    r1843617 r2065083  
    2929
    3030        wp_die(
    31             wp_json_encode(
     31            WPSEO_Utils::format_json_encode(
    3232                array(
    3333                    'posts' => $this->calculate_posts(),
     
    5050
    5151            if ( ! empty( $response ) ) {
    52                 wp_die( wp_json_encode( $response ) );
     52                wp_die( WPSEO_Utils::format_json_encode( $response ) );
    5353            }
    5454        }
  • wordpress-seo/trunk/admin/ajax/class-shortcode-filter.php

    r1843617 r2065083  
    3737        }
    3838
    39         wp_die( wp_json_encode( $parsed_shortcodes ) );
     39        wp_die( WPSEO_Utils::format_json_encode( $parsed_shortcodes ) );
    4040    }
    4141}
  • wordpress-seo/trunk/admin/ajax/class-yoast-dismissable-notice.php

    r2061403 r2065083  
    77
    88/**
    9  * This class will catch the request to dismiss the target notice (set by notice_name) and will store the dismiss status as an user meta
    10  * in the database
     9 * This class will catch the request to dismiss the target notice (set by notice_name)
     10 * and will store the dismiss status as an user meta in the database
    1111 */
    1212class Yoast_Dismissable_Notice_Ajax {
  • wordpress-seo/trunk/admin/class-add-keyword-modal.php

    r2009097 r2065083  
    3737                'Yoast SEO Premium'
    3838            ),
    39             'small'                    => __( '1 year free updates and upgrades included!', 'wordpress-seo' ),
     39            'small'                    => __( '1 year free support and updates included!', 'wordpress-seo' ),
    4040            'a11yNotice.opensInNewTab' => __( '(Opens in a new browser tab)', 'wordpress-seo' ),
    4141        );
  • wordpress-seo/trunk/admin/class-admin-asset-manager.php

    r2061403 r2065083  
    77
    88/**
    9  * This class registers all the necessary styles and scripts. Also has methods for the enqueing of scripts and styles. It automatically adds a prefix to the handle.
     9 * This class registers all the necessary styles and scripts.
     10 *
     11 * Also has methods for the enqueing of scripts and styles.
     12 * It automatically adds a prefix to the handle.
    1013 */
    1114class WPSEO_Admin_Asset_Manager {
     
    337340                'src'  => 'search-appearance-' . $flat_version,
    338341                'deps' => array(
     342                    'wp-api-fetch',
    339343                    self::PREFIX . 'components',
    340344                    self::PREFIX . 'commons',
     
    515519                    'wp-components',
    516520                    'wp-data',
     521                    self::PREFIX . 'analysis',
     522                    self::PREFIX . 'components',
    517523                    self::PREFIX . 'commons',
    518524                ),
     
    544550                    'wp-element',
    545551                    'wp-i18n',
     552                    'wp-api-fetch',
    546553                    self::PREFIX . 'components',
    547554                    self::PREFIX . 'commons',
  • wordpress-seo/trunk/admin/class-admin-init.php

    r2061403 r2065083  
    118118
    119119        $notification_center = Yoast_Notification_Center::get();
    120         if ( $this->has_default_tagline() ) {
    121             $notification_center->add_notification( $tagline_notification );
    122         }
    123         else {
    124             $notification_center->remove_notification( $tagline_notification );
    125         }
     120        $notification_center->remove_notification( $tagline_notification );
    126121    }
    127122
  • wordpress-seo/trunk/admin/class-admin.php

    r2063108 r2065083  
    1010 */
    1111class WPSEO_Admin {
    12 
    1312    /**
    1413     * The page identifier used in WordPress to register the admin page.
     
    1918     */
    2019    const PAGE_IDENTIFIER = 'wpseo_dashboard';
    21 
    2220    /**
    2321     * Array of classes that add admin functionality.
     
    5250        }
    5351
    54         $this->admin_features = array(
    55             // Google Search Console.
    56             'google_search_console' => new WPSEO_GSC(),
    57             'dashboard_widget'      => new Yoast_Dashboard_Widget(),
    58         );
    59 
    60         if ( WPSEO_Metabox::is_post_overview( $pagenow ) || WPSEO_Metabox::is_post_edit( $pagenow ) ) {
    61             $this->admin_features['primary_category'] = new WPSEO_Primary_Term_Admin();
    62         }
    63 
    6452        if ( filter_input( INPUT_GET, 'page' ) === 'wpseo_tools' && filter_input( INPUT_GET, 'tool' ) === null ) {
    6553            new WPSEO_Recalculate_Scores();
     
    10189        if ( WPSEO_Utils::is_plugin_network_active() ) {
    10290            $integrations[] = new Yoast_Network_Admin();
     91        }
     92
     93        $this->admin_features = array(
     94            'google_search_console' => new WPSEO_GSC(),
     95            'dashboard_widget'      => new Yoast_Dashboard_Widget(),
     96        );
     97
     98        if ( WPSEO_Metabox::is_post_overview( $pagenow ) || WPSEO_Metabox::is_post_edit( $pagenow ) ) {
     99            $this->admin_features['primary_category'] = new WPSEO_Primary_Term_Admin();
    103100        }
    104101
     
    112109        $integrations[] = new WPSEO_MyYoast_Proxy();
    113110        $integrations[] = new WPSEO_MyYoast_Route();
    114         $integrations[] = $this->admin_features['google_search_console'];
    115         $integrations   = array_merge( $integrations, $this->initialize_seo_links(), $this->initialize_cornerstone_content() );
     111        $integrations[] = new WPSEO_Schema_Person_Upgrade_Notification();
     112
     113        $integrations = array_merge(
     114            $integrations,
     115            $this->get_admin_features(),
     116            $this->initialize_seo_links(),
     117            $this->initialize_cornerstone_content()
     118        );
    116119
    117120        /** @var WPSEO_WordPress_Integration $integration */
     
    254257
    255258    /**
    256      * Filter the $contactmethods array and add Facebook, LinkedIn and Twitter.
     259     * Filter the $contactmethods array and add a set of social profiles.
    257260     *
    258261     * These are used with the Facebook author, rel="author" and Twitter cards implementation.
    259262     *
     263     * @link https://developers.google.com/search/docs/data-types/social-profile
     264     *
    260265     * @param array $contactmethods Currently set contactmethods.
    261266     *
     
    263268     */
    264269    public function update_contactmethods( $contactmethods ) {
    265         // Add Facebook.
    266         $contactmethods['facebook'] = __( 'Facebook profile URL', 'wordpress-seo' );
    267         // Add Instagram.
    268         $contactmethods['instagram'] = __( 'Instagram profile URL', 'wordpress-seo' );
    269         // Add LinkedIn.
    270         $contactmethods['linkedin'] = __( 'LinkedIn profile URL', 'wordpress-seo' );
    271         // Add Pinterest.
    272         $contactmethods['pinterest'] = __( 'Pinterest profile URL', 'wordpress-seo' );
    273         // Add Twitter.
    274         $contactmethods['twitter'] = __( 'Twitter username (without @)', 'wordpress-seo' );
     270        $contactmethods['facebook']   = __( 'Facebook profile URL', 'wordpress-seo' );
     271        $contactmethods['instagram']  = __( 'Instagram profile URL', 'wordpress-seo' );
     272        $contactmethods['linkedin']   = __( 'LinkedIn profile URL', 'wordpress-seo' );
     273        $contactmethods['myspace']    = __( 'MySpace profile URL', 'wordpress-seo' );
     274        $contactmethods['pinterest']  = __( 'Pinterest profile URL', 'wordpress-seo' );
     275        $contactmethods['soundcloud'] = __( 'SoundCloud profile URL', 'wordpress-seo' );
     276        $contactmethods['tumblr']     = __( 'Tumblr profile URL', 'wordpress-seo' );
     277        $contactmethods['twitter']    = __( 'Twitter username (without @)', 'wordpress-seo' );
     278        $contactmethods['youtube']    = __( 'YouTube profile URL', 'wordpress-seo' );
     279        $contactmethods['wikipedia']    = __( 'Wikipedia page about you', 'wordpress-seo' ) . '<br/><small>' . __( '(if one exists)', 'wordpress-seo' ) . '</small>';
    275280
    276281        return $contactmethods;
     
    350355
    351356        return array(
    352             'cornerstone_filter'   => new WPSEO_Cornerstone_Filter(),
     357            'cornerstone_filter' => new WPSEO_Cornerstone_Filter(),
    353358        );
    354359    }
  • wordpress-seo/trunk/admin/class-bulk-editor-list-table.php

    r2061403 r2065083  
    233233     * edit all posts, and the ones the current user can only edit his/her own.
    234234     *
    235      * @return string $subquery The subquery, which should always be used in $wpdb->prepare(), passing the current user_id in as the first parameter.
     235     * @return string The subquery, which should always be used in $wpdb->prepare(),
     236     *                passing the current user_id in as the first parameter.
    236237     */
    237238    public function get_base_subquery() {
     
    624625
    625626    /**
    626      * Heavily restricts the possible columns by which a user can order the table in the bulk editor, thereby preventing a possible CSRF vulnerability.
     627     * Heavily restricts the possible columns by which a user can order the table
     628     * in the bulk editor, thereby preventing a possible CSRF vulnerability.
    627629     *
    628630     * @param string $orderby The column by which we want to order.
     
    645647
    646648    /**
    647      * Makes sure the order clause is always ASC or DESC for the bulk editor table, thereby preventing a possible CSRF vulnerability.
     649     * Makes sure the order clause is always ASC or DESC for the bulk editor table,
     650     * thereby preventing a possible CSRF vulnerability.
    648651     *
    649652     * @param string $order Whether we want to sort ascending or descending.
  • wordpress-seo/trunk/admin/class-collector.php

    r2021176 r2065083  
    4646     */
    4747    public function get_as_json() {
    48         return wp_json_encode( $this->collect() );
     48        return WPSEO_Utils::format_json_encode( $this->collect() );
    4949    }
    5050}
  • wordpress-seo/trunk/admin/class-help-center.php

    r2061403 r2065083  
    239239     * %s is replaced with <code>%s</code> and replaced again in the javascript with the actual variable.
    240240     *
    241      * @return  array Translated text strings for the help center.
     241     * @return array Translated text strings for the help center.
    242242     */
    243243    public static function get_translated_texts() {
  • wordpress-seo/trunk/admin/class-keyword-synonyms-modal.php

    r2009097 r2065083  
    3737                'Yoast SEO Premium'
    3838            ),
    39             'small'                    => __( '1 year free updates and upgrades included!', 'wordpress-seo' ),
     39            'small'                    => __( '1 year free support and updates included!', 'wordpress-seo' ),
    4040            'a11yNotice.opensInNewTab' => __( '(Opens in a new browser tab)', 'wordpress-seo' ),
    4141        );
  • wordpress-seo/trunk/admin/class-multiple-keywords-modal.php

    r2009097 r2065083  
    3737                'Yoast SEO Premium'
    3838            ),
    39             'small'                    => __( '1 year free updates and upgrades included!', 'wordpress-seo' ),
     39            'small'                    => __( '1 year free support and updates included!', 'wordpress-seo' ),
    4040            'a11yNotice.opensInNewTab' => __( '(Opens in a new browser tab)', 'wordpress-seo' ),
    4141        );
  • wordpress-seo/trunk/admin/class-my-yoast-proxy.php

    r2061403 r2065083  
    145145     * Tries to load the given url.
    146146     *
    147      * @see https://php.net/manual/en/function.readfile.php
     147     * @link https://php.net/manual/en/function.readfile.php
    148148     *
    149149     * @codeCoverageIgnore
     
    186186     * @codeCoverageIgnore
    187187     *
    188      * @see https://php.net/manual/en/filesystem.configuration.php#ini.allow-url-fopen
     188     * @link https://php.net/manual/en/filesystem.configuration.php#ini.allow-url-fopen
    189189     *
    190190     * @return bool True when the PHP configuration allows for url loading via readfile.
  • wordpress-seo/trunk/admin/class-premium-popup.php

    r2021176 r2065083  
    8686            $classes = ' hidden';
    8787        }
    88         $micro_copy = __( '1 year free updates and upgrades included!', 'wordpress-seo' );
     88        $micro_copy = __( '1 year free support and updates included!', 'wordpress-seo' );
    8989
    9090        $popup = <<<EO_POPUP
  • wordpress-seo/trunk/admin/class-primary-term-admin.php

    r1954352 r2065083  
    99 * Adds the UI to change the primary term for a post.
    1010 */
    11 class WPSEO_Primary_Term_Admin {
     11class WPSEO_Primary_Term_Admin implements WPSEO_WordPress_Integration {
    1212
    1313    /**
    1414     * Constructor.
    1515     */
    16     public function __construct() {
     16    public function register_hooks() {
    1717        add_filter( 'wpseo_content_meta_section_content', array( $this, 'add_input_fields' ) );
    1818
  • wordpress-seo/trunk/admin/class-product-upsell-notice.php

    r2031427 r2065083  
    3737     */
    3838    public function initialize() {
    39         if ( $this->is_notice_dismissed() ) {
    40             $this->remove_notification();
    41 
    42             return;
    43         }
    44 
    45         if ( $this->should_add_notification() ) {
    46             $this->add_notification();
    47         }
     39        $this->remove_notification();
    4840    }
    4941
     
    109101
    110102    /**
    111      * Adds a notification to the notification center.
     103     * Removes a notification to the notification center.
    112104     */
    113105    protected function remove_notification() {
  • wordpress-seo/trunk/admin/class-social-admin.php

    r2061403 r2065083  
    195195     * @param array $field_defs Array of metaboxes to save.
    196196     *
    197      * @return  array
     197     * @return array
    198198     */
    199199    public function save_meta_boxes( $field_defs ) {
  • wordpress-seo/trunk/admin/class-yoast-alerts.php

    r2031427 r2065083  
    140140
    141141        $html = $this->get_view_html( $type );
    142         echo wp_json_encode(
     142        echo WPSEO_Utils::format_json_encode(
    143143            array(
    144144                'html'  => $html,
  • wordpress-seo/trunk/admin/class-yoast-dashboard-widget.php

    r2061403 r2065083  
    99 * Class to change or add WordPress dashboard widgets
    1010 */
    11 class Yoast_Dashboard_Widget {
     11class Yoast_Dashboard_Widget implements WPSEO_WordPress_Integration {
    1212
    1313    /**
     
    2727
    2828    /**
    29      * @param WPSEO_Statistics $statistics The statistics class to retrieve statistics from.
     29     * Yoast_Dashboard_Widget constructor.
     30     *
     31     * @param WPSEO_Statistics|null $statistics WPSEO_Statistics instance.
    3032     */
    3133    public function __construct( WPSEO_Statistics $statistics = null ) {
    32         if ( null === $statistics ) {
     34        if ( $statistics === null ) {
    3335            $statistics = new WPSEO_Statistics();
    3436        }
     
    3638        $this->statistics    = $statistics;
    3739        $this->asset_manager = new WPSEO_Admin_Asset_Manager();
     40    }
    3841
     42    /**
     43     * Register WordPress hooks.
     44     */
     45    public function register_hooks() {
    3946        add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_dashboard_assets' ) );
    4047        add_action( 'admin_init', array( $this, 'queue_dashboard_widget' ) );
  • wordpress-seo/trunk/admin/class-yoast-form.php

    r2063108 r2065083  
    345345            $attr = array(
    346346                'class' => $attr,
     347                'disabled' => false,
    347348            );
    348349        }
     
    354355        $attr         = wp_parse_args( $attr, $defaults );
    355356        $val          = isset( $this->options[ $var ] ) ? $this->options[ $var ] : '';
    356         $autocomplete = isset( $attr['autocomplete'] ) ? ' autocomplete="' . esc_attr( $attr['autocomplete'] ) . '"' : '';
     357        $attributes = isset( $attr['autocomplete'] ) ? ' autocomplete="' . esc_attr( $attr['autocomplete'] ) . '"' : '';
     358        if ( isset( $attr['disabled'] ) && $attr['disabled'] ) {
     359            $attributes .= ' disabled';
     360        }
    357361
    358362        $this->label(
     
    363367            )
    364368        );
    365         echo '<input' . $autocomplete . ' class="textinput ' . esc_attr( $attr['class'] ) . ' " placeholder="' . esc_attr( $attr['placeholder'] ) . '" type="text" id="', esc_attr( $var ), '" name="', esc_attr( $this->option_name ), '[', esc_attr( $var ), ']" value="', esc_attr( $val ), '"', disabled( $this->is_control_disabled( $var ), true, false ), '/>', '<br class="clear" />';
     369        echo '<input' . $attributes . ' class="textinput ' . esc_attr( $attr['class'] ) . ' " placeholder="' . esc_attr( $attr['placeholder'] ) . '" type="text" id="', esc_attr( $var ), '" name="', esc_attr( $this->option_name ), '[', esc_attr( $var ), ']" value="', esc_attr( $val ), '"', disabled( $this->is_control_disabled( $var ), true, false ), '/>', '<br class="clear" />';
    366370    }
    367371
     
    430434     * @param array  $select_options The select options to choose from.
    431435     * @param string $styled         The select style. Use 'styled' to get a styled select. Default 'unstyled'.
    432      */
    433     public function select( $var, $label, array $select_options, $styled = 'unstyled' ) {
     436     * @param bool   $show_label     Whether or not to show the label, if not, it will be applied as an aria-label.
     437     */
     438    public function select( $var, $label, array $select_options, $styled = 'unstyled', $show_label = true ) {
    434439
    435440        if ( empty( $select_options ) ) {
     
    437442        }
    438443
    439         $this->label(
    440             $label . ':',
    441             array(
    442                 'for'   => $var,
    443                 'class' => 'select',
    444             )
    445         );
     444        if ( $show_label ) {
     445            $this->label(
     446                $label . ':',
     447                array(
     448                    'for'   => $var,
     449                    'class' => 'select',
     450
     451                )
     452            );
     453        }
    446454
    447455        $select_name       = esc_attr( $this->option_name ) . '[' . esc_attr( $var ) . ']';
     
    454462        if ( $this->is_control_disabled( $var ) ) {
    455463            $select->add_attribute( 'disabled', 'disabled' );
     464        }
     465        if ( ! $show_label ) {
     466            $select->add_attribute( 'aria-label', $label );
    456467        }
    457468
  • wordpress-seo/trunk/admin/class-yoast-notification-center.php

    r2061403 r2065083  
    371371            }
    372372
    373             echo wp_json_encode( $notification_json );
     373            echo WPSEO_Utils::format_json_encode( $notification_json );
    374374
    375375            return;
     
    531531        $notifications = apply_filters( 'yoast_notifications_before_storage', $notifications );
    532532
    533         // No notifications to store, clear storage.
     533        // No notifications to store, clear storage if it was previously present.
    534534        if ( empty( $notifications ) ) {
    535535            $this->remove_storage();
     
    640640
    641641    /**
    642      * Remove all notifications from storage
    643      */
    644     private function remove_storage() {
    645 
    646         delete_user_option( get_current_user_id(), self::STORAGE_KEY );
    647     }
    648 
    649     /**
    650642     * Clear local stored notifications
    651643     */
     
    770762        $this->queued_transactions[] = array( $callback, $args );
    771763    }
     764
     765    /**
     766     * Removes all notifications from storage.
     767     *
     768     * @return bool True when notifications got removed.
     769     */
     770    protected function remove_storage() {
     771        if ( ! $this->has_stored_notifications() ) {
     772            return false;
     773        }
     774
     775        delete_user_option( get_current_user_id(), self::STORAGE_KEY );
     776        return true;
     777    }
     778
     779    /**
     780     * Checks if there are stored notifications.
     781     *
     782     * @return bool True when there are stored notifications.
     783     */
     784    protected function has_stored_notifications() {
     785        $stored_notifications = $this->get_stored_notifications();
     786
     787        return ! empty( $stored_notifications );
     788    }
     789
     790    /**
     791     * Retrieves the stored notifications.
     792     *
     793     * @codeCoverageIgnore
     794     *
     795     * @return array|false Array with notifications or false when not set.
     796     */
     797    protected function get_stored_notifications() {
     798        return get_user_option( self::STORAGE_KEY, get_current_user_id() );
     799    }
    772800}
  • wordpress-seo/trunk/admin/class-yoast-notification.php

    r2061403 r2065083  
    351351        }
    352352
    353         return wp_json_encode( $this->options['data_json'] );
     353        return WPSEO_Utils::format_json_encode( $this->options['data_json'] );
    354354    }
    355355
  • wordpress-seo/trunk/admin/class-yoast-plugin-conflict.php

    r2061403 r2065083  
    4444
    4545    /**
    46      * For the use of singleton pattern. Create instance of itself and return his instance
     46     * For the use of singleton pattern. Create instance of itself and return this instance
    4747     *
    4848     * @param string $class_name Give the classname to initialize. If classname is
  • wordpress-seo/trunk/admin/config-ui/class-configuration-storage.php

    r2061403 r2065083  
    3737            new WPSEO_Config_Field_Separator(),
    3838            new WPSEO_Config_Field_Google_Search_Console_Intro(),
    39             new WPSEO_Config_Field_Social_Profiles_Intro(),
    4039            new WPSEO_Config_Field_Profile_URL_Facebook(),
    4140            new WPSEO_Config_Field_Profile_URL_Twitter(),
     
    4948            new WPSEO_Config_Field_Company_Name(),
    5049            new WPSEO_Config_Field_Company_Logo(),
    51             new WPSEO_Config_Field_Person_Name(),
     50            new WPSEO_Config_Field_Person(),
    5251            new WPSEO_Config_Field_Post_Type_Visibility(),
    5352        );
  • wordpress-seo/trunk/admin/config-ui/class-configuration-structure.php

    r2061403 r2065083  
    3434            'publishingEntityCompanyName',
    3535            'publishingEntityCompanyLogo',
    36             'publishingEntityPersonName',
    37         ),
    38         'profileUrls'                => array(
    39             'socialProfilesIntro',
     36            'publishingEntityPersonId',
    4037            'profileUrlFacebook',
    4138            'profileUrlTwitter',
     
    7067        $this->add_step(
    7168            'publishing-entity',
    72             __( 'Company or person', 'wordpress-seo' ),
     69            __( 'Organization or person', 'wordpress-seo' ),
    7370            $this->fields['publishingEntity']
    7471        );
    75         $this->add_step( 'profile-urls', __( 'Social profiles', 'wordpress-seo' ), $this->fields['profileUrls'] );
    7672
    7773        $fields = array( 'postTypeVisibility' );
  • wordpress-seo/trunk/admin/config-ui/components/class-component-mailchimp-signup.php

    r2031427 r2065083  
    7373
    7474    /**
    75      * Checks if the user has entered his email for mailchimp already.
     75     * Checks if the user has entered their email for mailchimp already.
    7676     *
    7777     * @return bool
  • wordpress-seo/trunk/admin/config-ui/fields/class-field-company-logo.php

    r2048873 r2065083  
    1717        parent::__construct( 'publishingEntityCompanyLogo', 'MediaUpload' );
    1818
    19         $this->set_property( 'label', __( 'Provide an image of the company logo', 'wordpress-seo' ) );
     19        $this->set_property( 'label', __( 'Provide an image of the organization logo', 'wordpress-seo' ) );
    2020
    2121        $this->set_requires( 'publishingEntityType', 'company' );
  • wordpress-seo/trunk/admin/config-ui/fields/class-field-company-name.php

    r2061403 r2065083  
    1717        parent::__construct( 'publishingEntityCompanyName', 'Input' );
    1818
    19         $this->set_property( 'label', __( 'The name of the company', 'wordpress-seo' ) );
     19        $this->set_property( 'label', __( 'The name of the organization', 'wordpress-seo' ) );
    2020        $this->set_property( 'autoComplete', 'organization' );
    2121
  • wordpress-seo/trunk/admin/config-ui/fields/class-field-company-or-person.php

    r2048873 r2065083  
    1717        parent::__construct( 'publishingEntityType' );
    1818
    19         $this->set_property( 'label', __( 'Does your site represent a person or company?', 'wordpress-seo' ) );
     19        $this->set_property( 'label', __( 'Does your site represent a person or and organization?', 'wordpress-seo' ) );
    2020
    2121        $this->set_property( 'description', __( 'This information will be used in Google\'s Knowledge Graph Card, the big block of information you see on the right side of the search results.', 'wordpress-seo' ) );
    2222
    23         $this->add_choice( 'company', __( 'Company', 'wordpress-seo' ) );
     23        $this->add_choice( 'company', __( 'Organization', 'wordpress-seo' ) );
    2424        $this->add_choice( 'person', __( 'Person', 'wordpress-seo' ) );
    2525    }
  • wordpress-seo/trunk/admin/config-ui/fields/class-field-mailchimp-signup.php

    r1931668 r2065083  
    5555
    5656    /**
    57      * Checks if the user has entered his email for mailchimp already.
     57     * Checks if the user has entered their email for mailchimp already.
    5858     *
    5959     * @return bool
  • wordpress-seo/trunk/admin/formatter/class-metabox-formatter.php

    r2061403 r2065083  
    204204                'Yoast SEO Premium'
    205205            ),
    206             'small'                    => __( '1 year free updates and upgrades included!', 'wordpress-seo' ),
     206            'small'                    => __( '1 year free support and updates included!', 'wordpress-seo' ),
    207207            'a11yNotice.opensInNewTab' => __( '(Opens in a new browser tab)', 'wordpress-seo' ),
    208208        );
  • wordpress-seo/trunk/admin/google_search_console/class-gsc-ajax.php

    r1843617 r2065083  
    106106        $component = new WPSEO_Config_Component_Connect_Google_Search_Console();
    107107
    108         wp_die( wp_json_encode( $component->get_data() ) );
     108        wp_die( WPSEO_Utils::format_json_encode( $component->get_data() ) );
    109109    }
    110110}
  • wordpress-seo/trunk/admin/google_search_console/class-gsc-category-filters.php

    r1997031 r2065083  
    187187
    188188    /**
    189      * Parsing the category counts. When there are 0 issues for a specific category, just remove that one from the array
     189     * Parsing the category counts.
     190     *
     191     * When there are 0 issues for a specific category, just remove that one from the array.
    190192     *
    191193     * @param array $category_counts Set of counts for categories.
  • wordpress-seo/trunk/admin/google_search_console/class-gsc.php

    r2061403 r2065083  
    7373
    7474    /**
    75      * Handles the dashboard notification. If the Google Search Console has no credentials,
    76      * show a notification for the user to give him a heads up. This message is dismissable.
     75     * Handles the dashboard notification.
     76     *
     77     * If the Google Search Console has no credentials, show a notification
     78     * for the user to give them a heads up. This message is dismissable.
    7779     *
    7880     * @return void
     
    8183        $notification        = $this->get_profile_notification();
    8284        $notification_center = Yoast_Notification_Center::get();
    83 
    84         if ( $this->has_profile() ) {
    85             $notification_center->remove_notification( $notification );
    86 
    87             return;
    88         }
    89         $notification_center->add_notification( $notification );
     85        $notification_center->remove_notification( $notification );
    9086    }
    9187
  • wordpress-seo/trunk/admin/import/plugins/class-import-seopressor.php

    r2021176 r2065083  
    122122
    123123        if ( $focus_keywords !== array() ) {
    124             $this->maybe_save_post_meta( 'focuskeywords', wp_json_encode( $focus_keywords ), $post_id );
     124            $this->maybe_save_post_meta( 'focuskeywords', WPSEO_Utils::format_json_encode( $focus_keywords ), $post_id );
    125125        }
    126126    }
  • wordpress-seo/trunk/admin/links/class-link-type-classifier.php

    r2021176 r2065083  
    5959
    6060    /**
    61      * Returns true when the link starts with https:// or http://
     61     * Checks whether a link starts with an HTTP[S] protocol.
    6262     *
    6363     * @param array $url_parts The url parts to use.
    6464     *
    65      * @return bool True if the url starts with a protocol.
     65     * @return bool True if the url starts with an https:// or http:// protocol.
    6666     */
    6767    protected function contains_protocol( array $url_parts ) {
  • wordpress-seo/trunk/admin/metabox/class-metabox.php

    r2061403 r2065083  
    241241     * Pass some variables to js for the edit / post page overview, etc.
    242242     *
    243      * @return  array
     243     * @return array
    244244     */
    245245    public function localize_shortcode_plugin_script() {
     
    441441     * @param string $key            Internal key (without prefix).
    442442     *
    443      * @return  string
     443     * @return string
    444444     */
    445445    public function do_meta_box( $meta_field_def, $key = '' ) {
     
    624624     * @param int $post_id Post ID.
    625625     *
    626      * @return  bool|void  Boolean false if invalid save post request.
     626     * @return bool|void Boolean false if invalid save post request.
    627627     */
    628628    public function save_postdata( $post_id ) {
     
    811811     * Pass some variables to js for upload module.
    812812     *
    813      * @return  array
     813     * @return array
    814814     */
    815815    public function localize_media_script() {
  • wordpress-seo/trunk/admin/views/licenses.php

    r2063108 r2065083  
    182182                    <?php
    183183                        /* translators: $1$s expands to Yoast SEO Premium */
    184                         printf( __( 'Buy %1$s', 'wordpress-seo' ), $premium_extension->get_title() );
     184                        printf( esc_html__( 'Buy %1$s', 'wordpress-seo' ), $premium_extension->get_title() );
    185185                        echo $new_tab_message;
    186186                        echo '<span aria-hidden="true" class="yoast-button-upsell__caret"></span>';
     
    193193                    printf(
    194194                        /* translators: Text between %1$s and %2$s will only be shown to screen readers. %3$s expands to the product name. */
    195                         __( 'More information %1$sabout %3$s%2$s', 'wordpress-seo' ),
     195                        esc_html__( 'More information %1$sabout %3$s%2$s', 'wordpress-seo' ),
    196196                        '<span class="screen-reader-text">',
    197197                        '</span>',
     
    262262                                <?php
    263263                                    /* translators: %s expands to the product name */
    264                                     printf( __( 'Buy %s', 'wordpress-seo' ), $extension->get_buy_button() );
     264                                    printf( esc_html__( 'Buy %s', 'wordpress-seo' ), $extension->get_buy_button() );
    265265                                    echo $new_tab_message;
    266266                                    echo '<span aria-hidden="true" class="yoast-button-upsell__caret"></span>';
     
    273273                                printf(
    274274                                /* translators: Text between %1$s and %2$s will only be shown to screen readers. %3$s expands to the product name. */
    275                                     __( 'More information %1$sabout %3$s%2$s', 'wordpress-seo' ),
     275                                    esc_html__( 'More information %1$sabout %3$s%2$s', 'wordpress-seo' ),
    276276                                    '<span class="screen-reader-text">',
    277277                                    '</span>',
  • wordpress-seo/trunk/admin/views/tabs/dashboard/webmaster-tools.php

    r2031427 r2065083  
    4242    esc_html__( 'Get your Baidu verification code in %1$sBaidu Webmaster Tools%2$s.', 'wordpress-seo' ),
    4343    /**
    44      * Get the Baidu Webmaster Tools site add link from this 3rd party article
    45      * http://www.dragonmetrics.com/how-to-optimize-your-site-with-baidu-webmaster-tools/.
     44     * Get the Baidu Webmaster Tools site add link from this 3rd party article.
     45     * {@link http://www.dragonmetrics.com/how-to-optimize-your-site-with-baidu-webmaster-tools/}
    4646     * We are unable to create a Baidu Webmaster Tools account due to the Chinese phone number verification.
    4747     */
  • wordpress-seo/trunk/admin/views/tabs/metas/paper-content/general/knowledge-graph.php

    r2061403 r2065083  
    55 * @package WPSEO\Admin\Views\General
    66 *
    7  * @uses Yoast_Form $yform Form object.
     7 * @uses    Yoast_Form $yform Form object.
    88 */
    99
     
    1212    __( 'Learn more about the knowledge graph setting', 'wordpress-seo' ),
    1313    sprintf(
    14         /* translators: %1$s opens the link to the Yoast.com article about Google's Knowledge Graph, %2$s closes the link, */
    15         __( 'This data is shown as metadata in your site. It is intended to appear in %1$sGoogle\'s Knowledge Graph%2$s. You can be either a company, or a person.', 'wordpress-seo' ),
     14    /* translators: %1$s opens the link to the Yoast.com article about Google's Knowledge Graph, %2$s closes the link, */
     15        __( 'This data is shown as metadata in your site. It is intended to appear in %1$sGoogle\'s Knowledge Graph%2$s. You can be either an organization, or a person.', 'wordpress-seo' ),
    1616        '<a href="' . esc_url( WPSEO_Shortlinker::get( 'https://yoa.st/1-p' ) ) . '" target="_blank" rel="noopener noreferrer">',
    1717        '</a>'
     
    2121?>
    2222<div class="tab-block">
    23     <h2 class="help-button-inline"><?php echo esc_html__( 'Knowledge Graph', 'wordpress-seo' ) . $knowledge_graph_help->get_button_html(); ?></h2>
     23    <h2 class="help-button-inline"><?php echo esc_html__( 'Knowledge Graph & Schema.org', 'wordpress-seo' ) . $knowledge_graph_help->get_button_html(); ?></h2>
    2424    <?php
    2525    echo $knowledge_graph_help->get_panel_html();
     26    /**
     27     * Filter: 'wpseo_knowledge_graph_setting_msg' - Allows adding a message above these settings.
     28     *
     29     * @api string unsigned Message.
     30     */
     31    $message = apply_filters( 'wpseo_knowledge_graph_setting_msg', '' );
     32    if ( ! empty( $message ) ) {
     33        echo '<p><strong>', esc_html( $message ), '</strong></p>';
     34    }
     35    ?>
     36    <p>
     37        <?php esc_html_e( 'Choose whether the site represents an organization or a person.', 'wordpress-seo' ); ?>
     38    </p>
     39    <?php
    2640    $yoast_free_kg_select_options = array(
    27         ''        => __( 'Choose whether you\'re a company or person', 'wordpress-seo' ),
    28         'company' => __( 'Company', 'wordpress-seo' ),
     41        ''        => __( 'Choose whether you\'re an organization or a person', 'wordpress-seo' ),
     42        'company' => __( 'Organization', 'wordpress-seo' ),
    2943        'person'  => __( 'Person', 'wordpress-seo' ),
    3044    );
    31     $yform->select( 'company_or_person', __( 'Company or person', 'wordpress-seo' ), $yoast_free_kg_select_options, 'styled' );
     45    $yform->select( 'company_or_person', __( 'Organization or person', 'wordpress-seo' ), $yoast_free_kg_select_options, 'styled', false );
    3246    ?>
    3347    <div id="knowledge-graph-company">
    34         <h3><?php esc_html_e( 'Company', 'wordpress-seo' ); ?></h3>
     48        <h3><?php esc_html_e( 'Organization', 'wordpress-seo' ); ?></h3>
    3549        <?php
    36         $yform->textinput( 'company_name', __( 'Company name', 'wordpress-seo' ), array( 'autocomplete' => 'organization' ) );
    37         $yform->media_input( 'company_logo', __( 'Company logo', 'wordpress-seo' ) );
     50        $yform->textinput( 'company_name', __( 'Organization name', 'wordpress-seo' ), array( 'autocomplete' => 'organization' ) );
     51        $yform->media_input( 'company_logo', __( 'Organization logo', 'wordpress-seo' ) );
    3852        ?>
    3953    </div>
    4054    <div id="knowledge-graph-person">
    41         <h3><?php esc_html_e( 'Person', 'wordpress-seo' ); ?></h3>
    42         <?php $yform->textinput( 'person_name', __( 'Your name', 'wordpress-seo' ), array( 'autocomplete' => 'name' ) ); ?>
     55        <h3><?php esc_html_e( 'Personal info', 'wordpress-seo' ); ?></h3>
     56        <?php
     57        echo '<div id="person-selector"></div>';
     58        $yform->hidden( 'company_or_person_user_id', 'person_id' );
     59        ?>
    4360    </div>
    4461</div>
  • wordpress-seo/trunk/admin/views/tabs/social/accounts.php

    r2061403 r2065083  
    55 * @package WPSEO\Admin\Views
    66 *
    7  * @uses Yoast_Form $yform Form object.
     7 * @uses    Yoast_Form $yform Form object.
    88 */
    99
     
    2222);
    2323
    24 echo '<h2 class="help-button-inline">' . esc_html__( 'Your social profiles', 'wordpress-seo' ) . $social_profiles_help->get_button_html() . '</h2>';
     24$company_or_person = WPSEO_Options::get( 'company_or_person', '' );
     25
     26$disabled = false;
     27if ( $company_or_person === 'person' ) {
     28    echo '<div class="paper tab-block">';
     29    echo '<h2><span class="dashicons dashicons-warning"></span> ' . esc_html__( 'Your website is currently configured to represent a Person', 'wordpress-seo' ) . '</h2>';
     30    echo '<p><em>';
     31    esc_html_e( 'That means that the form and information below is disabled, and not used.', 'wordpress-seo' );
     32    echo '</em></p>';
     33    echo '<p>';
     34    $user_id = WPSEO_Options::get( 'company_or_person_user_id', '' );
     35    $person  = get_userdata( $user_id );
     36    printf( esc_html__( 'To change the social accounts used for your site, update the details for %1$s.', 'wordpress-seo' ), '<a href="' . admin_url( 'user-edit.php?user_id=' . $user_id ) . '">' . $person->display_name . '</a>' );
     37    echo ' ';
     38    printf( esc_html__( 'To make your site represent a Company or Organization go to %1$sSearch Appearance%2$s and set Company or Person to "Company".', 'wordpress-seo' ), '<a href="' . admin_url( 'admin.php?page=wpseo_titles' ) . '">', '</a>' );
     39    echo '</p></div>';
     40    $disabled = true;
     41}
     42
     43echo '<h2 class="help-button-inline">' . esc_html__( 'Company social profiles', 'wordpress-seo' ) . $social_profiles_help->get_button_html() . '</h2>';
    2544echo $social_profiles_help->get_panel_html();
    2645
    2746$yform = Yoast_Form::get_instance();
    28 $yform->textinput( 'facebook_site', __( 'Facebook Page URL', 'wordpress-seo' ) );
    29 $yform->textinput( 'twitter_site', __( 'Twitter Username', 'wordpress-seo' ) );
    30 $yform->textinput( 'instagram_url', __( 'Instagram URL', 'wordpress-seo' ) );
    31 $yform->textinput( 'linkedin_url', __( 'LinkedIn URL', 'wordpress-seo' ) );
    32 $yform->textinput( 'myspace_url', __( 'MySpace URL', 'wordpress-seo' ) );
    33 $yform->textinput( 'pinterest_url', __( 'Pinterest URL', 'wordpress-seo' ) );
    34 $yform->textinput( 'youtube_url', __( 'YouTube URL', 'wordpress-seo' ) );
    35 $yform->textinput( 'wikipedia_url', __( 'Wikipedia URL', 'wordpress-seo' ) );
     47$yform->textinput( 'facebook_site', __( 'Facebook Page URL', 'wordpress-seo' ), array( 'disabled' => $disabled ) );
     48$yform->textinput( 'twitter_site', __( 'Twitter Username', 'wordpress-seo' ), array( 'disabled' => $disabled ) );
     49$yform->textinput( 'instagram_url', __( 'Instagram URL', 'wordpress-seo' ), array( 'disabled' => $disabled ) );
     50$yform->textinput( 'linkedin_url', __( 'LinkedIn URL', 'wordpress-seo' ), array( 'disabled' => $disabled ) );
     51$yform->textinput( 'myspace_url', __( 'MySpace URL', 'wordpress-seo' ), array( 'disabled' => $disabled ) );
     52$yform->textinput( 'pinterest_url', __( 'Pinterest URL', 'wordpress-seo' ), array( 'disabled' => $disabled ) );
     53$yform->textinput( 'youtube_url', __( 'YouTube URL', 'wordpress-seo' ), array( 'disabled' => $disabled ) );
     54$yform->textinput( 'wikipedia_url', __( 'Wikipedia URL', 'wordpress-seo' ), array( 'disabled' => $disabled ) );
    3655
    3756do_action( 'wpseo_admin_other_section' );
  • wordpress-seo/trunk/admin/views/tool-bulk-editor.php

    r2021176 r2065083  
    120120?>
    121121<script>
    122     var wpseoBulkEditorNonce = <?php echo wp_json_encode( wp_create_nonce( 'wpseo-bulk-editor' ) ); ?>;
     122    var wpseoBulkEditorNonce = <?php echo WPSEO_Utils::format_json_encode( wp_create_nonce( 'wpseo-bulk-editor' ) ); ?>;
    123123
    124124    // eslint-disable-next-line
  • wordpress-seo/trunk/frontend/class-breadcrumbs.php

    r2061403 r2065083  
    252252     * @param object $term Term to get the parents for.
    253253     *
    254      * @return    array
     254     * @return array
    255255     */
    256256    private function get_term_parents( $term ) {
  • wordpress-seo/trunk/frontend/class-frontend.php

    r2063108 r2065083  
    140140        $integrations = array(
    141141            new WPSEO_Frontend_Primary_Category(),
    142             new WPSEO_JSON_LD(),
     142            new WPSEO_Schema(),
    143143            new WPSEO_Handle_404(),
    144144            new WPSEO_Remove_Reply_To_Com(),
     
    792792     * @param int   $post_id The post ID for which to determine the $robots values, defaults to current post.
    793793     *
    794      * @return    array
     794     * @return array
    795795     */
    796796    public function robots_for_single_post( $robots, $post_id = 0 ) {
  • wordpress-seo/trunk/frontend/class-opengraph-image.php

    r2061403 r2065083  
    441441     * @param string $url The given URL.
    442442     *
    443      * @return null|number Returns the found attachment ID if it exists. Otherwise -1. If the URL is empty we return null.
     443     * @return null|number Returns the found attachment ID if it exists. Otherwise -1.
     444     *                     If the URL is empty we return null.
    444445     */
    445446    public function add_image_by_url( $url ) {
  • wordpress-seo/trunk/frontend/class-opengraph-oembed.php

    r1997031 r2065083  
    3030     * @param WP_Post $post The current Post object.
    3131     *
    32      * @see https://developer.wordpress.org/reference/hooks/oembed_response_data/ for hook info
     32     * @link https://developer.wordpress.org/reference/hooks/oembed_response_data/ for hook info.
    3333     *
    3434     * @return array $filter_data - An array of oEmbed data with modified values where appropriate.
  • wordpress-seo/trunk/frontend/class-opengraph.php

    r2021176 r2065083  
    298298     * Last update/compare with FB list done on 2015-03-16 by Rarst
    299299     *
    300      * @see  http://www.facebook.com/translations/FacebookLocales.xml for the list of supported locales
     300     * @link http://www.facebook.com/translations/FacebookLocales.xml for the list of supported locales.
    301301     *
    302302     * @link https://developers.facebook.com/docs/reference/opengraph/object-type/article/
  • wordpress-seo/trunk/frontend/class-twitter.php

    r2061403 r2065083  
    331331     */
    332332    protected function site_twitter() {
     333        switch ( WPSEO_Options::get( 'company_or_person', '' ) ) {
     334            case 'person':
     335                $user_id = (int) WPSEO_Options::get( 'company_or_person_user_id', false );
     336                $twitter = get_the_author_meta( 'twitter', $user_id );
     337                // For backwards compat reasons, if there is no twitter ID for person, we fall back to site.
     338                if ( empty( $twitter ) ) {
     339                    $twitter = WPSEO_Options::get( 'twitter_site' );
     340                }
     341                break;
     342            case 'company':
     343            default:
     344                $twitter = WPSEO_Options::get( 'twitter_site' );
     345                break;
     346        }
     347
    333348        /**
    334349         * Filter: 'wpseo_twitter_site' - Allow changing the Twitter site account as output in the Twitter card by Yoast SEO
     
    336351         * @api string $unsigned Twitter site account string
    337352         */
    338         $site = apply_filters( 'wpseo_twitter_site', WPSEO_Options::get( 'twitter_site' ) );
     353        $site = apply_filters( 'wpseo_twitter_site', $twitter );
    339354        $site = $this->get_twitter_id( $site );
    340355
  • wordpress-seo/trunk/inc/class-rewrite.php

    r2061403 r2065083  
    4040     *
    4141     * @since 1.2.8
     42     *
    4243     * @return bool
    4344     */
  • wordpress-seo/trunk/inc/class-upgrade.php

    r2063108 r2065083  
    450450
    451451    /**
    452      * Updates the links for the link count when there is a difference between the site and home url. We've used the
    453      * site url instead of the home url.
     452     * Updates the links for the link count when there is a difference between the site and home url.
     453     * We've used the site url instead of the home url.
    454454     *
    455455     * @return void
  • wordpress-seo/trunk/inc/class-wpseo-admin-bar-menu.php

    r2061403 r2065083  
    493493     * Gets the focus keyword for a given post.
    494494     *
    495      * @param WP_POST $post Post object to get its focus keyword.
     495     * @param WP_Post $post Post object to get its focus keyword.
    496496     *
    497497     * @return string Focus keyword, or empty string if none available.
  • wordpress-seo/trunk/inc/class-wpseo-custom-fields.php

    r2061403 r2065083  
    1212
    1313    /**
    14      * @var array Cache the custom fields.
     14     * Custom fields cache.
     15     *
     16     * @var array
    1517     */
    1618    protected static $custom_fields = null;
     
    1921     * Retrieves the custom field names as an array.
    2022     *
    21      * @see WordPress core: wp-admin/includes/template.php. Reused query from it.
     23     * @link WordPress core: wp-admin/includes/template.php. Reused query from it.
    2224     *
    2325     * @return array The custom fields.
  • wordpress-seo/trunk/inc/class-wpseo-custom-taxonomies.php

    r2061403 r2065083  
    1212
    1313    /**
    14      * @var array Cache the custom taxonomies.
     14     * Custom taxonomies cache.
     15     *
     16     * @var array
    1517     */
    1618    protected static $custom_taxonomies = null;
  • wordpress-seo/trunk/inc/class-wpseo-endpoint-factory.php

    r1954352 r2065083  
    1212
    1313    /**
    14      * @var array The valid HTTP methods.
     14     * The valid HTTP methods.
     15     *
     16     * @var array
    1517     */
    1618    private $valid_http_methods = array(
     
    2325
    2426    /**
    25      * @var array The arguments.
     27     * The arguments.
     28     *
     29     * @var array
    2630     */
    2731    protected $args = array();
    2832
    2933    /**
    30      * @var string The namespace.
     34     * The namespace.
     35     *
     36     * @var string
    3137     */
    3238    private $namespace;
    3339
    3440    /**
    35      * @var string The endpoint URL.
     41     * The endpoint URL.
     42     *
     43     * @var string
    3644     */
    3745    private $endpoint;
    3846
    3947    /**
    40      * @var callable The callback to execute if the endpoint is called.
     48     * The callback to execute if the endpoint is called.
     49     *
     50     * @var callable
    4151     */
    4252    private $callback;
    4353
    4454    /**
    45      * @var callable The permission callback to execute to determine permissions.
     55     * The permission callback to execute to determine permissions.
     56     *
     57     * @var callable
    4658     */
    4759    private $permission_callback;
    4860
    4961    /**
    50      * @var string The HTTP method to use.
     62     * The HTTP method to use.
     63     *
     64     * @var string
    5165     */
    5266    private $method;
  • wordpress-seo/trunk/inc/class-wpseo-image-utils.php

    r2061403 r2065083  
    7878     *     Array of image data
    7979     *
    80      *     @type string $alt    Image's alt text.
    81      *     @type string $alt    Image's alt text.
    82      *     @type int    $width  Width of image.
    83      *     @type int    $height Height of image.
    84      *     @type string $type   Image's MIME type.
    85      *     @type string $url    Image's URL.
     80     *     @type string $alt      Image's alt text.
     81     *     @type string $alt      Image's alt text.
     82     *     @type int    $width    Width of image.
     83     *     @type int    $height   Height of image.
     84     *     @type string $type     Image's MIME type.
     85     *     @type string $url      Image's URL.
     86     *     @type int    $filesize The file size in bytes, if already set.
    8687     * }
    8788     */
     
    105106
    106107        // Keep only the keys we need, and nothing else.
    107         return array_intersect_key( $image, array_flip( array( 'id', 'alt', 'path', 'width', 'height', 'pixels', 'type', 'size', 'url' ) ) );
     108        return array_intersect_key( $image, array_flip( array( 'id', 'alt', 'path', 'width', 'height', 'pixels', 'type', 'size', 'url', 'filesize' ) ) );
    108109    }
    109110
  • wordpress-seo/trunk/inc/class-wpseo-meta.php

    r2061403 r2065083  
    1212 * Some guidelines:
    1313 * - To update a meta value, you can just use update_post_meta() with the full (prefixed) meta key
    14  *        or the convenience method WPSEO_Meta::set_value() with the internal key.
    15  *        All updates will be automatically validated.
    16  *        Meta values will only be saved to the database if they are *not* the same as the default to
    17  *        keep database load low.
     14 *   or the convenience method WPSEO_Meta::set_value() with the internal key.
     15 *   All updates will be automatically validated.
     16 *   Meta values will only be saved to the database if they are *not* the same as the default to
     17 *   keep database load low.
    1818 * - To retrieve a WPSEO meta value, you **must** use WPSEO_Meta::get_value() which will always return a
    19  *        string value, either the saved value or the default.
    20  *        This method can also retrieve a complete set of WPSEO meta values for one specific post, see
    21  *        the method documentation for the parameters.
     19 *   string value, either the saved value or the default.
     20 *   This method can also retrieve a complete set of WPSEO meta values for one specific post, see
     21 *   the method documentation for the parameters.
    2222 *
    2323 * {@internal Unfortunately there isn't a filter available to hook into before returning the results
     
    316316     * Retrieve the meta box form field definitions for the given tab and post type.
    317317     *
    318      * @param  string $tab       Tab for which to retrieve the field definitions.
    319      * @param  string $post_type Post type of the current post.
    320      *
    321      * @return array             Array containing the meta box field definitions
     318     * @param string $tab       Tab for which to retrieve the field definitions.
     319     * @param string $post_type Post type of the current post.
     320     *
     321     * @return array Array containing the meta box field definitions.
    322322     */
    323323    public static function get_meta_field_defs( $tab, $post_type = 'post' ) {
     
    384384         * {tab} can be 'general', 'advanced' or 'social'
    385385         *
    386          * @param  array  $field_defs Metabox form field definitions.
    387          * @param  string $post_type  Post type of the post the metabox is for, defaults to 'post'.
     386         * @param array  $field_defs Metabox form field definitions.
     387         * @param string $post_type  Post type of the post the metabox is for, defaults to 'post'.
    388388         *
    389389         * @return array
     
    395395     * Validate the post meta values
    396396     *
    397      * @param  mixed  $meta_value The new value.
    398      * @param  string $meta_key   The full meta key (including prefix).
    399      *
    400      * @return string             Validated meta value
     397     * @param mixed  $meta_value The new value.
     398     * @param string $meta_key   The full meta key (including prefix).
     399     *
     400     * @return string Validated meta value.
    401401     */
    402402    public static function sanitize_post_meta( $meta_value, $meta_key ) {
     
    496496     * @todo [JRF => Yoast] Verify that this logic for the prioritisation is correct
    497497     *
    498      * @param  array|string $meta_value The value to validate.
    499      *
    500      * @return string       Clean value
     498     * @param array|string $meta_value The value to validate.
     499     *
     500     * @return string Clean value.
    501501     */
    502502    public static function validate_meta_robots_adv( $meta_value ) {
     
    541541     * Prevent saving of default values and remove potential old value from the database if replaced by a default
    542542     *
    543      * @param  bool   $check      The current status to allow updating metadata for the given type.
    544      * @param  int    $object_id  ID of the current object for which the meta is being updated.
    545      * @param  string $meta_key   The full meta key (including prefix).
    546      * @param  string $meta_value New meta value.
    547      * @param  string $prev_value The old meta value.
    548      *
    549      * @return null|bool          true = stop saving, null = continue saving
     543     * @param bool   $check      The current status to allow updating metadata for the given type.
     544     * @param int    $object_id  ID of the current object for which the meta is being updated.
     545     * @param string $meta_key   The full meta key (including prefix).
     546     * @param string $meta_value New meta value.
     547     * @param string $prev_value The old meta value.
     548     *
     549     * @return null|bool True = stop saving, null = continue saving.
    550550     */
    551551    public static function remove_meta_if_default( $check, $object_id, $meta_key, $meta_value, $prev_value = '' ) {
     
    568568     * Prevent adding of default values to the database
    569569     *
    570      * @param  bool   $check      The current status to allow adding metadata for the given type.
    571      * @param  int    $object_id  ID of the current object for which the meta is being added.
    572      * @param  string $meta_key   The full meta key (including prefix).
    573      * @param  string $meta_value New meta value.
    574      *
    575      * @return null|bool          true = stop saving, null = continue saving
     570     * @param bool   $check      The current status to allow adding metadata for the given type.
     571     * @param int    $object_id  ID of the current object for which the meta is being added.
     572     * @param string $meta_key   The full meta key (including prefix).
     573     * @param string $meta_value New meta value.
     574     *
     575     * @return null|bool True = stop saving, null = continue saving.
    576576     */
    577577    public static function dont_save_meta_if_default( $check, $object_id, $meta_key, $meta_value ) {
     
    587587     * Is the given meta value the same as the default value ?
    588588     *
    589      * @param  string $meta_key   The full meta key (including prefix).
    590      * @param  mixed  $meta_value The value to check.
     589     * @param string $meta_key   The full meta key (including prefix).
     590     * @param mixed  $meta_value The value to check.
    591591     *
    592592     * @return bool
     
    604604     *            would have been the preferred solution.}}
    605605     *
    606      * @param  string $key    Internal key of the value to get (without prefix).
    607      * @param  int    $postid Post ID of the post to get the value for.
    608      *
    609      * @return string         All 'normal' values returned from get_post_meta() are strings.
    610      *                        Objects and arrays are possible, but not used by this plugin
    611      *                        and therefore discarted (except when the special 'serialized' field def
    612      *                        value is set to true - only used by add-on plugins for now).
    613      *                        Will return the default value if no value was found..
    614      *                        Will return empty string if no default was found (not one of our keys) or
    615      *                        if the post does not exist.
     606     * @param string $key    Internal key of the value to get (without prefix).
     607     * @param int    $postid Post ID of the post to get the value for.
     608     *
     609     * @return string All 'normal' values returned from get_post_meta() are strings.
     610     *                Objects and arrays are possible, but not used by this plugin
     611     *                and therefore discarted (except when the special 'serialized' field def
     612     *                value is set to true - only used by add-on plugins for now).
     613     *                Will return the default value if no value was found.
     614     *                Will return empty string if no default was found (not one of our keys) or
     615     *                if the post does not exist.
    616616     */
    617617    public static function get_value( $key, $postid = 0 ) {
     
    660660     * Update a meta value for a post
    661661     *
    662      * @param  string $key        The internal key of the meta value to change (without prefix).
    663      * @param  mixed  $meta_value The value to set the meta to.
    664      * @param  int    $post_id    The ID of the post to change the meta for.
    665      *
    666      * @return bool   whether the value was changed
     662     * @param string $key        The internal key of the meta value to change (without prefix).
     663     * @param mixed  $meta_value The value to set the meta to.
     664     * @param int    $post_id    The ID of the post to change the meta for.
     665     *
     666     * @return bool Whether the value was changed.
    667667     */
    668668    public static function set_value( $key, $meta_value, $post_id ) {
     
    693693     * Optionally deletes the $old_metakey values.
    694694     *
    695      * @param  string $old_metakey The old key of the meta value.
    696      * @param  string $new_metakey The new key, usually the WPSEO meta key (including prefix).
    697      * @param  bool   $delete_old  Whether to delete the old meta key/value-sets.
     695     * @param string $old_metakey The old key of the meta value.
     696     * @param string $new_metakey The new key, usually the WPSEO meta key (including prefix).
     697     * @param bool   $delete_old  Whether to delete the old meta key/value-sets.
    698698     *
    699699     * @return void
     
    10161016     * @codeCoverageIgnore
    10171017     *
    1018      * @param  string $key Key of the value to get from $_POST.
    1019      *
    1020      * @return string      Returns $_POST value, which will be a string the majority of the time
    1021      *                     Will return empty string if key does not exists in $_POST
     1018     * @param string $key Key of the value to get from $_POST.
     1019     *
     1020     * @return string Returns $_POST value, which will be a string the majority of the time.
     1021     *                Will return empty string if key does not exists in $_POST.
    10221022     */
    10231023    public static function get_post_value( $key ) {
  • wordpress-seo/trunk/inc/class-wpseo-replace-vars.php

    r2048873 r2065083  
    2323
    2424    /**
    25      * @var    array    Default post/page/cpt information.
     25     * Default post/page/cpt information.
     26     *
     27     * @var array
    2628     */
    2729    protected $defaults = array(
     
    4042
    4143    /**
    42      * @var object    Current post/page/cpt information.
     44     * Current post/page/cpt information.
     45     *
     46     * @var object
    4347     */
    4448    protected $args;
    4549
    4650    /**
    47      * @var    array    Help texts for use in WPSEO -> Search appearance tabs.
     51     * Help texts for use in WPSEO -> Search appearance tabs.
     52     *
     53     * @var array
    4854     */
    4955    protected static $help_texts = array();
    5056
    5157    /**
    52      * @var array    Register of additional variable replacements registered by other plugins/themes.
     58     * Register of additional variable replacements registered by other plugins/themes.
     59     *
     60     * @var array
    5361     */
    5462    protected static $external_replacements = array();
     
    8694     * @see wpseo_register_var_replacement() for a usage example.
    8795     *
    88      * @param  string $var              The name of the variable to replace, i.e. '%%var%%'
    89      *                                  - the surrounding %% are optional.
    90      * @param  mixed  $replace_function Function or method to call to retrieve the replacement value for the variable
    91      *                                  Uses the same format as add_filter/add_action function parameter and
    92      *                                  should *return* the replacement value. DON'T echo it.
    93      * @param  string $type             Type of variable: 'basic' or 'advanced', defaults to 'advanced'.
    94      * @param  string $help_text        Help text to be added to the help tab for this variable.
    95      *
    96      * @return bool     Whether the replacement function was succesfully registered.
     96     * @param string $var              The name of the variable to replace, i.e. '%%var%%'.
     97     *                                 Note: the surrounding %% are optional.
     98     * @param mixed  $replace_function Function or method to call to retrieve the replacement value for the variable.
     99     *                                 Uses the same format as add_filter/add_action function parameter and
     100     *                                 should *return* the replacement value. DON'T echo it.
     101     * @param string $type             Type of variable: 'basic' or 'advanced', defaults to 'advanced'.
     102     * @param string $help_text        Help text to be added to the help tab for this variable.
     103     *
     104     * @return bool Whether the replacement function was succesfully registered.
    97105     */
    98106    public static function register_replacement( $var, $replace_function, $type = 'advanced', $help_text = '' ) {
     
    170178         * @api     array   $replacements The replacements.
    171179         *
    172          * @param   array  $args The object some of the replacement values might come from,
    173          *                       could be a post, taxonomy or term.
     180         * @param array $args The object some of the replacement values might come from,
     181         *                    could be a post, taxonomy or term.
    174182         */
    175183        $replacements = apply_filters( 'wpseo_replacements', $replacements, $this->args );
     
    10431051     * Create a variable help text table.
    10441052     *
    1045      * @param    string $type Either 'basic' or 'advanced'.
    1046      *
    1047      * @return   string Help text table.
     1053     * @param string $type Either 'basic' or 'advanced'.
     1054     *
     1055     * @return string Help text table.
    10481056     */
    10491057    private static function create_variable_help_table( $type ) {
     
    11001108     * Set the help text for a user/plugin/theme defined extra variable.
    11011109     *
    1102      * @param  string                     $type                 Type of variable: 'basic' or 'advanced'.
    1103      * @param  WPSEO_Replacement_Variable $replacement_variable The replacement variable to register.
     1110     * @param string                     $type                 Type of variable: 'basic' or 'advanced'.
     1111     * @param WPSEO_Replacement_Variable $replacement_variable The replacement variable to register.
    11041112     */
    11051113    private static function register_help_text( $type, WPSEO_Replacement_Variable $replacement_variable ) {
     
    12401248     * Retrieves the custom field names as an array.
    12411249     *
    1242      * @see WordPress core: wp-admin/includes/template.php. Reused query from it.
     1250     * @link WordPress core: wp-admin/includes/template.php. Reused query from it.
    12431251     *
    12441252     * @return array The custom fields.
     
    13761384     * Remove the '%%' delimiters from a variable string.
    13771385     *
    1378      * @param  string $string Variable string to be cleaned.
     1386     * @param string $string Variable string to be cleaned.
    13791387     *
    13801388     * @return string
     
    13871395     * Add the '%%' delimiters to a variable string.
    13881396     *
    1389      * @param  string $string Variable string to be delimited.
     1397     * @param string $string Variable string to be delimited.
    13901398     *
    13911399     * @return string
  • wordpress-seo/trunk/inc/class-wpseo-replacement-variable.php

    r2061403 r2065083  
    1515
    1616    /**
    17      * @var string The variable to use.
     17     * The variable to use.
     18     *
     19     * @var string
    1820     */
    1921    protected $variable;
    2022
    2123    /**
    22      * @var string The label of the replacement variable.
     24     * The label of the replacement variable.
     25     *
     26     * @var string
    2327     */
    2428    protected $label;
    2529
    2630    /**
    27      * @var string The description of the replacement variable.
     31     * The description of the replacement variable.
     32     *
     33     * @var string
    2834     */
    2935    protected $description;
  • wordpress-seo/trunk/inc/class-wpseo-utils.php

    r2061403 r2065083  
    1414
    1515    /**
    16      * @var bool $has_filters Whether the PHP filter extension is enabled.
    17      * @since 1.8.0
     16     * Whether the PHP filter extension is enabled.
     17     *
     18     * @since 1.8.0
     19     *
     20     * @var bool $has_filters
    1821     */
    1922    public static $has_filters;
    2023
    2124    /**
    22      * @var array Notifications to be shown in the JavaScript console.
     25     * Notifications to be shown in the JavaScript console.
     26     *
    2327     * @since 3.3.2
     28     *
     29     * @var array
    2430     */
    2531    protected static $console_notifications = array();
     
    255261     * Emulate the WP native sanitize_text_field function in a %%variable%% safe way.
    256262     *
    257      * @see   https://core.trac.wordpress.org/browser/trunk/src/wp-includes/formatting.php for the original
     263     * @link https://core.trac.wordpress.org/browser/trunk/src/wp-includes/formatting.php for the original.
    258264     *
    259265     * Sanitize a string from user input or from the db.
     
    509515     * Do simple reliable math calculations without the risk of wrong results.
    510516     *
    511      * @see  http://floating-point-gui.de/
    512      * @see   the big red warning on http://php.net/language.types.float.php
     517     * @link http://floating-point-gui.de/
     518     * @link http://php.net/language.types.float.php See the big red warning.
    513519     *
    514520     * In the rare case that the bcmath extension would not be loaded, it will return the normal calculation results.
     
    517523     * @since 1.8.0 Moved from stand-alone function to this class.
    518524     *
    519      * @param mixed  $number1     Scalar (string/int/float/bool).
    520      * @param string $action      Calculation action to execute. Valid input:
    521      *                            '+' or 'add' or 'addition',
    522      *                            '-' or 'sub' or 'subtract',
    523      *                            '*' or 'mul' or 'multiply',
    524      *                            '/' or 'div' or 'divide',
    525      *                            '%' or 'mod' or 'modulus'
    526      *                            '=' or 'comp' or 'compare'.
    527      * @param mixed  $number2     Scalar (string/int/float/bool).
    528      * @param bool   $round       Whether or not to round the result. Defaults to false.
    529      *                            Will be disregarded for a compare operation.
    530      * @param int    $decimals    Decimals for rounding operation. Defaults to 0.
    531      * @param int    $precision   Calculation precision. Defaults to 10.
    532      *
    533      * @return mixed            Calculation Result or false if either or the numbers isn't scalar or
    534      *                          an invalid operation was passed.
    535      *                          - for compare the result will always be an integer.
    536      *                          - for all other operations, the result will either be an integer (preferred)
    537      *                            or a float.
     525     * @param mixed  $number1   Scalar (string/int/float/bool).
     526     * @param string $action    Calculation action to execute. Valid input:
     527     *                          '+' or 'add' or 'addition',
     528     *                          '-' or 'sub' or 'subtract',
     529     *                          '*' or 'mul' or 'multiply',
     530     *                          '/' or 'div' or 'divide',
     531     *                          '%' or 'mod' or 'modulus'
     532     *                          '=' or 'comp' or 'compare'.
     533     * @param mixed  $number2   Scalar (string/int/float/bool).
     534     * @param bool   $round     Whether or not to round the result. Defaults to false.
     535     *                          Will be disregarded for a compare operation.
     536     * @param int    $decimals  Decimals for rounding operation. Defaults to 0.
     537     * @param int    $precision Calculation precision. Defaults to 10.
     538     *
     539     * @return mixed Calculation Result or false if either or the numbers isn't scalar or
     540     *               an invalid operation was passed.
     541     *               - For compare the result will always be an integer.
     542     *               - For all other operations, the result will either be an integer (preferred)
     543     *                 or a float.
    538544     */
    539545    public static function calc( $number1, $action, $number2, $round = false, $decimals = 0, $precision = 10 ) {
     
    11471153    }
    11481154
     1155    /**
     1156     * Prepares data for outputting as JSON.
     1157     *
     1158     * @param array $data The data to format.
     1159     *
     1160     * @return false|string The prepared JSON string.
     1161     */
     1162    public static function format_json_encode( $data ) {
     1163        $flags = 0;
     1164        if ( version_compare( PHP_VERSION, '5.4', '>=' ) ) {
     1165            // @codingStandardsIgnoreLine This is used in the wp_json_encode call, which checks for this.
     1166            $flags = ( $flags | JSON_UNESCAPED_SLASHES );
     1167        }
     1168        if ( self::is_development_mode() ) {
     1169            $flags = ( $flags | JSON_PRETTY_PRINT );
     1170
     1171            /**
     1172             * Filter the Yoast SEO development mode.
     1173             *
     1174             * @api array $data Allows filtering of the JSON data for debug purposes.
     1175             */
     1176            $data = apply_filters( 'wpseo_debug_json_data', $data );
     1177        }
     1178
     1179        return wp_json_encode( $data, $flags );
     1180    }
     1181
    11491182    /* ********************* DEPRECATED METHODS ********************* */
    11501183
  • wordpress-seo/trunk/inc/indexables/class-indexable.php

    r1954352 r2065083  
    1212
    1313    /**
    14      * @var array The updateable fields.
     14     * The updateable fields.
     15     *
     16     * @var array
    1517     */
    1618    protected $updateable_fields = array();
    1719
    1820    /**
    19      * @var array The indexable's data.
     21     * The indexable's data.
     22     *
     23     * @var array
    2024     */
    2125    protected $data;
    2226
    2327    /**
    24      * @var array The available validators to run.
     28     * The available validators to run.
     29     *
     30     * @var array
    2531     */
    2632    protected $validators = array(
  • wordpress-seo/trunk/inc/indexables/class-object-type.php

    r2061403 r2065083  
    1212
    1313    /**
    14      * @var int The ID of the object.
     14     * The ID of the object.
     15     *
     16     * @var int
    1517     */
    1618    protected $id;
    1719
    1820    /**
    19      * @var string The type of the object.
     21     * The type of the object.
     22     *
     23     * @var string
    2024     */
    2125    protected $type;
    2226
    2327    /**
    24      * @var string The subtype of the object.
     28     * The subtype of the object.
     29     *
     30     * @var string
    2531     */
    2632    protected $sub_type;
    2733
    2834    /**
    29      * @var string The permalink of the object.
     35     * The permalink of the object.
     36     *
     37     * @var string
    3038     */
    3139    protected $permalink;
  • wordpress-seo/trunk/inc/indexables/class-post-indexable.php

    r1954352 r2065083  
    1212
    1313    /**
    14      * @var array The updateable fields.
     14     * The updateable fields.
     15     *
     16     * @var array
    1517     */
    1618    protected $updateable_fields = array(
  • wordpress-seo/trunk/inc/indexables/class-term-indexable.php

    r1954352 r2065083  
    1212
    1313    /**
    14      * @var array The updateable fields.
     14     * The updateable fields.
     15     *
     16     * @var array
    1517     */
    1618    protected $updateable_fields = array(
  • wordpress-seo/trunk/inc/indexables/validators/class-robots-validator.php

    r1954352 r2065083  
    1212
    1313    /**
    14      * @var array The robots keys to validate.
     14     * The robots keys to validate.
     15     *
     16     * @var array
    1517     */
    1618    private $robots_to_validate = array(
  • wordpress-seo/trunk/inc/options/class-wpseo-option-ms.php

    r2061403 r2065083  
    1515
    1616    /**
    17      * @var  string  option name
     17     * Option name.
     18     *
     19     * @var string
    1820     */
    1921    public $option_name = 'wpseo_ms';
    2022
    2123    /**
    22      * @var  string  option group name for use in settings forms
     24     * Option group name for use in settings forms.
     25     *
     26     * @var string
    2327     */
    2428    public $group_name = 'yoast_wpseo_multisite_options';
    2529
    2630    /**
    27      * @var  bool  whether to include the option in the return for WPSEO_Options::get_all()
     31     * Whether to include the option in the return for WPSEO_Options::get_all().
     32     *
     33     * @var bool
    2834     */
    2935    public $include_in_all = false;
    3036
    3137    /**
    32      * @var  bool  whether this option is only for when the install is multisite
     38     * Whether this option is only for when the install is multisite.
     39     *
     40     * @var bool
    3341     */
    3442    public $multisite_only = true;
    3543
    3644    /**
    37      * @var  array  Array of defaults for the option
    38      *        Shouldn't be requested directly, use $this->get_defaults();
     45     * Array of defaults for the option.
     46     *
     47     * Shouldn't be requested directly, use $this->get_defaults();
     48     *
     49     * @var array
    3950     */
    4051    protected $defaults = array();
    4152
    4253    /**
    43      * @var  array $allowed_access_options Available options for the 'access' setting
    44      *                    Used for input validation
     54     * Available options for the 'access' setting. Used for input validation.
    4555     *
    4656     * {@internal Important: Make sure the options added to the array here are in line
    4757     *            with the keys for the options set for the select box in the
    4858     *            admin/pages/network.php file.}}
     59     *
     60     * @var array
    4961     */
    5062    public static $allowed_access_options = array(
     
    92104     * Add filters to make sure that the option default is returned if the option is not set
    93105     *
    94      * @return  void
     106     * @return void
    95107     */
    96108    public function add_default_filters() {
     
    105117     * Called from the validate() method to prevent failure to add new options
    106118     *
    107      * @return  void
     119     * @return void
    108120     */
    109121    public function remove_default_filters() {
     
    114126     * Add filters to make sure that the option is merged with its defaults before being returned
    115127     *
    116      * @return  void
     128     * @return void
    117129     */
    118130    public function add_option_filters() {
     
    127139     * Called from the clean_up methods to make sure we retrieve the original old option
    128140     *
    129      * @return  void
     141     * @return void
    130142     */
    131143    public function remove_option_filters() {
     
    138150     * Validate the option
    139151     *
    140      * @param  array $dirty New value for the option.
    141      * @param  array $clean Clean value for the option, normally the defaults.
    142      * @param  array $old   Old value of the option.
    143      *
    144      * @return  array      Validated clean value for the option to be saved to the database
     152     * @param array $dirty New value for the option.
     153     * @param array $clean Clean value for the option, normally the defaults.
     154     * @param array $old   Old value of the option.
     155     *
     156     * @return array Validated clean value for the option to be saved to the database.
    145157     */
    146158    protected function validate_option( $dirty, $clean, $old ) {
     
    213225     * Clean a given option value
    214226     *
    215      * @param  array  $option_value          Old (not merged with defaults or filtered) option value to
    216      *                                       clean according to the rules for this option.
    217      * @param  string $current_version       (optional) Version from which to upgrade, if not set,
    218      *                                       version specific upgrades will be disregarded.
    219      * @param  array  $all_old_option_values (optional) Only used when importing old options to have
    220      *                                       access to the real old values, in contrast to the saved ones.
    221      *
    222      * @return  array            Cleaned option
     227     * @param array  $option_value          Old (not merged with defaults or filtered) option value to
     228     *                                      clean according to the rules for this option.
     229     * @param string $current_version       (optional) Version from which to upgrade, if not set,
     230     *                                      version specific upgrades will be disregarded.
     231     * @param array  $all_old_option_values (optional) Only used when importing old options to have
     232     *                                      access to the real old values, in contrast to the saved ones.
     233     *
     234     * @return array Cleaned option.
    223235     */
    224236
  • wordpress-seo/trunk/inc/options/class-wpseo-option-social.php

    r2063108 r2065083  
    1212
    1313    /**
    14      * @var  string  Option name.
     14     * Option name.
     15     *
     16     * @var string
    1517     */
    1618    public $option_name = 'wpseo_social';
    1719
    1820    /**
    19      * @var  array  Array of defaults for the option.
    20      *        Shouldn't be requested directly, use $this->get_defaults();
     21     * Array of defaults for the option.
     22     *
     23     * Shouldn't be requested directly, use $this->get_defaults();
     24     *
     25     * @var array
    2126     */
    2227    protected $defaults = array(
     
    4550
    4651    /**
    47      * @var array  Array of sub-options which should not be overloaded with multi-site defaults.
     52     * Array of sub-options which should not be overloaded with multi-site defaults.
     53     *
     54     * @var array
    4855     */
    4956    public $ms_exclude = array(
     
    5461
    5562    /**
    56      * @var  array  Array of allowed twitter card types.
    57      *              While we only have the options summary and summary_large_image in the
    58      *              interface now, we might change that at some point.
     63     * Array of allowed twitter card types.
     64     *
     65     * While we only have the options summary and summary_large_image in the
     66     * interface now, we might change that at some point.
    5967     *
    6068     * {@internal Uncomment any of these to allow them in validation *and* automatically
    6169     *            add them as a choice in the options page.}}
     70     *
     71     * @var array
    6272     */
    6373    public static $twitter_card_types = array(
     
    97107     * Validate the option.
    98108     *
    99      * @param  array $dirty New value for the option.
    100      * @param  array $clean Clean value for the option, normally the defaults.
    101      * @param  array $old   Old value of the option.
    102      *
    103      * @return  array      Validated clean value for the option to be saved to the database.
     109     * @param array $dirty New value for the option.
     110     * @param array $clean Clean value for the option, normally the defaults.
     111     * @param array $old   Old value of the option.
     112     *
     113     * @return array Validated clean value for the option to be saved to the database.
    104114     */
    105115    protected function validate_option( $dirty, $clean, $old ) {
     
    213223     * Clean a given option value.
    214224     *
    215      * @param  array  $option_value          Old (not merged with defaults or filtered) option value to
    216      *                                       clean according to the rules for this option.
    217      * @param  string $current_version       Optional. Version from which to upgrade, if not set,
    218      *                                       version specific upgrades will be disregarded.
    219      * @param  array  $all_old_option_values Optional. Only used when importing old options to have
    220      *                                       access to the real old values, in contrast to the saved ones.
    221      *
    222      * @return  array Cleaned option.
     225     * @param array  $option_value          Old (not merged with defaults or filtered) option value to
     226     *                                      clean according to the rules for this option.
     227     * @param string $current_version       Optional. Version from which to upgrade, if not set,
     228     *                                      version specific upgrades will be disregarded.
     229     * @param array  $all_old_option_values Optional. Only used when importing old options to have
     230     *                                      access to the real old values, in contrast to the saved ones.
     231     *
     232     * @return array Cleaned option.
    223233     */
    224234    protected function clean_option( $option_value, $current_version = null, $all_old_option_values = null ) {
  • wordpress-seo/trunk/inc/options/class-wpseo-option-titles.php

    r2061403 r2065083  
    1212
    1313    /**
    14      * @var  string  Option name.
     14     * Option name.
     15     *
     16     * @var string
    1517     */
    1618    public $option_name = 'wpseo_titles';
    1719
    1820    /**
    19      * @var  array  Array of defaults for the option.
    20      *        Shouldn't be requested directly, use $this->get_defaults();
     21     * Array of defaults for the option.
     22     *
     23     * Shouldn't be requested directly, use $this->get_defaults();
    2124     *
    2225     * {@internal Note: Some of the default values are added via the translate_defaults() method.}}
     26     *
     27     * @var array
    2328     */
    2429    protected $defaults = array(
     
    6671        'company_name'                  => '',
    6772        'company_or_person'             => '',
     73        'company_or_person_user_id'     => false,
    6874
    6975        'stripcategorybase'             => false,
     
    9096
    9197    /**
    92      * @var  array  Array of variable option name patterns for the option.
     98     * Array of variable option name patterns for the option.
     99     *
     100     * @var array
    93101     */
    94102    protected $variable_array_key_patterns = array(
     
    104112
    105113    /**
    106      * @var array  Array of sub-options which should not be overloaded with multi-site defaults.
     114     * Array of sub-options which should not be overloaded with multi-site defaults.
     115     *
     116     * @var array
    107117     */
    108118    public $ms_exclude = array(
     
    175185     * Get the available separator options aria-labels.
    176186     *
    177      * @return array $separator_options Array with the separator options aria-labels.
     187     * @return array Array with the separator options aria-labels.
    178188     */
    179189    public function get_separator_options_for_display() {
     
    287297     *
    288298     * Called from actions:
    289      *     (un)registered_post_type
    290      *     (un)registered_taxonomy
     299     * - (un)registered_post_type
     300     * - (un)registered_taxonomy
    291301     *
    292302     * @return void
     
    299309     * Validate the option.
    300310     *
    301      * @param  array $dirty New value for the option.
    302      * @param  array $clean Clean value for the option, normally the defaults.
    303      * @param  array $old   Old value of the option.
    304      *
    305      * @return  array      Validated clean value for the option to be saved to the database.
     311     * @param array $dirty New value for the option.
     312     * @param array $clean Clean value for the option, normally the defaults.
     313     * @param array $old   Old value of the option.
     314     *
     315     * @return array Validated clean value for the option to be saved to the database.
    306316     */
    307317    protected function validate_option( $dirty, $clean, $old ) {
     
    460470                    break;
    461471
    462                 /* Integer field - not in form. */
    463                 case 'title_test':
     472                case 'company_or_person_user_id':
     473                case 'title_test': /* Integer field - not in form. */
    464474                    if ( isset( $dirty[ $key ] ) ) {
    465475                        $int = WPSEO_Utils::validate_int( $dirty[ $key ] );
     
    562572     * Clean a given option value.
    563573     *
    564      * @param  array  $option_value          Old (not merged with defaults or filtered) option value to
    565      *                                       clean according to the rules for this option.
    566      * @param  string $current_version       Optional. Version from which to upgrade, if not set,
    567      *                                       version specific upgrades will be disregarded.
    568      * @param  array  $all_old_option_values Optional. Only used when importing old options to have
    569      *                                       access to the real old values, in contrast to the saved ones.
    570      *
    571      * @return  array            Cleaned option.
     574     * @param array  $option_value          Old (not merged with defaults or filtered) option value to
     575     *                                      clean according to the rules for this option.
     576     * @param string $current_version       Optional. Version from which to upgrade, if not set,
     577     *                                      version specific upgrades will be disregarded.
     578     * @param array  $all_old_option_values Optional. Only used when importing old options to have
     579     *                                      access to the real old values, in contrast to the saved ones.
     580     *
     581     * @return array Cleaned option.
    572582     */
    573583    protected function clean_option( $option_value, $current_version = null, $all_old_option_values = null ) {
     
    756766     *            the parent on which it is based!}}
    757767     *
    758      * @param  array $dirty Original option as retrieved from the database.
    759      * @param  array $clean Filtered option where any options which shouldn't be in our option
    760      *                      have already been removed and any options which weren't set
    761      *                      have been set to their defaults.
    762      *
    763      * @return  array
     768     * @param array $dirty Original option as retrieved from the database.
     769     * @param array $clean Filtered option where any options which shouldn't be in our option
     770     *                     have already been removed and any options which weren't set
     771     *                     have been set to their defaults.
     772     *
     773     * @return array
    764774     */
    765775    protected function retain_variable_keys( $dirty, $clean ) {
  • wordpress-seo/trunk/inc/options/class-wpseo-option-wpseo.php

    r2061403 r2065083  
    214214     * Validate the option.
    215215     *
    216      * @param  array $dirty New value for the option.
    217      * @param  array $clean Clean value for the option, normally the defaults.
    218      * @param  array $old   Old value of the option.
    219      *
    220      * @return  array      Validated clean value for the option to be saved to the database.
     216     * @param array $dirty New value for the option.
     217     * @param array $clean Clean value for the option, normally the defaults.
     218     * @param array $old   Old value of the option.
     219     *
     220     * @return array Validated clean value for the option to be saved to the database.
    221221     */
    222222    protected function validate_option( $dirty, $clean, $old ) {
     
    345345
    346346    /**
    347      * Gets the filter hook name and callback for adjusting the retrieved option value against the network-allowed features.
     347     * Gets the filter hook name and callback for adjusting the retrieved option value
     348     * against the network-allowed features.
    348349     *
    349350     * @return array Array where the first item is the hook name, the second is the hook callback,
     
    375376     * Clean a given option value.
    376377     *
    377      * @param  array  $option_value          Old (not merged with defaults or filtered) option value to
    378      *                                       clean according to the rules for this option.
    379      * @param  string $current_version       Optional. Version from which to upgrade, if not set,
    380      *                                       version specific upgrades will be disregarded.
    381      * @param  array  $all_old_option_values Optional. Only used when importing old options to have
    382      *                                       access to the real old values, in contrast to the saved ones.
    383      *
    384      * @return  array            Cleaned option.
     378     * @param array  $option_value          Old (not merged with defaults or filtered) option value to
     379     *                                      clean according to the rules for this option.
     380     * @param string $current_version       Optional. Version from which to upgrade, if not set,
     381     *                                      version specific upgrades will be disregarded.
     382     * @param array  $all_old_option_values Optional. Only used when importing old options to have
     383     *                                      access to the real old values, in contrast to the saved ones.
     384     *
     385     * @return array Cleaned option.
    385386     */
    386387    protected function clean_option( $option_value, $current_version = null, $all_old_option_values = null ) {
  • wordpress-seo/trunk/inc/options/class-wpseo-option.php

    r2061403 r2065083  
    1313 * [Retrieving options]
    1414 * - Use the normal get_option() to retrieve an option. You will receive a complete array for the option.
    15  *    Any subkeys which were not set, will have their default values in place.
     15 *   Any subkeys which were not set, will have their default values in place.
    1616 * - In other words, you will normally not have to check whether a subkey isset() as they will *always* be set.
    17  *    They will also *always* be of the correct variable type.
    18  *    The only exception to this are the options with variable option names based on post_type or taxonomy
    19  *    as those will not always be available before the taxonomy/post_type is registered.
    20  *    (they will be available if a value was set, they won't be if it wasn't as the class won't know
    21  *    that a default needs to be injected).
     17 *   They will also *always* be of the correct variable type.
     18 *   The only exception to this are the options with variable option names based on post_type or taxonomy
     19 *   as those will not always be available before the taxonomy/post_type is registered.
     20 *   (they will be available if a value was set, they won't be if it wasn't as the class won't know
     21 *   that a default needs to be injected).
    2222 *
    2323 * [Updating/Adding options]
     
    2626 *   are instantiated, validation for all options and their subkeys will be automatic.
    2727 * - On (succesfull) update of a couple of options, certain related actions will be run automatically.
    28  *    Some examples:
    29  *      - on change of wpseo[yoast_tracking], the cron schedule will be adjusted accordingly
    30  *      - on change of wpseo and wpseo_title, some caches will be cleared
     28 *   Some examples:
     29 *   - on change of wpseo[yoast_tracking], the cron schedule will be adjusted accordingly
     30 *   - on change of wpseo and wpseo_title, some caches will be cleared
    3131 *
    3232 *
    3333 * [Important information about add/updating/changing these classes]
    3434 * - Make sure that option array key names are unique across options. The WPSEO_Options::get_all()
    35  *    method merges most options together. If any of them have non-unique names, even if they
    36  *    are in a different option, they *will* overwrite each other.
     35 *   method merges most options together. If any of them have non-unique names, even if they
     36 *   are in a different option, they *will* overwrite each other.
    3737 * - When you add a new array key in an option: make sure you add proper defaults and add the key
    38  *    to the validation routine in the proper place or add a new validation case.
    39  *    You don't need to do any upgrading as any option returned will always be merged with the
    40  *    defaults, so new options will automatically be available.
    41  *    If the default value is a string which need translating, add this to the concrete class
    42  *    translate_defaults() method.
     38 *   to the validation routine in the proper place or add a new validation case.
     39 *   You don't need to do any upgrading as any option returned will always be merged with the
     40 *   defaults, so new options will automatically be available.
     41 *   If the default value is a string which need translating, add this to the concrete class
     42 *   translate_defaults() method.
    4343 * - When you remove an array key from an option: if it's important that the option is really removed,
    44  *    add the WPSEO_Option::clean_up( $option_name ) method to the upgrade run.
    45  *    This will re-save the option and automatically remove the array key no longer in existance.
     44 *   add the WPSEO_Option::clean_up( $option_name ) method to the upgrade run.
     45 *   This will re-save the option and automatically remove the array key no longer in existance.
    4646 * - When you rename a sub-option: add it to the clean_option() routine and run that in the upgrade run.
    4747 * - When you change the default for an option sub-key, make sure you verify that the validation routine will
    48  *    still work the way it should.
    49  *    Example: changing a default from '' (empty string) to 'text' with a validation routine with tests
    50  *    for an empty string will prevent a user from saving an empty string as the real value. So the
    51  *    test for '' with the validation routine would have to be removed in that case.
     48 *   still work the way it should.
     49 *   Example: changing a default from '' (empty string) to 'text' with a validation routine with tests
     50 *   for an empty string will prevent a user from saving an empty string as the real value. So the
     51 *   test for '' with the validation routine would have to be removed in that case.
    5252 * - If an option needs specific actions different from defined in this abstract class, you can just overrule
    53  *    a method by defining it in the concrete class.
     53 *   a method by defining it in the concrete class.
    5454 *
    55  * @todo       - [JRF => testers] Double check that validation will not cause errors when called
    56  *               from upgrade routine (some of the WP functions may not yet be available).
     55 * @todo [JRF => testers] Double check that validation will not cause errors when called
     56 *       from upgrade routine (some of the WP functions may not yet be available).
    5757 */
    5858abstract class WPSEO_Option {
     
    239239     * Add filters to make sure that the option default is returned if the option is not set.
    240240     *
    241      * @return  void
     241     * @return void
    242242     */
    243243    public function add_default_filters() {
     
    359359     * Called from the validate() method to prevent failure to add new options.
    360360     *
    361      * @return  void
     361     * @return void
    362362     */
    363363    public function remove_default_filters() {
     
    373373     *            in an option, such as array keys depending on post_types and/or taxonomies.}}
    374374     *
    375      * @return  array
     375     * @return array
    376376     */
    377377    public function get_defaults() {
     
    390390     * Add filters to make sure that the option is merged with its defaults before being returned.
    391391     *
    392      * @return  void
     392     * @return void
    393393     */
    394394    public function add_option_filters() {
     
    403403     * Called from the clean_up methods to make sure we retrieve the original old option.
    404404     *
    405      * @return  void
     405     * @return void
    406406     */
    407407    public function remove_option_filters() {
     
    414414     * This method should *not* be called directly!!! It is only meant to filter the get_option() results.
    415415     *
    416      * @param   mixed $options Option value.
    417      *
    418      * @return  mixed        Option merged with the defaults for that option.
     416     * @param mixed $options Option value.
     417     *
     418     * @return mixed Option merged with the defaults for that option.
    419419     */
    420420    public function get_option( $options = null ) {
     
    462462     * Validate the option
    463463     *
    464      * @param  mixed $option_value The unvalidated new value for the option.
    465      *
    466      * @return  array          Validated new value for the option.
     464     * @param mixed $option_value The unvalidated new value for the option.
     465     *
     466     * @return array Validated new value for the option.
    467467     */
    468468    public function validate( $option_value ) {
     
    504504     *
    505505     * @param string $key Option key.
     506     *
    506507     * @return bool True if option key is disabled, false otherwise.
    507508     */
     
    519520     * values within the option.
    520521     *
    521      * @param  array $dirty New value for the option.
    522      * @param  array $clean Clean value for the option, normally the defaults.
    523      * @param  array $old   Old value of the option.
     522     * @param array $dirty New value for the option.
     523     * @param array $clean Clean value for the option, normally the defaults.
     524     * @param array $old   Old value of the option.
    524525     */
    525526    abstract protected function validate_option( $dirty, $clean, $old );
     
    602603     * @uses WPSEO_Option::import()
    603604     *
    604      * @param  string $current_version Optional. Version from which to upgrade, if not set, version specific upgrades will be disregarded.
     605     * @param string $current_version Optional. Version from which to upgrade, if not set,
     606     *                                version specific upgrades will be disregarded.
    605607     *
    606608     * @return void
     
    625627     * Important: all validation routines which add_settings_errors would need to be changed for this to work
    626628     *
    627      * @param  array  $option_value          Option value to be imported.
    628      * @param  string $current_version       Optional. Version from which to upgrade, if not set, version specific upgrades will be disregarded.
    629      * @param  array  $all_old_option_values Optional. Only used when importing old options to have access to the real old values, in contrast to the saved ones.
     629     * @param array  $option_value          Option value to be imported.
     630     * @param string $current_version       Optional. Version from which to upgrade, if not set,
     631     *                                      version specific upgrades will be disregarded.
     632     * @param array  $all_old_option_values Optional. Only used when importing old options to
     633     *                                      have access to the real old values, in contrast to
     634     *                                      the saved ones.
    630635     *
    631636     * @return void
     
    674679     * removes any invalid keys on save.
    675680     *
    676      * @param  array $options Optional. Current options. If not set, the option defaults for the $option_key will be returned.
    677      *
    678      * @return  array  Combined and filtered options array.
     681     * @param array $options Optional. Current options. If not set, the option defaults
     682     *                       for the $option_key will be returned.
     683     *
     684     * @return array Combined and filtered options array.
    679685     */
    680686    protected function array_filter_merge( $options = null ) {
     
    756762     *            changes applied here, also get ported to that version.}}
    757763     *
    758      * @param  array $dirty Original option as retrieved from the database.
    759      * @param  array $clean Filtered option where any options which shouldn't be in our option
    760      *                      have already been removed and any options which weren't set
    761      *                      have been set to their defaults.
    762      *
    763      * @return  array
     764     * @param array $dirty Original option as retrieved from the database.
     765     * @param array $clean Filtered option where any options which shouldn't be in our option
     766     *                     have already been removed and any options which weren't set
     767     *                     have been set to their defaults.
     768     *
     769     * @return array
    764770     */
    765771    protected function retain_variable_keys( $dirty, $clean ) {
     
    790796     * @usedby validate_option() methods for options with variable array keys.
    791797     *
    792      * @param  string $key Array key to check.
    793      *
    794      * @return string      Pattern if it conforms, original array key if it doesn't or if the option
    795      *              does not have variable array keys.
     798     * @param string $key Array key to check.
     799     *
     800     * @return string Pattern if it conforms, original array key if it doesn't or if the option
     801     *                does not have variable array keys.
    796802     */
    797803    protected function get_switch_key( $key ) {
  • wordpress-seo/trunk/inc/options/class-wpseo-options.php

    r2061403 r2065083  
    8585     * Get the group name of an option for use in the settings form.
    8686     *
    87      * @param  string $option_name The option for which you want to retrieve the option group name.
    88      *
    89      * @return  string|bool
     87     * @param string $option_name The option for which you want to retrieve the option group name.
     88     *
     89     * @return string|bool
    9090     */
    9191    public static function get_group_name( $option_name ) {
     
    100100     * Get a specific default value for an option.
    101101     *
    102      * @param  string $option_name The option for which you want to retrieve a default.
    103      * @param  string $key         The key within the option who's default you want.
    104      *
    105      * @return  mixed
     102     * @param string $option_name The option for which you want to retrieve a default.
     103     * @param string $key         The key within the option who's default you want.
     104     *
     105     * @return mixed
    106106     */
    107107    public static function get_default( $option_name, $key ) {
     
    119119     * Update a site_option.
    120120     *
    121      * @param  string $option_name The option name of the option to save.
    122      * @param  mixed  $value       The new value for the option.
     121     * @param string $option_name The option name of the option to save.
     122     * @param mixed  $value       The new value for the option.
    123123     *
    124124     * @return bool
     
    135135     * Get the instantiated option instance.
    136136     *
    137      * @param  string $option_name The option for which you want to retrieve the instance.
    138      *
    139      * @return  object|bool
     137     * @param string $option_name The option for which you want to retrieve the instance.
     138     *
     139     * @return object|bool
    140140     */
    141141    public static function get_option_instance( $option_name ) {
     
    150150     * Retrieve an array of the options which should be included in get_all() and reset().
    151151     *
    152      * @return  array  Array of option names
     152     * @return array Array of option names.
    153153     */
    154154    public static function get_option_names() {
     
    173173     * well change between calls (enriched defaults and such)
    174174     *
    175      * @return  array  Array combining the values of all the options
     175     * @return array Array combining the values of all the options.
    176176     */
    177177    public static function get_all() {
     
    184184     * @param array $option_names An array of option names of the options you want to get.
    185185     *
    186      * @return  array  Array combining the values of the requested options
     186     * @return array Array combining the values of the requested options.
    187187     */
    188188    public static function get_options( array $option_names ) {
     
    290290     * Run the clean up routine for one or all options.
    291291     *
    292      * @param  array|string $option_name     Optional. the option you want to clean or an array of
    293      *                                       option names for the options you want to clean.
    294      *                                       If not set, all options will be cleaned.
    295      * @param  string       $current_version Optional. Version from which to upgrade, if not set,
    296      *                                       version specific upgrades will be disregarded.
    297      *
    298      * @return  void
     292     * @param array|string $option_name     Optional. the option you want to clean or an array of
     293     *                                      option names for the options you want to clean.
     294     *                                      If not set, all options will be cleaned.
     295     * @param string       $current_version Optional. Version from which to upgrade, if not set,
     296     *                                      version specific upgrades will be disregarded.
     297     *
     298     * @return void
    299299     */
    300300    public static function clean_up( $option_name = null, $current_version = null ) {
     
    326326     * Check that all options exist in the database and add any which don't.
    327327     *
    328      * @return  void
     328     * @return void
    329329     */
    330330    public static function ensure_options_exist() {
     
    373373     * Initialize default values for a new multisite blog.
    374374     *
    375      * @param  bool $force_init Whether to always do the initialization routine (title/desc test).
     375     * @param bool $force_init Whether to always do the initialization routine (title/desc test).
    376376     *
    377377     * @return void
     
    395395     * specified default blog if one was chosen on the network page or the plugin defaults if it was not.
    396396     *
    397      * @param  int|string $blog_id Blog id of the blog for which to reset the options.
    398      *
    399      * @return  void
     397     * @param int|string $blog_id Blog id of the blog for which to reset the options.
     398     *
     399     * @return void
    400400     */
    401401    public static function reset_ms_blog( $blog_id ) {
     
    437437     * @param string $wpseo_options_group_name The name for the wpseo option group in the database.
    438438     * @param string $option_name              The name for the option to set.
    439      * @param *      $option_value             The value for the option.
     439     * @param mixed  $option_value             The value for the option.
    440440     *
    441441     * @return boolean Returns true if the option is successfully saved in the database.
  • wordpress-seo/trunk/inc/options/class-wpseo-taxonomy-meta.php

    r2061403 r2065083  
    1212
    1313    /**
    14      * @var  string  Option name.
     14     * Option name.
     15     *
     16     * @var string
    1517     */
    1618    public $option_name = 'wpseo_taxonomy_meta';
    1719
    1820    /**
    19      * @var  bool  Whether to include the option in the return for WPSEO_Options::get_all().
     21     * Whether to include the option in the return for WPSEO_Options::get_all().
     22     *
     23     * @var bool
    2024     */
    2125    public $include_in_all = false;
    2226
    2327    /**
    24      * @var  array  Array of defaults for the option.
    25      *        Shouldn't be requested directly, use $this->get_defaults();
     28     * Array of defaults for the option.
     29     *
     30     * Shouldn't be requested directly, use $this->get_defaults();
    2631     *
    2732     * {@internal Important: in contrast to most defaults, the below array format is
     
    2934     *            where [...] is any of the $defaults_per_term options shown below.
    3035     *            This is of course taken into account in the below methods.}}
     36     *
     37     * @var array
    3138     */
    3239    protected $defaults = array();
    3340
    3441    /**
    35      * @var  string  Option name - same as $option_name property, but now also available to static methods.
     42     * Option name - same as $option_name property, but now also available to static methods.
     43     *
     44     * @var string
    3645     */
    3746    public static $name;
    3847
    3948    /**
    40      * @var  array  Array of defaults for individual taxonomy meta entries.
     49     * Array of defaults for individual taxonomy meta entries.
     50     *
     51     * @var array
    4152     */
    4253    public static $defaults_per_term = array(
     
    6475
    6576    /**
    66      * @var  array  Available index options.
    67      *        Used for form generation and input validation.
     77     * Available index options.
     78     *
     79     * Used for form generation and input validation.
    6880     *
    6981     * {@internal Labels (translation) added on admin_init via WPSEO_Taxonomy::translate_meta_options().}}
     82     *
     83     * @var array
    7084     */
    7185    public static $no_index_options = array(
     
    122136     * while filtering out any keys which are not in the defaults array.
    123137     *
    124      * @param  string $option_key Option name of the option we're doing the merge for.
    125      * @param  array  $options    Optional. Current options. If not set, the option defaults for the $option_key will be returned.
    126      *
    127      * @return  array  Combined and filtered options array.
     138     * @param string $option_key Option name of the option we're doing the merge for.
     139     * @param array  $options    Optional. Current options. If not set, the option defaults
     140     *                           for the $option_key will be returned.
     141     *
     142     * @return array Combined and filtered options array.
    128143     */
    129144
     
    174189     * Validate the option.
    175190     *
    176      * @param  array $dirty New value for the option.
    177      * @param  array $clean Clean value for the option, normally the defaults.
    178      * @param  array $old   Old value of the option.
    179      *
    180      * @return  array      Validated clean value for the option to be saved to the database.
     191     * @param array $dirty New value for the option.
     192     * @param array $clean Clean value for the option, normally the defaults.
     193     * @param array $old   Old value of the option.
     194     *
     195     * @return array Validated clean value for the option to be saved to the database.
    181196     */
    182197    protected function validate_option( $dirty, $clean, $old ) {
     
    227242     * Validate the meta data for one individual term and removes default values (no need to save those).
    228243     *
    229      * @param  array $meta_data New values.
    230      * @param  array $old_meta  The original values.
    231      *
    232      * @return  array        Validated and filtered value.
     244     * @param array $meta_data New values.
     245     * @param array $old_meta  The original values.
     246     *
     247     * @return array Validated and filtered value.
    233248     */
    234249    public static function validate_term_meta_data( $meta_data, $old_meta ) {
     
    281296                        $input         = json_decode( $meta_data[ $key ], true );
    282297                        $sanitized     = array_map( array( 'WPSEO_Utils', 'sanitize_text_field' ), $input );
    283                         $clean[ $key ] = json_encode( $sanitized );
     298                        $clean[ $key ] = WPSEO_Utils::format_json_encode( $sanitized );
    284299                    }
    285300                    elseif ( isset( $old_meta[ $key ] ) ) {
     
    303318                        }
    304319
    305                         $clean[ $key ] = json_encode( $sanitized );
     320                        $clean[ $key ] = WPSEO_Utils::format_json_encode( $sanitized );
    306321                    }
    307322                    elseif ( isset( $old_meta[ $key ] ) ) {
     
    347362     * - Fixes strings which were escaped (should have been sanitized - escaping is for output)
    348363     *
    349      * @param  array  $option_value          Old (not merged with defaults or filtered) option value to
    350      *                                       clean according to the rules for this option.
    351      * @param  string $current_version       Optional. Version from which to upgrade, if not set,
    352      *                                       version specific upgrades will be disregarded.
    353      * @param  array  $all_old_option_values Optional. Only used when importing old options to have
    354      *                                       access to the real old values, in contrast to the saved ones.
    355      *
    356      * @return  array            Cleaned option.
     364     * @param array  $option_value          Old (not merged with defaults or filtered) option value to
     365     *                                      clean according to the rules for this option.
     366     * @param string $current_version       Optional. Version from which to upgrade, if not set,
     367     *                                      version specific upgrades will be disregarded.
     368     * @param array  $all_old_option_values Optional. Only used when importing old options to have
     369     *                                      access to the real old values, in contrast to the saved ones.
     370     *
     371     * @return array Cleaned option.
    357372     */
    358373    protected function clean_option( $option_value, $current_version = null, $all_old_option_values = null ) {
     
    418433     * Retrieve a taxonomy term's meta value(s).
    419434     *
    420      * @param  mixed  $term     Term to get the meta value for
    421      *                          either (string) term name, (int) term id or (object) term.
    422      * @param  string $taxonomy Name of the taxonomy to which the term is attached.
    423      * @param  string $meta     Optional. Meta value to get (without prefix).
    424      *
    425      * @return  mixed|bool    Value for the $meta if one is given, might be the default.
    426      *              If no meta is given, an array of all the meta data for the term.
    427      *              False if the term does not exist or the $meta provided is invalid.
     435     * @param mixed  $term     Term to get the meta value for
     436     *                         either (string) term name, (int) term id or (object) term.
     437     * @param string $taxonomy Name of the taxonomy to which the term is attached.
     438     * @param string $meta     Optional. Meta value to get (without prefix).
     439     *
     440     * @return mixed|bool Value for the $meta if one is given, might be the default.
     441     *                    If no meta is given, an array of all the meta data for the term.
     442     *                    False if the term does not exist or the $meta provided is invalid.
    428443     */
    429444    public static function get_term_meta( $term, $taxonomy, $meta = null ) {
  • wordpress-seo/trunk/inc/sitemaps/class-author-sitemap-provider.php

    r2009097 r2065083  
    9292        $defaults = array(
    9393            // @todo Re-enable after plugin requirements raised to WP 4.6 with the fix.
    94             // 'who'        => 'authors', Breaks meta keys, see https://core.trac.wordpress.org/ticket/36724#ticket R.
     94            // 'who'        => 'authors', Breaks meta keys, {@link https://core.trac.wordpress.org/ticket/36724#ticket} R.
    9595            'meta_key'   => '_yoast_wpseo_profile_updated',
    9696            'orderby'    => 'meta_value_num',
  • wordpress-seo/trunk/inc/sitemaps/class-post-type-sitemap-provider.php

    r2061403 r2065083  
    628628         * Do not include external URLs.
    629629         *
    630          * @see https://wordpress.org/plugins/page-links-to/ can rewrite permalinks to external URLs.
     630         * {@link https://wordpress.org/plugins/page-links-to/} can rewrite permalinks to external URLs.
    631631         */
    632632        if ( $this->get_classifier()->classify( $url['loc'] ) === WPSEO_Link::TYPE_EXTERNAL ) {
  • wordpress-seo/trunk/inc/sitemaps/class-sitemap-timezone.php

    r1931668 r2065083  
    4040     * Get the datetime object, in site's time zone, if the datetime string was valid
    4141     *
    42      * @param string $datetime_string The datetime string in UTC time zone, that needs to be converted to a DateTime object.
     42     * @param string $datetime_string The datetime string in UTC time zone, that needs
     43     *                                to be converted to a DateTime object.
    4344     *
    4445     * @return DateTime|null in site's time zone
     
    6667     * Returns the timezone string for a site, even if it's set to a UTC offset
    6768     *
    68      * Adapted from http://www.php.net/manual/en/function.timezone-name-from-abbr.php#89155
     69     * Adapted from {@link http://www.php.net/manual/en/function.timezone-name-from-abbr.php#89155}.
    6970     *
    7071     * @return string valid PHP timezone string
  • wordpress-seo/trunk/inc/sitemaps/class-sitemaps-cache-validator.php

    r2061403 r2065083  
    200200     *
    201201     * Without the type the global validator is returned.
    202      *  This can invalidate -all- keys in cache at once
    203      *
    204      * With the type parameter the validator for that specific
    205      *  type can be invalidated
     202     * This can invalidate -all- keys in cache at once.
     203     *
     204     * With the type parameter the validator for that specific type can be invalidated.
    206205     *
    207206     * @since 3.2
  • wordpress-seo/trunk/inc/sitemaps/class-sitemaps-renderer.php

    r2061403 r2065083  
    135135     * Produce final XML output with debug information.
    136136     *
    137      * @param string  $sitemap    Sitemap XML.
    138      * @param boolean $transient  Transient cache flag.
     137     * @param string  $sitemap   Sitemap XML.
     138     * @param boolean $transient Transient cache flag.
    139139     *
    140140     * @return string
     
    292292         * @api   string $output The output for the sitemap url tag.
    293293         *
    294          * @param array  $url The sitemap url array on which the output is based.
     294         * @param array $url The sitemap url array on which the output is based.
    295295         */
    296296        return apply_filters( 'wpseo_sitemap_url', $output, $url );
  • wordpress-seo/trunk/inc/sitemaps/class-taxonomy-sitemap-provider.php

    r2031427 r2065083  
    241241         * Filter to exclude the taxonomy from the XML sitemap.
    242242         *
    243          * @param boolean $exclude        Defaults to false.
    244          * @param string  $taxonomy_name  Name of the taxonomy to exclude..
     243         * @param boolean $exclude       Defaults to false.
     244         * @param string  $taxonomy_name Name of the taxonomy to exclude..
    245245         */
    246246        if ( apply_filters( 'wpseo_sitemap_exclude_taxonomy', false, $taxonomy_name ) ) {
  • wordpress-seo/trunk/inc/structured-data-blocks/class-faq-block.php

    r2009097 r2065083  
    3030     * Renders the block.
    3131     *
    32      * Because we can't save script tags in Gutenberg without sufficient user permissions, we render these server-side.
     32     * Because we can't save script tags in Gutenberg without sufficient user permissions,
     33     * we render these server-side.
    3334     *
    3435     * @param array  $attributes The attributes of the block.
     
    4445        $json_ld = $this->get_json_ld( $attributes );
    4546
    46         return '<script type="application/ld+json">' . wp_json_encode( $json_ld ) . '</script>' . $content;
     47        return '<script type="application/ld+json">' . WPSEO_Utils::format_json_encode( $json_ld ) . '</script>' . $content;
    4748    }
    4849
  • wordpress-seo/trunk/inc/structured-data-blocks/class-how-to-block.php

    r2009097 r2065083  
    3030     * Renders the block.
    3131     *
    32      * Because we can't save script tags in Gutenberg without sufficient user permissions, we render these server-side.
     32     * Because we can't save script tags in Gutenberg without sufficient user permissions,
     33     * we render these server-side.
    3334     *
    3435     * @param array  $attributes The attributes of the block.
     
    4445        $json_ld = $this->get_json_ld( $attributes );
    4546
    46         return '<script type="application/ld+json">' . wp_json_encode( $json_ld ) . '</script>' . $content;
     47        return '<script type="application/ld+json">' . WPSEO_Utils::format_json_encode( $json_ld ) . '</script>' . $content;
    4748    }
    4849
  • wordpress-seo/trunk/inc/wpseo-functions.php

    r2061403 r2065083  
    8585 *
    8686 * @param string $string The string to replace the variables in.
    87  * @param object $args   The object some of the replacement values might come from, could be a post, taxonomy or term.
     87 * @param object $args   The object some of the replacement values might come from,
     88 *                       could be a post, taxonomy or term.
    8889 * @param array  $omit   Variables that should not be replaced by this function.
    8990 *
     
    129130 * @since 1.5.4
    130131 *
    131  * @param  string $var              The name of the variable to replace, i.e. '%%var%%'
    132  *                                  - the surrounding %% are optional, name can only contain [A-Za-z0-9_-].
    133  * @param  mixed  $replace_function Function or method to call to retrieve the replacement value for the variable
    134  *                                  Uses the same format as add_filter/add_action function parameter and
    135  *                                  should *return* the replacement value. DON'T echo it.
    136  * @param  string $type             Type of variable: 'basic' or 'advanced', defaults to 'advanced'.
    137  * @param  string $help_text        Help text to be added to the help tab for this variable.
    138  *
    139  * @return bool  Whether the replacement function was succesfully registered.
     132 * @param string $var              The name of the variable to replace, i.e. '%%var%%'.
     133 *                                 Note: the surrounding %% are optional, name can only contain [A-Za-z0-9_-].
     134 * @param mixed  $replace_function Function or method to call to retrieve the replacement value for the variable.
     135 *                                 Uses the same format as add_filter/add_action function parameter and
     136 *                                 should *return* the replacement value. DON'T echo it.
     137 * @param string $type             Type of variable: 'basic' or 'advanced', defaults to 'advanced'.
     138 * @param string $help_text        Help text to be added to the help tab for this variable.
     139 *
     140 * @return bool Whether the replacement function was successfully registered.
    140141 */
    141142function wpseo_register_var_replacement( $var, $replace_function, $type = 'advanced', $help_text = '' ) {
     
    145146/**
    146147 * WPML plugin support: Set titles for custom types / taxonomies as translatable.
    147  * It adds new keys to a wpml-config.xml file for a custom post type title, metadesc, title-ptarchive and metadesc-ptarchive fields translation.
     148 *
     149 * It adds new keys to a wpml-config.xml file for a custom post type title, metadesc,
     150 * title-ptarchive and metadesc-ptarchive fields translation.
    148151 * Documentation: http://wpml.org/documentation/support/language-configuration-files/
    149152 *
  • wordpress-seo/trunk/inc/wpseo-non-ajax-functions.php

    r1954352 r2065083  
    6262 * Adds an SEO admin bar menu to the site admin, with several options.
    6363 *
    64  * If the current user is an admin he can also go straight to several settings menu's from here.
     64 * If the current user is an admin they can also go straight to several settings menus from here.
    6565 *
    6666 * @deprecated 7.9 Use WPSEO_Admin_Bar_Menu::add_menu() instead
  • wordpress-seo/trunk/languages/wordpress-seo-nl_NL.json

    r2061403 r2065083  
    1 {"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"nl"},"Content optimization: Needs improvement":["Inhoud optimalisatie: Heeft verbetering nodig"],"%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: The tekst scoort %3$s in de test wat %4$s wordt beoordeeld 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 nietvolg- als gewone uitkoppelingen 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 uitkoppelingen 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$sZinlengte%2$s: %3$s van de zinnen bevatten 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$sZinlengte%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 gebruik 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"],"Content optimization: Good SEO score":["Inhoud-optimalisatie: SEO-score goed"],"Good SEO score":["Goede SEO-score"],"Content optimization: OK SEO score":["Inhoud-optimalisatie: SEO-score voldoende"],"OK SEO score":["Redelijke SEO-score"],"Content optimization: Has feedback":["Inhoud-optimalisatie: Heeft feedback"],"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"]}}}
     1{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"nl"},"Content optimization: Needs improvement":["Inhoud optimalisatie: Heeft verbetering nodig"],"%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: The tekst scoort %3$s in de test wat %4$s wordt beoordeeld 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$sZinlengte%2$s: %3$s van de zinnen bevatten 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$sZinlengte%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 gebruik 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"],"Content optimization: Good SEO score":["Inhoud-optimalisatie: SEO-score goed"],"Good SEO score":["Goede SEO-score"],"Content optimization: OK SEO score":["Inhoud-optimalisatie: SEO-score voldoende"],"OK SEO score":["Redelijke SEO-score"],"Content optimization: Has feedback":["Inhoud-optimalisatie: Heeft feedback"],"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"]}}}
  • wordpress-seo/trunk/languages/wordpress-seo-pl_PL.json

    r2050445 r2065083  
    1 {"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);","lang":"pl"},"Content optimization: Needs improvement":[],"%1$sFlesch Reading Ease%2$s: The copy scores %3$s in the test, which is considered %4$s to read. %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.":[],"%1$sImage alt attributes%2$s: Good job!":[],"%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!":[],"%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 attributes%3$s: Images on this page have alt attributes, but you have not set your keyphrase. %2$sFix that%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 subheading%2$s: Your higher-level subheading reflects the topic of your copy. Good job!":[],"%1$sKeyphrase in subheading%3$s: %2$sUse more keyphrases or synonyms in your higher-level subheadings%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$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 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 density%2$s: The focus keyphrase was found %3$d time. This is great!":[],"%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 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$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$sKeyphrase length%3$s: %2$sSet a keyphrase in order to calculate your SEO score%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%3$s: (Part of) your keyphrase does not appear in the slug. %2$sChange that%3$s!":[],"%1$sKeyphrase in slug%2$s: Great work!":[],"%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 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 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 title%2$s: The exact match of the keyphrase appears at the beginning of the SEO title. Good job!":[],"%1$sKeyphrase distribution%2$s: Good job!":[],"%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 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 distribution%3$s: %2$sInclude your keyphrase or its synonyms in the text so that we can check keyphrase distribution%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.":[],"%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.":[],"%1$sPreviously used keyphrase%2$s: You've not used this keyphrase before, very good.":[],"%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$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!":[],"This is far below the recommended minimum of %5$d word. %3$sAdd more content%4$s.":[],"This is below the recommended minimum of %5$d word. %3$sAdd more content%4$s.":[],"%2$sText length%4$s: The text contains %1$d word.":[],"%2$sText length%3$s: The text contains %1$d word. Good job!":[],"%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$sSEO title width%3$s: %2$sPlease create an SEO title%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 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$sOutbound links%2$s: There are both nofollowed and normal outbound links on this page. Good job!":[],"%1$sOutbound links%2$s: Good job!":[],"%1$sOutbound links%3$s: All outbound links on this page are nofollowed. %2$sAdd some normal links%3$s.":[],"%1$sOutbound links%3$s: No outbound links appear in this page. %2$sAdd some%3$s!":[],"%1$sMeta description length%2$s: Well done!":[],"%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$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$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$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: 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: Keyphrase or synonym appear in the meta description. Well done!":[],"%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$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!":[],"%1$sKeyphrase length%2$s: Good job!":[],"%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$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 introduction%2$s: Well done!":[],"%1$sInternal links%2$s: There are both nofollowed and normal internal links on this page. Good job!":[],"%1$sInternal links%2$s: You have enough internal links. Good job!":[],"%1$sInternal links%3$s: The internal links in this page are all nofollowed. %2$sAdd some good internal links%3$s.":[],"%1$sInternal links%3$s: No internal links appear in this page, %2$smake sure to add some%3$s!":[],"%1$sTransition words%2$s: Well done!":[],"%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$sTransition words%2$s: None of the sentences contain transition words. %3$sUse some%2$s.":[],"%1$sNot enough content%2$s: %3$sPlease add some content to enable a good analysis%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$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$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$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$sSentence length%2$s: Great!":[],"%1$sConsecutive sentences%2$s: There is enough variety in your sentences. That's great!":[],"%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!":[],"Good job!":[],"%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.":["Przewiń, aby zobaczyć podgląd treści."],"An error occurred in the '%1$s' assessment":["Wystąpił błąd podczas wykonywania oceny \"%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 wyrazów zawiera %2$sponad %3$s sylab%4$s, czyli więcej, niż wynosi zalecane maksimum (%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 wyrazów zawiera %2$sponad %3$s sylab%4$s, czyli mniej lub tyle, ile wynosi zalecane maksimum (%5$s)."],"This is slightly below the recommended minimum of %5$d word. %3$sAdd a bit more copy%4$s.":[],"The meta description contains %1$d sentence %2$sover %3$s words%4$s. Try to shorten this sentence.":["Opis meta zawiera %1$d zdań mających %2$sponad %3$s wyrazów%4$s. Spróbuj skrócić te zdania.","Opis meta zawiera %1$d zdania mające %2$sponad %3$s wyrazów%4$s. Spróbuj skrócić te zdania.","Opis meta zawiera %1$d zdań mających %2$sponad %3$s wyrazów%4$s. Spróbuj skrócić te zdania."],"The meta description contains no sentences %1$sover %2$s words%3$s.":["Opis meta nie zawiera zdań, które mają %1$sponad %2$s wyrazów%3$s."],"Mobile preview":["Podgląd na urządzeniach mobilnych"],"Desktop preview":["Podgląd na komputerach"],"Please provide an SEO title by editing the snippet below.":["Wprowadź tytuł SEO w poniższym polu edytora wyglądu wyników wyszukiwania."],"Meta description preview:":["Podgląd opisu meta:"],"Slug preview:":["Podgląd sluga:"],"SEO title preview:":["Podgląd tytułu SEO:"],"Close snippet editor":["Zamknij edytor wyglądu podstrony w wynikach wyszukiwania"],"Slug":["Slug"],"Remove marks in the text":["Usuń znaczniki w tekście"],"Mark this result in the text":["Zaznacz ten wynik w tekście"],"Marks are disabled in current view":["Znaczniki są wyłączone w obecnym widoku"],"Content optimization: Good SEO score":["Optymalizacja treści: ocena dobra"],"Good SEO score":["Dobra ocena SEO"],"Content optimization: OK SEO score":["Optymalizacja treści: ocena wystarczająca"],"OK SEO score":["Wystarczająca ocena SEO"],"Content optimization: Has feedback":["Optymalizacja treści: posiada wyjaśnienie"],"Feedback":["Opinie"],"ok":["ok"],"Please provide a meta description by editing the snippet below.":["Wprowadź opis meta w poniższym polu edytora wyglądu wyników wyszukiwania."],"Edit snippet":["Edytuj wygląd podstrony w wynikach wyszukiwania"],"You can click on each element in the preview to jump to the Snippet Editor.":["Możesz kliknąć na dowolny element podglądu, aby przejść do edycji jego treści."],"SEO title":["Tytuł SEO"],"Needs improvement":["Wymaga poprawy"],"Good":["Dobre"],"very difficult":["bardzo trudna"],"Try to make shorter sentences, using less difficult words to improve readability":[],"difficult":["trudna"],"Try to make shorter sentences to improve readability":[],"fairly difficult":["dość trudna"],"OK":["OK"],"fairly easy":["dość łatwa"],"easy":["łatwa"],"very easy":["bardzo łatwa"],"Meta description":["Opis"],"Snippet preview":["Podgląd tej strony w wynikach wyszukiwania"]}}}
     1{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);","lang":"pl"},"Content optimization: Needs improvement":["Optymalizacja treści: Wymaga poprawy"],"%1$sFlesch Reading Ease%2$s: The copy scores %3$s in the test, which is considered %4$s to read. %5$s":["%1$sCzytelność%2$s: Treść została oceniona na %3$s w teście, co oznacza, że tekst jest %4$s do przeczytania. %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$sAtrybuty alt obrazków%5$s: Z %2$d obrazów na tej stronie, %1$d ma atrybuty alt ze słowami z fraz kluczowych lub synonimami. To trochę za dużo. %4$sUżywaj frazy kluczowej lub synonimów tylko wtedy, kiedy naprawdę pasują do obrazu%5$s."],"%1$sImage alt attributes%2$s: Good job!":["%1$sAtrybuty alt obrazków%2$s: Dobra robota!"],"%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$sAtrybuty alt obrazków%5$s: Z %2$d obrazków na tej stronie, tylko %1$d ma atrybut alt pokrywający się z tematem wpisu. %4$sDodaj frazę kluczową lub jej synonimy do tagu alt obrazków%5$s!","%3$sAtrybuty alt obrazków%5$s: Z %2$d obrazków na tej stronie, tylko %1$d mają atrybuty alt pokrywający się z tematem wpisu. %4$sDodaj frazę kluczową lub jej synonimy do tagu alt obrazków%5$s!","%3$sAtrybuty alt obrazków%5$s: Z %2$d obrazków na tej stronie, tylko %1$d ma atrybuty alt pokrywający się z tematem wpisu. %4$sDodaj frazę kluczową lub jej synonimy do tagu alt obrazków%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$sAtrybuty alt obrazków%3$s: Obrazki na tej stronie nie mają atrybutów alt pokrywających się z tematem wpisu. %2$sDodaj frazę kluczową lub jej synonimy do atrybutów alt obrazków%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$sAtrybuty alt obrazków%3$s: Obrazki na tej stronie mają atrybuty alt, ale nie została ustawiona fraza kluczowa. %2$sNapraw to%3$s!"],"%1$sKeyphrase in subheading%2$s: %3$s of your higher-level subheadings reflects the topic of your copy. Good job!":["%1$sSłowo kluczowe w nagłówku%2$s: %3$s z twoich nagłówków wyższego rzędu pokrywa się z tematem wpisu. Dobra robota!","%1$sSłowo kluczowe w nagłówku%2$s: %3$s z twoich nagłówków wyższego rzędu pokrywa się z tematem wpisu. Dobra robota!","%1$sSłowo kluczowe w nagłówku%2$s: %3$s z twoich nagłówków wyższego rzędu pokrywa się z tematem wpisu. Dobra robota!"],"%1$sKeyphrase in subheading%2$s: Your higher-level subheading reflects the topic of your copy. Good job!":["%1$sSłowo kluczowe w nagłówku%2$s: Nagłówków wyższego rzędu pokrywa się z tematem wpisu. Dobra robota!"],"%1$sKeyphrase in subheading%3$s: %2$sUse more keyphrases or synonyms in your higher-level subheadings%3$s!":["%1$sSłowo kluczowe w nagłówku%3$s:%2$sUżywaj częściej słów kluczowych lub ich synonimów z nagłówkach wyższego rzędu%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$sTytuł%3$s: Nagłówek H1 powinien być użyty tylko jako tytuł tekstu. Znajdź wszystkie nagłówki H1 w tekście i %2$s zamień je na nagłówki niższego poziomu%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$sGęstość słowa kluczowego%2$s: Słowo kluczowe nie zostało znalezione. To mniej niż zalecane minimum %3$d razy dla tekstu o tej długości. %4$sSkup się na słowie kluczowym%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$sGęstość słowa kluczowego%2$s: Słowo kluczowe zostało znalezione %5$d raz. To mniej niż zalecane minimum %3$d razy dla tekstu o tej długości. %4$sSkup się na słowie kluczowym%2$s!","%1$sGęstość słowa kluczowego%2$s: Słowo kluczowe zostało znalezione %5$d razy. To mniej niż zalecane minimum %3$d razy dla tekstu o tej długości. %4$sSkup się na słowie kluczowym%2$s!","%1$sGęstość słowa kluczowego%2$s: Słowo kluczowe zostało znalezione %5$d razy. To mniej niż zalecane minimum %3$d razy dla tekstu o tej długości. %4$sSkup się na słowie kluczowym%2$s!"],"%1$sKeyphrase density%2$s: The focus keyphrase was found %3$d time. This is great!":["%1$sGęstość słowa kluczowego%2$s: Słowo kluczowe zostało znalezione %3$d raz. Świetnie!","%1$sGęstość słowa kluczowego%2$s: Słowo kluczowe zostało znalezione %3$d razy. Świetnie!","%1$sGęstość frazy kluczowej%2$s: Fraza kluczowa została znaleziona %3$d razy. Świetnie!"],"%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$sGęstość słowa kluczowego%2$s: Słowo kluczowe zostało znalezione %5$d raz. To więcej niż zalecane maksymalne %3$d razy dla tekstu o tej długości. %4$sNie optymalizuj zbyt agresywnie%2$s!","%1$sGęstość słowa kluczowego%2$s: Słowo kluczowe zostało znalezione %5$d raz. To o wiele więcej niż zalecane maksymalne %3$d razy dla tekstu o tej długości. %4$sNie optymalizuj zbyt agresywnie%2$s!","%1$sGęstość słowa kluczowego%2$s: Słowo kluczowe zostało znalezione %5$d raz. To o wiele więcej niż zalecane maksymalne %3$d razy dla tekstu o tej długości. %4$sNie optymalizuj zbyt agresywnie%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$sGęstość słowa kluczowego%2$s: Słowo kluczowe zostało znalezione %5$d raz. To o wiele więcej niż zalecane maksymalne %3$d razy dla tekstu o tej długości. %4$sNie optymalizuj zbyt agresywnie%2$s!","%1$sGęstość słowa kluczowego%2$s: Słowo kluczowe zostało znalezione %5$d razy. To o wiele więcej niż zalecane maksymalne %3$d razy dla tekstu o tej długości. %4$sNie optymalizuj zbyt agresywnie%2$s!","%1$sGęstość słowa kluczowego%2$s: Słowo kluczowe zostało znalezione %5$d razy. To o wiele więcej niż zalecane maksymalne %3$d razy dla tekstu o tej długości. %4$sNie optymalizuj zbyt agresywnie%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$sFunktory w frazie kluczowej%3$s: Fraza kluczowa \"%4$s\" zawiera jedynie funktory. %2$sDowiedz się więcej o tworzeniu dobrych fraz kluczowych.%3$s"],"%1$sKeyphrase length%3$s: %2$sSet a keyphrase in order to calculate your SEO score%3$s.":["%1$sDługość frazy kluczowej%3$s: %2$sWpisz frazę kluczową, aby obliczyć wynik SEO %3$s."],"%1$sKeyphrase in slug%2$s: More than half of your keyphrase appears in the slug. That's great!":["%1$sFraza kluczowa w bezpośrednim odnośniku%2$s: Więcej niż połowa frazy kluczowej pojawiła się w bezpośrednim odnośniku. Świetnie!"],"%1$sKeyphrase in slug%3$s: (Part of) your keyphrase does not appear in the slug. %2$sChange that%3$s!":["%1$sFraza kluczowa w bezpośrednim odnośniku%3$s: (Część lub cała) fraza kluczowa nie pojawia się w bezpośrednim odnośniku. %2$sZmień to%3$s!"],"%1$sKeyphrase in slug%2$s: Great work!":["%1$sFraza kluczowa w bezpośrednim odnośniku%2$s: Dobra robota!"],"%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$sFraza kluczowa w tytule%3$s: Nie wszystkie słowa z frazy kluczowej \"%4$s\" pojawiły się w tytule. %2$sPostaraj się użyć wszystkich słów z frazy kluczowej w tytule%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$sFraza kluczowa w tytule%3$s: Brak dokładnego dopasowania. %2$sSpróbuj dopasować tytuł do frazy kluczowej%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$sFraza kluczowa w tytule%3$s: Fraza kluczowa występuje w tytule, ale nie na początku. %2$sSpróbuj przesunąć ją na początek%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$sFraza kluczowa w tytule%2$s: Dokładnie dopasowana fraza kluczowa występuje już na początku tytułu. Dobra robota!"],"%1$sKeyphrase distribution%2$s: Good job!":["%1$sRozkład frazy kluczowej%2$s: Dobra robota!"],"%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$sRozkład frazy kluczowej%3$s: Nierówny. Niektóre partie tekstu nie zawierają fraz kluczowych lub ich synonimów. %2$sRozłóż je równomiernie%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$sRozkład frazy kluczowej%3$s: Bardzo nierówny. Duże części tekstu nie zawierają frazy kluczowej lub jej synonimów. %2$sRozłóż je równomiernie%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$sRozkład fraz kluczowych%3$s: %2$sUwzględnij frazę kluczową i jej synonimy w tekście, aby sprawdzić jej rozkład%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$sUżyta fraza kluczowa%6$s: Słowo kluczowe zostało już użyte %1$s%2$d wcześniej%3$s. %5$sProszę nie używać słowa kluczowego więcej niż raz%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$sUżyta fraza kluczowa%5$s: Słowo kluczowe zostało już użyte %1$swcześniej%2$s. %4$sProszę nie używać słowa kluczowego więcej niż raz%5$s."],"%1$sPreviously used keyphrase%2$s: You've not used this keyphrase before, very good.":["%1$sUżyta fraza kluczowa%2$s: Słowo kluczowe nie zostało jeszcze użyte, bardzo dobrze."],"%1$sSlug stopwords%3$s: The slug for this page contains a stop word. %2$sRemove it%3$s!":["%1$s\"Słowa stop\" w bezpośrednim odnośniku%3$s: Bezpośredni odnośnik do tej strony zawiera \"słowo stop\". %2$sUsuń je%3$s!","%1$s\"Słowa stop\" w bezpośrednim odnośniku%3$s: Bezpośredni odnośnik do tej strony zawiera \"słowa stop\". %2$sUsuń je%3$s!","%1$s\"Słowa stop\" w bezpośrednim odnośniku%3$s: Bezpośredni odnośnik do tej strony zawiera \"słowa stop\". %2$sUsuń je%3$s!"],"%1$sSlug too long%3$s: the slug for this page is a bit long. %2$sShorten it%3$s!":["%1$sBezpośredni odnośnik jest za długi%3$s: bezpośredni odnośnik dla tej strony jest trochę za długi. %2$sSkróć go%3$s!"],"%1$sImage alt attributes%3$s: No images appear on this page. %2$sAdd some%3$s!":["%1$sAtrybuty alt obrazków%3$s: Brak obrazków na tej stronie. %2$sDodaj jakieś%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$sLinkowana fraza kluczowa%3$s: Linkujesz do innej strony na słowa kluczowe, które chcesz, aby obecna strona była wysoko. %2$sNie rób tego%3$s!"],"This is far below the recommended minimum of %5$d word. %3$sAdd more content%4$s.":["To dużo mniej, niż zalecane minimum %5$d słowo. %3$sDopisz więcej treści%4$s.","To dużo mniej, niż zalecane minimum %5$d słowa. %3$sDopisz więcej treści%4$s.","To dużo mniej, niż zalecane minimum %5$d słów. %3$sDopisz więcej treści%4$s."],"This is below the recommended minimum of %5$d word. %3$sAdd more content%4$s.":["To mniej, niż zalecane minimum %5$d słowo. %3$sDopisz więcej treści%4$s.","To mniej, niż zalecane minimum %5$d słowa. %3$sDopisz więcej treści%4$s.","To mniej, niż zalecane minimum %5$d słów. %3$sDopisz więcej treści%4$s."],"%2$sText length%4$s: The text contains %1$d word.":["%2$sDługość tekstu%4$s: Tekst zawiera %1$d słowo.","%2$sDługość tekstu%4$s: Tekst zawiera %1$d słowa.","%2$sDługość tekstu%4$s: Tekst zawiera %1$d słów."],"%2$sText length%3$s: The text contains %1$d word. Good job!":["%2$sDługość tekstu%3$s: Tekst zawiera %1$d słowo. Dobra robota!","%2$sDługość tekstu%3$s: Tekst zawiera %1$d słowa. Dobra robota!","%2$sDługość tekstu%3$s: Tekst zawiera %1$d słów. Dobra robota!"],"%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$sSłowo kluczowe w nagłówku%3$s: Ponad 75% z twoich nagłówków wyższego rzędu pokrywa się z tematem wpisu. To za dużo. %2$sNie optymalizuj zbyt agresywnie%3$s!"],"%1$sSEO title width%3$s: %2$sPlease create an SEO title%3$s.":["%1$sDługość tytułu SEO%3$s: %2$sProszę utworzyć tytuł 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$sDługość tytułu SEO%3$s: Tytuł SEO jest za długi. %2$sSpróbuj go skrócić%3$s."],"%1$sSEO title width%2$s: Good job!":["%1$sDługość tytułu SEO%2$s:Dobra robota!"],"%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$sDługość tytułu SEO%3$s: Tytuł SEO jest za krótki. %2$sProszę dodać warianty frazy kluczowej lub utworzyć treść z wezwaniem do działania%3$s."],"%1$sOutbound links%2$s: There are both nofollowed and normal outbound links on this page. Good job!":["%1$sWychodzące odnośniki%2$s: Na tej stronie występują wychodzące odnośniki z atrybutami \"nofollow\" i zwykłe. Dobra robota!"],"%1$sOutbound links%2$s: Good job!":["%1$sWychodzące odnośniki%2$s: Dobra robota!"],"%1$sOutbound links%3$s: All outbound links on this page are nofollowed. %2$sAdd some normal links%3$s.":["%1$sWychodzące odnośniki%3$s: Wszystkie wychodzące odnośniki na tej stronie posiadają atrybut \"nofollow\". %2$sDodaj również zwykłe linki%3$s."],"%1$sOutbound links%3$s: No outbound links appear in this page. %2$sAdd some%3$s!":["%1$sWychodzące odnośniki%3$s: Na tej stronie nie znaleziono wychodzących odnośników. %2$sDodaj jakieś%3$s!"],"%1$sMeta description length%2$s: Well done!":["%1$sDługość meta opisu%2$s: Dobra robota!"],"%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$sDługość meta opisu%3$s: Meta opis zawiera ponad %4$d znaków. Aby upewnić się, że cały meta opis będzie widoczny, %2$sskróć go%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$sDługość meta opisu%3$s: Meta opis jest za krótki (poniżej %4$d znaków). Dostępne jest jeszcze %5$d znaków. %2$sWykorzystaj je%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$sDługość meta opisu%3$s: Nie wpisano opisu meta. Wyszukiwarki użyją części wpisu jako opisu meta. %2$sUzupełnij go%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$sFraza kluczowa w opisie meta%2$s: Opis meta został wprowadzony, ale nie zawiera frazy kluczowej. %3$sPopraw to%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$sFraza kluczowa w opisie meta%2$s: Opis meta zawiera frazę kluczową %3$s razy, co stanowi przekroczenie zalecanego maksimum 2 razy. %4$sOgranicz użycie%5$s!"],"%1$sKeyphrase in meta description%2$s: Keyphrase or synonym appear in the meta description. Well done!":["%1$sFraza kluczowa w opisie meta%2$s: Fraza kluczowa lub jej synonimy  pojawiają się w opisie meta. Dobra robota!"],"%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$sDługość frazy kluczowej%5$s: Fraza kluczowa zawiera %1$d słów. To jest zdecydowanie za dużo wobec rekomendowanego  maksimum %2$d słów. %4$sSkróć frazę%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$sDługość frazy kluczowej%5$s: Fraza kluczowa zawiera %1$d słów. To jest  za dużo wobec rekomendowanego maksimum %2$d słów. %4$sSkróć frazę%5$s!"],"%1$sKeyphrase length%2$s: Good job!":["%1$sDługość frazy kluczowej%2$s: Dobra robota!"],"%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$sDługość frazy kluczowej%3$s: Na tej stronie nie ustawiono frazy kluczowej. %2$sWpisz frazę kluczową, aby obliczyć wynik 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$sFraza kluczowa we wstępie%3$s: Twoja fraza kluczowa lub jej synonimy nie pojawiają się w pierwszym paragrafie. %2$sUpewnij się, że temat wpisu jest niezwłocznie opisany%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$sFraza kluczowa we wstępie%3$s: Twoja fraza kluczowa lub jej synonimy nie pojawiają się w pierwszym paragrafie, ale nie w jednym zdaniu. %2$sPopraw to%3$s."],"%1$sKeyphrase in introduction%2$s: Well done!":["%1$sFraza kluczowa we wstępie%2$s: Dobra robota!"],"%1$sInternal links%2$s: There are both nofollowed and normal internal links on this page. Good job!":["%1$sWewnętrzne odnośniki%2$s: Na stronie znajdują się zarówno odnośniki zwykłe, jak i \"nofollow\". Dobra robota!"],"%1$sInternal links%2$s: You have enough internal links. Good job!":["%1$sWewnętrzne odnośniki%2$s: Masz wystarczającą liczbę wewnętrznych odnośników. Dobra robota!"],"%1$sInternal links%3$s: The internal links in this page are all nofollowed. %2$sAdd some good internal links%3$s.":["%1$sWewnętrzne odnośniki%3$s: Wszystkie wewnętrzne odnośniki na tej stronie mają ustawiony atrybut nofollow. %2$sDodaj inne wewnętrzne linki%3$s."],"%1$sInternal links%3$s: No internal links appear in this page, %2$smake sure to add some%3$s!":["%1$sWewnętrzne odnośniki%3$s: Na tej stronie nie ma żadnego wewnętrznego odnośnika. %2$sDodaj jakieś%3$s!"],"%1$sTransition words%2$s: Well done!":["%1$sSłowa łączące%2$s: Dobra robota!"],"%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$sSłowa łączące%2$s: Tylko %3$s zdań zawiera słowa łączące, to za mało. %4$sUżywaj ich częściej%2$s."],"%1$sTransition words%2$s: None of the sentences contain transition words. %3$sUse some%2$s.":["%1$sSłowa łączące%2$s: Żadne zdanie nie zawiera słów łączących. %3$sUżyj ich%2$s."],"%1$sNot enough content%2$s: %3$sPlease add some content to enable a good analysis%2$s.":["%1$sZa mało treści%2$s: %3$sDodaj więcej treści, aby wykonać analizę%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$sRozkład nagłówków%2$s: Nie korzystasz z nagłówków, ale tekst jest wystarczająco krótki i prawdopodobnie ich nie potrzebuje."],"%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$sRozkład podtytułów%2$s: Nie korzystasz z nagłówków, choć ten tekst jest raczej długi. %3$sSpróbuj dodać nagłówki%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$sRozkład nagłówków%2$s: %3$d sekcja tekstu jest dłuższa niż %4$d słów i nie jest podzielona żadnymi nagłówkami. %5$sDodaj nagłówki, aby poprawić czytelność%2$s.","%1$sPodział nagłówków%2$s: %3$d sekcje tekstu są dłuższe niż %4$d słów i nie są podzielone żadnymi nagłówkami. %5$sDodaj nagłówki, aby poprawić czytelność%2$s.","%1$sPodział nagłówków%2$s: %3$d sekcji tekstu jest dłuższych niż %4$d słów i nie są podzielone żadnymi nagłówkami. %5$sDodaj nagłówki, aby poprawić czytelność%2$s."],"%1$sSubheading distribution%2$s: Great job!":["%1$sRozkład nagłówków%2$s: Dobra robota!"],"%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$sDługość zdań%2$s: %3$s zdań zawiera więcej niż %4$s słów, czyli więcej niż rekomendowane maksimum %5$s zdań. %6$sSpróbuj skrócić zdania%2$s."],"%1$sSentence length%2$s: Great!":["%1$sDługość zdań%2$s: Dobra robota!"],"%1$sConsecutive sentences%2$s: There is enough variety in your sentences. That's great!":["%1$sNastępujące zdania%2$s: Zdania są wystarczająco zróżnicowane. Świetnie!"],"%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$sNastępujące zdania%2$s: Tekst zawiera %3$d następujące po sobie zdanie zaczynające się tym samym słowem. %5$sSpróbuj wprowadzić trochę różnorodności%2$s!","%1$sNastępujące zdania%2$s: Tekst zawiera %4$d przypadki, w których %3$d następujące po sobie zdania zaczyna się tym samym słowem. %5$s Spróbuj zmienić szyk wyrazów i zdań%2$s!","%1$sNastępujące zdania%2$s: Tekst zawiera %4$d przypadki, w których %3$d następujących po sobie zdań zaczyna się tym samym słowem. %5$s Spróbuj zmienić szyk wyrazów i zdań%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$sStrona bierna%2$s: %3$s zdań zawiera stronę bierną, co przekracza zalecaną maksymalną ilość %4$s. %5$sSpróbuj częściej użyć strony czynnej%2$s."],"%1$sPassive voice%2$s: You're using enough active voice. That's great!":["%1$sStrona bierna%2$s: Używasz wystarczająco często strony czynnej. Świetnie!"],"%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$sDługość akapitów%2$s: %3$d akapit zawiera więcej niż zalecane maksimum %4$d słów. %5$sSkróć ten akapit%2$s!","%1$sDługość akapitów%2$s: %3$d akapity zawierają więcej niż zalecane maksimum %4$d słów. %5$sSkróć te akapity%2$s!","%1$sDługość akapitów%2$s: %3$d akapitów zawierają więcej niż zalecane maksimum %4$d słów. %5$sSkróć te akapity%2$s!"],"%1$sParagraph length%2$s: None of the paragraphs are too long. Great job!":["%1$sDługość akapitów%2$s: Żaden z akapitów nie jest za długi. Dobra robota!"],"Good job!":["Dobra robota!"],"%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$sCzytelność%2$s: Treść została oceniona na %3$s w teście, co oznacza, że tekst jest %4$s do przeczytania. %5$s%6$s%7$s"],"Scroll to see the preview content.":["Przewiń, aby zobaczyć podgląd treści."],"An error occurred in the '%1$s' assessment":["Wystąpił błąd podczas wykonywania oceny \"%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 wyrazów zawiera %2$sponad %3$s sylab%4$s, czyli więcej, niż wynosi zalecane maksimum (%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 wyrazów zawiera %2$sponad %3$s sylab%4$s, czyli mniej lub tyle, ile wynosi zalecane maksimum (%5$s)."],"This is slightly below the recommended minimum of %5$d word. %3$sAdd a bit more copy%4$s.":["To trochę mniej, niż %2$szalecane minimum%3$s słów: %4$d. Dopisz trochę więcej treści.","To trochę mniej, niż %2$szalecane minimum%3$s słów: %4$d. Dopisz trochę więcej treści.","To trochę mniej, niż %2$szalecane minimum%3$s słów: %4$d. Dopisz trochę więcej treści."],"The meta description contains %1$d sentence %2$sover %3$s words%4$s. Try to shorten this sentence.":["Opis meta zawiera %1$d zdań mających %2$sponad %3$s wyrazów%4$s. Spróbuj skrócić te zdania.","Opis meta zawiera %1$d zdania mające %2$sponad %3$s wyrazów%4$s. Spróbuj skrócić te zdania.","Opis meta zawiera %1$d zdań mających %2$sponad %3$s wyrazów%4$s. Spróbuj skrócić te zdania."],"The meta description contains no sentences %1$sover %2$s words%3$s.":["Opis meta nie zawiera zdań, które mają %1$sponad %2$s wyrazów%3$s."],"Mobile preview":["Podgląd na urządzeniach mobilnych"],"Desktop preview":["Podgląd na komputerach"],"Please provide an SEO title by editing the snippet below.":["Wprowadź tytuł SEO w poniższym polu edytora wyglądu wyników wyszukiwania."],"Meta description preview:":["Podgląd opisu meta:"],"Slug preview:":["Podgląd sluga:"],"SEO title preview:":["Podgląd tytułu SEO:"],"Close snippet editor":["Zamknij edytor wyglądu podstrony w wynikach wyszukiwania"],"Slug":["Slug"],"Remove marks in the text":["Usuń znaczniki w tekście"],"Mark this result in the text":["Zaznacz ten wynik w tekście"],"Marks are disabled in current view":["Znaczniki są wyłączone w obecnym widoku"],"Content optimization: Good SEO score":["Optymalizacja treści: ocena dobra"],"Good SEO score":["Dobra ocena SEO"],"Content optimization: OK SEO score":["Optymalizacja treści: ocena wystarczająca"],"OK SEO score":["Wystarczająca ocena SEO"],"Content optimization: Has feedback":["Optymalizacja treści: posiada wyjaśnienie"],"Feedback":["Opinie"],"ok":["ok"],"Please provide a meta description by editing the snippet below.":["Wprowadź opis meta w poniższym polu edytora wyglądu wyników wyszukiwania."],"Edit snippet":["Edytuj wygląd podstrony w wynikach wyszukiwania"],"You can click on each element in the preview to jump to the Snippet Editor.":["Możesz kliknąć na dowolny element podglądu, aby przejść do edycji jego treści."],"SEO title":["Tytuł SEO"],"Needs improvement":["Wymaga poprawy"],"Good":["Dobre"],"very difficult":["bardzo trudna"],"Try to make shorter sentences, using less difficult words to improve readability":["Aby poprawić czytelność, spróbuj trochę skrócić zdania i używać prostszych słów"],"difficult":["trudna"],"Try to make shorter sentences to improve readability":["Aby poprawić czytelność, spróbuj trochę skrócić zdania"],"fairly difficult":["dość trudna"],"OK":["OK"],"fairly easy":["dość łatwa"],"easy":["łatwa"],"very easy":["bardzo łatwa"],"Meta description":["Opis"],"Snippet preview":["Podgląd tej strony w wynikach wyszukiwania"]}}}
  • wordpress-seo/trunk/languages/wordpress-seo-sk_SK.json

    r2061403 r2065083  
    1 {"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;","lang":"sk"},"Content optimization: Needs improvement":[],"%1$sFlesch Reading Ease%2$s: The copy scores %3$s in the test, which is considered %4$s to read. %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.":[],"%1$sImage alt attributes%2$s: Good job!":[],"%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!":[],"%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 attributes%3$s: Images on this page have alt attributes, but you have not set your keyphrase. %2$sFix that%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 subheading%2$s: Your higher-level subheading reflects the topic of your copy. Good job!":[],"%1$sKeyphrase in subheading%3$s: %2$sUse more keyphrases or synonyms in your higher-level subheadings%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$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 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 density%2$s: The focus keyphrase was found %3$d time. This is great!":[],"%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 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$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$sFunkčné slová v kľúčovej fráze%3$s: Vaša kľúčová fráza \"%4$s\" obsahuje iba funkčné slová. %2$sDozveďte sa viac čo robí dobrú kľúčovú frázu naozaj dobrou..%3$s"],"%1$sKeyphrase length%3$s: %2$sSet a keyphrase in order to calculate your SEO score%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%3$s: (Part of) your keyphrase does not appear in the slug. %2$sChange that%3$s!":[],"%1$sKeyphrase in slug%2$s: Great work!":[],"%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 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 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 title%2$s: The exact match of the keyphrase appears at the beginning of the SEO title. Good job!":[],"%1$sKeyphrase distribution%2$s: Good job!":["%1$sDistribúcia kľúčových fráz%2$s: Dobrá práca!"],"%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 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 distribution%3$s: %2$sInclude your keyphrase or its synonyms in the text so that we can check keyphrase distribution%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.":[],"%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.":[],"%1$sPreviously used keyphrase%2$s: You've not used this keyphrase before, very good.":[],"%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$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!":[],"This is far below the recommended minimum of %5$d word. %3$sAdd more content%4$s.":[],"This is below the recommended minimum of %5$d word. %3$sAdd more content%4$s.":[],"%2$sText length%4$s: The text contains %1$d word.":["%2$sDĺžka textu%4$s: Text obsahuje %1$d slovo.","%2$sDĺžka textu%4$s: Text obsahuje %1$d slová.","%2$sDĺžka textu%4$s: Text obsahuje %1$d slov."],"%2$sText length%3$s: The text contains %1$d word. Good job!":["%2$sDĺžka textu%3$s: Text obsahuje %1$d slovo. Dobrá práca!","%2$sDĺžka textu%3$s: Text obsahuje %1$d slová. Dobrá práca!","%2$sDĺžka textu%3$s: Text obsahuje %1$d slov. Dobrá práca!"],"%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$sSEO title width%3$s: %2$sPlease create an SEO title%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 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$sOutbound links%2$s: There are both nofollowed and normal outbound links on this page. Good job!":[],"%1$sOutbound links%2$s: Good job!":[],"%1$sOutbound links%3$s: All outbound links on this page are nofollowed. %2$sAdd some normal links%3$s.":[],"%1$sOutbound links%3$s: No outbound links appear in this page. %2$sAdd some%3$s!":[],"%1$sMeta description length%2$s: Well done!":["%1$sDĺžka Meta popisku%2$s: Výborná!"],"%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$sDĺžka Meta popisku%3$s: Meta popisok má viac ako %4$d znakov. Aby ste zaistili, aby sa popisok zobrazoval celý, %2$smali by ste zvážiť skrátenie dĺžky popisku%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$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$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: 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: Keyphrase or synonym appear in the meta description. Well done!":[],"%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$sDĺžka kľúčovej frázy%5$s:Kľúčová fráza sa skladá z %1$d slov. To je viac ako je odporúčaná maximálna dĺžka %2$d slov. %4$sSkráťte ju%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$sDĺžka kľúčovej frázy%5$s:Kľúčová fráza sa skladá z %1$d slov. To je viac ako je odporúčaná maximálna dĺžka %2$d slov. %4$sSkráťte ju%5$s!"],"%1$sKeyphrase length%2$s: Good job!":["%1$sDĺžka kľúčovej frázy%2$s: Dobrá práca!"],"%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$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 introduction%2$s: Well done!":[],"%1$sInternal links%2$s: There are both nofollowed and normal internal links on this page. Good job!":[],"%1$sInternal links%2$s: You have enough internal links. Good job!":[],"%1$sInternal links%3$s: The internal links in this page are all nofollowed. %2$sAdd some good internal links%3$s.":[],"%1$sInternal links%3$s: No internal links appear in this page, %2$smake sure to add some%3$s!":[],"%1$sTransition words%2$s: Well done!":[],"%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$sTransition words%2$s: None of the sentences contain transition words. %3$sUse some%2$s.":[],"%1$sNot enough content%2$s: %3$sPlease add some content to enable a good analysis%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$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$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$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$sSentence length%2$s: Great!":["%1$sDĺžka vety%2$s: Skvelé!"],"%1$sConsecutive sentences%2$s: There is enough variety in your sentences. That's great!":[],"%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!":[],"Good job!":["Skvelá práca! "],"%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.":["Prejdite na zobrazenie ukážky obsahu."],"An error occurred in the '%1$s' assessment":["V hodnotení '%1$s'  sa vyskytla chyba"],"%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 of the words contain %2$sover %3$s syllables%4$s, which is less than or equal to the recommended maximum of %5$s.":[],"This is slightly below the recommended minimum of %5$d word. %3$sAdd a bit more copy%4$s.":[],"The meta description contains %1$d sentence %2$sover %3$s words%4$s. Try to shorten this sentence.":[],"The meta description contains no sentences %1$sover %2$s words%3$s.":[],"Mobile preview":["Mobilné zobrazenie"],"Desktop preview":[],"Please provide an SEO title by editing the snippet below.":["Prosím, uveďte SEO titulok vyplnením úryvku nižšie."],"Meta description preview:":["Náhľad Meta popisu:"],"Slug preview:":["Náhľad slugu:"],"SEO title preview:":["Náhľad SEO názvu:"],"Close snippet editor":["Zatvoriť editor úryvku"],"Slug":["Slug"],"Remove marks in the text":["Odstráňte značky v texte"],"Mark this result in the text":["Označte tento výsledok v texte"],"Marks are disabled in current view":["Značky sú zakázané v aktuálnom pohľade"],"Content optimization: Good SEO score":["Optimalizácia obsahu: Dobré SEO skóre"],"Good SEO score":["Dobré SEO skóre"],"Content optimization: OK SEO score":["Optimalizácia obsahu: OK SEO skóre"],"OK SEO score":["OK SEO skóre"],"Content optimization: Has feedback":["Optimalizácia obsahu: Máte spätnú väzbu"],"Feedback":["Spätná väzba"],"ok":["dobre"],"Please provide a meta description by editing the snippet below.":["Prosím zadajte meta popis úpravou úryvku nižšie."],"Edit snippet":["Editovať úryvok"],"You can click on each element in the preview to jump to the Snippet Editor.":["Môžete kliknúť na každý prvok v náhľade a rovno ho upraviť v editore."],"SEO title":["SEO názov"],"Needs improvement":["Potrebuje vylepšenie"],"Good":["Dobré"],"very difficult":["veľmi tažké"],"Try to make shorter sentences, using less difficult words to improve readability":["Skúste tvoriť kratšie vety a používať jednoduchšie slová, aby ste zlepšili čitateľnosť"],"difficult":["tažké"],"Try to make shorter sentences to improve readability":["Skúste tvoriť kratšie vety pre zjednodušenie čítania"],"fairly difficult":["trochu tažké"],"OK":["OK"],"fairly easy":["normálne"],"easy":["ľahké"],"very easy":["veľmi ľahké"],"Meta description":["Meta popis"],"Snippet preview":{"0":"Náhľad snippetu","2":""}}}}
     1{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;","lang":"sk"},"Content optimization: Needs improvement":[],"%1$sFlesch Reading Ease%2$s: The copy scores %3$s in the test, which is considered %4$s to read. %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.":[],"%1$sImage alt attributes%2$s: Good job!":[],"%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!":[],"%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 attributes%3$s: Images on this page have alt attributes, but you have not set your keyphrase. %2$sFix that%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 subheading%2$s: Your higher-level subheading reflects the topic of your copy. Good job!":[],"%1$sKeyphrase in subheading%3$s: %2$sUse more keyphrases or synonyms in your higher-level subheadings%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$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 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 density%2$s: The focus keyphrase was found %3$d time. This is great!":[],"%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 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$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$sFunkčné slová v kľúčovej fráze%3$s: Vaša kľúčová fráza \"%4$s\" obsahuje iba funkčné slová. %2$sDozveďte sa viac čo robí dobrú kľúčovú frázu naozaj dobrou..%3$s"],"%1$sKeyphrase length%3$s: %2$sSet a keyphrase in order to calculate your SEO score%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%3$s: (Part of) your keyphrase does not appear in the slug. %2$sChange that%3$s!":[],"%1$sKeyphrase in slug%2$s: Great work!":[],"%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 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 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 title%2$s: The exact match of the keyphrase appears at the beginning of the SEO title. Good job!":[],"%1$sKeyphrase distribution%2$s: Good job!":["%1$sDistribúcia kľúčových fráz%2$s: Dobrá práca!"],"%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 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 distribution%3$s: %2$sInclude your keyphrase or its synonyms in the text so that we can check keyphrase distribution%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.":[],"%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.":[],"%1$sPreviously used keyphrase%2$s: You've not used this keyphrase before, very good.":[],"%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$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!":[],"This is far below the recommended minimum of %5$d word. %3$sAdd more content%4$s.":[],"This is below the recommended minimum of %5$d word. %3$sAdd more content%4$s.":[],"%2$sText length%4$s: The text contains %1$d word.":["%2$sDĺžka textu%4$s: Text obsahuje %1$d slovo.","%2$sDĺžka textu%4$s: Text obsahuje %1$d slová.","%2$sDĺžka textu%4$s: Text obsahuje %1$d slov."],"%2$sText length%3$s: The text contains %1$d word. Good job!":["%2$sDĺžka textu%3$s: Text obsahuje %1$d slovo. Dobrá práca!","%2$sDĺžka textu%3$s: Text obsahuje %1$d slová. Dobrá práca!","%2$sDĺžka textu%3$s: Text obsahuje %1$d slov. Dobrá práca!"],"%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$sSEO title width%3$s: %2$sPlease create an SEO title%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 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$sOutbound links%2$s: There are both nofollowed and normal outbound links on this page. Good job!":[],"%1$sOutbound links%2$s: Good job!":["%1$sOdchádzajúce odkazy%2$s: Dobrá práca!"],"%1$sOutbound links%3$s: All outbound links on this page are nofollowed. %2$sAdd some normal links%3$s.":[],"%1$sOutbound links%3$s: No outbound links appear in this page. %2$sAdd some%3$s!":[],"%1$sMeta description length%2$s: Well done!":["%1$sDĺžka Meta popisku%2$s: Výborná!"],"%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$sDĺžka Meta popisku%3$s: Meta popisok má viac ako %4$d znakov. Aby ste zaistili, aby sa popisok zobrazoval celý, %2$smali by ste zvážiť skrátenie dĺžky popisku%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$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$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: 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: Keyphrase or synonym appear in the meta description. Well done!":[],"%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$sDĺžka kľúčovej frázy%5$s:Kľúčová fráza sa skladá z %1$d slov. To je viac ako je odporúčaná maximálna dĺžka %2$d slov. %4$sSkráťte ju%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$sDĺžka kľúčovej frázy%5$s:Kľúčová fráza sa skladá z %1$d slov. To je viac ako je odporúčaná maximálna dĺžka %2$d slov. %4$sSkráťte ju%5$s!"],"%1$sKeyphrase length%2$s: Good job!":["%1$sDĺžka kľúčovej frázy%2$s: Dobrá práca!"],"%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$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 introduction%2$s: Well done!":[],"%1$sInternal links%2$s: There are both nofollowed and normal internal links on this page. Good job!":[],"%1$sInternal links%2$s: You have enough internal links. Good job!":[],"%1$sInternal links%3$s: The internal links in this page are all nofollowed. %2$sAdd some good internal links%3$s.":[],"%1$sInternal links%3$s: No internal links appear in this page, %2$smake sure to add some%3$s!":[],"%1$sTransition words%2$s: Well done!":[],"%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$sTransition words%2$s: None of the sentences contain transition words. %3$sUse some%2$s.":[],"%1$sNot enough content%2$s: %3$sPlease add some content to enable a good analysis%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$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$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$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$sSentence length%2$s: Great!":["%1$sDĺžka vety%2$s: Skvelé!"],"%1$sConsecutive sentences%2$s: There is enough variety in your sentences. That's great!":[],"%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!":[],"Good job!":["Skvelá práca! "],"%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.":["Prejdite na zobrazenie ukážky obsahu."],"An error occurred in the '%1$s' assessment":["V hodnotení '%1$s'  sa vyskytla chyba"],"%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 of the words contain %2$sover %3$s syllables%4$s, which is less than or equal to the recommended maximum of %5$s.":[],"This is slightly below the recommended minimum of %5$d word. %3$sAdd a bit more copy%4$s.":[],"The meta description contains %1$d sentence %2$sover %3$s words%4$s. Try to shorten this sentence.":[],"The meta description contains no sentences %1$sover %2$s words%3$s.":[],"Mobile preview":["Mobilné zobrazenie"],"Desktop preview":[],"Please provide an SEO title by editing the snippet below.":["Prosím, uveďte SEO titulok vyplnením úryvku nižšie."],"Meta description preview:":["Náhľad Meta popisu:"],"Slug preview:":["Náhľad slugu:"],"SEO title preview:":["Náhľad SEO názvu:"],"Close snippet editor":["Zatvoriť editor úryvku"],"Slug":["Slug"],"Remove marks in the text":["Odstráňte značky v texte"],"Mark this result in the text":["Označte tento výsledok v texte"],"Marks are disabled in current view":["Značky sú zakázané v aktuálnom pohľade"],"Content optimization: Good SEO score":["Optimalizácia obsahu: Dobré SEO skóre"],"Good SEO score":["Dobré SEO skóre"],"Content optimization: OK SEO score":["Optimalizácia obsahu: OK SEO skóre"],"OK SEO score":["OK SEO skóre"],"Content optimization: Has feedback":["Optimalizácia obsahu: Máte spätnú väzbu"],"Feedback":["Spätná väzba"],"ok":["dobre"],"Please provide a meta description by editing the snippet below.":["Prosím zadajte meta popis úpravou úryvku nižšie."],"Edit snippet":["Editovať úryvok"],"You can click on each element in the preview to jump to the Snippet Editor.":["Môžete kliknúť na každý prvok v náhľade a rovno ho upraviť v editore."],"SEO title":["SEO názov"],"Needs improvement":["Potrebuje vylepšenie"],"Good":["Dobré"],"very difficult":["veľmi tažké"],"Try to make shorter sentences, using less difficult words to improve readability":["Skúste tvoriť kratšie vety a používať jednoduchšie slová, aby ste zlepšili čitateľnosť"],"difficult":["tažké"],"Try to make shorter sentences to improve readability":["Skúste tvoriť kratšie vety pre zjednodušenie čítania"],"fairly difficult":["trochu tažké"],"OK":["OK"],"fairly easy":["normálne"],"easy":["ľahké"],"very easy":["veľmi ľahké"],"Meta description":["Meta popis"],"Snippet preview":{"0":"Náhľad snippetu","2":""}}}}
  • wordpress-seo/trunk/languages/wordpress-seojs-bg_BG.json

    r2050445 r2065083  
    1 {"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"bg"},"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":[],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":["Знаете ли, че %s  анализира също различните формуляри на думата във Вашата ключова фраза, като множество и минали времена?"],"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":[],"Describe the duration of the instruction:":[],"Optional. Customize how you want to describe the duration of the instruction":[],"%s, %s and %s":[],"%s and %s":[],"%d minute":[],"%d hour":[],"%d day":[],"Enter a step title":[],"Optional. This can give you better control over the styling of the steps.":[],"CSS class(es) to apply to the steps":[],"minutes":[],"hours":[],"days":[],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":[],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":[],"Copy error":[],"An error occurred loading the %s primary taxonomy picker.":[],"Time needed:":[],"Move question down":[],"Move question up":[],"Insert question":[],"Delete question":[],"Enter the answer to the question":[],"Enter a question":[],"Add question":[],"Frequently Asked Questions":[],"Great news: you can, with %s!":[],"Select the primary %s":[],"Move step down":["Преместване стъпка надолу"],"Move step up":["Преместване стъпка нагоре"],"Insert step":["Вмъкване на стъпка"],"Delete step":["Изтриване на стъпка"],"Add image":["Добавяне на изображение"],"Enter a step description":[],"Enter a description":["Въвеждане на описание"],"Unordered list":["Неподреден списък"],"Showing step items as an ordered list.":[],"Showing step items as an unordered list":[],"Add step":["Добавяне на стъпка"],"Delete total time":["Изтриване на общото време"],"Add total time":["Добавяне на общото време"],"How to":["Как да"],"How-to":["Как да"],"Snippet Preview":["Визуализация на откъса"],"Analysis results":[],"Enter a focus keyphrase to calculate the SEO score":[],"Learn more about Cornerstone Content.":["Научете повече за Фундаменталните публикации (cornerstone content)"],"Cornerstone content should be the most important and extensive articles on your site.":[],"Add synonyms":["Добавете синоними"],"Would you like to add keyphrase synonyms?":[],"Current year":["Текуща година"],"Page":["Страница"],"Tagline":["Слоган"],"Modify your meta description by editing it right here":["Променете вашето мета описание, като го редактирате от тук"],"ID":["ID"],"Separator":["Разделител"],"Search phrase":["Фраза за търсене"],"Term description":["Термин за описание"],"Tag description":["Описание на етикет"],"Category description":["Описание на категория"],"Primary category":["Основна категория"],"Category":["Категория"],"Excerpt only":["Само откъс"],"Excerpt":["Откъс"],"Site title":["Заглавие за уеб сайта"],"Parent title":["Заглавие на родителска категория"],"Date":["Дата"],"Other benefits of %s for you:":["Други ползи от %s за вас:"],"Cornerstone content":["Ключово съдържание"],"24/7 support":["Поддръжка 24/7"],"Great news: you can, with %1$s!":["Да, можете с %1$s!"],"1 year free updates and upgrades included!":["Включва безплатни актуализации за период от 1 година!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sПреглед за публикуване в социалните мрежи%2$s: Facebook и Twitter"],"Superfast internal links suggestions":["Свръх-бързи предложения за вътрешни връзки"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sКрай на неработещите връзки%2$s: лесен мениджър на пренасочванията"],"No ads!":["Без реклами!"],"Please provide a meta description by editing the snippet below.":["Въведете съдържание на полето meta description в редактора на извадката отдолу."],"Readability analysis":["Анализ на четимостта"],"Open":["Отваряне"],"Title":["Заглавие"],"Creating redirects is a %s feature":["Създаването на пренасочвания е функция на %s"],"Close":["Затваряне"],"Snippet preview":["Преглед на извадката"],"FAQ":["Често задавани въпроси"],"Settings":["Настройки"]}}}
     1{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"bg"},"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":[],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":["Знаете ли, че %s  анализира също различните формуляри на думата във Вашата ключова фраза, като множество и минали времена?"],"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":[],"Describe the duration of the instruction:":[],"Optional. Customize how you want to describe the duration of the instruction":[],"%s, %s and %s":[],"%s and %s":[],"%d minute":[],"%d hour":[],"%d day":[],"Enter a step title":[],"Optional. This can give you better control over the styling of the steps.":[],"CSS class(es) to apply to the steps":[],"minutes":[],"hours":[],"days":[],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":[],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":[],"Copy error":[],"An error occurred loading the %s primary taxonomy picker.":[],"Time needed:":[],"Move question down":[],"Move question up":[],"Insert question":[],"Delete question":[],"Enter the answer to the question":[],"Enter a question":[],"Add question":[],"Frequently Asked Questions":[],"Great news: you can, with %s!":[],"Select the primary %s":[],"Mark as cornerstone content":["Маркиране като Фундаментална публикация (cornerstone content)"],"Move step down":["Преместване стъпка надолу"],"Move step up":["Преместване стъпка нагоре"],"Insert step":["Вмъкване на стъпка"],"Delete step":["Изтриване на стъпка"],"Add image":["Добавяне на изображение"],"Enter a step description":[],"Enter a description":["Въвеждане на описание"],"Unordered list":["Неподреден списък"],"Showing step items as an ordered list.":[],"Showing step items as an unordered list":[],"Add step":["Добавяне на стъпка"],"Delete total time":["Изтриване на общото време"],"Add total time":["Добавяне на общото време"],"How to":["Как да"],"How-to":["Как да"],"Snippet Preview":["Визуализация на откъса"],"Analysis results":[],"Enter a focus keyphrase to calculate the SEO score":[],"Learn more about Cornerstone Content.":["Научете повече за Фундаменталните публикации (cornerstone content)"],"Cornerstone content should be the most important and extensive articles on your site.":[],"Add synonyms":["Добавете синоними"],"Would you like to add keyphrase synonyms?":[],"Current year":["Текуща година"],"Page":["Страница"],"Tagline":["Слоган"],"Modify your meta description by editing it right here":["Променете вашето мета описание, като го редактирате от тук"],"ID":["ID"],"Separator":["Разделител"],"Search phrase":["Фраза за търсене"],"Term description":["Термин за описание"],"Tag description":["Описание на етикет"],"Category description":["Описание на категория"],"Primary category":["Основна категория"],"Category":["Категория"],"Excerpt only":["Само откъс"],"Excerpt":["Откъс"],"Site title":["Заглавие за уеб сайта"],"Parent title":["Заглавие на родителска категория"],"Date":["Дата"],"Other benefits of %s for you:":["Други ползи от %s за вас:"],"Cornerstone content":["Ключово съдържание"],"24/7 support":["Поддръжка 24/7"],"Great news: you can, with %1$s!":["Да, можете с %1$s!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sПреглед за публикуване в социалните мрежи%2$s: Facebook и Twitter"],"Superfast internal links suggestions":["Свръх-бързи предложения за вътрешни връзки"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sКрай на неработещите връзки%2$s: лесен мениджър на пренасочванията"],"No ads!":["Без реклами!"],"Please provide a meta description by editing the snippet below.":["Въведете съдържание на полето meta description в редактора на извадката отдолу."],"The name of the person":["Името на човека"],"Readability analysis":["Анализ на четимостта"],"Open":["Отваряне"],"Title":["Заглавие"],"Creating redirects is a %s feature":["Създаването на пренасочвания е функция на %s"],"Close":["Затваряне"],"Snippet preview":["Преглед на извадката"],"FAQ":["Често задавани въпроси"],"Settings":["Настройки"]}}}
  • wordpress-seo/trunk/languages/wordpress-seojs-ca.json

    r2050445 r2065083  
    1 {"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"ca"},"New step added":[],"New question added":[],"To be able to create a redirect and fix this issue, you need %1$s. ":["Per poder crear una redirecció i corregir aquest problema, necessiteu %1$s. "],"You can buy the plugin, including one year of support and updates, on %1$s.":["Podeu comprar l'extensió, incloent un any de suport i actualitzacions, a %1$s."],"Free":["Gratuït"],"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 triant la frase clau perfecta"],"Would you like to add a related keyphrase?":["Voleu afegir una frase clau relacionada?"],"Go %s!":["Vés a %s!"],"Rank better with synonyms & related keyphrases":["Aconseguiu un millor posicionament amb sinònims i frases clau relacionades."],"Add related keyphrase":["Afegeix una frase clau relacionada"],"Get %s":["Obtè el %s"],"Focus keyphrase":["Frase clau objectiu"],"Learn more about the readability analysis":["Obteniu més informació sobre l'anàlisi de lectura."],"Describe the duration of the instruction:":["Descriviu la durada de la instrucció:"],"Optional. Customize how you want to describe the duration of the instruction":["Opcional. Personalitzeu com voleu descriure la durada de la instrucció"],"%s, %s and %s":["%s, %s i %s"],"%s and %s":["%s i %s"],"%d minute":["%d minut","%d minuts"],"%d hour":["%d hora","%d hores"],"%d day":["%d dia","%d dies"],"Enter a step title":["Introduïu un títol per al pas"],"Optional. This can give you better control over the styling of the steps.":["Opcional. Això us pot donar un millor control sobre el disseny dels pasos."],"CSS class(es) to apply to the steps":["Classes CSS per aplicar als pasos"],"minutes":["minuts"],"hours":["hores"],"days":["dies"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":[],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":[],"Copy error":["Error al text"],"An error occurred loading the %s primary taxonomy picker.":["S'ha produït un error en la càrrega del selector %s de la taxonomia primària."],"Time needed:":["Temps necessari:"],"Move question down":["Mou la pregunta avall"],"Move question up":["Mou la pregunta amunt"],"Insert question":["Insereix una pregunta"],"Delete question":["Esborra una pregunta"],"Enter the answer to the question":["Introdueix la resposta a la pregunta"],"Enter a question":["Introdueix una pregunta"],"Add question":["Afegeix una pregunta."],"Frequently Asked Questions":["Preguntes Freqüents"],"Great news: you can, with %s!":["Bones notícies: podeu, amb %s!"],"Select the primary %s":["Selecciona la %s primària"],"Move step down":["Mou avall"],"Move step up":["Mou amunt"],"Insert step":["Insereix un pas"],"Delete step":["Elimina el pas"],"Add image":["Afegeix una imatge"],"Enter a step description":["Introdueix una descripció del pas"],"Enter a description":["Afegeix una descripció"],"Unordered list":["Llista desordenada"],"Showing step items as an ordered list.":["Es mostren els elements dels passos com una llista ordenada"],"Showing step items as an unordered list":["Es mostren els elements dels passos com una llista desordenada"],"Add step":["Afegeix un pas"],"Delete total time":["Esborra el temps total"],"Add total time":["Afegeix el temps total"],"How to":["Com fer "],"How-to":["Com fer"],"Snippet Preview":["Vista prèvia de fragment"],"Analysis results":["Resultats de l'anàlisi:"],"Enter a focus keyphrase to calculate the SEO score":["Introduïu una paraula clau per calcular la puntuació SEO "],"Learn more about Cornerstone Content.":["Apreneu més sobre el contingut essencial."],"Cornerstone content should be the most important and extensive articles on your site.":[],"Add synonyms":["Afegiu sinònims"],"Would you like to add keyphrase synonyms?":["Us agradaria afegir sinònims de frase clau?"],"Current year":["Any actual"],"Page":["Pàgina"],"Tagline":["Descripció curta"],"Modify your meta description by editing it right here":["Modifiqueu la descripció meta editant-la aquí."],"ID":["ID"],"Separator":["Separador"],"Search phrase":["Frase de cerca"],"Term description":["Descripció del terme"],"Tag description":["Descripció de l'etiqueta"],"Category description":["Descripció de la categoria"],"Primary category":["Categoria principal"],"Category":["Categoria"],"Excerpt only":["Només l'extracte"],"Excerpt":["Extracte"],"Site title":["Títol del lloc"],"Parent title":["Títol del pare"],"Date":["Data"],"Other benefits of %s for you:":["Altres avantatges de %s:"],"Cornerstone content":["Contingut fonamental"],"24/7 support":["Servei d'atenció 24/7"],"Great news: you can, with %1$s!":["Bones notícies: podeu, amb %1$s!"],"1 year free updates and upgrades included!":["1 any d'actualitzacions gratuïtes incloses!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sPrevisualitzacions de xarxes socials%2$s: Facebook & Twitter"],"Superfast internal links suggestions":["Suggeriments interns super ràpids"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sNi un enllaç mort més%2$s: gestor de redireccions senzill"],"No ads!":["Sense anuncis!"],"Please provide a meta description by editing the snippet below.":["Afegiu una descripció meta editant la previsualització inferior."],"Readability analysis":["Anàlisi de llegibilitat"],"Open":["Obre"],"Title":["Títol"],"Creating redirects is a %s feature":["La creació de redireccions és una característica del %s"],"Close":["Tanca"],"Snippet preview":["Vista prèvia del resum"],"FAQ":["PMF"],"Settings":["Paràmetres"]}}}
     1{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"ca"},"New step added":[],"New question added":[],"To be able to create a redirect and fix this issue, you need %1$s. ":["Per poder crear una redirecció i corregir aquest problema, necessiteu %1$s. "],"You can buy the plugin, including one year of support and updates, on %1$s.":["Podeu comprar l'extensió, incloent un any de suport i actualitzacions, a %1$s."],"Free":["Gratuït"],"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 triant la frase clau perfecta"],"Would you like to add a related keyphrase?":["Voleu afegir una frase clau relacionada?"],"Go %s!":["Vés a %s!"],"Rank better with synonyms & related keyphrases":["Aconseguiu un millor posicionament amb sinònims i frases clau relacionades."],"Add related keyphrase":["Afegeix una frase clau relacionada"],"Get %s":["Obtè el %s"],"Focus keyphrase":["Frase clau objectiu"],"Learn more about the readability analysis":["Obteniu més informació sobre l'anàlisi de lectura."],"Describe the duration of the instruction:":["Descriviu la durada de la instrucció:"],"Optional. Customize how you want to describe the duration of the instruction":["Opcional. Personalitzeu com voleu descriure la durada de la instrucció"],"%s, %s and %s":["%s, %s i %s"],"%s and %s":["%s i %s"],"%d minute":["%d minut","%d minuts"],"%d hour":["%d hora","%d hores"],"%d day":["%d dia","%d dies"],"Enter a step title":["Introduïu un títol per al pas"],"Optional. This can give you better control over the styling of the steps.":["Opcional. Això us pot donar un millor control sobre el disseny dels pasos."],"CSS class(es) to apply to the steps":["Classes CSS per aplicar als pasos"],"minutes":["minuts"],"hours":["hores"],"days":["dies"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":[],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":[],"Copy error":["Error al text"],"An error occurred loading the %s primary taxonomy picker.":["S'ha produït un error en la càrrega del selector %s de la taxonomia primària."],"Time needed:":["Temps necessari:"],"Move question down":["Mou la pregunta avall"],"Move question up":["Mou la pregunta amunt"],"Insert question":["Insereix una pregunta"],"Delete question":["Esborra una pregunta"],"Enter the answer to the question":["Introdueix la resposta a la pregunta"],"Enter a question":["Introdueix una pregunta"],"Add question":["Afegeix una pregunta."],"Frequently Asked Questions":["Preguntes Freqüents"],"Great news: you can, with %s!":["Bones notícies: podeu, amb %s!"],"Select the primary %s":["Selecciona la %s primària"],"Mark as cornerstone content":["Marca com a contingut essencial"],"Move step down":["Mou avall"],"Move step up":["Mou amunt"],"Insert step":["Insereix un pas"],"Delete step":["Elimina el pas"],"Add image":["Afegeix una imatge"],"Enter a step description":["Introdueix una descripció del pas"],"Enter a description":["Afegeix una descripció"],"Unordered list":["Llista desordenada"],"Showing step items as an ordered list.":["Es mostren els elements dels passos com una llista ordenada"],"Showing step items as an unordered list":["Es mostren els elements dels passos com una llista desordenada"],"Add step":["Afegeix un pas"],"Delete total time":["Esborra el temps total"],"Add total time":["Afegeix el temps total"],"How to":["Com fer "],"How-to":["Com fer"],"Snippet Preview":["Vista prèvia de fragment"],"Analysis results":["Resultats de l'anàlisi:"],"Enter a focus keyphrase to calculate the SEO score":["Introduïu una paraula clau per calcular la puntuació SEO "],"Learn more about Cornerstone Content.":["Apreneu més sobre el contingut essencial."],"Cornerstone content should be the most important and extensive articles on your site.":[],"Add synonyms":["Afegiu sinònims"],"Would you like to add keyphrase synonyms?":["Us agradaria afegir sinònims de frase clau?"],"Current year":["Any actual"],"Page":["Pàgina"],"Tagline":["Descripció curta"],"Modify your meta description by editing it right here":["Modifiqueu la descripció meta editant-la aquí."],"ID":["ID"],"Separator":["Separador"],"Search phrase":["Frase de cerca"],"Term description":["Descripció del terme"],"Tag description":["Descripció de l'etiqueta"],"Category description":["Descripció de la categoria"],"Primary category":["Categoria principal"],"Category":["Categoria"],"Excerpt only":["Només l'extracte"],"Excerpt":["Extracte"],"Site title":["Títol del lloc"],"Parent title":["Títol del pare"],"Date":["Data"],"Other benefits of %s for you:":["Altres avantatges de %s:"],"Cornerstone content":["Contingut fonamental"],"24/7 support":["Servei d'atenció 24/7"],"Great news: you can, with %1$s!":["Bones notícies: podeu, amb %1$s!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sPrevisualitzacions de xarxes socials%2$s: Facebook & Twitter"],"Superfast internal links suggestions":["Suggeriments interns super ràpids"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sNi un enllaç mort més%2$s: gestor de redireccions senzill"],"No ads!":["Sense anuncis!"],"Please provide a meta description by editing the snippet below.":["Afegiu una descripció meta editant la previsualització inferior."],"The name of the person":["El nom de la persona"],"Readability analysis":["Anàlisi de llegibilitat"],"Open":["Obre"],"Title":["Títol"],"Creating redirects is a %s feature":["La creació de redireccions és una característica del %s"],"Close":["Tanca"],"Snippet preview":["Vista prèvia del resum"],"FAQ":["PMF"],"Settings":["Paràmetres"]}}}
  • wordpress-seo/trunk/languages/wordpress-seojs-cs_CZ.json

    r2050445 r2065083  
    1 {"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;","lang":"cs_CZ"},"New step added":["Nový krok přidán"],"New question added":["Přidána nová otázka "],"To be able to create a redirect and fix this issue, you need %1$s. ":["Abyste mohli vytvořit přesměrování a opravit tuto záležitost, potřebujete %1$s. "],"You can buy the plugin, including one year of support and updates, on %1$s.":["Plugin včetně 1 roku podpory a updatů můžete zakoupit zde %1$s."],"Free":["Zdarma"],"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":["Pomoct s výběrem perfektní klíčové fráze"],"Would you like to add a related keyphrase?":["Chcete přidat související klíčovou frázi?"],"Go %s!":["Do toho %s!"],"Rank better with synonyms & related keyphrases":[],"Add related keyphrase":["Přidejte souvisící klíčové slovo/frázi"],"Get %s":["Získej %s"],"Focus keyphrase":["Hlavní klíčové slovo"],"Learn more about the readability analysis":["Zjistěte více o analýze čitelnosti."],"Describe the duration of the instruction:":["Popište trvání instrukce:"],"Optional. Customize how you want to describe the duration of the instruction":["Volitelné. Určete, jak chcete popsat trvání instrukce."],"%s, %s and %s":["%s, %s a %s"],"%s and %s":["%s a %s"],"%d minute":["%d minuta","%d minuty","%d minut"],"%d hour":["%d hodina","%d hodiny","%d hodin"],"%d day":["%d den","%d dny","%d dnů"],"Enter a step title":["Uveďte název kroku"],"Optional. This can give you better control over the styling of the steps.":["Volitelné. To vám umožní lépe kontrolovat stylizování kroků."],"CSS class(es) to apply to the steps":["CSS třída (třídy) pro uplatnění ke krokům"],"minutes":["minuty"],"hours":["hodiny"],"days":["dny"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":[],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":[],"Copy error":["Chyba kopírování"],"An error occurred loading the %s primary taxonomy picker.":[],"Time needed:":["Potřebný čas:"],"Move question down":["Vložte otázku dolů"],"Move question up":["Vložte otázku nahoru"],"Insert question":["Vložit otázku"],"Delete question":["Smazat otázku"],"Enter the answer to the question":["Zadejte odpověď na otázku"],"Enter a question":["Zadejte otázku"],"Add question":["Přidat otázku"],"Frequently Asked Questions":["Často kladené otázky"],"Great news: you can, with %s!":["Skvělá zpráva: můžeš s %s!"],"Select the primary %s":["Vyberte základní %s"],"Move step down":["Posunout krok dolů"],"Move step up":["Posunout krok nahoru"],"Insert step":["Vložit krok"],"Delete step":["Smazat krok"],"Add image":["Přidat obrázek"],"Enter a step description":["Zadejte krok popisu"],"Enter a description":["Zadejte popis"],"Unordered list":["Neuspořádaný seznam"],"Showing step items as an ordered list.":["Zobrazuji položky kroků jako uspořádaný seznam."],"Showing step items as an unordered list":["Zobrazuji položky kroků jako neuspořádaný seznam"],"Add step":["Přidejte krok"],"Delete total time":["Smazat celkový čas"],"Add total time":["Zadejte celkový čas"],"How to":["Jak provést"],"How-to":["Jak provést"],"Snippet Preview":["Ukázka popisku"],"Analysis results":["Výsledky analýzy"],"Enter a focus keyphrase to calculate the SEO score":["Zadejte klíčové slovo pro výpočet skóre SEO"],"Learn more about Cornerstone Content.":["Další informace o klíčovém obsahu."],"Cornerstone content should be the most important and extensive articles on your site.":["Klíčový obsah by měly být ty nejdůležitější a nejobsáhlejší články na webu."],"Add synonyms":["+ Přidejte synonymum"],"Would you like to add keyphrase synonyms?":["Chcete přidat synonyma klíčového slova?"],"Current year":["Aktuální rok"],"Page":["Stránka"],"Tagline":["Řádek tagů"],"Modify your meta description by editing it right here":["Upravte popis meta tím, že jej upravíte přímo zde"],"ID":["ID"],"Separator":["Oddělovač"],"Search phrase":["Hledat frázi"],"Term description":["Popis termínu"],"Tag description":["Popis štítku"],"Category description":["Popis rubriky"],"Primary category":["Hlavní rubriky"],"Category":["Rubrika"],"Excerpt only":["Pouze výpisek"],"Excerpt":["Výpisek"],"Site title":["Název webu"],"Parent title":["Nadřazený název"],"Date":["Datum"],"Other benefits of %s for you:":["Další výhody %s :"],"Cornerstone content":["Klíčový obsah"],"24/7 support":["Podpora 24/7"],"Great news: you can, with %1$s!":["Skvělá zpráva: můžete, s %1$s!"],"1 year free updates and upgrades included!":["1 rok zdarma všech update a upgrade"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sNáhled sociálních médií%2$s: Facebook & Twitter"],"Superfast internal links suggestions":["Velmi rychlé návrhy interních odkazů"],"%1$sNo more dead links%2$s: easy redirect manager":["Už žádné dead linky: easy redirect manažer"],"No ads!":["Bez reklam!"],"Please provide a meta description by editing the snippet below.":["Vložte prosím meta popis upravením náhledu níže. "],"Readability analysis":[],"Open":["Otevřít"],"Title":["Název"],"Creating redirects is a %s feature":["Vytváření přesměrování je funkce %s"],"Close":["Zavřít"],"Snippet preview":["Zobrazit úryvek"],"FAQ":["Často kladené dotazy"],"Settings":["Nastavení"]}}}
     1{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;","lang":"cs_CZ"},"New step added":["Nový krok přidán"],"New question added":["Přidána nová otázka "],"To be able to create a redirect and fix this issue, you need %1$s. ":["Abyste mohli vytvořit přesměrování a opravit tuto záležitost, potřebujete %1$s. "],"You can buy the plugin, including one year of support and updates, on %1$s.":["Plugin včetně 1 roku podpory a updatů můžete zakoupit zde %1$s."],"Free":["Zdarma"],"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":["Pomoct s výběrem perfektní klíčové fráze"],"Would you like to add a related keyphrase?":["Chcete přidat související klíčovou frázi?"],"Go %s!":["Do toho %s!"],"Rank better with synonyms & related keyphrases":[],"Add related keyphrase":["Přidejte souvisící klíčové slovo/frázi"],"Get %s":["Získej %s"],"Focus keyphrase":["Hlavní klíčové slovo"],"Learn more about the readability analysis":["Zjistěte více o analýze čitelnosti."],"Describe the duration of the instruction:":["Popište trvání instrukce:"],"Optional. Customize how you want to describe the duration of the instruction":["Volitelné. Určete, jak chcete popsat trvání instrukce."],"%s, %s and %s":["%s, %s a %s"],"%s and %s":["%s a %s"],"%d minute":["%d minuta","%d minuty","%d minut"],"%d hour":["%d hodina","%d hodiny","%d hodin"],"%d day":["%d den","%d dny","%d dnů"],"Enter a step title":["Uveďte název kroku"],"Optional. This can give you better control over the styling of the steps.":["Volitelné. To vám umožní lépe kontrolovat stylizování kroků."],"CSS class(es) to apply to the steps":["CSS třída (třídy) pro uplatnění ke krokům"],"minutes":["minuty"],"hours":["hodiny"],"days":["dny"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":[],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":[],"Copy error":["Chyba kopírování"],"An error occurred loading the %s primary taxonomy picker.":[],"Time needed:":["Potřebný čas:"],"Move question down":["Vložte otázku dolů"],"Move question up":["Vložte otázku nahoru"],"Insert question":["Vložit otázku"],"Delete question":["Smazat otázku"],"Enter the answer to the question":["Zadejte odpověď na otázku"],"Enter a question":["Zadejte otázku"],"Add question":["Přidat otázku"],"Frequently Asked Questions":["Často kladené otázky"],"Great news: you can, with %s!":["Skvělá zpráva: můžeš s %s!"],"Select the primary %s":["Vyberte základní %s"],"Mark as cornerstone content":["Označit jako klíčový obsah"],"Move step down":["Posunout krok dolů"],"Move step up":["Posunout krok nahoru"],"Insert step":["Vložit krok"],"Delete step":["Smazat krok"],"Add image":["Přidat obrázek"],"Enter a step description":["Zadejte krok popisu"],"Enter a description":["Zadejte popis"],"Unordered list":["Neuspořádaný seznam"],"Showing step items as an ordered list.":["Zobrazuji položky kroků jako uspořádaný seznam."],"Showing step items as an unordered list":["Zobrazuji položky kroků jako neuspořádaný seznam"],"Add step":["Přidejte krok"],"Delete total time":["Smazat celkový čas"],"Add total time":["Zadejte celkový čas"],"How to":["Jak provést"],"How-to":["Jak provést"],"Snippet Preview":["Ukázka popisku"],"Analysis results":["Výsledky analýzy"],"Enter a focus keyphrase to calculate the SEO score":["Zadejte klíčové slovo pro výpočet skóre SEO"],"Learn more about Cornerstone Content.":["Další informace o klíčovém obsahu."],"Cornerstone content should be the most important and extensive articles on your site.":["Klíčový obsah by měly být ty nejdůležitější a nejobsáhlejší články na webu."],"Add synonyms":["+ Přidejte synonymum"],"Would you like to add keyphrase synonyms?":["Chcete přidat synonyma klíčového slova?"],"Current year":["Aktuální rok"],"Page":["Stránka"],"Tagline":["Řádek tagů"],"Modify your meta description by editing it right here":["Upravte popis meta tím, že jej upravíte přímo zde"],"ID":["ID"],"Separator":["Oddělovač"],"Search phrase":["Hledat frázi"],"Term description":["Popis termínu"],"Tag description":["Popis štítku"],"Category description":["Popis rubriky"],"Primary category":["Hlavní rubriky"],"Category":["Rubrika"],"Excerpt only":["Pouze výpisek"],"Excerpt":["Výpisek"],"Site title":["Název webu"],"Parent title":["Nadřazený název"],"Date":["Datum"],"Other benefits of %s for you:":["Další výhody %s :"],"Cornerstone content":["Klíčový obsah"],"24/7 support":["Podpora 24/7"],"Great news: you can, with %1$s!":["Skvělá zpráva: můžete, s %1$s!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sNáhled sociálních médií%2$s: Facebook & Twitter"],"Superfast internal links suggestions":["Velmi rychlé návrhy interních odkazů"],"%1$sNo more dead links%2$s: easy redirect manager":["Už žádné dead linky: easy redirect manažer"],"No ads!":["Bez reklam!"],"Please provide a meta description by editing the snippet below.":["Vložte prosím meta popis upravením náhledu níže. "],"The name of the person":["Jméno osoby"],"Readability analysis":[],"Open":["Otevřít"],"Title":["Název"],"Creating redirects is a %s feature":["Vytváření přesměrování je funkce %s"],"Close":["Zavřít"],"Snippet preview":["Zobrazit úryvek"],"FAQ":["Často kladené dotazy"],"Settings":["Nastavení"]}}}
  • wordpress-seo/trunk/languages/wordpress-seojs-da_DK.json

    r2062118 r2065083  
    1 {"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"da_DK"},"New step added":["Nyt trin tilføjet"],"New question added":["Nyt spørgsmål tilføjet"],"To be able to create a redirect and fix this issue, you need %1$s. ":["For at kunne oprette en viderestilling og udbedre problemet skal du bruge %1$s. "],"You can buy the plugin, including one year of support and updates, on %1$s.":["Du kan købe plugin'et inklusiv et års support og opdateringer på %1$s."],"Free":["Gratis"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":["Vidste du, at %s også analyserer de forskellige ordformer i dine søgefrase, som fx flertalsformer og datidsformer?"],"Help on choosing the perfect focus keyphrase":["Hjælp til at finde den perfekte søgefrase"],"Would you like to add a related keyphrase?":["Ønsker du at tilføje en relateret søgefrase?"],"Go %s!":["Start %s!"],"Rank better with synonyms & related keyphrases":["Opnå bedre placering med synonymer og relaterede søgefraser"],"Add related keyphrase":["Tilføj relateret søgefrase"],"Get %s":["Få %s"],"Focus keyphrase":["Fokus-søgeordsfrase"],"Learn more about the readability analysis":["Lær mere om læsbarhedsanalyse."],"Describe the duration of the instruction:":["Beskriv instruktionens varighed:"],"Optional. Customize how you want to describe the duration of the instruction":["Valgfrit. Tilpas, hvordan du vil beskrive varigheden af instruktionen"],"%s, %s and %s":["%s, %s og %s"],"%s and %s":["%s og %s"],"%d minute":["%d minut","%d minutter"],"%d hour":["%d time","%d timer"],"%d day":["%d dag","%d dage"],"Enter a step title":["Indtast titel for dette trin"],"Optional. This can give you better control over the styling of the steps.":["Valgfrit. Dette kan give dig bedre kontrol over trinenes udseende."],"CSS class(es) to apply to the steps":["CSS klasse(r) at anvende på trinnene"],"minutes":["minutter"],"hours":["timer"],"days":["dage"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":["Opret en vejledning på en SEO-venlig måde. Du kan kun bruge en How-to blok pr. Indlæg."],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":["Skriv dine ofte stillede spørgsmål på en SEO-venlig måde. Du kan kun bruge en FAQ-blok pr. Indlæg."],"Copy error":["Kopieringsfejl"],"An error occurred loading the %s primary taxonomy picker.":["Der opstod en fejl under indlæsningen af %s primære klassificeringsvælger."],"Time needed:":["Tidsforbrug:"],"Move question down":["Flyt spørgsmål ned"],"Move question up":["Flyt spørgsmål op"],"Insert question":["Indsæt spørgsmål"],"Delete question":["Slet spørgsmål"],"Enter the answer to the question":["Skriv svaret til spørgsmålet"],"Enter a question":["Skriv et spørgsmål"],"Add question":["Tilføj spørgsmål"],"Frequently Asked Questions":["Ofte stillede spørgsmål"],"Great news: you can, with %s!":["Gode nyheder: du kan med %s!"],"Select the primary %s":["Vælg den primære %s"],"Move step down":["Flyt et trin ned"],"Move step up":["Flyt et trin op"],"Insert step":["Indsæt trin"],"Delete step":["Slet trin"],"Add image":["Tilføj billede"],"Enter a step description":["Indtast trinbeskrivelse"],"Enter a description":["Indtast en beskrivelse"],"Unordered list":["Usorteret liste"],"Showing step items as an ordered list.":["Vis trinelementer som en sorteret liste."],"Showing step items as an unordered list":["Vis trinelementer som en usorteret liste"],"Add step":["Tilføj trin"],"Delete total time":["Slet tid i alt"],"Add total time":["Tilføj tid i alt"],"How to":["Hvordan"],"How-to":["Hvordan"],"Snippet Preview":["Snippetpreview"],"Analysis results":["Analyseresultat:"],"Enter a focus keyphrase to calculate the SEO score":["Indtast et fokussøgeord for at beregne SEO-score"],"Learn more about Cornerstone Content.":["Lær mere om hjørnestensindhold."],"Cornerstone content should be the most important and extensive articles on your site.":["Hjørnestensindhold bør være de vigtigste og længste artikler på dit site."],"Add synonyms":["Tilføj synonymer"],"Would you like to add keyphrase synonyms?":["Vil du gerne tilføje søgeordssynonymer?"],"Current year":["Dette år"],"Page":["Side"],"Tagline":["Tagline"],"Modify your meta description by editing it right here":["Redigér din meta-beskrivelse ved at redigere den lige her"],"ID":["ID"],"Separator":[" Separator"],"Search phrase":["Søgefrase"],"Term description":["Termbeskrivelse"],"Tag description":["Tagbeskrivelse"],"Category description":["Kategoribeskrivelse"],"Primary category":["Primær kategori"],"Category":["Kategori"],"Excerpt only":["Kun uddrag"],"Excerpt":["Uddrag"],"Site title":["Sitetitel"],"Parent title":["Forældertitel"],"Date":["Dato"],"Other benefits of %s for you:":["Andre fordele, %s giver dig:"],"Cornerstone content":["Hjørnestensindhold"],"24/7 support":["24/7 support"],"Great news: you can, with %1$s!":["Godt nyt: du kan, med %1$s!"],"1 year free updates and upgrades included!":["Inkluderer gratis opdateringer og opgraderinger i et år!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sSociale medier forhåndsvisning%2$s: Facebook & Twitter"],"Superfast internal links suggestions":["Lynhurtige forslag til interne links"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sIkke flere døde links%2$s: Viderestillings-manager, som er nem at bruge"],"No ads!":["Ingen annoncer!"],"Please provide a meta description by editing the snippet below.":["Tilføj venligst en meta-beskrivelse ved at redigere uddraget i snippeteditoren nedenfor."],"Readability analysis":["Læsbarhedsanalyse"],"Open":["Åbn"],"Title":["Titel"],"Creating redirects is a %s feature":["Oprettelse af viderestillinger er en funktion i %s"],"Close":["Luk"],"Snippet preview":["Forhåndsvisning af snippet"],"FAQ":["FAQ"],"Settings":["Indstillinger"]}}}
     1{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"da_DK"},"New step added":["Nyt trin tilføjet"],"New question added":["Nyt spørgsmål tilføjet"],"To be able to create a redirect and fix this issue, you need %1$s. ":["For at kunne oprette en viderestilling og udbedre problemet skal du bruge %1$s. "],"You can buy the plugin, including one year of support and updates, on %1$s.":["Du kan købe plugin'et inklusiv et års support og opdateringer på %1$s."],"Free":["Gratis"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":["Vidste du, at %s også analyserer de forskellige ordformer i dine søgefrase, som fx flertalsformer og datidsformer?"],"Help on choosing the perfect focus keyphrase":["Hjælp til at finde den perfekte søgefrase"],"Would you like to add a related keyphrase?":["Ønsker du at tilføje en relateret søgefrase?"],"Go %s!":["Start %s!"],"Rank better with synonyms & related keyphrases":["Opnå bedre placering med synonymer og relaterede søgefraser"],"Add related keyphrase":["Tilføj relateret søgefrase"],"Get %s":["Få %s"],"Focus keyphrase":["Fokus-søgeordsfrase"],"Learn more about the readability analysis":["Lær mere om læsbarhedsanalyse."],"Describe the duration of the instruction:":["Beskriv instruktionens varighed:"],"Optional. Customize how you want to describe the duration of the instruction":["Valgfrit. Tilpas, hvordan du vil beskrive varigheden af instruktionen"],"%s, %s and %s":["%s, %s og %s"],"%s and %s":["%s og %s"],"%d minute":["%d minut","%d minutter"],"%d hour":["%d time","%d timer"],"%d day":["%d dag","%d dage"],"Enter a step title":["Indtast titel for dette trin"],"Optional. This can give you better control over the styling of the steps.":["Valgfrit. Dette kan give dig bedre kontrol over trinenes udseende."],"CSS class(es) to apply to the steps":["CSS klasse(r) at anvende på trinnene"],"minutes":["minutter"],"hours":["timer"],"days":["dage"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":["Opret en vejledning på en SEO-venlig måde. Du kan kun bruge en How-to blok pr. Indlæg."],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":["Skriv dine ofte stillede spørgsmål på en SEO-venlig måde. Du kan kun bruge en FAQ-blok pr. Indlæg."],"Copy error":["Kopieringsfejl"],"An error occurred loading the %s primary taxonomy picker.":["Der opstod en fejl under indlæsningen af %s primære klassificeringsvælger."],"Time needed:":["Tidsforbrug:"],"Move question down":["Flyt spørgsmål ned"],"Move question up":["Flyt spørgsmål op"],"Insert question":["Indsæt spørgsmål"],"Delete question":["Slet spørgsmål"],"Enter the answer to the question":["Skriv svaret til spørgsmålet"],"Enter a question":["Skriv et spørgsmål"],"Add question":["Tilføj spørgsmål"],"Frequently Asked Questions":["Ofte stillede spørgsmål"],"Great news: you can, with %s!":["Gode nyheder: du kan med %s!"],"Select the primary %s":["Vælg den primære %s"],"Mark as cornerstone content":["Markér som hjørnestensindhold"],"Move step down":["Flyt et trin ned"],"Move step up":["Flyt et trin op"],"Insert step":["Indsæt trin"],"Delete step":["Slet trin"],"Add image":["Tilføj billede"],"Enter a step description":["Indtast trinbeskrivelse"],"Enter a description":["Indtast en beskrivelse"],"Unordered list":["Usorteret liste"],"Showing step items as an ordered list.":["Vis trinelementer som en sorteret liste."],"Showing step items as an unordered list":["Vis trinelementer som en usorteret liste"],"Add step":["Tilføj trin"],"Delete total time":["Slet tid i alt"],"Add total time":["Tilføj tid i alt"],"How to":["Hvordan"],"How-to":["Hvordan"],"Snippet Preview":["Snippetpreview"],"Analysis results":["Analyseresultat:"],"Enter a focus keyphrase to calculate the SEO score":["Indtast et fokussøgeord for at beregne SEO-score"],"Learn more about Cornerstone Content.":["Lær mere om hjørnestensindhold."],"Cornerstone content should be the most important and extensive articles on your site.":["Hjørnestensindhold bør være de vigtigste og længste artikler på dit site."],"Add synonyms":["Tilføj synonymer"],"Would you like to add keyphrase synonyms?":["Vil du gerne tilføje søgeordssynonymer?"],"Current year":["Dette år"],"Page":["Side"],"Tagline":["Tagline"],"Modify your meta description by editing it right here":["Redigér din meta-beskrivelse ved at redigere den lige her"],"ID":["ID"],"Separator":[" Separator"],"Search phrase":["Søgefrase"],"Term description":["Termbeskrivelse"],"Tag description":["Tagbeskrivelse"],"Category description":["Kategoribeskrivelse"],"Primary category":["Primær kategori"],"Category":["Kategori"],"Excerpt only":["Kun uddrag"],"Excerpt":["Uddrag"],"Site title":["Sitetitel"],"Parent title":["Forældertitel"],"Date":["Dato"],"Other benefits of %s for you:":["Andre fordele, %s giver dig:"],"Cornerstone content":["Hjørnestensindhold"],"24/7 support":["24/7 support"],"Great news: you can, with %1$s!":["Godt nyt: du kan, med %1$s!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sSociale medier forhåndsvisning%2$s: Facebook & Twitter"],"Superfast internal links suggestions":["Lynhurtige forslag til interne links"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sIkke flere døde links%2$s: Viderestillings-manager, som er nem at bruge"],"No ads!":["Ingen annoncer!"],"Please provide a meta description by editing the snippet below.":["Tilføj venligst en meta-beskrivelse ved at redigere uddraget i snippeteditoren nedenfor."],"The name of the person":["Personens navn"],"Readability analysis":["Læsbarhedsanalyse"],"Open":["Åbn"],"Title":["Titel"],"Creating redirects is a %s feature":["Oprettelse af viderestillinger er en funktion i %s"],"Close":["Luk"],"Snippet preview":["Forhåndsvisning af snippet"],"FAQ":["FAQ"],"Settings":["Indstillinger"]}}}
  • wordpress-seo/trunk/languages/wordpress-seojs-de_CH.json

    r2050445 r2065083  
    1 {"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"de_CH"},"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":[],"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":[],"Describe the duration of the instruction:":[],"Optional. Customize how you want to describe the duration of the instruction":[],"%s, %s and %s":[],"%s and %s":[],"%d minute":[],"%d hour":[],"%d day":[],"Enter a step title":[],"Optional. This can give you better control over the styling of the steps.":[],"CSS class(es) to apply to the steps":[],"minutes":[],"hours":[],"days":[],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":[],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":[],"Copy error":[],"An error occurred loading the %s primary taxonomy picker.":[],"Time needed:":[],"Move question down":[],"Move question up":[],"Insert question":[],"Delete question":[],"Enter the answer to the question":[],"Enter a question":[],"Add question":[],"Frequently Asked Questions":[],"Great news: you can, with %s!":[],"Select the primary %s":[],"Move step down":[],"Move step up":[],"Insert step":[],"Delete step":[],"Add image":[],"Enter a step description":[],"Enter a description":[],"Unordered list":[],"Showing step items as an ordered list.":[],"Showing step items as an unordered list":[],"Add step":[],"Delete total time":[],"Add total time":[],"How to":[],"How-to":[],"Snippet Preview":[],"Analysis results":[],"Enter a focus keyphrase to calculate the SEO score":[],"Learn more about Cornerstone Content.":[],"Cornerstone content should be the most important and extensive articles on your site.":[],"Add synonyms":[],"Would you like to add keyphrase synonyms?":[],"Current year":["Aktuelles Jahr"],"Page":["Seite"],"Tagline":[],"Modify your meta description by editing it right here":[],"ID":["ID"],"Separator":["Trenner"],"Search phrase":["Suchbegriff"],"Term description":[],"Tag description":[],"Category description":[],"Primary category":[],"Category":["Kategorie"],"Excerpt only":[],"Excerpt":["Textauszug"],"Site title":[],"Parent title":[],"Date":["Datum"],"Other benefits of %s for you:":["Andere Vorteile von %s für dich:"],"Cornerstone content":["Cornerstone Inhalt"],"24/7 support":["24/7 Support"],"Great news: you can, with %1$s!":["Großartige Neuigkeit: Du kannst es, mit %1$s!"],"1 year free updates and upgrades included!":["1 Jahr kostenfreie Updates und Upgrades inbegriffen!"],"%1$sSocial media preview%2$s: Facebook & Twitter":[],"Superfast internal links suggestions":["Superschnelle interne Verlinkungsvorschläge"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sKeine verwaisten Links mehr%2$s: Einfacher Redirect-Manager"],"No ads!":["Keine Werbung!"],"Please provide a meta description by editing the snippet below.":["Bitte lege eine Meta-Beschreibung fest, indem du den Code-Schnipsel bearbeitest."],"Readability analysis":["Lesbarkeits-Analyse"],"Open":["Offen"],"Title":["Titel"],"Creating redirects is a %s feature":["Das Erstellen von Weiterleitungen ist ein Feature von %s."],"Close":["Schließen"],"Snippet preview":["Snippet Vorschau"],"FAQ":["FAQ"],"Settings":["Einstellungen"]}}}
     1{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"de_CH"},"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":[],"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":[],"Describe the duration of the instruction:":[],"Optional. Customize how you want to describe the duration of the instruction":[],"%s, %s and %s":[],"%s and %s":[],"%d minute":[],"%d hour":[],"%d day":[],"Enter a step title":[],"Optional. This can give you better control over the styling of the steps.":[],"CSS class(es) to apply to the steps":[],"minutes":[],"hours":[],"days":[],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":[],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":[],"Copy error":[],"An error occurred loading the %s primary taxonomy picker.":[],"Time needed:":[],"Move question down":[],"Move question up":[],"Insert question":[],"Delete question":[],"Enter the answer to the question":[],"Enter a question":[],"Add question":[],"Frequently Asked Questions":[],"Great news: you can, with %s!":[],"Select the primary %s":[],"Mark as cornerstone content":[],"Move step down":[],"Move step up":[],"Insert step":[],"Delete step":[],"Add image":[],"Enter a step description":[],"Enter a description":[],"Unordered list":[],"Showing step items as an ordered list.":[],"Showing step items as an unordered list":[],"Add step":[],"Delete total time":[],"Add total time":[],"How to":[],"How-to":[],"Snippet Preview":[],"Analysis results":[],"Enter a focus keyphrase to calculate the SEO score":[],"Learn more about Cornerstone Content.":[],"Cornerstone content should be the most important and extensive articles on your site.":[],"Add synonyms":[],"Would you like to add keyphrase synonyms?":[],"Current year":["Aktuelles Jahr"],"Page":["Seite"],"Tagline":[],"Modify your meta description by editing it right here":[],"ID":["ID"],"Separator":["Trenner"],"Search phrase":["Suchbegriff"],"Term description":[],"Tag description":[],"Category description":[],"Primary category":[],"Category":["Kategorie"],"Excerpt only":[],"Excerpt":["Textauszug"],"Site title":[],"Parent title":[],"Date":["Datum"],"Other benefits of %s for you:":["Andere Vorteile von %s für dich:"],"Cornerstone content":["Cornerstone Inhalt"],"24/7 support":["24/7 Support"],"Great news: you can, with %1$s!":["Großartige Neuigkeit: Du kannst es, mit %1$s!"],"%1$sSocial media preview%2$s: Facebook & Twitter":[],"Superfast internal links suggestions":["Superschnelle interne Verlinkungsvorschläge"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sKeine verwaisten Links mehr%2$s: Einfacher Redirect-Manager"],"No ads!":["Keine Werbung!"],"Please provide a meta description by editing the snippet below.":["Bitte lege eine Meta-Beschreibung fest, indem du den Code-Schnipsel bearbeitest."],"The name of the person":["Der Name der Person"],"Readability analysis":["Lesbarkeits-Analyse"],"Open":["Offen"],"Title":["Titel"],"Creating redirects is a %s feature":["Das Erstellen von Weiterleitungen ist ein Feature von %s."],"Close":["Schließen"],"Snippet preview":["Snippet Vorschau"],"FAQ":["FAQ"],"Settings":["Einstellungen"]}}}
  • wordpress-seo/trunk/languages/wordpress-seojs-de_DE.json

    r2061403 r2065083  
    1 {"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"New step added":["Neuer Schritt hinzugefügt"],"New question added":["Neue Frage hinzugefügt"],"To be able to create a redirect and fix this issue, you need %1$s. ":["Um eine Weiterleitung zu erstellen und dieses Problem zu lösen, benötigst du %1$s. "],"You can buy the plugin, including one year of support and updates, on %1$s.":["Du kannst das Plugin inklusive einem Jahr Support und Updates hier kaufen: %1$s."],"Free":["Kostenlos"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":["Wusstest du schon, dass %s auch Plural- oder Zeitformen deiner Keyphrase analysiert?"],"Help on choosing the perfect focus keyphrase":[],"Would you like to add a related keyphrase?":["Möchtest du eine verwandte Keyphrase hinzufügen?"],"Go %s!":["Start %s!"],"Rank better with synonyms & related keyphrases":["Ranke besser mit Synonymen & verwandten Keyphrasen."],"Add related keyphrase":["Ähnliches Keyword hinzufügen"],"Get %s":["Erhalte %s"],"Focus keyphrase":["Fokus-Keyphrase"],"Learn more about the readability analysis":["Lerne mehr über die Lesbarkeitsanalyse"],"Describe the duration of the instruction:":["Beschreibe die Dauer der Anleitung:"],"Optional. Customize how you want to describe the duration of the instruction":[],"%s, %s and %s":["%s, %s und %s"],"%s and %s":["%s und %s"],"%d minute":["%d Minute","%d Minuten"],"%d hour":["%d Stunde","%d Stunden"],"%d day":["%d Tag","%d Tage"],"Enter a step title":[],"Optional. This can give you better control over the styling of the steps.":[],"CSS class(es) to apply to the steps":[],"minutes":["Minuten"],"hours":["Stunden"],"days":["Tage"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":[],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":[],"Copy error":["Fehler kopieren"],"An error occurred loading the %s primary taxonomy picker.":[],"Time needed:":["Benötigte Zeit:"],"Move question down":["Frage nach unten verschieben"],"Move question up":["Frage nach oben verschieben"],"Insert question":["Frage hinzufügen"],"Delete question":["Frage löschen"],"Enter the answer to the question":["Antwort auf die Frage eingeben"],"Enter a question":["Gib eine Frage ein"],"Add question":["Frage hinzufügen"],"Frequently Asked Questions":["Häufig gestellte Fragen (FAQ)"],"Great news: you can, with %s!":["Tolle Neuigkeiten: Du kannst es, mit %s!"],"Select the primary %s":["Wähle die primären %s"],"Move step down":["Schritt nach unten verschieben"],"Move step up":["Schritt nach oben verschieben"],"Insert step":["Schritt einfügen"],"Delete step":["Schritt löschen"],"Add image":["Bild hinzufügen"],"Enter a step description":["Gib eine Beschreibung für den Schritt ein"],"Enter a description":["Gib eine Beschreibung ein"],"Unordered list":["Unsortierte Liste"],"Showing step items as an ordered list.":["Schritt-Elemente als geordnete Liste anzeigen."],"Showing step items as an unordered list":["Schritt-Elemente als ungeordnete Liste anzeigen"],"Add step":["Schritt hinzufügen"],"Delete total time":["Gesamtzeit löschen"],"Add total time":["Gesamtzeit hinzufügen"],"How to":["Anleitung"],"How-to":["Anleitung"],"Snippet Preview":["Vorschau des Snippets"],"Analysis results":["Analyse-Ergebnisse"],"Enter a focus keyphrase to calculate the SEO score":["Gib ein Fokus-Keyword ein, um den SEO-Wert zu berechnen"],"Learn more about Cornerstone Content.":["Erfahre mehr über Cornerstone-Inhalte."],"Cornerstone content should be the most important and extensive articles on your site.":["Cornerstone-Inhalte sollten die wichtigsten und umfassendsten Artikel deiner Seite sein."],"Add synonyms":["Synonyme hinzufügen"],"Would you like to add keyphrase synonyms?":["Möchtest du Keyphrase-Synonyme hinzufügen?"],"Current year":["Aktuelles Jahr"],"Page":["Seite"],"Tagline":["Untertitel"],"Modify your meta description by editing it right here":["Bearbeite direkt hier deine Meta-Beschreibung "],"ID":["ID"],"Separator":["Trennzeichen"],"Search phrase":["Suchwort"],"Term description":["Begriffsbeschreibung"],"Tag description":["Schlagwortbeschreibung"],"Category description":["Kategoriebeschreibung"],"Primary category":["Primäre Kategorie"],"Category":["Kategorie"],"Excerpt only":["Nur Auszug"],"Excerpt":["Textauszug"],"Site title":["Titel der Website"],"Parent title":["Titel der übergeordneten Seite"],"Date":["Datum"],"Other benefits of %s for you:":["Andere Vorteile von %s für dich:"],"Cornerstone content":["Cornerstone-Inhalt"],"24/7 support":["24/7 Support"],"Great news: you can, with %1$s!":["Großartige Neuigkeit: Du kannst es, mit %1$s!"],"1 year free updates and upgrades included!":["1 Jahr kostenfreie Updates und Upgrades inbegriffen!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sSocial Media Vorschau%2$s: Facebook & Twitter"],"Superfast internal links suggestions":["Superschnelle interne Verlinkungsvorschläge"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sKeine verwaisten Links mehr%2$s: Einfacher Redirect-Manager"],"No ads!":["Keine Werbung!"],"Please provide a meta description by editing the snippet below.":["Bitte lege eine Meta-Beschreibung fest, indem du den Code-Schnipsel bearbeitest."],"Readability analysis":["Lesbarkeits-Analyse"],"Open":["Offen"],"Title":["Titel"],"Creating redirects is a %s feature":["Das Erstellen von Weiterleitungen ist ein Feature von %s."],"Close":["Schließen"],"Snippet preview":["Snippet Vorschau"],"FAQ":["FAQ"],"Settings":["Einstellungen"]}}}
     1{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"New step added":["Neuer Schritt hinzugefügt"],"New question added":["Neue Frage hinzugefügt"],"To be able to create a redirect and fix this issue, you need %1$s. ":["Um eine Weiterleitung zu erstellen und dieses Problem zu lösen, benötigst du %1$s. "],"You can buy the plugin, including one year of support and updates, on %1$s.":["Du kannst das Plugin inklusive einem Jahr Support und Updates hier kaufen: %1$s."],"Free":["Kostenlos"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":["Wusstest du schon, dass %s auch Plural- oder Zeitformen deiner Keyphrase analysiert?"],"Help on choosing the perfect focus keyphrase":[],"Would you like to add a related keyphrase?":["Möchtest du eine verwandte Keyphrase hinzufügen?"],"Go %s!":["Start %s!"],"Rank better with synonyms & related keyphrases":["Ranke besser mit Synonymen & verwandten Keyphrasen."],"Add related keyphrase":["Ähnliches Keyword hinzufügen"],"Get %s":["Erhalte %s"],"Focus keyphrase":["Fokus-Keyphrase"],"Learn more about the readability analysis":["Lerne mehr über die Lesbarkeitsanalyse"],"Describe the duration of the instruction:":["Beschreibe die Dauer der Anleitung:"],"Optional. Customize how you want to describe the duration of the instruction":[],"%s, %s and %s":["%s, %s und %s"],"%s and %s":["%s und %s"],"%d minute":["%d Minute","%d Minuten"],"%d hour":["%d Stunde","%d Stunden"],"%d day":["%d Tag","%d Tage"],"Enter a step title":[],"Optional. This can give you better control over the styling of the steps.":[],"CSS class(es) to apply to the steps":[],"minutes":["Minuten"],"hours":["Stunden"],"days":["Tage"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":[],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":[],"Copy error":["Fehler kopieren"],"An error occurred loading the %s primary taxonomy picker.":[],"Time needed:":["Benötigte Zeit:"],"Move question down":["Frage nach unten verschieben"],"Move question up":["Frage nach oben verschieben"],"Insert question":["Frage hinzufügen"],"Delete question":["Frage löschen"],"Enter the answer to the question":["Antwort auf die Frage eingeben"],"Enter a question":["Gib eine Frage ein"],"Add question":["Frage hinzufügen"],"Frequently Asked Questions":["Häufig gestellte Fragen (FAQ)"],"Great news: you can, with %s!":["Tolle Neuigkeiten: Du kannst es, mit %s!"],"Select the primary %s":["Wähle die primären %s"],"Mark as cornerstone content":["Als Cornerstone-Inhalt markieren"],"Move step down":["Schritt nach unten verschieben"],"Move step up":["Schritt nach oben verschieben"],"Insert step":["Schritt einfügen"],"Delete step":["Schritt löschen"],"Add image":["Bild hinzufügen"],"Enter a step description":["Gib eine Beschreibung für den Schritt ein"],"Enter a description":["Gib eine Beschreibung ein"],"Unordered list":["Unsortierte Liste"],"Showing step items as an ordered list.":["Schritt-Elemente als geordnete Liste anzeigen."],"Showing step items as an unordered list":["Schritt-Elemente als ungeordnete Liste anzeigen"],"Add step":["Schritt hinzufügen"],"Delete total time":["Gesamtzeit löschen"],"Add total time":["Gesamtzeit hinzufügen"],"How to":["Anleitung"],"How-to":["Anleitung"],"Snippet Preview":["Vorschau des Snippets"],"Analysis results":["Analyse-Ergebnisse"],"Enter a focus keyphrase to calculate the SEO score":["Gib ein Fokus-Keyword ein, um den SEO-Wert zu berechnen"],"Learn more about Cornerstone Content.":["Erfahre mehr über Cornerstone-Inhalte."],"Cornerstone content should be the most important and extensive articles on your site.":["Cornerstone-Inhalte sollten die wichtigsten und umfassendsten Artikel deiner Seite sein."],"Add synonyms":["Synonyme hinzufügen"],"Would you like to add keyphrase synonyms?":["Möchtest du Keyphrase-Synonyme hinzufügen?"],"Current year":["Aktuelles Jahr"],"Page":["Seite"],"Tagline":["Untertitel"],"Modify your meta description by editing it right here":["Bearbeite direkt hier deine Meta-Beschreibung "],"ID":["ID"],"Separator":["Trennzeichen"],"Search phrase":["Suchwort"],"Term description":["Begriffsbeschreibung"],"Tag description":["Schlagwortbeschreibung"],"Category description":["Kategoriebeschreibung"],"Primary category":["Primäre Kategorie"],"Category":["Kategorie"],"Excerpt only":["Nur Auszug"],"Excerpt":["Textauszug"],"Site title":["Titel der Website"],"Parent title":["Titel der übergeordneten Seite"],"Date":["Datum"],"Other benefits of %s for you:":["Andere Vorteile von %s für dich:"],"Cornerstone content":["Cornerstone-Inhalt"],"24/7 support":["24/7 Support"],"Great news: you can, with %1$s!":["Großartige Neuigkeit: Du kannst es, mit %1$s!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sSocial Media Vorschau%2$s: Facebook & Twitter"],"Superfast internal links suggestions":["Superschnelle interne Verlinkungsvorschläge"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sKeine verwaisten Links mehr%2$s: Einfacher Redirect-Manager"],"No ads!":["Keine Werbung!"],"Please provide a meta description by editing the snippet below.":["Bitte lege eine Meta-Beschreibung fest, indem du den Code-Schnipsel bearbeitest."],"The name of the person":["Der Name der Person"],"Readability analysis":["Lesbarkeits-Analyse"],"Open":["Offen"],"Title":["Titel"],"Creating redirects is a %s feature":["Das Erstellen von Weiterleitungen ist ein Feature von %s."],"Close":["Schließen"],"Snippet preview":["Snippet Vorschau"],"FAQ":["FAQ"],"Settings":["Einstellungen"]}}}
  • wordpress-seo/trunk/languages/wordpress-seojs-el.json

    r2050445 r2065083  
    1 {"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"el_GR"},"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":["Δωρεάν"],"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!":["Πήγαινε %s!"],"Rank better with synonyms & related keyphrases":["Βαθμολογήστε καλύτερα με συνώνυμα και σχετικές φράσεις κλειδιών"],"Add related keyphrase":[],"Get %s":[],"Focus keyphrase":[],"Learn more about the readability analysis":["Μάθετε περισσότερα για την ανάλυση αναγνωσιμότητας."],"Describe the duration of the instruction:":["Περιγράψτε την διάρκεια της οδηγίας:"],"Optional. Customize how you want to describe the duration of the instruction":["Προαιρετικό. Προσαρμόστε το πως θέλετε να περιγράψετε την διάρκεια της οδηγίας "],"%s, %s and %s":["%s, %s και %s"],"%s and %s":["%s και %s"],"%d minute":["%d λεπτό","%d λεπτά"],"%d hour":["%d ώρα","%d ώρες"],"%d day":["%d μέρα","%d μέρες"],"Enter a step title":[],"Optional. This can give you better control over the styling of the steps.":["Προαιρετικό. Αυτό μπορεί να σας δώσει καλύτερο έλεγχο στο styling των βημάτων."],"CSS class(es) to apply to the steps":["Κλάση(εις) της CSS που θα εφαρμοστούν στα βήματα."],"minutes":["λεπτά"],"hours":["ώρες"],"days":["μέρες"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":["Δημιουργήστε έναν οδηγό \"Πώς-να\" σε ένα φιλικό περιβάλλον σύμφωνα με το SEO.  Μπορείτε να χρησιμοποιήσετε ένα μόνο \"Πως-να\" για κάθε άρθρο."],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":[],"Copy error":[],"An error occurred loading the %s primary taxonomy picker.":[],"Time needed:":["Απαιτούμενος χρόνος"],"Move question down":["Μετακίνηση ερώτησης κάτω"],"Move question up":["Μετακίνηση ερώτησης επάνω"],"Insert question":["Εισαγωγή ερώτησης"],"Delete question":["Διαγραφή ερώτησης"],"Enter the answer to the question":["Δώστε απάντηση στην ερώτηση"],"Enter a question":["Δώστε ερώτηση"],"Add question":["Προσθήκη ερώτησης"],"Frequently Asked Questions":["Συχνές ερωτήσεις"],"Great news: you can, with %s!":["Σπουδαία νέα : μπορείς με %s!"],"Select the primary %s":["Επέλεξε το πρωτεύον %s"],"Move step down":["Μετακίνηση ένα βήμα κάτω"],"Move step up":["Μετακίνηση ένα βήμα πάνω"],"Insert step":["Εισαγωγή βήματος"],"Delete step":["Διαγραφή βήματος"],"Add image":["Προσθήκη εικόνας"],"Enter a step description":["Εισάγετε περιγραφή του βήματος"],"Enter a description":["Εισάγετε μια περιγραφή"],"Unordered list":["Μη αριθμημένη λίστα"],"Showing step items as an ordered list.":["Εμφανίστε τα επιμέρους αντικείμενα ως αριθμημένη λίστα"],"Showing step items as an unordered list":["Εμφάνιση των στοιχείων των βημάτων ως αταξινόμητη λίστα."],"Add step":["Προσθήκη βήματος"],"Delete total time":["Διαγραφή συνολικού χρόνου"],"Add total time":["Προσθήκη συνολικού χρόνου"],"How to":["Πως"],"How-to":["Πώς να"],"Snippet Preview":["Προεπισκόπηση  αποσπάσματος"],"Analysis results":["Αποτελέσματα ανάλυσης"],"Enter a focus keyphrase to calculate the SEO score":["Παρακαλώ εισάγετε μια λέξη κλειδί προκειμένου να υπολογιστεί το σκορ του SEO"],"Learn more about Cornerstone Content.":["Μάθετε περισσότερα για το Βασικό Περιεχόμενο "],"Cornerstone content should be the most important and extensive articles on your site.":["Το Βασικό Περιεχόμενο πρέπει να είναι τα πιο σημαντικά και εκτενή άρθρα στην ιστοσελίδα σας."],"Add synonyms":["Προσθέστε συνώνυμα"],"Would you like to add keyphrase synonyms?":["Θα θέλατε να προσθέσετε συνώνυμες λέξεις-κλειδια;"],"Current year":["Τρέχον έτος"],"Page":["Σελίδα"],"Tagline":[],"Modify your meta description by editing it right here":["Τροποποιήστε την περιγραφή meta σας επεξεργάζοντάς την εδώ"],"ID":["ID"],"Separator":["Διαχωριστής"],"Search phrase":["Αναζήτηση φράσης"],"Term description":["Περιγραφή όρου"],"Tag description":["Περιγραφή ετικέτας"],"Category description":["Περιγραφή κατηγορίας"],"Primary category":["Βασική κατηγορία"],"Category":["Κατηγορία"],"Excerpt only":["Μόνο απόσπασμα"],"Excerpt":["Απόσπασμα"],"Site title":["Τίτλος ιστότοπου"],"Parent title":["Γονικός τίτλος"],"Date":["Ημερομηνία"],"Other benefits of %s for you:":["Άλλα προνόμια του %s για εσάς:"],"Cornerstone content":["Σημαντικό περιεχόμενο"],"24/7 support":["Υποστήριξη 24/7"],"Great news: you can, with %1$s!":["Καλά νέα: μπορείτε, με το %1$s!"],"1 year free updates and upgrades included!":["Περιλαμβάνεται 1 έτος δωρεάν ενημερώσεων και αναβαθμίσεων!"],"%1$sSocial media preview%2$s: Facebook & Twitter":[],"Superfast internal links suggestions":["Έξυπνες προτάσεις εσωτερικών συνδέσμων"],"%1$sNo more dead links%2$s: easy redirect manager":[],"No ads!":["Χωρίς διαφημίσεις!"],"Please provide a meta description by editing the snippet below.":["Δώσε μια μετα-περιγραφή μορφοποιώντας το απόσπασμα πιο κάτω"],"Readability analysis":["Ανάλυση αναγνωσιμότητας"],"Open":["άνοιγμα"],"Title":["Τίτλος"],"Creating redirects is a %s feature":["Η δημιουργία ανακατευθύνσεων είναι ένα %s χαρακτηριστικό"],"Close":["Κλείσιμο"],"Snippet preview":["Προεπισκόπιση αποσπάσματος"],"FAQ":["Συχνές ερωτήσεις"],"Settings":["Ρυθμίσεις"]}}}
     1{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"el_GR"},"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":["Δωρεάν"],"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!":["Πήγαινε %s!"],"Rank better with synonyms & related keyphrases":["Βαθμολογήστε καλύτερα με συνώνυμα και σχετικές φράσεις κλειδιών"],"Add related keyphrase":[],"Get %s":[],"Focus keyphrase":[],"Learn more about the readability analysis":["Μάθετε περισσότερα για την ανάλυση αναγνωσιμότητας."],"Describe the duration of the instruction:":["Περιγράψτε την διάρκεια της οδηγίας:"],"Optional. Customize how you want to describe the duration of the instruction":["Προαιρετικό. Προσαρμόστε το πως θέλετε να περιγράψετε την διάρκεια της οδηγίας "],"%s, %s and %s":["%s, %s και %s"],"%s and %s":["%s και %s"],"%d minute":["%d λεπτό","%d λεπτά"],"%d hour":["%d ώρα","%d ώρες"],"%d day":["%d μέρα","%d μέρες"],"Enter a step title":[],"Optional. This can give you better control over the styling of the steps.":["Προαιρετικό. Αυτό μπορεί να σας δώσει καλύτερο έλεγχο στο styling των βημάτων."],"CSS class(es) to apply to the steps":["Κλάση(εις) της CSS που θα εφαρμοστούν στα βήματα."],"minutes":["λεπτά"],"hours":["ώρες"],"days":["μέρες"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":["Δημιουργήστε έναν οδηγό \"Πώς-να\" σε ένα φιλικό περιβάλλον σύμφωνα με το SEO.  Μπορείτε να χρησιμοποιήσετε ένα μόνο \"Πως-να\" για κάθε άρθρο."],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":[],"Copy error":[],"An error occurred loading the %s primary taxonomy picker.":[],"Time needed:":["Απαιτούμενος χρόνος"],"Move question down":["Μετακίνηση ερώτησης κάτω"],"Move question up":["Μετακίνηση ερώτησης επάνω"],"Insert question":["Εισαγωγή ερώτησης"],"Delete question":["Διαγραφή ερώτησης"],"Enter the answer to the question":["Δώστε απάντηση στην ερώτηση"],"Enter a question":["Δώστε ερώτηση"],"Add question":["Προσθήκη ερώτησης"],"Frequently Asked Questions":["Συχνές ερωτήσεις"],"Great news: you can, with %s!":["Σπουδαία νέα : μπορείς με %s!"],"Select the primary %s":["Επέλεξε το πρωτεύον %s"],"Mark as cornerstone content":["Σημειώστε ως το βασικό περιεχόμενο"],"Move step down":["Μετακίνηση ένα βήμα κάτω"],"Move step up":["Μετακίνηση ένα βήμα πάνω"],"Insert step":["Εισαγωγή βήματος"],"Delete step":["Διαγραφή βήματος"],"Add image":["Προσθήκη εικόνας"],"Enter a step description":["Εισάγετε περιγραφή του βήματος"],"Enter a description":["Εισάγετε μια περιγραφή"],"Unordered list":["Μη αριθμημένη λίστα"],"Showing step items as an ordered list.":["Εμφανίστε τα επιμέρους αντικείμενα ως αριθμημένη λίστα"],"Showing step items as an unordered list":["Εμφάνιση των στοιχείων των βημάτων ως αταξινόμητη λίστα."],"Add step":["Προσθήκη βήματος"],"Delete total time":["Διαγραφή συνολικού χρόνου"],"Add total time":["Προσθήκη συνολικού χρόνου"],"How to":["Πως"],"How-to":["Πώς να"],"Snippet Preview":["Προεπισκόπηση  αποσπάσματος"],"Analysis results":["Αποτελέσματα ανάλυσης"],"Enter a focus keyphrase to calculate the SEO score":["Παρακαλώ εισάγετε μια λέξη κλειδί προκειμένου να υπολογιστεί το σκορ του SEO"],"Learn more about Cornerstone Content.":["Μάθετε περισσότερα για το Βασικό Περιεχόμενο "],"Cornerstone content should be the most important and extensive articles on your site.":["Το Βασικό Περιεχόμενο πρέπει να είναι τα πιο σημαντικά και εκτενή άρθρα στην ιστοσελίδα σας."],"Add synonyms":["Προσθέστε συνώνυμα"],"Would you like to add keyphrase synonyms?":["Θα θέλατε να προσθέσετε συνώνυμες λέξεις-κλειδια;"],"Current year":["Τρέχον έτος"],"Page":["Σελίδα"],"Tagline":[],"Modify your meta description by editing it right here":["Τροποποιήστε την περιγραφή meta σας επεξεργάζοντάς την εδώ"],"ID":["ID"],"Separator":["Διαχωριστής"],"Search phrase":["Αναζήτηση φράσης"],"Term description":["Περιγραφή όρου"],"Tag description":["Περιγραφή ετικέτας"],"Category description":["Περιγραφή κατηγορίας"],"Primary category":["Βασική κατηγορία"],"Category":["Κατηγορία"],"Excerpt only":["Μόνο απόσπασμα"],"Excerpt":["Απόσπασμα"],"Site title":["Τίτλος ιστότοπου"],"Parent title":["Γονικός τίτλος"],"Date":["Ημερομηνία"],"Other benefits of %s for you:":["Άλλα προνόμια του %s για εσάς:"],"Cornerstone content":["Σημαντικό περιεχόμενο"],"24/7 support":["Υποστήριξη 24/7"],"Great news: you can, with %1$s!":["Καλά νέα: μπορείτε, με το %1$s!"],"%1$sSocial media preview%2$s: Facebook & Twitter":[],"Superfast internal links suggestions":["Έξυπνες προτάσεις εσωτερικών συνδέσμων"],"%1$sNo more dead links%2$s: easy redirect manager":[],"No ads!":["Χωρίς διαφημίσεις!"],"Please provide a meta description by editing the snippet below.":["Δώσε μια μετα-περιγραφή μορφοποιώντας το απόσπασμα πιο κάτω"],"The name of the person":["Το όνομα του φυσικού προσώπου"],"Readability analysis":["Ανάλυση αναγνωσιμότητας"],"Open":["άνοιγμα"],"Title":["Τίτλος"],"Creating redirects is a %s feature":["Η δημιουργία ανακατευθύνσεων είναι ένα %s χαρακτηριστικό"],"Close":["Κλείσιμο"],"Snippet preview":["Προεπισκόπιση αποσπάσματος"],"FAQ":["Συχνές ερωτήσεις"],"Settings":["Ρυθμίσεις"]}}}
  • wordpress-seo/trunk/languages/wordpress-seojs-en_AU.json

    r2050445 r2065083  
    1 {"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_AU"},"New step added":["New step added"],"New question added":["New question added"],"To be able to create a redirect and fix this issue, you need %1$s. ":["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.":["You can buy the plugin, including one year of support and updates, on %1$s."],"Free":["Free"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":["Did you know %s also analyses the different word forms of your keyphrase, like plurals and past tenses?"],"Help on choosing the perfect focus keyphrase":["Help on choosing the perfect focus keyphrase"],"Would you like to add a related keyphrase?":["Would you like to add a related keyphrase?"],"Go %s!":["Go %s!"],"Rank better with synonyms & related keyphrases":["Rank better with synonyms & related keyphrases"],"Add related keyphrase":["Add related keyphrase"],"Get %s":["Get %s"],"Focus keyphrase":["Focus keyphrase"],"Learn more about the readability analysis":["Learn more about the readability analysis"],"Describe the duration of the instruction:":["Describe the duration of the instruction:"],"Optional. Customize how you want to describe the duration of the instruction":["Optional. Customise how you want to describe the duration of the instruction"],"%s, %s and %s":["%s, %s and %s"],"%s and %s":["%s and %s"],"%d minute":["%d minute","%d minutes"],"%d hour":["%d hour","%d hours"],"%d day":["%d day","%d days"],"Enter a step title":["Enter a step title"],"Optional. This can give you better control over the styling of the steps.":["Optional. This can give you better control over the styling of the steps."],"CSS class(es) to apply to the steps":["CSS class(es) to apply to the steps"],"minutes":["minutes"],"hours":["hours"],"days":["days"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":["Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post."],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":["List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post."],"Copy error":["Copy error"],"An error occurred loading the %s primary taxonomy picker.":["An error occurred loading the %s primary taxonomy picker."],"Time needed:":["Time needed:"],"Move question down":["Move question down"],"Move question up":["Move question up"],"Insert question":["Insert question"],"Delete question":["Delete question"],"Enter the answer to the question":["Enter the answer to the question"],"Enter a question":["Enter a question"],"Add question":["Add question"],"Frequently Asked Questions":["Frequently Asked Questions"],"Great news: you can, with %s!":["Great news: you can, with %s!"],"Select the primary %s":["Select the primary %s"],"Move step down":["Move step down"],"Move step up":["Move step up"],"Insert step":["Insert step"],"Delete step":["Delete step"],"Add image":["Add image"],"Enter a step description":["Enter a step description"],"Enter a description":["Enter a description"],"Unordered list":["Unordered list"],"Showing step items as an ordered list.":["Showing step items as an ordered list."],"Showing step items as an unordered list":["Showing step items as an unordered list"],"Add step":["Add step"],"Delete total time":["Delete total time"],"Add total time":["Add total time"],"How to":["How to"],"How-to":["How-to"],"Snippet Preview":["Snippet Preview"],"Analysis results":["Analysis results"],"Enter a focus keyphrase to calculate the SEO score":["Enter a focus keyphrase to calculate the SEO score"],"Learn more about Cornerstone Content.":["Learn more about Cornerstone Content."],"Cornerstone content should be the most important and extensive articles on your site.":["Cornerstone content should be the most important and extensive articles on your site."],"Add synonyms":["Add synonyms"],"Would you like to add keyphrase synonyms?":["Would you like to add keyphrase synonyms?"],"Current year":["Current year"],"Page":["Page"],"Tagline":["Tagline"],"Modify your meta description by editing it right here":["Modify your meta description by editing it right here"],"ID":["ID"],"Separator":["Separator"],"Search phrase":["Search phrase"],"Term description":["Term description"],"Tag description":["Tag description"],"Category description":["Category description"],"Primary category":["Primary category"],"Category":["Category"],"Excerpt only":["Excerpt only"],"Excerpt":["Excerpt"],"Site title":["Site title"],"Parent title":["Parent title"],"Date":["Date"],"Other benefits of %s for you:":["Other benefits of %s for you:"],"Cornerstone content":["Cornerstone content"],"24/7 support":["24/7 support"],"Great news: you can, with %1$s!":["Great news: you can, with %1$s!"],"1 year free updates and upgrades included!":["1 year free updates and upgrades included!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sSocial media preview%2$s: Facebook & Twitter"],"Superfast internal links suggestions":["Superfast internal links suggestions"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sNo more dead links%2$s: easy redirect manager"],"No ads!":["No ads!"],"Please provide a meta description by editing the snippet below.":["Please provide a meta description by editing the snippet below."],"Readability analysis":["Readability analysis"],"Open":["Open"],"Title":["Title"],"Creating redirects is a %s feature":["Creating redirects is a %s feature"],"Close":["Close"],"Snippet preview":["Snippet preview"],"FAQ":["FAQ"],"Settings":["Settings"]}}}
     1{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_AU"},"New step added":["New step added"],"New question added":["New question added"],"To be able to create a redirect and fix this issue, you need %1$s. ":["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.":["You can buy the plugin, including one year of support and updates, on %1$s."],"Free":["Free"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":["Did you know %s also analyses the different word forms of your keyphrase, like plurals and past tenses?"],"Help on choosing the perfect focus keyphrase":["Help on choosing the perfect focus keyphrase"],"Would you like to add a related keyphrase?":["Would you like to add a related keyphrase?"],"Go %s!":["Go %s!"],"Rank better with synonyms & related keyphrases":["Rank better with synonyms & related keyphrases"],"Add related keyphrase":["Add related keyphrase"],"Get %s":["Get %s"],"Focus keyphrase":["Focus keyphrase"],"Learn more about the readability analysis":["Learn more about the readability analysis"],"Describe the duration of the instruction:":["Describe the duration of the instruction:"],"Optional. Customize how you want to describe the duration of the instruction":["Optional. Customise how you want to describe the duration of the instruction"],"%s, %s and %s":["%s, %s and %s"],"%s and %s":["%s and %s"],"%d minute":["%d minute","%d minutes"],"%d hour":["%d hour","%d hours"],"%d day":["%d day","%d days"],"Enter a step title":["Enter a step title"],"Optional. This can give you better control over the styling of the steps.":["Optional. This can give you better control over the styling of the steps."],"CSS class(es) to apply to the steps":["CSS class(es) to apply to the steps"],"minutes":["minutes"],"hours":["hours"],"days":["days"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":["Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post."],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":["List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post."],"Copy error":["Copy error"],"An error occurred loading the %s primary taxonomy picker.":["An error occurred loading the %s primary taxonomy picker."],"Time needed:":["Time needed:"],"Move question down":["Move question down"],"Move question up":["Move question up"],"Insert question":["Insert question"],"Delete question":["Delete question"],"Enter the answer to the question":["Enter the answer to the question"],"Enter a question":["Enter a question"],"Add question":["Add question"],"Frequently Asked Questions":["Frequently Asked Questions"],"Great news: you can, with %s!":["Great news: you can, with %s!"],"Select the primary %s":["Select the primary %s"],"Mark as cornerstone content":["Mark as cornerstone content"],"Move step down":["Move step down"],"Move step up":["Move step up"],"Insert step":["Insert step"],"Delete step":["Delete step"],"Add image":["Add image"],"Enter a step description":["Enter a step description"],"Enter a description":["Enter a description"],"Unordered list":["Unordered list"],"Showing step items as an ordered list.":["Showing step items as an ordered list."],"Showing step items as an unordered list":["Showing step items as an unordered list"],"Add step":["Add step"],"Delete total time":["Delete total time"],"Add total time":["Add total time"],"How to":["How to"],"How-to":["How-to"],"Snippet Preview":["Snippet Preview"],"Analysis results":["Analysis results"],"Enter a focus keyphrase to calculate the SEO score":["Enter a focus keyphrase to calculate the SEO score"],"Learn more about Cornerstone Content.":["Learn more about Cornerstone Content."],"Cornerstone content should be the most important and extensive articles on your site.":["Cornerstone content should be the most important and extensive articles on your site."],"Add synonyms":["Add synonyms"],"Would you like to add keyphrase synonyms?":["Would you like to add keyphrase synonyms?"],"Current year":["Current year"],"Page":["Page"],"Tagline":["Tagline"],"Modify your meta description by editing it right here":["Modify your meta description by editing it right here"],"ID":["ID"],"Separator":["Separator"],"Search phrase":["Search phrase"],"Term description":["Term description"],"Tag description":["Tag description"],"Category description":["Category description"],"Primary category":["Primary category"],"Category":["Category"],"Excerpt only":["Excerpt only"],"Excerpt":["Excerpt"],"Site title":["Site title"],"Parent title":["Parent title"],"Date":["Date"],"Other benefits of %s for you:":["Other benefits of %s for you:"],"Cornerstone content":["Cornerstone content"],"24/7 support":["24/7 support"],"Great news: you can, with %1$s!":["Great news: you can, with %1$s!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sSocial media preview%2$s: Facebook & Twitter"],"Superfast internal links suggestions":["Superfast internal links suggestions"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sNo more dead links%2$s: easy redirect manager"],"No ads!":["No ads!"],"Please provide a meta description by editing the snippet below.":["Please provide a meta description by editing the snippet below."],"The name of the person":["The name of the person"],"Readability analysis":["Readability analysis"],"Open":["Open"],"Title":["Title"],"Creating redirects is a %s feature":["Creating redirects is a %s feature"],"Close":["Close"],"Snippet preview":["Snippet preview"],"FAQ":["FAQ"],"Settings":["Settings"]}}}
  • wordpress-seo/trunk/languages/wordpress-seojs-en_CA.json

    r2050445 r2065083  
    1 {"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_CA"},"New step added":["New step added"],"New question added":["New question added"],"To be able to create a redirect and fix this issue, you need %1$s. ":["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.":["You can buy the plugin, including one year of support and updates, on %1$s."],"Free":["Free"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":["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":["Help on choosing the perfect focus keyphrase"],"Would you like to add a related keyphrase?":["Would you like to add a related keyphrase?"],"Go %s!":["Go %s!"],"Rank better with synonyms & related keyphrases":["Rank better with synonyms & related keyphrases"],"Add related keyphrase":["Add related keyphrase"],"Get %s":["Get %s"],"Focus keyphrase":["Focus keyphrase"],"Learn more about the readability analysis":["Learn more about the readability analysis"],"Describe the duration of the instruction:":["Describe the duration of the instruction:"],"Optional. Customize how you want to describe the duration of the instruction":["Optional. Customize how you want to describe the duration of the instruction"],"%s, %s and %s":["%s, %s and %s"],"%s and %s":["%s and %s"],"%d minute":["%d minute","%d minutes"],"%d hour":["%d hour","%d hours"],"%d day":["%d day","%d days"],"Enter a step title":["Enter a step title"],"Optional. This can give you better control over the styling of the steps.":["Optional. This can give you better control over the styling of the steps."],"CSS class(es) to apply to the steps":["CSS class(es) to apply to the steps"],"minutes":["minutes"],"hours":["hours"],"days":["days"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":["Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post."],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":["List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post."],"Copy error":["Copy error"],"An error occurred loading the %s primary taxonomy picker.":["An error occurred loading the %s primary taxonomy picker."],"Time needed:":["Time needed:"],"Move question down":["Move question down"],"Move question up":["Move question up"],"Insert question":["Insert question"],"Delete question":["Delete question"],"Enter the answer to the question":["Enter the answer to the question"],"Enter a question":["Enter a question"],"Add question":["Add question"],"Frequently Asked Questions":["Frequently Asked Questions"],"Great news: you can, with %s!":["Great news: you can, with %s!"],"Select the primary %s":["Select the primary %s"],"Move step down":["Move step down"],"Move step up":["Move step up"],"Insert step":["Insert step"],"Delete step":["Delete step"],"Add image":["Add image"],"Enter a step description":["Enter a step description"],"Enter a description":["Enter a description"],"Unordered list":["Unordered list"],"Showing step items as an ordered list.":["Showing step items as an ordered list."],"Showing step items as an unordered list":["Showing step items as an unordered list"],"Add step":["Add step"],"Delete total time":["Delete total time"],"Add total time":["Add total time"],"How to":["How to"],"How-to":["How-to"],"Snippet Preview":["Snippet Preview"],"Analysis results":["Analysis results"],"Enter a focus keyphrase to calculate the SEO score":["Enter a focus keyphrase to calculate the SEO score"],"Learn more about Cornerstone Content.":["Learn more about Cornerstone Content."],"Cornerstone content should be the most important and extensive articles on your site.":["Cornerstone content should be the most important and extensive articles on your site."],"Add synonyms":["Add synonyms"],"Would you like to add keyphrase synonyms?":["Would you like to add keyphrase synonyms?"],"Current year":["Current year"],"Page":["Page"],"Tagline":["Tagline"],"Modify your meta description by editing it right here":["Modify your meta description by editing it right here"],"ID":["ID"],"Separator":["Separator"],"Search phrase":["Search phrase"],"Term description":["Term description"],"Tag description":["Tag description"],"Category description":["Category description"],"Primary category":["Primary category"],"Category":["Category"],"Excerpt only":["Excerpt only"],"Excerpt":["Excerpt"],"Site title":["Site title"],"Parent title":["Parent title"],"Date":["Date"],"Other benefits of %s for you:":["Other benefits of %s for you:"],"Cornerstone content":["Cornerstone content"],"24/7 support":["24/7 support"],"Great news: you can, with %1$s!":["Great news: you can, with %1$s!"],"1 year free updates and upgrades included!":["1 year free updates and upgrades included!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sSocial media preview%2$s: Facebook & Twitter"],"Superfast internal links suggestions":["Superfast internal links suggestions"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sNo more dead links%2$s: easy redirect manager"],"No ads!":["No ads!"],"Please provide a meta description by editing the snippet below.":["Please provide a meta description by editing the snippet below."],"Readability analysis":["Readability analysis"],"Open":["Open"],"Title":["Title"],"Creating redirects is a %s feature":["Creating redirects is a %s feature"],"Close":["Close"],"Snippet preview":["Snippet preview"],"FAQ":["FAQ"],"Settings":["Settings"]}}}
     1{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_CA"},"New step added":["New step added"],"New question added":["New question added"],"To be able to create a redirect and fix this issue, you need %1$s. ":["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.":["You can buy the plugin, including one year of support and updates, on %1$s."],"Free":["Free"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":["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":["Help on choosing the perfect focus keyphrase"],"Would you like to add a related keyphrase?":["Would you like to add a related keyphrase?"],"Go %s!":["Go %s!"],"Rank better with synonyms & related keyphrases":["Rank better with synonyms & related keyphrases"],"Add related keyphrase":["Add related keyphrase"],"Get %s":["Get %s"],"Focus keyphrase":["Focus keyphrase"],"Learn more about the readability analysis":["Learn more about the readability analysis"],"Describe the duration of the instruction:":["Describe the duration of the instruction:"],"Optional. Customize how you want to describe the duration of the instruction":["Optional. Customize how you want to describe the duration of the instruction"],"%s, %s and %s":["%s, %s and %s"],"%s and %s":["%s and %s"],"%d minute":["%d minute","%d minutes"],"%d hour":["%d hour","%d hours"],"%d day":["%d day","%d days"],"Enter a step title":["Enter a step title"],"Optional. This can give you better control over the styling of the steps.":["Optional. This can give you better control over the styling of the steps."],"CSS class(es) to apply to the steps":["CSS class(es) to apply to the steps"],"minutes":["minutes"],"hours":["hours"],"days":["days"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":["Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post."],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":["List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post."],"Copy error":["Copy error"],"An error occurred loading the %s primary taxonomy picker.":["An error occurred loading the %s primary taxonomy picker."],"Time needed:":["Time needed:"],"Move question down":["Move question down"],"Move question up":["Move question up"],"Insert question":["Insert question"],"Delete question":["Delete question"],"Enter the answer to the question":["Enter the answer to the question"],"Enter a question":["Enter a question"],"Add question":["Add question"],"Frequently Asked Questions":["Frequently Asked Questions"],"Great news: you can, with %s!":["Great news: you can, with %s!"],"Select the primary %s":["Select the primary %s"],"Mark as cornerstone content":["Mark as cornerstone content"],"Move step down":["Move step down"],"Move step up":["Move step up"],"Insert step":["Insert step"],"Delete step":["Delete step"],"Add image":["Add image"],"Enter a step description":["Enter a step description"],"Enter a description":["Enter a description"],"Unordered list":["Unordered list"],"Showing step items as an ordered list.":["Showing step items as an ordered list."],"Showing step items as an unordered list":["Showing step items as an unordered list"],"Add step":["Add step"],"Delete total time":["Delete total time"],"Add total time":["Add total time"],"How to":["How to"],"How-to":["How-to"],"Snippet Preview":["Snippet Preview"],"Analysis results":["Analysis results"],"Enter a focus keyphrase to calculate the SEO score":["Enter a focus keyphrase to calculate the SEO score"],"Learn more about Cornerstone Content.":["Learn more about Cornerstone Content."],"Cornerstone content should be the most important and extensive articles on your site.":["Cornerstone content should be the most important and extensive articles on your site."],"Add synonyms":["Add synonyms"],"Would you like to add keyphrase synonyms?":["Would you like to add keyphrase synonyms?"],"Current year":["Current year"],"Page":["Page"],"Tagline":["Tagline"],"Modify your meta description by editing it right here":["Modify your meta description by editing it right here"],"ID":["ID"],"Separator":["Separator"],"Search phrase":["Search phrase"],"Term description":["Term description"],"Tag description":["Tag description"],"Category description":["Category description"],"Primary category":["Primary category"],"Category":["Category"],"Excerpt only":["Excerpt only"],"Excerpt":["Excerpt"],"Site title":["Site title"],"Parent title":["Parent title"],"Date":["Date"],"Other benefits of %s for you:":["Other benefits of %s for you:"],"Cornerstone content":["Cornerstone content"],"24/7 support":["24/7 support"],"Great news: you can, with %1$s!":["Great news: you can, with %1$s!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sSocial media preview%2$s: Facebook & Twitter"],"Superfast internal links suggestions":["Superfast internal links suggestions"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sNo more dead links%2$s: easy redirect manager"],"No ads!":["No ads!"],"Please provide a meta description by editing the snippet below.":["Please provide a meta description by editing the snippet below."],"The name of the person":["The name of the person"],"Readability analysis":["Readability analysis"],"Open":["Open"],"Title":["Title"],"Creating redirects is a %s feature":["Creating redirects is a %s feature"],"Close":["Close"],"Snippet preview":["Snippet preview"],"FAQ":["FAQ"],"Settings":["Settings"]}}}
  • wordpress-seo/trunk/languages/wordpress-seojs-en_GB.json

    r2050445 r2065083  
    1 {"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"New step added":["New step added"],"New question added":["New question added"],"To be able to create a redirect and fix this issue, you need %1$s. ":["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.":["You can buy the plugin, including one year of support and updates, on %1$s."],"Free":["Free"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":["Did you know %s also analyses the different word forms of your keyphrase, like plurals and past tenses?"],"Help on choosing the perfect focus keyphrase":["Help on choosing the perfect focus keyphrase"],"Would you like to add a related keyphrase?":["Would you like to add a related keyphrase?"],"Go %s!":["Go %s!"],"Rank better with synonyms & related keyphrases":["Rank better with synonyms & related keyphrases"],"Add related keyphrase":["Add related keyphrase"],"Get %s":["Get %s"],"Focus keyphrase":["Focus keyphrase"],"Learn more about the readability analysis":["Learn more about the readability analysis"],"Describe the duration of the instruction:":["Describe the duration of the instruction:"],"Optional. Customize how you want to describe the duration of the instruction":["Optional. Customise how you want to describe the duration of the instruction"],"%s, %s and %s":["%s, %s and %s"],"%s and %s":["%s and %s"],"%d minute":["%d minute","%d minutes"],"%d hour":["%d hour","%d hours"],"%d day":["%d day","%d days"],"Enter a step title":["Enter a step title"],"Optional. This can give you better control over the styling of the steps.":["Optional. This can give you better control over the styling of the steps."],"CSS class(es) to apply to the steps":["CSS class(es) to apply to the steps"],"minutes":["minutes"],"hours":["hours"],"days":["days"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":["Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post."],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":["List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post."],"Copy error":["Copy error"],"An error occurred loading the %s primary taxonomy picker.":["An error occurred loading the %s primary taxonomy picker."],"Time needed:":["Time needed:"],"Move question down":["Move question down"],"Move question up":["Move question up"],"Insert question":["Insert question"],"Delete question":["Delete question"],"Enter the answer to the question":["Enter the answer to the question"],"Enter a question":["Enter a question"],"Add question":["Add question"],"Frequently Asked Questions":["Frequently Asked Questions"],"Great news: you can, with %s!":["Great news: you can, with %s!"],"Select the primary %s":["Select the primary %s"],"Move step down":["Move step down"],"Move step up":["Move step up"],"Insert step":["Insert step"],"Delete step":["Delete step"],"Add image":["Add image"],"Enter a step description":["Enter a step description"],"Enter a description":["Enter a description"],"Unordered list":["Unordered list"],"Showing step items as an ordered list.":["Showing step items as an ordered list."],"Showing step items as an unordered list":["Showing step items as an unordered list"],"Add step":["Add step"],"Delete total time":["Delete total time"],"Add total time":["Add total time"],"How to":["How to"],"How-to":["How-to"],"Snippet Preview":["Snippet Preview"],"Analysis results":["Analysis results"],"Enter a focus keyphrase to calculate the SEO score":["Enter a focus keyphrase to calculate the SEO score"],"Learn more about Cornerstone Content.":["Learn more about Cornerstone Content."],"Cornerstone content should be the most important and extensive articles on your site.":["Cornerstone content should be the most important and extensive articles on your site."],"Add synonyms":["Add synonyms"],"Would you like to add keyphrase synonyms?":["Would you like to add keyphrase synonyms?"],"Current year":["Current year"],"Page":["Page"],"Tagline":["Tagline"],"Modify your meta description by editing it right here":["Modify your meta description by editing it right here"],"ID":["ID"],"Separator":["Separator"],"Search phrase":["Search phrase"],"Term description":["Term description"],"Tag description":["Tag description"],"Category description":["Category description"],"Primary category":["Primary category"],"Category":["Category"],"Excerpt only":["Excerpt only"],"Excerpt":["Excerpt"],"Site title":["Site title"],"Parent title":["Parent title"],"Date":["Date"],"Other benefits of %s for you:":["Other benefits of %s for you:"],"Cornerstone content":["Cornerstone content"],"24/7 support":["24/7 support"],"Great news: you can, with %1$s!":["Great news: you can, with %1$s!"],"1 year free updates and upgrades included!":["1 year free updates and upgrades included!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sSocial media preview%2$s: Facebook & Twitter"],"Superfast internal links suggestions":["Super fast internal links suggestions"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sNo more dead links%2$s: easy redirect manager"],"No ads!":["No ads!"],"Please provide a meta description by editing the snippet below.":["Please provide a meta description by editing the snippet below."],"Readability analysis":["Readability analysis"],"Open":["Open"],"Title":["Title"],"Creating redirects is a %s feature":["Creating redirects is a %s feature"],"Close":["Close"],"Snippet preview":["Snippet preview"],"FAQ":["FAQ"],"Settings":["Settings"]}}}
     1{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"New step added":["New step added"],"New question added":["New question added"],"To be able to create a redirect and fix this issue, you need %1$s. ":["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.":["You can buy the plugin, including one year of support and updates, on %1$s."],"Free":["Free"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":["Did you know %s also analyses the different word forms of your keyphrase, like plurals and past tenses?"],"Help on choosing the perfect focus keyphrase":["Help on choosing the perfect focus keyphrase"],"Would you like to add a related keyphrase?":["Would you like to add a related keyphrase?"],"Go %s!":["Go %s!"],"Rank better with synonyms & related keyphrases":["Rank better with synonyms & related keyphrases"],"Add related keyphrase":["Add related keyphrase"],"Get %s":["Get %s"],"Focus keyphrase":["Focus keyphrase"],"Learn more about the readability analysis":["Learn more about the readability analysis"],"Describe the duration of the instruction:":["Describe the duration of the instruction:"],"Optional. Customize how you want to describe the duration of the instruction":["Optional. Customise how you want to describe the duration of the instruction"],"%s, %s and %s":["%s, %s and %s"],"%s and %s":["%s and %s"],"%d minute":["%d minute","%d minutes"],"%d hour":["%d hour","%d hours"],"%d day":["%d day","%d days"],"Enter a step title":["Enter a step title"],"Optional. This can give you better control over the styling of the steps.":["Optional. This can give you better control over the styling of the steps."],"CSS class(es) to apply to the steps":["CSS class(es) to apply to the steps"],"minutes":["minutes"],"hours":["hours"],"days":["days"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":["Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post."],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":["List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post."],"Copy error":["Copy error"],"An error occurred loading the %s primary taxonomy picker.":["An error occurred loading the %s primary taxonomy picker."],"Time needed:":["Time needed:"],"Move question down":["Move question down"],"Move question up":["Move question up"],"Insert question":["Insert question"],"Delete question":["Delete question"],"Enter the answer to the question":["Enter the answer to the question"],"Enter a question":["Enter a question"],"Add question":["Add question"],"Frequently Asked Questions":["Frequently Asked Questions"],"Great news: you can, with %s!":["Great news: you can, with %s!"],"Select the primary %s":["Select the primary %s"],"Mark as cornerstone content":["Mark as cornerstone content"],"Move step down":["Move step down"],"Move step up":["Move step up"],"Insert step":["Insert step"],"Delete step":["Delete step"],"Add image":["Add image"],"Enter a step description":["Enter a step description"],"Enter a description":["Enter a description"],"Unordered list":["Unordered list"],"Showing step items as an ordered list.":["Showing step items as an ordered list."],"Showing step items as an unordered list":["Showing step items as an unordered list"],"Add step":["Add step"],"Delete total time":["Delete total time"],"Add total time":["Add total time"],"How to":["How to"],"How-to":["How-to"],"Snippet Preview":["Snippet Preview"],"Analysis results":["Analysis results"],"Enter a focus keyphrase to calculate the SEO score":["Enter a focus keyphrase to calculate the SEO score"],"Learn more about Cornerstone Content.":["Learn more about Cornerstone Content."],"Cornerstone content should be the most important and extensive articles on your site.":["Cornerstone content should be the most important and extensive articles on your site."],"Add synonyms":["Add synonyms"],"Would you like to add keyphrase synonyms?":["Would you like to add keyphrase synonyms?"],"Current year":["Current year"],"Page":["Page"],"Tagline":["Tagline"],"Modify your meta description by editing it right here":["Modify your meta description by editing it right here"],"ID":["ID"],"Separator":["Separator"],"Search phrase":["Search phrase"],"Term description":["Term description"],"Tag description":["Tag description"],"Category description":["Category description"],"Primary category":["Primary category"],"Category":["Category"],"Excerpt only":["Excerpt only"],"Excerpt":["Excerpt"],"Site title":["Site title"],"Parent title":["Parent title"],"Date":["Date"],"Other benefits of %s for you:":["Other benefits of %s for you:"],"Cornerstone content":["Cornerstone content"],"24/7 support":["24/7 support"],"Great news: you can, with %1$s!":["Great news: you can, with %1$s!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sSocial media preview%2$s: Facebook & Twitter"],"Superfast internal links suggestions":["Super fast internal links suggestions"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sNo more dead links%2$s: easy redirect manager"],"No ads!":["No ads!"],"Please provide a meta description by editing the snippet below.":["Please provide a meta description by editing the snippet below."],"The name of the person":["The name of the person"],"Readability analysis":["Readability analysis"],"Open":["Open"],"Title":["Title"],"Creating redirects is a %s feature":["Creating redirects is a %s feature"],"Close":["Close"],"Snippet preview":["Snippet preview"],"FAQ":["FAQ"],"Settings":["Settings"]}}}
  • wordpress-seo/trunk/languages/wordpress-seojs-en_NZ.json

    r2050445 r2065083  
    1 {"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_NZ"},"New step added":["New step added"],"New question added":["New question added"],"To be able to create a redirect and fix this issue, you need %1$s. ":["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.":["You can buy the plugin, including one year of support and updates, on %1$s."],"Free":["Free"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":["Did you know %s also analyses the different word forms of your keyphrase, like plurals and past tenses?"],"Help on choosing the perfect focus keyphrase":["Help on choosing the perfect focus keyphrase"],"Would you like to add a related keyphrase?":["Would you like to add a related keyphrase?"],"Go %s!":["Go %s!"],"Rank better with synonyms & related keyphrases":["Rank better with synonyms & related keyphrases"],"Add related keyphrase":["Add related keyphrase"],"Get %s":["Get %s"],"Focus keyphrase":["Focus keyphrase"],"Learn more about the readability analysis":["Learn more about the readability analysis"],"Describe the duration of the instruction:":["Describe the duration of the instruction:"],"Optional. Customize how you want to describe the duration of the instruction":["Optional. Customise how you want to describe the duration of the instruction"],"%s, %s and %s":["%s, %s and %s"],"%s and %s":["%s and %s"],"%d minute":["%d minute","%d minutes"],"%d hour":["%d hour","%d hours"],"%d day":["%d day","%d days"],"Enter a step title":["Enter a step title"],"Optional. This can give you better control over the styling of the steps.":["Optional. This can give you better control over the styling of the steps."],"CSS class(es) to apply to the steps":["CSS class(es) to apply to the steps"],"minutes":["minutes"],"hours":["hours"],"days":["days"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":["Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post."],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":["List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post."],"Copy error":["Copy error"],"An error occurred loading the %s primary taxonomy picker.":["An error occurred loading the %s primary taxonomy picker."],"Time needed:":["Time needed:"],"Move question down":["Move question down"],"Move question up":["Move question up"],"Insert question":["Insert question"],"Delete question":["Delete question"],"Enter the answer to the question":["Enter the answer to the question"],"Enter a question":["Enter a question"],"Add question":["Add question"],"Frequently Asked Questions":["Frequently Asked Questions"],"Great news: you can, with %s!":["Great news: you can, with %s!"],"Select the primary %s":["Select the primary %s"],"Move step down":["Move step down"],"Move step up":["Move step up"],"Insert step":["Insert step"],"Delete step":["Delete step"],"Add image":["Add image"],"Enter a step description":["Enter a step description"],"Enter a description":["Enter a description"],"Unordered list":["Unordered list"],"Showing step items as an ordered list.":["Showing step items as an ordered list."],"Showing step items as an unordered list":["Showing step items as an unordered list"],"Add step":["Add step"],"Delete total time":["Delete total time"],"Add total time":["Add total time"],"How to":["How to"],"How-to":["How-to"],"Snippet Preview":["Snippet Preview"],"Analysis results":["Analysis results"],"Enter a focus keyphrase to calculate the SEO score":["Enter a focus keyphrase to calculate the SEO score"],"Learn more about Cornerstone Content.":["Learn more about Cornerstone Content."],"Cornerstone content should be the most important and extensive articles on your site.":["Cornerstone content should be the most important and extensive articles on your site."],"Add synonyms":["Add synonyms"],"Would you like to add keyphrase synonyms?":["Would you like to add keyphrase synonyms?"],"Current year":["Current year"],"Page":["Page"],"Tagline":["Tagline"],"Modify your meta description by editing it right here":["Modify your meta description by editing it right here"],"ID":["ID"],"Separator":["Separator"],"Search phrase":["Search phrase"],"Term description":["Term description"],"Tag description":["Tag description"],"Category description":["Category description"],"Primary category":["Primary category"],"Category":["Category"],"Excerpt only":["Excerpt only"],"Excerpt":["Excerpt"],"Site title":["Site title"],"Parent title":["Parent title"],"Date":["Date"],"Other benefits of %s for you:":["Other benefits of %s for you:"],"Cornerstone content":["Cornerstone content"],"24/7 support":["24/7 support"],"Great news: you can, with %1$s!":["Great news: you can, with %1$s!"],"1 year free updates and upgrades included!":["1 year free updates and upgrades included!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sSocial media preview%2$s: Facebook & Twitter"],"Superfast internal links suggestions":["Superfast internal links suggestions"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sNo more dead links%2$s: easy redirect manager"],"No ads!":["No ads!"],"Please provide a meta description by editing the snippet below.":["Please provide a meta description by editing the snippet below."],"Readability analysis":["Readability analysis"],"Open":["Open"],"Title":["Title"],"Creating redirects is a %s feature":["Creating redirects is a %s feature"],"Close":["Close"],"Snippet preview":["Snippet preview"],"FAQ":["FAQ"],"Settings":["Settings"]}}}
     1{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_NZ"},"New step added":["New step added"],"New question added":["New question added"],"To be able to create a redirect and fix this issue, you need %1$s. ":["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.":["You can buy the plugin, including one year of support and updates, on %1$s."],"Free":["Free"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":["Did you know %s also analyses the different word forms of your keyphrase, like plurals and past tenses?"],"Help on choosing the perfect focus keyphrase":["Help on choosing the perfect focus keyphrase"],"Would you like to add a related keyphrase?":["Would you like to add a related keyphrase?"],"Go %s!":["Go %s!"],"Rank better with synonyms & related keyphrases":["Rank better with synonyms & related keyphrases"],"Add related keyphrase":["Add related keyphrase"],"Get %s":["Get %s"],"Focus keyphrase":["Focus keyphrase"],"Learn more about the readability analysis":["Learn more about the readability analysis"],"Describe the duration of the instruction:":["Describe the duration of the instruction:"],"Optional. Customize how you want to describe the duration of the instruction":["Optional. Customise how you want to describe the duration of the instruction"],"%s, %s and %s":["%s, %s and %s"],"%s and %s":["%s and %s"],"%d minute":["%d minute","%d minutes"],"%d hour":["%d hour","%d hours"],"%d day":["%d day","%d days"],"Enter a step title":["Enter a step title"],"Optional. This can give you better control over the styling of the steps.":["Optional. This can give you better control over the styling of the steps."],"CSS class(es) to apply to the steps":["CSS class(es) to apply to the steps"],"minutes":["minutes"],"hours":["hours"],"days":["days"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":["Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post."],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":["List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post."],"Copy error":["Copy error"],"An error occurred loading the %s primary taxonomy picker.":["An error occurred loading the %s primary taxonomy picker."],"Time needed:":["Time needed:"],"Move question down":["Move question down"],"Move question up":["Move question up"],"Insert question":["Insert question"],"Delete question":["Delete question"],"Enter the answer to the question":["Enter the answer to the question"],"Enter a question":["Enter a question"],"Add question":["Add question"],"Frequently Asked Questions":["Frequently Asked Questions"],"Great news: you can, with %s!":["Great news: you can, with %s!"],"Select the primary %s":["Select the primary %s"],"Mark as cornerstone content":["Mark as cornerstone content"],"Move step down":["Move step down"],"Move step up":["Move step up"],"Insert step":["Insert step"],"Delete step":["Delete step"],"Add image":["Add image"],"Enter a step description":["Enter a step description"],"Enter a description":["Enter a description"],"Unordered list":["Unordered list"],"Showing step items as an ordered list.":["Showing step items as an ordered list."],"Showing step items as an unordered list":["Showing step items as an unordered list"],"Add step":["Add step"],"Delete total time":["Delete total time"],"Add total time":["Add total time"],"How to":["How to"],"How-to":["How-to"],"Snippet Preview":["Snippet Preview"],"Analysis results":["Analysis results"],"Enter a focus keyphrase to calculate the SEO score":["Enter a focus keyphrase to calculate the SEO score"],"Learn more about Cornerstone Content.":["Learn more about Cornerstone Content."],"Cornerstone content should be the most important and extensive articles on your site.":["Cornerstone content should be the most important and extensive articles on your site."],"Add synonyms":["Add synonyms"],"Would you like to add keyphrase synonyms?":["Would you like to add keyphrase synonyms?"],"Current year":["Current year"],"Page":["Page"],"Tagline":["Tagline"],"Modify your meta description by editing it right here":["Modify your meta description by editing it right here"],"ID":["ID"],"Separator":["Separator"],"Search phrase":["Search phrase"],"Term description":["Term description"],"Tag description":["Tag description"],"Category description":["Category description"],"Primary category":["Primary category"],"Category":["Category"],"Excerpt only":["Excerpt only"],"Excerpt":["Excerpt"],"Site title":["Site title"],"Parent title":["Parent title"],"Date":["Date"],"Other benefits of %s for you:":["Other benefits of %s for you:"],"Cornerstone content":["Cornerstone content"],"24/7 support":["24/7 support"],"Great news: you can, with %1$s!":["Great news: you can, with %1$s!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sSocial media preview%2$s: Facebook & Twitter"],"Superfast internal links suggestions":["Superfast internal links suggestions"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sNo more dead links%2$s: easy redirect manager"],"No ads!":["No ads!"],"Please provide a meta description by editing the snippet below.":["Please provide a meta description by editing the snippet below."],"The name of the person":["The name of the person"],"Readability analysis":["Readability analysis"],"Open":["Open"],"Title":["Title"],"Creating redirects is a %s feature":["Creating redirects is a %s feature"],"Close":["Close"],"Snippet preview":["Snippet preview"],"FAQ":["FAQ"],"Settings":["Settings"]}}}
  • wordpress-seo/trunk/languages/wordpress-seojs-en_ZA.json

    r2050445 r2065083  
    1 {"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_ZA"},"New step added":["New step added"],"New question added":["New question added"],"To be able to create a redirect and fix this issue, you need %1$s. ":["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.":["You can buy the plugin, including one year of support and updates, on %1$s."],"Free":["Free"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":["Did you know %s also analyses the different word forms of your keyphrase, like plurals and past tenses?"],"Help on choosing the perfect focus keyphrase":["Help on choosing the perfect focus keyphrase"],"Would you like to add a related keyphrase?":["Would you like to add a related keyphrase?"],"Go %s!":["Go %s!"],"Rank better with synonyms & related keyphrases":["Rank better with synonyms & related keyphrases"],"Add related keyphrase":["Add related keyphrase"],"Get %s":["Get %s"],"Focus keyphrase":["Focus keyphrase"],"Learn more about the readability analysis":["Learn more about the readability analysis"],"Describe the duration of the instruction:":["Describe the duration of the instruction:"],"Optional. Customize how you want to describe the duration of the instruction":["Optional. Customise how you want to describe the duration of the instruction"],"%s, %s and %s":["%s, %s and %s"],"%s and %s":["%s and %s"],"%d minute":["%d minute","%d minutes"],"%d hour":["%d hour","%d hours"],"%d day":["%d day","%d days"],"Enter a step title":["Enter a step title"],"Optional. This can give you better control over the styling of the steps.":["Optional. This can give you better control over the styling of the steps."],"CSS class(es) to apply to the steps":["CSS class(es) to apply to the steps"],"minutes":["minutes"],"hours":["hours"],"days":["days"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":["Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post."],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":["List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post."],"Copy error":["Copy error"],"An error occurred loading the %s primary taxonomy picker.":["An error occurred loading the %s primary taxonomy picker."],"Time needed:":["Time needed:"],"Move question down":["Move question down"],"Move question up":["Move question up"],"Insert question":["Insert question"],"Delete question":["Delete question"],"Enter the answer to the question":["Enter the answer to the question"],"Enter a question":["Enter a question"],"Add question":["Add question"],"Frequently Asked Questions":["Frequently Asked Questions"],"Great news: you can, with %s!":["Great news: you can, with %s!"],"Select the primary %s":["Select the primary %s"],"Move step down":["Move step down"],"Move step up":["Move step up"],"Insert step":["Insert step"],"Delete step":["Delete step"],"Add image":["Add image"],"Enter a step description":["Enter a step description"],"Enter a description":["Enter a description"],"Unordered list":["Unordered list"],"Showing step items as an ordered list.":["Showing step items as an ordered list."],"Showing step items as an unordered list":["Showing step items as an unordered list"],"Add step":["Add step"],"Delete total time":["Delete total time"],"Add total time":["Add total time"],"How to":["How to"],"How-to":["How-to"],"Snippet Preview":["Snippet Preview"],"Analysis results":["Analysis results"],"Enter a focus keyphrase to calculate the SEO score":["Enter a focus keyphrase to calculate the SEO score"],"Learn more about Cornerstone Content.":["Learn more about Cornerstone Content."],"Cornerstone content should be the most important and extensive articles on your site.":["Cornerstone content should be the most important and extensive articles on your site."],"Add synonyms":["Add synonyms"],"Would you like to add keyphrase synonyms?":["Would you like to add keyphrase synonyms?"],"Current year":["Current year"],"Page":["Page"],"Tagline":["Tagline"],"Modify your meta description by editing it right here":["Modify your meta description by editing it right here"],"ID":["ID"],"Separator":["Separator"],"Search phrase":["Search phrase"],"Term description":["Term description"],"Tag description":["Tag description"],"Category description":["Category description"],"Primary category":["Primary category"],"Category":["Category"],"Excerpt only":["Excerpt only"],"Excerpt":["Excerpt"],"Site title":["Site title"],"Parent title":["Parent title"],"Date":["Date"],"Other benefits of %s for you:":["Other benefits of %s for you:"],"Cornerstone content":["Cornerstone content"],"24/7 support":["24/7 support"],"Great news: you can, with %1$s!":["Great news: you can, with %1$s!"],"1 year free updates and upgrades included!":["1 year free updates and upgrades included!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sSocial media preview%2$s: Facebook & Twitter"],"Superfast internal links suggestions":["Super fast internal links suggestions"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sNo more dead links%2$s: easy redirect manager"],"No ads!":["No ads!"],"Please provide a meta description by editing the snippet below.":["Please provide a meta description by editing the snippet below."],"Readability analysis":["Readability analysis"],"Open":["Open"],"Title":["Title"],"Creating redirects is a %s feature":["Creating redirects is a %s feature"],"Close":["Close"],"Snippet preview":["Snippet preview"],"FAQ":["FAQ"],"Settings":["Settings"]}}}
     1{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_ZA"},"New step added":["New step added"],"New question added":["New question added"],"To be able to create a redirect and fix this issue, you need %1$s. ":["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.":["You can buy the plugin, including one year of support and updates, on %1$s."],"Free":["Free"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":["Did you know %s also analyses the different word forms of your keyphrase, like plurals and past tenses?"],"Help on choosing the perfect focus keyphrase":["Help on choosing the perfect focus keyphrase"],"Would you like to add a related keyphrase?":["Would you like to add a related keyphrase?"],"Go %s!":["Go %s!"],"Rank better with synonyms & related keyphrases":["Rank better with synonyms & related keyphrases"],"Add related keyphrase":["Add related keyphrase"],"Get %s":["Get %s"],"Focus keyphrase":["Focus keyphrase"],"Learn more about the readability analysis":["Learn more about the readability analysis"],"Describe the duration of the instruction:":["Describe the duration of the instruction:"],"Optional. Customize how you want to describe the duration of the instruction":["Optional. Customise how you want to describe the duration of the instruction"],"%s, %s and %s":["%s, %s and %s"],"%s and %s":["%s and %s"],"%d minute":["%d minute","%d minutes"],"%d hour":["%d hour","%d hours"],"%d day":["%d day","%d days"],"Enter a step title":["Enter a step title"],"Optional. This can give you better control over the styling of the steps.":["Optional. This can give you better control over the styling of the steps."],"CSS class(es) to apply to the steps":["CSS class(es) to apply to the steps"],"minutes":["minutes"],"hours":["hours"],"days":["days"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":["Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post."],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":["List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post."],"Copy error":["Copy error"],"An error occurred loading the %s primary taxonomy picker.":["An error occurred loading the %s primary taxonomy picker."],"Time needed:":["Time needed:"],"Move question down":["Move question down"],"Move question up":["Move question up"],"Insert question":["Insert question"],"Delete question":["Delete question"],"Enter the answer to the question":["Enter the answer to the question"],"Enter a question":["Enter a question"],"Add question":["Add question"],"Frequently Asked Questions":["Frequently Asked Questions"],"Great news: you can, with %s!":["Great news: you can, with %s!"],"Select the primary %s":["Select the primary %s"],"Mark as cornerstone content":["Mark as cornerstone content"],"Move step down":["Move step down"],"Move step up":["Move step up"],"Insert step":["Insert step"],"Delete step":["Delete step"],"Add image":["Add image"],"Enter a step description":["Enter a step description"],"Enter a description":["Enter a description"],"Unordered list":["Unordered list"],"Showing step items as an ordered list.":["Showing step items as an ordered list."],"Showing step items as an unordered list":["Showing step items as an unordered list"],"Add step":["Add step"],"Delete total time":["Delete total time"],"Add total time":["Add total time"],"How to":["How to"],"How-to":["How-to"],"Snippet Preview":["Snippet Preview"],"Analysis results":["Analysis results"],"Enter a focus keyphrase to calculate the SEO score":["Enter a focus keyphrase to calculate the SEO score"],"Learn more about Cornerstone Content.":["Learn more about Cornerstone Content."],"Cornerstone content should be the most important and extensive articles on your site.":["Cornerstone content should be the most important and extensive articles on your site."],"Add synonyms":["Add synonyms"],"Would you like to add keyphrase synonyms?":["Would you like to add keyphrase synonyms?"],"Current year":["Current year"],"Page":["Page"],"Tagline":["Tagline"],"Modify your meta description by editing it right here":["Modify your meta description by editing it right here"],"ID":["ID"],"Separator":["Separator"],"Search phrase":["Search phrase"],"Term description":["Term description"],"Tag description":["Tag description"],"Category description":["Category description"],"Primary category":["Primary category"],"Category":["Category"],"Excerpt only":["Excerpt only"],"Excerpt":["Excerpt"],"Site title":["Site title"],"Parent title":["Parent title"],"Date":["Date"],"Other benefits of %s for you:":["Other benefits of %s for you:"],"Cornerstone content":["Cornerstone content"],"24/7 support":["24/7 support"],"Great news: you can, with %1$s!":["Great news: you can, with %1$s!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sSocial media preview%2$s: Facebook & Twitter"],"Superfast internal links suggestions":["Super fast internal links suggestions"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sNo more dead links%2$s: easy redirect manager"],"No ads!":["No ads!"],"Please provide a meta description by editing the snippet below.":["Please provide a meta description by editing the snippet below."],"The name of the person":["The name of the person"],"Readability analysis":["Readability analysis"],"Open":["Open"],"Title":["Title"],"Creating redirects is a %s feature":["Creating redirects is a %s feature"],"Close":["Close"],"Snippet preview":["Snippet preview"],"FAQ":["FAQ"],"Settings":["Settings"]}}}
  • wordpress-seo/trunk/languages/wordpress-seojs-es_AR.json

    r2050445 r2065083  
    1 {"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"es_AR"},"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":[],"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":[],"Describe the duration of the instruction:":[],"Optional. Customize how you want to describe the duration of the instruction":[],"%s, %s and %s":[],"%s and %s":[],"%d minute":[],"%d hour":[],"%d day":[],"Enter a step title":[],"Optional. This can give you better control over the styling of the steps.":[],"CSS class(es) to apply to the steps":[],"minutes":[],"hours":[],"days":[],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":[],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":[],"Copy error":[],"An error occurred loading the %s primary taxonomy picker.":[],"Time needed:":[],"Move question down":[],"Move question up":[],"Insert question":[],"Delete question":[],"Enter the answer to the question":[],"Enter a question":[],"Add question":[],"Frequently Asked Questions":[],"Great news: you can, with %s!":[],"Select the primary %s":[],"Move step down":[],"Move step up":[],"Insert step":[],"Delete step":[],"Add image":[],"Enter a step description":[],"Enter a description":[],"Unordered list":[],"Showing step items as an ordered list.":[],"Showing step items as an unordered list":[],"Add step":[],"Delete total time":[],"Add total time":[],"How to":[],"How-to":[],"Snippet Preview":[],"Analysis results":[],"Enter a focus keyphrase to calculate the SEO score":[],"Learn more about Cornerstone Content.":[],"Cornerstone content should be the most important and extensive articles on your site.":[],"Add synonyms":[],"Would you like to add keyphrase synonyms?":[],"Current year":[],"Page":[],"Tagline":[],"Modify your meta description by editing it right here":[],"ID":[],"Separator":[],"Search phrase":[],"Term description":[],"Tag description":[],"Category description":[],"Primary category":[],"Category":[],"Excerpt only":[],"Excerpt":[],"Site title":[],"Parent title":[],"Date":[],"Other benefits of %s for you:":["Otros beneficios de %s para vos."],"Cornerstone content":["Contenido esencial"],"24/7 support":["Soporte 24/7"],"Great news: you can, with %1$s!":["¡Grandes noticias: podés hacerlo, con %1$s!"],"1 year free updates and upgrades included!":["¡1 año gratis de mejoras y actualizaciones incluido!"],"%1$sSocial media preview%2$s: Facebook & Twitter":[],"Superfast internal links suggestions":["Sugerencias de enlaces internos super rápidos"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sNo más enlaces caídos%2$s: administrador de redirecciones simple."],"No ads!":["¡Sin anuncios publicitarios!"],"Please provide a meta description by editing the snippet below.":["Ingresá una descripción meta editando el snippet de abajo."],"Readability analysis":["Análisis de legibilidad"],"Open":["Abrir"],"Title":["Título"],"Creating redirects is a %s feature":["La creación de redirecciones es una característica de %s"],"Close":["Cerrar"],"Snippet preview":["Vista previa del snippet"],"FAQ":["Preguntas frecuentes"],"Settings":["Ajustes"]}}}
     1{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"es_AR"},"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":[],"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":[],"Describe the duration of the instruction:":[],"Optional. Customize how you want to describe the duration of the instruction":[],"%s, %s and %s":[],"%s and %s":[],"%d minute":[],"%d hour":[],"%d day":[],"Enter a step title":[],"Optional. This can give you better control over the styling of the steps.":[],"CSS class(es) to apply to the steps":[],"minutes":[],"hours":[],"days":[],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":[],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":[],"Copy error":[],"An error occurred loading the %s primary taxonomy picker.":[],"Time needed:":[],"Move question down":[],"Move question up":[],"Insert question":[],"Delete question":[],"Enter the answer to the question":[],"Enter a question":[],"Add question":[],"Frequently Asked Questions":[],"Great news: you can, with %s!":[],"Select the primary %s":[],"Mark as cornerstone content":[],"Move step down":[],"Move step up":[],"Insert step":[],"Delete step":[],"Add image":[],"Enter a step description":[],"Enter a description":[],"Unordered list":[],"Showing step items as an ordered list.":[],"Showing step items as an unordered list":[],"Add step":[],"Delete total time":[],"Add total time":[],"How to":[],"How-to":[],"Snippet Preview":[],"Analysis results":[],"Enter a focus keyphrase to calculate the SEO score":[],"Learn more about Cornerstone Content.":[],"Cornerstone content should be the most important and extensive articles on your site.":[],"Add synonyms":[],"Would you like to add keyphrase synonyms?":[],"Current year":[],"Page":[],"Tagline":[],"Modify your meta description by editing it right here":[],"ID":[],"Separator":[],"Search phrase":[],"Term description":[],"Tag description":[],"Category description":[],"Primary category":[],"Category":[],"Excerpt only":[],"Excerpt":[],"Site title":[],"Parent title":[],"Date":[],"Other benefits of %s for you:":["Otros beneficios de %s para vos."],"Cornerstone content":["Contenido esencial"],"24/7 support":["Soporte 24/7"],"Great news: you can, with %1$s!":["¡Grandes noticias: podés hacerlo, con %1$s!"],"%1$sSocial media preview%2$s: Facebook & Twitter":[],"Superfast internal links suggestions":["Sugerencias de enlaces internos super rápidos"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sNo más enlaces caídos%2$s: administrador de redirecciones simple."],"No ads!":["¡Sin anuncios publicitarios!"],"Please provide a meta description by editing the snippet below.":["Ingresá una descripción meta editando el snippet de abajo."],"The name of the person":["El nombre de la persona"],"Readability analysis":["Análisis de legibilidad"],"Open":["Abrir"],"Title":["Título"],"Creating redirects is a %s feature":["La creación de redirecciones es una característica de %s"],"Close":["Cerrar"],"Snippet preview":["Vista previa del snippet"],"FAQ":["Preguntas frecuentes"],"Settings":["Ajustes"]}}}
  • wordpress-seo/trunk/languages/wordpress-seojs-es_ES.json

    r2050445 r2065083  
    1 {"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"es"},"New step added":["Nuevo paso añadido"],"New question added":["Nueva pregunta añadida"],"To be able to create a redirect and fix this issue, you need %1$s. ":["Para poder crear una redirección y corregir este fallo necesitas %1$s."],"You can buy the plugin, including one year of support and updates, on %1$s.":["Puedes comprar el plugin, incluyendo un año de soporte y actualizaciones, en %1$s."],"Free":["Gratis"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":["¿Sabías que %s también analiza las distintas variaciones de tu frase clave, como plurales y tiempos verbales?"],"Help on choosing the perfect focus keyphrase":["Ayuda para elegir la frase clave objetivo perfecta"],"Would you like to add a related keyphrase?":["¿Te gustaría añadir una frase clave relacionada?"],"Go %s!":["¡Ir a %s!"],"Rank better with synonyms & related keyphrases":["Posiciona mejor con sinónimos y frases clave relacionadas"],"Add related keyphrase":["Añadir frase clave relacionada"],"Get %s":["Consigue %s"],"Focus keyphrase":["Frase clave objetivo"],"Learn more about the readability analysis":["Aprende más sobre el análisis de legibilidad"],"Describe the duration of the instruction:":["Describe la duración de la instrucción:"],"Optional. Customize how you want to describe the duration of the instruction":["Opcional. Personaliza cómo quieres describir la duración de la instrucción."],"%s, %s and %s":["%s, %s y %s"],"%s and %s":["%s y %s"],"%d minute":["%d minuto","%d minutos"],"%d hour":["%d hora","%d horas"],"%d day":["%d día","%d días"],"Enter a step title":["Introduce un título para el paso"],"Optional. This can give you better control over the styling of the steps.":["Opcional. Esto puede darte un mayor control sobre los estilos de los pasos."],"CSS class(es) to apply to the steps":["Clase(s) CSS a aplicar a los pasos"],"minutes":["minutos"],"hours":["horas"],"days":["días"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":["Crea una guía práctica en un modo amigable para el SEO. Solo puedes usar un bloque de guía práctica en cada entrada."],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":["Haz una lista de tus preguntas más frecuentes en un modo amigable para el SEO. Solo puedes usar un bloque de FAQ en cada entrada."],"Copy error":["Error en el texto"],"An error occurred loading the %s primary taxonomy picker.":["Ocurrió un error al cargar el selector %s de la taxonomía principal."],"Time needed:":["Tiempo necesario:"],"Move question down":["Bajar pregunta"],"Move question up":["Subir pregunta"],"Insert question":["Insertar pregunta"],"Delete question":["Borrar pregunta"],"Enter the answer to the question":["Escribe la respuesta a la pregunta"],"Enter a question":["Introduce una pregunta"],"Add question":["Añadir pregunta"],"Frequently Asked Questions":["Preguntas frecuentes"],"Great news: you can, with %s!":["Buenas noticias: ¡puedes, con %s!"],"Select the primary %s":["Elige el %s principal"],"Move step down":["Mover paso hacia abajo"],"Move step up":["Mover paso hacia arriba"],"Insert step":["Insertar paso"],"Delete step":["Eliminar paso"],"Add image":["Añadir imagen"],"Enter a step description":["Introduce una descripción del paso"],"Enter a description":["Introduce una descripción"],"Unordered list":["Lista desordenada"],"Showing step items as an ordered list.":["Mostrando los elementos de los pasos como una lista ordenada."],"Showing step items as an unordered list":["Mostrando los elementos de los pasos como una lista desordenada."],"Add step":["Añadir paso"],"Delete total time":["Eliminar tiempo total"],"Add total time":["Añadir tiempo total"],"How to":["Cómo hacer"],"How-to":["Cómo hacer"],"Snippet Preview":["Vista previa del snippet"],"Analysis results":["Resultados del análisis"],"Enter a focus keyphrase to calculate the SEO score":["Introduce una frase clave objetivo para calcular la puntuación SEO"],"Learn more about Cornerstone Content.":["Aprende más sobre el contenido esencial."],"Cornerstone content should be the most important and extensive articles on your site.":["El contenido esencial deben ser los artículos más importantes y extensos de tu sitio."],"Add synonyms":["Añade sinónimos"],"Would you like to add keyphrase synonyms?":["¿Te gustaría añadir sinónimos de la frase clave? "],"Current year":["Año actual"],"Page":["Página"],"Tagline":["Descripción corta"],"Modify your meta description by editing it right here":["Modifica tu meta description editándola aquí mismo"],"ID":["ID"],"Separator":["Separador"],"Search phrase":["Frase de búsqueda"],"Term description":["Descripción del término"],"Tag description":["Descripción de la etiqueta"],"Category description":["Descripción de la categoría"],"Primary category":["Categoría principal"],"Category":["Categoría"],"Excerpt only":["Solo el extracto"],"Excerpt":["Extracto"],"Site title":["Título del sitio"],"Parent title":["Título superior"],"Date":["Fecha"],"Other benefits of %s for you:":["Otros beneficios de %s para ti:"],"Cornerstone content":["Contenido esencial"],"24/7 support":["Soporte 24/7"],"Great news: you can, with %1$s!":["¡Buenas noticias: puedes hacerlo, con %1$s!"],"1 year free updates and upgrades included!":["¡Incluye 1 año de actualizaciones gratuitas!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sVista previa en redes sociales%2$s: Facebook y Twitter"],"Superfast internal links suggestions":["Sugerencias super rápidas de enlaces internos"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sNo más enlaces muertos%2$s: sencillo gestor de redirecciones"],"No ads!":["¡Sin anuncios!"],"Please provide a meta description by editing the snippet below.":["Por favor introduce una meta description editando el snippet de abajo."],"Readability analysis":["Análisis de legibilidad"],"Open":["Abrir"],"Title":["Título"],"Creating redirects is a %s feature":["La creación de redirecciones es una característica de %s"],"Close":["Cerrar"],"Snippet preview":["Vista previa del snippet"],"FAQ":["Preguntas frecuentes"],"Settings":["Ajustes"]}}}
     1{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"es"},"New step added":["Nuevo paso añadido"],"New question added":["Nueva pregunta añadida"],"To be able to create a redirect and fix this issue, you need %1$s. ":["Para poder crear una redirección y corregir este fallo necesitas %1$s."],"You can buy the plugin, including one year of support and updates, on %1$s.":["Puedes comprar el plugin, incluyendo un año de soporte y actualizaciones, en %1$s."],"Free":["Gratis"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":["¿Sabías que %s también analiza las distintas variaciones de tu frase clave, como plurales y tiempos verbales?"],"Help on choosing the perfect focus keyphrase":["Ayuda para elegir la frase clave objetivo perfecta"],"Would you like to add a related keyphrase?":["¿Te gustaría añadir una frase clave relacionada?"],"Go %s!":["¡Ir a %s!"],"Rank better with synonyms & related keyphrases":["Posiciona mejor con sinónimos y frases clave relacionadas"],"Add related keyphrase":["Añadir frase clave relacionada"],"Get %s":["Consigue %s"],"Focus keyphrase":["Frase clave objetivo"],"Learn more about the readability analysis":["Aprende más sobre el análisis de legibilidad"],"Describe the duration of the instruction:":["Describe la duración de la instrucción:"],"Optional. Customize how you want to describe the duration of the instruction":["Opcional. Personaliza cómo quieres describir la duración de la instrucción."],"%s, %s and %s":["%s, %s y %s"],"%s and %s":["%s y %s"],"%d minute":["%d minuto","%d minutos"],"%d hour":["%d hora","%d horas"],"%d day":["%d día","%d días"],"Enter a step title":["Introduce un título para el paso"],"Optional. This can give you better control over the styling of the steps.":["Opcional. Esto puede darte un mayor control sobre los estilos de los pasos."],"CSS class(es) to apply to the steps":["Clase(s) CSS a aplicar a los pasos"],"minutes":["minutos"],"hours":["horas"],"days":["días"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":["Crea una guía práctica en un modo amigable para el SEO. Solo puedes usar un bloque de guía práctica en cada entrada."],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":["Haz una lista de tus preguntas más frecuentes en un modo amigable para el SEO. Solo puedes usar un bloque de FAQ en cada entrada."],"Copy error":["Error en el texto"],"An error occurred loading the %s primary taxonomy picker.":["Ocurrió un error al cargar el selector %s de la taxonomía principal."],"Time needed:":["Tiempo necesario:"],"Move question down":["Bajar pregunta"],"Move question up":["Subir pregunta"],"Insert question":["Insertar pregunta"],"Delete question":["Borrar pregunta"],"Enter the answer to the question":["Escribe la respuesta a la pregunta"],"Enter a question":["Introduce una pregunta"],"Add question":["Añadir pregunta"],"Frequently Asked Questions":["Preguntas frecuentes"],"Great news: you can, with %s!":["Buenas noticias: ¡puedes, con %s!"],"Select the primary %s":["Elige el %s principal"],"Mark as cornerstone content":["Marcar como contenido esencial"],"Move step down":["Mover paso hacia abajo"],"Move step up":["Mover paso hacia arriba"],"Insert step":["Insertar paso"],"Delete step":["Eliminar paso"],"Add image":["Añadir imagen"],"Enter a step description":["Introduce una descripción del paso"],"Enter a description":["Introduce una descripción"],"Unordered list":["Lista desordenada"],"Showing step items as an ordered list.":["Mostrando los elementos de los pasos como una lista ordenada."],"Showing step items as an unordered list":["Mostrando los elementos de los pasos como una lista desordenada."],"Add step":["Añadir paso"],"Delete total time":["Eliminar tiempo total"],"Add total time":["Añadir tiempo total"],"How to":["Cómo hacer"],"How-to":["Cómo hacer"],"Snippet Preview":["Vista previa del snippet"],"Analysis results":["Resultados del análisis"],"Enter a focus keyphrase to calculate the SEO score":["Introduce una frase clave objetivo para calcular la puntuación SEO"],"Learn more about Cornerstone Content.":["Aprende más sobre el contenido esencial."],"Cornerstone content should be the most important and extensive articles on your site.":["El contenido esencial deben ser los artículos más importantes y extensos de tu sitio."],"Add synonyms":["Añade sinónimos"],"Would you like to add keyphrase synonyms?":["¿Te gustaría añadir sinónimos de la frase clave? "],"Current year":["Año actual"],"Page":["Página"],"Tagline":["Descripción corta"],"Modify your meta description by editing it right here":["Modifica tu meta description editándola aquí mismo"],"ID":["ID"],"Separator":["Separador"],"Search phrase":["Frase de búsqueda"],"Term description":["Descripción del término"],"Tag description":["Descripción de la etiqueta"],"Category description":["Descripción de la categoría"],"Primary category":["Categoría principal"],"Category":["Categoría"],"Excerpt only":["Solo el extracto"],"Excerpt":["Extracto"],"Site title":["Título del sitio"],"Parent title":["Título superior"],"Date":["Fecha"],"Other benefits of %s for you:":["Otros beneficios de %s para ti:"],"Cornerstone content":["Contenido esencial"],"24/7 support":["Soporte 24/7"],"Great news: you can, with %1$s!":["¡Buenas noticias: puedes hacerlo, con %1$s!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sVista previa en redes sociales%2$s: Facebook y Twitter"],"Superfast internal links suggestions":["Sugerencias super rápidas de enlaces internos"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sNo más enlaces muertos%2$s: sencillo gestor de redirecciones"],"No ads!":["¡Sin anuncios!"],"Please provide a meta description by editing the snippet below.":["Por favor introduce una meta description editando el snippet de abajo."],"The name of the person":["El nombre de la persona"],"Readability analysis":["Análisis de legibilidad"],"Open":["Abrir"],"Title":["Título"],"Creating redirects is a %s feature":["La creación de redirecciones es una característica de %s"],"Close":["Cerrar"],"Snippet preview":["Vista previa del snippet"],"FAQ":["Preguntas frecuentes"],"Settings":["Ajustes"]}}}
  • wordpress-seo/trunk/languages/wordpress-seojs-es_MX.json

    r2050445 r2065083  
    1 {"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"es_MX"},"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":[],"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":[],"Describe the duration of the instruction:":[],"Optional. Customize how you want to describe the duration of the instruction":[],"%s, %s and %s":[],"%s and %s":[],"%d minute":[],"%d hour":[],"%d day":[],"Enter a step title":[],"Optional. This can give you better control over the styling of the steps.":[],"CSS class(es) to apply to the steps":[],"minutes":[],"hours":[],"days":[],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":[],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":[],"Copy error":[],"An error occurred loading the %s primary taxonomy picker.":[],"Time needed:":["Tiempo necesario:"],"Move question down":["Mover pregunta abajo"],"Move question up":["Mover pregunta arriba"],"Insert question":["Ingrese la pregunta"],"Delete question":["Borrar pregunta"],"Enter the answer to the question":["Ingrese la respuesta a la pregunta"],"Enter a question":["Ingrese una pregunta"],"Add question":["Añadir pregunta"],"Frequently Asked Questions":["Preguntas Frecuentes"],"Great news: you can, with %s!":[],"Select the primary %s":["Seleccione el %s primario"],"Move step down":["Mover paso abajo"],"Move step up":["Mover paso arriba"],"Insert step":["Insertar paso"],"Delete step":["Borrar paso"],"Add image":["Añadir imagen"],"Enter a step description":["Ingrese una descripción del paso"],"Enter a description":["Ingrese una descripción"],"Unordered list":["Lista desordenada"],"Showing step items as an ordered list.":["Escribe un título para tus instrucciones"],"Showing step items as an unordered list":["Mostrando los items de pasos como una dista desordenada"],"Add step":["Agregar paso"],"Delete total time":["Borrar tiempo total"],"Add total time":["Añadir tiempo total"],"How to":["Cómo"],"How-to":["Como"],"Snippet Preview":["Vista previa del Snippet"],"Analysis results":["Resultado del análisis:"],"Enter a focus keyphrase to calculate the SEO score":[],"Learn more about Cornerstone Content.":["Saber más sobre Cornerstone Content."],"Cornerstone content should be the most important and extensive articles on your site.":["Los contenidos de Piedra Angular deberían ser los artículos más extensos e importantes en su sitio."],"Add synonyms":["Añadir sinónimos"],"Would you like to add keyphrase synonyms?":[],"Current year":["Año actual"],"Page":["Página"],"Tagline":["Eslogan"],"Modify your meta description by editing it right here":["Modifique su meta descripción modificándola aquí"],"ID":["ID"],"Separator":["Separador"],"Search phrase":["Frase de búsqueda"],"Term description":[],"Tag description":["Descripción de la etiqueta"],"Category description":["Descripción de la categoría"],"Primary category":["Categoría principal"],"Category":["Categoría"],"Excerpt only":["Solo extracto"],"Excerpt":["Extracto"],"Site title":["Título del sitio"],"Parent title":["Título padre"],"Date":["Fecha"],"Other benefits of %s for you:":["Otros beneficios de %s para ti:"],"Cornerstone content":["Contenido Cornerstone"],"24/7 support":["Soporte 24/7"],"Great news: you can, with %1$s!":["Gran noticia: ¡usted puede, con %1$s!"],"1 year free updates and upgrades included!":["1 año de actualizaciones gratuitas y mejoras incluidas!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["Vista previa de los medios sociales: Facebook y Twitter"],"Superfast internal links suggestions":["Sugerencias de enlaces internos de rapidisimo"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sNo more dead links%2$s: administrador de redireccionamiento fácil"],"No ads!":["¡Sin anuncios!"],"Please provide a meta description by editing the snippet below.":["Favor de proveer una meta descripción editando el snippet abajo."],"Readability analysis":["Análisis de Legibilidad"],"Open":["Abrir"],"Title":["Título"],"Creating redirects is a %s feature":["La creación de redirecciones es una característica de %s"],"Close":["Cerrar"],"Snippet preview":["Fragmento de previsualización"],"FAQ":["Preguntas más frecuentes"],"Settings":["Ajustes"]}}}
     1{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"es_MX"},"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":[],"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":[],"Describe the duration of the instruction:":[],"Optional. Customize how you want to describe the duration of the instruction":[],"%s, %s and %s":[],"%s and %s":[],"%d minute":[],"%d hour":[],"%d day":[],"Enter a step title":[],"Optional. This can give you better control over the styling of the steps.":[],"CSS class(es) to apply to the steps":[],"minutes":[],"hours":[],"days":[],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":[],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":[],"Copy error":[],"An error occurred loading the %s primary taxonomy picker.":[],"Time needed:":["Tiempo necesario:"],"Move question down":["Mover pregunta abajo"],"Move question up":["Mover pregunta arriba"],"Insert question":["Ingrese la pregunta"],"Delete question":["Borrar pregunta"],"Enter the answer to the question":["Ingrese la respuesta a la pregunta"],"Enter a question":["Ingrese una pregunta"],"Add question":["Añadir pregunta"],"Frequently Asked Questions":["Preguntas Frecuentes"],"Great news: you can, with %s!":[],"Select the primary %s":["Seleccione el %s primario"],"Mark as cornerstone content":["Marcar como contenido piedra angular"],"Move step down":["Mover paso abajo"],"Move step up":["Mover paso arriba"],"Insert step":["Insertar paso"],"Delete step":["Borrar paso"],"Add image":["Añadir imagen"],"Enter a step description":["Ingrese una descripción del paso"],"Enter a description":["Ingrese una descripción"],"Unordered list":["Lista desordenada"],"Showing step items as an ordered list.":["Escribe un título para tus instrucciones"],"Showing step items as an unordered list":["Mostrando los items de pasos como una dista desordenada"],"Add step":["Agregar paso"],"Delete total time":["Borrar tiempo total"],"Add total time":["Añadir tiempo total"],"How to":["Cómo"],"How-to":["Como"],"Snippet Preview":["Vista previa del Snippet"],"Analysis results":["Resultado del análisis:"],"Enter a focus keyphrase to calculate the SEO score":[],"Learn more about Cornerstone Content.":["Saber más sobre Cornerstone Content."],"Cornerstone content should be the most important and extensive articles on your site.":["Los contenidos de Piedra Angular deberían ser los artículos más extensos e importantes en su sitio."],"Add synonyms":["Añadir sinónimos"],"Would you like to add keyphrase synonyms?":[],"Current year":["Año actual"],"Page":["Página"],"Tagline":["Eslogan"],"Modify your meta description by editing it right here":["Modifique su meta descripción modificándola aquí"],"ID":["ID"],"Separator":["Separador"],"Search phrase":["Frase de búsqueda"],"Term description":[],"Tag description":["Descripción de la etiqueta"],"Category description":["Descripción de la categoría"],"Primary category":["Categoría principal"],"Category":["Categoría"],"Excerpt only":["Solo extracto"],"Excerpt":["Extracto"],"Site title":["Título del sitio"],"Parent title":["Título padre"],"Date":["Fecha"],"Other benefits of %s for you:":["Otros beneficios de %s para ti:"],"Cornerstone content":["Contenido Cornerstone"],"24/7 support":["Soporte 24/7"],"Great news: you can, with %1$s!":["Gran noticia: ¡usted puede, con %1$s!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["Vista previa de los medios sociales: Facebook y Twitter"],"Superfast internal links suggestions":["Sugerencias de enlaces internos de rapidisimo"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sNo more dead links%2$s: administrador de redireccionamiento fácil"],"No ads!":["¡Sin anuncios!"],"Please provide a meta description by editing the snippet below.":["Favor de proveer una meta descripción editando el snippet abajo."],"The name of the person":["El nombre de la persona"],"Readability analysis":["Análisis de Legibilidad"],"Open":["Abrir"],"Title":["Título"],"Creating redirects is a %s feature":["La creación de redirecciones es una característica de %s"],"Close":["Cerrar"],"Snippet preview":["Fragmento de previsualización"],"FAQ":["Preguntas más frecuentes"],"Settings":["Ajustes"]}}}
  • wordpress-seo/trunk/languages/wordpress-seojs-es_VE.json

    r2050445 r2065083  
    1 {"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"es_VE"},"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":[],"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":[],"Describe the duration of the instruction:":[],"Optional. Customize how you want to describe the duration of the instruction":[],"%s, %s and %s":[],"%s and %s":[],"%d minute":[],"%d hour":[],"%d day":[],"Enter a step title":[],"Optional. This can give you better control over the styling of the steps.":[],"CSS class(es) to apply to the steps":[],"minutes":[],"hours":[],"days":[],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":[],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":[],"Copy error":[],"An error occurred loading the %s primary taxonomy picker.":[],"Time needed:":[],"Move question down":[],"Move question up":[],"Insert question":[],"Delete question":[],"Enter the answer to the question":[],"Enter a question":[],"Add question":[],"Frequently Asked Questions":[],"Great news: you can, with %s!":[],"Select the primary %s":[],"Move step down":[],"Move step up":[],"Insert step":[],"Delete step":[],"Add image":[],"Enter a step description":[],"Enter a description":[],"Unordered list":[],"Showing step items as an ordered list.":[],"Showing step items as an unordered list":[],"Add step":[],"Delete total time":[],"Add total time":[],"How to":[],"How-to":[],"Snippet Preview":[],"Analysis results":[],"Enter a focus keyphrase to calculate the SEO score":[],"Learn more about Cornerstone Content.":[],"Cornerstone content should be the most important and extensive articles on your site.":[],"Add synonyms":[],"Would you like to add keyphrase synonyms?":[],"Current year":[],"Page":[],"Tagline":[],"Modify your meta description by editing it right here":[],"ID":[],"Separator":[],"Search phrase":[],"Term description":[],"Tag description":[],"Category description":[],"Primary category":[],"Category":[],"Excerpt only":[],"Excerpt":[],"Site title":[],"Parent title":[],"Date":[],"Other benefits of %s for you:":["Otros beneficios de %s para ti:"],"Cornerstone content":["Contenido esencial"],"24/7 support":["Soporte 24/7"],"Great news: you can, with %1$s!":["¡Grandes noticias: puedes hacerlo, con %1$s!"],"1 year free updates and upgrades included!":["¡Incluye 1 año de actualizaciones gratuitas!"],"%1$sSocial media preview%2$s: Facebook & Twitter":[],"Superfast internal links suggestions":["Sugerencias super rápidas de enlaces internos"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sNo más enlaces muertos%2$s: sencillo gestor de redirecciones"],"No ads!":["¡Sin anuncios!"],"Please provide a meta description by editing the snippet below.":["Por favor introduce una meta description editando el snippet de abajo."],"Readability analysis":["Análisis de legibilidad"],"Open":["Abrir"],"Title":["Título"],"Creating redirects is a %s feature":["La creación de redirecciones es una característica de %s"],"Close":["Cerrar"],"Snippet preview":["Vista previa del snippet"],"FAQ":["Preguntas frecuentes"],"Settings":["Ajustes"]}}}
     1{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"es_VE"},"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":[],"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":[],"Describe the duration of the instruction:":[],"Optional. Customize how you want to describe the duration of the instruction":[],"%s, %s and %s":[],"%s and %s":[],"%d minute":[],"%d hour":[],"%d day":[],"Enter a step title":[],"Optional. This can give you better control over the styling of the steps.":[],"CSS class(es) to apply to the steps":[],"minutes":[],"hours":[],"days":[],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":[],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":[],"Copy error":[],"An error occurred loading the %s primary taxonomy picker.":[],"Time needed:":[],"Move question down":[],"Move question up":[],"Insert question":[],"Delete question":[],"Enter the answer to the question":[],"Enter a question":[],"Add question":[],"Frequently Asked Questions":[],"Great news: you can, with %s!":[],"Select the primary %s":[],"Mark as cornerstone content":[],"Move step down":[],"Move step up":[],"Insert step":[],"Delete step":[],"Add image":[],"Enter a step description":[],"Enter a description":[],"Unordered list":[],"Showing step items as an ordered list.":[],"Showing step items as an unordered list":[],"Add step":[],"Delete total time":[],"Add total time":[],"How to":[],"How-to":[],"Snippet Preview":[],"Analysis results":[],"Enter a focus keyphrase to calculate the SEO score":[],"Learn more about Cornerstone Content.":[],"Cornerstone content should be the most important and extensive articles on your site.":[],"Add synonyms":[],"Would you like to add keyphrase synonyms?":[],"Current year":[],"Page":[],"Tagline":[],"Modify your meta description by editing it right here":[],"ID":[],"Separator":[],"Search phrase":[],"Term description":[],"Tag description":[],"Category description":[],"Primary category":[],"Category":[],"Excerpt only":[],"Excerpt":[],"Site title":[],"Parent title":[],"Date":[],"Other benefits of %s for you:":["Otros beneficios de %s para ti:"],"Cornerstone content":["Contenido esencial"],"24/7 support":["Soporte 24/7"],"Great news: you can, with %1$s!":["¡Grandes noticias: puedes hacerlo, con %1$s!"],"%1$sSocial media preview%2$s: Facebook & Twitter":[],"Superfast internal links suggestions":["Sugerencias super rápidas de enlaces internos"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sNo más enlaces muertos%2$s: sencillo gestor de redirecciones"],"No ads!":["¡Sin anuncios!"],"Please provide a meta description by editing the snippet below.":["Por favor introduce una meta description editando el snippet de abajo."],"The name of the person":["El nombre de la persona"],"Readability analysis":["Análisis de legibilidad"],"Open":["Abrir"],"Title":["Título"],"Creating redirects is a %s feature":["La creación de redirecciones es una característica de %s"],"Close":["Cerrar"],"Snippet preview":["Vista previa del snippet"],"FAQ":["Preguntas frecuentes"],"Settings":["Ajustes"]}}}
  • wordpress-seo/trunk/languages/wordpress-seojs-fa_IR.json

    r2050445 r2065083  
    1 {"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=1; plural=0;","lang":"fa"},"New step added":["گام جدید اضافه شد"],"New question added":["سوال جدید اضافه شد"],"To be able to create a redirect and fix this issue, you need %1$s. ":["برای اینکه بتوانید یک ریدایرکت ایجاد کنید و این مسئله را حل کنید، به %1$s نیاز دارید"],"You can buy the plugin, including one year of support and updates, on %1$s.":["شما می توانید این افزونه را که شامل یک سال پشتیبانی و بروزرسانی است با %1$s بخرید."],"Free":["رایگان"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":["آیا می دانید %s نیز فرم های مختلف کلمه ای از عبارت کلیدی شما را، مانند چندگانگی و زمان های گذشته، تحلیل می کند؟"],"Help on choosing the perfect focus keyphrase":["راهنمایی در مورد انتخاب بهترین عبارت کلیدی کانونی"],"Would you like to add a related keyphrase?":["آیا می خواهید یک عبارت کلیدی مرتبط اضافه کنید؟"],"Go %s!":["برو به %s!"],"Rank better with synonyms & related keyphrases":["رتبه بهتر با کلمات مترادف و عبارات کلیدی مرتبط است"],"Add related keyphrase":["عبارت کلیدی مرتبط اضافه کنید"],"Get %s":["گرفتن %s"],"Focus keyphrase":["عبارت کلیدی کانونی"],"Learn more about the readability analysis":["یادگیری بیشتر راجع به آنالیز خوانایی"],"Describe the duration of the instruction:":["مدت زمان آموزش را شرح دهید:"],"Optional. Customize how you want to describe the duration of the instruction":["اختیاری. سفارشی‌سازی چگونگی مدت زمان آموزش را شرح دهید"],"%s, %s and %s":["%s, %s و %s"],"%s and %s":["%s و %s"],"%d minute":["%d دقیقه"],"%d hour":["%d ساعت"],"%d day":["%d روز"],"Enter a step title":["عنوان قدم را وارد کنید"],"Optional. This can give you better control over the styling of the steps.":["اختیاری. این می تواند به شما برای بهبود کنترل استایل قدم ها کمک کند."],"CSS class(es) to apply to the steps":["کلاس های css می تواند به قدم‌ها اضافه شود"],"minutes":["دقیقه"],"hours":["ساعت"],"days":["روز"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":["ایجاد به گونه ای که دوستدار سئو باشد. شما تنها می توانید استفاده کنید یک چگونگی بلوک در هر نوشته."],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":["لیست سوالات متداول درباره روش های دوستدار سئو. شما تنها می توانید از یک بلوک FAQ برای هر نوشته استفاده کنید."],"Copy error":["کپی کردن خطا"],"An error occurred loading the %s primary taxonomy picker.":["خطایی در هنگام بارگذاری %s طبقه بندی اولیه طبقه بندی شده رخ داد."],"Time needed:":["زمان مورد نیاز:"],"Move question down":["سوال را به پایین ببرید"],"Move question up":["سوال را به بالا ببرید"],"Insert question":["سؤال را وارد کنید"],"Delete question":["سؤال را حذف کنید"],"Enter the answer to the question":["پاسخ به سوال را وارد کنید"],"Enter a question":["سوال وارد کنید"],"Add question":["سوالی اضافه کنید"],"Frequently Asked Questions":["سوالات متداول"],"Great news: you can, with %s!":["خبر خوب: شما می توانید، با %s!"],"Select the primary %s":["اولویت %s را انتخاب کنید"],"Move step down":["حرکت گام به پایین"],"Move step up":["حرکت گام به بالا"],"Insert step":["گام را وارد کنید"],"Delete step":["گام را حذف کنید"],"Add image":["افزودن تصویر"],"Enter a step description":["توضیحات مرحله را وارد کنید"],"Enter a description":["توضیحات را وارد کیند"],"Unordered list":["لیست مرتبط نشده"],"Showing step items as an ordered list.":["نمایش گام موارد بعنوان لیست مرتب شده."],"Showing step items as an unordered list":["نمایش گام موارد بعنوان لیست مرتبط نشده"],"Add step":["گام را اضافه کنید"],"Delete total time":["کل زمان را حذف کنید"],"Add total time":["مجموع زمان را اضافه کنید"],"How to":["چگونه"],"How-to":["چگونه"],"Snippet Preview":["پیشنمایش اسنیپ"],"Analysis results":["نتایج آنالیز"],"Enter a focus keyphrase to calculate the SEO score":["کلیدواژه کانونی را برای محاسبه نمره سئو وارد کنید"],"Learn more about Cornerstone Content.":["یادگیری بیشتر درباره محتوای مهم."],"Cornerstone content should be the most important and extensive articles on your site.":["محتوای مهم باید مهمترین و گسترده ترین مقالات سایت شما باشد."],"Add synonyms":["افزودن مترادف"],"Would you like to add keyphrase synonyms?":["آیا میخواهید مترادف‌های کلیدی را اضافه کنید؟"],"Current year":["سال جاری"],"Page":["برگه"],"Tagline":["شعار"],"Modify your meta description by editing it right here":["توضیحات متا را با ویرایش آن درست در اینجا اصلاح کنید"],"ID":["شناسه"],"Separator":["جداکننده"],"Search phrase":["عبارت جستجو"],"Term description":["توضیح شرایط"],"Tag description":["توضیح برچسب"],"Category description":["توضیح دسته"],"Primary category":["دسته اصلی"],"Category":["دسته"],"Excerpt only":["فقط خلاصه"],"Excerpt":["خلاصه"],"Site title":["عنوان سایت"],"Parent title":["عنوان والد"],"Date":["تاریخ"],"Other benefits of %s for you:":["دیگر مزایای %s برای شما:"],"Cornerstone content":["محتوای شاخص"],"24/7 support":["پشتیبانی 24/7"],"Great news: you can, with %1$s!":["خبر خوب: شما می توانید، با %1$s !"],"1 year free updates and upgrades included!":["شامل 1 سال بروز رسانی و ارتقاء رایگان!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sپیش نمایش شبکه های اجتماعی%2$s: فیسبوک و توئیتر"],"Superfast internal links suggestions":["پیشنهادهای خیلی سریع پیوندهای داخلی"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sبدون پیوند شکسته%2$s: مدیریت آسان تغییر مسیر"],"No ads!":["بدون تبلیغات!"],"Please provide a meta description by editing the snippet below.":["لطفا با ویرایش متن زیر توضیحات متا را ارائه دهید."],"Readability analysis":["تجزیه و تحلیل خوانایی"],"Open":["بازکردن"],"Title":["عنوان"],"Creating redirects is a %s feature":["ساخت تغییر مسیرها یک ویژگی %s است"],"Close":["بستن"],"Snippet preview":["پیش نمایش اسنیپت"],"FAQ":["سوالات متداول"],"Settings":["تنظیمات"]}}}
     1{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=1; plural=0;","lang":"fa"},"New step added":["گام جدید اضافه شد"],"New question added":["سوال جدید اضافه شد"],"To be able to create a redirect and fix this issue, you need %1$s. ":["برای اینکه بتوانید یک ریدایرکت ایجاد کنید و این مسئله را حل کنید، به %1$s نیاز دارید"],"You can buy the plugin, including one year of support and updates, on %1$s.":["شما می توانید این افزونه را که شامل یک سال پشتیبانی و بروزرسانی است با %1$s بخرید."],"Free":["رایگان"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":["آیا می دانید %s نیز فرم های مختلف کلمه ای از عبارت کلیدی شما را، مانند چندگانگی و زمان های گذشته، تحلیل می کند؟"],"Help on choosing the perfect focus keyphrase":["راهنمایی در مورد انتخاب بهترین عبارت کلیدی کانونی"],"Would you like to add a related keyphrase?":["آیا می خواهید یک عبارت کلیدی مرتبط اضافه کنید؟"],"Go %s!":["برو به %s!"],"Rank better with synonyms & related keyphrases":["رتبه بهتر با کلمات مترادف و عبارات کلیدی مرتبط است"],"Add related keyphrase":["عبارت کلیدی مرتبط اضافه کنید"],"Get %s":["گرفتن %s"],"Focus keyphrase":["عبارت کلیدی کانونی"],"Learn more about the readability analysis":["یادگیری بیشتر راجع به آنالیز خوانایی"],"Describe the duration of the instruction:":["مدت زمان آموزش را شرح دهید:"],"Optional. Customize how you want to describe the duration of the instruction":["اختیاری. سفارشی‌سازی چگونگی مدت زمان آموزش را شرح دهید"],"%s, %s and %s":["%s, %s و %s"],"%s and %s":["%s و %s"],"%d minute":["%d دقیقه"],"%d hour":["%d ساعت"],"%d day":["%d روز"],"Enter a step title":["عنوان قدم را وارد کنید"],"Optional. This can give you better control over the styling of the steps.":["اختیاری. این می تواند به شما برای بهبود کنترل استایل قدم ها کمک کند."],"CSS class(es) to apply to the steps":["کلاس های css می تواند به قدم‌ها اضافه شود"],"minutes":["دقیقه"],"hours":["ساعت"],"days":["روز"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":["ایجاد به گونه ای که دوستدار سئو باشد. شما تنها می توانید استفاده کنید یک چگونگی بلوک در هر نوشته."],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":["لیست سوالات متداول درباره روش های دوستدار سئو. شما تنها می توانید از یک بلوک FAQ برای هر نوشته استفاده کنید."],"Copy error":["کپی کردن خطا"],"An error occurred loading the %s primary taxonomy picker.":["خطایی در هنگام بارگذاری %s طبقه بندی اولیه طبقه بندی شده رخ داد."],"Time needed:":["زمان مورد نیاز:"],"Move question down":["سوال را به پایین ببرید"],"Move question up":["سوال را به بالا ببرید"],"Insert question":["سؤال را وارد کنید"],"Delete question":["سؤال را حذف کنید"],"Enter the answer to the question":["پاسخ به سوال را وارد کنید"],"Enter a question":["سوال وارد کنید"],"Add question":["سوالی اضافه کنید"],"Frequently Asked Questions":["سوالات متداول"],"Great news: you can, with %s!":["خبر خوب: شما می توانید، با %s!"],"Select the primary %s":["اولویت %s را انتخاب کنید"],"Mark as cornerstone content":["نشانه گذاری بعنوان محتوای مهم"],"Move step down":["حرکت گام به پایین"],"Move step up":["حرکت گام به بالا"],"Insert step":["گام را وارد کنید"],"Delete step":["گام را حذف کنید"],"Add image":["افزودن تصویر"],"Enter a step description":["توضیحات مرحله را وارد کنید"],"Enter a description":["توضیحات را وارد کیند"],"Unordered list":["لیست مرتبط نشده"],"Showing step items as an ordered list.":["نمایش گام موارد بعنوان لیست مرتب شده."],"Showing step items as an unordered list":["نمایش گام موارد بعنوان لیست مرتبط نشده"],"Add step":["گام را اضافه کنید"],"Delete total time":["کل زمان را حذف کنید"],"Add total time":["مجموع زمان را اضافه کنید"],"How to":["چگونه"],"How-to":["چگونه"],"Snippet Preview":["پیشنمایش اسنیپ"],"Analysis results":["نتایج آنالیز"],"Enter a focus keyphrase to calculate the SEO score":["کلیدواژه کانونی را برای محاسبه نمره سئو وارد کنید"],"Learn more about Cornerstone Content.":["یادگیری بیشتر درباره محتوای مهم."],"Cornerstone content should be the most important and extensive articles on your site.":["محتوای مهم باید مهمترین و گسترده ترین مقالات سایت شما باشد."],"Add synonyms":["افزودن مترادف"],"Would you like to add keyphrase synonyms?":["آیا میخواهید مترادف‌های کلیدی را اضافه کنید؟"],"Current year":["سال جاری"],"Page":["برگه"],"Tagline":["شعار"],"Modify your meta description by editing it right here":["توضیحات متا را با ویرایش آن درست در اینجا اصلاح کنید"],"ID":["شناسه"],"Separator":["جداکننده"],"Search phrase":["عبارت جستجو"],"Term description":["توضیح شرایط"],"Tag description":["توضیح برچسب"],"Category description":["توضیح دسته"],"Primary category":["دسته اصلی"],"Category":["دسته"],"Excerpt only":["فقط خلاصه"],"Excerpt":["خلاصه"],"Site title":["عنوان سایت"],"Parent title":["عنوان والد"],"Date":["تاریخ"],"Other benefits of %s for you:":["دیگر مزایای %s برای شما:"],"Cornerstone content":["محتوای شاخص"],"24/7 support":["پشتیبانی 24/7"],"Great news: you can, with %1$s!":["خبر خوب: شما می توانید، با %1$s !"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sپیش نمایش شبکه های اجتماعی%2$s: فیسبوک و توئیتر"],"Superfast internal links suggestions":["پیشنهادهای خیلی سریع پیوندهای داخلی"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sبدون پیوند شکسته%2$s: مدیریت آسان تغییر مسیر"],"No ads!":["بدون تبلیغات!"],"Please provide a meta description by editing the snippet below.":["لطفا با ویرایش متن زیر توضیحات متا را ارائه دهید."],"The name of the person":["نام شخص"],"Readability analysis":["تجزیه و تحلیل خوانایی"],"Open":["بازکردن"],"Title":["عنوان"],"Creating redirects is a %s feature":["ساخت تغییر مسیرها یک ویژگی %s است"],"Close":["بستن"],"Snippet preview":["پیش نمایش اسنیپت"],"FAQ":["سوالات متداول"],"Settings":["تنظیمات"]}}}
  • wordpress-seo/trunk/languages/wordpress-seojs-fr_FR.json

    r2050445 r2065083  
    1 {"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n > 1;","lang":"fr"},"New step added":["Nouvelle étape ajoutée"],"New question added":["Nouvelle question ajoutée"],"To be able to create a redirect and fix this issue, you need %1$s. ":["Pour créer une redirection et corriger ce problème, il vous faut %1$s."],"You can buy the plugin, including one year of support and updates, on %1$s.":["Vous pouvez acheter l’extension, avec un an de support et de mises à jour, sur %1$s."],"Free":["Gratuit"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":["Saviez-vous que %s analyse également les différentes variantes de votre requête, comme le pluriel ou la conjugaison au passé ?"],"Help on choosing the perfect focus keyphrase":["Aide pour obtenir la requête cible parfaite"],"Would you like to add a related keyphrase?":["Souhaiteriez-vous ajouter une variante de requête ?"],"Go %s!":["Passez %s !"],"Rank better with synonyms & related keyphrases":["Soyez plus visible avec des synonymes et des variantes de votre requête"],"Add related keyphrase":["Ajouter une variante"],"Get %s":["%s"],"Focus keyphrase":["Requête cible"],"Learn more about the readability analysis":["Apprenez-en plus sur l’analyse de lisibilité"],"Describe the duration of the instruction:":["Saisissez la durée de cette instruction :"],"Optional. Customize how you want to describe the duration of the instruction":["Optionnel. Personnalisez comment vous voulez décrire cette durée."],"%s, %s and %s":["%s, %s et %s"],"%s and %s":["%s et %s"],"%d minute":["%d minute","%d minutes"],"%d hour":["%d heure","%d heures"],"%d day":["%d jour","%d jours"],"Enter a step title":["Donnez un titre à cette étape"],"Optional. This can give you better control over the styling of the steps.":["Facultatif. Cela vous donne plus de contrôle sur le style des étapes."],"CSS class(es) to apply to the steps":["Classe(s) CSS à appliquer aux étapes"],"minutes":["minutes"],"hours":["heures"],"days":["jours"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":["Créez un tutoriel optimisé pour le référencement. Vous ne pouvez utiliser qu’un seul bloc Tutoriel par publication."],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":["Créez une FAQ optimisée pour le référencement. Vous ne pouvez utiliser qu’un seul bloc FAQ par publication."],"Copy error":["Erreur de copie"],"An error occurred loading the %s primary taxonomy picker.":["Une erreur est survenue pendant le chargement du sélecteur de taxonomie principale de %s."],"Time needed:":["Temps nécessaire :"],"Move question down":["Descendre la question"],"Move question up":["Monter la question"],"Insert question":["Insérer une question"],"Delete question":["Effacer la question"],"Enter the answer to the question":["Saisissez la réponse à la question"],"Enter a question":["Saisissez une question"],"Add question":["Ajouter une question"],"Frequently Asked Questions":["Foire aux questions"],"Great news: you can, with %s!":["Bonne nouvelle : vous le pouvez avec %s !"],"Select the primary %s":["Choisissez la %s principale"],"Move step down":["Faire descendre l’étape"],"Move step up":["Faire monter l’étape"],"Insert step":["Insérer une étape"],"Delete step":["Effacer l’étape"],"Add image":["Ajouter une image"],"Enter a step description":["Saisissez une description d’étape"],"Enter a description":["Saisissez une description"],"Unordered list":["Liste non-ordonnée"],"Showing step items as an ordered list.":["Affichage des étapes comme une liste ordonnée."],"Showing step items as an unordered list":["Affichage des étapes comme une liste non-ordonnée."],"Add step":["Ajouter une étape"],"Delete total time":["Effacer le temps total"],"Add total time":["Ajouter le temps total"],"How to":["Tutoriel"],"How-to":["Tutoriel"],"Snippet Preview":["Édition des métadonnées"],"Analysis results":["Résultats de l’analyse"],"Enter a focus keyphrase to calculate the SEO score":["Saisissez une requête cible pour calculer votre score SEO"],"Learn more about Cornerstone Content.":["En savoir plus sur les contenus Cornerstone."],"Cornerstone content should be the most important and extensive articles on your site.":["Les contenus Cornerstone devraient être les publications les plus importantes et les plus longues de votre site."],"Add synonyms":["Ajouter des synonymes"],"Would you like to add keyphrase synonyms?":["Souhaitez-vous ajouter des requêtes synonymes ?"],"Current year":["Année en cours"],"Page":["Page"],"Tagline":["Slogan"],"Modify your meta description by editing it right here":["Modifiez votre méta description en l’éditant ici"],"ID":["ID"],"Separator":["Séparateur"],"Search phrase":["Phrase de recherche"],"Term description":["Description de l’élément"],"Tag description":["Étiquette du contenu"],"Category description":["Description de la catégorie"],"Primary category":["Catégorie principale"],"Category":["Catégorie"],"Excerpt only":["Extrait seulement"],"Excerpt":["Extrait"],"Site title":["Titre du site"],"Parent title":["Titre parent"],"Date":["Date"],"Other benefits of %s for you:":["Les autres atouts de %s :"],"Cornerstone content":["Contenu Cornestone"],"24/7 support":["Support 24/7"],"Great news: you can, with %1$s!":["Bonne nouvelle : vous pouvez ajouter des variantes de requête, avec %1$s !"],"1 year free updates and upgrades included!":["1 an de mises à jour gratuites inclus !"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sPrévisualisation des médias sociaux%2$s : Facebook & Twitter"],"Superfast internal links suggestions":["Suggestions de liens internes super-rapides"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sPlus jamais de liens morts%2$s : gestionnaire de redirection facile"],"No ads!":["Sans publicités !"],"Please provide a meta description by editing the snippet below.":["Merci de fournir une méta description en modifiant le champ ci-dessous."],"Readability analysis":["Analyse de la lisibilité"],"Open":["Ouvrir"],"Title":["Titre"],"Creating redirects is a %s feature":["la création de redirection est une fonctionnalité de %s."],"Close":["Fermer"],"Snippet preview":["Prévisualisation des métadonnées"],"FAQ":["FAQ"],"Settings":["Réglages"]}}}
     1{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n > 1;","lang":"fr"},"New step added":["Nouvelle étape ajoutée"],"New question added":["Nouvelle question ajoutée"],"To be able to create a redirect and fix this issue, you need %1$s. ":["Pour créer une redirection et corriger ce problème, il vous faut %1$s."],"You can buy the plugin, including one year of support and updates, on %1$s.":["Vous pouvez acheter l’extension, avec un an de support et de mises à jour, sur %1$s."],"Free":["Gratuit"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":["Saviez-vous que %s analyse également les différentes variantes de votre requête, comme le pluriel ou la conjugaison au passé ?"],"Help on choosing the perfect focus keyphrase":["Aide pour obtenir la requête cible parfaite"],"Would you like to add a related keyphrase?":["Souhaiteriez-vous ajouter une variante de requête ?"],"Go %s!":["Passez %s !"],"Rank better with synonyms & related keyphrases":["Soyez plus visible avec des synonymes et des variantes de votre requête"],"Add related keyphrase":["Ajouter une variante"],"Get %s":["%s"],"Focus keyphrase":["Requête cible"],"Learn more about the readability analysis":["Apprenez-en plus sur l’analyse de lisibilité"],"Describe the duration of the instruction:":["Saisissez la durée de cette instruction :"],"Optional. Customize how you want to describe the duration of the instruction":["Optionnel. Personnalisez comment vous voulez décrire cette durée."],"%s, %s and %s":["%s, %s et %s"],"%s and %s":["%s et %s"],"%d minute":["%d minute","%d minutes"],"%d hour":["%d heure","%d heures"],"%d day":["%d jour","%d jours"],"Enter a step title":["Donnez un titre à cette étape"],"Optional. This can give you better control over the styling of the steps.":["Facultatif. Cela vous donne plus de contrôle sur le style des étapes."],"CSS class(es) to apply to the steps":["Classe(s) CSS à appliquer aux étapes"],"minutes":["minutes"],"hours":["heures"],"days":["jours"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":["Créez un tutoriel optimisé pour le référencement. Vous ne pouvez utiliser qu’un seul bloc Tutoriel par publication."],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":["Créez une FAQ optimisée pour le référencement. Vous ne pouvez utiliser qu’un seul bloc FAQ par publication."],"Copy error":["Erreur de copie"],"An error occurred loading the %s primary taxonomy picker.":["Une erreur est survenue pendant le chargement du sélecteur de taxonomie principale de %s."],"Time needed:":["Temps nécessaire :"],"Move question down":["Descendre la question"],"Move question up":["Monter la question"],"Insert question":["Insérer une question"],"Delete question":["Effacer la question"],"Enter the answer to the question":["Saisissez la réponse à la question"],"Enter a question":["Saisissez une question"],"Add question":["Ajouter une question"],"Frequently Asked Questions":["Foire aux questions"],"Great news: you can, with %s!":["Bonne nouvelle : vous le pouvez avec %s !"],"Select the primary %s":["Choisissez la %s principale"],"Mark as cornerstone content":["Marquer comme contenu Cornerstone"],"Move step down":["Faire descendre l’étape"],"Move step up":["Faire monter l’étape"],"Insert step":["Insérer une étape"],"Delete step":["Effacer l’étape"],"Add image":["Ajouter une image"],"Enter a step description":["Saisissez une description d’étape"],"Enter a description":["Saisissez une description"],"Unordered list":["Liste non-ordonnée"],"Showing step items as an ordered list.":["Affichage des étapes comme une liste ordonnée."],"Showing step items as an unordered list":["Affichage des étapes comme une liste non-ordonnée."],"Add step":["Ajouter une étape"],"Delete total time":["Effacer le temps total"],"Add total time":["Ajouter le temps total"],"How to":["Tutoriel"],"How-to":["Tutoriel"],"Snippet Preview":["Édition des métadonnées"],"Analysis results":["Résultats de l’analyse"],"Enter a focus keyphrase to calculate the SEO score":["Saisissez une requête cible pour calculer votre score SEO"],"Learn more about Cornerstone Content.":["En savoir plus sur les contenus Cornerstone."],"Cornerstone content should be the most important and extensive articles on your site.":["Les contenus Cornerstone devraient être les publications les plus importantes et les plus longues de votre site."],"Add synonyms":["Ajouter des synonymes"],"Would you like to add keyphrase synonyms?":["Souhaitez-vous ajouter des requêtes synonymes ?"],"Current year":["Année en cours"],"Page":["Page"],"Tagline":["Slogan"],"Modify your meta description by editing it right here":["Modifiez votre méta description en l’éditant ici"],"ID":["ID"],"Separator":["Séparateur"],"Search phrase":["Phrase de recherche"],"Term description":["Description de l’élément"],"Tag description":["Étiquette du contenu"],"Category description":["Description de la catégorie"],"Primary category":["Catégorie principale"],"Category":["Catégorie"],"Excerpt only":["Extrait seulement"],"Excerpt":["Extrait"],"Site title":["Titre du site"],"Parent title":["Titre parent"],"Date":["Date"],"Other benefits of %s for you:":["Les autres atouts de %s :"],"Cornerstone content":["Contenu Cornestone"],"24/7 support":["Support 24/7"],"Great news: you can, with %1$s!":["Bonne nouvelle : vous pouvez ajouter des variantes de requête, avec %1$s !"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sPrévisualisation des médias sociaux%2$s : Facebook & Twitter"],"Superfast internal links suggestions":["Suggestions de liens internes super-rapides"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sPlus jamais de liens morts%2$s : gestionnaire de redirection facile"],"No ads!":["Sans publicités !"],"Please provide a meta description by editing the snippet below.":["Merci de fournir une méta description en modifiant le champ ci-dessous."],"The name of the person":["Le nom de la personne"],"Readability analysis":["Analyse de la lisibilité"],"Open":["Ouvrir"],"Title":["Titre"],"Creating redirects is a %s feature":["la création de redirection est une fonctionnalité de %s."],"Close":["Fermer"],"Snippet preview":["Prévisualisation des métadonnées"],"FAQ":["FAQ"],"Settings":["Réglages"]}}}
  • wordpress-seo/trunk/languages/wordpress-seojs-gl_ES.json

    r2050445 r2065083  
    1 {"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"gl_ES"},"New step added":["Engadido un novo paso"],"New question added":["Engadida unha nova pregunta"],"To be able to create a redirect and fix this issue, you need %1$s. ":["Para poder crear unha redirección e corrixir este problema necesitas %1$s. "],"You can buy the plugin, including one year of support and updates, on %1$s.":["Podes mercar o plugin, que inclúe un ano de soporte e actualizacións, en %1$s."],"Free":["Gratis"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":["Sabías que %s tamén analiza as distintas variaciones da túa frase clave, como plurais e tempos verbais? "],"Help on choosing the perfect focus keyphrase":["Axuda para elexir a frase clave obxectivo perfecta"],"Would you like to add a related keyphrase?":["Gustaríache engadir unha frase clave relacionada?"],"Go %s!":["Ir a %s! "],"Rank better with synonyms & related keyphrases":["Posiciona mellor con sinónimos e frases clave relacionadas "],"Add related keyphrase":["Engadir frase clave relacionada"],"Get %s":["Consigue %s"],"Focus keyphrase":["Frase clave obxectivo"],"Learn more about the readability analysis":["Obteña máis información sobre Análise de  lexibilidade."],"Describe the duration of the instruction:":["Describe a duración da instrución:"],"Optional. Customize how you want to describe the duration of the instruction":["Opcional. Personaliza como queres describir a duración da instrución"],"%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":["Introduce un título de paso"],"Optional. This can give you better control over the styling of the steps.":["Opcional. Isto pode darlle un mellor control sobre o estilo dos pasos."],"CSS class(es) to apply to the steps":["Clase (s) CSS para aplicar aos pasos"],"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.":["Cre unha guía de instrucións dunha maneira amigable con SEO. Só podes usar un bloque de instrucións por publicación."],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":["Faga unha lista das súas preguntas frecuentes dunha maneira amigable con SEO. Só podes usar un bloque de preguntas frecuentes por publicación."],"Copy error":["Erro de copia"],"An error occurred loading the %s primary taxonomy picker.":["Produciuse un erro ao cargar o selector de taxonomía principal de %s."],"Time needed:":["Tempo necesario:"],"Move question down":["Mover a pregunta abaixo"],"Move question up":["Mover a pregunta cara arriba"],"Insert question":["Inserir pregunta"],"Delete question":["Eliminar pregunta"],"Enter the answer to the question":["Introduce a resposta á pregunta"],"Enter a question":["Introduce unha pregunta"],"Add question":["Engadir pregunta"],"Frequently Asked Questions":["Preguntas frecuentes"],"Great news: you can, with %s!":["Grandes novidades: pode, con %s!"],"Select the primary %s":["Seleccione o %s primario"],"Move step down":["Mover o paso cara a abaixo"],"Move step up":["Mover o paso cara arriba"],"Insert step":["Inserir paso"],"Delete step":["Eliminar paso"],"Add image":["Engadir imaxe"],"Enter a step description":["Ingresar unha descrición de paso"],"Enter a description":["Ingresar unha descrición"],"Unordered list":["Lista desordenada"],"Showing step items as an ordered list.":["Mostrando elementos de paso como unha lista ordenada."],"Showing step items as an unordered list":["Mostrando elementos de paso como unha lista desordenada"],"Add step":["Engadir paso"],"Delete total time":["Eliminar o tempo total"],"Add total time":["Engadir o tempo total"],"How to":["Como"],"How-to":["Como"],"Snippet Preview":["Vista previa do snippet"],"Analysis results":["Resultados da análise"],"Enter a focus keyphrase to calculate the SEO score":["Introduce unha palabra clave para calcular a túa puntuación de SEO"],"Learn more about Cornerstone Content.":["Aprende máis sobre o contido esencial."],"Cornerstone content should be the most important and extensive articles on your site.":["O contido esencial deberían ser os artículos máis importantes e extensos do teu sitio."],"Add synonyms":["Engadir sinónimos"],"Would you like to add keyphrase synonyms?":["Queres engadir sinónimos de palabras clave?"],"Current year":["Ano actual"],"Page":["Paxina"],"Tagline":["Lema"],"Modify your meta description by editing it right here":["Modifique a súa meta descrición  editandoa aquí"],"ID":["ID"],"Separator":["Separador"],"Search phrase":["Frase de búsqueda"],"Term description":["Descrición do termo"],"Tag description":["Descripción da etiqueta"],"Category description":["Descripción da categoría"],"Primary category":["Categoría principal"],"Category":["Categoría"],"Excerpt only":["Só extracto"],"Excerpt":["Fragmento"],"Site title":["Título do sitio"],"Parent title":["Título primario"],"Date":["Data"],"Other benefits of %s for you:":["Outros beneficios de %s para ti:"],"Cornerstone content":["Contido esencial"],"24/7 support":["soporte 24/7"],"Great news: you can, with %1$s!":["Grandes noticias: podes facelo, con %1$s!"],"1 year free updates and upgrades included!":["Inclúe 1 ano de actualizacións gratuítas!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sPrevisualización de redes sociais%2$s: Facebook & Twitter"],"Superfast internal links suggestions":["Suxestións super rápidas de ligazóns internas"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$s non máis ligazóns mortas %2$s: fácil xestor de redireccións"],"No ads!":["Sen anuncios!"],"Please provide a meta description by editing the snippet below.":["Por favor, introduce unha meta descrición editando o snippet de abaixo."],"Readability analysis":["Análise de lexibilidade"],"Open":["Abrir"],"Title":["Título"],"Creating redirects is a %s feature":["A creación de redireccións é unha característica de %s"],"Close":["Pechar"],"Snippet preview":["Vista previa do snippet"],"FAQ":["Preguntas frecuentes"],"Settings":["Axustes"]}}}
     1{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"gl_ES"},"New step added":["Engadido un novo paso"],"New question added":["Engadida unha nova pregunta"],"To be able to create a redirect and fix this issue, you need %1$s. ":["Para poder crear unha redirección e corrixir este problema necesitas %1$s. "],"You can buy the plugin, including one year of support and updates, on %1$s.":["Podes mercar o plugin, que inclúe un ano de soporte e actualizacións, en %1$s."],"Free":["Gratis"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":["Sabías que %s tamén analiza as distintas variaciones da túa frase clave, como plurais e tempos verbais? "],"Help on choosing the perfect focus keyphrase":["Axuda para elexir a frase clave obxectivo perfecta"],"Would you like to add a related keyphrase?":["Gustaríache engadir unha frase clave relacionada?"],"Go %s!":["Ir a %s! "],"Rank better with synonyms & related keyphrases":["Posiciona mellor con sinónimos e frases clave relacionadas "],"Add related keyphrase":["Engadir frase clave relacionada"],"Get %s":["Consigue %s"],"Focus keyphrase":["Frase clave obxectivo"],"Learn more about the readability analysis":["Obteña máis información sobre Análise de  lexibilidade."],"Describe the duration of the instruction:":["Describe a duración da instrución:"],"Optional. Customize how you want to describe the duration of the instruction":["Opcional. Personaliza como queres describir a duración da instrución"],"%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":["Introduce un título de paso"],"Optional. This can give you better control over the styling of the steps.":["Opcional. Isto pode darlle un mellor control sobre o estilo dos pasos."],"CSS class(es) to apply to the steps":["Clase (s) CSS para aplicar aos pasos"],"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.":["Cre unha guía de instrucións dunha maneira amigable con SEO. Só podes usar un bloque de instrucións por publicación."],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":["Faga unha lista das súas preguntas frecuentes dunha maneira amigable con SEO. Só podes usar un bloque de preguntas frecuentes por publicación."],"Copy error":["Erro de copia"],"An error occurred loading the %s primary taxonomy picker.":["Produciuse un erro ao cargar o selector de taxonomía principal de %s."],"Time needed:":["Tempo necesario:"],"Move question down":["Mover a pregunta abaixo"],"Move question up":["Mover a pregunta cara arriba"],"Insert question":["Inserir pregunta"],"Delete question":["Eliminar pregunta"],"Enter the answer to the question":["Introduce a resposta á pregunta"],"Enter a question":["Introduce unha pregunta"],"Add question":["Engadir pregunta"],"Frequently Asked Questions":["Preguntas frecuentes"],"Great news: you can, with %s!":["Grandes novidades: pode, con %s!"],"Select the primary %s":["Seleccione o %s primario"],"Mark as cornerstone content":["Marcar como contido fundamental"],"Move step down":["Mover o paso cara a abaixo"],"Move step up":["Mover o paso cara arriba"],"Insert step":["Inserir paso"],"Delete step":["Eliminar paso"],"Add image":["Engadir imaxe"],"Enter a step description":["Ingresar unha descrición de paso"],"Enter a description":["Ingresar unha descrición"],"Unordered list":["Lista desordenada"],"Showing step items as an ordered list.":["Mostrando elementos de paso como unha lista ordenada."],"Showing step items as an unordered list":["Mostrando elementos de paso como unha lista desordenada"],"Add step":["Engadir paso"],"Delete total time":["Eliminar o tempo total"],"Add total time":["Engadir o tempo total"],"How to":["Como"],"How-to":["Como"],"Snippet Preview":["Vista previa do snippet"],"Analysis results":["Resultados da análise"],"Enter a focus keyphrase to calculate the SEO score":["Introduce unha palabra clave para calcular a túa puntuación de SEO"],"Learn more about Cornerstone Content.":["Aprende máis sobre o contido esencial."],"Cornerstone content should be the most important and extensive articles on your site.":["O contido esencial deberían ser os artículos máis importantes e extensos do teu sitio."],"Add synonyms":["Engadir sinónimos"],"Would you like to add keyphrase synonyms?":["Queres engadir sinónimos de palabras clave?"],"Current year":["Ano actual"],"Page":["Paxina"],"Tagline":["Lema"],"Modify your meta description by editing it right here":["Modifique a súa meta descrición  editandoa aquí"],"ID":["ID"],"Separator":["Separador"],"Search phrase":["Frase de búsqueda"],"Term description":["Descrición do termo"],"Tag description":["Descripción da etiqueta"],"Category description":["Descripción da categoría"],"Primary category":["Categoría principal"],"Category":["Categoría"],"Excerpt only":["Só extracto"],"Excerpt":["Fragmento"],"Site title":["Título do sitio"],"Parent title":["Título primario"],"Date":["Data"],"Other benefits of %s for you:":["Outros beneficios de %s para ti:"],"Cornerstone content":["Contido esencial"],"24/7 support":["soporte 24/7"],"Great news: you can, with %1$s!":["Grandes noticias: podes facelo, con %1$s!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sPrevisualización de redes sociais%2$s: Facebook & Twitter"],"Superfast internal links suggestions":["Suxestións super rápidas de ligazóns internas"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$s non máis ligazóns mortas %2$s: fácil xestor de redireccións"],"No ads!":["Sen anuncios!"],"Please provide a meta description by editing the snippet below.":["Por favor, introduce unha meta descrición editando o snippet de abaixo."],"The name of the person":["O nome da persoa"],"Readability analysis":["Análise de lexibilidade"],"Open":["Abrir"],"Title":["Título"],"Creating redirects is a %s feature":["A creación de redireccións é unha característica de %s"],"Close":["Pechar"],"Snippet preview":["Vista previa do snippet"],"FAQ":["Preguntas frecuentes"],"Settings":["Axustes"]}}}
  • wordpress-seo/trunk/languages/wordpress-seojs-he_IL.json

    r2061403 r2065083  
    1 {"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"he_IL"},"New step added":["נוסף שלב חדש"],"New question added":["נוספה שאלה חדשה"],"To be able to create a redirect and fix this issue, you need %1$s. ":["כדי ליצור הפניה מחדש ולתקן את בעיה זו, אתה צריך %1$s."],"You can buy the plugin, including one year of support and updates, on %1$s.":["אתה יכול לרכוש את התוסף, כולל תמיכה לשנה ועידכונים, ב %1$s."],"Free":["חינם"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":["האם ידעת ש %s גם בוחן את ההבדלים במילת המפתח שלך גם בהטיות של רבים וזמני עבר?"],"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":[],"Describe the duration of the instruction:":[],"Optional. Customize how you want to describe the duration of the instruction":[],"%s, %s and %s":[],"%s and %s":[],"%d minute":[],"%d hour":[],"%d day":[],"Enter a step title":[],"Optional. This can give you better control over the styling of the steps.":[],"CSS class(es) to apply to the steps":[],"minutes":["דקות"],"hours":["שעות"],"days":["ימים"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":[],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":[],"Copy error":[],"An error occurred loading the %s primary taxonomy picker.":[],"Time needed:":["זמן נדרש:"],"Move question down":[],"Move question up":[],"Insert question":[],"Delete question":[],"Enter the answer to the question":[],"Enter a question":[],"Add question":[],"Frequently Asked Questions":[],"Great news: you can, with %s!":[],"Select the primary %s":[],"Move step down":[],"Move step up":[],"Insert step":[],"Delete step":[],"Add image":["הוסף תמונה"],"Enter a step description":[],"Enter a description":["הוסף תיאור"],"Unordered list":[],"Showing step items as an ordered list.":[],"Showing step items as an unordered list":[],"Add step":[],"Delete total time":[],"Add total time":[],"How to":[],"How-to":[],"Snippet Preview":[],"Analysis results":[],"Enter a focus keyphrase to calculate the SEO score":[],"Learn more about Cornerstone Content.":[],"Cornerstone content should be the most important and extensive articles on your site.":[],"Add synonyms":["+ הוסף מילים נרדפות"],"Would you like to add keyphrase synonyms?":["תרצה להוסיף מילים נרדפות למילת המפתח?"],"Current year":["השנה הנוכחית"],"Page":["עמוד"],"Tagline":["שורת תיוג"],"Modify your meta description by editing it right here":["שנה את תיאור המטא שלך על ידי עריכתו כאן"],"ID":[],"Separator":["מפריד"],"Search phrase":["ביטוי חיפוש"],"Term description":["תיאור המונח"],"Tag description":["תיאור תג"],"Category description":["תיאור קטגוריה"],"Primary category":["קטגוריה ראשית"],"Category":["קטגוריה"],"Excerpt only":["קטע בלבד"],"Excerpt":["קטע"],"Site title":["כותרת האתר"],"Parent title":["כותרת האב"],"Date":["תַאֲרִיך"],"Other benefits of %s for you:":["הטבות נוספות של %s בשבילך:"],"Cornerstone content":["תוכן יסודי"],"24/7 support":["תמיכה 24/7"],"Great news: you can, with %1$s!":["חדשות נהדרות: אתה יכול, עם %1$s!"],"1 year free updates and upgrades included!":["כולל שנה חינם של עדכונים ושדרוגים!"],"%1$sSocial media preview%2$s: Facebook & Twitter":[],"Superfast internal links suggestions":["הצעות סופר מהירות לקישורים פנימיים"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sאין יותר קישורים שבורים%2$s: מנהל הפניות קל ונוח לשימוש"],"No ads!":["ללא פרסומות!"],"Please provide a meta description by editing the snippet below.":["אנא ספק תיאור META באמצעות עריכת המקטעון בתחתית."],"Readability analysis":["ניתוח קריאות"],"Open":["פתח"],"Title":["כותרת"],"Creating redirects is a %s feature":["יצירת הפניות היא אפשרות של %s"],"Close":["סגור"],"Snippet preview":["תצוגה מקדימה"],"FAQ":["שאלות נפוצות"],"Settings":["הגדרות"]}}}
     1{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"he_IL"},"New step added":["נוסף שלב חדש"],"New question added":["נוספה שאלה חדשה"],"To be able to create a redirect and fix this issue, you need %1$s. ":["כדי ליצור הפניה מחדש ולתקן את בעיה זו, אתה צריך %1$s."],"You can buy the plugin, including one year of support and updates, on %1$s.":["אתה יכול לרכוש את התוסף, כולל תמיכה לשנה ועידכונים, ב %1$s."],"Free":["חינם"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":["האם ידעת ש %s גם בוחן את ההבדלים במילת המפתח שלך גם בהטיות של רבים וזמני עבר?"],"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":[],"Describe the duration of the instruction:":[],"Optional. Customize how you want to describe the duration of the instruction":[],"%s, %s and %s":[],"%s and %s":[],"%d minute":[],"%d hour":[],"%d day":[],"Enter a step title":[],"Optional. This can give you better control over the styling of the steps.":[],"CSS class(es) to apply to the steps":[],"minutes":["דקות"],"hours":["שעות"],"days":["ימים"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":[],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":[],"Copy error":[],"An error occurred loading the %s primary taxonomy picker.":[],"Time needed:":["זמן נדרש:"],"Move question down":[],"Move question up":[],"Insert question":[],"Delete question":[],"Enter the answer to the question":[],"Enter a question":[],"Add question":[],"Frequently Asked Questions":[],"Great news: you can, with %s!":[],"Select the primary %s":[],"Mark as cornerstone content":[],"Move step down":[],"Move step up":[],"Insert step":[],"Delete step":[],"Add image":["הוסף תמונה"],"Enter a step description":[],"Enter a description":["הוסף תיאור"],"Unordered list":[],"Showing step items as an ordered list.":[],"Showing step items as an unordered list":[],"Add step":[],"Delete total time":[],"Add total time":[],"How to":[],"How-to":[],"Snippet Preview":[],"Analysis results":[],"Enter a focus keyphrase to calculate the SEO score":[],"Learn more about Cornerstone Content.":[],"Cornerstone content should be the most important and extensive articles on your site.":[],"Add synonyms":["+ הוסף מילים נרדפות"],"Would you like to add keyphrase synonyms?":["תרצה להוסיף מילים נרדפות למילת המפתח?"],"Current year":["השנה הנוכחית"],"Page":["עמוד"],"Tagline":["שורת תיוג"],"Modify your meta description by editing it right here":["שנה את תיאור המטא שלך על ידי עריכתו כאן"],"ID":[],"Separator":["מפריד"],"Search phrase":["ביטוי חיפוש"],"Term description":["תיאור המונח"],"Tag description":["תיאור תג"],"Category description":["תיאור קטגוריה"],"Primary category":["קטגוריה ראשית"],"Category":["קטגוריה"],"Excerpt only":["קטע בלבד"],"Excerpt":["קטע"],"Site title":["כותרת האתר"],"Parent title":["כותרת האב"],"Date":["תַאֲרִיך"],"Other benefits of %s for you:":["הטבות נוספות של %s בשבילך:"],"Cornerstone content":["תוכן יסודי"],"24/7 support":["תמיכה 24/7"],"Great news: you can, with %1$s!":["חדשות נהדרות: אתה יכול, עם %1$s!"],"%1$sSocial media preview%2$s: Facebook & Twitter":[],"Superfast internal links suggestions":["הצעות סופר מהירות לקישורים פנימיים"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sאין יותר קישורים שבורים%2$s: מנהל הפניות קל ונוח לשימוש"],"No ads!":["ללא פרסומות!"],"Please provide a meta description by editing the snippet below.":["אנא ספק תיאור META באמצעות עריכת המקטעון בתחתית."],"The name of the person":["השם של הבן אדם"],"Readability analysis":["ניתוח קריאות"],"Open":["פתח"],"Title":["כותרת"],"Creating redirects is a %s feature":["יצירת הפניות היא אפשרות של %s"],"Close":["סגור"],"Snippet preview":["תצוגה מקדימה"],"FAQ":["שאלות נפוצות"],"Settings":["הגדרות"]}}}
  • wordpress-seo/trunk/languages/wordpress-seojs-hr.json

    r2050445 r2065083  
    1 {"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"},"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"],"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"],"Other benefits of %s for you:":["Drugi beneficije %s za vas:"],"Cornerstone content":["Temeljni sadržaj"],"24/7 support":["24/7 podrška"],"Great news: you can, with %1$s!":["Odlične vijesti: možete s %1$s!"],"1 year free updates and upgrades 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"],"Superfast internal links suggestions":["Super brzo predlaganje unutarnjih poveznica"],"%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."],"Readability analysis":["Analiza čitljivosti"],"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"]}}}
     1{"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"},"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"],"Other benefits of %s for you:":["Drugi beneficije %s za vas:"],"Cornerstone content":["Temeljni sadržaj"],"24/7 support":["24/7 podrška"],"Great news: you can, with %1$s!":["Odlične vijesti: možete s %1$s!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sPretpregled društvenih mreža%2$s: Facebook i Twitter"],"Superfast internal links suggestions":["Super brzo predlaganje unutarnjih poveznica"],"%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"],"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"]}}}
  • wordpress-seo/trunk/languages/wordpress-seojs-hu_HU.json

    r2050445 r2065083  
    1 {"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"hu"},"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.":["Megvásárolhatod a bővítményt, mely tartalmazza a %1$s egy éves támogatását és frissítéseket."],"Free":["Ingyenes"],"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":["Kapcsolódó kulcskifejezések hozzáadása"],"Get %s":[],"Focus keyphrase":[],"Learn more about the readability analysis":[],"Describe the duration of the instruction:":[],"Optional. Customize how you want to describe the duration of the instruction":[],"%s, %s and %s":["%s, %s és %s"],"%s and %s":["%s és %s"],"%d minute":["%d perc","%d perc"],"%d hour":["%d óra","%d óra"],"%d day":["%d nap","%d nap"],"Enter a step title":["Adjuk meg a lépés nevét"],"Optional. This can give you better control over the styling of the steps.":["Eredeti. Ez jobb ellenőrzési lehetőséget biztosít a lépések stilizálásához."],"CSS class(es) to apply to the steps":["Alkalmazandó CSS osztály(ok) a lépésekhez"],"minutes":["perc"],"hours":["óra"],"days":["nap"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":[],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":[],"Copy error":["Másolási hiba"],"An error occurred loading the %s primary taxonomy picker.":[],"Time needed:":["Szükséges idő:"],"Move question down":["Kérdés lejjebb hozása"],"Move question up":["Kérdés feljebb hozása"],"Insert question":["Kérdés beszúrása"],"Delete question":["Kérdés törlése"],"Enter the answer to the question":["Írjuk be a kérdésre a választ!"],"Enter a question":["Írj be egy kérdést"],"Add question":["Kérdés hozzáadása"],"Frequently Asked Questions":["Gyakran Ismétlődő Kérdések"],"Great news: you can, with %s!":[],"Select the primary %s":["Válaszd ki az elsődleges %s"],"Move step down":["Egy szinttel lejjebb mozgat"],"Move step up":[],"Insert step":["Lépés beszúrása"],"Delete step":["Lépés törlése"],"Add image":["Kép hozzáadása"],"Enter a step description":["Adj meg egy lépés leírást"],"Enter a description":["Adj hozzá megjegyzést"],"Unordered list":["Rendezetlen lista"],"Showing step items as an ordered list.":[],"Showing step items as an unordered list":[],"Add step":["Lépés hozzáadása"],"Delete total time":["Összes idő törlése"],"Add total time":["Összes idő hozzáadása"],"How to":["Hogyan"],"How-to":["Hogyan"],"Snippet Preview":[],"Analysis results":["Elemzés eredmények"],"Enter a focus keyphrase to calculate the SEO score":["A SEO-pontok kiszámításához Írjon be egy fő kulcskifejezést"],"Learn more about Cornerstone Content.":[],"Cornerstone content should be the most important and extensive articles on your site.":[],"Add synonyms":["+ Szinonímák hozzáadása"],"Would you like to add keyphrase synonyms?":["Szeretne a kulcskifejezéshez szinonimákat megadni?"],"Current year":["Jelenlegi év"],"Page":["Oldal"],"Tagline":["Jelmondat"],"Modify your meta description by editing it right here":["Itt szerkesztve módosíthatod a meta leírásod"],"ID":["ID"],"Separator":["Elválasztó"],"Search phrase":["Kereső kifejezés"],"Term description":["Kifejezés leírása"],"Tag description":["Címke leírása"],"Category description":["Ketegória leírás"],"Primary category":["Elsődleges kategória"],"Category":["Kategória"],"Excerpt only":["Csak kivonat"],"Excerpt":["Kivonat"],"Site title":["Oldal cím"],"Parent title":["Szülő cím"],"Date":["Dátum"],"Other benefits of %s for you:":["A %s további előnyei:"],"Cornerstone content":["Sarokkő-tartalom"],"24/7 support":["24/7 támogatás"],"Great news: you can, with %1$s!":["Jó hír: a %1$s használatával képes rá!"],"1 year free updates and upgrades included!":["Friss verziók és frissítések egy éven át!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sKözösségi média előnézet%2$s: Facebook & Twitter"],"Superfast internal links suggestions":["Superfast belső link javaslatok"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$s Nincs több halott link%2$s: egyszerű átirányítási menedzser"],"No ads!":["Reklámmentes!"],"Please provide a meta description by editing the snippet below.":["Kérjek az alábbi kivonat szerkesztésével adjon meg egy metaleírást."],"Readability analysis":["Olvashatósági elemzés"],"Open":["Megnyitás"],"Title":["Címsor"],"Creating redirects is a %s feature":["Készítsen átirányítást a %s bővítményhez"],"Close":["Bezár"],"Snippet preview":["Keresési találat előnézete"],"FAQ":["GYIK"],"Settings":["Beállítások"]}}}
     1{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"hu"},"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.":["Megvásárolhatod a bővítményt, mely tartalmazza a %1$s egy éves támogatását és frissítéseket."],"Free":["Ingyenes"],"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":["Kapcsolódó kulcskifejezések hozzáadása"],"Get %s":[],"Focus keyphrase":[],"Learn more about the readability analysis":[],"Describe the duration of the instruction:":[],"Optional. Customize how you want to describe the duration of the instruction":[],"%s, %s and %s":["%s, %s és %s"],"%s and %s":["%s és %s"],"%d minute":["%d perc","%d perc"],"%d hour":["%d óra","%d óra"],"%d day":["%d nap","%d nap"],"Enter a step title":["Adjuk meg a lépés nevét"],"Optional. This can give you better control over the styling of the steps.":["Eredeti. Ez jobb ellenőrzési lehetőséget biztosít a lépések stilizálásához."],"CSS class(es) to apply to the steps":["Alkalmazandó CSS osztály(ok) a lépésekhez"],"minutes":["perc"],"hours":["óra"],"days":["nap"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":[],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":[],"Copy error":["Másolási hiba"],"An error occurred loading the %s primary taxonomy picker.":[],"Time needed:":["Szükséges idő:"],"Move question down":["Kérdés lejjebb hozása"],"Move question up":["Kérdés feljebb hozása"],"Insert question":["Kérdés beszúrása"],"Delete question":["Kérdés törlése"],"Enter the answer to the question":["Írjuk be a kérdésre a választ!"],"Enter a question":["Írj be egy kérdést"],"Add question":["Kérdés hozzáadása"],"Frequently Asked Questions":["Gyakran Ismétlődő Kérdések"],"Great news: you can, with %s!":[],"Select the primary %s":["Válaszd ki az elsődleges %s"],"Mark as cornerstone content":[],"Move step down":["Egy szinttel lejjebb mozgat"],"Move step up":[],"Insert step":["Lépés beszúrása"],"Delete step":["Lépés törlése"],"Add image":["Kép hozzáadása"],"Enter a step description":["Adj meg egy lépés leírást"],"Enter a description":["Adj hozzá megjegyzést"],"Unordered list":["Rendezetlen lista"],"Showing step items as an ordered list.":[],"Showing step items as an unordered list":[],"Add step":["Lépés hozzáadása"],"Delete total time":["Összes idő törlése"],"Add total time":["Összes idő hozzáadása"],"How to":["Hogyan"],"How-to":["Hogyan"],"Snippet Preview":[],"Analysis results":["Elemzés eredmények"],"Enter a focus keyphrase to calculate the SEO score":["A SEO-pontok kiszámításához Írjon be egy fő kulcskifejezést"],"Learn more about Cornerstone Content.":[],"Cornerstone content should be the most important and extensive articles on your site.":[],"Add synonyms":["+ Szinonímák hozzáadása"],"Would you like to add keyphrase synonyms?":["Szeretne a kulcskifejezéshez szinonimákat megadni?"],"Current year":["Jelenlegi év"],"Page":["Oldal"],"Tagline":["Jelmondat"],"Modify your meta description by editing it right here":["Itt szerkesztve módosíthatod a meta leírásod"],"ID":["ID"],"Separator":["Elválasztó"],"Search phrase":["Kereső kifejezés"],"Term description":["Kifejezés leírása"],"Tag description":["Címke leírása"],"Category description":["Ketegória leírás"],"Primary category":["Elsődleges kategória"],"Category":["Kategória"],"Excerpt only":["Csak kivonat"],"Excerpt":["Kivonat"],"Site title":["Oldal cím"],"Parent title":["Szülő cím"],"Date":["Dátum"],"Other benefits of %s for you:":["A %s további előnyei:"],"Cornerstone content":["Sarokkő-tartalom"],"24/7 support":["24/7 támogatás"],"Great news: you can, with %1$s!":["Jó hír: a %1$s használatával képes rá!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sKözösségi média előnézet%2$s: Facebook & Twitter"],"Superfast internal links suggestions":["Superfast belső link javaslatok"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$s Nincs több halott link%2$s: egyszerű átirányítási menedzser"],"No ads!":["Reklámmentes!"],"Please provide a meta description by editing the snippet below.":["Kérjek az alábbi kivonat szerkesztésével adjon meg egy metaleírást."],"The name of the person":["A személy neve"],"Readability analysis":["Olvashatósági elemzés"],"Open":["Megnyitás"],"Title":["Címsor"],"Creating redirects is a %s feature":["Készítsen átirányítást a %s bővítményhez"],"Close":["Bezár"],"Snippet preview":["Keresési találat előnézete"],"FAQ":["GYIK"],"Settings":["Beállítások"]}}}
  • wordpress-seo/trunk/languages/wordpress-seojs-it_IT.json

    r2050445 r2065083  
    1 {"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"it"},"New step added":["È stato aggiunto un nuovo passaggio"],"New question added":["È stata aggiunta una nuova domanda"],"To be able to create a redirect and fix this issue, you need %1$s. ":["Per poter creare un reindirizzamento (redirect) e risolvere questo problema, è necessario %1$s."],"You can buy the plugin, including one year of support and updates, on %1$s.":["Puoi acquistare il plug-in, incluso un anno di supporto e aggiornamenti, su %1$s."],"Free":["Gratuito"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":["Sai che %s analizza anche le diverse forme delle tue frasi chiave, come i plurali e i tempi verbali?"],"Help on choosing the perfect focus keyphrase":["Aiuto nella scelta della perfetta frase chiave"],"Would you like to add a related keyphrase?":["Vorresti aggiungere una frase chiave correlata?"],"Go %s!":["Vai %s!"],"Rank better with synonyms & related keyphrases":["Posizionati meglio con i sinonimi e le frasi chiave correlate"],"Add related keyphrase":["Aggiungi una frase chiave correlata"],"Get %s":["Passa a %s"],"Focus keyphrase":["Frase chiave"],"Learn more about the readability analysis":["Leggi di più sull'Analisi di leggibilità. "],"Describe the duration of the instruction:":["Descrivi la durata del processo indicato nelle istruzioni:"],"Optional. Customize how you want to describe the duration of the instruction":["Opzionale. Personalizza come vuoi descrivere la durata del processo indicato nelle istruzioni:"],"%s, %s and %s":["%s, %s e %s"],"%s and %s":["%s e %s"],"%d minute":["%d minuto","%d minuti"],"%d hour":["%d ora","%d ore"],"%d day":["%d giorno","%d giorni"],"Enter a step title":["Inserisci un titolo del passaggio "],"Optional. This can give you better control over the styling of the steps.":["Opzionale. Questo ti fornisce un controllo migliore dello stile dei passaggi. "],"CSS class(es) to apply to the steps":["Classe(i) CSS da applicare ai passaggi "],"minutes":["minuti "],"hours":["ore"],"days":["giorni"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":["Crea una guida How-to in una modalità SEO-friendly. Puoi usare solo un blocco How-to per articolo."],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":["Elenca le tue FAQ (Frequently Asked Questions) in una modalità SEO-friendly. Puoi usare solo un blocco FAQ per articolo. "],"Copy error":["Copia l'errore "],"An error occurred loading the %s primary taxonomy picker.":["Si è verificato un errore durante il caricamento del selettore della tassonomia primaria %s. "],"Time needed:":["Tempo richiesto:"],"Move question down":["Sposta la domanda in basso"],"Move question up":["Sposta la domanda in alto"],"Insert question":["Inserisci domanda"],"Delete question":["Elimina domanda"],"Enter the answer to the question":["Inserisci la risposta alla domanda"],"Enter a question":["Inserisci una domanda"],"Add question":["Aggiungi domanda"],"Frequently Asked Questions":["Domande frequenti"],"Great news: you can, with %s!":["Ottime notizie: puoi con %s!"],"Select the primary %s":["Seleziona il %s primario"],"Move step down":["Sposta passaggio in basso"],"Move step up":["Sposta passaggio in alto"],"Insert step":["Inserisci passaggio"],"Delete step":["Elimina passaggio"],"Add image":["Aggiungi un'immagine"],"Enter a step description":["Inserisci una descrizione del passaggio"],"Enter a description":["Inserisci una descrizione"],"Unordered list":["Lista non ordinata"],"Showing step items as an ordered list.":["Mostra gli elementi del passaggio come un elenco ordinato."],"Showing step items as an unordered list":["Mostra gli elementi del passaggio come un elenco non ordinato"],"Add step":["Aggiungi un passaggio"],"Delete total time":["Elimina il tempo totale"],"Add total time":["Aggiungi il tempo totale"],"How to":["How to"],"How-to":["How-to"],"Snippet Preview":["Anteprima dello Snippet"],"Analysis results":["Risultati dell'analisi"],"Enter a focus keyphrase to calculate the SEO score":["Inserisci una frase chiave per calcolare il punteggio SEO"],"Learn more about Cornerstone Content.":["Ulteriori informazioni sui contenuti Cornerstone."],"Cornerstone content should be the most important and extensive articles on your site.":["I contenuti Cornerstone (contenuti centrali) dovrebbero essere gli articoli più importanti ed esaustivi del tuo sito."],"Add synonyms":["Aggiungi sinonimi"],"Would you like to add keyphrase synonyms?":["Vuoi aggiungere dei sinonimi della frase chiave?"],"Current year":["Anno corrente"],"Page":["Pagina"],"Tagline":["Motto del sito"],"Modify your meta description by editing it right here":["Modifica la tua descrizione meta scrivendola qui"],"ID":["ID"],"Separator":["Separatore"],"Search phrase":["Frase di ricerca"],"Term description":["Descrizione del termine"],"Tag description":["Descrizione del tag"],"Category description":["Descrizione della categoria"],"Primary category":["Categoria primaria"],"Category":["Categoria"],"Excerpt only":["Solo riassunto"],"Excerpt":["Riassunto"],"Site title":["Titolo del sito"],"Parent title":["Titolo genitore"],"Date":["Data"],"Other benefits of %s for you:":["Altri benefici da %s per te:"],"Cornerstone content":["Contenuto Cornerstone (contenuto centrale)"],"24/7 support":["Assistenza 24/7"],"Great news: you can, with %1$s!":["Novità importante: puoi con %1$s! "],"1 year free updates and upgrades included!":["1 anno di aggiornamenti e upgrade gratuiti incluso!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sAnteprima dei social media%2$s: Facebook & Twitter"],"Superfast internal links suggestions":["Suggerimenti super veloci di link interni"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sNiente più link non funzionanti%2$s: easy redirect manager"],"No ads!":["Nessuna pubblicità!"],"Please provide a meta description by editing the snippet below.":["Inserisci una meta descrizione modificando lo snippet sottostante."],"Readability analysis":["Analisi leggibilità"],"Open":["Apri"],"Title":["Titolo"],"Creating redirects is a %s feature":["Creare redirect è una caratteristica di %s"],"Close":["Chiudi"],"Snippet preview":["Anteprima dello snippet"],"FAQ":["FAQ"],"Settings":["Impostazioni"]}}}
     1{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"it"},"New step added":["È stato aggiunto un nuovo passaggio"],"New question added":["È stata aggiunta una nuova domanda"],"To be able to create a redirect and fix this issue, you need %1$s. ":["Per poter creare un reindirizzamento (redirect) e risolvere questo problema, è necessario %1$s."],"You can buy the plugin, including one year of support and updates, on %1$s.":["Puoi acquistare il plug-in, incluso un anno di supporto e aggiornamenti, su %1$s."],"Free":["Gratuito"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":["Sai che %s analizza anche le diverse forme delle tue frasi chiave, come i plurali e i tempi verbali?"],"Help on choosing the perfect focus keyphrase":["Aiuto nella scelta della perfetta frase chiave"],"Would you like to add a related keyphrase?":["Vorresti aggiungere una frase chiave correlata?"],"Go %s!":["Vai %s!"],"Rank better with synonyms & related keyphrases":["Posizionati meglio con i sinonimi e le frasi chiave correlate"],"Add related keyphrase":["Aggiungi una frase chiave correlata"],"Get %s":["Passa a %s"],"Focus keyphrase":["Frase chiave"],"Learn more about the readability analysis":["Leggi di più sull'Analisi di leggibilità. "],"Describe the duration of the instruction:":["Descrivi la durata del processo indicato nelle istruzioni:"],"Optional. Customize how you want to describe the duration of the instruction":["Opzionale. Personalizza come vuoi descrivere la durata del processo indicato nelle istruzioni:"],"%s, %s and %s":["%s, %s e %s"],"%s and %s":["%s e %s"],"%d minute":["%d minuto","%d minuti"],"%d hour":["%d ora","%d ore"],"%d day":["%d giorno","%d giorni"],"Enter a step title":["Inserisci un titolo del passaggio "],"Optional. This can give you better control over the styling of the steps.":["Opzionale. Questo ti fornisce un controllo migliore dello stile dei passaggi. "],"CSS class(es) to apply to the steps":["Classe(i) CSS da applicare ai passaggi "],"minutes":["minuti "],"hours":["ore"],"days":["giorni"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":["Crea una guida How-to in una modalità SEO-friendly. Puoi usare solo un blocco How-to per articolo."],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":["Elenca le tue FAQ (Frequently Asked Questions) in una modalità SEO-friendly. Puoi usare solo un blocco FAQ per articolo. "],"Copy error":["Copia l'errore "],"An error occurred loading the %s primary taxonomy picker.":["Si è verificato un errore durante il caricamento del selettore della tassonomia primaria %s. "],"Time needed:":["Tempo richiesto:"],"Move question down":["Sposta la domanda in basso"],"Move question up":["Sposta la domanda in alto"],"Insert question":["Inserisci domanda"],"Delete question":["Elimina domanda"],"Enter the answer to the question":["Inserisci la risposta alla domanda"],"Enter a question":["Inserisci una domanda"],"Add question":["Aggiungi domanda"],"Frequently Asked Questions":["Domande frequenti"],"Great news: you can, with %s!":["Ottime notizie: puoi con %s!"],"Select the primary %s":["Seleziona il %s primario"],"Mark as cornerstone content":["Indica come contenuto centrale"],"Move step down":["Sposta passaggio in basso"],"Move step up":["Sposta passaggio in alto"],"Insert step":["Inserisci passaggio"],"Delete step":["Elimina passaggio"],"Add image":["Aggiungi un'immagine"],"Enter a step description":["Inserisci una descrizione del passaggio"],"Enter a description":["Inserisci una descrizione"],"Unordered list":["Lista non ordinata"],"Showing step items as an ordered list.":["Mostra gli elementi del passaggio come un elenco ordinato."],"Showing step items as an unordered list":["Mostra gli elementi del passaggio come un elenco non ordinato"],"Add step":["Aggiungi un passaggio"],"Delete total time":["Elimina il tempo totale"],"Add total time":["Aggiungi il tempo totale"],"How to":["How to"],"How-to":["How-to"],"Snippet Preview":["Anteprima dello Snippet"],"Analysis results":["Risultati dell'analisi"],"Enter a focus keyphrase to calculate the SEO score":["Inserisci una frase chiave per calcolare il punteggio SEO"],"Learn more about Cornerstone Content.":["Ulteriori informazioni sui contenuti Cornerstone."],"Cornerstone content should be the most important and extensive articles on your site.":["I contenuti Cornerstone (contenuti centrali) dovrebbero essere gli articoli più importanti ed esaustivi del tuo sito."],"Add synonyms":["Aggiungi sinonimi"],"Would you like to add keyphrase synonyms?":["Vuoi aggiungere dei sinonimi della frase chiave?"],"Current year":["Anno corrente"],"Page":["Pagina"],"Tagline":["Motto del sito"],"Modify your meta description by editing it right here":["Modifica la tua descrizione meta scrivendola qui"],"ID":["ID"],"Separator":["Separatore"],"Search phrase":["Frase di ricerca"],"Term description":["Descrizione del termine"],"Tag description":["Descrizione del tag"],"Category description":["Descrizione della categoria"],"Primary category":["Categoria primaria"],"Category":["Categoria"],"Excerpt only":["Solo riassunto"],"Excerpt":["Riassunto"],"Site title":["Titolo del sito"],"Parent title":["Titolo genitore"],"Date":["Data"],"Other benefits of %s for you:":["Altri benefici da %s per te:"],"Cornerstone content":["Contenuto Cornerstone (contenuto centrale)"],"24/7 support":["Assistenza 24/7"],"Great news: you can, with %1$s!":["Novità importante: puoi con %1$s! "],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sAnteprima dei social media%2$s: Facebook & Twitter"],"Superfast internal links suggestions":["Suggerimenti super veloci di link interni"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sNiente più link non funzionanti%2$s: easy redirect manager"],"No ads!":["Nessuna pubblicità!"],"Please provide a meta description by editing the snippet below.":["Inserisci una meta descrizione modificando lo snippet sottostante."],"The name of the person":["Il nome della persona"],"Readability analysis":["Analisi leggibilità"],"Open":["Apri"],"Title":["Titolo"],"Creating redirects is a %s feature":["Creare redirect è una caratteristica di %s"],"Close":["Chiudi"],"Snippet preview":["Anteprima dello snippet"],"FAQ":["FAQ"],"Settings":["Impostazioni"]}}}
  • wordpress-seo/trunk/languages/wordpress-seojs-ja.json

    r2061403 r2065083  
    1 {"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=1; plural=0;","lang":"ja_JP"},"New step added":["新しいステップを追加しました"],"New question added":["新しい質問を追加しました"],"To be able to create a redirect and fix this issue, you need %1$s. ":["リダイレクトを作成可能にし、問題を修正するには%1$sが必要です。"],"You can buy the plugin, including one year of support and updates, on %1$s.":["%1$s にて、1年間のサポートと更新つきでプラグインを購入することができます。"],"Free":["無料"],"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!":["%sへ移動"],"Rank better with synonyms & related keyphrases":["同義語と関連キーフレーズでのランク向上"],"Add related keyphrase":["関連キーフレーズを追加"],"Get %s":["%s を入手"],"Focus keyphrase":["フォーカスキーフレーズ"],"Learn more about the readability analysis":["可読性分析の詳細"],"Describe the duration of the instruction:":["説明の長さを記述します:"],"Optional. Customize how you want to describe the duration of the instruction":["任意。説明の長さの表示をカスタマイズしましょう。"],"%s, %s and %s":["%sと%s、%s"],"%s and %s":["%sと%s"],"%d minute":["%d分"],"%d hour":["%d時間"],"%d day":["%d日"],"Enter a step title":["ステップのタイトルを入力"],"Optional. This can give you better control over the styling of the steps.":["任意。ステップのスタイリングがより制御しやすくなります。"],"CSS class(es) to apply to the steps":["ステップに適用する CSS クラス"],"minutes":["分"],"hours":["時間"],"days":["日"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":[],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":["よくある質問と回答を SEO フレンドリーな方法でリスト化します。"],"Copy error":["エラー文をコピー"],"An error occurred loading the %s primary taxonomy picker.":[],"Time needed:":["所要時間:"],"Move question down":["質問を下へ移動"],"Move question up":["質問を上へ移動"],"Insert question":["質問の挿入"],"Delete question":["質問を削除"],"Enter the answer to the question":["質問の答えを入力してください"],"Enter a question":["質問を入力"],"Add question":["質問を追加"],"Frequently Asked Questions":["よくあるご質問"],"Great news: you can, with %s!":["朗報: %s で可能です !"],"Select the primary %s":["メイン%sを選択"],"Move step down":["ステップを下へ移動"],"Move step up":["ステップを上へ移動"],"Insert step":["ステップを挿入"],"Delete step":["ステップを削除"],"Add image":["画像を追加"],"Enter a step description":["ステップの説明を入力"],"Enter a description":["ディスクリプションを入力"],"Unordered list":["箇条書きリスト"],"Showing step items as an ordered list.":["ステップ項目を順序付きリストとして表示します。"],"Showing step items as an unordered list":["ステップ項目を箇条書きリストとして表示します。"],"Add step":["ステップを追加"],"Delete total time":["合計時間を削除"],"Add total time":["合計時間を追加"],"How to":["ハウツー"],"How-to":["ハウツー"],"Snippet Preview":["スニペットプレビュー"],"Analysis results":["解析結果"],"Enter a focus keyphrase to calculate the SEO score":["SEO スコアを計算するには、フォーカスするキーフレーズを入力します"],"Learn more about Cornerstone Content.":["コーナーストーンコンテンツについて詳しく知る"],"Cornerstone content should be the most important and extensive articles on your site.":["コーナーストーンコンテンツは、サイト上もっとも重要かつ広がりのある記事にしてください。"],"Add synonyms":["同義語の追加"],"Would you like to add keyphrase synonyms?":["類似キーフレーズを追加しますか ?"],"Current year":["今年"],"Page":["固定ページ"],"Tagline":["タグライン"],"Modify your meta description by editing it right here":["メタディスクリプションの設定をここで編集して変更します"],"ID":["ID"],"Separator":["区切り"],"Search phrase":["検索フレーズ"],"Term description":["ターム説明"],"Tag description":["タグ説明"],"Category description":["カテゴリーの説明"],"Primary category":["メインカテゴリー"],"Category":["カテゴリー"],"Excerpt only":["抜粋のみ"],"Excerpt":["抜粋"],"Site title":["サイトタイトル"],"Parent title":["親タイトル"],"Date":["日付"],"Other benefits of %s for you:":["%s のその他の利点:"],"Cornerstone content":["コーナーストーンコンテンツ"],"24/7 support":["年中無休24時間サポート"],"Great news: you can, with %1$s!":["朗報: %1$s で可能です !"],"1 year free updates and upgrades included!":["1年間の無料更新とアップグレードを含みます。"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sソーシャルメディアのプレビュー%2$s: Facebook & Twitter"],"Superfast internal links suggestions":["超高速な内部リンク提案"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sデッドリンクとは無縁に%2$s: かんたんリダイレクト管理"],"No ads!":["広告なし !"],"Please provide a meta description by editing the snippet below.":["以下のスニペットを編集し、メタディスクリプションを入力してください。"],"Readability analysis":["可読性解析"],"Open":["開く"],"Title":["タイトル"],"Creating redirects is a %s feature":["リダイレクトを設定するのは %s 機能です。"],"Close":["閉じる"],"Snippet preview":["スニペットのプレビュー"],"FAQ":["よくあるご質問"],"Settings":["設定"]}}}
     1{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=1; plural=0;","lang":"ja_JP"},"New step added":["新しいステップを追加しました"],"New question added":["新しい質問を追加しました"],"To be able to create a redirect and fix this issue, you need %1$s. ":["リダイレクトを作成可能にし、問題を修正するには%1$sが必要です。"],"You can buy the plugin, including one year of support and updates, on %1$s.":["%1$s にて、1年間のサポートと更新つきでプラグインを購入することができます。"],"Free":["無料"],"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!":["%sへ移動"],"Rank better with synonyms & related keyphrases":["同義語と関連キーフレーズでのランク向上"],"Add related keyphrase":["関連キーフレーズを追加"],"Get %s":["%s を入手"],"Focus keyphrase":["フォーカスキーフレーズ"],"Learn more about the readability analysis":["可読性分析の詳細"],"Describe the duration of the instruction:":["説明の長さを記述します:"],"Optional. Customize how you want to describe the duration of the instruction":["任意。説明の長さの表示をカスタマイズしましょう。"],"%s, %s and %s":["%sと%s、%s"],"%s and %s":["%sと%s"],"%d minute":["%d分"],"%d hour":["%d時間"],"%d day":["%d日"],"Enter a step title":["ステップのタイトルを入力"],"Optional. This can give you better control over the styling of the steps.":["任意。ステップのスタイリングがより制御しやすくなります。"],"CSS class(es) to apply to the steps":["ステップに適用する CSS クラス"],"minutes":["分"],"hours":["時間"],"days":["日"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":[],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":["よくある質問と回答を SEO フレンドリーな方法でリスト化します。"],"Copy error":["エラー文をコピー"],"An error occurred loading the %s primary taxonomy picker.":[],"Time needed:":["所要時間:"],"Move question down":["質問を下へ移動"],"Move question up":["質問を上へ移動"],"Insert question":["質問の挿入"],"Delete question":["質問を削除"],"Enter the answer to the question":["質問の答えを入力してください"],"Enter a question":["質問を入力"],"Add question":["質問を追加"],"Frequently Asked Questions":["よくあるご質問"],"Great news: you can, with %s!":["朗報: %s で可能です !"],"Select the primary %s":["メイン%sを選択"],"Mark as cornerstone content":["コーナーストーンコンテンツとしてマーク"],"Move step down":["ステップを下へ移動"],"Move step up":["ステップを上へ移動"],"Insert step":["ステップを挿入"],"Delete step":["ステップを削除"],"Add image":["画像を追加"],"Enter a step description":["ステップの説明を入力"],"Enter a description":["ディスクリプションを入力"],"Unordered list":["箇条書きリスト"],"Showing step items as an ordered list.":["ステップ項目を順序付きリストとして表示します。"],"Showing step items as an unordered list":["ステップ項目を箇条書きリストとして表示します。"],"Add step":["ステップを追加"],"Delete total time":["合計時間を削除"],"Add total time":["合計時間を追加"],"How to":["ハウツー"],"How-to":["ハウツー"],"Snippet Preview":["スニペットプレビュー"],"Analysis results":["解析結果"],"Enter a focus keyphrase to calculate the SEO score":["SEO スコアを計算するには、フォーカスするキーフレーズを入力します"],"Learn more about Cornerstone Content.":["コーナーストーンコンテンツについて詳しく知る"],"Cornerstone content should be the most important and extensive articles on your site.":["コーナーストーンコンテンツは、サイト上もっとも重要かつ広がりのある記事にしてください。"],"Add synonyms":["同義語の追加"],"Would you like to add keyphrase synonyms?":["類似キーフレーズを追加しますか ?"],"Current year":["今年"],"Page":["固定ページ"],"Tagline":["タグライン"],"Modify your meta description by editing it right here":["メタディスクリプションの設定をここで編集して変更します"],"ID":["ID"],"Separator":["区切り"],"Search phrase":["検索フレーズ"],"Term description":["ターム説明"],"Tag description":["タグ説明"],"Category description":["カテゴリーの説明"],"Primary category":["メインカテゴリー"],"Category":["カテゴリー"],"Excerpt only":["抜粋のみ"],"Excerpt":["抜粋"],"Site title":["サイトタイトル"],"Parent title":["親タイトル"],"Date":["日付"],"Other benefits of %s for you:":["%s のその他の利点:"],"Cornerstone content":["コーナーストーンコンテンツ"],"24/7 support":["年中無休24時間サポート"],"Great news: you can, with %1$s!":["朗報: %1$s で可能です !"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sソーシャルメディアのプレビュー%2$s: Facebook & Twitter"],"Superfast internal links suggestions":["超高速な内部リンク提案"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sデッドリンクとは無縁に%2$s: かんたんリダイレクト管理"],"No ads!":["広告なし !"],"Please provide a meta description by editing the snippet below.":["以下のスニペットを編集し、メタディスクリプションを入力してください。"],"The name of the person":["人物の名前"],"Readability analysis":["可読性解析"],"Open":["開く"],"Title":["タイトル"],"Creating redirects is a %s feature":["リダイレクトを設定するのは %s 機能です。"],"Close":["閉じる"],"Snippet preview":["スニペットのプレビュー"],"FAQ":["よくあるご質問"],"Settings":["設定"]}}}
  • wordpress-seo/trunk/languages/wordpress-seojs-nb_NO.json

    r2061403 r2065083  
    1 {"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"nb_NO"},"New step added":["Nytt trinn lagt til"],"New question added":["Nytt spørsmål lagt til"],"To be able to create a redirect and fix this issue, you need %1$s. ":["For å opprette en omdirigering og ordne dette problemet behøver du %1$s. "],"You can buy the plugin, including one year of support and updates, on %1$s.":["Du kan kjøpe utvidelsen inkludert ett års brukerstøtte og oppdateringer 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 at %s også analyserer de forskjellige ordformene til nøkkelordene dine, som flertallsformer og fortidsformer?"],"Help on choosing the perfect focus keyphrase":["Hjelp til å velge det perfekte fokusnøkkelord"],"Would you like to add a related keyphrase?":["Vil du legge til relaterte nøkkelord?"],"Go %s!":["Gå %s!"],"Rank better with synonyms & related keyphrases":["Ranger bedre med synonymer og relaterte nøkkelord"],"Add related keyphrase":["Legg til relatert nøkkelord"],"Get %s":["Skaff %s"],"Focus keyphrase":["Fokusnøkkelord"],"Learn more about the readability analysis":["Lær mer om lesbarhetsanalyse"],"Describe the duration of the instruction:":["Beskriv varigheten av instruksjonen:"],"Optional. Customize how you want to describe the duration of the instruction":["Valgfritt. Tilpass hvordan du vil beskrive varigheten av instruksjonen"],"%s, %s and %s":["%s, %s og %s"],"%s and %s":["%s og %s"],"%d minute":["%d minutt","%d minutter"],"%d hour":["%d time","%d timer"],"%d day":["%d dag","%d dager"],"Enter a step title":["Legg til en tittel for trinnet"],"Optional. This can give you better control over the styling of the steps.":["Valgfritt. Dette kan gi deg bedre kontroll over styling av trinnene."],"CSS class(es) to apply to the steps":["CSS klasse(r) å bruke på trinnene"],"minutes":["minutter"],"hours":["timer"],"days":["dager"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":["Opprett en hvordan-veiledning på en SEO-vennlig måte. Du kan bare bruke én slik hvordan-blokk pr. innlegg."],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":["Lag oversikt over dine ofte stilte spørsmål på en SEO-vennlig måte. Du kan bare bruke én FAQ-blokk pr. innlegg."],"Copy error":["Feil ved kopiering"],"An error occurred loading the %s primary taxonomy picker.":["Det oppstod en feil under innlasting av den primære taksonomivelgeren %s."],"Time needed:":["Beregnet tid:"],"Move question down":["Flytt spørsmål ned"],"Move question up":["Flytt spørsmål opp"],"Insert question":["Fyll inn spørsmål"],"Delete question":["Slett spørsmål"],"Enter the answer to the question":["Skriv inn svar på spørsmålet"],"Enter a question":["Fyll inn spørsmålet ditt"],"Add question":["Legg til spørsmål"],"Frequently Asked Questions":["Ofte stilte spørsmål"],"Great news: you can, with %s!":["Gode nyheter: du kan, med %s!"],"Select the primary %s":["Velg hoved-%s"],"Move step down":["Flytt trinn ned"],"Move step up":["Flytt trinn opp"],"Insert step":["Sett inn trinn"],"Delete step":["Slett trinn"],"Add image":["Legg til bilde"],"Enter a step description":["Angi en trinnbeskrivelse"],"Enter a description":["Angi en beskrivelse"],"Unordered list":["Usortert liste"],"Showing step items as an ordered list.":["Viser trinnelementene som en ordnet liste."],"Showing step items as an unordered list":["Viser trinnelementene som en uordnet liste"],"Add step":["Legg til trinn"],"Delete total time":["Slett total tid"],"Add total time":["Legg til total tid"],"How to":["Hvordan"],"How-to":["Hvordan"],"Snippet Preview":["Forhåndsvisning av utdrag"],"Analysis results":["Analyseresultater"],"Enter a focus keyphrase to calculate the SEO score":["Skriv inn fokusnøkkelord for å beregne SEO-poengsummen"],"Learn more about Cornerstone Content.":["Lær mer om hjørnesteinsinnhold."],"Cornerstone content should be the most important and extensive articles on your site.":["Hjørnesteinsinnhold bør være de viktigste og mest omfattende artiklene på nettstedet ditt."],"Add synonyms":["Legg til synonymer"],"Would you like to add keyphrase synonyms?":["Vil du legge til nøkkelord-synonymer?"],"Current year":["Nåværende år"],"Page":["Side"],"Tagline":["Slagord"],"Modify your meta description by editing it right here":["Endre meta beskrivelsen din ved å redigere den her"],"ID":["ID"],"Separator":["Seperator"],"Search phrase":["Søkeuttrykk"],"Term description":["Begrepsbeskrivelse"],"Tag description":["Stikkordbeskrivelse"],"Category description":["Kategoribeskrivelse"],"Primary category":["Primær kategori"],"Category":["Kategori"],"Excerpt only":["Kun utdrag"],"Excerpt":["Utdrag"],"Site title":["Sidetittel"],"Parent title":["Foreldertittel"],"Date":["Dato"],"Other benefits of %s for you:":["Andre fordeler %s gir deg:"],"Cornerstone content":["Hjørnesten-innhold"],"24/7 support":["Døgnåpen brukerstøtte"],"Great news: you can, with %1$s!":["Gode nyheter: Du kan, med %1$s!"],"1 year free updates and upgrades included!":["1 års gratis oppdateringer og oppgraderinger inkludert!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sForhåndsvisning for sosiale medier%2$s: Facebook og Twitter"],"Superfast internal links suggestions":["Superraske forslag til internlenker"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sIngen flere døde lenker%2$s: enkelt verktøy for omdirigeringer"],"No ads!":["Ingen reklame!"],"Please provide a meta description by editing the snippet below.":["Vennligst oppgi en metabeskrivelse ved å redigere tekstutdraget nedenfor."],"Readability analysis":["Lesbarhetsanalyse"],"Open":["Åpen"],"Title":["Tittel"],"Creating redirects is a %s feature":["Å opprette videresendinger er en funksjon som krever %s"],"Close":["Lukk"],"Snippet preview":["Forhåndsvis tekstutdrag"],"FAQ":["Ofte stilte spørsmål (FAQ)"],"Settings":["Innstillinger"]}}}
     1{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"nb_NO"},"New step added":["Nytt trinn lagt til"],"New question added":["Nytt spørsmål lagt til"],"To be able to create a redirect and fix this issue, you need %1$s. ":["For å opprette en omdirigering og ordne dette problemet behøver du %1$s. "],"You can buy the plugin, including one year of support and updates, on %1$s.":["Du kan kjøpe utvidelsen inkludert ett års brukerstøtte og oppdateringer 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 at %s også analyserer de forskjellige ordformene til nøkkelordene dine, som flertallsformer og fortidsformer?"],"Help on choosing the perfect focus keyphrase":["Hjelp til å velge det perfekte fokusnøkkelord"],"Would you like to add a related keyphrase?":["Vil du legge til relaterte nøkkelord?"],"Go %s!":["Gå %s!"],"Rank better with synonyms & related keyphrases":["Ranger bedre med synonymer og relaterte nøkkelord"],"Add related keyphrase":["Legg til relatert nøkkelord"],"Get %s":["Skaff %s"],"Focus keyphrase":["Fokusnøkkelord"],"Learn more about the readability analysis":["Lær mer om lesbarhetsanalyse"],"Describe the duration of the instruction:":["Beskriv varigheten av instruksjonen:"],"Optional. Customize how you want to describe the duration of the instruction":["Valgfritt. Tilpass hvordan du vil beskrive varigheten av instruksjonen"],"%s, %s and %s":["%s, %s og %s"],"%s and %s":["%s og %s"],"%d minute":["%d minutt","%d minutter"],"%d hour":["%d time","%d timer"],"%d day":["%d dag","%d dager"],"Enter a step title":["Legg til en tittel for trinnet"],"Optional. This can give you better control over the styling of the steps.":["Valgfritt. Dette kan gi deg bedre kontroll over styling av trinnene."],"CSS class(es) to apply to the steps":["CSS klasse(r) å bruke på trinnene"],"minutes":["minutter"],"hours":["timer"],"days":["dager"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":["Opprett en hvordan-veiledning på en SEO-vennlig måte. Du kan bare bruke én slik hvordan-blokk pr. innlegg."],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":["Lag oversikt over dine ofte stilte spørsmål på en SEO-vennlig måte. Du kan bare bruke én FAQ-blokk pr. innlegg."],"Copy error":["Feil ved kopiering"],"An error occurred loading the %s primary taxonomy picker.":["Det oppstod en feil under innlasting av den primære taksonomivelgeren %s."],"Time needed:":["Beregnet tid:"],"Move question down":["Flytt spørsmål ned"],"Move question up":["Flytt spørsmål opp"],"Insert question":["Fyll inn spørsmål"],"Delete question":["Slett spørsmål"],"Enter the answer to the question":["Skriv inn svar på spørsmålet"],"Enter a question":["Fyll inn spørsmålet ditt"],"Add question":["Legg til spørsmål"],"Frequently Asked Questions":["Ofte stilte spørsmål"],"Great news: you can, with %s!":["Gode nyheter: du kan, med %s!"],"Select the primary %s":["Velg hoved-%s"],"Mark as cornerstone content":["Merk som hjørnesteinsinnhold"],"Move step down":["Flytt trinn ned"],"Move step up":["Flytt trinn opp"],"Insert step":["Sett inn trinn"],"Delete step":["Slett trinn"],"Add image":["Legg til bilde"],"Enter a step description":["Angi en trinnbeskrivelse"],"Enter a description":["Angi en beskrivelse"],"Unordered list":["Usortert liste"],"Showing step items as an ordered list.":["Viser trinnelementene som en ordnet liste."],"Showing step items as an unordered list":["Viser trinnelementene som en uordnet liste"],"Add step":["Legg til trinn"],"Delete total time":["Slett total tid"],"Add total time":["Legg til total tid"],"How to":["Hvordan"],"How-to":["Hvordan"],"Snippet Preview":["Forhåndsvisning av utdrag"],"Analysis results":["Analyseresultater"],"Enter a focus keyphrase to calculate the SEO score":["Skriv inn fokusnøkkelord for å beregne SEO-poengsummen"],"Learn more about Cornerstone Content.":["Lær mer om hjørnesteinsinnhold."],"Cornerstone content should be the most important and extensive articles on your site.":["Hjørnesteinsinnhold bør være de viktigste og mest omfattende artiklene på nettstedet ditt."],"Add synonyms":["Legg til synonymer"],"Would you like to add keyphrase synonyms?":["Vil du legge til nøkkelord-synonymer?"],"Current year":["Nåværende år"],"Page":["Side"],"Tagline":["Slagord"],"Modify your meta description by editing it right here":["Endre meta beskrivelsen din ved å redigere den her"],"ID":["ID"],"Separator":["Seperator"],"Search phrase":["Søkeuttrykk"],"Term description":["Begrepsbeskrivelse"],"Tag description":["Stikkordbeskrivelse"],"Category description":["Kategoribeskrivelse"],"Primary category":["Primær kategori"],"Category":["Kategori"],"Excerpt only":["Kun utdrag"],"Excerpt":["Utdrag"],"Site title":["Sidetittel"],"Parent title":["Foreldertittel"],"Date":["Dato"],"Other benefits of %s for you:":["Andre fordeler %s gir deg:"],"Cornerstone content":["Hjørnesten-innhold"],"24/7 support":["Døgnåpen brukerstøtte"],"Great news: you can, with %1$s!":["Gode nyheter: Du kan, med %1$s!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sForhåndsvisning for sosiale medier%2$s: Facebook og Twitter"],"Superfast internal links suggestions":["Superraske forslag til internlenker"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sIngen flere døde lenker%2$s: enkelt verktøy for omdirigeringer"],"No ads!":["Ingen reklame!"],"Please provide a meta description by editing the snippet below.":["Vennligst oppgi en metabeskrivelse ved å redigere tekstutdraget nedenfor."],"The name of the person":["Personens navn"],"Readability analysis":["Lesbarhetsanalyse"],"Open":["Åpen"],"Title":["Tittel"],"Creating redirects is a %s feature":["Å opprette videresendinger er en funksjon som krever %s"],"Close":["Lukk"],"Snippet preview":["Forhåndsvis tekstutdrag"],"FAQ":["Ofte stilte spørsmål (FAQ)"],"Settings":["Innstillinger"]}}}
  • wordpress-seo/trunk/languages/wordpress-seojs-nl_BE.json

    r2050445 r2065083  
    1 {"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"nl_BE"},"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":[],"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":[],"Describe the duration of the instruction:":[],"Optional. Customize how you want to describe the duration of the instruction":[],"%s, %s and %s":[],"%s and %s":[],"%d minute":[],"%d hour":[],"%d day":[],"Enter a step title":[],"Optional. This can give you better control over the styling of the steps.":[],"CSS class(es) to apply to the steps":[],"minutes":[],"hours":[],"days":[],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":[],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":[],"Copy error":[],"An error occurred loading the %s primary taxonomy picker.":[],"Time needed:":[],"Move question down":[],"Move question up":[],"Insert question":[],"Delete question":[],"Enter the answer to the question":[],"Enter a question":[],"Add question":[],"Frequently Asked Questions":[],"Great news: you can, with %s!":[],"Select the primary %s":[],"Move step down":[],"Move step up":[],"Insert step":[],"Delete step":[],"Add image":[],"Enter a step description":[],"Enter a description":[],"Unordered list":[],"Showing step items as an ordered list.":[],"Showing step items as an unordered list":[],"Add step":[],"Delete total time":[],"Add total time":[],"How to":[],"How-to":[],"Snippet Preview":[],"Analysis results":[],"Enter a focus keyphrase to calculate the SEO score":[],"Learn more about Cornerstone Content.":[],"Cornerstone content should be the most important and extensive articles on your site.":[],"Add synonyms":[],"Would you like to add keyphrase synonyms?":[],"Current year":[],"Page":[],"Tagline":[],"Modify your meta description by editing it right here":[],"ID":[],"Separator":[],"Search phrase":[],"Term description":[],"Tag description":[],"Category description":[],"Primary category":[],"Category":[],"Excerpt only":[],"Excerpt":[],"Site title":[],"Parent title":[],"Date":[],"Other benefits of %s for you:":["Andere voordelen van %s voor jou:"],"Cornerstone content":["Cornerstone inhoud"],"24/7 support":["24/7-ondersteuning"],"Great news: you can, with %1$s!":["Fantastische nieuws: jij kan het met %1$s!"],"1 year free updates and upgrades included!":["1 jaar gratis bijwerken en nieuwe versies ontvangen is inbegrepen!"],"%1$sSocial media preview%2$s: Facebook & Twitter":[],"Superfast internal links suggestions":["Supersnelle interne link suggesties"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sGeen dode links meer%2$s: makkelijke 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."],"Readability analysis":["Leesbaarheidsanalyse"],"Open":["Open"],"Title":["Titel"],"Creating redirects is a %s feature":["Het creëren van redirects is een %s-functie"],"Close":["Sluiten"],"Snippet preview":["Snippet voorbeeld"],"FAQ":["FAQ"],"Settings":["Instellingen"]}}}
     1{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"nl_BE"},"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":[],"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":[],"Describe the duration of the instruction:":[],"Optional. Customize how you want to describe the duration of the instruction":[],"%s, %s and %s":[],"%s and %s":[],"%d minute":[],"%d hour":[],"%d day":[],"Enter a step title":[],"Optional. This can give you better control over the styling of the steps.":[],"CSS class(es) to apply to the steps":[],"minutes":[],"hours":[],"days":[],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":[],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":[],"Copy error":[],"An error occurred loading the %s primary taxonomy picker.":[],"Time needed:":[],"Move question down":[],"Move question up":[],"Insert question":[],"Delete question":[],"Enter the answer to the question":[],"Enter a question":[],"Add question":[],"Frequently Asked Questions":[],"Great news: you can, with %s!":[],"Select the primary %s":[],"Mark as cornerstone content":[],"Move step down":[],"Move step up":[],"Insert step":[],"Delete step":[],"Add image":[],"Enter a step description":[],"Enter a description":[],"Unordered list":[],"Showing step items as an ordered list.":[],"Showing step items as an unordered list":[],"Add step":[],"Delete total time":[],"Add total time":[],"How to":[],"How-to":[],"Snippet Preview":[],"Analysis results":[],"Enter a focus keyphrase to calculate the SEO score":[],"Learn more about Cornerstone Content.":[],"Cornerstone content should be the most important and extensive articles on your site.":[],"Add synonyms":[],"Would you like to add keyphrase synonyms?":[],"Current year":[],"Page":[],"Tagline":[],"Modify your meta description by editing it right here":[],"ID":[],"Separator":[],"Search phrase":[],"Term description":[],"Tag description":[],"Category description":[],"Primary category":[],"Category":[],"Excerpt only":[],"Excerpt":[],"Site title":[],"Parent title":[],"Date":[],"Other benefits of %s for you:":["Andere voordelen van %s voor jou:"],"Cornerstone content":["Cornerstone inhoud"],"24/7 support":["24/7-ondersteuning"],"Great news: you can, with %1$s!":["Fantastische nieuws: jij kan het met %1$s!"],"%1$sSocial media preview%2$s: Facebook & Twitter":[],"Superfast internal links suggestions":["Supersnelle interne link suggesties"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sGeen dode links meer%2$s: makkelijke 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"],"Open":["Open"],"Title":["Titel"],"Creating redirects is a %s feature":["Het creëren van redirects is een %s-functie"],"Close":["Sluiten"],"Snippet preview":["Snippet voorbeeld"],"FAQ":["FAQ"],"Settings":["Instellingen"]}}}
  • wordpress-seo/trunk/languages/wordpress-seojs-nl_NL.json

    r2050445 r2065083  
    1 {"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"nl"},"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"],"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"],"Other benefits of %s for you:":["Andere voordelen van %s voor jou:"],"Cornerstone content":["Cornerstone content"],"24/7 support":["24/7-ondersteuning"],"Great news: you can, with %1$s!":["Fantastisch nieuws: jij kan het met %1$s!"],"1 year free updates and upgrades included!":["1 jaar gratis bijwerken en nieuwe versies ontvangen is inbegrepen!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sSocial media preview%2$s: Facebook & Twitter"],"Superfast internal links suggestions":["Supersnelle interne-link-suggesties"],"%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."],"Readability analysis":["Leesbaarheidsanalyse"],"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"]}}}
     1{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"nl"},"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"],"Other benefits of %s for you:":["Andere voordelen van %s voor jou:"],"Cornerstone content":["Cornerstone content"],"24/7 support":["24/7-ondersteuning"],"Great news: you can, with %1$s!":["Fantastisch nieuws: jij kan het met %1$s!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sSocial media preview%2$s: Facebook & Twitter"],"Superfast internal links suggestions":["Supersnelle interne-link-suggesties"],"%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"],"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"]}}}
  • wordpress-seo/trunk/languages/wordpress-seojs-pl_PL.json

    r2050445 r2065083  
    1 {"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);","lang":"pl"},"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":[],"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":[],"Describe the duration of the instruction:":["Opisać czas trwania instrukcji:"],"Optional. Customize how you want to describe the duration of the instruction":["Opcjonalnie. Dostosuj sposób, w jaki chcesz opisać czas trwania instrukcji"],"%s, %s and %s":["%s, %s i %s"],"%s and %s":["%s i %s"],"%d minute":["%d min.","%d min.","%d min."],"%d hour":["%d godz.","%d godz.","%d godz."],"%d day":["%d dzień","%d dni","%d dni"],"Enter a step title":["Wpisz tytuł kroku"],"Optional. This can give you better control over the styling of the steps.":["Opcjonalnie. To może dać ci lepszą kontrolę nad wyglądem kroków."],"CSS class(es) to apply to the steps":["Klasa(y) CSS do zastosowania do kroków"],"minutes":["min."],"hours":["godz."],"days":["dni"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":["Stwórz przewodnik w sposób przyjazny dla SEO. Możesz użyć tylko jednego bloku dla każdego wpisu."],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":["Wymień najczęściej zadawane pytania w sposób przyjazny dla SEO. Możesz użyć tylko jednego bloku FAQ na wpis."],"Copy error":["Błąd kopiowania"],"An error occurred loading the %s primary taxonomy picker.":["Wystąpił błąd podczas ładowania głównej taksonomii %s."],"Time needed:":["Potrzebny czas:"],"Move question down":["Przesuń pytanie w dół"],"Move question up":["Przesuń pytanie w górę"],"Insert question":["Wstaw pytanie"],"Delete question":["Usuń pytanie"],"Enter the answer to the question":["Wpisz odpowiedź na pytanie"],"Enter a question":["Wpisz pytanie"],"Add question":["Dodaj pytanie"],"Frequently Asked Questions":["Najczęściej zadawane pytania"],"Great news: you can, with %s!":["Wspaniała wiadomość: możesz, z %s!"],"Select the primary %s":["Wybierz główną %s"],"Move step down":["Przesuń krok w dół"],"Move step up":["Przesuń krok w górę"],"Insert step":["Wstaw krok"],"Delete step":["Usuń krok"],"Add image":["Dodaj obrazek"],"Enter a step description":["Wpisz opis kroku"],"Enter a description":["Wpisz opis"],"Unordered list":["Lista nieuporządkowana"],"Showing step items as an ordered list.":["Pokazuj kroki jako uporządkowaną listę."],"Showing step items as an unordered list":["Pokazuj kroki jako nieuporządkowaną listę."],"Add step":["Dodaj krok"],"Delete total time":["Usuń całkowity czas"],"Add total time":["Dodaj całkowity czas"],"How to":["Instrukcja obsługi"],"How-to":["Instrukcja obsługi"],"Snippet Preview":["Podgląd w wyszukiwarce"],"Analysis results":["Wyniki analizy"],"Enter a focus keyphrase to calculate the SEO score":[],"Learn more about Cornerstone Content.":["Dowiedz się więcej o kluczowych treściach."],"Cornerstone content should be the most important and extensive articles on your site.":["Kluczowa treść to artykuły na twojej stronie, które są najlepsze i najcenniejsze."],"Add synonyms":["Dodaj synonimy"],"Would you like to add keyphrase synonyms?":[],"Current year":["Bieżący rok"],"Page":["Strona"],"Tagline":["Opis strony"],"Modify your meta description by editing it right here":["Zmień opis meta edytując go tutaj"],"ID":["ID"],"Separator":["Separator"],"Search phrase":["Wyszukiwana fraza"],"Term description":["Opis taksonomii"],"Tag description":["Opis tagu"],"Category description":["Opis kategorii"],"Primary category":["Główna kategoria"],"Category":["Kategoria"],"Excerpt only":["Tylko wypis"],"Excerpt":["Wypis"],"Site title":["Tytuł strony"],"Parent title":["Tytuł rodzica"],"Date":["Data"],"Other benefits of %s for you:":["Inne korzyści z używania %s:"],"Cornerstone content":["Kluczowe treści"],"24/7 support":["Wsparcie 24/7"],"Great news: you can, with %1$s!":["Mamy świetną wiadomość: możesz to zrobić z %1$s!"],"1 year free updates and upgrades included!":["Zapewnione darmowe aktualizacje i nowe funkcje przez 1 rok!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sPodgląd w serwisach społecznościowych%2$s: Facebook i Twitter"],"Superfast internal links suggestions":["Superszybkie sugestie linkowania wewnętrznego"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sKoniec z niedziałającymi odnośnikami%2$s: prosty menadżer przekierowań"],"No ads!":["Brak reklam!"],"Please provide a meta description by editing the snippet below.":["Wprowadź opis meta w poniższym polu edytora wyglądu wyników wyszukiwania."],"Readability analysis":["Analiza czytelności"],"Open":["Otwórz"],"Title":["Tytuł"],"Creating redirects is a %s feature":["Tworzenie przekierowań jest funkcją %s"],"Close":["Zamknij"],"Snippet preview":["Podgląd tej strony w wynikach wyszukiwania"],"FAQ":["FAQ"],"Settings":["Ustawienia"]}}}
     1{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);","lang":"pl"},"New step added":["Nowy krok został dodany"],"New question added":["Nowe pytanie zostało dodane"],"To be able to create a redirect and fix this issue, you need %1$s. ":["Aby móc utworzyć przekierowanie i naprawić ten problem, potrzebujesz %1$s."],"You can buy the plugin, including one year of support and updates, on %1$s.":["Możesz kupić tę wtyczkę, wraz z rocznym wsparciem i aktualizacjami na %1$s."],"Free":["Za darmo"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":["Czy wiesz, że %s analizuje również formy słów twojej frazy kluczowej, takie jak liczba mnoga i czas przeszły?"],"Help on choosing the perfect focus keyphrase":["Pomoc przy wyborze najlepszej frazy kluczowej"],"Would you like to add a related keyphrase?":["Czy chcesz dodać podobną frazę kluczową?"],"Go %s!":["Idź do %s!"],"Rank better with synonyms & related keyphrases":["Popraw swoją pozycję używając synonimów i podobnych fraz kluczowych"],"Add related keyphrase":["Dodaj podobną frazę kluczową"],"Get %s":["Kup %s"],"Focus keyphrase":["Fraza kluczowa"],"Learn more about the readability analysis":["Dowiedz się więcej o analizie czytelności"],"Describe the duration of the instruction:":["Opisać czas trwania instrukcji:"],"Optional. Customize how you want to describe the duration of the instruction":["Opcjonalnie. Dostosuj sposób, w jaki chcesz opisać czas trwania instrukcji"],"%s, %s and %s":["%s, %s i %s"],"%s and %s":["%s i %s"],"%d minute":["%d min.","%d min.","%d min."],"%d hour":["%d godz.","%d godz.","%d godz."],"%d day":["%d dzień","%d dni","%d dni"],"Enter a step title":["Wpisz tytuł kroku"],"Optional. This can give you better control over the styling of the steps.":["Opcjonalnie. To może dać ci lepszą kontrolę nad wyglądem kroków."],"CSS class(es) to apply to the steps":["Klasa(y) CSS do zastosowania do kroków"],"minutes":["min."],"hours":["godz."],"days":["dni"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":["Stwórz przewodnik w sposób przyjazny dla SEO. Możesz użyć tylko jednego bloku dla każdego wpisu."],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":["Wymień najczęściej zadawane pytania w sposób przyjazny dla SEO. Możesz użyć tylko jednego bloku FAQ na wpis."],"Copy error":["Błąd kopiowania"],"An error occurred loading the %s primary taxonomy picker.":["Wystąpił błąd podczas ładowania głównej taksonomii %s."],"Time needed:":["Potrzebny czas:"],"Move question down":["Przesuń pytanie w dół"],"Move question up":["Przesuń pytanie w górę"],"Insert question":["Wstaw pytanie"],"Delete question":["Usuń pytanie"],"Enter the answer to the question":["Wpisz odpowiedź na pytanie"],"Enter a question":["Wpisz pytanie"],"Add question":["Dodaj pytanie"],"Frequently Asked Questions":["Najczęściej zadawane pytania"],"Great news: you can, with %s!":["Wspaniała wiadomość: możesz, z %s!"],"Select the primary %s":["Wybierz główną %s"],"Mark as cornerstone content":["Zaznacz jako kluczową treść"],"Move step down":["Przesuń krok w dół"],"Move step up":["Przesuń krok w górę"],"Insert step":["Wstaw krok"],"Delete step":["Usuń krok"],"Add image":["Dodaj obrazek"],"Enter a step description":["Wpisz opis kroku"],"Enter a description":["Wpisz opis"],"Unordered list":["Lista nieuporządkowana"],"Showing step items as an ordered list.":["Pokazuj kroki jako uporządkowaną listę."],"Showing step items as an unordered list":["Pokazuj kroki jako nieuporządkowaną listę."],"Add step":["Dodaj krok"],"Delete total time":["Usuń całkowity czas"],"Add total time":["Dodaj całkowity czas"],"How to":["Instrukcja obsługi"],"How-to":["Instrukcja obsługi"],"Snippet Preview":["Podgląd w wyszukiwarce"],"Analysis results":["Wyniki analizy"],"Enter a focus keyphrase to calculate the SEO score":["Wpisz słowo kluczowe, aby obliczyć swój wynik SEO"],"Learn more about Cornerstone Content.":["Dowiedz się więcej o kluczowych treściach."],"Cornerstone content should be the most important and extensive articles on your site.":["Kluczowa treść to artykuły na twojej stronie, które są najlepsze i najcenniejsze."],"Add synonyms":["Dodaj synonimy"],"Would you like to add keyphrase synonyms?":["Czy chcesz dodać synonimy słowa kluczowego?"],"Current year":["Bieżący rok"],"Page":["Strona"],"Tagline":["Opis strony"],"Modify your meta description by editing it right here":["Zmień opis meta edytując go tutaj"],"ID":["ID"],"Separator":["Separator"],"Search phrase":["Wyszukiwana fraza"],"Term description":["Opis taksonomii"],"Tag description":["Opis tagu"],"Category description":["Opis kategorii"],"Primary category":["Główna kategoria"],"Category":["Kategoria"],"Excerpt only":["Tylko wypis"],"Excerpt":["Wypis"],"Site title":["Tytuł strony"],"Parent title":["Tytuł rodzica"],"Date":["Data"],"Other benefits of %s for you:":["Inne korzyści z używania %s:"],"Cornerstone content":["Kluczowe treści"],"24/7 support":["Wsparcie 24/7"],"Great news: you can, with %1$s!":["Mamy świetną wiadomość: możesz to zrobić z %1$s!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sPodgląd w serwisach społecznościowych%2$s: Facebook i Twitter"],"Superfast internal links suggestions":["Superszybkie sugestie linkowania wewnętrznego"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sKoniec z niedziałającymi odnośnikami%2$s: prosty menadżer przekierowań"],"No ads!":["Brak reklam!"],"Please provide a meta description by editing the snippet below.":["Wprowadź opis meta w poniższym polu edytora wyglądu wyników wyszukiwania."],"The name of the person":["Imię i nazwisko osoby"],"Readability analysis":["Analiza czytelności"],"Open":["Otwórz"],"Title":["Tytuł"],"Creating redirects is a %s feature":["Tworzenie przekierowań jest funkcją %s"],"Close":["Zamknij"],"Snippet preview":["Podgląd tej strony w wynikach wyszukiwania"],"FAQ":["FAQ"],"Settings":["Ustawienia"]}}}
  • wordpress-seo/trunk/languages/wordpress-seojs-pt_BR.json

    r2050445 r2065083  
    1 {"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=(n > 1);","lang":"pt_BR"},"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. ":["Para poder criar um redirecionamento e corrigir esse problema, você precisa %1$s. "],"You can buy the plugin, including one year of support and updates, on %1$s.":["Você pode comprar o plugin, incluindo um ano de suporte e atualizações, em %1$s."],"Free":["Grátis"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":["Você sabia que %s também analisa as diferentes formas de palavras de sua frase-chave, como plurais e tempos passados?"],"Help on choosing the perfect focus keyphrase":["Ajuda sobre a escolha da frase-chave de foco perfeita"],"Would you like to add a related keyphrase?":["Gostaria de adicionar uma frase-chave relacionada?"],"Go %s!":["Vai %s!"],"Rank better with synonyms & related keyphrases":["Posicione melhor com sinônimos e frases-chave relacionadas"],"Add related keyphrase":["Adicionar frase-chave relacionada"],"Get %s":["Obter %s"],"Focus keyphrase":["Frase-chave de foco"],"Learn more about the readability analysis":["Saiba mais sobre a análise de legibilidade"],"Describe the duration of the instruction:":["Descreva a duração da instrução:"],"Optional. Customize how you want to describe the duration of the instruction":["Opcional. Personalize como você quer descrever a duração da instrução"],"%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":["Digite um título para a etapa"],"Optional. This can give you better control over the styling of the steps.":["Opcional. Isso pode lhe dar melhor controle sobre o estilo das etapas."],"CSS class(es) to apply to the steps":["Classe(s) de CSS para aplicar às etapas"],"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.":["Cria um guia de instruções de um jeito favorável a SEO. Você pode usar apenas um bloco de instruções por postagem."],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":["Lista suas Perguntas Frequentes (FAQs) de uma forma favorável a SEO. Você pode usar apenas um bloco de FAQ por post."],"Copy error":["Erro ao copiar"],"An error occurred loading the %s primary taxonomy picker.":["Um erro ocorreu durante o carregando do %s seletor de taxonomia primário."],"Time needed:":["Tempo necessário:"],"Move question down":["Mover pergunta para baixo"],"Move question up":["Mover pergunta para cima"],"Insert question":["Inserir questão"],"Delete question":["Excluir questão"],"Enter the answer to the question":["Digite a resposta para a questão"],"Enter a question":["Digite uma pergunta"],"Add question":["Adicionar questão"],"Frequently Asked Questions":["Perguntas Frequentes"],"Great news: you can, with %s!":["Boas Notícias: você pode, com %s!"],"Select the primary %s":["Selecione o primário %s "],"Move step down":["Mover para baixo"],"Move step up":["Mover para cima"],"Insert step":["Inserir etapa"],"Delete step":["Excluir etapa"],"Add image":["Adicionar imagem"],"Enter a step description":["Digite uma descrição para o passo"],"Enter a description":["Digite uma descrição"],"Unordered list":["Lista não ordenada"],"Showing step items as an ordered list.":["Mostrando itens como uma lista ordenada"],"Showing step items as an unordered list":["Mostrando itens da etapa como uma lista não ordenada"],"Add step":["Adicionar passo"],"Delete total time":["Excluir tempo total"],"Add total time":["Adicionar tempo total"],"How to":["Como"],"How-to":["Como"],"Snippet Preview":["Prévia de amostra"],"Analysis results":["Resultado da análise"],"Enter a focus keyphrase to calculate the SEO score":["Insira uma frase-chave em foco para calcular a sua pontuação em SEO"],"Learn more about Cornerstone Content.":["Saiba mais sobre o conteúdo do Cornerstone."],"Cornerstone content should be the most important and extensive articles on your site.":["O conteúdo Cornerstone deve ser o artigo mais importante e extenso 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 atual"],"Page":["Página"],"Tagline":["Slogan"],"Modify your meta description by editing it right here":["Modifique sua meta descrição editando aqui"],"ID":["ID"],"Separator":["Separador"],"Search phrase":["Frase de busca"],"Term description":["Descrição do termo"],"Tag description":["Descrição da tag"],"Category description":["Descrição da categoria"],"Primary category":["Categoria primária"],"Category":["Categoria"],"Excerpt only":["Somente resumo"],"Excerpt":["Resumo"],"Site title":["Título do site"],"Parent title":["Título do ascendente"],"Date":["Data"],"Other benefits of %s for you:":["Outros benefícios do %s para você:"],"Cornerstone content":["Conteúdo estrutural"],"24/7 support":["Suporte 24 horas, todos os dias"],"Great news: you can, with %1$s!":["Boas novas: você pode, com o %1$s!"],"1 year free updates and upgrades included!":["1 ano de atualizações gratuitas e upgrades incluídos!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sPrévia da Rede Social%2$s: Facebook & Twitter"],"Superfast internal links suggestions":["Sugestões de links internos super-rápidos"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sChega de links quebrados%2$s: gerenciador de redirecionamento simplificado"],"No ads!":["Sem anúncios!"],"Please provide a meta description by editing the snippet below.":["Forneça uma meta-descrição editando a amostra abaixo."],"Readability analysis":["Análise da legibilidade"],"Open":["Abrir"],"Title":["Título"],"Creating redirects is a %s feature":["A criação de redirecionamentos é um recurso do %s"],"Close":["Fechar"],"Snippet preview":["Prévia de amostra"],"FAQ":["FAQ"],"Settings":["Configurações"]}}}
     1{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=(n > 1);","lang":"pt_BR"},"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. ":["Para poder criar um redirecionamento e corrigir esse problema, você precisa %1$s. "],"You can buy the plugin, including one year of support and updates, on %1$s.":["Você pode comprar o plugin, incluindo um ano de suporte e atualizações, em %1$s."],"Free":["Grátis"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":["Você sabia que %s também analisa as diferentes formas de palavras de sua frase-chave, como plurais e tempos passados?"],"Help on choosing the perfect focus keyphrase":["Ajuda sobre a escolha da frase-chave de foco perfeita"],"Would you like to add a related keyphrase?":["Gostaria de adicionar uma frase-chave relacionada?"],"Go %s!":["Vai %s!"],"Rank better with synonyms & related keyphrases":["Posicione melhor com sinônimos e frases-chave relacionadas"],"Add related keyphrase":["Adicionar frase-chave relacionada"],"Get %s":["Obter %s"],"Focus keyphrase":["Frase-chave de foco"],"Learn more about the readability analysis":["Saiba mais sobre a análise de legibilidade"],"Describe the duration of the instruction:":["Descreva a duração da instrução:"],"Optional. Customize how you want to describe the duration of the instruction":["Opcional. Personalize como você quer descrever a duração da instrução"],"%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":["Digite um título para a etapa"],"Optional. This can give you better control over the styling of the steps.":["Opcional. Isso pode lhe dar melhor controle sobre o estilo das etapas."],"CSS class(es) to apply to the steps":["Classe(s) de CSS para aplicar às etapas"],"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.":["Cria um guia de instruções de um jeito favorável a SEO. Você pode usar apenas um bloco de instruções por postagem."],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":["Lista suas Perguntas Frequentes (FAQs) de uma forma favorável a SEO. Você pode usar apenas um bloco de FAQ por post."],"Copy error":["Erro ao copiar"],"An error occurred loading the %s primary taxonomy picker.":["Um erro ocorreu durante o carregando do %s seletor de taxonomia primário."],"Time needed:":["Tempo necessário:"],"Move question down":["Mover pergunta para baixo"],"Move question up":["Mover pergunta para cima"],"Insert question":["Inserir questão"],"Delete question":["Excluir questão"],"Enter the answer to the question":["Digite a resposta para a questão"],"Enter a question":["Digite uma pergunta"],"Add question":["Adicionar questão"],"Frequently Asked Questions":["Perguntas Frequentes"],"Great news: you can, with %s!":["Boas Notícias: você pode, com %s!"],"Select the primary %s":["Selecione o primário %s "],"Mark as cornerstone content":["Marcar como conteúdo de base"],"Move step down":["Mover para baixo"],"Move step up":["Mover para cima"],"Insert step":["Inserir etapa"],"Delete step":["Excluir etapa"],"Add image":["Adicionar imagem"],"Enter a step description":["Digite uma descrição para o passo"],"Enter a description":["Digite uma descrição"],"Unordered list":["Lista não ordenada"],"Showing step items as an ordered list.":["Mostrando itens como uma lista ordenada"],"Showing step items as an unordered list":["Mostrando itens da etapa como uma lista não ordenada"],"Add step":["Adicionar passo"],"Delete total time":["Excluir tempo total"],"Add total time":["Adicionar tempo total"],"How to":["Como"],"How-to":["Como"],"Snippet Preview":["Prévia de amostra"],"Analysis results":["Resultado da análise"],"Enter a focus keyphrase to calculate the SEO score":["Insira uma frase-chave em foco para calcular a sua pontuação em SEO"],"Learn more about Cornerstone Content.":["Saiba mais sobre o conteúdo do Cornerstone."],"Cornerstone content should be the most important and extensive articles on your site.":["O conteúdo Cornerstone deve ser o artigo mais importante e extenso 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 atual"],"Page":["Página"],"Tagline":["Slogan"],"Modify your meta description by editing it right here":["Modifique sua meta descrição editando aqui"],"ID":["ID"],"Separator":["Separador"],"Search phrase":["Frase de busca"],"Term description":["Descrição do termo"],"Tag description":["Descrição da tag"],"Category description":["Descrição da categoria"],"Primary category":["Categoria primária"],"Category":["Categoria"],"Excerpt only":["Somente resumo"],"Excerpt":["Resumo"],"Site title":["Título do site"],"Parent title":["Título do ascendente"],"Date":["Data"],"Other benefits of %s for you:":["Outros benefícios do %s para você:"],"Cornerstone content":["Conteúdo estrutural"],"24/7 support":["Suporte 24 horas, todos os dias"],"Great news: you can, with %1$s!":["Boas novas: você pode, com o %1$s!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sPrévia da Rede Social%2$s: Facebook & Twitter"],"Superfast internal links suggestions":["Sugestões de links internos super-rápidos"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sChega de links quebrados%2$s: gerenciador de redirecionamento simplificado"],"No ads!":["Sem anúncios!"],"Please provide a meta description by editing the snippet below.":["Forneça uma meta-descrição editando a amostra abaixo."],"The name of the person":["O nome da pessoa"],"Readability analysis":["Análise da legibilidade"],"Open":["Abrir"],"Title":["Título"],"Creating redirects is a %s feature":["A criação de redirecionamentos é um recurso do %s"],"Close":["Fechar"],"Snippet preview":["Prévia de amostra"],"FAQ":["FAQ"],"Settings":["Configurações"]}}}
  • wordpress-seo/trunk/languages/wordpress-seojs-pt_PT.json

    r2050445 r2065083  
    1 {"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"pt"},"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"],"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"],"Other benefits of %s for you:":["Outros benefícios do %s para si:"],"Cornerstone content":["Conteúdo principal"],"24/7 support":["Suporte 24/7"],"Great news: you can, with %1$s!":["Boas notícias: é possível com o %1$s!"],"1 year free updates and upgrades included!":["1 ano de actualizações incluídas!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sPré-visualizações das redes sociais%2$s: Facebook e Twitter"],"Superfast internal links suggestions":["Sugestões rápidas para ligações internas"],"%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."],"Readability analysis":["Análise de legibilidade"],"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"]}}}
     1{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"pt"},"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"],"Other benefits of %s for you:":["Outros benefícios do %s para si:"],"Cornerstone content":["Conteúdo principal"],"24/7 support":["Suporte 24/7"],"Great news: you can, with %1$s!":["Boas notícias: é possível com o %1$s!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sPré-visualizações das redes sociais%2$s: Facebook e Twitter"],"Superfast internal links suggestions":["Sugestões rápidas para ligações internas"],"%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"],"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"]}}}
  • wordpress-seo/trunk/languages/wordpress-seojs-ro_RO.json

    r2050445 r2065083  
    1 {"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2);","lang":"ro"},"New step added":["A fost adăugat un pas nou"],"New question added":["A fost adăugată o întrebare nouă"],"To be able to create a redirect and fix this issue, you need %1$s. ":["Pentru a putea crea o redirecționare și a corecta această problemă, ai nevoie de %1$s."],"You can buy the plugin, including one year of support and updates, on %1$s.":["Poți cumpăra modulu, inclusiv un an de suport și actualizări, la %1$s."],"Free":["Gratuit"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":["Știai că %s analizează și alte forme ale cuvintelor frazei cheie, cum ar fi pluralul și participiul trecut?"],"Help on choosing the perfect focus keyphrase":["Ajutor pentru alegerea frazei cheie perfecte"],"Would you like to add a related keyphrase?":["Vrei să adaugi o frază cheie similară?"],"Go %s!":["Fă %s!"],"Rank better with synonyms & related keyphrases":["Te clasezi mai sus cu fraze cheie sinonime și similare"],"Add related keyphrase":["Adaugă fraze cheie similare"],"Get %s":["Ia %s"],"Focus keyphrase":["Frază cheie"],"Learn more about the readability analysis":["Află mai multe despre analiza lizibilității"],"Describe the duration of the instruction:":["Descrie durata instruirii:"],"Optional. Customize how you want to describe the duration of the instruction":["Opțional. Personalizează cum vrei să descrii durata instruirii"],"%s, %s and %s":["%s, %s și %s"],"%s and %s":["%s și %s"],"%d minute":["1 minut","%d minute","%d de minute"],"%d hour":["O oră","%d ore","%d de ore"],"%d day":["O zi","%d zile","%d de zile"],"Enter a step title":["Introdu un titlu pentru pas"],"Optional. This can give you better control over the styling of the steps.":["Opțional. Acest lucru îți poate oferi un control mai bun asupra stilului pașilor."],"CSS class(es) to apply to the steps":["Clasă (clase) CSS de aplicat la pași"],"minutes":["minute"],"hours":["ore"],"days":["zile"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":["Creează un ghid de sfaturi practice într-o manieră prietenoasă pentru SEO. Poți folosi numai un singur bloc Sfaturi practice pentru fiecare articol."],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":["Afișează-ți întrebările frecvente într-o manieră prietenoasă pentru SEO. Poți folosi numai un singur bloc Întrebările frecvente pentru fiecare articol."],"Copy error":["Eroare text"],"An error occurred loading the %s primary taxonomy picker.":["A apărut o eroare la încărcarea selectorului taxonomiei principale %s."],"Time needed:":["Timp necesar:"],"Move question down":["Mută întrebarea în jos"],"Move question up":["Mută întrebarea în sus"],"Insert question":["Inserează întrebarea"],"Delete question":["Șterge întrebarea"],"Enter the answer to the question":["Introdu răspunsul la întrebare"],"Enter a question":["Introdu o întrebare"],"Add question":["Adaugă o întrebare"],"Frequently Asked Questions":["Întrebări frecvente"],"Great news: you can, with %s!":["Vești bune: poți, cu %s!"],"Select the primary %s":["Selectează %s principal"],"Move step down":["Mută pasul în jos"],"Move step up":["Mută pasul în sus"],"Insert step":["Inserează pas"],"Delete step":["Șterge pasul"],"Add image":["Adaugă imagine"],"Enter a step description":["Introdu o descriere pentru pas"],"Enter a description":["Introdu o descriere"],"Unordered list":["Listă neordonată"],"Showing step items as an ordered list.":["Afișez elementele pasului ca listă ordonată."],"Showing step items as an unordered list":["Afișez elementele pasului ca listă neordonată."],"Add step":["Adaugă pas"],"Delete total time":["Șterge timpul total"],"Add total time":["Adaugă timp total"],"How to":["Sfaturi practice"],"How-to":["Sfaturi practice"],"Snippet Preview":["Previzualizare fragment"],"Analysis results":["Rezultate analiză"],"Enter a focus keyphrase to calculate the SEO score":["Introdu o frază cheie pentru a calcula punctajul SEO"],"Learn more about Cornerstone Content.":["Află mai multe despre conținutul fundamental."],"Cornerstone content should be the most important and extensive articles on your site.":["Conținutul fundamental ar trebui să fie cele mai importante și mai ample articole de pe situl tău."],"Add synonyms":["Adaugă sinonime"],"Would you like to add keyphrase synonyms?":["Vrei să adaugi sinonime ale frazei cheie?"],"Current year":["Anul curent"],"Page":["Pagină"],"Tagline":["Slogan"],"Modify your meta description by editing it right here":["Modifică-ți descrierea meta editând-o chiar aici"],"ID":["ID"],"Separator":["Separator"],"Search phrase":["Frază de căutare"],"Term description":["Descriere termen"],"Tag description":["Descriere etichetă"],"Category description":["Descriere categorie"],"Primary category":["Categorie principală"],"Category":["Categorie"],"Excerpt only":["Numai rezumat"],"Excerpt":["Rezumat"],"Site title":["Titlu sit"],"Parent title":["Titlu părinte"],"Date":["Dată"],"Other benefits of %s for you:":["Alte avantaje ale %s pentru tine:"],"Cornerstone content":["Conținut fundamental"],"24/7 support":["Suport 24/7"],"Great news: you can, with %1$s!":["Vești bune: poți, cu %1$s!"],"1 year free updates and upgrades included!":["1 an de actualizări gratuite și incluse!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sPrevizualizare media socială%2$s: Facebook și Twitter"],"Superfast internal links suggestions":["Sugestii de legături interne ultrarapide"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sNicio legătură moartă%2$s: manager de redirecționare simplu"],"No ads!":["Fără anunțuri!"],"Please provide a meta description by editing the snippet below.":["Te rog furnizează o descriere meta prin editarea fragmentului de mai jos."],"Readability analysis":["Analiză lizibilitate"],"Open":["Deschide"],"Title":["Titlu"],"Creating redirects is a %s feature":["Crearea redirecționărilor este o funcționalitate %s"],"Close":["Închide"],"Snippet preview":["Previzualizare fragment"],"FAQ":["Întrebări frecvente"],"Settings":["Setări"]}}}
     1{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2);","lang":"ro"},"New step added":["A fost adăugat un pas nou"],"New question added":["A fost adăugată o întrebare nouă"],"To be able to create a redirect and fix this issue, you need %1$s. ":["Pentru a putea crea o redirecționare și a corecta această problemă, ai nevoie de %1$s."],"You can buy the plugin, including one year of support and updates, on %1$s.":["Poți cumpăra modulu, inclusiv un an de suport și actualizări, la %1$s."],"Free":["Gratuit"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":["Știai că %s analizează și alte forme ale cuvintelor frazei cheie, cum ar fi pluralul și participiul trecut?"],"Help on choosing the perfect focus keyphrase":["Ajutor pentru alegerea frazei cheie perfecte"],"Would you like to add a related keyphrase?":["Vrei să adaugi o frază cheie similară?"],"Go %s!":["Fă %s!"],"Rank better with synonyms & related keyphrases":["Te clasezi mai sus cu fraze cheie sinonime și similare"],"Add related keyphrase":["Adaugă fraze cheie similare"],"Get %s":["Ia %s"],"Focus keyphrase":["Frază cheie"],"Learn more about the readability analysis":["Află mai multe despre analiza lizibilității"],"Describe the duration of the instruction:":["Descrie durata instruirii:"],"Optional. Customize how you want to describe the duration of the instruction":["Opțional. Personalizează cum vrei să descrii durata instruirii"],"%s, %s and %s":["%s, %s și %s"],"%s and %s":["%s și %s"],"%d minute":["1 minut","%d minute","%d de minute"],"%d hour":["O oră","%d ore","%d de ore"],"%d day":["O zi","%d zile","%d de zile"],"Enter a step title":["Introdu un titlu pentru pas"],"Optional. This can give you better control over the styling of the steps.":["Opțional. Acest lucru îți poate oferi un control mai bun asupra stilului pașilor."],"CSS class(es) to apply to the steps":["Clasă (clase) CSS de aplicat la pași"],"minutes":["minute"],"hours":["ore"],"days":["zile"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":["Creează un ghid de sfaturi practice într-o manieră prietenoasă pentru SEO. Poți folosi numai un singur bloc Sfaturi practice pentru fiecare articol."],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":["Afișează-ți întrebările frecvente într-o manieră prietenoasă pentru SEO. Poți folosi numai un singur bloc Întrebările frecvente pentru fiecare articol."],"Copy error":["Eroare text"],"An error occurred loading the %s primary taxonomy picker.":["A apărut o eroare la încărcarea selectorului taxonomiei principale %s."],"Time needed:":["Timp necesar:"],"Move question down":["Mută întrebarea în jos"],"Move question up":["Mută întrebarea în sus"],"Insert question":["Inserează întrebarea"],"Delete question":["Șterge întrebarea"],"Enter the answer to the question":["Introdu răspunsul la întrebare"],"Enter a question":["Introdu o întrebare"],"Add question":["Adaugă o întrebare"],"Frequently Asked Questions":["Întrebări frecvente"],"Great news: you can, with %s!":["Vești bune: poți, cu %s!"],"Select the primary %s":["Selectează %s principal"],"Mark as cornerstone content":["Fă-l conținut fundamental"],"Move step down":["Mută pasul în jos"],"Move step up":["Mută pasul în sus"],"Insert step":["Inserează pas"],"Delete step":["Șterge pasul"],"Add image":["Adaugă imagine"],"Enter a step description":["Introdu o descriere pentru pas"],"Enter a description":["Introdu o descriere"],"Unordered list":["Listă neordonată"],"Showing step items as an ordered list.":["Afișez elementele pasului ca listă ordonată."],"Showing step items as an unordered list":["Afișez elementele pasului ca listă neordonată."],"Add step":["Adaugă pas"],"Delete total time":["Șterge timpul total"],"Add total time":["Adaugă timp total"],"How to":["Sfaturi practice"],"How-to":["Sfaturi practice"],"Snippet Preview":["Previzualizare fragment"],"Analysis results":["Rezultate analiză"],"Enter a focus keyphrase to calculate the SEO score":["Introdu o frază cheie pentru a calcula punctajul SEO"],"Learn more about Cornerstone Content.":["Află mai multe despre conținutul fundamental."],"Cornerstone content should be the most important and extensive articles on your site.":["Conținutul fundamental ar trebui să fie cele mai importante și mai ample articole de pe situl tău."],"Add synonyms":["Adaugă sinonime"],"Would you like to add keyphrase synonyms?":["Vrei să adaugi sinonime ale frazei cheie?"],"Current year":["Anul curent"],"Page":["Pagină"],"Tagline":["Slogan"],"Modify your meta description by editing it right here":["Modifică-ți descrierea meta editând-o chiar aici"],"ID":["ID"],"Separator":["Separator"],"Search phrase":["Frază de căutare"],"Term description":["Descriere termen"],"Tag description":["Descriere etichetă"],"Category description":["Descriere categorie"],"Primary category":["Categorie principală"],"Category":["Categorie"],"Excerpt only":["Numai rezumat"],"Excerpt":["Rezumat"],"Site title":["Titlu sit"],"Parent title":["Titlu părinte"],"Date":["Dată"],"Other benefits of %s for you:":["Alte avantaje ale %s pentru tine:"],"Cornerstone content":["Conținut fundamental"],"24/7 support":["Suport 24/7"],"Great news: you can, with %1$s!":["Vești bune: poți, cu %1$s!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sPrevizualizare media socială%2$s: Facebook și Twitter"],"Superfast internal links suggestions":["Sugestii de legături interne ultrarapide"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sNicio legătură moartă%2$s: manager de redirecționare simplu"],"No ads!":["Fără anunțuri!"],"Please provide a meta description by editing the snippet below.":["Te rog furnizează o descriere meta prin editarea fragmentului de mai jos."],"The name of the person":["Numele persoanei"],"Readability analysis":["Analiză lizibilitate"],"Open":["Deschide"],"Title":["Titlu"],"Creating redirects is a %s feature":["Crearea redirecționărilor este o funcționalitate %s"],"Close":["Închide"],"Snippet preview":["Previzualizare fragment"],"FAQ":["Întrebări frecvente"],"Settings":["Setări"]}}}
  • wordpress-seo/trunk/languages/wordpress-seojs-ru_RU.json

    r2050445 r2065083  
    1 {"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":"ru"},"New step added":["Добавлен новый шаг"],"New question added":["Добавлен новый вопрос"],"To be able to create a redirect and fix this issue, you need %1$s. ":["Чтобы иметь возможность создать редирект и исправить эту проблему, вам нужно %1$s."],"You can buy the plugin, including one year of support and updates, on %1$s.":["Вы можете купить плагин, включая один год поддержки и обновлений, на %1$s."],"Free":["Бесплатно"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":["А вы знаете что %s также анализирует разные формы слов из ключевой фразы, например, множественное число или прошедшее время?"],"Help on choosing the perfect focus keyphrase":["Помощь по выбору идеального фокусного ключевого слова."],"Would you like to add a related keyphrase?":["Хотите добавить похожее ключевое слово?"],"Go %s!":["Перейти %s!"],"Rank better with synonyms & related keyphrases":["Получите лучшую ранжировку с использованием синонимов и похожих ключевых слов"],"Add related keyphrase":["Добавить похожее ключевое слово"],"Get %s":["Получите %s"],"Focus keyphrase":["Фокусное ключевое слово"],"Learn more about the readability analysis":["Подробнее об анализе читаемости"],"Describe the duration of the instruction:":["Опишите длительность инструкции:"],"Optional. Customize how you want to describe the duration of the instruction":["Не обязательно. Настройте то, как вы хотите описать длительность инструкции"],"%s, %s and %s":["%s, %s и %s"],"%s and %s":["%s и %s"],"%d minute":["%d минута","%d минуты","%d минут"],"%d hour":["%d час","%d часа","%d часов"],"%d day":["%d день","%d дня","%d дней"],"Enter a step title":["Введите название шага"],"Optional. This can give you better control over the styling of the steps.":["Необязательно, но это даст вам больший контроль над стилем шагов."],"CSS class(es) to apply to the steps":["CSS класс(ы) применяемые к шагам"],"minutes":["минуты"],"hours":["часы"],"days":["дни"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":["Создавайте ваши Howto-руководства в SEO-оптимизированном виде. Вы можете использовать только 1 блок Howto на запись. "],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":["Создавайте списки ваших Часто Задаваемых Вопросов в SEO-оптимизированном виде. Вы можете использовать только 1 блок FAQ на запись."],"Copy error":["Ошибка копирования"],"An error occurred loading the %s primary taxonomy picker.":["Возникла ошибка загрузки %s выбора основной таксономии."],"Time needed:":["Необходимое время:"],"Move question down":["Переместить вопрос ниже"],"Move question up":["Переместить вопрос выше"],"Insert question":["Вставить вопрос"],"Delete question":["Удалить вопрос"],"Enter the answer to the question":["Введите ответ на вопрос"],"Enter a question":["Введите вопрос"],"Add question":["Добавить вопрос"],"Frequently Asked Questions":["Часто задаваемые вопросы"],"Great news: you can, with %s!":["Отличная новость: вы можете, с %s!"],"Select the primary %s":["Выбрать основной %s"],"Move step down":["Переместить шаг вниз"],"Move step up":["Переместить шаг наверх"],"Insert step":["Вставить шаг"],"Delete step":["Удалить шаг"],"Add image":["Добавить изображение"],"Enter a step description":["Указать описание шага"],"Enter a description":["Указать описание"],"Unordered list":["Несортированый список"],"Showing step items as an ordered list.":["Элементы шагов указаны в упорядоченном списке."],"Showing step items as an unordered list":["Элементы шагов указаны в неупорядоченном списке."],"Add step":["Добавить шаг"],"Delete total time":["Удалить общее время"],"Add total time":["Добавить общее время"],"How to":["How to"],"How-to":["How-to"],"Snippet Preview":["Предварительный просмотр сниппета"],"Analysis results":["Результаты анализа"],"Enter a focus keyphrase to calculate the SEO score":["Введите фокусное ключевое слово для расчета оценки SEO"],"Learn more about Cornerstone Content.":["Узнайте больше про Основное содержимое."],"Cornerstone content should be the most important and extensive articles on your site.":["Основным содержимым должны быть наиболее важные и обширные статьи на вашем сайте."],"Add synonyms":["Добавить синонимы"],"Would you like to add keyphrase synonyms?":["Вы хотите добавить синонимы ключевых слов?"],"Current year":["Этот год"],"Page":["Страница"],"Tagline":["Подзаголовок"],"Modify your meta description by editing it right here":["Измените свое мета-описание, отредактировав его прямо здесь"],"ID":["ID"],"Separator":["Разделитель"],"Search phrase":["Поисковая фраза"],"Term description":["Описание элемента"],"Tag description":["Описание метки"],"Category description":["Описание рубрики"],"Primary category":["Основная рубрика"],"Category":["Рубрика"],"Excerpt only":["Только отрывок"],"Excerpt":["Отрывок"],"Site title":["Название сайта"],"Parent title":["Заголовок родителя"],"Date":["Дата"],"Other benefits of %s for you:":["Другие возможности %s для вас:"],"Cornerstone content":["Ключевое содержимое"],"24/7 support":["Поддержка 24/7"],"Great news: you can, with %1$s!":["Отличные новости: вы можете с %1$s!"],"1 year free updates and upgrades included!":["1 год бесплатных обновлений и улучшений включен!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["Предварительный просмотр %1$sсоциальных медиа%2$s: Facebook и Twitter"],"Superfast internal links suggestions":["Моментально предлагаемые внутренние ссылки"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sБольше никаких мертвых ссылок%2$s: простое управление перенаправлением"],"No ads!":["Без рекламы!"],"Please provide a meta description by editing the snippet below.":["Укажите мета-описание страницы в этом сниппете."],"Readability analysis":["Анализ удобочитаемости"],"Open":["Открыть"],"Title":["Название"],"Creating redirects is a %s feature":["Создание перенаправлений — функция %s"],"Close":["Закрыть"],"Snippet preview":["Просмотр сниппета"],"FAQ":["FAQ"],"Settings":["Настройки"]}}}
     1{"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":"ru"},"New step added":["Добавлен новый шаг"],"New question added":["Добавлен новый вопрос"],"To be able to create a redirect and fix this issue, you need %1$s. ":["Чтобы иметь возможность создать редирект и исправить эту проблему, вам нужно %1$s."],"You can buy the plugin, including one year of support and updates, on %1$s.":["Вы можете купить плагин, включая один год поддержки и обновлений, на %1$s."],"Free":["Бесплатно"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":["А вы знаете что %s также анализирует разные формы слов из ключевой фразы, например, множественное число или прошедшее время?"],"Help on choosing the perfect focus keyphrase":["Помощь по выбору идеального фокусного ключевого слова."],"Would you like to add a related keyphrase?":["Хотите добавить похожее ключевое слово?"],"Go %s!":["Перейти %s!"],"Rank better with synonyms & related keyphrases":["Получите лучшую ранжировку с использованием синонимов и похожих ключевых слов"],"Add related keyphrase":["Добавить похожее ключевое слово"],"Get %s":["Получите %s"],"Focus keyphrase":["Фокусное ключевое слово"],"Learn more about the readability analysis":["Подробнее об анализе читаемости"],"Describe the duration of the instruction:":["Опишите длительность инструкции:"],"Optional. Customize how you want to describe the duration of the instruction":["Не обязательно. Настройте то, как вы хотите описать длительность инструкции"],"%s, %s and %s":["%s, %s и %s"],"%s and %s":["%s и %s"],"%d minute":["%d минута","%d минуты","%d минут"],"%d hour":["%d час","%d часа","%d часов"],"%d day":["%d день","%d дня","%d дней"],"Enter a step title":["Введите название шага"],"Optional. This can give you better control over the styling of the steps.":["Необязательно, но это даст вам больший контроль над стилем шагов."],"CSS class(es) to apply to the steps":["CSS класс(ы) применяемые к шагам"],"minutes":["минуты"],"hours":["часы"],"days":["дни"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":["Создавайте ваши Howto-руководства в SEO-оптимизированном виде. Вы можете использовать только 1 блок Howto на запись. "],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":["Создавайте списки ваших Часто Задаваемых Вопросов в SEO-оптимизированном виде. Вы можете использовать только 1 блок FAQ на запись."],"Copy error":["Ошибка копирования"],"An error occurred loading the %s primary taxonomy picker.":["Возникла ошибка загрузки %s выбора основной таксономии."],"Time needed:":["Необходимое время:"],"Move question down":["Переместить вопрос ниже"],"Move question up":["Переместить вопрос выше"],"Insert question":["Вставить вопрос"],"Delete question":["Удалить вопрос"],"Enter the answer to the question":["Введите ответ на вопрос"],"Enter a question":["Введите вопрос"],"Add question":["Добавить вопрос"],"Frequently Asked Questions":["Часто задаваемые вопросы"],"Great news: you can, with %s!":["Отличная новость: вы можете, с %s!"],"Select the primary %s":["Выбрать основной %s"],"Mark as cornerstone content":["Отметить как основное содержимое"],"Move step down":["Переместить шаг вниз"],"Move step up":["Переместить шаг наверх"],"Insert step":["Вставить шаг"],"Delete step":["Удалить шаг"],"Add image":["Добавить изображение"],"Enter a step description":["Указать описание шага"],"Enter a description":["Указать описание"],"Unordered list":["Несортированый список"],"Showing step items as an ordered list.":["Элементы шагов указаны в упорядоченном списке."],"Showing step items as an unordered list":["Элементы шагов указаны в неупорядоченном списке."],"Add step":["Добавить шаг"],"Delete total time":["Удалить общее время"],"Add total time":["Добавить общее время"],"How to":["How to"],"How-to":["How-to"],"Snippet Preview":["Предварительный просмотр сниппета"],"Analysis results":["Результаты анализа"],"Enter a focus keyphrase to calculate the SEO score":["Введите фокусное ключевое слово для расчета оценки SEO"],"Learn more about Cornerstone Content.":["Узнайте больше про Основное содержимое."],"Cornerstone content should be the most important and extensive articles on your site.":["Основным содержимым должны быть наиболее важные и обширные статьи на вашем сайте."],"Add synonyms":["Добавить синонимы"],"Would you like to add keyphrase synonyms?":["Вы хотите добавить синонимы ключевых слов?"],"Current year":["Этот год"],"Page":["Страница"],"Tagline":["Подзаголовок"],"Modify your meta description by editing it right here":["Измените свое мета-описание, отредактировав его прямо здесь"],"ID":["ID"],"Separator":["Разделитель"],"Search phrase":["Поисковая фраза"],"Term description":["Описание элемента"],"Tag description":["Описание метки"],"Category description":["Описание рубрики"],"Primary category":["Основная рубрика"],"Category":["Рубрика"],"Excerpt only":["Только отрывок"],"Excerpt":["Отрывок"],"Site title":["Название сайта"],"Parent title":["Заголовок родителя"],"Date":["Дата"],"Other benefits of %s for you:":["Другие возможности %s для вас:"],"Cornerstone content":["Ключевое содержимое"],"24/7 support":["Поддержка 24/7"],"Great news: you can, with %1$s!":["Отличные новости: вы можете с %1$s!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["Предварительный просмотр %1$sсоциальных медиа%2$s: Facebook и Twitter"],"Superfast internal links suggestions":["Моментально предлагаемые внутренние ссылки"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sБольше никаких мертвых ссылок%2$s: простое управление перенаправлением"],"No ads!":["Без рекламы!"],"Please provide a meta description by editing the snippet below.":["Укажите мета-описание страницы в этом сниппете."],"The name of the person":["Имя лица"],"Readability analysis":["Анализ удобочитаемости"],"Open":["Открыть"],"Title":["Название"],"Creating redirects is a %s feature":["Создание перенаправлений — функция %s"],"Close":["Закрыть"],"Snippet preview":["Просмотр сниппета"],"FAQ":["FAQ"],"Settings":["Настройки"]}}}
  • wordpress-seo/trunk/languages/wordpress-seojs-sk_SK.json

    r2061403 r2065083  
    1 {"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;","lang":"sk"},"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.":["Môžete si zakúpiť plugin, ktorý zahŕňa a podporu na 1 rok na %1$s."],"Free":["Zadarmo"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":["Vedeli ste, že %s analyzuje aj rôzne tvary slov vo vašej kľúčovej fráze, ako napríklad množné čísla a minulé časy?"],"Help on choosing the perfect focus keyphrase":[],"Would you like to add a related keyphrase?":["Chceli by ste pridať súvisiacu kľúčovú frázu?"],"Go %s!":[],"Rank better with synonyms & related keyphrases":[],"Add related keyphrase":["Pridať podobnú kľúčovú frázu"],"Get %s":[],"Focus keyphrase":[],"Learn more about the readability analysis":["Prečítajte si viac o Analýze čitateľnosti."],"Describe the duration of the instruction:":[],"Optional. Customize how you want to describe the duration of the instruction":[],"%s, %s and %s":["%s, %s a %s"],"%s and %s":["%s a %s"],"%d minute":["%d minúta","%d minúty","%d minút"],"%d hour":["%d hodina","%d hodiny","%d hodín"],"%d day":["%d deň","%d dni","%d dní"],"Enter a step title":[],"Optional. This can give you better control over the styling of the steps.":[],"CSS class(es) to apply to the steps":[],"minutes":["minúty"],"hours":[],"days":[],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":[],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":[],"Copy error":["Kopírovať chybu"],"An error occurred loading the %s primary taxonomy picker.":[],"Time needed:":["Potrebný čas:"],"Move question down":["Presunúť otázku nižšie"],"Move question up":["Presunúť otázku vyššie"],"Insert question":["Vložiť otázku"],"Delete question":["Zmazať otázku"],"Enter the answer to the question":["Vložiť odpoveď na otázku"],"Enter a question":["Zadať otázku"],"Add question":["Pridať otázku"],"Frequently Asked Questions":["Najčastejšie otázky"],"Great news: you can, with %s!":["Dobrá správa: môžte, s %s!"],"Select the primary %s":["Vyberte primárnu %s"],"Move step down":["Posunúť krok nadol"],"Move step up":["Posunúť krok nahor"],"Insert step":["Vložiť krok"],"Delete step":["Zmazať krok"],"Add image":["Pridať obrázok"],"Enter a step description":[],"Enter a description":["Zadajte popis"],"Unordered list":[],"Showing step items as an ordered list.":[],"Showing step items as an unordered list":[],"Add step":["Pridať krok"],"Delete total time":["Zmazať celkový čas"],"Add total time":["Pridať celkový čas"],"How to":[],"How-to":[],"Snippet Preview":[],"Analysis results":["Výsledky analýzy"],"Enter a focus keyphrase to calculate the SEO score":[],"Learn more about Cornerstone Content.":["Zisti viac o Cornerstone Content. "],"Cornerstone content should be the most important and extensive articles on your site.":[],"Add synonyms":["+ Pridaj synonymum"],"Would you like to add keyphrase synonyms?":["Chcete pridať synonymá pre kľúčové slová?"],"Current year":["Current year"],"Page":["Stránka"],"Tagline":["Značka"],"Modify your meta description by editing it right here":["Upravte váš meta popis priamou editáciou tu."],"ID":["ID"],"Separator":["Oddeľovač"],"Search phrase":["Vyhľadávaná fráza"],"Term description":[],"Tag description":[],"Category description":["Popis kategórie"],"Primary category":["Primárna kategória"],"Category":["Kategória"],"Excerpt only":[],"Excerpt":[],"Site title":["Názov webovej stránky"],"Parent title":[],"Date":["Dátum"],"Other benefits of %s for you:":["Ďalšie výhody %s pre vás:"],"Cornerstone content":["Kľúčový obsah"],"24/7 support":["24/7 podpora"],"Great news: you can, with %1$s!":["Skvelá správa: môžete s %1$s!"],"1 year free updates and upgrades included!":["1 rok zdarma aktualizácie a vylepšenia v cene!"],"%1$sSocial media preview%2$s: Facebook & Twitter":[],"Superfast internal links suggestions":["Návrhy rýchlych interných odkazov"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sŽiadne mŕtve linky%2$s: jednoduchý manažér presmerovania"],"No ads!":["Žiadne reklamy!"],"Please provide a meta description by editing the snippet below.":["Prosím zadajte meta popis úpravou úryvku nižšie."],"Readability analysis":["Analýza čitateľnosti"],"Open":["Otvoriť"],"Title":["Nadpis"],"Creating redirects is a %s feature":[],"Close":["Zatvoriť"],"Snippet preview":{"0":"Náhľad snippetu","2":""},"FAQ":["Časté otázky"],"Settings":["Nastavenia"]}}}
     1{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;","lang":"sk"},"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.":["Môžete si zakúpiť plugin, ktorý zahŕňa a podporu na 1 rok na %1$s."],"Free":["Zadarmo"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":["Vedeli ste, že %s analyzuje aj rôzne tvary slov vo vašej kľúčovej fráze, ako napríklad množné čísla a minulé časy?"],"Help on choosing the perfect focus keyphrase":[],"Would you like to add a related keyphrase?":["Chceli by ste pridať súvisiacu kľúčovú frázu?"],"Go %s!":[],"Rank better with synonyms & related keyphrases":[],"Add related keyphrase":["Pridať podobnú kľúčovú frázu"],"Get %s":[],"Focus keyphrase":[],"Learn more about the readability analysis":["Prečítajte si viac o Analýze čitateľnosti."],"Describe the duration of the instruction:":[],"Optional. Customize how you want to describe the duration of the instruction":[],"%s, %s and %s":["%s, %s a %s"],"%s and %s":["%s a %s"],"%d minute":["%d minúta","%d minúty","%d minút"],"%d hour":["%d hodina","%d hodiny","%d hodín"],"%d day":["%d deň","%d dni","%d dní"],"Enter a step title":[],"Optional. This can give you better control over the styling of the steps.":[],"CSS class(es) to apply to the steps":[],"minutes":["minúty"],"hours":[],"days":[],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":[],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":[],"Copy error":["Kopírovať chybu"],"An error occurred loading the %s primary taxonomy picker.":[],"Time needed:":["Potrebný čas:"],"Move question down":["Presunúť otázku nižšie"],"Move question up":["Presunúť otázku vyššie"],"Insert question":["Vložiť otázku"],"Delete question":["Zmazať otázku"],"Enter the answer to the question":["Vložiť odpoveď na otázku"],"Enter a question":["Zadať otázku"],"Add question":["Pridať otázku"],"Frequently Asked Questions":["Najčastejšie otázky"],"Great news: you can, with %s!":["Dobrá správa: môžte, s %s!"],"Select the primary %s":["Vyberte primárnu %s"],"Mark as cornerstone content":[],"Move step down":["Posunúť krok nadol"],"Move step up":["Posunúť krok nahor"],"Insert step":["Vložiť krok"],"Delete step":["Zmazať krok"],"Add image":["Pridať obrázok"],"Enter a step description":[],"Enter a description":["Zadajte popis"],"Unordered list":[],"Showing step items as an ordered list.":[],"Showing step items as an unordered list":[],"Add step":["Pridať krok"],"Delete total time":["Zmazať celkový čas"],"Add total time":["Pridať celkový čas"],"How to":[],"How-to":[],"Snippet Preview":[],"Analysis results":["Výsledky analýzy"],"Enter a focus keyphrase to calculate the SEO score":[],"Learn more about Cornerstone Content.":["Zisti viac o Cornerstone Content. "],"Cornerstone content should be the most important and extensive articles on your site.":[],"Add synonyms":["+ Pridaj synonymum"],"Would you like to add keyphrase synonyms?":["Chcete pridať synonymá pre kľúčové slová?"],"Current year":["Current year"],"Page":["Stránka"],"Tagline":["Značka"],"Modify your meta description by editing it right here":["Upravte váš meta popis priamou editáciou tu."],"ID":["ID"],"Separator":["Oddeľovač"],"Search phrase":["Vyhľadávaná fráza"],"Term description":[],"Tag description":[],"Category description":["Popis kategórie"],"Primary category":["Primárna kategória"],"Category":["Kategória"],"Excerpt only":[],"Excerpt":[],"Site title":["Názov webovej stránky"],"Parent title":[],"Date":["Dátum"],"Other benefits of %s for you:":["Ďalšie výhody %s pre vás:"],"Cornerstone content":["Kľúčový obsah"],"24/7 support":["24/7 podpora"],"Great news: you can, with %1$s!":["Skvelá správa: môžete s %1$s!"],"%1$sSocial media preview%2$s: Facebook & Twitter":[],"Superfast internal links suggestions":["Návrhy rýchlych interných odkazov"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sŽiadne mŕtve linky%2$s: jednoduchý manažér presmerovania"],"No ads!":["Žiadne reklamy!"],"Please provide a meta description by editing the snippet below.":["Prosím zadajte meta popis úpravou úryvku nižšie."],"The name of the person":["Meno osoby"],"Readability analysis":["Analýza čitateľnosti"],"Open":["Otvoriť"],"Title":["Nadpis"],"Creating redirects is a %s feature":[],"Close":["Zatvoriť"],"Snippet preview":{"0":"Náhľad snippetu","2":""},"FAQ":["Časté otázky"],"Settings":["Nastavenia"]}}}
  • wordpress-seo/trunk/languages/wordpress-seojs-sr_RS.json

    r2050445 r2065083  
    1 {"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":"sr_RS"},"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":[],"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!":["Покрени %s!"],"Rank better with synonyms & related keyphrases":["Боље се позиционирајте са синонимима и сродним кључним изразима"],"Add related keyphrase":["Додајте кључни израз"],"Get %s":["Узмите %s"],"Focus keyphrase":["Фокусни израз (фраза)"],"Learn more about the readability analysis":["Сазнајте више о анализи читљивости"],"Describe the duration of the instruction:":[],"Optional. Customize how you want to describe the duration of the instruction":[],"%s, %s and %s":["%s, %s и %s"],"%s and %s":["%s и %s"],"%d minute":["%d минут","%d минута","%d минута"],"%d hour":["%d сат","%d сата","%d сати"],"%d day":["%d дан","%d дана","%d дана"],"Enter a step title":["Унесите назив корака"],"Optional. This can give you better control over the styling of the steps.":[],"CSS class(es) to apply to the steps":[],"minutes":["минути"],"hours":["сати"],"days":["дани"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":[],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":[],"Copy error":["Грешка у копирању"],"An error occurred loading the %s primary taxonomy picker.":[],"Time needed:":["Потребно време:"],"Move question down":["Помери питање на доле"],"Move question up":["Померите питање на горе"],"Insert question":["Уметни питање"],"Delete question":["Избриши питање"],"Enter the answer to the question":["Унесите одговор на питање"],"Enter a question":["Унесите питање"],"Add question":["Додајте питање"],"Frequently Asked Questions":["Често постављана питања"],"Great news: you can, with %s!":["Одличне вести: можете, са %s!"],"Select the primary %s":["Изаберите примарни %s"],"Move step down":["Помери корак на доле"],"Move step up":["Помери корак на горе"],"Insert step":["Уметни корак"],"Delete step":["Ибришите корак"],"Add image":["Додај слику"],"Enter a step description":["Унесите опис корака"],"Enter a description":["Унесите опис"],"Unordered list":["Неуређена листа"],"Showing step items as an ordered list.":[],"Showing step items as an unordered list":[],"Add step":["Додајте корак"],"Delete total time":["Избриши укупно време"],"Add total time":["Додај укупно време"],"How to":["Како да"],"How-to":["Како да"],"Snippet Preview":["Преглед исечка"],"Analysis results":["Резултати анализе"],"Enter a focus keyphrase to calculate the SEO score":[],"Learn more about Cornerstone Content.":["Сазнајте више о кључном садржају"],"Cornerstone content should be the most important and extensive articles on your site.":["Кључни садржај би требало да представљају најважнији и најобимнији чланци на вашем веб месту."],"Add synonyms":["Додај синониме"],"Would you like to add keyphrase synonyms?":[],"Current year":["Текућа година"],"Page":["Страница"],"Tagline":["Мото"],"Modify your meta description by editing it right here":[],"ID":["ID"],"Separator":["Знак за одвајање"],"Search phrase":["Израз за претрагу"],"Term description":["Опис појма"],"Tag description":["Опис ознаке"],"Category description":["Опис категорије"],"Primary category":["Главна категорија"],"Category":["Категорија"],"Excerpt only":["Само одломак"],"Excerpt":["Одломак"],"Site title":["Наслов веб места"],"Parent title":["Наслов родитеља"],"Date":["Датум"],"Other benefits of %s for you:":["Остале погодности %s за вас:"],"Cornerstone content":["Битан садржај"],"24/7 support":["24/7 подршка"],"Great news: you can, with %1$s!":["Сјајне вести: Можете са  %1$s."],"1 year free updates and upgrades included!":["Укључена једна година бесплатних ажурирања и надоградњи."],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sПреглед друштвених мрежа%2$s: Facebook и Twitter"],"Superfast internal links suggestions":["Супербрзо предлагање унутрашњих веза"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sНема више мртвих линкова%2$s: једноставан управник преусмеравања"],"No ads!":["Нема реклама!"],"Please provide a meta description by editing the snippet below.":["Молимо вас да у наставку упишете мета опис за уређивање фрагмента."],"Readability analysis":["Анализа читљивости"],"Open":["Отвори"],"Title":["Наслов"],"Creating redirects is a %s feature":["Прављeњe преусмерења je %s опциjа"],"Close":["Затвори"],"Snippet preview":["Преглед исечка"],"FAQ":["FAQ"],"Settings":["Подешавања"]}}}
     1{"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":"sr_RS"},"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":[],"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!":["Покрени %s!"],"Rank better with synonyms & related keyphrases":["Боље се позиционирајте са синонимима и сродним кључним изразима"],"Add related keyphrase":["Додајте кључни израз"],"Get %s":["Узмите %s"],"Focus keyphrase":["Фокусни израз (фраза)"],"Learn more about the readability analysis":["Сазнајте више о анализи читљивости"],"Describe the duration of the instruction:":[],"Optional. Customize how you want to describe the duration of the instruction":[],"%s, %s and %s":["%s, %s и %s"],"%s and %s":["%s и %s"],"%d minute":["%d минут","%d минута","%d минута"],"%d hour":["%d сат","%d сата","%d сати"],"%d day":["%d дан","%d дана","%d дана"],"Enter a step title":["Унесите назив корака"],"Optional. This can give you better control over the styling of the steps.":[],"CSS class(es) to apply to the steps":[],"minutes":["минути"],"hours":["сати"],"days":["дани"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":[],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":[],"Copy error":["Грешка у копирању"],"An error occurred loading the %s primary taxonomy picker.":[],"Time needed:":["Потребно време:"],"Move question down":["Помери питање на доле"],"Move question up":["Померите питање на горе"],"Insert question":["Уметни питање"],"Delete question":["Избриши питање"],"Enter the answer to the question":["Унесите одговор на питање"],"Enter a question":["Унесите питање"],"Add question":["Додајте питање"],"Frequently Asked Questions":["Често постављана питања"],"Great news: you can, with %s!":["Одличне вести: можете, са %s!"],"Select the primary %s":["Изаберите примарни %s"],"Mark as cornerstone content":["Обележи као кључни садржај"],"Move step down":["Помери корак на доле"],"Move step up":["Помери корак на горе"],"Insert step":["Уметни корак"],"Delete step":["Ибришите корак"],"Add image":["Додај слику"],"Enter a step description":["Унесите опис корака"],"Enter a description":["Унесите опис"],"Unordered list":["Неуређена листа"],"Showing step items as an ordered list.":[],"Showing step items as an unordered list":[],"Add step":["Додајте корак"],"Delete total time":["Избриши укупно време"],"Add total time":["Додај укупно време"],"How to":["Како да"],"How-to":["Како да"],"Snippet Preview":["Преглед исечка"],"Analysis results":["Резултати анализе"],"Enter a focus keyphrase to calculate the SEO score":[],"Learn more about Cornerstone Content.":["Сазнајте више о кључном садржају"],"Cornerstone content should be the most important and extensive articles on your site.":["Кључни садржај би требало да представљају најважнији и најобимнији чланци на вашем веб месту."],"Add synonyms":["Додај синониме"],"Would you like to add keyphrase synonyms?":[],"Current year":["Текућа година"],"Page":["Страница"],"Tagline":["Мото"],"Modify your meta description by editing it right here":[],"ID":["ID"],"Separator":["Знак за одвајање"],"Search phrase":["Израз за претрагу"],"Term description":["Опис појма"],"Tag description":["Опис ознаке"],"Category description":["Опис категорије"],"Primary category":["Главна категорија"],"Category":["Категорија"],"Excerpt only":["Само одломак"],"Excerpt":["Одломак"],"Site title":["Наслов веб места"],"Parent title":["Наслов родитеља"],"Date":["Датум"],"Other benefits of %s for you:":["Остале погодности %s за вас:"],"Cornerstone content":["Битан садржај"],"24/7 support":["24/7 подршка"],"Great news: you can, with %1$s!":["Сјајне вести: Можете са  %1$s."],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sПреглед друштвених мрежа%2$s: Facebook и Twitter"],"Superfast internal links suggestions":["Супербрзо предлагање унутрашњих веза"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sНема више мртвих линкова%2$s: једноставан управник преусмеравања"],"No ads!":["Нема реклама!"],"Please provide a meta description by editing the snippet below.":["Молимо вас да у наставку упишете мета опис за уређивање фрагмента."],"The name of the person":["Име особе"],"Readability analysis":["Анализа читљивости"],"Open":["Отвори"],"Title":["Наслов"],"Creating redirects is a %s feature":["Прављeњe преусмерења je %s опциjа"],"Close":["Затвори"],"Snippet preview":["Преглед исечка"],"FAQ":["FAQ"],"Settings":["Подешавања"]}}}
  • wordpress-seo/trunk/languages/wordpress-seojs-sv_SE.json

    r2050445 r2065083  
    1 {"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"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 ett 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"],"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"],"Other benefits of %s for you:":["Fler fördelar för dig med %s:"],"Cornerstone content":["Grundstensinnehåll"],"24/7 support":["Support 24/7"],"Great news: you can, with %1$s!":["Goda nyheter: du kan, med %1$s!"],"1 year free updates and upgrades included!":["1 års fria uppdateringar och uppgraderingar ingår!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sFörhandsgranskning för sociala medier%2$s: Facebook och Twitter"],"Superfast internal links suggestions":["Supersnabba interna länkförslag"],"%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."],"Readability analysis":["Läsbarhetsanalys"],"Open":["Öppna"],"Title":["Sidtitel"],"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"]}}}
     1{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"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 ett 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"],"Other benefits of %s for you:":["Fler fördelar för dig med %s:"],"Cornerstone content":["Grundstensinnehåll"],"24/7 support":["Support 24/7"],"Great news: you can, with %1$s!":["Goda nyheter: du kan, med %1$s!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sFörhandsgranskning för sociala medier%2$s: Facebook och Twitter"],"Superfast internal links suggestions":["Supersnabba interna länkförslag"],"%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"],"Open":["Öppna"],"Title":["Sidtitel"],"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"]}}}
  • wordpress-seo/trunk/languages/wordpress-seojs-tr_TR.json

    r2050445 r2065083  
    1 {"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=(n > 1);","lang":"tr"},"New step added":["Yeni adım eklendi"],"New question added":["Yeni soru eklendi"],"To be able to create a redirect and fix this issue, you need %1$s. ":["Yönlendirme oluşturabilmek ve bu sorunu düzeltebilmek için %1$s gerekir."],"You can buy the plugin, including one year of support and updates, on %1$s.":["Bir yıllık destek ve güncelleme dahil olmak üzere eklentiyi %1$s üzerinden satın alabilirsiniz."],"Free":["Ücretsiz"],"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":["Odak anahtar kelime"],"Learn more about the readability analysis":["Okunabilirlik analizi hakkında daha fazlasını öğrenin"],"Describe the duration of the instruction:":["Talimatın süresini tanımlayın:"],"Optional. Customize how you want to describe the duration of the instruction":["İsteğe bağlı. Talimatın süresini nasıl tanımlamak istediğinizi özelleştirin"],"%s, %s and %s":[],"%s and %s":["%s ve %s"],"%d minute":["%d dakika","%d dakika"],"%d hour":["%d saat","%d saat"],"%d day":["%d gün","%d gün"],"Enter a step title":["Bir adım başlığı girin"],"Optional. This can give you better control over the styling of the steps.":[],"CSS class(es) to apply to the steps":[],"minutes":["dakika"],"hours":["saat"],"days":["gün"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":[],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":[],"Copy error":["Kopyalama hatası"],"An error occurred loading the %s primary taxonomy picker.":[],"Time needed:":["Gerekli süre:"],"Move question down":["Soruyu aşağı taşı"],"Move question up":["Soruyu yukarı taşı"],"Insert question":["Soru ekle"],"Delete question":["Soruyu sil"],"Enter the answer to the question":["Sorunun cevabını girin"],"Enter a question":["Bir soru girin"],"Add question":["Soru ekle"],"Frequently Asked Questions":["Sık Sorulan Sorular"],"Great news: you can, with %s!":[],"Select the primary %s":["Birincili seçin %s"],"Move step down":["Adımı aşağı taşı"],"Move step up":["Adımı yukarı taşı"],"Insert step":["Adım ekle"],"Delete step":["Adımı sil"],"Add image":["Görsel ekle"],"Enter a step description":["Adım açıklaması yaz"],"Enter a description":["Bir açıklama girin"],"Unordered list":["Sırasız liste"],"Showing step items as an ordered list.":["Adım öğeleri sıralı liste olarak gösteriliyor"],"Showing step items as an unordered list":["Adım öğeleri sırasız liste olarak gösteriliyor"],"Add step":["Adım ekle"],"Delete total time":["Toplam zamanı sil"],"Add total time":["Toplam süre ekle"],"How to":["Nasıl yapılır"],"How-to":["Nasıl-yapılır"],"Snippet Preview":["Snippet Önizlemesi"],"Analysis results":["Analiz sonuçları"],"Enter a focus keyphrase to calculate the SEO score":[],"Learn more about Cornerstone Content.":["Köşetaşı içeriği hakkında daha fazla bilgi edinin."],"Cornerstone content should be the most important and extensive articles on your site.":["Köşetaşı içeriği sitenizdeki en önemli ve kapsamlı makaleler olması gerekir."],"Add synonyms":["Eş anlamlı kelimeler ekle"],"Would you like to add keyphrase synonyms?":[],"Current year":["Mevcut yıl"],"Page":["Sayfa"],"Tagline":["Slogan"],"Modify your meta description by editing it right here":["Meta açıklamasını burayı düzenleyerek güncelleyebilirsiniz"],"ID":["ID"],"Separator":["Ayırıcı"],"Search phrase":["Arama ifadesi"],"Term description":["Terim açıklaması"],"Tag description":["Etiket açıklaması"],"Category description":["Kategori açıklaması"],"Primary category":["Birincil kategori"],"Category":["Kategori"],"Excerpt only":["Sadece alıntı"],"Excerpt":["Alıntı"],"Site title":["Site başlığı"],"Parent title":["Ana başlık"],"Date":["Tarih"],"Other benefits of %s for you:":["%s'nun sizin için diğer faydaları:"],"Cornerstone content":["Köşe taşı içeriği"],"24/7 support":["7/24 destek"],"Great news: you can, with %1$s!":["Harika haber: %1$s ile yapabilirsiniz!"],"1 year free updates and upgrades included!":["1 yıllık ücretsiz güncelleme ve yükseltme dahil!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sSosyal medya önizlemesi%2$s: Facebook ve Twitter"],"Superfast internal links suggestions":["Süper hızlı dahili bağlantı önerileri"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sDaha fazla ölü bağlantı%2$s yok: kolay yönlendirme yöneticisi"],"No ads!":["Reklamsız!"],"Please provide a meta description by editing the snippet below.":["Aşağıdaki kod parçacığını düzenleyerek bir meta açıklama sağlayın."],"Readability analysis":["Okunabilirlik analizi"],"Open":["Aç"],"Title":["Başlık"],"Creating redirects is a %s feature":["Yönlendirme oluşturmek bir %s özelliği"],"Close":["Kapat"],"Snippet preview":["Kod parçacığı ön izleme"],"FAQ":["S.S.S."],"Settings":["Ayarlar"]}}}
     1{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=2; plural=(n > 1);","lang":"tr"},"New step added":["Yeni adım eklendi"],"New question added":["Yeni soru eklendi"],"To be able to create a redirect and fix this issue, you need %1$s. ":["Yönlendirme oluşturabilmek ve bu sorunu düzeltebilmek için %1$s gerekir."],"You can buy the plugin, including one year of support and updates, on %1$s.":["Bir yıllık destek ve güncelleme dahil olmak üzere eklentiyi %1$s üzerinden satın alabilirsiniz."],"Free":["Ücretsiz"],"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":["Odak anahtar kelime"],"Learn more about the readability analysis":["Okunabilirlik analizi hakkında daha fazlasını öğrenin"],"Describe the duration of the instruction:":["Talimatın süresini tanımlayın:"],"Optional. Customize how you want to describe the duration of the instruction":["İsteğe bağlı. Talimatın süresini nasıl tanımlamak istediğinizi özelleştirin"],"%s, %s and %s":[],"%s and %s":["%s ve %s"],"%d minute":["%d dakika","%d dakika"],"%d hour":["%d saat","%d saat"],"%d day":["%d gün","%d gün"],"Enter a step title":["Bir adım başlığı girin"],"Optional. This can give you better control over the styling of the steps.":[],"CSS class(es) to apply to the steps":[],"minutes":["dakika"],"hours":["saat"],"days":["gün"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":[],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":[],"Copy error":["Kopyalama hatası"],"An error occurred loading the %s primary taxonomy picker.":[],"Time needed:":["Gerekli süre:"],"Move question down":["Soruyu aşağı taşı"],"Move question up":["Soruyu yukarı taşı"],"Insert question":["Soru ekle"],"Delete question":["Soruyu sil"],"Enter the answer to the question":["Sorunun cevabını girin"],"Enter a question":["Bir soru girin"],"Add question":["Soru ekle"],"Frequently Asked Questions":["Sık Sorulan Sorular"],"Great news: you can, with %s!":[],"Select the primary %s":["Birincili seçin %s"],"Mark as cornerstone content":["Köşetaşı içerik olarak işaretle"],"Move step down":["Adımı aşağı taşı"],"Move step up":["Adımı yukarı taşı"],"Insert step":["Adım ekle"],"Delete step":["Adımı sil"],"Add image":["Görsel ekle"],"Enter a step description":["Adım açıklaması yaz"],"Enter a description":["Bir açıklama girin"],"Unordered list":["Sırasız liste"],"Showing step items as an ordered list.":["Adım öğeleri sıralı liste olarak gösteriliyor"],"Showing step items as an unordered list":["Adım öğeleri sırasız liste olarak gösteriliyor"],"Add step":["Adım ekle"],"Delete total time":["Toplam zamanı sil"],"Add total time":["Toplam süre ekle"],"How to":["Nasıl yapılır"],"How-to":["Nasıl-yapılır"],"Snippet Preview":["Snippet Önizlemesi"],"Analysis results":["Analiz sonuçları"],"Enter a focus keyphrase to calculate the SEO score":[],"Learn more about Cornerstone Content.":["Köşetaşı içeriği hakkında daha fazla bilgi edinin."],"Cornerstone content should be the most important and extensive articles on your site.":["Köşetaşı içeriği sitenizdeki en önemli ve kapsamlı makaleler olması gerekir."],"Add synonyms":["Eş anlamlı kelimeler ekle"],"Would you like to add keyphrase synonyms?":[],"Current year":["Mevcut yıl"],"Page":["Sayfa"],"Tagline":["Slogan"],"Modify your meta description by editing it right here":["Meta açıklamasını burayı düzenleyerek güncelleyebilirsiniz"],"ID":["ID"],"Separator":["Ayırıcı"],"Search phrase":["Arama ifadesi"],"Term description":["Terim açıklaması"],"Tag description":["Etiket açıklaması"],"Category description":["Kategori açıklaması"],"Primary category":["Birincil kategori"],"Category":["Kategori"],"Excerpt only":["Sadece alıntı"],"Excerpt":["Alıntı"],"Site title":["Site başlığı"],"Parent title":["Ana başlık"],"Date":["Tarih"],"Other benefits of %s for you:":["%s'nun sizin için diğer faydaları:"],"Cornerstone content":["Köşe taşı içeriği"],"24/7 support":["7/24 destek"],"Great news: you can, with %1$s!":["Harika haber: %1$s ile yapabilirsiniz!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sSosyal medya önizlemesi%2$s: Facebook ve Twitter"],"Superfast internal links suggestions":["Süper hızlı dahili bağlantı önerileri"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sDaha fazla ölü bağlantı%2$s yok: kolay yönlendirme yöneticisi"],"No ads!":["Reklamsız!"],"Please provide a meta description by editing the snippet below.":["Aşağıdaki kod parçacığını düzenleyerek bir meta açıklama sağlayın."],"The name of the person":["Kişinin ismi"],"Readability analysis":["Okunabilirlik analizi"],"Open":["Aç"],"Title":["Başlık"],"Creating redirects is a %s feature":["Yönlendirme oluşturmek bir %s özelliği"],"Close":["Kapat"],"Snippet preview":["Kod parçacığı ön izleme"],"FAQ":["S.S.S."],"Settings":["Ayarlar"]}}}
  • wordpress-seo/trunk/languages/wordpress-seojs-uk.json

    r2050445 r2065083  
    1 {"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":"uk_UA"},"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":[],"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!":["Перейти %s!"],"Rank better with synonyms & related keyphrases":["Отримайте краще ранжування з використанням синонімів і схожих ключових слів"],"Add related keyphrase":["Додати схоже ключове слово"],"Get %s":["Отримайте %s"],"Focus keyphrase":["Фокусне ключове слово"],"Learn more about the readability analysis":["Детальніше про аналіз читання"],"Describe the duration of the instruction:":["Опишіть тривалість інструкції:"],"Optional. Customize how you want to describe the duration of the instruction":["Не обов'язково. Налаштуйте те, як ви хочете описати тривалість інструкції"],"%s, %s and %s":[],"%s and %s":[],"%d minute":["%d хвилин","",""],"%d hour":["%d годин","",""],"%d day":[],"Enter a step title":["Введіть назву кроку"],"Optional. This can give you better control over the styling of the steps.":[],"CSS class(es) to apply to the steps":[],"minutes":["хвилини"],"hours":["години"],"days":["дні"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":[],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":[],"Copy error":["Помилка копіювання"],"An error occurred loading the %s primary taxonomy picker.":[],"Time needed:":["Потрібний час:"],"Move question down":["Перемістити питання вниз"],"Move question up":["Перемістити питання вгору"],"Insert question":["Вставте питання"],"Delete question":["Видалити питання"],"Enter the answer to the question":["Введіть відповідь на питання"],"Enter a question":["Введіть питання"],"Add question":["Додати питання"],"Frequently Asked Questions":["Часто задавані питання"],"Great news: you can, with %s!":["Чудова новина: ви можете, з %s!"],"Select the primary %s":[],"Move step down":[],"Move step up":[],"Insert step":[],"Delete step":[],"Add image":["Додати зображення"],"Enter a step description":[],"Enter a description":[],"Unordered list":[],"Showing step items as an ordered list.":[],"Showing step items as an unordered list":[],"Add step":["Додати крок"],"Delete total time":[],"Add total time":[],"How to":["How to"],"How-to":["How-to"],"Snippet Preview":["Попередній перегляд сніппета"],"Analysis results":["Результати аналізу"],"Enter a focus keyphrase to calculate the SEO score":[],"Learn more about Cornerstone Content.":["Дізнайтеся більше про Основний вміст."],"Cornerstone content should be the most important and extensive articles on your site.":["Основним вмістом повинні бути найбільш важливі і великі статті на вашому сайті."],"Add synonyms":["Додати синоніми"],"Would you like to add keyphrase synonyms?":[],"Current year":["Поточний рік"],"Page":["Сторінка"],"Tagline":["Ключова фраза"],"Modify your meta description by editing it right here":["Вкажіть свій мета-опис, редагуючи його прямо тут"],"ID":["ID"],"Separator":["Розподілювач"],"Search phrase":[],"Term description":["Опис терміну"],"Tag description":["Опис тегу"],"Category description":["Опис категорії"],"Primary category":["Головна категорія"],"Category":["Категорії"],"Excerpt only":["Тільки уривок"],"Excerpt":["Витяг"],"Site title":["Назва сайту"],"Parent title":["Назва предка"],"Date":["Дата"],"Other benefits of %s for you:":["Інші можливості %s для вас:"],"Cornerstone content":["Основний зміст"],"24/7 support":["Підтримка 24/7"],"Great news: you can, with %1$s!":["Чудові новини: ви можете із %1$s!"],"1 year free updates and upgrades included!":["1 рік безкоштовних оновлень та розширень включно!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sПередпоказ в соціальних межежаж%2$s: Facebook & Twitter"],"Superfast internal links suggestions":["Супершвидкі пропозиції внутрішніх посилань"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sБільше ніяких мертвих посилань%2$s: простий менеджер перенаправлення"],"No ads!":["Без реклами!"],"Please provide a meta description by editing the snippet below.":["Вкажіть мета-опис сторінки в цьому сніпеті."],"Readability analysis":["Аналіз читабельності"],"Open":["Відкрити"],"Title":["Назва"],"Creating redirects is a %s feature":["Створення перенаправлення це функція %s"],"Close":["Закрити"],"Snippet preview":["Snippet Попередній перегляд"],"FAQ":["Часті питання"],"Settings":["Налаштування"]}}}
     1{"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":"uk_UA"},"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":[],"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!":["Перейти %s!"],"Rank better with synonyms & related keyphrases":["Отримайте краще ранжування з використанням синонімів і схожих ключових слів"],"Add related keyphrase":["Додати схоже ключове слово"],"Get %s":["Отримайте %s"],"Focus keyphrase":["Фокусне ключове слово"],"Learn more about the readability analysis":["Детальніше про аналіз читання"],"Describe the duration of the instruction:":["Опишіть тривалість інструкції:"],"Optional. Customize how you want to describe the duration of the instruction":["Не обов'язково. Налаштуйте те, як ви хочете описати тривалість інструкції"],"%s, %s and %s":[],"%s and %s":[],"%d minute":["%d хвилин","",""],"%d hour":["%d годин","",""],"%d day":[],"Enter a step title":["Введіть назву кроку"],"Optional. This can give you better control over the styling of the steps.":[],"CSS class(es) to apply to the steps":[],"minutes":["хвилини"],"hours":["години"],"days":["дні"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":[],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":[],"Copy error":["Помилка копіювання"],"An error occurred loading the %s primary taxonomy picker.":[],"Time needed:":["Потрібний час:"],"Move question down":["Перемістити питання вниз"],"Move question up":["Перемістити питання вгору"],"Insert question":["Вставте питання"],"Delete question":["Видалити питання"],"Enter the answer to the question":["Введіть відповідь на питання"],"Enter a question":["Введіть питання"],"Add question":["Додати питання"],"Frequently Asked Questions":["Часто задавані питання"],"Great news: you can, with %s!":["Чудова новина: ви можете, з %s!"],"Select the primary %s":[],"Mark as cornerstone content":[],"Move step down":[],"Move step up":[],"Insert step":[],"Delete step":[],"Add image":["Додати зображення"],"Enter a step description":[],"Enter a description":[],"Unordered list":[],"Showing step items as an ordered list.":[],"Showing step items as an unordered list":[],"Add step":["Додати крок"],"Delete total time":[],"Add total time":[],"How to":["How to"],"How-to":["How-to"],"Snippet Preview":["Попередній перегляд сніппета"],"Analysis results":["Результати аналізу"],"Enter a focus keyphrase to calculate the SEO score":[],"Learn more about Cornerstone Content.":["Дізнайтеся більше про Основний вміст."],"Cornerstone content should be the most important and extensive articles on your site.":["Основним вмістом повинні бути найбільш важливі і великі статті на вашому сайті."],"Add synonyms":["Додати синоніми"],"Would you like to add keyphrase synonyms?":[],"Current year":["Поточний рік"],"Page":["Сторінка"],"Tagline":["Ключова фраза"],"Modify your meta description by editing it right here":["Вкажіть свій мета-опис, редагуючи його прямо тут"],"ID":["ID"],"Separator":["Розподілювач"],"Search phrase":[],"Term description":["Опис терміну"],"Tag description":["Опис тегу"],"Category description":["Опис категорії"],"Primary category":["Головна категорія"],"Category":["Категорії"],"Excerpt only":["Тільки уривок"],"Excerpt":["Витяг"],"Site title":["Назва сайту"],"Parent title":["Назва предка"],"Date":["Дата"],"Other benefits of %s for you:":["Інші можливості %s для вас:"],"Cornerstone content":["Основний зміст"],"24/7 support":["Підтримка 24/7"],"Great news: you can, with %1$s!":["Чудові новини: ви можете із %1$s!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sПередпоказ в соціальних межежаж%2$s: Facebook & Twitter"],"Superfast internal links suggestions":["Супершвидкі пропозиції внутрішніх посилань"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sБільше ніяких мертвих посилань%2$s: простий менеджер перенаправлення"],"No ads!":["Без реклами!"],"Please provide a meta description by editing the snippet below.":["Вкажіть мета-опис сторінки в цьому сніпеті."],"The name of the person":["Ім'я людини"],"Readability analysis":["Аналіз читабельності"],"Open":["Відкрити"],"Title":["Назва"],"Creating redirects is a %s feature":["Створення перенаправлення це функція %s"],"Close":["Закрити"],"Snippet preview":["Snippet Попередній перегляд"],"FAQ":["Часті питання"],"Settings":["Налаштування"]}}}
  • wordpress-seo/trunk/languages/wordpress-seojs-vi.json

    r2050445 r2065083  
    1 {"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=1; plural=0;","lang":"vi_VN"},"New step added":["Bước mới đã được thêm vào"],"New question added":["Câu hỏi mới được thêm vào"],"To be able to create a redirect and fix this issue, you need %1$s. ":["Để có thể tạo một chuyển hướng và khắc phục vấn đề này, bạn cần %1$s."],"You can buy the plugin, including one year of support and updates, on %1$s.":["Bạn có thể mua phần mở rộng, bao gồm một năm hỗ trợ và cập nhật, vào ngày %1$s."],"Free":["Miễn phí"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":["Bạn có biết %s cũng phân tích những dạng từ khác nhau trong cụm từ khóa của bạn, như dạng số nhiều hoặc thì quá khứ?"],"Help on choosing the perfect focus keyphrase":["Giúp lựa chọn cụm từ khóa chính hoàn hảo"],"Would you like to add a related keyphrase?":["Bạn có muốn thêm một cụm từ khóa liên quan không?"],"Go %s!":["Đến %s!"],"Rank better with synonyms & related keyphrases":["Xếp hạng tốt hơn với các từ đồng nghĩa & và các cụm từ khóa liên quan"],"Add related keyphrase":["Thêm từ khóa liên quan"],"Get %s":["Lấy %s"],"Focus keyphrase":["Cụm từ khóa chính"],"Learn more about the readability analysis":["Tìm hiểu thêm về Phân tích Tính dễ đọc."],"Describe the duration of the instruction:":["Mô tả khoảng thời gian của chỉ dẫn:"],"Optional. Customize how you want to describe the duration of the instruction":["Không bắt buộc. Tuỳ chỉnh cách mà bạn muốn để miêu tả thời lượng của hướng dẫn"],"%s, %s and %s":["%s, %s và %s"],"%s and %s":["%s và %s"],"%d minute":[" %d phút"],"%d hour":["%d giờ"],"%d day":[" %d ngày"],"Enter a step title":["Thêm tiêu đề cho bước thực hiện"],"Optional. This can give you better control over the styling of the steps.":["Tùy chọn. Việc này có thể giúp bạn kiểm soát tốt hơn giao diện của các bước."],"CSS class(es) to apply to the steps":["CSS class(es) (Lớp CSS) để áp dụng cho các bước"],"minutes":["phút"],"hours":["giờ"],"days":["ngày"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":["Tạo bản hướng dẫn với phương pháp SEO thân thiện. Bạn chỉ có thể dùng khối How-to (Hướng dẫn) mỗi bài viết."],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":["Liệt kê các câu hỏi thường gặp của bạn theo 1 cách thân thiện với SEO. Bạn chỉ có thể dùng 1 khối FAQ mỗi bài viết."],"Copy error":["Copy bị lỗi"],"An error occurred loading the %s primary taxonomy picker.":["1 lỗi xảy ra khi đang tải bộ chọn phân loại chính %s."],"Time needed:":["Thời gian cần thiết:"],"Move question down":["Di chuyển câu hỏi xuống"],"Move question up":["Di chuyển câu hỏi lên trên"],"Insert question":["Chèn câu hỏi"],"Delete question":["Xóa câu hỏi"],"Enter the answer to the question":["Nhập câu trả lời cho câu hỏi"],"Enter a question":["Nhập câu hỏi"],"Add question":["Thêm câu hỏi"],"Frequently Asked Questions":["Các câu hỏi thường gặp"],"Great news: you can, with %s!":["Tin tốt: bạn có thể, với %s!"],"Select the primary %s":["Chọn %s chính"],"Move step down":["Di chuyển xuống dưới"],"Move step up":["Di chuyển lên trên"],"Insert step":["Chèn bước"],"Delete step":["Xóa bước"],"Add image":["Thêm hình ảnh"],"Enter a step description":["Nhập mô tả bước"],"Enter a description":["Nhập mô tả"],"Unordered list":["Danh sách không có thứ tự"],"Showing step items as an ordered list.":["Hiển thị các mục bước dưới dạng danh sách có thứ tự."],"Showing step items as an unordered list":["Hiển thị các bước dưới dạng danh sách không theo thứ tự"],"Add step":["Thêm bước"],"Delete total time":["Xóa tổng thời gian"],"Add total time":["Thêm tổng thời gian"],"How to":["Làm thế nào để"],"How-to":["Làm thế nào để"],"Snippet Preview":["Xem trước đoạn trích"],"Analysis results":["Kết quả phân tích:"],"Enter a focus keyphrase to calculate the SEO score":["Nhập một cụm từ khóa chính để tính điểm SEO"],"Learn more about Cornerstone Content.":["Tìm hiểu thêm về Nội dung quan trọng."],"Cornerstone content should be the most important and extensive articles on your site.":["Nội dung quan trọng phải là bài viết quan trọng và mở rộng nhất trên trang web của bạn."],"Add synonyms":["Thêm từ đồng nghĩa"],"Would you like to add keyphrase synonyms?":["Bạn có muốn thêm các từ đồng nghĩa từ khóa không?"],"Current year":["Năm hiện tại"],"Page":["Trang"],"Tagline":["Chủ đề"],"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"],"ID":["ID"],"Separator":["Dấu phân tách"],"Search phrase":["Cụm từ tìm kiếm"],"Term description":["Mô tả thuật ngữ"],"Tag description":["Mô tả tag"],"Category description":["Mô tả chuyên mục"],"Primary category":["Chuyên mục chính"],"Category":["Chuyên mục"],"Excerpt only":["Chỉ tóm tắt"],"Excerpt":["Tóm tắt"],"Site title":["Tiêu đề website"],"Parent title":["Tiêu đề cha"],"Date":["Ngày"],"Other benefits of %s for you:":["Các lợi ích khác của %s dành cho bạn:"],"Cornerstone content":["Nội dung quan trọng"],"24/7 support":["Hỗ trợ 24/7"],"Great news: you can, with %1$s!":["Tin vui: bạn có thể, với %1$s! "],"1 year free updates and upgrades included!":["1 năm miễn phí cập nhật và nâng cấp!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sXem trước hiển thị trên mạng xã hội%2$s: Facebook & Twitter"],"Superfast internal links suggestions":["Gợi ý liên kết nội bộ siêu nhanh"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sKhông có liên kết bị đứt%2$s: quản lý chuyển hướng dễ dàng"],"No ads!":["Không quảng cáo!"],"Please provide a meta description by editing the snippet below.":["Vui lòng cung cấp thẻ mô tả bằng cách sửa đoạn snippet dưới đây."],"Readability analysis":["Phân tích khả năng dễ đọc"],"Open":["Mở"],"Title":["Tiêu đề"],"Creating redirects is a %s feature":["Tạo chuyển hướng là một tính năng của %s"],"Close":["Đóng"],"Snippet preview":["Xem trước kết quả"],"FAQ":["FAQ"],"Settings":["Thiết lập"]}}}
     1{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=1; plural=0;","lang":"vi_VN"},"New step added":["Bước mới đã được thêm vào"],"New question added":["Câu hỏi mới được thêm vào"],"To be able to create a redirect and fix this issue, you need %1$s. ":["Để có thể tạo một chuyển hướng và khắc phục vấn đề này, bạn cần %1$s."],"You can buy the plugin, including one year of support and updates, on %1$s.":["Bạn có thể mua phần mở rộng, bao gồm một năm hỗ trợ và cập nhật, vào ngày %1$s."],"Free":["Miễn phí"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":["Bạn có biết %s cũng phân tích những dạng từ khác nhau trong cụm từ khóa của bạn, như dạng số nhiều hoặc thì quá khứ?"],"Help on choosing the perfect focus keyphrase":["Giúp lựa chọn cụm từ khóa chính hoàn hảo"],"Would you like to add a related keyphrase?":["Bạn có muốn thêm một cụm từ khóa liên quan không?"],"Go %s!":["Đến %s!"],"Rank better with synonyms & related keyphrases":["Xếp hạng tốt hơn với các từ đồng nghĩa & và các cụm từ khóa liên quan"],"Add related keyphrase":["Thêm từ khóa liên quan"],"Get %s":["Lấy %s"],"Focus keyphrase":["Cụm từ khóa chính"],"Learn more about the readability analysis":["Tìm hiểu thêm về Phân tích Tính dễ đọc."],"Describe the duration of the instruction:":["Mô tả khoảng thời gian của chỉ dẫn:"],"Optional. Customize how you want to describe the duration of the instruction":["Không bắt buộc. Tuỳ chỉnh cách mà bạn muốn để miêu tả thời lượng của hướng dẫn"],"%s, %s and %s":["%s, %s và %s"],"%s and %s":["%s và %s"],"%d minute":[" %d phút"],"%d hour":["%d giờ"],"%d day":[" %d ngày"],"Enter a step title":["Thêm tiêu đề cho bước thực hiện"],"Optional. This can give you better control over the styling of the steps.":["Tùy chọn. Việc này có thể giúp bạn kiểm soát tốt hơn giao diện của các bước."],"CSS class(es) to apply to the steps":["CSS class(es) (Lớp CSS) để áp dụng cho các bước"],"minutes":["phút"],"hours":["giờ"],"days":["ngày"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":["Tạo bản hướng dẫn với phương pháp SEO thân thiện. Bạn chỉ có thể dùng khối How-to (Hướng dẫn) mỗi bài viết."],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":["Liệt kê các câu hỏi thường gặp của bạn theo 1 cách thân thiện với SEO. Bạn chỉ có thể dùng 1 khối FAQ mỗi bài viết."],"Copy error":["Copy bị lỗi"],"An error occurred loading the %s primary taxonomy picker.":["1 lỗi xảy ra khi đang tải bộ chọn phân loại chính %s."],"Time needed:":["Thời gian cần thiết:"],"Move question down":["Di chuyển câu hỏi xuống"],"Move question up":["Di chuyển câu hỏi lên trên"],"Insert question":["Chèn câu hỏi"],"Delete question":["Xóa câu hỏi"],"Enter the answer to the question":["Nhập câu trả lời cho câu hỏi"],"Enter a question":["Nhập câu hỏi"],"Add question":["Thêm câu hỏi"],"Frequently Asked Questions":["Các câu hỏi thường gặp"],"Great news: you can, with %s!":["Tin tốt: bạn có thể, với %s!"],"Select the primary %s":["Chọn %s chính"],"Mark as cornerstone content":["Đánh dấu là nội dung quan trọng"],"Move step down":["Di chuyển xuống dưới"],"Move step up":["Di chuyển lên trên"],"Insert step":["Chèn bước"],"Delete step":["Xóa bước"],"Add image":["Thêm hình ảnh"],"Enter a step description":["Nhập mô tả bước"],"Enter a description":["Nhập mô tả"],"Unordered list":["Danh sách không có thứ tự"],"Showing step items as an ordered list.":["Hiển thị các mục bước dưới dạng danh sách có thứ tự."],"Showing step items as an unordered list":["Hiển thị các bước dưới dạng danh sách không theo thứ tự"],"Add step":["Thêm bước"],"Delete total time":["Xóa tổng thời gian"],"Add total time":["Thêm tổng thời gian"],"How to":["Làm thế nào để"],"How-to":["Làm thế nào để"],"Snippet Preview":["Xem trước đoạn trích"],"Analysis results":["Kết quả phân tích:"],"Enter a focus keyphrase to calculate the SEO score":["Nhập một cụm từ khóa chính để tính điểm SEO"],"Learn more about Cornerstone Content.":["Tìm hiểu thêm về Nội dung quan trọng."],"Cornerstone content should be the most important and extensive articles on your site.":["Nội dung quan trọng phải là bài viết quan trọng và mở rộng nhất trên trang web của bạn."],"Add synonyms":["Thêm từ đồng nghĩa"],"Would you like to add keyphrase synonyms?":["Bạn có muốn thêm các từ đồng nghĩa từ khóa không?"],"Current year":["Năm hiện tại"],"Page":["Trang"],"Tagline":["Chủ đề"],"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"],"ID":["ID"],"Separator":["Dấu phân tách"],"Search phrase":["Cụm từ tìm kiếm"],"Term description":["Mô tả thuật ngữ"],"Tag description":["Mô tả tag"],"Category description":["Mô tả chuyên mục"],"Primary category":["Chuyên mục chính"],"Category":["Chuyên mục"],"Excerpt only":["Chỉ tóm tắt"],"Excerpt":["Tóm tắt"],"Site title":["Tiêu đề website"],"Parent title":["Tiêu đề cha"],"Date":["Ngày"],"Other benefits of %s for you:":["Các lợi ích khác của %s dành cho bạn:"],"Cornerstone content":["Nội dung quan trọng"],"24/7 support":["Hỗ trợ 24/7"],"Great news: you can, with %1$s!":["Tin vui: bạn có thể, với %1$s! "],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$sXem trước hiển thị trên mạng xã hội%2$s: Facebook & Twitter"],"Superfast internal links suggestions":["Gợi ý liên kết nội bộ siêu nhanh"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$sKhông có liên kết bị đứt%2$s: quản lý chuyển hướng dễ dàng"],"No ads!":["Không quảng cáo!"],"Please provide a meta description by editing the snippet below.":["Vui lòng cung cấp thẻ mô tả bằng cách sửa đoạn snippet dưới đây."],"The name of the person":["Tên cá nhân"],"Readability analysis":["Phân tích khả năng dễ đọc"],"Open":["Mở"],"Title":["Tiêu đề"],"Creating redirects is a %s feature":["Tạo chuyển hướng là một tính năng của %s"],"Close":["Đóng"],"Snippet preview":["Xem trước kết quả"],"FAQ":["FAQ"],"Settings":["Thiết lập"]}}}
  • wordpress-seo/trunk/languages/wordpress-seojs-zh_CN.json

    r2050445 r2065083  
    1 {"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=1; plural=0;","lang":"zh_CN"},"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":[],"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":[],"Describe the duration of the instruction:":[],"Optional. Customize how you want to describe the duration of the instruction":[],"%s, %s and %s":[],"%s and %s":[],"%d minute":[],"%d hour":[],"%d day":[],"Enter a step title":[],"Optional. This can give you better control over the styling of the steps.":[],"CSS class(es) to apply to the steps":[],"minutes":[],"hours":[],"days":[],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":[],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":[],"Copy error":[],"An error occurred loading the %s primary taxonomy picker.":[],"Time needed:":[],"Move question down":[],"Move question up":[],"Insert question":[],"Delete question":[],"Enter the answer to the question":[],"Enter a question":[],"Add question":[],"Frequently Asked Questions":[],"Great news: you can, with %s!":[],"Select the primary %s":[],"Move step down":[],"Move step up":[],"Insert step":[],"Delete step":[],"Add image":[],"Enter a step description":[],"Enter a description":[],"Unordered list":[],"Showing step items as an ordered list.":[],"Showing step items as an unordered list":[],"Add step":[],"Delete total time":[],"Add total time":[],"How to":[],"How-to":[],"Snippet Preview":[],"Analysis results":[],"Enter a focus keyphrase to calculate the SEO score":[],"Learn more about Cornerstone Content.":[],"Cornerstone content should be the most important and extensive articles on your site.":[],"Add synonyms":[],"Would you like to add keyphrase synonyms?":[],"Current year":[],"Page":[],"Tagline":[],"Modify your meta description by editing it right here":[],"ID":[],"Separator":[],"Search phrase":[],"Term description":[],"Tag description":[],"Category description":[],"Primary category":[],"Category":[],"Excerpt only":[],"Excerpt":[],"Site title":[],"Parent title":[],"Date":[],"Other benefits of %s for you:":["%s给您的其他好处:"],"Cornerstone content":["基本内容"],"24/7 support":["24/7服务"],"Great news: you can, with %1$s!":["好消息:有了%1$s,您可以的!"],"1 year free updates and upgrades included!":["一年的免费更新和升级!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$s社交媒体预览:%2$sFacebook & Twitter"],"Superfast internal links suggestions":["超快的内部连接建议"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$s消灭死链%2$s:重定向便捷管理器"],"No ads!":["没有广告!"],"Please provide a meta description by editing the snippet below.":["请通过下面的输入框输入元描述。"],"Readability analysis":["可读性分析"],"Open":["打开"],"Title":["标题"],"Creating redirects is a %s feature":["创建重定向是 一种 %s 功能"],"Close":["关闭"],"Snippet preview":["摘要预览"],"FAQ":["常见问题"],"Settings":["设置"]}}}
     1{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=1; plural=0;","lang":"zh_CN"},"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":[],"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":[],"Describe the duration of the instruction:":[],"Optional. Customize how you want to describe the duration of the instruction":[],"%s, %s and %s":[],"%s and %s":[],"%d minute":[],"%d hour":[],"%d day":[],"Enter a step title":[],"Optional. This can give you better control over the styling of the steps.":[],"CSS class(es) to apply to the steps":[],"minutes":[],"hours":[],"days":[],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":[],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":[],"Copy error":[],"An error occurred loading the %s primary taxonomy picker.":[],"Time needed:":[],"Move question down":[],"Move question up":[],"Insert question":[],"Delete question":[],"Enter the answer to the question":[],"Enter a question":[],"Add question":[],"Frequently Asked Questions":[],"Great news: you can, with %s!":[],"Select the primary %s":[],"Mark as cornerstone content":[],"Move step down":[],"Move step up":[],"Insert step":[],"Delete step":[],"Add image":[],"Enter a step description":[],"Enter a description":[],"Unordered list":[],"Showing step items as an ordered list.":[],"Showing step items as an unordered list":[],"Add step":[],"Delete total time":[],"Add total time":[],"How to":[],"How-to":[],"Snippet Preview":[],"Analysis results":[],"Enter a focus keyphrase to calculate the SEO score":[],"Learn more about Cornerstone Content.":[],"Cornerstone content should be the most important and extensive articles on your site.":[],"Add synonyms":[],"Would you like to add keyphrase synonyms?":[],"Current year":[],"Page":[],"Tagline":[],"Modify your meta description by editing it right here":[],"ID":[],"Separator":[],"Search phrase":[],"Term description":[],"Tag description":[],"Category description":[],"Primary category":[],"Category":[],"Excerpt only":[],"Excerpt":[],"Site title":[],"Parent title":[],"Date":[],"Other benefits of %s for you:":["%s给您的其他好处:"],"Cornerstone content":["基本内容"],"24/7 support":["24/7服务"],"Great news: you can, with %1$s!":["好消息:有了%1$s,您可以的!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$s社交媒体预览:%2$sFacebook & Twitter"],"Superfast internal links suggestions":["超快的内部连接建议"],"%1$sNo more dead links%2$s: easy redirect manager":["%1$s消灭死链%2$s:重定向便捷管理器"],"No ads!":["没有广告!"],"Please provide a meta description by editing the snippet below.":["请通过下面的输入框输入元描述。"],"The name of the person":["人名"],"Readability analysis":["可读性分析"],"Open":["打开"],"Title":["标题"],"Creating redirects is a %s feature":["创建重定向是 一种 %s 功能"],"Close":["关闭"],"Snippet preview":["摘要预览"],"FAQ":["常见问题"],"Settings":["设置"]}}}
  • wordpress-seo/trunk/languages/wordpress-seojs-zh_HK.json

    r2050445 r2065083  
    1 {"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=1; plural=0;","lang":"zh_HK"},"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":[],"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":[],"Describe the duration of the instruction:":[],"Optional. Customize how you want to describe the duration of the instruction":[],"%s, %s and %s":[],"%s and %s":[],"%d minute":[],"%d hour":[],"%d day":[],"Enter a step title":[],"Optional. This can give you better control over the styling of the steps.":[],"CSS class(es) to apply to the steps":[],"minutes":[],"hours":[],"days":[],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":[],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":[],"Copy error":[],"An error occurred loading the %s primary taxonomy picker.":[],"Time needed:":[],"Move question down":[],"Move question up":[],"Insert question":[],"Delete question":[],"Enter the answer to the question":[],"Enter a question":[],"Add question":[],"Frequently Asked Questions":[],"Great news: you can, with %s!":[],"Select the primary %s":[],"Move step down":[],"Move step up":[],"Insert step":[],"Delete step":[],"Add image":[],"Enter a step description":[],"Enter a description":[],"Unordered list":[],"Showing step items as an ordered list.":[],"Showing step items as an unordered list":[],"Add step":[],"Delete total time":[],"Add total time":[],"How to":[],"How-to":[],"Snippet Preview":[],"Analysis results":[],"Enter a focus keyphrase to calculate the SEO score":[],"Learn more about Cornerstone Content.":[],"Cornerstone content should be the most important and extensive articles on your site.":[],"Add synonyms":["加入同義詞"],"Would you like to add keyphrase synonyms?":[],"Current year":["本年度"],"Page":["頁面"],"Tagline":[],"Modify your meta description by editing it right here":[],"ID":[],"Separator":[],"Search phrase":[],"Term description":[],"Tag description":[],"Category description":[],"Primary category":[],"Category":["分類"],"Excerpt only":[],"Excerpt":[],"Site title":["網站標題"],"Parent title":[],"Date":["日期"],"Other benefits of %s for you:":[],"Cornerstone content":[],"24/7 support":["全天候支援"],"Great news: you can, with %1$s!":[],"1 year free updates and upgrades included!":[],"%1$sSocial media preview%2$s: Facebook & Twitter":[],"Superfast internal links suggestions":[],"%1$sNo more dead links%2$s: easy redirect manager":[],"No ads!":["沒有任何廣告!"],"Please provide a meta description by editing the snippet below.":["請利用以下代碼編輯器提供meta描述。"],"Readability analysis":["可讀性分析"],"Open":["開啟"],"Title":["標題"],"Creating redirects is a %s feature":["建立轉址屬於 %s 功能"],"Close":["關閉"],"Snippet preview":["代碼預覽"],"FAQ":["FAQ"],"Settings":["設定"]}}}
     1{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=1; plural=0;","lang":"zh_HK"},"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":[],"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":[],"Describe the duration of the instruction:":[],"Optional. Customize how you want to describe the duration of the instruction":[],"%s, %s and %s":[],"%s and %s":[],"%d minute":[],"%d hour":[],"%d day":[],"Enter a step title":[],"Optional. This can give you better control over the styling of the steps.":[],"CSS class(es) to apply to the steps":[],"minutes":[],"hours":[],"days":[],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":[],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":[],"Copy error":[],"An error occurred loading the %s primary taxonomy picker.":[],"Time needed:":[],"Move question down":[],"Move question up":[],"Insert question":[],"Delete question":[],"Enter the answer to the question":[],"Enter a question":[],"Add question":[],"Frequently Asked Questions":[],"Great news: you can, with %s!":[],"Select the primary %s":[],"Mark as cornerstone content":[],"Move step down":[],"Move step up":[],"Insert step":[],"Delete step":[],"Add image":[],"Enter a step description":[],"Enter a description":[],"Unordered list":[],"Showing step items as an ordered list.":[],"Showing step items as an unordered list":[],"Add step":[],"Delete total time":[],"Add total time":[],"How to":[],"How-to":[],"Snippet Preview":[],"Analysis results":[],"Enter a focus keyphrase to calculate the SEO score":[],"Learn more about Cornerstone Content.":[],"Cornerstone content should be the most important and extensive articles on your site.":[],"Add synonyms":["加入同義詞"],"Would you like to add keyphrase synonyms?":[],"Current year":["本年度"],"Page":["頁面"],"Tagline":[],"Modify your meta description by editing it right here":[],"ID":[],"Separator":[],"Search phrase":[],"Term description":[],"Tag description":[],"Category description":[],"Primary category":[],"Category":["分類"],"Excerpt only":[],"Excerpt":[],"Site title":["網站標題"],"Parent title":[],"Date":["日期"],"Other benefits of %s for you:":[],"Cornerstone content":[],"24/7 support":["全天候支援"],"Great news: you can, with %1$s!":[],"%1$sSocial media preview%2$s: Facebook & Twitter":[],"Superfast internal links suggestions":[],"%1$sNo more dead links%2$s: easy redirect manager":[],"No ads!":["沒有任何廣告!"],"Please provide a meta description by editing the snippet below.":["請利用以下代碼編輯器提供meta描述。"],"The name of the person":["人物名稱"],"Readability analysis":["可讀性分析"],"Open":["開啟"],"Title":["標題"],"Creating redirects is a %s feature":["建立轉址屬於 %s 功能"],"Close":["關閉"],"Snippet preview":["代碼預覽"],"FAQ":["FAQ"],"Settings":["設定"]}}}
  • wordpress-seo/trunk/languages/wordpress-seojs-zh_TW.json

    r2050445 r2065083  
    1 {"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=1; plural=0;","lang":"zh_TW"},"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":["免費"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":["您是否知道 %s 還會分析您的關鍵字的不同單詞形式,如複數形式和過去式?"],"Help on choosing the perfect focus keyphrase":["關於選擇完美的焦點關鍵字的幫助"],"Would you like to add a related keyphrase?":["您想增加相關的關鍵字嗎?"],"Go %s!":["前往 %s!"],"Rank better with synonyms & related keyphrases":["使用同義詞 & 相關的關鍵字 以獲得更好的排名"],"Add related keyphrase":["增加相關關鍵字"],"Get %s":["取得 %s"],"Focus keyphrase":["焦點關鍵字"],"Learn more about the readability analysis":["了解更多關於「可讀性分析」"],"Describe the duration of the instruction:":[],"Optional. Customize how you want to describe the duration of the instruction":[],"%s, %s and %s":["%s、%s 和 %s"],"%s and %s":["%s 和 %s"],"%d minute":["%d 分"],"%d hour":["%d 小時"],"%d day":["%d 天"],"Enter a step title":["輸入步驟標題"],"Optional. This can give you better control over the styling of the steps.":[],"CSS class(es) to apply to the steps":[],"minutes":["分鐘"],"hours":["小時"],"days":["天"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":["以 SEO 友善的方式來建立操作指南。每篇文章只能使用一個操作指南區塊。"],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":[],"Copy error":["複製錯誤"],"An error occurred loading the %s primary taxonomy picker.":["載入 %s 主分類選擇器時發生錯誤。"],"Time needed:":["所需時間:"],"Move question down":["向下移動問題"],"Move question up":["向上移動問題"],"Insert question":["插入問題"],"Delete question":["刪除問題"],"Enter the answer to the question":["輸入問題的答案"],"Enter a question":["輸入問題"],"Add question":["新增問題"],"Frequently Asked Questions":["常見問題"],"Great news: you can, with %s!":["好消息:您可以,%s!"],"Select the primary %s":["選擇主要%s"],"Move step down":["向下移動"],"Move step up":["向上移動"],"Insert step":["插入步驟"],"Delete step":["刪除步驟"],"Add image":["新增圖片"],"Enter a step description":["輸入步驟描述"],"Enter a description":["輸入一個描述"],"Unordered list":[],"Showing step items as an ordered list.":["將步驟項顯示為有序列表。"],"Showing step items as an unordered list":["將步驟項顯示為無序列表"],"Add step":["增加步驟"],"Delete total time":["刪除全部時間"],"Add total time":["增加全部時間"],"How to":["如何"],"How-to":[],"Snippet Preview":["片段預覽"],"Analysis results":["分析結果"],"Enter a focus keyphrase to calculate the SEO score":["輸入焦點關鍵字來計算SEO分數"],"Learn more about Cornerstone Content.":["瞭解更多關於基石內容。"],"Cornerstone content should be the most important and extensive articles on your site.":["基石內容應該是您網站上最重要和最廣泛的文章。"],"Add synonyms":["增加同義詞"],"Would you like to add keyphrase synonyms?":["您想增加關鍵同義詞嗎?"],"Current year":["今年"],"Page":["頁面"],"Tagline":["標語"],"Modify your meta description by editing it right here":["在此處編輯來修改 Meta 描述"],"ID":["ID"],"Separator":["分隔器"],"Search phrase":["搜尋字詞"],"Term description":["條款描述"],"Tag description":["標籤描述"],"Category description":["分類描述"],"Primary category":["主要類別"],"Category":["分類"],"Excerpt only":["僅摘要"],"Excerpt":["摘要"],"Site title":["網站標題"],"Parent title":[],"Date":["日期"],"Other benefits of %s for you:":["%s 對您的其他好處:"],"Cornerstone content":["基石內容"],"24/7 support":["24/7 支援"],"Great news: you can, with %1$s!":["好消息!您可以和 %1$s !"],"1 year free updates and upgrades included!":["包含一年免費更新與升級!"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$s社群媒體預覽%2$s:Facebook & Twitter"],"Superfast internal links suggestions":[],"%1$sNo more dead links%2$s: easy redirect manager":["%1$s沒有更多的死連結%2$s:簡易轉址管理器"],"No ads!":["無廣告!"],"Please provide a meta description by editing the snippet below.":["請利用以下代碼編輯器提供meta描述。"],"Readability analysis":["可讀性分析"],"Open":["開啟"],"Title":["標題"],"Creating redirects is a %s feature":["建立轉址為 %s 的特色功能"],"Close":["關閉"],"Snippet preview":["代碼預覽"],"FAQ":["FAQ"],"Settings":["設定"]}}}
     1{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo","plural-forms":"nplurals=1; plural=0;","lang":"zh_TW"},"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":["免費"],"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":["您是否知道 %s 還會分析您的關鍵字的不同單詞形式,如複數形式和過去式?"],"Help on choosing the perfect focus keyphrase":["關於選擇完美的焦點關鍵字的幫助"],"Would you like to add a related keyphrase?":["您想增加相關的關鍵字嗎?"],"Go %s!":["前往 %s!"],"Rank better with synonyms & related keyphrases":["使用同義詞 & 相關的關鍵字 以獲得更好的排名"],"Add related keyphrase":["增加相關關鍵字"],"Get %s":["取得 %s"],"Focus keyphrase":["焦點關鍵字"],"Learn more about the readability analysis":["了解更多關於「可讀性分析」"],"Describe the duration of the instruction:":[],"Optional. Customize how you want to describe the duration of the instruction":[],"%s, %s and %s":["%s、%s 和 %s"],"%s and %s":["%s 和 %s"],"%d minute":["%d 分"],"%d hour":["%d 小時"],"%d day":["%d 天"],"Enter a step title":["輸入步驟標題"],"Optional. This can give you better control over the styling of the steps.":[],"CSS class(es) to apply to the steps":[],"minutes":["分鐘"],"hours":["小時"],"days":["天"],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":["以 SEO 友善的方式來建立操作指南。每篇文章只能使用一個操作指南區塊。"],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":[],"Copy error":["複製錯誤"],"An error occurred loading the %s primary taxonomy picker.":["載入 %s 主分類選擇器時發生錯誤。"],"Time needed:":["所需時間:"],"Move question down":["向下移動問題"],"Move question up":["向上移動問題"],"Insert question":["插入問題"],"Delete question":["刪除問題"],"Enter the answer to the question":["輸入問題的答案"],"Enter a question":["輸入問題"],"Add question":["新增問題"],"Frequently Asked Questions":["常見問題"],"Great news: you can, with %s!":["好消息:您可以,%s!"],"Select the primary %s":["選擇主要%s"],"Mark as cornerstone content":["標記為基石內容"],"Move step down":["向下移動"],"Move step up":["向上移動"],"Insert step":["插入步驟"],"Delete step":["刪除步驟"],"Add image":["新增圖片"],"Enter a step description":["輸入步驟描述"],"Enter a description":["輸入一個描述"],"Unordered list":[],"Showing step items as an ordered list.":["將步驟項顯示為有序列表。"],"Showing step items as an unordered list":["將步驟項顯示為無序列表"],"Add step":["增加步驟"],"Delete total time":["刪除全部時間"],"Add total time":["增加全部時間"],"How to":["如何"],"How-to":[],"Snippet Preview":["片段預覽"],"Analysis results":["分析結果"],"Enter a focus keyphrase to calculate the SEO score":["輸入焦點關鍵字來計算SEO分數"],"Learn more about Cornerstone Content.":["瞭解更多關於基石內容。"],"Cornerstone content should be the most important and extensive articles on your site.":["基石內容應該是您網站上最重要和最廣泛的文章。"],"Add synonyms":["增加同義詞"],"Would you like to add keyphrase synonyms?":["您想增加關鍵同義詞嗎?"],"Current year":["今年"],"Page":["頁面"],"Tagline":["標語"],"Modify your meta description by editing it right here":["在此處編輯來修改 Meta 描述"],"ID":["ID"],"Separator":["分隔器"],"Search phrase":["搜尋字詞"],"Term description":["條款描述"],"Tag description":["標籤描述"],"Category description":["分類描述"],"Primary category":["主要類別"],"Category":["分類"],"Excerpt only":["僅摘要"],"Excerpt":["摘要"],"Site title":["網站標題"],"Parent title":[],"Date":["日期"],"Other benefits of %s for you:":["%s 對您的其他好處:"],"Cornerstone content":["基石內容"],"24/7 support":["24/7 支援"],"Great news: you can, with %1$s!":["好消息!您可以和 %1$s !"],"%1$sSocial media preview%2$s: Facebook & Twitter":["%1$s社群媒體預覽%2$s:Facebook & Twitter"],"Superfast internal links suggestions":[],"%1$sNo more dead links%2$s: easy redirect manager":["%1$s沒有更多的死連結%2$s:簡易轉址管理器"],"No ads!":["無廣告!"],"Please provide a meta description by editing the snippet below.":["請利用以下代碼編輯器提供meta描述。"],"The name of the person":["人物名稱"],"Readability analysis":["可讀性分析"],"Open":["開啟"],"Title":["標題"],"Creating redirects is a %s feature":["建立轉址為 %s 的特色功能"],"Close":["關閉"],"Snippet preview":["代碼預覽"],"FAQ":["FAQ"],"Settings":["設定"]}}}
  • wordpress-seo/trunk/languages/wordpress-seojs.json

    r2061403 r2065083  
    1 {"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo"},"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":[""],"Go %s!":[""],"Cornerstone content":[""],"Cornerstone content should be the most important and extensive articles on your site.":[""],"Learn more about Cornerstone Content.":[""],"Snippet Preview":[""],"An error occurred loading the %s primary taxonomy picker.":[""],"Copy error":[""],"Select the primary %s":[""],"Modify your meta description by editing it right here":[""],"Snippet preview":[""],"Close":[""],"Readability analysis":[""],"Analysis results":[""],"Learn more about the readability analysis":[""],"Get %s":[""],"Would you like to add a related keyphrase?":[""],"Add related keyphrase":[""],"Help on choosing the perfect focus keyphrase":[""],"Enter a focus keyphrase to calculate the SEO score":[""],"Focus keyphrase":[""],"Add synonyms":[""],"Would you like to add keyphrase synonyms?":[""],"Great news: you can, with %s!":[""],"Rank better with synonyms & related keyphrases":[""],"%1$sNo more dead links%2$s: easy redirect manager":[""],"Superfast internal links suggestions":[""],"%1$sSocial media preview%2$s: Facebook & Twitter":[""],"24/7 support":[""],"No ads!":[""],"Other benefits of %s for you:":[""],"1 year free updates and upgrades included!":[""],"Open":[""],"Great news: you can, with %1$s!":[""],"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.":[""],"Creating redirects is a %s feature":[""],"Please provide a meta description by editing the snippet below.":[""],"Free":[""],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":[""],"FAQ":[""],"Frequently Asked Questions":[""],"New question added":[""],"Add question":[""],"Delete question":[""],"Insert question":[""],"Move question up":[""],"Move question down":[""],"Enter a question":[""],"Enter the answer to the question":[""],"Add image":[""],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":[""],"How-to":[""],"How to":[""],"New step added":[""],"Add step":[""],"Showing step items as an unordered list":[""],"Showing step items as an ordered list.":[""],"Add total time":[""],"days":[""],"hours":[""],"minutes":[""],"Delete total time":[""],"Settings":[""],"CSS class(es) to apply to the steps":[""],"Optional. This can give you better control over the styling of the steps.":[""],"Describe the duration of the instruction:":[""],"Optional. Customize how you want to describe the duration of the instruction":[""],"Unordered list":[""],"Enter a description":[""],"Time needed:":[""],"Delete step":[""],"Insert step":[""],"Move step up":[""],"Move step down":[""],"Enter a step title":[""],"Enter a step description":[""],"%d day":["","%d days"],"%d hour":["","%d hours"],"%d minute":["","%d minutes"],"%s and %s":[""],"%s, %s and %s":[""],"Current year":[""],"Date":[""],"ID":[""],"Page":[""],"Search phrase":[""],"Tagline":[""],"Site title":[""],"Category":[""],"Title":[""],"Parent title":[""],"Excerpt":[""],"Primary category":[""],"Separator":[""],"Excerpt only":[""],"Category description":[""],"Tag description":[""],"Term description":[""]}}}
     1{"domain":"wordpress-seo","locale_data":{"wordpress-seo":{"":{"domain":"wordpress-seo"},"Did you know %s also analyzes the different word forms of your keyphrase, like plurals and past tenses?":[""],"Go %s!":[""],"Cornerstone content":[""],"Cornerstone content should be the most important and extensive articles on your site.":[""],"Learn more about Cornerstone Content.":[""],"Mark as cornerstone content":[""],"Snippet Preview":[""],"An error occurred loading the %s primary taxonomy picker.":[""],"Copy error":[""],"Select the primary %s":[""],"Modify your meta description by editing it right here":[""],"Snippet preview":[""],"Close":[""],"Select a user...":[""],"The name of the person":[""],"Name:":[""],"Error: Please select a user below to make your site's meta data complete.":[""],"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":[""],"Readability analysis":[""],"Analysis results":[""],"Learn more about the readability analysis":[""],"Get %s":[""],"Would you like to add a related keyphrase?":[""],"Add related keyphrase":[""],"Help on choosing the perfect focus keyphrase":[""],"Enter a focus keyphrase to calculate the SEO score":[""],"Focus keyphrase":[""],"Add synonyms":[""],"Would you like to add keyphrase synonyms?":[""],"Great news: you can, with %s!":[""],"Rank better with synonyms & related keyphrases":[""],"%1$sNo more dead links%2$s: easy redirect manager":[""],"Superfast internal links suggestions":[""],"%1$sSocial media preview%2$s: Facebook & Twitter":[""],"24/7 support":[""],"No ads!":[""],"Other benefits of %s for you:":[""],"1 year free support and updates included!":[""],"Open":[""],"Great news: you can, with %1$s!":[""],"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.":[""],"Creating redirects is a %s feature":[""],"Please provide a meta description by editing the snippet below.":[""],"Free":[""],"List your Frequently Asked Questions in an SEO-friendly way. You can only use one FAQ block per post.":[""],"FAQ":[""],"Frequently Asked Questions":[""],"New question added":[""],"Add question":[""],"Delete question":[""],"Insert question":[""],"Move question up":[""],"Move question down":[""],"Enter a question":[""],"Enter the answer to the question":[""],"Add image":[""],"Create a How-to guide in an SEO-friendly way. You can only use one How-to block per post.":[""],"How-to":[""],"How to":[""],"New step added":[""],"Add step":[""],"Showing step items as an unordered list":[""],"Showing step items as an ordered list.":[""],"Add total time":[""],"days":[""],"hours":[""],"minutes":[""],"Delete total time":[""],"Settings":[""],"CSS class(es) to apply to the steps":[""],"Optional. This can give you better control over the styling of the steps.":[""],"Describe the duration of the instruction:":[""],"Optional. Customize how you want to describe the duration of the instruction":[""],"Unordered list":[""],"Enter a description":[""],"Time needed:":[""],"Delete step":[""],"Insert step":[""],"Move step up":[""],"Move step down":[""],"Enter a step title":[""],"Enter a step description":[""],"%d day":["","%d days"],"%d hour":["","%d hours"],"%d minute":["","%d minutes"],"%s and %s":[""],"%s, %s and %s":[""],"Current year":[""],"Date":[""],"ID":[""],"Page":[""],"Search phrase":[""],"Tagline":[""],"Site title":[""],"Category":[""],"Title":[""],"Parent title":[""],"Excerpt":[""],"Primary category":[""],"Separator":[""],"Excerpt only":[""],"Category description":[""],"Tag description":[""],"Term description":[""]}}}
  • wordpress-seo/trunk/languages/wordpress-seojs.php

    r2063108 r2065083  
    1717    __( 'Learn more about Cornerstone Content.', 'wordpress-seo' ),
    1818
     19    // Reference: js/src/components/CornerstoneToggle.js:26
     20    __( 'Mark as cornerstone content', 'wordpress-seo' ),
     21
    1922    // Reference: js/src/components/Metabox.js:48
    2023    __( 'Snippet Preview', 'wordpress-seo' ),
     
    3942    __( 'Close', 'wordpress-seo' ),
    4043
     44    // Reference: js/src/components/WordPressUserSelector.js:99
     45    __( 'Select a user...', 'wordpress-seo' ),
     46
     47    // Reference: js/src/components/WordPressUserSelectorOnboardingWizard.js:39
     48    __( 'The name of the person', 'wordpress-seo' ),
     49
     50    // Reference: js/src/components/WordPressUserSelectorSearchAppearance.js:122
     51    __( 'Name:', 'wordpress-seo' ),
     52
     53    // Reference: js/src/components/WordPressUserSelectorSearchAppearance.js:74
     54    __( 'Error: Please select a user below to make your site\'s meta data complete.', 'wordpress-seo' ),
     55
     56    // Reference: js/src/components/WordPressUserSelectorSearchAppearance.js:91
     57    __( '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', 'wordpress-seo' ),
     58
    4159    // Reference: js/src/components/contentAnalysis/ReadabilityAnalysis.js:50
    4260    __( 'Readability analysis', 'wordpress-seo' ),
    4361
    4462    // Reference: js/src/components/contentAnalysis/ReadabilityAnalysis.js:57
    45     // Reference: js/src/components/contentAnalysis/SeoAnalysis.js:242
     63    // Reference: js/src/components/contentAnalysis/SeoAnalysis.js:241
    4664    __( 'Analysis results', 'wordpress-seo' ),
    4765
     
    4967    __( 'Learn more about the readability analysis', 'wordpress-seo' ),
    5068
    51     // Reference: js/src/components/contentAnalysis/SeoAnalysis.js:105
     69    // Reference: js/src/components/contentAnalysis/SeoAnalysis.js:104
    5270    // Reference: js/src/components/modals/KeywordSynonyms.js:63
    5371    // Reference: js/src/components/modals/MultipleKeywords.js:63
    54     // Reference: js/src/components/modals/RedirectUpsell.js:90
     72    // Reference: js/src/components/modals/RedirectUpsell.js:89
    5573    __( 'Get %s', 'wordpress-seo' ),
    5674
    57     // Reference: js/src/components/contentAnalysis/SeoAnalysis.js:124
     75    // Reference: js/src/components/contentAnalysis/SeoAnalysis.js:123
    5876    __( 'Would you like to add a related keyphrase?', 'wordpress-seo' ),
    5977
    60     // Reference: js/src/components/contentAnalysis/SeoAnalysis.js:155
     78    // Reference: js/src/components/contentAnalysis/SeoAnalysis.js:154
    6179    __( 'Add related keyphrase', 'wordpress-seo' ),
    6280
    63     // Reference: js/src/components/contentAnalysis/SeoAnalysis.js:179
     81    // Reference: js/src/components/contentAnalysis/SeoAnalysis.js:178
    6482    __( 'Help on choosing the perfect focus keyphrase', 'wordpress-seo' ),
    6583
    66     // Reference: js/src/components/contentAnalysis/SeoAnalysis.js:211
     84    // Reference: js/src/components/contentAnalysis/SeoAnalysis.js:210
    6785    __( 'Enter a focus keyphrase to calculate the SEO score', 'wordpress-seo' ),
    6886
    69     // Reference: js/src/components/contentAnalysis/SeoAnalysis.js:230
     87    // Reference: js/src/components/contentAnalysis/SeoAnalysis.js:229
    7088    // Reference: js/src/values/defaultReplaceVariables.js:50
    7189    __( 'Focus keyphrase', 'wordpress-seo' ),
    7290
    73     // Reference: js/src/components/contentAnalysis/SeoAnalysis.js:49
     91    // Reference: js/src/components/contentAnalysis/SeoAnalysis.js:48
    7492    __( 'Add synonyms', 'wordpress-seo' ),
    7593
    76     // Reference: js/src/components/contentAnalysis/SeoAnalysis.js:76
     94    // Reference: js/src/components/contentAnalysis/SeoAnalysis.js:75
    7795    __( 'Would you like to add keyphrase synonyms?', 'wordpress-seo' ),
    7896
     
    109127    // Reference: js/src/components/modals/KeywordSynonyms.js:72
    110128    // Reference: js/src/components/modals/MultipleKeywords.js:72
    111     // Reference: js/src/components/modals/RedirectUpsell.js:132
    112     __( '1 year free updates and upgrades included!', 'wordpress-seo' ),
     129    // Reference: js/src/components/modals/RedirectUpsell.js:131
     130    __( '1 year free support and updates included!', 'wordpress-seo' ),
    113131
    114132    // Reference: js/src/components/modals/Modal.js:76
     
    118136    __( 'Great news: you can, with %1$s!', 'wordpress-seo' ),
    119137
    120     // Reference: js/src/components/modals/RedirectUpsell.js:102
     138    // Reference: js/src/components/modals/RedirectUpsell.js:101
    121139    __( 'To be able to create a redirect and fix this issue, you need %1$s. ', 'wordpress-seo' ),
    122140
    123     // Reference: js/src/components/modals/RedirectUpsell.js:108
     141    // Reference: js/src/components/modals/RedirectUpsell.js:107
    124142    __( 'You can buy the plugin, including one year of support and updates, on %1$s.', 'wordpress-seo' ),
    125143
    126     // Reference: js/src/components/modals/RedirectUpsell.js:96
     144    // Reference: js/src/components/modals/RedirectUpsell.js:95
    127145    __( 'Creating redirects is a %s feature', 'wordpress-seo' ),
    128146
     
    191209    __( 'Showing step items as an ordered list.', 'wordpress-seo' ),
    192210
    193     // Reference: js/src/structured-data-blocks/how-to/components/HowTo.js:661
     211    // Reference: js/src/structured-data-blocks/how-to/components/HowTo.js:660
    194212    __( 'Add total time', 'wordpress-seo' ),
    195213
    196     // Reference: js/src/structured-data-blocks/how-to/components/HowTo.js:679
     214    // Reference: js/src/structured-data-blocks/how-to/components/HowTo.js:678
    197215    __( 'days', 'wordpress-seo' ),
    198216
    199     // Reference: js/src/structured-data-blocks/how-to/components/HowTo.js:694
     217    // Reference: js/src/structured-data-blocks/how-to/components/HowTo.js:693
    200218    __( 'hours', 'wordpress-seo' ),
    201219
    202     // Reference: js/src/structured-data-blocks/how-to/components/HowTo.js:709
     220    // Reference: js/src/structured-data-blocks/how-to/components/HowTo.js:708
    203221    __( 'minutes', 'wordpress-seo' ),
    204222
    205     // Reference: js/src/structured-data-blocks/how-to/components/HowTo.js:722
     223    // Reference: js/src/structured-data-blocks/how-to/components/HowTo.js:721
    206224    __( 'Delete total time', 'wordpress-seo' ),
    207225
    208     // Reference: js/src/structured-data-blocks/how-to/components/HowTo.js:746
     226    // Reference: js/src/structured-data-blocks/how-to/components/HowTo.js:745
    209227    __( 'Settings', 'wordpress-seo' ),
    210228
    211     // Reference: js/src/structured-data-blocks/how-to/components/HowTo.js:748
     229    // Reference: js/src/structured-data-blocks/how-to/components/HowTo.js:747
    212230    __( 'CSS class(es) to apply to the steps', 'wordpress-seo' ),
    213231
    214     // Reference: js/src/structured-data-blocks/how-to/components/HowTo.js:751
     232    // Reference: js/src/structured-data-blocks/how-to/components/HowTo.js:750
    215233    __( 'Optional. This can give you better control over the styling of the steps.', 'wordpress-seo' ),
    216234
    217     // Reference: js/src/structured-data-blocks/how-to/components/HowTo.js:754
     235    // Reference: js/src/structured-data-blocks/how-to/components/HowTo.js:753
    218236    __( 'Describe the duration of the instruction:', 'wordpress-seo' ),
    219237
    220     // Reference: js/src/structured-data-blocks/how-to/components/HowTo.js:757
     238    // Reference: js/src/structured-data-blocks/how-to/components/HowTo.js:756
    221239    __( 'Optional. Customize how you want to describe the duration of the instruction', 'wordpress-seo' ),
    222240
    223     // Reference: js/src/structured-data-blocks/how-to/components/HowTo.js:761
     241    // Reference: js/src/structured-data-blocks/how-to/components/HowTo.js:760
    224242    __( 'Unordered list', 'wordpress-seo' ),
    225243
    226     // Reference: js/src/structured-data-blocks/how-to/components/HowTo.js:792
     244    // Reference: js/src/structured-data-blocks/how-to/components/HowTo.js:791
    227245    __( 'Enter a description', 'wordpress-seo' ),
    228246
  • wordpress-seo/trunk/languages/yoast-components-bg_BG.json

    r2050445 r2065083  
    1 {"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"bg"},"The image you selected is too small for Facebook":[],"The given image url cannot be loaded":[],"Free":[],"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"],"Something went wrong. Please reload the page.":["Нещо се обърка. Моля, презаредете страницата. "],"Modify your meta description by editing it right here":["Променете вашето мета описание, като го редактирате от тук"],"Url preview":["Преглед на Url адреса"],"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.":["Моля, предоставете мета описание, като редактирате снипета по-долу. Ако не го направите, Google ще се опита да намери съответна част от публикацията ви, за да се покаже в резултатите от търсенето."],"Insert snippet variable":["Вмъкване на променлива на снипета"],"Dismiss this notice":["Отхвърлете това известие"],"No results":["Няма резултати"],"%d result found, use up and down arrow keys to navigate":["%d намерен резултат, използвайте стрелка нагоре и надолу за да навигирате","%d намерени резултата, използвайте стрелка нагоре и надолу за да навигирате между тях"],"Your site language is set to %s. If this is not correct, contact your site administrator.":["Езикът на вашият сайт е настроен на %s. Ако това не е правилно, свържете се с администратора на вашият сайт."],"Number of results found: %d":["Брой намерени резултати: %d"],"On":["Включено"],"Off":["Изключено"],"Good results":["Добри резултати"],"Need help?":["Нужда от помощ?"],"Type here to search...":["Въведете тук, за да търсите ..."],"Search the Yoast Knowledge Base for answers to your questions:":["Потърсете в Yoast база знания за отговори на вашите въпроси:"],"Remove highlight from the text":["Премахване на подчертаното от текста"],"Your site language is set to %s. ":["Езикът на сайта Ви е настроен на %s."],"Highlight this result in the text":["Маркирайте този резултат в текста"],"Considerations":["Съображения"],"Errors":["Грешки"],"Change language":["Промяна на езика"],"(Opens in a new browser tab)":["(Отваряне в нова табулация на браузера)"],"Scroll to see the preview content.":["Слезте надолу, за да видите съдържанието на прегледа."],"Step %1$d: %2$s":["Стъпка %1$d: %2$s"],"Mobile preview":["Преглед на мобилната версия"],"Desktop preview":["Преглед на настолната версия"],"Close snippet editor":["Затваряне на редактора на извадки"],"Slug":["Кратък адрес"],"Marks are disabled in current view":["Маркерите са изключени в текущия изглед"],"Choose an image":["Изберете изображение"],"Remove the image":["Премахване на изображението"],"Choose 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":["Редактиране на извадката"],"SEO title preview":["Преглед на SEO заглавието"],"Meta description preview":["Преглед на мета описанието"],"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).":["Възникна проблем при записа на текущата стъпка. Моля {{link}}изпратете доклад за грешка{{/link}}, като опишете на коя стъпка се намирате и какви промени искате да направите (ако има такива)."],"Close the Wizard":["Затваряне на конфигуратора"],"%s installation wizard":["%s помощник за инсталиране"],"SEO title":["SEO заглавие"],"Enter your Google Authorization Code and press the Authenticate button.":["Въведете оторизационния код от Google и натиснете бутона \"Автентикация\""],"Search results":["Резултати от търсенето"],"Improvements":["Подобрения"],"Problems":["Проблеми"],"Loading...":["Зареждане..."],"Something went wrong. Please try again later.":["Възникна проблем. Моля опитайте пак по-късно."],"No results found.":["Не са открити резултати."],"There were no profiles found":["Не са открити профили"],"Authenticate":["Автентикация"],"Get Google Authorization Code":["Получаване на оторизационен код"],"Search":["Търсене"],"Email":["Е-поща"],"Previous":["Назад"],"Next":["Напред"],"Close":["Затваряне"],"Meta description":["Meta описание"]}}}
     1{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"bg"},"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":["Премахване на изображението"],"Choose 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":["Е-поща"]}}}
  • wordpress-seo/trunk/languages/yoast-components-ca.json

    r2050445 r2065083  
    1 {"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"ca"},"The image you selected is too small for Facebook":[],"The given image url cannot be loaded":[],"Free":["Gratuït"],"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"],"Something went wrong. Please reload the page.":["Ha fallat alguna cosa. Recarregueu la pàgina."],"Modify your meta description by editing it right here":["Modifiqueu la descripció meta editant-la aquí."],"Url preview":["Vista prèvia de l'URL"],"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.":["Introduïu una descripció meta editant el fragment a sota. Si no ho feu, Google intentarà trobar una part rellevant de l'entrada per a mostrar-la als resultats de cerca."],"Insert snippet variable":["Insereix una variable del fragment"],"Dismiss this notice":["Descarta aquest avís"],"No results":["Sense resultats"],"%d result found, use up and down arrow keys to navigate":["%d resultat trobat, feu servir les tecles amunt i avall per navegar","%d resultats trobats, feu servir les tecles amunt i avall per navegar"],"Your site language is set to %s. If this is not correct, contact your site administrator.":["L'idioma del lloc està configurat a %s. Si no és així, contacteu amb l'administrador del lloc."],"Number of results found: %d":["Número de resultats trobats: %d"],"On":["Activat"],"Off":["Desactivat"],"Good results":["Bons resultats"],"Need help?":["Necessiteu ajuda?"],"Type here to search...":["Escriviu ací per a cercar..."],"Search the Yoast Knowledge Base for answers to your questions:":["Cerqueu respostes a les vostres preguntes a la base de coneixement de Yoast:"],"Remove highlight from the text":["Elimineu el remarcat del text"],"Your site language is set to %s. ":["L'idioma del lloc està establert a %s."],"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."],"Step %1$d: %2$s":["Pas %1$d: %2$s"],"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"],"Choose image":["Tria 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ó"],"SEO title preview":["Previsualització del títol SEO"],"Meta description preview":["Previsualització de la descripció meta"],"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).":["Hi ha hagut un problema desant el pas actual, {{link}}envieu-nos un informe d'error{{/link}} descrivint en quin pas estàveu i quins canvis volíeu fer."],"Close the Wizard":["Tanca l'assistent"],"%s installation wizard":["Assistent d'instal·lació de %s"],"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»"],"Search results":["Resultats de la cerca"],"Improvements":["Millores"],"Problems":["Problemes"],"Loading...":["S'està carregant..."],"Something went wrong. Please try again later.":["Alguna cosa ha anat malament. Torneu a provar en un moment."],"No results found.":["No s'han trobat resultats."],"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"],"Previous":["Anterior"],"Next":["Següent"],"Close":["Tanca"],"Meta description":["Meta descripció"]}}}
     1{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"ca"},"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.":["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"],"Choose image":["Tria 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"]}}}
  • wordpress-seo/trunk/languages/yoast-components-cs_CZ.json

    r2061403 r2065083  
    1 {"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"},"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"],"Free":["Zdarma"],"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"],"Something went wrong. Please reload the page.":["Něco se pokazilo. Znovu načtěte stránku."],"Modify your meta description by editing it right here":["Upravte popis meta tím, že jej upravíte přímo zde"],"Url preview":["náhled url"],"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.":["Prosím, vložte popis do níže zobrazeného pole úpravou úryvku. Pokud to neuděláte, Google se pokusí najít relevantní část vašeho příspěvku a zobrazí ji ve výsledcích vyhledávání."],"Insert snippet variable":["Vložit ukázku proměnné"],"Dismiss this notice":["Zrušit toto oznámení"],"No results":["Žádné výsledky"],"%d result found, use up and down arrow keys to navigate":["Nalezen %d výsledek, k pohybu použijte šipky nahoru, dolů.","Nalezeny %d výsledky, k pohybu použijte šipky nahoru, dolů.","Nalezeno %d výsledků, k pohybu použijte šipky nahoru, dolů."],"Your site language is set to %s. If this is not correct, contact your site administrator.":["Jazyk vaší stránky je nastaven na %s. Pokud to není v pořádku, kontaktujte  administrátora vaší stránky."],"Number of results found: %d":["Počet nalezených výsledků: %d"],"On":["Zapnuto"],"Off":["Vypnuto"],"Good results":["Dobré výsledky"],"Need help?":["Potřebujete pomoci?"],"Type here to search...":["Zadejte zde pro vyhledávání..."],"Search the Yoast Knowledge Base for answers to your questions:":["Vyhledejte the Yoast Knowledge Base pro odpovědi na vaše otázky:"],"Remove highlight from the text":["Odstraňte zvýraznění textu"],"Your site language is set to %s. ":["Jazyk vaší stránky je nastaven na %s."],"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."],"Step %1$d: %2$s":["Krok %1$d: %2$s"],"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"],"Choose image":["Vybrat 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"],"SEO title preview":["Náhled SEO titulku"],"Meta description preview":["Náhled meta popisku"],"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).":["Při ukládání tohoto kroku se objevil problém. {link}}Ohlašte prosím tuto chybu{{/link}} a napište nám, na jakém kroku se nacházíte a jaké změny jste chtěli učinit (pokud nějaké)."],"Close the Wizard":["Zavřít průvodce"],"%s installation wizard":["%s průvodce instalací"],"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."],"Search results":["Výsledky vyhledávání"],"Improvements":["Vylepšení "],"Problems":["Problémy"],"Loading...":["Načítání..."],"Something went wrong. Please try again later.":["Něco se pokazilo. Prosím zkuste to znovu později."],"No results found.":["Nebyly nalezeny žádné výsledky."],"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"],"Previous":["Předchozí"],"Next":["Další"],"Close":["Zavřít"],"Meta description":["Meta popis"]}}}
     1{"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"},"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"],"Choose image":["Vybrat 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"]}}}
  • wordpress-seo/trunk/languages/yoast-components-da_DK.json

    r2062118 r2065083  
    1 {"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"da_DK"},"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"],"Free":["Gratis"],"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"],"Something went wrong. Please reload the page.":["Noget gik galt. Genindlæs venligst siden."],"Modify your meta description by editing it right here":["Redigér din meta-beskrivelse ved at redigere den lige her"],"Url preview":["URL-forhåndsvisning"],"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.":["Skriv venligst en meta-beskrivelse ved at redigere snippetten herunder. Hvis du ikke gør dette, vil Google prøve at finde en relevant del af dit indlæg til at vise i søgeresultaterne."],"Insert snippet variable":["Indsæt snippet-variabel"],"Dismiss this notice":["Afvis denne meddelelse"],"No results":["Ingen resultater"],"%d result found, use up and down arrow keys to navigate":["%d resultat fundet, brug pil op og ned for at navigere","%d resultater fundet, brug pil op og ned for at navigere"],"Your site language is set to %s. If this is not correct, contact your site administrator.":["Dit websteds sprog er indstillet til %s. Hvis dette ikke er korrekt, kontakt dit websteds administrator."],"Number of results found: %d":["Antal resultater fundet: %d"],"On":["Til"],"Off":["Fra"],"Good results":["Gode resultater"],"Need help?":["Brug for hjælp?"],"Type here to search...":["Skriv her for at søge …"],"Search the Yoast Knowledge Base for answers to your questions:":["Søg i Yoasts vidensbase for svar på dine spørgsmål:"],"Remove highlight from the text":["Fjern fremhævelser fra teksten"],"Your site language is set to %s. ":["Sproget på dit websted er sat til %s."],"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."],"Step %1$d: %2$s":["Trin %1$d: %2$s"],"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"],"Choose image":["Vælg billede"],"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"],"SEO title preview":["Preview af SEO-titel"],"Meta description preview":["Preview af metabeskrivelse"],"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).":["Et problem opstod, da det nuværende trinskulle gemmes, {{link}}udfyld venligst en fejlrapport{{/link}}: Beskriv, hvilket trin du var på, og hvilke ændringer du evt. ønskede at lave."],"Close the Wizard":["Luk guiden"],"%s installation wizard":["%s installationsguide"],"SEO title":["SEO-titel"],"Enter your Google Authorization Code and press the Authenticate button.":["Indtast din Google Autentificeringskode og klik på knappen Autentificér."],"Search results":["Søgeresultater"],"Improvements":["Forbedringer"],"Problems":["Problemer"],"Loading...":["Indlæser …"],"Something went wrong. Please try again later.":["Noget gik galt. Prøv venligst igen senere."],"No results found.":["Ingen resultater fundet."],"There were no profiles found":["Ingen profiler fundet"],"Authenticate":["Godkend"],"Get Google Authorization Code":["Hent Google-autorisationskode"],"Search":["Søg"],"Email":["E-mail"],"Previous":["Forrige"],"Next":["Næste"],"Close":["Luk"],"Meta description":["Meta beskrivelse"]}}}
     1{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"da_DK"},"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"],"Choose image":["Vælg billede"],"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"]}}}
  • wordpress-seo/trunk/languages/yoast-components-de_CH.json

    r2050445 r2065083  
    1 {"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"de_CH"},"The image you selected is too small for Facebook":[],"The given image url cannot be loaded":[],"Free":[],"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":[],"Something went wrong. Please reload the page.":[],"Modify your meta description by editing it right here":[],"Url preview":["URL Vorschau"],"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.":[],"Insert snippet variable":[],"Dismiss this notice":["Ignoriere diese Nachricht"],"No results":["Keine Ergebnisse"],"%d result found, use up and down arrow keys to navigate":["%d Ergebnis gefunden, mit den Pfeiltasten nach oben und unten navigieren","%d Ergebnisse gefunden, mit den Pfeiltasten nach oben und unten navigieren"],"Your site language is set to %s. If this is not correct, contact your site administrator.":["Die Sprache deiner Website ist auf %s eingestellt. Wenn dies nicht korrekt ist, wende dich an deinen Website-Administrator."],"Number of results found: %d":["Anzahl der gefunden Ergebnisse: %d"],"On":[],"Off":[],"Good results":[],"Need help?":["Brauchst du Hilfe?"],"Type here to search...":["Hier tippen, um zu suchen…"],"Search the Yoast Knowledge Base for answers to your questions:":["Die Yoast Knowledge Base durchsuchen, um Antworten auf deine Fragen zu erhalten:"],"Remove highlight from the text":["Hervorhebung vom Text entfernen"],"Your site language is set to %s. ":[],"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."],"Step %1$d: %2$s":["Schritt %1$d: %2$s"],"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"],"Choose image":["Bild wählen"],"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"],"SEO title preview":[],"Meta description preview":[],"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).":["Beim Speichern dieses Schritts ist ein Problem aufgetreten. {{link}}Bitte melde uns diesen Fehler{{/link}} und beschreibe, bei welchem Schritt Du warst und welche Änderungen Du vornehmen wolltest."],"Close the Wizard":["Schließe den Assistenten "],"%s installation wizard":["%s Installationsassistent"],"SEO title":["SEO Titel"],"Enter your Google Authorization Code and press the Authenticate button.":["Gib den Autorisierungscode von Google ein und klicke auf \"Authentifizieren\"."],"Search results":["Suchergebnisse"],"Improvements":["Verbesserungen"],"Problems":["Probleme"],"Loading...":["Lade..."],"Something went wrong. Please try again later.":["Etwas ist schiefgelaufen. Bitte versuche es später erneut."],"No results found.":["Keine Ergebnisse gefunden."],"There were no profiles found":["Kein Profil gefunden."],"Authenticate":["Authentifizieren"],"Get Google Authorization Code":["Google-Autorisierungscode abrufen"],"Search":["Suchen"],"Email":["E-Mail"],"Previous":["Vorherige"],"Next":["Weiter"],"Close":["Schließen"],"Meta description":["Meta-Beschreibung"]}}}
     1{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"de_CH"},"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"],"Choose image":["Bild wählen"],"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"]}}}
  • wordpress-seo/trunk/languages/yoast-components-de_DE.json

    r2061403 r2065083  
    1 {"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"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."],"Free":["Kostenlos"],"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"],"Something went wrong. Please reload the page.":["Das hat nicht funktioniert. Bitte lade die Seite neu."],"Modify your meta description by editing it right here":["Bearbeite direkt hier deine Meta-Beschreibung "],"Url preview":["URL Vorschau"],"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.":["Bitte bearbeite das Codeschnipsel und richte eine Meta-Beschreibung ein. Wenn du dies nicht tust, wird Google selbständig versuchen, einen relevanten Teil deines Beitrags in den Suchergebnissen anzuzeigen."],"Insert snippet variable":["Codeschnipsel-Variable einsetzen"],"Dismiss this notice":["Ignoriere diese Nachricht"],"No results":["Keine Ergebnisse"],"%d result found, use up and down arrow keys to navigate":["%d Ergebnis gefunden, mit den Pfeiltasten nach oben und unten navigieren","%d Ergebnisse gefunden, mit den Pfeiltasten nach oben und unten navigieren"],"Your site language is set to %s. If this is not correct, contact your site administrator.":["Die Sprache deiner Website ist auf %s eingestellt. Wenn dies nicht korrekt ist, wende dich an deinen Website-Administrator."],"Number of results found: %d":["Anzahl der gefunden Ergebnisse: %d"],"On":["An"],"Off":["Aus"],"Good results":["Gute Ergebnisse"],"Need help?":["Hilfe benötigt?"],"Type here to search...":["Hier tippen um zu suchen..."],"Search the Yoast Knowledge Base for answers to your questions:":["Durchsuche die Yoast Wissensdatenbank für Antworten auf deine Fragen:"],"Remove highlight from the text":["Text-Markierung entfernen"],"Your site language is set to %s. ":["Die Sprache deiner Website ist auf %s eingestellt."],"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."],"Step %1$d: %2$s":["Schritt %1$d: %2$s"],"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"],"Choose image":["Bild wählen"],"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"],"SEO title preview":["SEO-Titel Vorschau"],"Meta description preview":["Meta Description Vorschau"],"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).":["Beim Speichern des aktuellen Schritts ist ein Problem aufgetreten. {{link}}Bitte erfasse einen Fehlerbericht{{/link}}, der beschreibt in welchen Schritt du warst und welche Änderungen du vorgenommen hast (falls Änderungen gemacht wurden)."],"Close the Wizard":["Schließe den Assistenten "],"%s installation wizard":["%s Installationsassistent"],"SEO title":["SEO Titel"],"Enter your Google Authorization Code and press the Authenticate button.":["Gib den Autorisierungscode von Google ein und klicke auf \"Authentifizieren\"."],"Search results":["Suchergebnisse"],"Improvements":["Verbesserungen"],"Problems":["Probleme"],"Loading...":["Wird geladen..."],"Something went wrong. Please try again later.":["Etwas ist schiefgelaufen. Bitte versuche es später erneut."],"No results found.":["Keine Ergebnisse gefunden."],"There were no profiles found":["Kein Profil gefunden."],"Authenticate":["Authentifizieren"],"Get Google Authorization Code":["Google-Autorisierungscode abrufen"],"Search":["Suchen"],"Email":["E-Mail"],"Previous":["Zurück"],"Next":["Weiter"],"Close":["Schließen"],"Meta description":["Meta-Beschreibung"]}}}
     1{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"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"],"Choose image":["Bild wählen"],"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"]}}}
  • wordpress-seo/trunk/languages/yoast-components-el.json

    r2050445 r2065083  
    1 {"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"el_GR"},"The image you selected is too small for Facebook":[],"The given image url cannot be loaded":[],"Free":["Δωρεάν"],"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"],"Something went wrong. Please reload the page.":["Κάτι πήγε λάθος. Παρακαλώ φορτώστε πάλι την σελίδα."],"Modify your meta description by editing it right here":["Τροποποιήστε την περιγραφή meta σας επεξεργάζοντάς την εδώ"],"Url preview":["Προβολή URL"],"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.":[],"Insert snippet variable":[],"Dismiss this notice":[],"No results":["Δεν υπάρχουν αποτελέσματα"],"%d result found, use up and down arrow keys to navigate":[],"Your site language is set to %s. If this is not correct, contact your site administrator.":[],"Number of results found: %d":["Αριθμός αποτελεσμάτων: %d"],"On":["Ανοιχτό"],"Off":[],"Good results":["Καλά αποτελέσματα"],"Need help?":["Χρειάζεστε βοήθεια;"],"Type here to search...":["Γράψτε εδω για αναζήτηση..."],"Search the Yoast Knowledge Base for answers to your questions:":[],"Remove highlight from the text":[],"Your site language is set to %s. ":["Η γλώσσα του ιστότοπου είναι ρυθμισμένη σε %s."],"Highlight this result in the text":["Επισημάνετε αυτό το αποτέλεμα στο κείμενο"],"Considerations":[],"Errors":["Σφάλματα"],"Change language":["Αλλαγή γλώσσας"],"(Opens in a new browser tab)":["(Ανοίγει σε νέα καρτέλα)"],"Scroll to see the preview content.":["Μετακινηθείτε με κύλιση για να δείτε την προεπισκόπηση του περιεχομένου."],"Step %1$d: %2$s":["Βήμα %1$d: %2$s"],"Mobile preview":["Προεπισκόπηση σε κινητό"],"Desktop preview":["Προεπισκόπηση σε οθόνη υπολογιστή"],"Close snippet editor":["Κλείσε την μορφοποίηση αποσπάσματος"],"Slug":["Σύντομη περιγραφή"],"Marks are disabled in current view":["Τα σημάδια είναι απενεργοποιημένα σ' αυτή την όψη"],"Choose an image":["Επιλέξτε φωτογραφία"],"Remove the image":["Αφαιρέστε την φωτογραφία"],"Choose 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":["Μορφοποίησε το απόσπασμα"],"SEO title preview":["Προεπισκόπηση τίτλου SEO"],"Meta description preview":[],"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).":["Προέκυψε πρόβλημα κατά την αποθήκευση αυτού του βήματος, {{link}} παρακαλώ στείλτε μια αναφορά λάθους {{/link}} περιγράφοντας σε ποιο βήμα βρίσκεστε και ποιες αλλαγές θέλετε να κάνετε (αν υπάρχουν)."],"Close the Wizard":["Κλείστε τον οδηγό"],"%s installation wizard":["%s οδηγός εγκατάστασης"],"SEO title":["Τίτλος SEO"],"Enter your Google Authorization Code and press the Authenticate button.":["Εισαγάγετε τον Κώδικα Εξουσιοδότησης Google και πατήστε το κουμπί Επαλήθευση ταυτότητας."],"Search results":["Αποτελέσματα αναζήτησης"],"Improvements":["Βελτιώσεις"],"Problems":["Προβλήματα"],"Loading...":["Φόρτωση..."],"Something went wrong. Please try again later.":["Κάτι πήγε στραβά. Παρακαλώ δοκιμάστε ξανά αργότερα."],"No results found.":["Δεν βρέθηκαν αποτελέσματα."],"There were no profiles found":["Δεν βρέθηκαν προφίλ"],"Authenticate":["Πιστοποίηση"],"Get Google Authorization Code":["Λάβετε τον κωδικό Google (Google Authorization Code)"],"Search":["Αναζήτηση"],"Email":["Email"],"Previous":["Προηγούμενο"],"Next":["Επόμενο"],"Close":["Κλείσιμο"],"Meta description":["Περιγραφή Meta"]}}}
     1{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"el_GR"},"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}}  μαθαίνοντας  περισσότερα για το 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":["Αφαιρέστε την φωτογραφία"],"Choose 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"]}}}
  • wordpress-seo/trunk/languages/yoast-components-en_AU.json

    r2050445 r2065083  
    1 {"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_AU"},"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"],"Free":["Free"],"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"],"Something went wrong. Please reload the page.":["Something went wrong. Please reload the page."],"Modify your meta description by editing it right here":["Modify your meta description by editing it right here"],"Url preview":["URL preview"],"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.":["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."],"Insert snippet variable":["Insert snippet variable"],"Dismiss this notice":["Dismiss this notice"],"No results":["No results"],"%d result found, use up and down arrow keys to navigate":["%d result found, use up and down arrow keys to navigate","%d results found, use up and down arrow keys to navigate"],"Your site language is set to %s. If this is not correct, contact your site administrator.":["Your site language is set to %s. If this is not correct, contact your site administrator."],"Number of results found: %d":["Number of results found: %d"],"On":["On"],"Off":["Off"],"Good results":["Good results"],"Need help?":["Need help?"],"Type here to search...":["Type here to search..."],"Search the Yoast Knowledge Base for answers to your questions:":["Search the Yoast Knowledge Base for answers to your questions:"],"Remove highlight from the text":["Remove highlight from the text"],"Your site language is set to %s. ":["Your site language is set to %s. "],"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."],"Step %1$d: %2$s":["Step %1$d: %2$s"],"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"],"Choose image":["Choose 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"],"SEO title preview":["SEO title preview"],"Meta description preview":["Meta description preview"],"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).":["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)."],"Close the Wizard":["Close the Wizard"],"%s installation wizard":["%s installation 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."],"Search results":["Search results"],"Improvements":["Improvements"],"Problems":["Problems"],"Loading...":["Loading..."],"Something went wrong. Please try again later.":["Something went wrong. Please try again later."],"No results found.":["No results found."],"There were no profiles found":["There were no profiles found"],"Authenticate":["Authenticate"],"Get Google Authorization Code":["Get Google Authorisation Code"],"Search":["Search"],"Email":["Email"],"Previous":["Previous"],"Next":["Next"],"Close":["Close"],"Meta description":["Meta description"]}}}
     1{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_AU"},"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"],"Choose image":["Choose 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"]}}}
  • wordpress-seo/trunk/languages/yoast-components-en_CA.json

    r2053162 r2065083  
    1 {"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_CA"},"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"],"Free":["Free"],"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"],"Something went wrong. Please reload the page.":["Something went wrong. Please reload the page."],"Modify your meta description by editing it right here":["Modify your meta description by editing it right here"],"Url preview":["Url preview"],"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.":["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."],"Insert snippet variable":["Insert snippet variable"],"Dismiss this notice":["Dismiss this notice"],"No results":["No results"],"%d result found, use up and down arrow keys to navigate":["%d result found, use up and down arrow keys to navigate","%d results found, use up and down arrow keys to navigate"],"Your site language is set to %s. If this is not correct, contact your site administrator.":["Your site language is set to %s. If this is not correct, contact your site administrator."],"Number of results found: %d":["Number of results found: %d"],"On":["On"],"Off":["Off"],"Good results":["Good results"],"Need help?":["Need help?"],"Type here to search...":["Type here to search..."],"Search the Yoast Knowledge Base for answers to your questions:":["Search the Yoast Knowledge Base for answers to your questions:"],"Remove highlight from the text":["Remove highlight from the text"],"Your site language is set to %s. ":["Your site language is set to %s. "],"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."],"Step %1$d: %2$s":["Step %1$d: %2$s"],"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"],"Choose image":["Choose 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"],"SEO title preview":["SEO title preview"],"Meta description preview":["Meta description preview"],"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).":["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)."],"Close the Wizard":["Close the Wizard"],"%s installation wizard":["%s installation 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."],"Search results":["Search results"],"Improvements":["Improvements"],"Problems":["Problems"],"Loading...":["Loading..."],"Something went wrong. Please try again later.":["Something went wrong. Please try again later."],"No results found.":["No results found."],"There were no profiles found":["There were no profiles found"],"Authenticate":["Authenticate"],"Get Google Authorization Code":["Get Google Authorization Code"],"Search":["Search"],"Email":["Email"],"Previous":["Previous"],"Next":["Next"],"Close":["Close"],"Meta description":["Meta description"]}}}
     1{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_CA"},"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"],"Choose image":["Choose 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"]}}}
  • wordpress-seo/trunk/languages/yoast-components-en_GB.json

    r2050445 r2065083  
    1 {"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"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"],"Free":["Free"],"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"],"Something went wrong. Please reload the page.":["Something went wrong. Please reload the page."],"Modify your meta description by editing it right here":["Modify your meta description by editing it right here"],"Url preview":["URL preview"],"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.":["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."],"Insert snippet variable":["Insert snippet variable"],"Dismiss this notice":["Dismiss this notice"],"No results":["No results"],"%d result found, use up and down arrow keys to navigate":["%d result found, use up and down arrow keys to navigate","%d results found, use up and down arrow keys to navigate"],"Your site language is set to %s. If this is not correct, contact your site administrator.":["Your site language is set to %s. If this is not correct, contact your site administrator."],"Number of results found: %d":["Number of results found: %d"],"On":["On"],"Off":["Off"],"Good results":["Good results"],"Need help?":["Need help?"],"Type here to search...":["Type here to search..."],"Search the Yoast Knowledge Base for answers to your questions:":["Search the Yoast Knowledge Base for answers to your questions:"],"Remove highlight from the text":["Remove highlight from the text"],"Your site language is set to %s. ":["Your site language is set to %s."],"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."],"Step %1$d: %2$s":["Step %1$d: %2$s"],"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"],"Choose image":["Choose 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"],"SEO title preview":["SEO title preview"],"Meta description preview":["Meta description preview"],"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).":["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)."],"Close the Wizard":["Close the Wizard"],"%s installation wizard":["%s installation 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."],"Search results":["Search results"],"Improvements":["Improvements"],"Problems":["Problems"],"Loading...":["Loading..."],"Something went wrong. Please try again later.":["Something went wrong. Please try again later."],"No results found.":["No results found."],"There were no profiles found":["There were no profiles found"],"Authenticate":["Authenticate"],"Get Google Authorization Code":["Get Google Authorisation Code"],"Search":["Search"],"Email":["Email"],"Previous":["Previous"],"Next":["Next"],"Close":["Close"],"Meta description":["Meta description"]}}}
     1{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"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"],"Choose image":["Choose 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"]}}}
  • wordpress-seo/trunk/languages/yoast-components-en_NZ.json

    r2050445 r2065083  
    1 {"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_NZ"},"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"],"Free":["Free"],"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"],"Something went wrong. Please reload the page.":["Something went wrong. Please reload the page."],"Modify your meta description by editing it right here":["Modify your meta description by editing it right here"],"Url preview":["URL preview"],"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.":["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."],"Insert snippet variable":["Insert snippet variable"],"Dismiss this notice":["Dismiss this notice"],"No results":["No results"],"%d result found, use up and down arrow keys to navigate":["%d result found, use up and down arrow keys to navigate","%d results found, use up and down arrow keys to navigate"],"Your site language is set to %s. If this is not correct, contact your site administrator.":["Your site language is set to %s. If this is not correct, contact your site administrator."],"Number of results found: %d":["Number of results found: %d"],"On":["On"],"Off":["Off"],"Good results":["Good results"],"Need help?":["Need help?"],"Type here to search...":["Type here to search..."],"Search the Yoast Knowledge Base for answers to your questions:":["Search the Yoast Knowledge Base for answers to your questions:"],"Remove highlight from the text":["Remove highlight from the text"],"Your site language is set to %s. ":["Your site language is set to %s. "],"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."],"Step %1$d: %2$s":["Step %1$d: %2$s"],"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"],"Choose image":["Choose 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"],"SEO title preview":["SEO title preview"],"Meta description preview":["Meta description preview"],"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).":["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)."],"Close the Wizard":["Close the Wizard"],"%s installation wizard":["%s installation 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."],"Search results":["Search results"],"Improvements":["Improvements"],"Problems":["Problems"],"Loading...":["Loading..."],"Something went wrong. Please try again later.":["Something went wrong. Please try again later."],"No results found.":["No results found."],"There were no profiles found":["There were no profiles found"],"Authenticate":["Authenticate"],"Get Google Authorization Code":["Get Google Authorisation Code"],"Search":["Search"],"Email":["Email"],"Previous":["Previous"],"Next":["Next"],"Close":["Close"],"Meta description":["Meta description"]}}}
     1{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_NZ"},"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"],"Choose image":["Choose 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"]}}}
  • wordpress-seo/trunk/languages/yoast-components-en_ZA.json

    r2050445 r2065083  
    1 {"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_ZA"},"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"],"Free":["Free"],"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"],"Something went wrong. Please reload the page.":["Something went wrong. Please reload the page."],"Modify your meta description by editing it right here":["Modify your meta description by editing it right here"],"Url preview":["URL preview"],"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.":["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."],"Insert snippet variable":["Insert snippet variable"],"Dismiss this notice":["Dismiss this notice"],"No results":["No results"],"%d result found, use up and down arrow keys to navigate":["%d result found, use up and down arrow keys to navigate","%d results found, use up and down arrow keys to navigate"],"Your site language is set to %s. If this is not correct, contact your site administrator.":["Your site language is set to %s. If this is not correct, contact your site administrator."],"Number of results found: %d":["Number of results found: %d"],"On":["On"],"Off":["Off"],"Good results":["Good results"],"Need help?":["Need help?"],"Type here to search...":["Type here to search..."],"Search the Yoast Knowledge Base for answers to your questions:":["Search the Yoast Knowledge Base for answers to your questions:"],"Remove highlight from the text":["Remove highlight from the text"],"Your site language is set to %s. ":["Your site language is set to %s."],"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."],"Step %1$d: %2$s":["Step %1$d: %2$s"],"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"],"Choose image":["Choose 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"],"SEO title preview":["SEO title preview"],"Meta description preview":["Meta description preview"],"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).":["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)."],"Close the Wizard":["Close the Wizard"],"%s installation wizard":["%s installation 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."],"Search results":["Search results"],"Improvements":["Improvements"],"Problems":["Problems"],"Loading...":["Loading..."],"Something went wrong. Please try again later.":["Something went wrong. Please try again later."],"No results found.":["No results found."],"There were no profiles found":["There were no profiles found"],"Authenticate":["Authenticate"],"Get Google Authorization Code":["Get Google Authorisation Code"],"Search":["Search"],"Email":["Email"],"Previous":["Previous"],"Next":["Next"],"Close":["Close"],"Meta description":["Meta description"]}}}
     1{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_ZA"},"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"],"Choose image":["Choose 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"]}}}
  • wordpress-seo/trunk/languages/yoast-components-es_AR.json

    r2050445 r2065083  
    1 {"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"es_AR"},"The image you selected is too small for Facebook":[],"The given image url cannot be loaded":[],"Free":[],"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":[],"Something went wrong. Please reload the page.":[],"Modify your meta description by editing it right here":[],"Url preview":[],"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.":[],"Insert snippet variable":[],"Dismiss this notice":[],"No results":[],"%d result found, use up and down arrow keys to navigate":[],"Your site language is set to %s. If this is not correct, contact your site administrator.":[],"Number of results found: %d":[],"On":[],"Off":[],"Good results":["Buenos resultados"],"Need help?":["¿Necesitás ayuda?"],"Type here to search...":["Escribí acá para buscar..."],"Search the Yoast Knowledge Base for answers to your questions:":["Buscá en la Base de Conocimientos de Yoast las respuestas a tus preguntas:"],"Remove highlight from the text":["Eliminar resaltado del texto"],"Your site language is set to %s. ":[],"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."],"Step %1$d: %2$s":["Paso %1$d: %2$s"],"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"],"Choose image":["Elegí 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"],"SEO title preview":[],"Meta description preview":[],"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).":["Ocurrió un problema al guardar este paso, {{link}}por favor, enviá un informe de fallos{{/link}} describiendo en qué paso estás y qué cambios querías hacer (si los hubiera)."],"Close the Wizard":["Cerrar el asistente"],"%s installation wizard":["%s asistente de instalación"],"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."],"Search results":["Resultados de búsqueda"],"Improvements":["Mejoras"],"Problems":["Problemas"],"Loading...":["Cargando..."],"Something went wrong. Please try again later.":["Algo salió mal. Por favor, intentalo de nuevo más tarde."],"No results found.":["No se han encontrado resultados."],"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"],"Previous":["Anterior"],"Next":["Siguiente"],"Close":["Cerrar"],"Meta description":["Meta description"]}}}
     1{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"es_AR"},"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?":["¿Necesitás ayuda?"],"Choose an image":["Elegí una imagen"],"Remove the image":["Eliminar la imagen"],"Choose image":["Elegí 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"]}}}
  • wordpress-seo/trunk/languages/yoast-components-es_ES.json

    r2050445 r2065083  
    1 {"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"es"},"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"],"Free":["Gratis"],"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"],"Something went wrong. Please reload the page.":["Algo salió mal. Por favor, recarga la página."],"Modify your meta description by editing it right here":["Modifica tu meta description editándola aquí mismo"],"Url preview":["Vista previa de la URL"],"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.":["Por favor, introduce una meta description editando el snippet de abajo. Si no lo haces Google intentará encontrar una parte relevante de tu contenido para mostrarla en los resultados de búsqueda."],"Insert snippet variable":["Insertar variable del snippet"],"Dismiss this notice":["Descartar este aviso"],"No results":["Sin resultados"],"%d result found, use up and down arrow keys to navigate":["%d resultado encontrado, usa las teclas arriba y abajo para navegar","%d resultados encontrados, usa las teclas arriba y abajo para navegar"],"Your site language is set to %s. If this is not correct, contact your site administrator.":["El idioma de tu sitio está configurado a %s. Si no es así contacta con el administrador de tu sitio."],"Number of results found: %d":["Número de resultados encontrados: %d"],"On":["Activo"],"Off":["Inactivo"],"Good results":["Buenos resultados"],"Need help?":["¿Necesitas ayuda?"],"Type here to search...":["Teclea aquí para buscar…"],"Search the Yoast Knowledge Base for answers to your questions:":["Busca en la base de conocimiento de Yoast respuestas a tus preguntas:"],"Remove highlight from the text":["Quitar el resaltado del texto"],"Your site language is set to %s. ":["El idioma de tu sitio está configurado a %s."],"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."],"Step %1$d: %2$s":["Paso %1$d: %2$s"],"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"],"Choose image":["Elige 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"],"SEO title preview":["Vista previa del título SEO"],"Meta description preview":["Vista previa de la meta description"],"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).":["Ocurrió un problema al guardar este paso, {{link}}por favor, envía un informe de fallos{{/link}} describiendo en qué paso estás y qué cambios querías hacer (si los hubiera)."],"Close the Wizard":["Cerrar el asistente"],"%s installation wizard":["Asistente de instalación de %s"],"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."],"Search results":["Resultados de búsqueda"],"Improvements":["A mejorar"],"Problems":["Problemas"],"Loading...":["Cargando..."],"Something went wrong. Please try again later.":["Algo salió mal. Por favor, inténtalo de nuevo más tarde."],"No results found.":["No se han encontrado resultados."],"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"],"Previous":["Anterior"],"Next":["Siguiente"],"Close":["Cerrar"],"Meta description":["Meta description"]}}}
     1{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"es"},"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"],"Choose image":["Elige 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"]}}}
  • wordpress-seo/trunk/languages/yoast-components-es_MX.json

    r2050445 r2065083  
    1 {"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"es_MX"},"The image you selected is too small for Facebook":[],"The given image url cannot be loaded":[],"Free":[],"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":[],"Something went wrong. Please reload the page.":["Algo salió mal. Por favor recarga la página."],"Modify your meta description by editing it right here":["Modifique su meta descripción modificándola aquí"],"Url preview":["Vista previa de la URL."],"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.":[],"Insert snippet variable":[],"Dismiss this notice":["Ocultar este aviso"],"No results":["No hay resultados"],"%d result found, use up and down arrow keys to navigate":["%d resultado encontrado, utiliza las teclas con la flecha arriba y abajo  para navegar por los resultados","%d resultados encontrado, utiliza las teclas con la flecha arriba y abajo  para navegar por los resultados"],"Your site language is set to %s. If this is not correct, contact your site administrator.":["El idioma de su sitio está establecido a %s. Si esto no es correcto, por favor contacte al administrador de su sitio."],"Number of results found: %d":["Número de resultados encontrados: %d"],"On":[],"Off":["Apagado"],"Good results":["Buenos resultados"],"Need help?":["¿Necesitas ayuda?"],"Type here to search...":["Escribe aquí para buscar..."],"Search the Yoast Knowledge Base for answers to your questions:":["Busca la Base de Conocimiento de Yoast para respuestas a tus preguntas:"],"Remove highlight from the text":["Remueve la parte destacada del texto"],"Your site language is set to %s. ":["El lenguaje de tu sitio está ajustado a %s."],"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."],"Step %1$d: %2$s":["Paso %1$d: %2$s"],"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"],"Choose image":["Escoja 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"],"SEO title preview":["Vista previa de título SEO:"],"Meta description preview":["Vista previa de descripción meta:"],"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).":["Ha ocurrido un problema al guardar este paso, {{link}}por favor envía un reporte{{/link}} describiendo en qué paso te encuentras y qué cambios quieres hacer (si es que hay alguno)."],"Close the Wizard":["Cerrar el asistente"],"%s installation wizard":["%s asistente de instalación"],"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"],"Search results":["Resultados de Búsqueda"],"Improvements":["Mejoras"],"Problems":["Problemas"],"Loading...":["Cargando..."],"Something went wrong. Please try again later.":["Algo salió mal. Por favor, inténtalo de nuevo más tarde."],"No results found.":["No se han encontrado resultados."],"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"],"Previous":["Anterior"],"Next":["Siguiente"],"Close":["Cerrar"],"Meta description":["Descripción meta"]}}}
     1{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"es_MX"},"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"],"Choose image":["Escoja 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"]}}}
  • wordpress-seo/trunk/languages/yoast-components-es_VE.json

    r2050445 r2065083  
    1 {"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"es_VE"},"The image you selected is too small for Facebook":[],"The given image url cannot be loaded":[],"Free":[],"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":[],"Something went wrong. Please reload the page.":[],"Modify your meta description by editing it right here":[],"Url preview":[],"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.":[],"Insert snippet variable":[],"Dismiss this notice":[],"No results":[],"%d result found, use up and down arrow keys to navigate":[],"Your site language is set to %s. If this is not correct, contact your site administrator.":[],"Number of results found: %d":[],"On":["Activo"],"Off":["Inactivo"],"Good results":["Buenos resultados"],"Need help?":["¿Necesitas ayuda?"],"Type here to search...":["Teclea aquí para buscar…"],"Search the Yoast Knowledge Base for answers to your questions:":["Busca en la base de conocimiento de Yoast respuestas a tus preguntas:"],"Remove highlight from the text":["Quitar el resaltado del texto"],"Your site language is set to %s. ":[],"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."],"Step %1$d: %2$s":["Paso %1$d: %2$s"],"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"],"Choose image":["Elige 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"],"SEO title preview":[],"Meta description preview":[],"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).":["Ocurrió un problema al guardar este paso, {{link}}por favor, envía un informe de fallos{{/link}} describiendo en qué paso estás y qué cambios querías hacer (si los hubiera)."],"Close the Wizard":["Cerrar el asistente"],"%s installation wizard":["Asistente de instalación de %s"],"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."],"Search results":["Resultados de búsqueda"],"Improvements":["A mejorar"],"Problems":["Problemas"],"Loading...":["Cargando..."],"Something went wrong. Please try again later.":["Algo salió mal. Por favor, inténtalo de nuevo más tarde."],"No results found.":["No se han encontrado resultados."],"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"],"Previous":["Anterior"],"Next":["Siguiente"],"Close":["Cerrar"],"Meta description":["Meta description"]}}}
     1{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"es_VE"},"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?":["¿Necesitas ayuda?"],"Choose an image":["Elige una imagen"],"Remove the image":["Quita la imagen"],"Choose image":["Elige 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"]}}}
  • wordpress-seo/trunk/languages/yoast-components-fa_IR.json

    r2061403 r2065083  
    1 {"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=1; plural=0;","lang":"fa"},"The image you selected is too small for Facebook":["تصویر انتخابی شما برای فیسبوک کوچک است"],"The given image url cannot be loaded":["آدرس تصویر داده شده نمیتواند بارگذاری شود"],"Free":["رایگان"],"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"],"Something went wrong. Please reload the page.":["چیزی اشتباه است. لطفا برگه را مجدد بارگذاری کنید."],"Modify your meta description by editing it right here":["توضیحات متا را با ویرایش آن درست در اینجا اصلاح کنید"],"Url preview":["پیش نمایش url"],"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.":["لطفا توضیحات متا را با ویرایش اسنیپت زیر انجام دهید. اگر شما این کار را نکنید، گوگل سعی می کند یک قسمت مرتبط از پست شما را برای نمایش در نتایج جستجو پیدا کند."],"Insert snippet variable":["متغیر snippet را وارد کنید"],"Dismiss this notice":["این اطلاعیه را نادیده بگیر"],"No results":["بی نتیجه"],"%d result found, use up and down arrow keys to navigate":["%d نتایج پیدا شده است ، از کلید های بالا و پایین برای حرکت استفاده کنید"],"Your site language is set to %s. If this is not correct, contact your site administrator.":["زبان وبسایت شما %s تنظیم شده است. اگر صحیح نیست ، با مدیر وبسایت خود تماس بگیرید."],"Number of results found: %d":["تعداد نتایج یافت شده: %d"],"On":["روشن"],"Off":["خاموش"],"Good results":["نتایج خوب"],"Need help?":["به کمک نیاز دارید؟"],"Type here to search...":["برای جستجو ایجا بنویسید..."],"Search the Yoast Knowledge Base for answers to your questions:":["بخش آموزشی Yoast میتونه به شما کمک کنه پاسخ سوالت رو پیدا کنی :"],"Remove highlight from the text":["حذف برجسته کردن از متن"],"Your site language is set to %s. ":["زبان سایت شما به %s تنظیم شده است"],"Highlight this result in the text":["این نتیجه را در متن برجسته کنید"],"Considerations":["ملاحظات"],"Errors":["خطاها"],"Change language":["تغییر زبان"],"(Opens in a new browser tab)":["(در یک برگه جدید مرورگر باز میکند)"],"Scroll to see the preview content.":["برای دیدن پیشنمایش محتوا اسکرول کنید."],"Step %1$d: %2$s":["گام %1$d: %2$s"],"Mobile preview":["پیش نمایش موبایل"],"Desktop preview":["پیش نمایش دسکتاپ"],"Close snippet editor":["بستن ویرایشگر اسنیپت"],"Slug":["نامک"],"Marks are disabled in current view":["علائم در نمای جاری غیرفعال هستند"],"Choose an image":["انتخاب تصویر"],"Remove the image":["پاک کردن این عکس"],"Choose 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":["ویرایش اسنیپت"],"SEO title preview":["پیش‌نمایش عنوان سئو"],"Meta description preview":["پیش‌نمایش توضیحات متا"],"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).":["هنگام ذخیره مرحله کنونی مشکلی رخ داده است،  {{link}} لطفا گزارش اشکال آماده کنید و {{/link}} توضیح دهید در چه مرحله ای هستید و چه تغییراتی می خواهید ایجاد کنید."],"Close the Wizard":["بستن نصب آسان"],"%s installation wizard":["%s نصب آسان"],"SEO title":["عنوان سئو"],"Enter your Google Authorization Code and press the Authenticate button.":["کد تائیدیه گوگل را وارد کرده و دکمه تائیدیه را بفشارید."],"Search results":["نتایج جستجو"],"Improvements":["بهبودها"],"Problems":["مشکلات"],"Loading...":["در حال بارگذاری..."],"Something went wrong. Please try again later.":["چیزی اشتباه رفت. لطفا بعدا دوباره تلاش کنید."],"No results found.":["نتیجه‌ای پیدا نشد."],"There were no profiles found":["هیچ مشخصات کاربری پیدا نشد"],"Authenticate":["تصدیق"],"Get Google Authorization Code":["دریافت کد تصدیق گوگل"],"Search":["جستجو"],"Email":["ایمیل"],"Previous":["قبلی"],"Next":["بعدی"],"Close":["بستن"],"Meta description":["توضیح متا"]}}}
     1{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=1; plural=0;","lang":"fa"},"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":["پاک کردن این عکس"],"Choose 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":["ایمیل"]}}}
  • wordpress-seo/trunk/languages/yoast-components-fr_FR.json

    r2050445 r2065083  
    1 {"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n > 1;","lang":"fr"},"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"],"Free":["Gratuit"],"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"],"Something went wrong. Please reload the page.":["Une erreur est survenue. Veuillez recharger la page."],"Modify your meta description by editing it right here":["Modifiez votre méta description en l’éditant ici"],"Url preview":["Prévisualisation de l’URL"],"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.":["Veuillez renseigner une méta description en éditant le champ ci-dessous. Si vous ne le faites pas, Google essaiera de trouver une partie pertinente de votre publication et l’affichera dans les résultats de recherche."],"Insert snippet variable":["Insérez des variables de métadonnées"],"Dismiss this notice":["Masquer cette notification"],"No results":["Aucun résultat"],"%d result found, use up and down arrow keys to navigate":["%d résultat trouvé, utilisez vos flèches haut et bas pour naviguer.","%d résultats trouvés, utilisez vos flèches haut et bas pour naviguer."],"Your site language is set to %s. If this is not correct, contact your site administrator.":["La langue de votre site est réglée à %s. Si ce n’est pas bon, contactez l’administrateur du site."],"Number of results found: %d":["Nombre de résultats trouvés : %d"],"On":["Activé"],"Off":["Désactivé"],"Good results":["Déjà optimisé"],"Need help?":["Besoin d’aide ?"],"Type here to search...":["Écrivez ici pour rechercher…"],"Search the Yoast Knowledge Base for answers to your questions:":["Cherchez dans la base de connaissances de Yoast pour trouver les réponses à vos questions :"],"Remove highlight from the text":["Retirer le surlignement du texte"],"Your site language is set to %s. ":["La langue de votre site est réglée à %s. "],"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."],"Step %1$d: %2$s":["Étape %1$d : %2$s"],"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"],"Choose image":["Choisir une 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"],"SEO title preview":["Prévisualisation du méta titre"],"Meta description preview":["Prévisualisation de la méta description"],"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).":["Un problème est survenu lors de l’enregistrement de l’étape en cours, {{link}}veuillez envoyer un rapport de bug{{/link}} décrivant l’étape sur laquelle vous vous trouvez et quels changements vous voulez y faire (le cas échéant)."],"Close the Wizard":["Fermer l’assistant"],"%s installation wizard":["%s assistant d’installation"],"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."],"Search results":["Résultats de recherche"],"Improvements":["Améliorations"],"Problems":["Problèmes"],"Loading...":["En cours de chargement..."],"Something went wrong. Please try again later.":["Quelque chose s’est mal passé. Veuillez réessayer ultérieurement."],"No results found.":["Aucun résultat trouvé."],"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"],"Previous":["Précédent"],"Next":["Suivant"],"Close":["Fermer"],"Meta description":["Méta description"]}}}
     1{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n > 1;","lang":"fr"},"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"],"Choose image":["Choisir une 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"]}}}
  • wordpress-seo/trunk/languages/yoast-components-gl_ES.json

    r2050445 r2065083  
    1 {"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"gl_ES"},"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"],"Free":["Gratis"],"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"],"Something went wrong. Please reload the page.":["Algo saíu mal. Volva cargar a páxina."],"Modify your meta description by editing it right here":["Modifique a súa meta descrición  editandoa aquí"],"Url preview":["Vista previa da URL"],"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.":["Por favor, insire unha meta description editando o snippet de debaixo. Se non o fas Google intentará atopar unha parte relevante do teu contido para mostrala nos resultados de busca."],"Insert snippet variable":["Insire variable do snippet"],"Dismiss this notice":["Descarta este aviso"],"No results":["Non hai resultados"],"%d result found, use up and down arrow keys to navigate":["%d resultado atopado, usa as teclas de frecha arriba e abaixo para navegar","%d resultados atopados, usa as teclas de frecha arriba e abaixo para navegar"],"Your site language is set to %s. If this is not correct, contact your site administrator.":["O idioma do teu sitio está configurado en %s. Se non é correcto, contacta co teu administrador de sitio."],"Number of results found: %d":["Número de resultados atopados: %d"],"On":["Acendido"],"Off":["Apagado"],"Good results":["Bos resultados"],"Need help?":["Necesitas axuda?"],"Type here to search...":["Escribe aquí para buscar..."],"Search the Yoast Knowledge Base for answers to your questions:":["Busca na base de coñecementos de Yoast as respostas ás túas preguntas:"],"Remove highlight from the text":["Eliminar resaltado do texto"],"Your site language is set to %s. ":["O idioma do teu sitio está configurado en %s."],"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."],"Step %1$d: %2$s":["Paso %1$d: %2$s"],"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"],"Choose image":["Elixe 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"],"SEO title preview":["Vista previa do título SEO: "],"Meta description preview":["Vista previa da meta descrición"],"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).":["Ocurreu un problema ao gardar este paso, {{link}} por favor, envía un informe dos fallos {{/link}} describindo en que paso estás e que cambios querías facer (se os houber)."],"Close the Wizard":["Pechar o asistente"],"%s installation wizard":["%s asistente de instalación"],"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."],"Search results":["Resultados da procura"],"Improvements":["Melloras"],"Problems":["Problemas"],"Loading...":["Cargando..."],"Something went wrong. Please try again later.":["Algo saíu mal. Por favor, téntao de novo máis tarde."],"No results found.":["Non se atoparon resultados."],"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"],"Previous":["Anterior"],"Next":["Seguinte"],"Close":["Pechar"],"Meta description":["Meta descrición"]}}}
     1{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"gl_ES"},"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"],"Choose image":["Elixe 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"]}}}
  • wordpress-seo/trunk/languages/yoast-components-he_IL.json

    r2061403 r2065083  
    1 {"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"he_IL"},"The image you selected is too small for Facebook":[],"The given image url cannot be loaded":[],"Free":["חינם"],"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}}קרא את המאמר שלנו על היררכית אתרים{{aa}} כדי ללמוד עוד על הדרך בה קישורים פנימיים יכולים לסייע בשיפור       ה 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":[],"Something went wrong. Please reload the page.":["משהו השתבש. טען מחדש את העמוד בבקשה."],"Modify your meta description by editing it right here":["שנה את תיאור המטא שלך על ידי עריכתו כאן"],"Url preview":["תצוגה מקדימה של כתובת אתר"],"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.":["ציין תיאור meta על ידי עריכת קטע הקוד למטה. אם לא תעשה זאת, Google תנסה למצוא חלק רלוונטי מהפוסט שלך שיוצג בתוצאות החיפוש."],"Insert snippet variable":["הוסף משתנה קטע"],"Dismiss this notice":["דחה הודעה זו"],"No results":["אין תוצאות"],"%d result found, use up and down arrow keys to navigate":["%d תוצאות נמצאו, השתמש במקשי החצים למעלה ולמטה כדי לנווט","נמצאו %d תוצאות, השתמש במקשי החצים למעלה ולמטה כדי לנווט"],"Your site language is set to %s. If this is not correct, contact your site administrator.":["שפת האתר שלך מוגדרת%s. אם זה לא נכון, צור קשר עם מנהל האתר שלך ."],"Number of results found: %d":["מספר התוצאות שנמצאו: %d"],"On":["מופעל"],"Off":["מכובה"],"Good results":["תוצאות טובות"],"Need help?":["צריך עזרה?"],"Type here to search...":["רשום פה לחיפוש..."],"Search the Yoast Knowledge Base for answers to your questions:":["תחפש בבסיס המידע של יוסט לתשובות לשאלה שלך:"],"Remove highlight from the text":["תמחק את ההדגשה מהטקסט"],"Your site language is set to %s. ":["שפת האתר שלכם מוגדרת ל%s."],"Highlight this result in the text":["הדגש את התוצאה הזו בטקסט"],"Considerations":["נקודות לשיקול דעת"],"Errors":["שגיאות"],"Change language":["שינוי שפה"],"(Opens in a new browser tab)":["(פתח בטאב חדש בדפדפן)"],"Scroll to see the preview content.":["גללו לראות את התצוגה המוקדמת של התוכן."],"Step %1$d: %2$s":["שלב %1$d: %2$s"],"Mobile preview":["תצוגה מקדימה לנייד"],"Desktop preview":["תצוגה מקדימה למחשב"],"Close snippet editor":["סגור את עורך המקטעים"],"Slug":["מחרוזת"],"Marks are disabled in current view":["סימונים אינם פעילים בתצוגה הנוכחית"],"Choose an image":["בחר תמונה"],"Remove the image":["הסר תמונה"],"Choose 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":["ערוך מקטע"],"SEO title preview":["תצוגה מקדימה של כותרת SEO"],"Meta description preview":["תצוגה מקדימה של תיאור מטא"],"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).":["אירעה בעיה בעת שמירת השלב הנוכחי, {{link}}אנא מלא דו\"ח תקלה{{/link}} המתאר באיזה שלב אתה ואילו שינויים ברצונך לבצע (אם ישנם). "],"Close the Wizard":["סגור את האשף"],"%s installation wizard":["אשף התקנה"],"SEO title":["כותרת SEO"],"Enter your Google Authorization Code and press the Authenticate button.":["הכנס את קוד האימות של Google ולחץ על כפתור האימות."],"Search results":["תוצאות החיפוש"],"Improvements":["שיפורים"],"Problems":["בעיות"],"Loading...":["טוען..."],"Something went wrong. Please try again later.":["משהו השתבש, נא לנוסת שוב מאוחר יותר."],"No results found.":["לא נמצאו תוצאות."],"There were no profiles found":["לא נמצאו פרופילים"],"Authenticate":["אמת"],"Get Google Authorization Code":["קבל קוד אישור מגוגל"],"Search":["חיפוש"],"Email":["מייל"],"Previous":["קודם"],"Next":["הבא"],"Close":["סגור"],"Meta description":["Meta description"]}}}
     1{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"he_IL"},"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}}קרא את המאמר שלנו על היררכית אתרים{{aa}} כדי ללמוד עוד על הדרך בה קישורים פנימיים יכולים לסייע בשיפור       ה 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?":["צריך עזרה?"],"Choose an image":["בחר תמונה"],"Remove the image":["הסר תמונה"],"Choose 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.":["הכנס את קוד האימות של Google ולחץ על כפתור האימות."],"There were no profiles found":["לא נמצאו פרופילים"],"Authenticate":["אמת"],"Get Google Authorization Code":["קבל קוד אישור מגוגל"],"Email":["מייל"]}}}
  • wordpress-seo/trunk/languages/yoast-components-hr.json

    r2050445 r2065083  
    1 {"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"},"The image you selected is too small for Facebook":[],"The given image url cannot be loaded":[],"Free":["Besplatno"],"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"],"Something went wrong. Please reload the page.":["Nešto je pošlo po krivu. Ponovno učitajte stranicu."],"Modify your meta description by editing it right here":["Izmijenite meta opis tako da ga uredite upravo ovdje"],"Url preview":["Url pretpregled"],"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.":["Unesite meta opis tako da uredite isječak ispod. Ako ne unesete isječak, Google će pokušati pronaći relevantni dio vaše objave koji će prikazati u rezultatima pretrage."],"Insert snippet variable":["Unesi varijablu isječka"],"Dismiss this notice":["Odbaci ovu obavijest"],"No results":["Nema rezultata"],"%d result found, use up and down arrow keys to navigate":["%d rezultat pronađen, upotrijebite tipke sa strelicama za gore i dolje za navigaciju.","%d rezultata pronađena, upotrijebite tipke sa strelicama za gore i dolje za navigaciju.","%d rezultata pronađeno, upotrijebite tipke sa strelicama za gore i dolje za navigaciju."],"Your site language is set to %s. If this is not correct, contact your site administrator.":["Jezik vaše web-stranice je postavljen na %s. Ako je to nije točno, kontaktirajte administratora web-stranice."],"Number of results found: %d":["Broj pronađenih rezultata: %d"],"On":[],"Off":[],"Good results":["Dobri rezultati"],"Need help?":["Trebate pomoć?"],"Type here to search...":["Za pretragu pišite ovdje..."],"Search the Yoast Knowledge Base for answers to your questions:":["Pretražite Yoast Knowledge Base za odgovore na vaša pitanja:"],"Remove highlight from the text":["Ukloniti istaknuto iz teksta"],"Your site language is set to %s. ":["Jezik web-stranice je postavljen na %s."],"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."],"Step %1$d: %2$s":["Korak %1$d: %2$s"],"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"],"Choose image":["Odaberite 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"],"SEO title preview":["Predpregled SEO naslova"],"Meta description preview":["Pretpregled meta opisa"],"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).":["Dogodio se problem prilikom spremanja ovog koraka, {{link}} molim vas da prijavite grešku {{/link}} te opišete u kojem koraku se nalazite te koje promjene želite napraviti."],"Close the Wizard":["Zatvorite Čarobnjaka"],"%s installation wizard":["%s čarobnjak za instaliranje"],"SEO title":["SEO naslov"],"Enter your Google Authorization Code and press the Authenticate button.":["Unesite svoj Google Authorization Code i kliknite gumb Autentifikacija."],"Search results":["Rezultati pretrage"],"Improvements":["Poboljšanja"],"Problems":["Problemi"],"Loading...":["Učitavanje..."],"Something went wrong. Please try again later.":["Nešto je pošlo krivo. Pokušajte ponovno kasnije."],"No results found.":["Nema rezultata pretrage."],"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"],"Previous":["Prethodno"],"Next":["Sljedeće"],"Close":["Zatvori"],"Meta description":["Meta opis"]}}}
     1{"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"},"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"],"Choose image":["Odaberite 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"]}}}
  • wordpress-seo/trunk/languages/yoast-components-hu_HU.json

    r2050445 r2065083  
    1 {"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"hu"},"The image you selected is too small for Facebook":[],"The given image url cannot be loaded":[],"Free":["Ingyenes"],"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":[],"Something went wrong. Please reload the page.":["Valami nem sikerült. Kérlek frissítsd az oldalt."],"Modify your meta description by editing it right here":["Itt szerkesztve módosíthatod a meta leírásod"],"Url preview":["Url előnézet"],"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.":[],"Insert snippet variable":["Részlet változó beillesztése"],"Dismiss this notice":["Értesítés eltüntetése"],"No results":["Nincs eredmény"],"%d result found, use up and down arrow keys to navigate":[],"Your site language is set to %s. If this is not correct, contact your site administrator.":[],"Number of results found: %d":["Találati eredmények száma: %d"],"On":["Be"],"Off":["Ki"],"Good results":["Jó eredmények"],"Need help?":["Szükséged van segítségre?"],"Type here to search...":["Írj be ide valamit a kereséshez ..."],"Search the Yoast Knowledge Base for answers to your questions:":["Keressen a Yoast Tudásbázisban a kérdésének megválaszolásához:"],"Remove highlight from the text":["Szövegkiemelés eltávolítása."],"Your site language is set to %s. ":["Az ön webhelyének beállított nyelve: %s."],"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."],"Step %1$d: %2$s":["%1$d. lépés: %2$s"],"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"],"Choose image":["Kép választása"],"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"],"SEO title preview":["SEO cím előnézet"],"Meta description preview":["Metaleírás előnézete"],"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).":[],"Close the Wizard":["Varázsló bezárása"],"%s installation wizard":["%s telepítés varázsló"],"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."],"Search results":["Keresési eredmények"],"Improvements":["Fejlesztések"],"Problems":["Problémák"],"Loading...":["Betöltés..."],"Something went wrong. Please try again later.":["Hiba történt. Kérjük, próbálja meg később."],"No results found.":["Nincs találat."],"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"],"Previous":["Előző"],"Next":["Következő"],"Close":["Bezár"],"Meta description":["Metaleírás"]}}}
     1{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"hu"},"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"],"Choose image":["Kép választása"],"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"]}}}
  • wordpress-seo/trunk/languages/yoast-components-it_IT.json

    r2062118 r2065083  
    1 {"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"it"},"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"],"Free":["Gratuito"],"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"],"Something went wrong. Please reload the page.":["Qualcosa non ha funzionato. Prova a ricaricare la pagina."],"Modify your meta description by editing it right here":["Modifica la tua descrizione meta scrivendola qui"],"Url preview":["Anteprima dell'URL"],"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.":["Inserisci una descrizione meta editando lo snippet qui sotto. Se non lo fai, Google cercherà di indovinare dal tuo articolo cosa è rilevante per mostrarlo nei risultati di ricerca."],"Insert snippet variable":["Inserisci una variabile"],"Dismiss this notice":["Ignora questo avviso"],"No results":["Nessun risultato"],"%d result found, use up and down arrow keys to navigate":["È stato trovato %d risultato, usa i tasti freccia su e giù per navigare","Sono stati trovati %d risultati, usa i tasti freccia su e giù per navigare"],"Your site language is set to %s. If this is not correct, contact your site administrator.":["La lingua del tuo sito è impostata su %s. Se non è corretto, contatta l'amministratore del sito."],"Number of results found: %d":["Risultati trovati: %d"],"On":["On"],"Off":["Off"],"Good results":["Risultati buoni"],"Need help?":["Ti serve aiuto?"],"Type here to search...":["Inserisci qui il termine da ricercare..."],"Search the Yoast Knowledge Base for answers to your questions:":["Cerca risposte alle tue domande nella Yoast Knowledge Base:"],"Remove highlight from the text":["Rimuovi evidenziazione nel testo"],"Your site language is set to %s. ":["La lingua del tuo sito è impostata su %s."],"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."],"Step %1$d: %2$s":["Passo %1$d: %2$s"],"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"],"Choose image":["Scegli 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"],"SEO title preview":["Anteprima del titolo SEO"],"Meta description preview":["Anteprima della meta descrizione"],"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).":["Si è verificato un problema nel salvataggio di questo passaggio, {{link}}compila una segnalazione{{/link}} descrivendo in quale passaggio ti trovavi e quali modifiche volevi effettuare (se ne stavi facendo qualcuna)."],"Close the Wizard":["Chiudi la procedura guidata"],"%s installation wizard":["Procedura di installazione guidata %s"],"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."],"Search results":["Risultati della ricerca"],"Improvements":["Miglioramenti"],"Problems":["Problemi"],"Loading...":["Caricamento in corso..."],"Something went wrong. Please try again later.":["Qualcosa non ha funzionato. Riprova più tardi."],"No results found.":["Nessun risultato."],"There were no profiles found":["Nessun profilo trovato"],"Authenticate":["Autenticati"],"Get Google Authorization Code":["Ricevi Codice di Autorizzazione di Google."],"Search":["Ricerca"],"Email":["Email"],"Previous":["Precedente"],"Next":["Successivo"],"Close":["Chiudi"],"Meta description":["Meta descrizione"]}}}
     1{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"it"},"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"],"Choose image":["Scegli 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"]}}}
  • wordpress-seo/trunk/languages/yoast-components-ja.json

    r2050445 r2065083  
    1 {"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=1; plural=0;","lang":"ja_JP"},"The image you selected is too small for Facebook":[],"The given image url cannot be loaded":[],"Free":["無料"],"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"],"Something went wrong. Please reload the page.":["何かおかしいようです。ページをリロードしてください。"],"Modify your meta description by editing it right here":["メタディスクリプションの設定をここで編集して変更します"],"Url preview":["URL のプレビュー:"],"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.":["以下のスニペットを編集して、メタディスクリプションを設定してください。設定しない場合、Google の検索結果で投稿の関連部分が表示されます。"],"Insert snippet variable":["スニペット変数の挿入"],"Dismiss this notice":["通知を非表示"],"No results":["結果なし"],"%d result found, use up and down arrow keys to navigate":["%d件見つかりました、上下の矢印キーを使用して移動します。"],"Your site language is set to %s. If this is not correct, contact your site administrator.":["サイトの言語が %s に設定されています。これが正しくない場合は、サイト管理者に問い合わせてください。"],"Number of results found: %d":["%d 件の結果が見つかりました"],"On":["オン"],"Off":["オフ"],"Good results":["良い結果"],"Need help?":["ヘルプが必要ですか ?"],"Type here to search...":["入力して検索を開始…"],"Search the Yoast Knowledge Base for answers to your questions:":["Yoast ナレッジベースで、質問に対する回答を検索しましょう:"],"Remove highlight from the text":["テキストからハイライトを削除"],"Your site language is set to %s. ":["あなたのサイト言語は%sに設定されています。"],"Highlight this result in the text":["この結果をテキストで強調表示"],"Considerations":["検討事項"],"Errors":["エラー"],"Change language":["言語変更"],"(Opens in a new browser tab)":["(新しいブラウザータブで開く)"],"Scroll to see the preview content.":["コンテンツのプレビューを見るにはスクロールしてください。"],"Step %1$d: %2$s":["手順%1$d: %2$s"],"Mobile preview":["モバイルプレビュー"],"Desktop preview":["デスクトッププレビュー"],"Close snippet editor":["スニペットエディターを閉じる"],"Slug":["スラッグ"],"Marks are disabled in current view":["現在のビューでマークが無効になっています"],"Choose an image":["画像を選択する"],"Remove the image":["画像を削除する"],"Choose 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":["スニペットを編集"],"SEO title preview":["SEO タイトルのプレビュー:"],"Meta description preview":["メタディスクリプションのプレビュー: "],"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).":["現在のステップを保存する際に問題が発生しました。どのステップにいたのかと、何を変更したいのか (もしあれば) を添えて、{{link}}バグ報告を提出してください{{/link}}。"],"Close the Wizard":["ウィザードを閉じる"],"%s installation wizard":["%s インストールウィザード"],"SEO title":["SEO タイトル"],"Enter your Google Authorization Code and press the Authenticate button.":["Google の認証コードを入力して、「認証」のボタンを押してください。"],"Search results":["検索結果"],"Improvements":["改善"],"Problems":["問題点"],"Loading...":["読み込み中…"],"Something went wrong. Please try again later.":["問題が発生しました。後ほど再度お試しください。"],"No results found.":["見つかりませんでした。"],"There were no profiles found":["プロファイルがありません"],"Authenticate":["認証"],"Get Google Authorization Code":["Google 認証コードを取得する"],"Search":["検索"],"Email":["メールアドレス"],"Previous":["前へ"],"Next":["次へ"],"Close":["閉じる"],"Meta description":["メタディスクリプション"]}}}
     1{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=1; plural=0;","lang":"ja_JP"},"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.":["{{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":["画像を削除する"],"Choose 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":["メールアドレス"]}}}
  • wordpress-seo/trunk/languages/yoast-components-nb_NO.json

    r2061403 r2065083  
    1 {"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"nb_NO"},"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"],"Free":["Gratis"],"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"],"Something went wrong. Please reload the page.":["Noe gikk galt, vennligst last siden på nytt."],"Modify your meta description by editing it right here":["Endre meta beskrivelsen din ved å redigere den her"],"Url preview":["Forhåndsvisning av URL"],"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.":["Vennligst oppgi en metabeskrivelse ved å redigere koden nedenfor. Hvis du ikke gjør det, vil Google prøve å finne en relevant del av innlegget ditt for å vise i søkeresultatene."],"Insert snippet variable":["Sett inn tekstutdrag-variabel"],"Dismiss this notice":["Fjern denne beskjeden"],"No results":["Ingen resultater"],"%d result found, use up and down arrow keys to navigate":["%d resultat funnet, bruk opp og ned piltastene for å navigere","%d resultater funnet, bruk opp og ned piltastene for å navigere"],"Your site language is set to %s. If this is not correct, contact your site administrator.":["Nettstedet ditt er satt til %s. Hvis dette ikke er riktig, ta kontakt med nettstedets administrator."],"Number of results found: %d":["Antall resultater funnet: %d"],"On":["På"],"Off":["Av"],"Good results":["Gode resultater"],"Need help?":["Trenger du hjelp?"],"Type here to search...":["Skriv her for å søke..."],"Search the Yoast Knowledge Base for answers to your questions:":["Søk i Yoast kunnskapsdatabase for svar på dine spørsmål:"],"Remove highlight from the text":["Fjern fremhevelse fra teksten"],"Your site language is set to %s. ":["Ditt nettsted-språk er satt til %s. "],"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."],"Step %1$d: %2$s":["Trinn %1$d: %2$s"],"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"],"Choose image":["Velg bilde"],"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"],"SEO title preview":["Forhåndsvisning av SEO-tittel"],"Meta description preview":["Forhåndsvisning av meta-beskrivelse"],"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).":["Et problem oppstod under lagring av gjeldende trinn. {{link}}Vennligst send inn en feilrapport{{/link}} med beskrivelse av hvilket trinn du er på, og hvilke endringer du ønsker å gjøre (hvis noen)."],"Close the Wizard":["Lukke veilederen"],"%s installation wizard":["%s installasjonsveiviser"],"SEO title":["SEO-tittel"],"Enter your Google Authorization Code and press the Authenticate button.":["Skriv inn Google-autentiseringskoden din og trykk Autentiser-knappen."],"Search results":["Søkeresultater"],"Improvements":["Forbedringer"],"Problems":["Problemer"],"Loading...":["Laster …"],"Something went wrong. Please try again later.":["Noe gikk galt. Vennligst prøv igjen senere."],"No results found.":["Ingen resultater funnet."],"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"],"Previous":["Forrige"],"Next":["Neste"],"Close":["Lukk"],"Meta description":["Meta-beskrivelse"]}}}
     1{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"nb_NO"},"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"],"Choose image":["Velg bilde"],"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"]}}}
  • wordpress-seo/trunk/languages/yoast-components-nl_BE.json

    r2050445 r2065083  
    1 {"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"nl_BE"},"The image you selected is too small for Facebook":[],"The given image url cannot be loaded":[],"Free":[],"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":[],"Something went wrong. Please reload the page.":[],"Modify your meta description by editing it right here":[],"Url preview":[],"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.":[],"Insert snippet variable":[],"Dismiss this notice":[],"No results":[],"%d result found, use up and down arrow keys to navigate":[],"Your site language is set to %s. If this is not correct, contact your site administrator.":[],"Number of results found: %d":[],"On":[],"Off":[],"Good results":[],"Need help?":["Hulp nodig?"],"Type here to search...":["Typ hier om te zoeken..."],"Search the Yoast Knowledge Base for answers to your questions:":[],"Remove highlight from the text":[],"Your site language is set to %s. ":[],"Highlight this result in the text":["Markeer dit resultaat in de tekst."],"Considerations":["Overwegingen"],"Errors":["Fouten"],"Change language":["Wijzig taalinstelling"],"(Opens in a new browser tab)":["(Openen in een nieuwe browsertab)"],"Scroll to see the preview content.":["Scroll naar beneden voor een voorbeeld van de inhoud."],"Step %1$d: %2$s":["Stap %1$d: %2$s"],"Mobile preview":["Mobiel voorbeeld"],"Desktop preview":["Desktop voorbeeld"],"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"],"Choose image":["Afbeelding kiezen"],"MailChimp signup failed:":["Aanmelden voor Mailchimp mislukt:"],"Sign Up!":["Je aanmelden!"],"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":[],"Reauthenticate with Google":["Google-account herauthenticeren"],"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":["Snippet bewerken"],"SEO title preview":[],"Meta description preview":[],"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).":["Er deed zich een probleem voor bij het opslaan van de huidige stap, {{link}}verstuur een bug report{{/link}} met een beschrijving bij welke stap het mis ging en welke wijziging je wilde maken (indien van toepassing)."],"Close the Wizard":["De hulp sluiten"],"%s installation wizard":["%s installatie wizard"],"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."],"Search results":["Zoekresultaten"],"Improvements":["Verbeteringen"],"Problems":["Problemen"],"Loading...":["Laden..."],"Something went wrong. Please try again later.":["Er is iets misgegaan. Probeer het later opnieuw."],"No results found.":["Geen resultaten gevonden."],"There were no profiles found":["Er zijn geen profielen gevonden"],"Authenticate":["Authenticeren"],"Get Google Authorization Code":["Google Autorisatie Code verkrijgen"],"Search":["Zoeken"],"Email":["E-mailadres"],"Previous":["Vorige"],"Next":["Volgende"],"Close":["Sluiten"],"Meta description":["Meta omschrijving"]}}}
     1{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"nl_BE"},"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?":["Hulp nodig?"],"Choose an image":["Een afbeelding kiezen"],"Remove the image":["De afbeelding verwijderen"],"Choose image":["Afbeelding kiezen"],"MailChimp signup failed:":["Aanmelden voor Mailchimp mislukt:"],"Sign Up!":["Je aanmelden!"],"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":[],"Reauthenticate with Google":["Google-account herauthenticeren"],"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.":["Voer de Google-autorisatiecode in en druk op de knop Autenticatie."],"There were no profiles found":["Er zijn geen profielen gevonden"],"Authenticate":["Authenticeren"],"Get Google Authorization Code":["Google Autorisatie Code verkrijgen"],"Email":["E-mailadres"]}}}
  • wordpress-seo/trunk/languages/yoast-components-nl_NL.json

    r2061403 r2065083  
    1 {"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"nl"},"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"],"Free":["Gratis"],"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"],"Something went wrong. Please reload the page.":["Er is iets fout gegaan. Herlaad de pagina."],"Modify your meta description by editing it right here":["Bewerk je meta beschrijving door hem hier te bewerken"],"Url preview":["Url voorbeeld"],"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.":["Voeg een meta beschrijving toe door onderstaande snippet te bewerken. Als je dat niet doet zal Google proberen een relevant stukje uit je bericht te vinden om te tonen in de zoekresultaten."],"Insert snippet variable":["Snippet variabele invoegen"],"Dismiss this notice":["Verwijder dit bericht"],"No results":["Geen resultaten"],"%d result found, use up and down arrow keys to navigate":["%d resultaat gevonden, gebruik de pijl omhoog en omlaag om te navigeren","%d resultaten gevonden, gebruik de pijl omhoog en omlaag om te navigeren"],"Your site language is set to %s. If this is not correct, contact your site administrator.":["De taal van je site is ingesteld op %s. Als dit niet juist is kun je contact opnemen met je site administrator."],"Number of results found: %d":["Aantal gevonden resultaten: %d"],"On":["Aan"],"Off":["Uit"],"Good results":["Goede resultaten"],"Need help?":["Hulp nodig?"],"Type here to search...":["Type hier om te zoeken..."],"Search the Yoast Knowledge Base for answers to your questions:":["Zoek in de Yoast Knowledge Base naar antwoorden op je vragen:"],"Remove highlight from the text":["Markering uit de tekst verwijderen"],"Your site language is set to %s. ":["De taal van je site in ingesteld op %s."],"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."],"Step %1$d: %2$s":["Stap %1$d: %2$s"],"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"],"Choose image":["Afbeelding kiezen"],"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"],"SEO title preview":["SEO titel voorbeeld"],"Meta description preview":["Voorbeeld van de meta omschrijving"],"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).":["De huidige stap kon niet opgeslagen worden, {{link}}verstuur een foutrapport{{/link}} met een beschrijving bij welke stap het mis gaat en welke wijziging je wil maken (indien van toepassing)."],"Close the Wizard":["De hulp sluiten"],"%s installation wizard":["%s installatie wizard"],"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."],"Search results":["Zoekresultaten"],"Improvements":["Verbeteringen"],"Problems":["Problemen"],"Loading...":["Laden..."],"Something went wrong. Please try again later.":["Er is iets misgegaan. Probeer het later opnieuw."],"No results found.":["Niets gevonden."],"There were no profiles found":["Er zijn geen profielen gevonden"],"Authenticate":["Autoriseren"],"Get Google Authorization Code":["Google-autorisatiecode verkrijgen"],"Search":["Zoeken"],"Email":["E-mailadres"],"Previous":["Vorige"],"Next":["Volgende"],"Close":["Sluiten"],"Meta description":["Meta-omschrijving"]}}}
     1{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"nl"},"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"],"Choose image":["Afbeelding kiezen"],"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"]}}}
  • wordpress-seo/trunk/languages/yoast-components-pl_PL.json

    r2050445 r2065083  
    1 {"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"},"The image you selected is too small for Facebook":[],"The given image url cannot be loaded":[],"Free":[],"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.":[],"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"],"Something went wrong. Please reload the page.":["Coś poszło nie tak. Proszę odświeżyć stronę."],"Modify your meta description by editing it right here":["Zmień opis meta edytując go tutaj"],"Url preview":["Podgląd adresu URL"],"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.":["Dodaj opis meta, edytując podgląd poniżej. Jeśli go nie dodasz, Google będzie starał się znaleźć odpowiednią część wpisu, aby pokazać w go wynikach wyszukiwania."],"Insert snippet variable":["Wstaw zmienną podglądu"],"Dismiss this notice":["Ukryj to powiadomienie"],"No results":["Brak wyników"],"%d result found, use up and down arrow keys to navigate":["Znaleziono %d wynik, użyj klawiszy strzałek, aby nawigować","Znaleziono %d wyniki, użyj klawiszy strzałek, aby nawigować","Znaleziono %d wyników, użyj klawiszy strzałek, aby nawigować"],"Your site language is set to %s. If this is not correct, contact your site administrator.":["Język witryny jest ustawiony na %s. Jeśli nie jest to poprawne, skontaktuj się z administratorem."],"Number of results found: %d":["Liczba wyników wyszukiwania: %d"],"On":["Włącz"],"Off":["Wyłącz"],"Good results":["Dobre wyniki"],"Need help?":["Potrzebujesz pomocy?"],"Type here to search...":["Wpisz tutaj, aby wyszukać..."],"Search the Yoast Knowledge Base for answers to your questions:":["Przeszukaj bazę wiedzy Yoast, w poszukiwaniu odpowiedzi na swoje pytania:"],"Remove highlight from the text":["Usuń podświetlenia z tekstu"],"Your site language is set to %s. ":["Język twojej witryny to %s."],"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."],"Step %1$d: %2$s":["Krok %1$d: %2$s"],"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"],"Choose image":["Wybierz 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"],"SEO title preview":["Podgląd tytułu SEO"],"Meta description preview":["Podgląd opisu meta"],"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).":["Wystąpił problem przy zapisywaniu obecnego kroku. {{link}}Prosimy o przekazanie informacji o błędzie{{/link}}, opisując, w którym kroku problem wystąpił i co wtedy miało być zmienione (jeśli cokolwiek)."],"Close the Wizard":["Zamknij kreator"],"%s installation wizard":["Kreator konfiguracji %s"],"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."],"Search results":["Wyniki wyszukiwania"],"Improvements":["Usprawnienia"],"Problems":["Problemy"],"Loading...":["Ładowanie..."],"Something went wrong. Please try again later.":["Coś poszło nie tak. Spróbuj ponownie później."],"No results found.":["Niczego nie znaleziono."],"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"],"Previous":["Wstecz"],"Next":["Dalej"],"Close":["Zamknij"],"Meta description":["Opis"]}}}
     1{"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"},"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"],"Choose image":["Wybierz 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"]}}}
  • wordpress-seo/trunk/languages/yoast-components-pt_BR.json

    r2050445 r2065083  
    1 {"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=(n > 1);","lang":"pt_BR"},"The image you selected is too small for Facebook":[],"The given image url cannot be loaded":[],"Free":["Grátis"],"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"],"Something went wrong. Please reload the page.":["Algo deu errado. Recarregue a página."],"Modify your meta description by editing it right here":["Modifique sua meta descrição editando aqui"],"Url preview":["Pré-visualização de URL"],"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.":["Forneça uma meta-descrição editando a amostra abaixo. Se você não fizer isso, o Google tentará encontrar uma parte relevante do seu conteúdo para mostrar nos resultados da pesquisa."],"Insert snippet variable":["Inserir variável de amostra"],"Dismiss this notice":["Dispensar este aviso"],"No results":["Nenhum resultado"],"%d result found, use up and down arrow keys to navigate":["%d resultado encontrado, use as teclas para cima e para baixo para navegar","%d resultados encontrados, use as teclas para cima e para baixo para navegar"],"Your site language is set to %s. If this is not correct, contact your site administrator.":["O idioma do seu site está definido como %s. Se essa informação não está correta, entre em contato com seu administrador do site."],"Number of results found: %d":["Número de resultados encontrados: %d"],"On":["Ligado"],"Off":["Desligado"],"Good results":["Bons resultados "],"Need help?":["Precisando de ajuda?"],"Type here to search...":["Digite aqui para pesquisar..."],"Search the Yoast Knowledge Base for answers to your questions:":["Pesquisar na Base de Conhecimento do Yoast para obter respostas às suas perguntas:"],"Remove highlight from the text":["Remover o destaque do texto"],"Your site language is set to %s. ":["O idioma do seu site está definido como %s."],"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."],"Step %1$d: %2$s":["Passo %1$d: %2$s"],"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"],"Choose image":["Escolher 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"],"SEO title preview":["Prévia do título de SEO"],"Meta description preview":["Pré-visualização da meta-descrição"],"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).":["Um problema ocorreu ao salvar o processo atual, {{link}}envie um relatório de erros{{/link}} descrevendo em qual processo você estava e quais alterações você queria fazer (se for o caso)."],"Close the Wizard":["Fechar assistente de configuração"],"%s installation wizard":["Assistente de instalaçã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."],"Search results":["Resultados da pesquisa"],"Improvements":["Melhorias"],"Problems":["Problemas"],"Loading...":["Carregando..."],"Something went wrong. Please try again later.":["Algo deu errado! Tente de novo mais tarde."],"No results found.":["Nenhum resultado encontrado."],"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"],"Previous":["Anterior"],"Next":["Próximo"],"Close":["Fechar"],"Meta description":["Meta-descrição"]}}}
     1{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=(n > 1);","lang":"pt_BR"},"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.":["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"],"Choose image":["Escolher 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"]}}}
  • wordpress-seo/trunk/languages/yoast-components-pt_PT.json

    r2050445 r2065083  
    1 {"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"pt"},"The image you selected is too small for Facebook":[],"The given image url cannot be loaded":[],"Free":["Gratuito"],"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"],"Something went wrong. Please reload the page.":["Algo correu mal. Por favor recarregue a página."],"Modify your meta description by editing it right here":["Modifique sua descrição editando-a aqui"],"Url preview":["Pré-visualização de URL"],"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.":["Por favor, insira uma descrição editando o fragmento abaixo. Se não o fizer, o Google tentará encontrar uma parte relevante do seu conteúdo para mostrar nos resultados de pesquisa."],"Insert snippet variable":["Inserir variável de fragmento"],"Dismiss this notice":["Ignorar este aviso"],"No results":["Nenhum resultado"],"%d result found, use up and down arrow keys to navigate":["%d resultado encontrado, use as setas para cima e para baixo para navegar","%d resultados encontrados, use as setas para cima e para baixo para navegar"],"Your site language is set to %s. If this is not correct, contact your site administrator.":["O idioma do seu site está configurado como %s. Se isto está incorrecto, contacte o administrador do site."],"Number of results found: %d":["Número de resultados encontrados: %d"],"On":["Ligado"],"Off":["Desligado"],"Good results":["Bons resultados"],"Need help?":["Precisa de ajuda?"],"Type here to search...":["Digite aqui para pesquisar..."],"Search the Yoast Knowledge Base for answers to your questions:":["Pesquise por respostas às suas dúvidas na base de conhecimento do Yoast:"],"Remove highlight from the text":["Remover o destaque do texto"],"Your site language is set to %s. ":["O idioma do seu site é %s."],"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."],"Step %1$d: %2$s":["Passo %1$d: %2$s"],"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"],"Choose image":["Escolher 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"],"SEO title preview":["Pré-visualização do título SEO"],"Meta description preview":["Pré-visualização da descrição"],"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).":["Ocorreu um problema ao guardar o passo actual, {{link}}por favor submeta um relatório de erro{{/link}} descrevendo em que passo está e que alterações pretende efectuar (caso queira alterar algo)."],"Close the Wizard":["Fechar o assistente"],"%s installation wizard":["Assistente de instalação de %s"],"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."],"Search results":["Resultados da pesquisa"],"Improvements":["Melhoramentos"],"Problems":["Problemas"],"Loading...":["A carregar..."],"Something went wrong. Please try again later.":["Alguma coisa correu mal. Por favor, tente de novo mais tarde."],"No results found.":["Nenhum resultado encontrado."],"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"],"Previous":["Anterior"],"Next":["Seguinte"],"Close":["Fechar"],"Meta description":["Descrição"]}}}
     1{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"pt"},"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"],"Choose image":["Escolher 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"]}}}
  • wordpress-seo/trunk/languages/yoast-components-ro_RO.json

    r2050445 r2065083  
    1 {"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"},"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"],"Free":["Gratuit"],"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"],"Something went wrong. Please reload the page.":["Ceva nu a mers bine. Te rog reîncarcă pagina."],"Modify your meta description by editing it right here":["Modifică-ți descrierea meta editând-o chiar aici"],"Url preview":["Previzualizare URL"],"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.":["Te rog furnizează o descriere meta prin editarea fragmentului de mai jos. Dacă nu o oferi, Google va încerca să găsească o parte relevantă din articolul tău pe care s-o arate în rezultatele de căutare."],"Insert snippet variable":["Inserează variabilă fragment"],"Dismiss this notice":["Respinge această notificare"],"No results":["Niciun rezultat"],"%d result found, use up and down arrow keys to navigate":["Un rezultat găsit, folosește tastele săgeată sus și jos pentru a naviga","%d rezultate găsite, folosește tastele săgeată sus și jos pentru a naviga","%d de rezultate găsite, folosește tastele săgeată sus și jos pentru a naviga"],"Your site language is set to %s. If this is not correct, contact your site administrator.":["Limba sitului tău este setată la limba %s. Dacă nu este cea corectă, contactează administratorul sitului."],"Number of results found: %d":["Număr de rezultate găsite: %d"],"On":["Pornit"],"Off":["Oprit"],"Good results":["Rezultate bune"],"Need help?":["Ai nevoie de ajutor?"],"Type here to search...":["Tastează aici pentru a căuta..."],"Search the Yoast Knowledge Base for answers to your questions:":["Caută răspunsuri la întrebările tale în Baza de cunoștințe Yoast:"],"Remove highlight from the text":["Înlătură evidențiarea din text"],"Your site language is set to %s. ":["Limba sitului tău este setată la %s."],"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."],"Step %1$d: %2$s":["Pasul %1$d: %2$s"],"Mobile preview":["Previzualizare 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"],"Choose image":["Alege o imagine"],"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"],"SEO title preview":["Previzualizare titlu SEO"],"Meta description preview":["Previzualizare descriere meta"],"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).":["A apărut o problemă în timpul salvării pasului actual, {{link}}te rog completează un raport de eroare{{/link}} descriind la care pas ești și ce modificări vrei să faci (dacă este vreuna)."],"Close the Wizard":["Închide asistentul"],"%s installation wizard":["Asistent de instalare %s"],"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."],"Search results":["Rezultate căutare"],"Improvements":["Necesită îmbunătățire"],"Problems":["Probleme"],"Loading...":["Se încarcă..."],"Something went wrong. Please try again later.":["Ceva n-a mers bine. Te rog încearcă din nou mai târziu."],"No results found.":["Niciun rezultat găsit."],"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"],"Previous":["Anterior"],"Next":["Următor"],"Close":["Închide"],"Meta description":["Descriere meta"]}}}
     1{"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"},"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"],"Choose image":["Alege o imagine"],"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"]}}}
  • wordpress-seo/trunk/languages/yoast-components-ru_RU.json

    r2053162 r2065083  
    1 {"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"},"The image you selected is too small for Facebook":["Выбранное изображение слишком маленькое для Facebook"],"The given image url cannot be loaded":["Ссылка на изображение не загружается"],"Free":["Бесплатно"],"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"],"Something went wrong. Please reload the page.":["Что-то пошло не так, перезагрузите страницу."],"Modify your meta description by editing it right here":["Измените свое мета-описание, отредактировав его прямо здесь"],"Url preview":["Предпросмотр URL"],"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.":["Пожалуйста, укажите мета-описание, изменив фрагмент снизу. Если Вы не сделаете этого, Google попытается найти соответствующую часть Вашего поста, чтобы показать в поисковых результатах."],"Insert snippet variable":["Введите переменную фрагмента"],"Dismiss this notice":["Закрыть это уведомление"],"No results":["Нет результатов"],"%d result found, use up and down arrow keys to navigate":["%d результат найден, используйте стрелки вверх и вниз для навигации","%d результата найдены, используйте стрелки вверх и вниз для навигации","%d результатов найдено, используйте стрелки вверх и вниз для навигации"],"Your site language is set to %s. If this is not correct, contact your site administrator.":["Язык вашего сайта - %s. Если это неверно, сообщите администратору вашего сайта."],"Number of results found: %d":["Количество найденых результатов: %d"],"On":["Вкл"],"Off":["Выкл"],"Good results":["Хорошие результаты"],"Need help?":["Нужна помощь?"],"Type here to search...":["Введите сюда поисковый запрос..."],"Search the Yoast Knowledge Base for answers to your questions:":["Используйте Базу Знаний Yoast для поиска ответов на Ваши вопросы:"],"Remove highlight from the text":["Убрать выделение из текста"],"Your site language is set to %s. ":["Язык вашего сайта установлен как %s."],"Highlight this result in the text":["Выделить результат в тексте"],"Considerations":["На рассмотрении"],"Errors":["Ошибки"],"Change language":["Сменить язык"],"(Opens in a new browser tab)":["(Откроется на новой вкладке браузера)"],"Scroll to see the preview content.":["Прокрутите, чтобы увидеть предпросмотр содержимого."],"Step %1$d: %2$s":["Шаг %1$d: %2$s"],"Mobile preview":["Предварительный просмотр для мобильного устройства."],"Desktop preview":["Предварительный просмотр для Настольного ПК"],"Close snippet editor":["Закрыть редактор сниппета"],"Slug":["Ярлык"],"Marks are disabled in current view":["Маhrths отключены в текущем представлении"],"Choose an image":["Выберите изображение"],"Remove the image":["Удалить изображение"],"Choose 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":["Изменить сниппет"],"SEO title preview":["Предварительный просмотр SEO названия: "],"Meta description preview":["Просмотр мета-описания: "],"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).":["Возникла проблема при сохранении текущего шага, {{link}}отправьте сообщение об ошибке{{/link}} описывая на каком вы шаге и какие изменения хотите сделать (если таковые имеются)."],"Close the Wizard":["Закройте мастер"],"%s installation wizard":["%s мастер установки"],"SEO title":["SEO-заголовок"],"Enter your Google Authorization Code and press the Authenticate button.":["Введите ваш код авторизации Google и, нажмите кнопку Аутентификация"],"Search results":["Результаты поиска"],"Improvements":["Улучшения"],"Problems":["Проблемы"],"Loading...":["Загрузка..."],"Something went wrong. Please try again later.":["Произошла ошибка. Повторите попытку позже."],"No results found.":["Результатов не найдено."],"There were no profiles found":["Не было найдено профилей"],"Authenticate":["Аутентификация"],"Get Google Authorization Code":["Получить код авторизации от Google"],"Search":["Поиск"],"Email":["Email"],"Previous":["Назад"],"Next":["Далее"],"Close":["Закрыть"],"Meta description":["Мета-описание"]}}}
     1{"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"},"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":["Удалить изображение"],"Choose 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"]}}}
  • wordpress-seo/trunk/languages/yoast-components-sk_SK.json

    r2061403 r2065083  
    1 {"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"},"The image you selected is too small for Facebook":[],"The given image url cannot be loaded":[],"Free":["Zadarmo"],"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":[],"Something went wrong. Please reload the page.":["Niečo sa pokazilo. Načítajte znovu stránku."],"Modify your meta description by editing it right here":["Upravte váš meta popis priamou editáciou tu."],"Url preview":["Ukážka URL"],"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.":[],"Insert snippet variable":[],"Dismiss this notice":["Zrušiť oznámenie"],"No results":["Žiadne výsledky"],"%d result found, use up and down arrow keys to navigate":[],"Your site language is set to %s. If this is not correct, contact your site administrator.":["Jazykom vašej webovej stránky je %s. Ak je nastavenie nesprávne, kontaktujte administrátora vašej webovej stránky."],"Number of results found: %d":["Počet nájdených výsledkov: %d"],"On":["Zapnúť"],"Off":["Vypnúť"],"Good results":["Dobré výsledky"],"Need help?":["Potrebujete pomoc?"],"Type here to search...":["Začnite písať a vyhľadajte..."],"Search the Yoast Knowledge Base for answers to your questions:":["Vyhľadajte odpovede na vaše otázky v Báze znalostí Yoast:"],"Remove highlight from the text":["Odstrániť zvýraznenie textu"],"Your site language is set to %s. ":["Jazyk vašej webovej stránky je nastavený na %s."],"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."],"Step %1$d: %2$s":["Krok %1$d: %2$s"],"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"],"Choose image":["Vybrať 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"],"SEO title preview":["Náhľad SEO titulku"],"Meta description preview":["Náhľad meta popisu:"],"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).":[],"Close the Wizard":["Zatvoriť sprievodcu"],"%s installation wizard":["%s sprievodca inštaláciou"],"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ť."],"Search results":["Výsledky vyhľadávania"],"Improvements":["Vylepšenia"],"Problems":["Problémy"],"Loading...":["Načítava sa..."],"Something went wrong. Please try again later.":["Niečo sa pokazilo. Prosím skúste to neskôr."],"No results found.":["Neboli nájdené žiadne výsledky."],"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"],"Previous":["Predchádzajúca"],"Next":["Pokračovať"],"Close":["Zatvoriť"],"Meta description":["Meta popis"]}}}
     1{"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"},"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":["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"],"Choose image":["Vybrať 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"]}}}
  • wordpress-seo/trunk/languages/yoast-components-sr_RS.json

    r2050445 r2065083  
    1 {"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"},"The image you selected is too small for Facebook":[],"The given image url cannot be loaded":[],"Free":[],"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"],"Something went wrong. Please reload the page.":["Дошло је до грешке. Освежите страницу."],"Modify your meta description by editing it right here":[],"Url preview":["Преглед URL-а"],"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.":[],"Insert snippet variable":[],"Dismiss this notice":["Одбаците обавештење"],"No results":["Нема резултата"],"%d result found, use up and down arrow keys to navigate":["%d резултат пронађен. Користите дугмад за кретање горе и доле","%d резултата пронађена. Користите дугмад за кретање горе и доле","%d резултата пронађено. Користите дугмад за кретање горе и доле"],"Your site language is set to %s. If this is not correct, contact your site administrator.":["Језик вашег веб места је подешен на %s. Уколико ово није добро, контактирајте администратора вашег веб места."],"Number of results found: %d":["Број пронађених резултата: %d"],"On":["Укључено"],"Off":["Искључено"],"Good results":["Добри резултати"],"Need help?":["Треба вам помоћ?"],"Type here to search...":["Упишите појам за претрагу..."],"Search the Yoast Knowledge Base for answers to your questions:":["Претражите Yoast базу знања и пронађите одговоре на ваша питања:"],"Remove highlight from the text":["Уклоните истицање текста из вашег текста."],"Your site language is set to %s. ":["Језик вашег веб места је постављен на %s."],"Highlight this result in the text":["Назначи овај резултат у тексту"],"Considerations":["Разматрања"],"Errors":["Грешке"],"Change language":["Промени језик"],"(Opens in a new browser tab)":["(Отвара се на новој картици прегледача)"],"Scroll to see the preview content.":["Скролуј како би прегледао садржај."],"Step %1$d: %2$s":["Корак %1$d: %2$s"],"Mobile preview":["Приказ за мобилне уређаје"],"Desktop preview":["Приказ за стоне рачунаре"],"Close snippet editor":["Искључи уређивач фрагмената"],"Slug":["Подложак"],"Marks are disabled in current view":["Ознаке су искључене у тренутном приказу"],"Choose an image":["Одаберите неку слику"],"Remove the image":["Уклоните слику"],"Choose 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":["Уреди фрагмент"],"SEO title preview":["Преглед SEO наслова"],"Meta description preview":["Преглед мета описа"],"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).":["Настао је проблем у току уписа тренутног корака, {{link}}молимо вас, попуните извештај о грешци{{/link}} са описом тренутног корака и изменама које бисте желели да извршите (ако их има)."],"Close the Wizard":["Затвори Чаробњака"],"%s installation wizard":["%s чаробњак за инсталацију"],"SEO title":["SEO Наслов"],"Enter your Google Authorization Code and press the Authenticate button.":["Упишите ваш Google Authorization Code и кликните на дугме \"Провера идентитета\"."],"Search results":["Резултати претраге"],"Improvements":["Унапређења"],"Problems":["Проблеми"],"Loading...":["Учитавање..."],"Something went wrong. Please try again later.":["Нешто није у реду. Молимо вас покушајте касније. "],"No results found.":["Нема резултата."],"There were no profiles found":["Није пронађен ниједан профил"],"Authenticate":["Потврђивање идентитета"],"Get Google Authorization Code":["Преузмите Google код за ауторизацију"],"Search":["Претрага"],"Email":["Е-пошта"],"Previous":["Преtходно"],"Next":["Следећа"],"Close":["Затвори"],"Meta description":["Мета опис"]}}}
     1{"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"},"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":["Уклоните слику"],"Choose 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":["Е-пошта"]}}}
  • wordpress-seo/trunk/languages/yoast-components-sv_SE.json

    r2050445 r2065083  
    1 {"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"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"],"Free":["Gratis"],"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"],"Something went wrong. Please reload the page.":["Något gick fel. Vänligen ladda om sidan."],"Modify your meta description by editing it right here":["Redigera din metabeskrivning genom att ändra den här"],"Url preview":["Förhandsgranskning av URL"],"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.":["Ange en metabeskrivning genom att ändra förhandsvisningstexten nedan. Om du inte gör detta, kommer Google att försöka hitta en relevant del av ditt inlägg för visning i sökresultaten."],"Insert snippet variable":["Infoga förhandsvisningstextvariabel"],"Dismiss this notice":["Avfärda denna notis"],"No results":["Inga resultat"],"%d result found, use up and down arrow keys to navigate":["%d resultat hittades. Navigera med pilarna upp/ned","%d resultat hittades. Navigera med pilarna upp/ned"],"Your site language is set to %s. If this is not correct, contact your site administrator.":["Språket för din webbplats är inställt till %s. Om detta inte stämmer bör du kontakta webbplatsens administratör."],"Number of results found: %d":["Antal funna resultat: %d"],"On":["På"],"Off":["Av"],"Good results":["Bra resultat"],"Need help?":["Behöver du hjälp?"],"Type here to search...":["Skriv här för att söka..."],"Search the Yoast Knowledge Base for answers to your questions:":["Sök i kunskapsbasen på Yoast för svar på dina frågor:"],"Remove highlight from the text":["Ta bort markering från texten"],"Your site language is set to %s. ":["Ditt språk på webbplatsen är inställt på %s."],"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."],"Step %1$d: %2$s":["Steg %1$d: %2$s"],"Mobile preview":["Förhandsvisning för mobil"],"Desktop preview":["Förhandsvisning för skrivbord"],"Close snippet editor":["Stäng redigeraren för förhandsvisningstexten"],"Slug":["Permalänk"],"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"],"Choose image":["Välj bild"],"MailChimp signup failed:":["MailChimp-registrering misslyckades:"],"Sign Up!":["Prenumerera!"],"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"],"SEO title preview":["Förhandsgranskning av SEO-titel"],"Meta description preview":["Förhandsgranskning av meta-beskrivning"],"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).":["Ett problem uppstod när detta steg sparades, {{länk}}vänligen skicka en buggrapport{{/ länk}} som beskriver vilket steg du är på och vilka ändringar du vill göra (om någon)."],"Close the Wizard":["Stäng guiden"],"%s installation wizard":["Installationsguide för %s"],"SEO title":["SEO-titel"],"Enter your Google Authorization Code and press the Authenticate button.":["Fyll i din auktoriseringskod från Google och tryck på knappen \"Autentisera\"."],"Search results":["Sökresultat"],"Improvements":["Förbättringar"],"Problems":["Problem"],"Loading...":["Laddar..."],"Something went wrong. Please try again later.":["Något gick fel. Försök igen senare."],"No results found.":["Inga resultat hittades."],"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"],"Previous":["Föregående"],"Next":["Nästa"],"Close":["Stäng"],"Meta description":["Metabeskrivning"]}}}
     1{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=n != 1;","lang":"sv_SE"},"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"],"Choose image":["Välj bild"],"MailChimp signup failed:":["MailChimp-registrering misslyckades:"],"Sign Up!":["Prenumerera!"],"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"]}}}
  • wordpress-seo/trunk/languages/yoast-components-tr_TR.json

    r2050445 r2065083  
    1 {"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=(n > 1);","lang":"tr"},"The image you selected is too small for Facebook":[],"The given image url cannot be loaded":[],"Free":["Ücretsiz"],"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"],"Something went wrong. Please reload the page.":["Bir şeyler yanlış gitti. Lütfen sayfayı yenileyin"],"Modify your meta description by editing it right here":["Meta açıklamasını burayı düzenleyerek güncelleyebilirsiniz"],"Url preview":["Url önizlemesi"],"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.":["Lütfen aşağıdaki snippet'i düzenleyerek bir meta açıklama sağlayın. Aksi takdirde, Google arama sonuçlarında gösterilmek üzere yayınınızın alakalı bir bölümünü bulmaya çalışır."],"Insert snippet variable":["Snippet değişkeni ekle"],"Dismiss this notice":["Bu bildirimi yoksay"],"No results":["Sonuç yok"],"%d result found, use up and down arrow keys to navigate":["%d sonuç bulundu, gezinmek için yukarı ve aşağı ok tuşlarını kullanın","%d sonuç bulundu, gezinmek için yukarı ve aşağı ok tuşlarını kullanın"],"Your site language is set to %s. If this is not correct, contact your site administrator.":["Sitenizin dili %s olarak ayarlanmıştır. Dil tercihi doğru değilse lütfen site yöneticinizle temasa geçin."],"Number of results found: %d":["%d sonuç bulundu"],"On":["Açık"],"Off":["Kapalı"],"Good results":["İyi sonuçlar"],"Need help?":["Yardıma ihtiyacınız var mı?"],"Type here to search...":["Aramak için buraya yazın..."],"Search the Yoast Knowledge Base for answers to your questions:":["Sorularınıza cevap bulmak için Yoast Bilgi Tabanında arama yapın:"],"Remove highlight from the text":["Metinden vurguyu kaldır"],"Your site language is set to %s. ":["Sitenin dili %s olarak ayarlandı."],"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"],"Step %1$d: %2$s":["Adım %1$d: %2$s"],"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"],"Choose image":["Görsel seç"],"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"],"SEO title preview":["SEO başlığı önizlemesi"],"Meta description preview":["Meta açıklaması önizlemesi"],"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).":["Bu adım kaydedilirken bir hata meydana geldi, lütfen hangi adımdayken veya hangi değişiklikleri yapmaya çalışırken (varsa) anlatan {{link}}bir hata bildirimi yapın{{/link}}."],"Close the Wizard":["Sihirbazı kapat"],"%s installation wizard":["%s yükleme sihirbazı"],"SEO title":["SEO başlığı"],"Enter your Google Authorization Code and press the Authenticate button.":["Google yetkilendirme kodunuzu girin ve yetkilendir butonuna basın."],"Search results":["Arama sonuçları"],"Improvements":["İyileştirmeler"],"Problems":["Problemler"],"Loading...":["Yükleniyor..."],"Something went wrong. Please try again later.":["Bir şeyler ters gitti. Lütfen daha sonra tekrar deneyin"],"No results found.":["Hiçbir sonuç bulunamadı."],"There were no profiles found":["Profil bulunamadı"],"Authenticate":["Yetkilendir"],"Get Google Authorization Code":["Google doğrulama kodu edinin"],"Search":["Arama"],"Email":["E-posta"],"Previous":["Önceki"],"Next":["Sonraki"],"Close":["Kapat"],"Meta description":["Meta açıklaması"]}}}
     1{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=2; plural=(n > 1);","lang":"tr"},"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"],"Choose image":["Görsel seç"],"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"]}}}
  • wordpress-seo/trunk/languages/yoast-components-uk.json

    r2050445 r2065083  
    1 {"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"},"The image you selected is too small for Facebook":[],"The given image url cannot be loaded":[],"Free":[],"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.":["Читайте нашу статтю про структуру сайту, аби більше дізнатись про те_ як внутрішні посилання можуть допомогти покращити ваш 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"],"Something went wrong. Please reload the page.":["Щось пішло не так. Будь ласка, оновіть сторінку."],"Modify your meta description by editing it right here":["Вкажіть свій мета-опис, редагуючи його прямо тут"],"Url preview":[],"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.":[],"Insert snippet variable":[],"Dismiss this notice":["Прибрати це повідомлення"],"No results":["Немає результатів"],"%d result found, use up and down arrow keys to navigate":[],"Your site language is set to %s. If this is not correct, contact your site administrator.":[],"Number of results found: %d":["Кількість знайдених результатів: %d"],"On":["На"],"Off":["Вимкнено"],"Good results":["Гарні результати"],"Need help?":["Потрібна допомога?"],"Type here to search...":["Введіть сюди пошуковий запит ..."],"Search the Yoast Knowledge Base for answers to your questions:":["Використовуйте базу знань Yoast для пошуку відповідей на Ваші питання:"],"Remove highlight from the text":["Видалити виділення з тексту"],"Your site language is set to %s. ":["Мова вашого сайту встановлена як %s."],"Highlight this result in the text":["Виділіть цей результат у тексті"],"Considerations":["Міркування"],"Errors":["Помилки"],"Change language":["Змінити мову"],"(Opens in a new browser tab)":["(Відкриється в новій вкладці браузера)"],"Scroll to see the preview content.":["Прокрутіть, щоб побачити попередній перегляд контенту"],"Step %1$d: %2$s":["Крок %1$d: %2$s"],"Mobile preview":["Мобільний перегляд"],"Desktop preview":["Перегляд на комп'ютері"],"Close snippet editor":["Закрийте фрагмент редактора"],"Slug":["Слаґ"],"Marks are disabled in current view":["Знаки відключені в поточному перегляді"],"Choose an image":["Вибрати зображення"],"Remove the image":["Вилучити зображення"],"Choose 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":["Редагувати сніпет"],"SEO title preview":["Попередній перегляд назви SEO"],"Meta description preview":["Опис мета-опису"],"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).":["Під час збереження поточного кроку сталася помилка, {{link}} будь ласка, надішліть звіт про помилку {{/link}}, який описує, який крок ви входите та які зміни ви хочете зробити (якщо такі є)."],"Close the Wizard":["Закрийте Майстра"],"%s installation wizard":["Майстер встановлення %s"],"SEO title":["SEO заголовок"],"Enter your Google Authorization Code and press the Authenticate button.":["Будь ласка, введіть Google Authorization Code в розміщене нижче поле та натисніть кнопку аутентифікації."],"Search results":["Результати пошуку"],"Improvements":["Поліпшення"],"Problems":["Проблеми"],"Loading...":["Завантаження..."],"Something went wrong. Please try again later.":["Виникла помилка. Будь ласка, спробуйте пізніше."],"No results found.":["Нічого не знайдено."],"There were no profiles found":["Профілі не знайдено"],"Authenticate":["Аутентифікувати"],"Get Google Authorization Code":["Отримати код авторизації Google"],"Search":["Шукати"],"Email":["Email"],"Previous":["Назад"],"Next":["Далі"],"Close":["Закрити"],"Meta description":["Мета опис"]}}}
     1{"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"},"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.":["Читайте нашу статтю про структуру сайту, аби більше дізнатись про те_ як внутрішні посилання можуть допомогти покращити ваш 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":["Вилучити зображення"],"Choose 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 Authorization Code в розміщене нижче поле та натисніть кнопку аутентифікації."],"There were no profiles found":["Профілі не знайдено"],"Authenticate":["Аутентифікувати"],"Get Google Authorization Code":["Отримати код авторизації Google"],"Email":["Email"]}}}
  • wordpress-seo/trunk/languages/yoast-components-vi.json

    r2050445 r2065083  
    1 {"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=1; plural=0;","lang":"vi_VN"},"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"],"Free":["Miễn phí"],"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"],"Something went wrong. Please reload the page.":["Đã xảy ra sự cố. Vui lòng tải lại trang."],"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"],"Url preview":["Xem trước URL"],"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.":["Cung cấp 1 thẻ mô tả bằng cách sửa đoạn trích dẫn bên dưới. Nếu bạn không có thẻ mô tả, Google sẽ thử tìm 1 phần thích hợp trong bài viết của bạn để hiển thị cho kết quả tìm kiếm."],"Insert snippet variable":["Thêm biến trích dẫn"],"Dismiss this notice":["Tắt thông báo này"],"No results":["Không có kết quả"],"%d result found, use up and down arrow keys to navigate":["%d kết quả được tìm thấy, sử dụng các phím mũi tên lên và xuống để điều hướng"],"Your site language is set to %s. If this is not correct, contact your site administrator.":["Ngôn ngữ trang web của bạn được thiết lập là %s. Nếu chưa đúng, liên hệ quản trị trang web của bạn."],"Number of results found: %d":["Số kết quả tìm thấy: %d"],"On":["Bật"],"Off":["Tắt"],"Good results":["Kết quả tốt"],"Need help?":["Cần trợ giúp?"],"Type here to search...":["Gõ vào đây để tìm kiếm..."],"Search the Yoast Knowledge Base for answers to your questions:":["Tìm đáp án cho thắc mắc của bạn trong thư viện thông tin của Yoast"],"Remove highlight from the text":["Xóa đánh dấu khỏi văn bản"],"Your site language is set to %s. ":["Ngôn ngữ của trang bạn là %s."],"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."],"Step %1$d: %2$s":["Bước %1$d: %2$s"],"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"],"Choose image":["Chọn ả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"],"SEO title preview":["Xem trước tiêu đề SEO:"],"Meta description preview":["Xem trước mô tả meta:"],"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).":["Có lỗi xảy ra khi lưu bước hiện tại, {{link}}vui lòng gửi báo cáo lỗi{{/link}} mô tả bước mà bạn đang thực hiện và những thay đổi nào bạn mong muốn(nếu có)"],"Close the Wizard":["Đóng"],"%s installation wizard":["Trình hướng dẫn cài đặt %s "],"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."],"Search results":["Các kết quả tìm kiếm"],"Improvements":["Các cải tiến"],"Problems":["Các vấn đề"],"Loading...":["Đang tải..."],"Something went wrong. Please try again later.":["Có điều gì đó không đúng vừa xảy ra. Vui lòng thử lại sau."],"No results found.":["Không tìm thấy kết quả nào."],"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"],"Previous":["Trước"],"Next":["Tiếp"],"Close":["Đóng"],"Meta description":["Thẻ mô tả"]}}}
     1{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=1; plural=0;","lang":"vi_VN"},"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"],"Choose image":["Chọn ả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"]}}}
  • wordpress-seo/trunk/languages/yoast-components-zh_CN.json

    r2050445 r2065083  
    1 {"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=1; plural=0;","lang":"zh_CN"},"The image you selected is too small for Facebook":[],"The given image url cannot be loaded":[],"Free":[],"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":[],"Something went wrong. Please reload the page.":[],"Modify your meta description by editing it right here":[],"Url preview":[],"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.":[],"Insert snippet variable":[],"Dismiss this notice":[],"No results":[],"%d result found, use up and down arrow keys to navigate":[],"Your site language is set to %s. If this is not correct, contact your site administrator.":[],"Number of results found: %d":[],"On":["开"],"Off":[],"Good results":["好的结果"],"Need help?":["需要帮忙?"],"Type here to search...":["在此输入以搜索..."],"Search the Yoast Knowledge Base for answers to your questions:":["在Yoast知识库查找问题答案:"],"Remove highlight from the text":["从文本中删除高亮显示"],"Your site language is set to %s. ":[],"Highlight this result in the text":["在文本中高亮显示此结果"],"Considerations":["注意事项"],"Errors":["错误"],"Change language":["更改语言"],"(Opens in a new browser tab)":["(在新的浏览器选项卡中打开)"],"Scroll to see the preview content.":["滚动查看预览内容。"],"Step %1$d: %2$s":["步骤%1$d:%2$s"],"Mobile preview":["手机版预览"],"Desktop preview":["桌面版预览"],"Close snippet editor":["关闭片段编辑器"],"Slug":["别名"],"Marks are disabled in current view":["标记/对号在当前视图已被禁用"],"Choose an image":["选择一张图像"],"Remove the image":["删除图像"],"Choose 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":["编辑片段"],"SEO title preview":["SEO 标题预览:"],"Meta description preview":["元描述预览:"],"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).":["保存当前步骤时出现问题,{{link}}请发送一份错误报告{{/link}}描述出错的具体位置以及您想进行的修改(如果有的话)。"],"Close the Wizard":["关闭向导"],"%s installation wizard":["%s安装向导"],"SEO title":["SEO标题"],"Enter your Google Authorization Code and press the Authenticate button.":["请输入您的 Google 授权码,并点击[验证]按钮。"],"Search results":["搜索结果"],"Improvements":["改进"],"Problems":["问题"],"Loading...":["加载中..."],"Something went wrong. Please try again later.":["有东西出错了。请稍后重试。"],"No results found.":["没有找到结果。"],"There were no profiles found":["没有找到配置文件"],"Authenticate":["认证"],"Get Google Authorization Code":["获得 Google Authorization Code"],"Search":["搜索"],"Email":["电子信箱"],"Previous":["上一项"],"Next":["下一步"],"Close":["关闭"],"Meta description":["元描述"]}}}
     1{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=1; plural=0;","lang":"zh_CN"},"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?":["需要帮忙?"],"Choose an image":["选择一张图像"],"Remove the image":["删除图像"],"Choose 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 Authorization Code"],"Email":["电子信箱"]}}}
  • wordpress-seo/trunk/languages/yoast-components-zh_HK.json

    r2050445 r2065083  
    1 {"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=1; plural=0;","lang":"zh_HK"},"The image you selected is too small for Facebook":[],"The given image url cannot be loaded":[],"Free":[],"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"],"Something went wrong. Please reload the page.":[],"Modify your meta description by editing it right here":[],"Url preview":[],"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.":[],"Insert snippet variable":[],"Dismiss this notice":[],"No results":["沒有結果"],"%d result found, use up and down arrow keys to navigate":[],"Your site language is set to %s. If this is not correct, contact your site administrator.":[],"Number of results found: %d":[],"On":[],"Off":[],"Good results":[],"Need help?":[],"Type here to search...":[],"Search the Yoast Knowledge Base for answers to your questions:":[],"Remove highlight from the text":[],"Your site language is set to %s. ":[],"Highlight this result in the text":[],"Considerations":["考慮"],"Errors":["錯誤"],"Change language":["更改語言"],"(Opens in a new browser tab)":[],"Scroll to see the preview content.":[],"Step %1$d: %2$s":["步驟%1$d:%2$s"],"Mobile preview":["行動裝置預覽"],"Desktop preview":["桌面預覽"],"Close snippet editor":["關閉代碼預覽編輯"],"Slug":["代稱"],"Marks are disabled in current view":["在當前瀏覽中標記為禁用"],"Choose an image":["選擇圖片"],"Remove the image":["移除圖片"],"Choose 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":["編輯代碼"],"SEO title preview":[],"Meta description preview":[],"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).":["儲存當前設定發生錯誤, {{link}}請回報錯誤{{/link}}並描述您正在做什麼步驟與想更改那些(假設有的話)。"],"Close the Wizard":["關閉設定精靈。"],"%s installation wizard":[],"SEO title":["SEO標題"],"Enter your Google Authorization Code and press the Authenticate button.":["輸入你的Google認證碼並點擊認證按鈕。"],"Search results":["搜尋結果"],"Improvements":[],"Problems":["問題"],"Loading...":["處理中..."],"Something went wrong. Please try again later.":["發生一點錯誤,請稍後試試看。"],"No results found.":["找不到任何結果。"],"There were no profiles found":["找不到任何資訊檔案"],"Authenticate":["驗證"],"Get Google Authorization Code":["取得Google認證碼"],"Search":["搜尋"],"Email":["電子信箱"],"Previous":["上一步"],"Next":["下一步"],"Close":["關閉"],"Meta description":["Meta 描述"]}}}
     1{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=1; plural=0;","lang":"zh_HK"},"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":["移除圖片"],"Choose 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":["電子信箱"]}}}
  • wordpress-seo/trunk/languages/yoast-components-zh_TW.json

    r2050445 r2065083  
    1 {"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=1; plural=0;","lang":"zh_TW"},"The image you selected is too small for Facebook":[],"The given image url cannot be loaded":[],"Free":["免費"],"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"],"Something went wrong. Please reload the page.":["發生錯誤,請重新載入此頁面。"],"Modify your meta description by editing it right here":["在此處編輯來修改 Meta 描述"],"Url preview":["網址預覽"],"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.":["請透過編輯下面的代碼段提供 Meta 描述。如果不這樣做,Google 會嘗試在搜尋結果中找到您文章中相關的部分。"],"Insert snippet variable":["插入代碼變數"],"Dismiss this notice":["關閉此通知"],"No results":["沒有結果"],"%d result found, use up and down arrow keys to navigate":["找到 %d 個結果,使用向上和向下箭頭鍵進行操作"],"Your site language is set to %s. If this is not correct, contact your site administrator.":["您的網站語言設置為%s。如果這不正確,請聯繫您的網站管理員。"],"Number of results found: %d":["找到的結果數量:%d"],"On":["啟用"],"Off":["關閉"],"Good results":["良好的結果"],"Need help?":["需要幫助嗎?"],"Type here to search...":["點擊這裡搜尋..."],"Search the Yoast Knowledge Base for answers to your questions:":["搜尋 Yoast知識庫 以取得您的問題的解答:"],"Remove highlight from the text":[],"Your site language is set to %s. ":["您的網站語言設定為 %s。"],"Highlight this result in the text":[],"Considerations":["注意事項"],"Errors":["錯誤"],"Change language":["更改語言"],"(Opens in a new browser tab)":["(在瀏覽器的新分頁中開啟)"],"Scroll to see the preview content.":["捲動以預覽內容"],"Step %1$d: %2$s":["步驟%1$d:%2$s"],"Mobile preview":["行動裝置預覽"],"Desktop preview":["桌面預覽"],"Close snippet editor":["關閉代碼預覽編輯"],"Slug":["代稱"],"Marks are disabled in current view":["在當前瀏覽中標記為禁用"],"Choose an image":["選擇圖片"],"Remove the image":["移除圖片"],"Choose 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":["編輯代碼"],"SEO title preview":["SEO標題預覽:"],"Meta description preview":["Meta描述預覽:"],"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).":["儲存當前設定發生錯誤, {{link}}請回報錯誤{{/link}}並描述您正在做什麼步驟與想更改那些(假設有的話)。"],"Close the Wizard":["關閉設定精靈。"],"%s installation wizard":["%s 安裝精靈"],"SEO title":["SEO標題"],"Enter your Google Authorization Code and press the Authenticate button.":["輸入您的Google認證碼並點擊認證按鈕。"],"Search results":["搜尋結果"],"Improvements":["改進"],"Problems":["問題"],"Loading...":["處理中..."],"Something went wrong. Please try again later.":["發生一點錯誤,請稍後試試看。"],"No results found.":["找不到任何結果。"],"There were no profiles found":["找不到任何資訊檔案"],"Authenticate":["驗證"],"Get Google Authorization Code":["取得 Google 認證碼"],"Search":["搜尋"],"Email":["電子信箱"],"Previous":["上一步"],"Next":["下一步"],"Close":["關閉"],"Meta description":["Meta 描述"]}}}
     1{"domain":"yoast-components","locale_data":{"yoast-components":{"":{"domain":"yoast-components","plural-forms":"nplurals=1; plural=0;","lang":"zh_TW"},"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":["移除圖片"],"Choose 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":["電子信箱"]}}}
  • wordpress-seo/trunk/languages/yoast-components.php

    r2061403 r2065083  
    22/* THIS IS A GENERATED FILE. DO NOT EDIT DIRECTLY. */
    33$generated_i18n_strings = array(
    4     // Reference: yoast-components/composites/LinkSuggestions/composites/LinkSuggestion.js:18
    5     __( 'Copy link to suggested article: %s', 'wordpress-seo' ),
    6 
    7     // Reference: yoast-components/composites/LinkSuggestions/composites/LinkSuggestion.js:17
    8     __( 'Copy link', 'wordpress-seo' ),
    9 
    10     // Reference: yoast-components/composites/LinkSuggestions/LinkSuggestions.js:182
    11     __( 'Consider linking to these articles:', 'wordpress-seo' ),
    12 
    13     // Reference: yoast-components/composites/LinkSuggestions/LinkSuggestions.js:158
    14     __( 'Consider linking to these {{a}}cornerstone articles:{{/a}}', 'wordpress-seo' ),
    15 
    16     // Reference: yoast-components/composites/LinkSuggestions/LinkSuggestions.js:113
    17     __( '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.', 'wordpress-seo' ),
    18 
    19     // Reference: yoast-components/composites/LinkSuggestions/LinkSuggestions.js:91
    20     __( '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.', 'wordpress-seo' ),
    21 
    22     // Reference: yoast-components/composites/LinkSuggestions/LinkSuggestions.js:79
    23     __( 'Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.', 'wordpress-seo' ),
    24 
    25     // Reference: yoast-components/composites/LinkSuggestions/LinkSuggestions.js:62
    26     __( 'Not supported!', 'wordpress-seo' ),
    27 
    28     // Reference: yoast-components/composites/LinkSuggestions/LinkSuggestions.js:43
    29     __( 'Copied!', 'wordpress-seo' ),
    30 
    31     // Reference: yoast-components/composites/OnboardingWizard/OnboardingWizard.js:366
    32     __( '%s installation wizard', 'wordpress-seo' ),
    33 
    34     // Reference: yoast-components/composites/OnboardingWizard/OnboardingWizard.js:358
    35     __( 'Next', 'wordpress-seo' ),
    36 
    37     // Reference: yoast-components/composites/OnboardingWizard/OnboardingWizard.js:353
    38     __( 'Previous', 'wordpress-seo' ),
    39 
    40     // Reference: yoast-components/composites/OnboardingWizard/OnboardingWizard.js:270
    41     __( 'Close the Wizard', 'wordpress-seo' ),
    42 
    43     // Reference: yoast-components/composites/OnboardingWizard/OnboardingWizard.js:269
    44     __( 'Close', 'wordpress-seo' ),
    45 
    46     // Reference: yoast-components/composites/OnboardingWizard/OnboardingWizard.js:184
    47     __( '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' ),
    48 
    49     // Reference: yoast-components/composites/OnboardingWizard/StepIndicator.js:50
    50     __( 'Step %1$d: %2$s', 'wordpress-seo' ),
    51 
    524    // Reference: js/src/components/ConnectGoogleSearchConsole.js:366
    535    __( 'Get Google Authorization Code', 'wordpress-seo' ),
     
    10153    __( 'Choose an image', 'wordpress-seo' ),
    10254
    103     // Reference: node_modules/yoast-components/app/ComponentsExample.js:156
    104     __( 'Free', 'wordpress-seo' ),
     55    // Reference: node_modules/yoast-components/composites/LinkSuggestions/LinkSuggestion.js:47
     56    __( 'Copy link', 'wordpress-seo' ),
    10557
    106     // Reference: node_modules/yoast-components/composites/AlgoliaSearch/AlgoliaSearcher.js:232
    107     __( 'Something went wrong. Please try again later.', 'wordpress-seo' ),
     58    // Reference: node_modules/yoast-components/composites/LinkSuggestions/LinkSuggestion.js:50
     59    __( 'Copy link to suggested article: %s', 'wordpress-seo' ),
    10860
    109     // Reference: node_modules/yoast-components/composites/AlgoliaSearch/AlgoliaSearcher.js:247
    110     __( 'Loading...', 'wordpress-seo' ),
     61    // Reference: node_modules/yoast-components/composites/LinkSuggestions/LinkSuggestions.js:119
     62    __( '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.', 'wordpress-seo' ),
    11163
    112     // Reference: node_modules/yoast-components/composites/AlgoliaSearch/SearchBar.js:140
    113     __( 'Search the Yoast Knowledge Base for answers to your questions:', 'wordpress-seo' ),
     64    // Reference: node_modules/yoast-components/composites/LinkSuggestions/LinkSuggestions.js:164
     65    __( 'Consider linking to these {{a}}cornerstone articles:{{/a}}', 'wordpress-seo' ),
    11466
    115     // Reference: node_modules/yoast-components/composites/AlgoliaSearch/SearchBar.js:141
    116     __( 'Type here to search...', 'wordpress-seo' ),
     67    // Reference: node_modules/yoast-components/composites/LinkSuggestions/LinkSuggestions.js:188
     68    __( 'Consider linking to these articles:', 'wordpress-seo' ),
    11769
    118     // Reference: node_modules/yoast-components/composites/AlgoliaSearch/SearchBar.js:162
    119     __( 'Search', 'wordpress-seo' ),
     70    // Reference: node_modules/yoast-components/composites/LinkSuggestions/LinkSuggestions.js:49
     71    __( 'Copied!', 'wordpress-seo' ),
    12072
    121     // Reference: node_modules/yoast-components/composites/AlgoliaSearch/SearchResults.js:114
    122     __( 'No results found.', 'wordpress-seo' ),
     73    // Reference: node_modules/yoast-components/composites/LinkSuggestions/LinkSuggestions.js:68
     74    __( 'Not supported!', 'wordpress-seo' ),
    12375
    124     // Reference: node_modules/yoast-components/composites/AlgoliaSearch/SearchResults.js:161
    125     __( 'Number of results found: %d', 'wordpress-seo' ),
     76    // Reference: node_modules/yoast-components/composites/LinkSuggestions/LinkSuggestions.js:85
     77    __( 'Read {{a}}our article about site structure{{/a}} to learn more about how internal linking can help improve your SEO.', 'wordpress-seo' ),
    12678
    127     // Reference: node_modules/yoast-components/composites/AlgoliaSearch/SearchResults.js:168
    128     __( 'Search results', 'wordpress-seo' ),
    129 
    130     // Reference: node_modules/yoast-components/composites/Plugin/ContentAnalysis/components/AnalysisList.js:63
    131     __( 'Marks are disabled in current view', 'wordpress-seo' ),
    132 
    133     // Reference: node_modules/yoast-components/composites/Plugin/ContentAnalysis/components/AnalysisList.js:65
    134     __( 'Remove highlight from the text', 'wordpress-seo' ),
    135 
    136     // Reference: node_modules/yoast-components/composites/Plugin/ContentAnalysis/components/AnalysisList.js:67
    137     __( 'Highlight this result in the text', 'wordpress-seo' ),
    138 
    139     // Reference: node_modules/yoast-components/composites/Plugin/ContentAnalysis/components/ContentAnalysis.js:103
    140     __( 'Errors', 'wordpress-seo' ),
    141 
    142     // Reference: node_modules/yoast-components/composites/Plugin/ContentAnalysis/components/ContentAnalysis.js:106
    143     __( 'Problems', 'wordpress-seo' ),
    144 
    145     // Reference: node_modules/yoast-components/composites/Plugin/ContentAnalysis/components/ContentAnalysis.js:109
    146     __( 'Improvements', 'wordpress-seo' ),
    147 
    148     // Reference: node_modules/yoast-components/composites/Plugin/ContentAnalysis/components/ContentAnalysis.js:112
    149     __( 'Considerations', 'wordpress-seo' ),
    150 
    151     // Reference: node_modules/yoast-components/composites/Plugin/ContentAnalysis/components/ContentAnalysis.js:115
    152     __( 'Good results', 'wordpress-seo' ),
     79    // Reference: node_modules/yoast-components/composites/LinkSuggestions/LinkSuggestions.js:97
     80    __( '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.', 'wordpress-seo' ),
    15381
    15482    // Reference: node_modules/yoast-components/composites/Plugin/CornerstoneContent/components/CornerstoneToggle.js:26
    15583    __( 'Mark as cornerstone content', 'wordpress-seo' ),
    15684
    157     // Reference: node_modules/yoast-components/composites/Plugin/HelpCenter/HelpCenter.js:81
     85    // Reference: node_modules/yoast-components/composites/Plugin/HelpCenter/HelpCenter.js:78
    15886    __( 'Need help?', 'wordpress-seo' ),
    15987
    160     // Reference: node_modules/yoast-components/composites/Plugin/Shared/components/KeywordInput.js:150
     88    // Reference: node_modules/yoast-components/composites/Plugin/Shared/components/KeywordInput.js:148
    16189    __( 'Are you trying to use multiple keyphrases? You should add them separately below.', 'wordpress-seo' ),
    16290
    163     // Reference: node_modules/yoast-components/composites/Plugin/Shared/components/LanguageNotice.js:51
    164     __( 'Your site language is set to %s. ', 'wordpress-seo' ),
    165 
    166     // Reference: node_modules/yoast-components/composites/Plugin/Shared/components/LanguageNotice.js:54
    167     __( 'Your site language is set to %s. If this is not correct, contact your site administrator.', 'wordpress-seo' ),
    168 
    169     // Reference: node_modules/yoast-components/composites/Plugin/Shared/components/LanguageNotice.js:70
    170     __( 'Change language', 'wordpress-seo' ),
    171 
    172     // Reference: node_modules/yoast-components/composites/Plugin/Shared/components/Toggle.js:146
    173     __( 'On', 'wordpress-seo' ),
    174 
    175     // Reference: node_modules/yoast-components/composites/Plugin/Shared/components/Toggle.js:146
    176     __( 'Off', 'wordpress-seo' ),
    177 
    178     // Reference: node_modules/yoast-components/composites/Plugin/SnippetEditor/components/ModeSwitcher.js:80
    179     __( 'Mobile preview', 'wordpress-seo' ),
    180 
    181     // Reference: node_modules/yoast-components/composites/Plugin/SnippetEditor/components/ModeSwitcher.js:91
    182     __( 'Desktop preview', 'wordpress-seo' ),
    183 
    184     // Reference: node_modules/yoast-components/composites/Plugin/SnippetEditor/components/ReplacementVariableEditor.js:88
    185     __( 'Insert snippet variable', 'wordpress-seo' ),
    186 
    187     // Reference: node_modules/yoast-components/composites/Plugin/SnippetEditor/components/ReplacementVariableEditorStandalone.js:308
    188     _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' ),
    189 
    190     // Reference: node_modules/yoast-components/composites/Plugin/SnippetEditor/components/ReplacementVariableEditorStandalone.js:319
    191     __( 'No results', 'wordpress-seo' ),
    192 
    193     // Reference: node_modules/yoast-components/composites/Plugin/SnippetEditor/components/SettingsSnippetEditorFields.js:138
    194     // Reference: node_modules/yoast-components/composites/Plugin/SnippetEditor/components/SnippetEditorFields.js:180
    195     __( 'SEO title', 'wordpress-seo' ),
    196 
    197     // Reference: node_modules/yoast-components/composites/Plugin/SnippetEditor/components/SettingsSnippetEditorFields.js:155
    198     // Reference: node_modules/yoast-components/composites/Plugin/SnippetEditor/components/SnippetEditorFields.js:226
    199     __( 'Meta description', 'wordpress-seo' ),
    200 
    201     // Reference: node_modules/yoast-components/composites/Plugin/SnippetEditor/components/SnippetEditor.js:262
    202     __( 'Modify your meta description by editing it right here', 'wordpress-seo' ),
    203 
    204     // Reference: node_modules/yoast-components/composites/Plugin/SnippetEditor/components/SnippetEditor.js:282
    205     __( 'Close snippet editor', 'wordpress-seo' ),
    206 
    207     // Reference: node_modules/yoast-components/composites/Plugin/SnippetEditor/components/SnippetEditor.js:562
    208     __( 'Edit snippet', 'wordpress-seo' ),
    209 
    210     // Reference: node_modules/yoast-components/composites/Plugin/SnippetEditor/components/SnippetEditorFields.js:203
    211     __( 'Slug', 'wordpress-seo' ),
    212 
    213     // Reference: node_modules/yoast-components/composites/Plugin/SnippetPreview/components/FixedWidthContainer.js:124
    214     __( 'Scroll to see the preview content.', 'wordpress-seo' ),
    215 
    216     // Reference: node_modules/yoast-components/composites/Plugin/SnippetPreview/components/SnippetPreview.js:390
    217     __( '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' ),
    218 
    219     // Reference: node_modules/yoast-components/composites/Plugin/SnippetPreview/components/SnippetPreview.js:657
    220     __( 'SEO title preview', 'wordpress-seo' ),
    221 
    222     // Reference: node_modules/yoast-components/composites/Plugin/SnippetPreview/components/SnippetPreview.js:671
    223     __( 'Url preview', 'wordpress-seo' ),
    224 
    225     // Reference: node_modules/yoast-components/composites/Plugin/SnippetPreview/components/SnippetPreview.js:680
    226     __( 'Meta description preview', 'wordpress-seo' ),
    227 
    228     // Reference: node_modules/yoast-components/composites/Plugin/SocialPreviews/Facebook/components/FacebookImage.js:144
     91    // Reference: node_modules/yoast-components/composites/Plugin/SocialPreviews/Facebook/components/FacebookImage.js:146
    22992    __( 'The given image url cannot be loaded', 'wordpress-seo' ),
    23093
    231     // Reference: node_modules/yoast-components/composites/Plugin/SocialPreviews/Facebook/components/FacebookImage.js:148
    232     __( 'The image you selected is too small for Facebook', 'wordpress-seo' ),
    233 
    234     // Reference: node_modules/yoast-components/composites/basic/ErrorBoundary.js:51
    235     __( 'Something went wrong. Please reload the page.', 'wordpress-seo' ),
    236 
    237     // Reference: node_modules/yoast-components/composites/basic/Notification.js:100
    238     __( 'Dismiss this notice', 'wordpress-seo' ),
    239 
    240     // Reference: node_modules/yoast-components/utils/makeOutboundLink.js:42
    241     __( '(Opens in a new browser tab)', 'wordpress-seo' )
     94    // Reference: node_modules/yoast-components/composites/Plugin/SocialPreviews/Facebook/components/FacebookImage.js:150
     95    __( 'The image you selected is too small for Facebook', 'wordpress-seo' )
    24296);
    24397/* THIS IS THE END OF THE GENERATED FILE */
  • wordpress-seo/trunk/languages/yoast-seo-js.php

    r2061403 r2065083  
    443443    // Reference: node_modules/yoastseo/src/assessor.js:216
    444444    // Reference: node_modules/yoastseo/src/tree/assess/TreeAssessor.js:132
     445    // Reference: node_modules/yoastseo/src/worker/AnalysisWebWorker.js:1035
    445446    /* Translators: %1$s expands to the name of the assessment. */
    446447    __( 'An error occurred in the \'%1$s\' assessment', 'wordpress-seo' ),
  • wordpress-seo/trunk/languages/yoastseojsfiles.txt

    r2061403 r2065083  
    101101./node_modules/yoastseo/src/morphology/german/addVerbSuffixes.js
    102102./node_modules/yoastseo/src/morphology/german/detectAndStemRegularParticiple.js
     103./node_modules/yoastseo/src/morphology/german/determineStem.js
    103104./node_modules/yoastseo/src/morphology/german/generateAdjectiveExceptionForms.js
    104105./node_modules/yoastseo/src/morphology/german/generateNounExceptionForms.js
     
    107108./node_modules/yoastseo/src/morphology/german/generateVerbExceptionForms.js
    108109./node_modules/yoastseo/src/morphology/german/getForms.js
     110./node_modules/yoastseo/src/morphology/german/helpers.js
    109111./node_modules/yoastseo/src/morphology/german/stem.js
    110112./node_modules/yoastseo/src/morphology/morphoHelpers/buildFormRule.js
  • wordpress-seo/trunk/readme.txt

    r2063108 r2065083  
    107107== Changelog ==
    108108
     109= 11.0.0 =
     110Release Date: April 16th, 2019
     111
     112Enhancements:
     113
     114* Changes the schema to output in one big Graph.
     115* Adds Person markup for author pages.
     116* Adds WebPage markup for all pages.
     117* Adds Article markup for posts, with Person markup for the author.
     118* Adds MySpace, SoundCloud, Tumblr and YouTube URL input fields to people's profiles.
     119* Changes the 'Organization or Person' section of the Knowledge graph settings to allow selecting an author that is the 'Person'.
     120* Optimizes the code to avoid an unnecessary DB query to remove notifications storage when it's already empty. Props to [rmc47](https://github.com/rmc47)
     121* Improves the accessibility of the breadcrumbs by adding `aria-current` to the active item
     122* Adds 'filesize' to whitelisted properties on ''$image'. Props to [cmmarslender](https://github.com/cmmarslender)
     123
     124Bugfixes:
     125
     126* Fixes the buttons position in the structured data blocks.
     127* Fixes a bug where the analysis would break when there were comments inside a paragraph or heading.
     128
     129Other:
     130
     131* Improves the breadcrumbs accessibility by adding `aria-current` to the active item.
     132* Improves accessibility of the add-ons tabs in the meta box.
     133
    109134= 10.1.3 =
    110135Release Date: April 4th, 2019
     
    159184* Removes all functionality that has been deprecated before Yoast SEO 6.1.
    160185
    161 = 10.0.1 =
    162 Release Date: March 19th, 2019
    163 
    164 Bugfixes:
    165 
    166 * Fixes a bug where network-wide settings were not saved on multisite environments.
    167 
    168 = 10.0.0 =
    169 Release Date: March 12th, 2019
    170 
    171 Enhancements:
    172 
    173 * The recalibrated analysis is out of its beta phase and is now the default for the SEO analysis. Thanks for testing and giving us your valuable feedback! You are awesome! 👍
    174 * Adds `$taxonomy` to the arguments passed to the `wpseo_terms` filter. Props to [polevaultweb](https://github.com/polevaultweb).
    175 * Changes the screen reader text of the SEO score indicator in the menu bar and the traffic light in the snippet preview from `Bad SEO score.` to `Needs improvement.`
    176 * Props to [Kingdutch](https://github.com/Kingdutch) for helping improve our open source content analysis library.
    177 
    178 Bugfixes:
    179 
    180 * Fixes a bug where the `focus keyphrase` snippet variable was not correctly applied on term pages.
    181 * Fixes a bug where the Facebook image that was set for the WooCommerce Shop page would not be outputted as `og:image`. Props [stodorovic](https://github.com/stodorovic).
    182 * Fixes a bug where the featured image set on a WooCommerce Shop page would not be outputted as Facebook OpenGraph Image or Twitter Image. Props [stodorovic](https://github.com/stodorovic).
    183 * Fixes a bug where backslashes and consecutive double quotes would be removed from the focus keyphrase when saving a post or term.
    184 * Fixes a bug where backslashes would be removed from the breadcrumb title, focus keyphrase, title or meta description when saving a term.
    185 
    186186= Earlier versions =
    187187
  • wordpress-seo/trunk/src/exceptions/no-indexable-found.php

    r2021176 r2065083  
    3535     * Returns an exception when an indexable for a taxonomy is not found.
    3636     *
    37      * @param int    $term_id     The term the indexable is based upon.
    38      * @param string $taxonomy    The taxonomy the indexable belongs to.
     37     * @param int    $term_id  The term the indexable is based upon.
     38     * @param string $taxonomy The taxonomy the indexable belongs to.
    3939     *
    4040     * @return No_Indexable_Found The exception.
  • wordpress-seo/trunk/src/oauth/client.php

    r2061403 r2065083  
    238238        \WPSEO_Options::set(
    239239            'myyoast_oauth',
    240             wp_json_encode(
     240            \WPSEO_Utils::format_json_encode(
    241241                [
    242242                    'config'        => $this->config,
  • wordpress-seo/trunk/src/yoast-model.php

    r2061403 r2065083  
    2323 * This documentation exposes these methods to doc generators and IDEs.
    2424 *
    25  * @see http://www.php-fig.org/psr/psr-1/
     25 * @link http://www.php-fig.org/psr/psr-1/
    2626 *
    2727 * @method void setOrm($orm)
     
    151151     * value supplied as the third argument (which defaults to null).
    152152     *
    153      * @param  string      $class_name The target class name.
    154      * @param  string      $property   The property to get the value for.
    155      * @param  null|string $default    Default value when property does not exist.
     153     * @param string      $class_name The target class name.
     154     * @param string      $property   The property to get the value for.
     155     * @param null|string $default    Default value when property does not exist.
    156156     *
    157157     * @return string The value of the property.
     
    180180     * to class_name_to_table_name() is stripped of namespace information.
    181181     *
    182      * @param  string $class_name The class name to get the table name for.
     182     * @param string $class_name The class name to get the table name for.
    183183     *
    184184     * @return string The table name.
     
    229229     * Project\Models\CarTyre would be project_models_car_tyre.
    230230     *
    231      * @param  string $class_name The class name to get the table name for.
     231     * @param string $class_name The class name to get the table name for.
    232232     *
    233233     * @return string The table name.
     
    254254     * not set on the class, returns null.
    255255     *
    256      * @param  string $class_name The class name to get the ID column for.
     256     * @param string $class_name The class name to get the ID column for.
    257257     *
    258258     * @return string|null The ID column name.
     
    268268     * suffix appended.
    269269     *
    270      * @param  string $specified_foreign_key_name The keyname to build.
    271      * @param  string $table_name                 The table name to build the key name for.
     270     * @param string $specified_foreign_key_name The keyname to build.
     271     * @param string $table_name                 The table name to build the key name for.
    272272     *
    273273     * @return string The built foreign key name.
     
    290290     * its find_one or find_many methods are called.
    291291     *
    292      * @param  string      $class_name      The target class name.
    293      * @param  null|string $connection_name The name of the connection.
     292     * @param string      $class_name      The target class name.
     293     * @param null|string $connection_name The name of the connection.
    294294     *
    295295     * @return ORMWrapper Instance of the ORM wrapper.
     
    314314     * the method chain.
    315315     *
    316      * @param  string      $associated_class_name                    The associated class name.
    317      * @param  null|string $foreign_key_name                         The foreign key name in the associated table.
    318      * @param  null|string $foreign_key_name_in_current_models_table The foreign key in the current models table.
    319      * @param  null|string $connection_name                          The name of the connection.
     316     * @param string      $associated_class_name                    The associated class name.
     317     * @param null|string $foreign_key_name                         The foreign key name in the associated table.
     318     * @param null|string $foreign_key_name_in_current_models_table The foreign key in the current models table.
     319     * @param null|string $connection_name                          The name of the connection.
    320320     *
    321321     * @return ORMWrapper
     
    346346     * key is on the associated table.
    347347     *
    348      * @param  string      $associated_class_name                    The associated class name.
    349      * @param  null|string $foreign_key_name                         The foreign key name in the associated table.
    350      * @param  null|string $foreign_key_name_in_current_models_table The foreign key in the current models table.
    351      * @param  null|string $connection_name                          The name of the connection.
     348     * @param string      $associated_class_name                    The associated class name.
     349     * @param null|string $foreign_key_name                         The foreign key name in the associated table.
     350     * @param null|string $foreign_key_name_in_current_models_table The foreign key in the current models table.
     351     * @param null|string $connection_name                          The name of the connection.
    352352     *
    353353     * @return ORMWrapper Instance of the ORM.
     
    362362     * key is on the associated table.
    363363     *
    364      * @param  string      $associated_class_name                    The associated class name.
    365      * @param  null|string $foreign_key_name                         The foreign key name in the associated table.
    366      * @param  null|string $foreign_key_name_in_current_models_table The foreign key in the current models table.
    367      * @param  null|string $connection_name                          The name of the connection.
     364     * @param string      $associated_class_name                    The associated class name.
     365     * @param null|string $foreign_key_name                         The foreign key name in the associated table.
     366     * @param null|string $foreign_key_name_in_current_models_table The foreign key in the current models table.
     367     * @param null|string $connection_name                          The name of the connection.
    368368     *
    369369     * @return ORMWrapper Instance of the ORM.
     
    380380     * the foreign key is on the base table.
    381381     *
    382      * @param  string      $associated_class_name                       The associated class name.
    383      * @param  null|string $foreign_key_name                            The foreign key in the current models table.
    384      * @param  null|string $foreign_key_name_in_associated_models_table The foreign key in the associated table.
    385      * @param  null|string $connection_name                             The name of the connection.
     382     * @param string      $associated_class_name                       The associated class name.
     383     * @param null|string $foreign_key_name                            The foreign key in the current models table.
     384     * @param null|string $foreign_key_name_in_associated_models_table The foreign key in the associated table.
     385     * @param null|string $connection_name                             The name of the connection.
    386386     *
    387387     * @return $this|null Instance of the foreign model.
     
    411411     * README for a full explanation of the parameters.
    412412     *
    413      * @param  string      $associated_class_name   The associated class name.
    414      * @param  null|string $join_class_name         The class name to join.
    415      * @param  null|string $key_to_base_table       The key to the the current models table.
    416      * @param  null|string $key_to_associated_table The key to the associated table.
    417      * @param  null|string $key_in_base_table       The key in the current models table.
    418      * @param  null|string $key_in_associated_table The key in the associated table.
    419      * @param  null|string $connection_name         The name of the connection.
     413     * @param string      $associated_class_name   The associated class name.
     414     * @param null|string $join_class_name         The class name to join.
     415     * @param null|string $key_to_base_table       The key to the the current models table.
     416     * @param null|string $key_to_associated_table The key to the associated table.
     417     * @param null|string $key_in_base_table       The key in the current models table.
     418     * @param null|string $key_in_associated_table The key in the associated table.
     419     * @param null|string $connection_name         The name of the connection.
    420420     *
    421421     * @return ORMWrapper Instance of the ORM.
     
    481481     * Set the wrapped ORM instance associated with this Model instance.
    482482     *
    483      * @param  ORM $orm The ORM instance to set.
     483     * @param ORM $orm The ORM instance to set.
    484484     *
    485485     * @return void
     
    492492     * Magic getter method, allows $model->property access to data.
    493493     *
    494      * @param  string $property The property to get.
     494     * @param string $property The property to get.
    495495     *
    496496     * @return null|string The value of the property
     
    503503     * Magic setter method, allows $model->property = 'value' access to data.
    504504     *
    505      * @param  string $property The property to set.
    506      * @param  string $value    The value to set.
     505     * @param string $property The property to set.
     506     * @param string $value    The value to set.
    507507     *
    508508     * @return void
     
    515515     * Magic unset method, allows unset($model->property)
    516516     *
    517      * @param  string $property The property to unset.
     517     * @param string $property The property to unset.
    518518     *
    519519     * @return void
     
    526526     * Magic isset method, allows isset($model->property) to work correctly.
    527527     *
    528      * @param  string $property The property to check.
     528     * @param string $property The property to check.
    529529     *
    530530     * @return bool True when value is set.
     
    537537     * Getter method, allows $model->get('property') access to data
    538538     *
    539      * @param  string $property The property to get.
     539     * @param string $property The property to get.
    540540     *
    541541     * @return string The value of a property.
     
    548548     * Setter method, allows $model->set('property', 'value') access to data.
    549549     *
    550      * @param  string|array $property The property to set.
    551      * @param  string|null  $value    The value to give.
     550     * @param string|array $property The property to set.
     551     * @param string|null  $value    The value to give.
    552552     *
    553553     * @return static Current object.
     
    562562     * Setter method, allows $model->set_expr('property', 'value') access to data.
    563563     *
    564      * @param  string|array $property The property to set.
    565      * @param  string|null  $value    The value to give.
     564     * @param string|array $property The property to set.
     565     * @param string|null  $value    The value to give.
    566566     *
    567567     * @return static Current object.
     
    649649     * Calls static methods directly on the ORMWrapper
    650650     *
    651      * @param  string $method    The method to call.
    652      * @param  array  $arguments The arguments to use.
     651     * @param string $method    The method to call.
     652     * @param array  $arguments The arguments to use.
    653653     *
    654654     * @return array Result of the static call.
     
    672672     * backwards compatible.
    673673     *
    674      * @param  string $name      The method to call.
    675      * @param  array  $arguments The arguments to use.
     674     * @param string $name      The method to call.
     675     * @param array  $arguments The arguments to use.
    676676     *
    677677     * @throws Missing_Method When the method does not exist.
  • wordpress-seo/trunk/src/yoast-orm-wrapper.php

    r2048873 r2065083  
    2222 * This documentation exposes these methods to doc generators and IDEs.
    2323 *
    24  * @see http://www.php-fig.org/psr/psr-1/
     24 * @link http://www.php-fig.org/psr/psr-1/
    2525 *
    2626 * @method void setClassName($class_name)
     
    7979     * ORMWrapper, not ORM
    8080     *
    81      * @param  string $table_name      The table to create instance for.
    82      * @param  string $connection_name The connection name.
     81     * @param string $table_name      The table to create instance for.
     82     * @param string $connection_name The connection name.
    8383     *
    8484     * @return ORMWrapper Instance of the ORM wrapper.
  • wordpress-seo/trunk/vendor/autoload.php

    r2062118 r2065083  
    55require_once __DIR__ . '/composer/autoload_real.php';
    66
    7 return ComposerAutoloaderInit5501a8bf1f868cbc0d56aab5ab6c3af6::getLoader();
     7return ComposerAutoloaderInit723250becdb99ade8eeef53a27aca1c3::getLoader();
  • wordpress-seo/trunk/vendor/autoload_52.php

    r2063108 r2065083  
    55require_once dirname(__FILE__) . '/composer'.'/autoload_real_52.php';
    66
    7 return ComposerAutoloaderInitbb350b1b05a42841542a6db359f3f284::getLoader();
     7return ComposerAutoloaderInite581d1a4fee2e7d1e40a987c701c66af::getLoader();
  • wordpress-seo/trunk/vendor/composer/autoload_classmap.php

    r2061403 r2065083  
    153153    'WPSEO_Config_Field_Mailchimp_Signup' => $baseDir . '/admin/config-ui/fields/class-field-mailchimp-signup.php',
    154154    'WPSEO_Config_Field_Multiple_Authors' => $baseDir . '/admin/config-ui/fields/class-field-multiple-authors.php',
    155     'WPSEO_Config_Field_Person_Name' => $baseDir . '/admin/config-ui/fields/class-field-person-name.php',
     155    'WPSEO_Config_Field_Person' => $baseDir . '/admin/config-ui/fields/class-field-person.php',
    156156    'WPSEO_Config_Field_Post_Type_Visibility' => $baseDir . '/admin/config-ui/fields/class-field-post-type-visibility.php',
    157157    'WPSEO_Config_Field_Profile_URL_Facebook' => $baseDir . '/admin/config-ui/fields/class-field-profile-url-facebook.php',
     
    167167    'WPSEO_Config_Field_Site_Name' => $baseDir . '/admin/config-ui/fields/class-field-site-name.php',
    168168    'WPSEO_Config_Field_Site_Type' => $baseDir . '/admin/config-ui/fields/class-field-site-type.php',
    169     'WPSEO_Config_Field_Social_Profiles_Intro' => $baseDir . '/admin/config-ui/fields/class-field-social-profiles-intro.php',
    170169    'WPSEO_Config_Field_Success_Message' => $baseDir . '/admin/config-ui/fields/class-field-success-message.php',
    171170    'WPSEO_Config_Field_Suggestions' => $baseDir . '/admin/config-ui/fields/class-field-suggestions.php',
     
    227226    'WPSEO_GSC_Settings' => $baseDir . '/admin/google_search_console/class-gsc-settings.php',
    228227    'WPSEO_GSC_Table' => $baseDir . '/admin/google_search_console/class-gsc-table.php',
     228    'WPSEO_Graph_Piece' => $baseDir . '/frontend/schema/interface-wpseo-graph-piece.php',
    229229    'WPSEO_Gutenberg_Compatibility' => $baseDir . '/admin/class-gutenberg-compatibility.php',
    230230    'WPSEO_Handle_404' => $baseDir . '/frontend/class-handle-404.php',
     
    262262    'WPSEO_Invalid_Argument_Exception' => $baseDir . '/inc/exceptions/class-invalid-argument-exception.php',
    263263    'WPSEO_Invalid_Indexable_Exception' => $baseDir . '/inc/exceptions/class-invalid-indexable-exception.php',
    264     'WPSEO_JSON_LD' => $baseDir . '/frontend/class-json-ld.php',
    265264    'WPSEO_Keyword_Synonyms_Modal' => $baseDir . '/admin/class-keyword-synonyms-modal.php',
    266265    'WPSEO_Keyword_Validator' => $baseDir . '/inc/indexables/validators/class-keyword-validator.php',
     
    383382    'WPSEO_Role_Manager_WP' => $baseDir . '/admin/roles/class-role-manager-wp.php',
    384383    'WPSEO_Ryte_Service' => $baseDir . '/admin/onpage/class-ryte-service.php',
     384    'WPSEO_Schema' => $baseDir . '/frontend/schema/class-schema.php',
     385    'WPSEO_Schema_Article' => $baseDir . '/frontend/schema/class-schema-article.php',
     386    'WPSEO_Schema_Author' => $baseDir . '/frontend/schema/class-schema-author.php',
     387    'WPSEO_Schema_Breadcrumb' => $baseDir . '/frontend/schema/class-schema-breadcrumb.php',
     388    'WPSEO_Schema_Context' => $baseDir . '/frontend/schema/class-schema-context.php',
     389    'WPSEO_Schema_IDs' => $baseDir . '/frontend/schema/class-schema-ids.php',
     390    'WPSEO_Schema_Organization' => $baseDir . '/frontend/schema/class-schema-organization.php',
     391    'WPSEO_Schema_Person' => $baseDir . '/frontend/schema/class-schema-person.php',
     392    'WPSEO_Schema_Person_Upgrade_Notification' => $baseDir . '/admin/class-schema-person-upgrade-notification.php',
     393    'WPSEO_Schema_WebPage' => $baseDir . '/frontend/schema/class-schema-webpage.php',
     394    'WPSEO_Schema_Website' => $baseDir . '/frontend/schema/class-schema-website.php',
    385395    'WPSEO_Shortcode_Filter' => $baseDir . '/admin/ajax/class-shortcode-filter.php',
    386396    'WPSEO_Shortlinker' => $baseDir . '/inc/class-wpseo-shortlinker.php',
  • wordpress-seo/trunk/vendor/composer/autoload_real.php

    r2062118 r2065083  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit5501a8bf1f868cbc0d56aab5ab6c3af6
     5class ComposerAutoloaderInit723250becdb99ade8eeef53a27aca1c3
    66{
    77    private static $loader;
     
    2020        }
    2121
    22         spl_autoload_register(array('ComposerAutoloaderInit5501a8bf1f868cbc0d56aab5ab6c3af6', 'loadClassLoader'), true, true);
     22        spl_autoload_register(array('ComposerAutoloaderInit723250becdb99ade8eeef53a27aca1c3', 'loadClassLoader'), true, true);
    2323        self::$loader = $loader = new \Composer\Autoload\ClassLoader();
    24         spl_autoload_unregister(array('ComposerAutoloaderInit5501a8bf1f868cbc0d56aab5ab6c3af6', 'loadClassLoader'));
     24        spl_autoload_unregister(array('ComposerAutoloaderInit723250becdb99ade8eeef53a27aca1c3', 'loadClassLoader'));
    2525
    2626        $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
     
    2828            require_once __DIR__ . '/autoload_static.php';
    2929
    30             call_user_func(\Composer\Autoload\ComposerStaticInit5501a8bf1f868cbc0d56aab5ab6c3af6::getInitializer($loader));
     30            call_user_func(\Composer\Autoload\ComposerStaticInit723250becdb99ade8eeef53a27aca1c3::getInitializer($loader));
    3131        } else {
    3232            $map = require __DIR__ . '/autoload_namespaces.php';
  • wordpress-seo/trunk/vendor/composer/autoload_real_52.php

    r2063108 r2065083  
    33// autoload_real_52.php generated by xrstf/composer-php52
    44
    5 class ComposerAutoloaderInitbb350b1b05a42841542a6db359f3f284 {
     5class ComposerAutoloaderInite581d1a4fee2e7d1e40a987c701c66af {
    66    private static $loader;
    77
     
    2020        }
    2121
    22         spl_autoload_register(array('ComposerAutoloaderInitbb350b1b05a42841542a6db359f3f284', 'loadClassLoader'), true /*, true */);
     22        spl_autoload_register(array('ComposerAutoloaderInite581d1a4fee2e7d1e40a987c701c66af', 'loadClassLoader'), true /*, true */);
    2323        self::$loader = $loader = new xrstf_Composer52_ClassLoader();
    24         spl_autoload_unregister(array('ComposerAutoloaderInitbb350b1b05a42841542a6db359f3f284', 'loadClassLoader'));
     24        spl_autoload_unregister(array('ComposerAutoloaderInite581d1a4fee2e7d1e40a987c701c66af', 'loadClassLoader'));
    2525
    2626        $vendorDir = dirname(dirname(__FILE__));
  • wordpress-seo/trunk/vendor/composer/autoload_static.php

    r2062118 r2065083  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInit5501a8bf1f868cbc0d56aab5ab6c3af6
     7class ComposerStaticInit723250becdb99ade8eeef53a27aca1c3
    88{
    99    public static $prefixLengthsPsr4 = array (
     
    178178        'WPSEO_Config_Field_Mailchimp_Signup' => __DIR__ . '/../..' . '/admin/config-ui/fields/class-field-mailchimp-signup.php',
    179179        'WPSEO_Config_Field_Multiple_Authors' => __DIR__ . '/../..' . '/admin/config-ui/fields/class-field-multiple-authors.php',
    180         'WPSEO_Config_Field_Person_Name' => __DIR__ . '/../..' . '/admin/config-ui/fields/class-field-person-name.php',
     180        'WPSEO_Config_Field_Person' => __DIR__ . '/../..' . '/admin/config-ui/fields/class-field-person.php',
    181181        'WPSEO_Config_Field_Post_Type_Visibility' => __DIR__ . '/../..' . '/admin/config-ui/fields/class-field-post-type-visibility.php',
    182182        'WPSEO_Config_Field_Profile_URL_Facebook' => __DIR__ . '/../..' . '/admin/config-ui/fields/class-field-profile-url-facebook.php',
     
    192192        'WPSEO_Config_Field_Site_Name' => __DIR__ . '/../..' . '/admin/config-ui/fields/class-field-site-name.php',
    193193        'WPSEO_Config_Field_Site_Type' => __DIR__ . '/../..' . '/admin/config-ui/fields/class-field-site-type.php',
    194         'WPSEO_Config_Field_Social_Profiles_Intro' => __DIR__ . '/../..' . '/admin/config-ui/fields/class-field-social-profiles-intro.php',
    195194        'WPSEO_Config_Field_Success_Message' => __DIR__ . '/../..' . '/admin/config-ui/fields/class-field-success-message.php',
    196195        'WPSEO_Config_Field_Suggestions' => __DIR__ . '/../..' . '/admin/config-ui/fields/class-field-suggestions.php',
     
    252251        'WPSEO_GSC_Settings' => __DIR__ . '/../..' . '/admin/google_search_console/class-gsc-settings.php',
    253252        'WPSEO_GSC_Table' => __DIR__ . '/../..' . '/admin/google_search_console/class-gsc-table.php',
     253        'WPSEO_Graph_Piece' => __DIR__ . '/../..' . '/frontend/schema/interface-wpseo-graph-piece.php',
    254254        'WPSEO_Gutenberg_Compatibility' => __DIR__ . '/../..' . '/admin/class-gutenberg-compatibility.php',
    255255        'WPSEO_Handle_404' => __DIR__ . '/../..' . '/frontend/class-handle-404.php',
     
    287287        'WPSEO_Invalid_Argument_Exception' => __DIR__ . '/../..' . '/inc/exceptions/class-invalid-argument-exception.php',
    288288        'WPSEO_Invalid_Indexable_Exception' => __DIR__ . '/../..' . '/inc/exceptions/class-invalid-indexable-exception.php',
    289         'WPSEO_JSON_LD' => __DIR__ . '/../..' . '/frontend/class-json-ld.php',
    290289        'WPSEO_Keyword_Synonyms_Modal' => __DIR__ . '/../..' . '/admin/class-keyword-synonyms-modal.php',
    291290        'WPSEO_Keyword_Validator' => __DIR__ . '/../..' . '/inc/indexables/validators/class-keyword-validator.php',
     
    408407        'WPSEO_Role_Manager_WP' => __DIR__ . '/../..' . '/admin/roles/class-role-manager-wp.php',
    409408        'WPSEO_Ryte_Service' => __DIR__ . '/../..' . '/admin/onpage/class-ryte-service.php',
     409        'WPSEO_Schema' => __DIR__ . '/../..' . '/frontend/schema/class-schema.php',
     410        'WPSEO_Schema_Article' => __DIR__ . '/../..' . '/frontend/schema/class-schema-article.php',
     411        'WPSEO_Schema_Author' => __DIR__ . '/../..' . '/frontend/schema/class-schema-author.php',
     412        'WPSEO_Schema_Breadcrumb' => __DIR__ . '/../..' . '/frontend/schema/class-schema-breadcrumb.php',
     413        'WPSEO_Schema_Context' => __DIR__ . '/../..' . '/frontend/schema/class-schema-context.php',
     414        'WPSEO_Schema_IDs' => __DIR__ . '/../..' . '/frontend/schema/class-schema-ids.php',
     415        'WPSEO_Schema_Organization' => __DIR__ . '/../..' . '/frontend/schema/class-schema-organization.php',
     416        'WPSEO_Schema_Person' => __DIR__ . '/../..' . '/frontend/schema/class-schema-person.php',
     417        'WPSEO_Schema_Person_Upgrade_Notification' => __DIR__ . '/../..' . '/admin/class-schema-person-upgrade-notification.php',
     418        'WPSEO_Schema_WebPage' => __DIR__ . '/../..' . '/frontend/schema/class-schema-webpage.php',
     419        'WPSEO_Schema_Website' => __DIR__ . '/../..' . '/frontend/schema/class-schema-website.php',
    410420        'WPSEO_Shortcode_Filter' => __DIR__ . '/../..' . '/admin/ajax/class-shortcode-filter.php',
    411421        'WPSEO_Shortlinker' => __DIR__ . '/../..' . '/inc/class-wpseo-shortlinker.php',
     
    681691    {
    682692        return \Closure::bind(function () use ($loader) {
    683             $loader->prefixLengthsPsr4 = ComposerStaticInit5501a8bf1f868cbc0d56aab5ab6c3af6::$prefixLengthsPsr4;
    684             $loader->prefixDirsPsr4 = ComposerStaticInit5501a8bf1f868cbc0d56aab5ab6c3af6::$prefixDirsPsr4;
    685             $loader->prefixesPsr0 = ComposerStaticInit5501a8bf1f868cbc0d56aab5ab6c3af6::$prefixesPsr0;
    686             $loader->classMap = ComposerStaticInit5501a8bf1f868cbc0d56aab5ab6c3af6::$classMap;
     693            $loader->prefixLengthsPsr4 = ComposerStaticInit723250becdb99ade8eeef53a27aca1c3::$prefixLengthsPsr4;
     694            $loader->prefixDirsPsr4 = ComposerStaticInit723250becdb99ade8eeef53a27aca1c3::$prefixDirsPsr4;
     695            $loader->prefixesPsr0 = ComposerStaticInit723250becdb99ade8eeef53a27aca1c3::$prefixesPsr0;
     696            $loader->classMap = ComposerStaticInit723250becdb99ade8eeef53a27aca1c3::$classMap;
    687697
    688698        }, null, ClassLoader::class);
  • wordpress-seo/trunk/wp-seo-main.php

    r2063108 r2065083  
    1616 *            serious issues with the options, so no if ( ! defined() ).}}
    1717 */
    18 define( 'WPSEO_VERSION', '10.1.3' );
     18define( 'WPSEO_VERSION', '11.0-RC2' );
    1919
    2020
  • wordpress-seo/trunk/wp-seo.php

    r2063108 r2065083  
    99 * @wordpress-plugin
    1010 * Plugin Name: Yoast SEO
    11  * Version:     10.1.3
     11 * Version:     11.0-RC2
    1212 * Plugin URI:  https://yoa.st/1uj
    1313 * Description: The first true all-in-one SEO solution for WordPress, including on-page content analysis, XML sitemaps and much more.
Note: See TracChangeset for help on using the changeset viewer.