Version Description
- Enhancement: Added Schema premium settings to plugin settings.
- Updated: Changed Visual Composer in readme.txt file to WPBakery Page Builder.
- Update: Added more screenshots for plugin settings.
- Update: Modified readme.txt file.
Download this release
Release Info
Developer | hishaman |
Plugin | Schema |
Version | 1.7.8 |
Comparing to | |
See all releases |
Code changes from version 1.7.7 to 1.7.8
- README.md +1 -3
- assets/images/screenshot-1.png +0 -0
- assets/images/screenshot-2.png +0 -0
- assets/images/screenshot-3.png +0 -0
- assets/images/screenshot-4.png +0 -0
- assets/images/screenshot-5.png +0 -0
- assets/images/screenshot-6.png +0 -0
- assets/images/screenshot-7.png +0 -0
- assets/images/screenshot-8.png +0 -0
- includes/admin/settings/display-settings.php +7 -1
- includes/admin/settings/register-settings.php +341 -34
- includes/integrations/divi.php +0 -31
- includes/integrations/visual-composer.php +0 -33
- languages/schema-wp-de.po +1953 -0
- languages/schema-wp-en_CA.mo +0 -0
- languages/schema-wp-en_CA.po +1850 -0
- languages/schema-wp-es.po +1953 -0
- languages/schema-wp-fr.mo +0 -0
- languages/schema-wp-fr.po +2004 -0
- languages/schema-wp-ru.po +1953 -0
- languages/schema-wp-sv.po +1953 -0
- languages/schema-wp.pot +1843 -0
- readme.txt +21 -10
- schema.php +2 -2
README.md
CHANGED
@@ -1,8 +1,6 @@
|
|
1 |
# [Schema](http://schema.press) #
|
2 |
============
|
3 |
|
4 |
-
Version 1.7.7
|
5 |
-
|
6 |
### Welcome to our GitHub Repository
|
7 |
|
8 |
Schema is a light-weight plugin for adding schema.org structured data markup in recommended JSON-LD format automatically to WordPress sites.
|
@@ -69,7 +67,7 @@ Schema markup is code (semantic vocabulary) that you put on your website to help
|
|
69 |
|
70 |
Schema plugin integrates, and play nicely with:
|
71 |
|
72 |
-
* Yoast
|
73 |
* AMP plugin
|
74 |
* WPRichSnippets
|
75 |
* The SEO Framework
|
1 |
# [Schema](http://schema.press) #
|
2 |
============
|
3 |
|
|
|
|
|
4 |
### Welcome to our GitHub Repository
|
5 |
|
6 |
Schema is a light-weight plugin for adding schema.org structured data markup in recommended JSON-LD format automatically to WordPress sites.
|
67 |
|
68 |
Schema plugin integrates, and play nicely with:
|
69 |
|
70 |
+
* Yoast SEO
|
71 |
* AMP plugin
|
72 |
* WPRichSnippets
|
73 |
* The SEO Framework
|
assets/images/screenshot-1.png
CHANGED
Binary file
|
assets/images/screenshot-2.png
CHANGED
Binary file
|
assets/images/screenshot-3.png
CHANGED
Binary file
|
assets/images/screenshot-4.png
CHANGED
Binary file
|
assets/images/screenshot-5.png
CHANGED
Binary file
|
assets/images/screenshot-6.png
ADDED
Binary file
|
assets/images/screenshot-7.png
ADDED
Binary file
|
assets/images/screenshot-8.png
ADDED
Binary file
|
includes/admin/settings/display-settings.php
CHANGED
@@ -144,7 +144,13 @@ function schema_wp_options_page() {
|
|
144 |
?>
|
145 |
</table>
|
146 |
<?php submit_button(); ?>
|
147 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
148 |
</div><!-- #tab_container-->
|
149 |
</div><!-- .wrap -->
|
150 |
<?php
|
144 |
?>
|
145 |
</table>
|
146 |
<?php submit_button(); ?>
|
147 |
+
|
148 |
+
<div style="padding:20px;" class="update-message notice inline notice-success notice-alt">
|
149 |
+
<span class="dashicons dashicons-admin-generic"></span>
|
150 |
+
Unlock <a target="_blank" href="https://schema.press/downloads/schema-premium/">Schema Premium</a> features.
|
151 |
+
</div>
|
152 |
+
|
153 |
+
</form>
|
154 |
</div><!-- #tab_container-->
|
155 |
</div><!-- .wrap -->
|
156 |
<?php
|
includes/admin/settings/register-settings.php
CHANGED
@@ -187,26 +187,27 @@ function schema_wp_register_settings() {
|
|
187 |
'schema_wp_settings_' . $tab . '_' . $section,
|
188 |
'schema_wp_settings_' . $tab . '_' . $section,
|
189 |
array(
|
190 |
-
'section'
|
191 |
-
'id'
|
192 |
-
'class'
|
193 |
-
'class_field'
|
194 |
-
'desc'
|
195 |
-
'name'
|
196 |
-
'size'
|
197 |
-
'options'
|
198 |
-
'std'
|
199 |
-
'min'
|
200 |
-
'max'
|
201 |
-
'step'
|
202 |
-
'chosen'
|
203 |
-
'placeholder'
|
204 |
-
'allow_blank'
|
205 |
-
'readonly'
|
206 |
-
'
|
207 |
-
'
|
208 |
-
'
|
209 |
-
'
|
|
|
210 |
)
|
211 |
);
|
212 |
}
|
@@ -484,6 +485,8 @@ function schema_wp_get_registered_settings() {
|
|
484 |
),
|
485 |
|
486 |
/** Content Settings */
|
|
|
|
|
487 |
'schemas' => apply_filters( 'schema_wp_settings_schemas',
|
488 |
array(
|
489 |
'about_page' => array(
|
@@ -532,6 +535,198 @@ function schema_wp_get_registered_settings() {
|
|
532 |
)
|
533 |
)
|
534 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
535 |
|
536 |
/** Extension Settings */
|
537 |
'extensions' => apply_filters('schema_wp_settings_extensions',
|
@@ -547,13 +742,89 @@ function schema_wp_get_registered_settings() {
|
|
547 |
'main' => array(
|
548 |
'uninstall_on_delete' => array(
|
549 |
'id' => 'uninstall_on_delete',
|
550 |
-
'name' => __( 'Delete Data on Uninstall?', 'schema-
|
551 |
-
'desc' => __( 'Check this box if you would like Schema to completely remove all of its data when uninstalling via Plugins > Delete.', 'schema-
|
552 |
'type' => 'checkbox'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
553 |
)
|
554 |
)
|
555 |
)
|
556 |
)
|
|
|
557 |
);
|
558 |
|
559 |
return apply_filters( 'schema_wp_registered_settings', $schema_wp_settings );
|
@@ -806,7 +1077,13 @@ function schema_wp_get_registered_settings_sections() {
|
|
806 |
'main' => '',
|
807 |
) ),
|
808 |
'schemas' => apply_filters( 'schema_wp_settings_sections_schemas', array(
|
809 |
-
'
|
|
|
|
|
|
|
|
|
|
|
|
|
810 |
) ),
|
811 |
'knowledge_graph' => apply_filters( 'schema_wp_settings_sections_knowledge_graph', array(
|
812 |
'organization' => __( 'Organization Info', 'wp-schema' ),
|
@@ -895,9 +1172,13 @@ function schema_wp_checkbox_callback( $args ) {
|
|
895 |
}
|
896 |
|
897 |
$checked = ! empty( $schema_wp_option ) ? checked( 1, $schema_wp_option, false ) : '';
|
|
|
|
|
|
|
|
|
898 |
$html = '<input type="hidden"' . $name . ' value="-1" />';
|
899 |
-
$html .= '<input ' . $class_field . 'type="checkbox" id="schema_wp_settings[' . schema_wp_sanitize_key( $args['id'] ) . ']"' . $name . ' value="1" ' . $checked . '/>';
|
900 |
-
$html .= '<label for="schema_wp_settings[' . schema_wp_sanitize_key( $args['id'] ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>';
|
901 |
|
902 |
echo apply_filters( 'schema_wp_after_setting_output', $html, $args );
|
903 |
}
|
@@ -1002,9 +1283,10 @@ function schema_wp_text_callback( $args ) {
|
|
1002 |
}
|
1003 |
|
1004 |
$readonly = $args['readonly'] === true ? ' readonly="readonly"' : '';
|
|
|
1005 |
$size = ( isset( $args['size'] ) && ! is_null( $args['size'] ) ) ? $args['size'] : 'regular';
|
1006 |
$html = '<input type="text" class="' . $class_field . sanitize_html_class( $size ) . '-text" id="schema_wp_settings[' . schema_wp_sanitize_key( $args['id'] ) . ']" ' . $name . ' value="' . esc_attr( stripslashes( $value ) ) . '" placeholder="' . $args['placeholder'] . '" ' . $readonly . '/>';
|
1007 |
-
$html .= '<label for="schema_wp_settings[' . schema_wp_sanitize_key( $args['id'] ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>';
|
1008 |
|
1009 |
echo apply_filters( 'schema_wp_after_setting_output', $html, $args );
|
1010 |
}
|
@@ -1162,8 +1444,12 @@ function schema_wp_select_callback($args) {
|
|
1162 |
} else {
|
1163 |
$class_field = '';
|
1164 |
}
|
1165 |
-
|
1166 |
-
$
|
|
|
|
|
|
|
|
|
1167 |
|
1168 |
foreach ( $args['options'] as $option => $name ) {
|
1169 |
$selected = selected( $option, $value, false );
|
@@ -1171,7 +1457,7 @@ function schema_wp_select_callback($args) {
|
|
1171 |
}
|
1172 |
|
1173 |
$html .= '</select>';
|
1174 |
-
$html .= '<label for="schema_wp_settings[' . schema_wp_sanitize_key( $args['id'] ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>';
|
1175 |
|
1176 |
echo apply_filters( 'schema_wp_after_setting_output', $html, $args );
|
1177 |
}
|
@@ -1194,7 +1480,7 @@ function schema_wp_color_select_callback( $args ) {
|
|
1194 |
} else {
|
1195 |
$value = isset( $args['std'] ) ? $args['std'] : '';
|
1196 |
}
|
1197 |
-
|
1198 |
$html = '<select id="schema_wp_settings[' . schema_wp_sanitize_key( $args['id'] ) . ']" name="schema_wp_settings[' . esc_attr( $args['id'] ) . ']"/>';
|
1199 |
|
1200 |
foreach ( $args['options'] as $option => $color ) {
|
@@ -1296,9 +1582,13 @@ function schema_wp_image_upload_callback( $args ) {
|
|
1296 |
else
|
1297 |
$value = isset( $args['std'] ) ? $args['std'] : '';
|
1298 |
|
|
|
|
|
|
|
|
|
1299 |
$size = ( isset( $args['size'] ) && ! is_null( $args['size'] ) ) ? $args['size'] : 'regular';
|
1300 |
-
$html = '<input type="text" class="' . $class_field . sanitize_html_class( $size ) . '-text" id="schema_wp_settings[' . schema_wp_sanitize_key( $args['id'] ) . ']" name="schema_wp_settings[' . esc_attr( $args['id'] ) . ']" value="' . esc_attr( stripslashes( $value ) ) . '"/>';
|
1301 |
-
$html .= '<span> <input type="button" class="schema_wp_settings_upload_button button-secondary" value="' . __( 'Upload File', 'wp-schema' ) . '"/></span>';
|
1302 |
|
1303 |
$html .= '<p>' . wp_kses_post( $args['desc'] ) . '</p>';
|
1304 |
|
@@ -1585,7 +1875,7 @@ function schema_wp_hook_callback( $args ) {
|
|
1585 |
do_action( 'schema_wp_' . $args['id'], $args );
|
1586 |
}
|
1587 |
|
1588 |
-
add_filter( '
|
1589 |
/**
|
1590 |
* Set manage_schema_options as the cap required to save Schema settings pages
|
1591 |
*
|
@@ -1595,8 +1885,14 @@ add_filter( 'schema_wp_after_setting_name', 'schema_wp_add_setting_tooltip', 10,
|
|
1595 |
function schema_wp_set_settings_cap() {
|
1596 |
return 'manage_schema_options';
|
1597 |
}
|
1598 |
-
add_filter( 'option_page_capability_schema_wp_settings', 'schema_wp_set_settings_cap' );
|
1599 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1600 |
function schema_wp_add_setting_tooltip( $html, $args ) {
|
1601 |
|
1602 |
if ( ! empty( $args['tooltip_title'] ) && ! empty( $args['tooltip_desc'] ) ) {
|
@@ -1607,6 +1903,17 @@ function schema_wp_add_setting_tooltip( $html, $args ) {
|
|
1607 |
return $html;
|
1608 |
}
|
1609 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1610 |
add_action( 'admin_print_footer_scripts', 'schema_wp_admin_footer_scripts' );
|
1611 |
/**
|
1612 |
* Footer scripts
|
187 |
'schema_wp_settings_' . $tab . '_' . $section,
|
188 |
'schema_wp_settings_' . $tab . '_' . $section,
|
189 |
array(
|
190 |
+
'section' => $section,
|
191 |
+
'id' => isset( $option['id'] ) ? $option['id'] : null,
|
192 |
+
'class' => isset( $option['class'] ) ? $option['class'] : null,
|
193 |
+
'class_field' => isset( $option['class_field'] ) ? $option['class_field'] : null,
|
194 |
+
'desc' => ! empty( $option['desc'] ) ? $option['desc'] : '',
|
195 |
+
'name' => isset( $option['name'] ) ? $option['name'] : null,
|
196 |
+
'size' => isset( $option['size'] ) ? $option['size'] : null,
|
197 |
+
'options' => isset( $option['options'] ) ? $option['options'] : '',
|
198 |
+
'std' => isset( $option['std'] ) ? $option['std'] : '',
|
199 |
+
'min' => isset( $option['min'] ) ? $option['min'] : null,
|
200 |
+
'max' => isset( $option['max'] ) ? $option['max'] : null,
|
201 |
+
'step' => isset( $option['step'] ) ? $option['step'] : null,
|
202 |
+
'chosen' => isset( $option['chosen'] ) ? $option['chosen'] : null,
|
203 |
+
'placeholder' => isset( $option['placeholder'] ) ? $option['placeholder'] : null,
|
204 |
+
'allow_blank' => isset( $option['allow_blank'] ) ? $option['allow_blank'] : true,
|
205 |
+
'readonly' => isset( $option['readonly'] ) ? $option['readonly'] : false,
|
206 |
+
'premium_feature' => isset( $option['premium_feature'] ) ? $option['premium_feature'] : false,
|
207 |
+
'faux' => isset( $option['faux'] ) ? $option['faux'] : false,
|
208 |
+
'tooltip_title' => isset( $option['tooltip_title'] ) ? $option['tooltip_title'] : false,
|
209 |
+
'tooltip_desc' => isset( $option['tooltip_desc'] ) ? $option['tooltip_desc'] : false,
|
210 |
+
'post_type' => isset( $option['post_type'] ) ? $option['post_type'] : false,
|
211 |
)
|
212 |
);
|
213 |
}
|
485 |
),
|
486 |
|
487 |
/** Content Settings */
|
488 |
+
|
489 |
+
/*
|
490 |
'schemas' => apply_filters( 'schema_wp_settings_schemas',
|
491 |
array(
|
492 |
'about_page' => array(
|
535 |
)
|
536 |
)
|
537 |
),
|
538 |
+
*/
|
539 |
+
/** Schemas Settings */
|
540 |
+
'schemas' => apply_filters( 'schema_wp_settings_schemas',
|
541 |
+
array(
|
542 |
+
'general' => array(
|
543 |
+
'web_page_element' => array(
|
544 |
+
'id' => 'web_page_element_enable',
|
545 |
+
'name' => __( 'WPHeader and WPFooter', 'schema-wp' ),
|
546 |
+
'desc' => __( 'enable?', 'schema-wp' ),
|
547 |
+
'type' => 'checkbox'
|
548 |
+
),
|
549 |
+
'comments' => array(
|
550 |
+
'id' => 'comments_enable',
|
551 |
+
'name' => __( 'Comments', 'schema-premium' ),
|
552 |
+
'desc' => __( 'enable?', 'schema-premium' ),
|
553 |
+
'type' => 'checkbox'
|
554 |
+
),
|
555 |
+
'default_image' => array(
|
556 |
+
'id' => 'default_image',
|
557 |
+
'class' => 'tr_field_logo',
|
558 |
+
'name' => __( 'Default image', 'schema-premium' ),
|
559 |
+
'desc' => __('Specify a default image to be a fallback for missing Featured Images. (should be at least 1200 pixels wide)', 'schema-premium'),
|
560 |
+
'type' => 'image_upload',
|
561 |
+
'std' => '',
|
562 |
+
'readonly' => true,
|
563 |
+
'premium_feature' => true
|
564 |
+
)
|
565 |
+
),
|
566 |
+
'author' => array(
|
567 |
+
'author_archive' => array(
|
568 |
+
'id' => 'author_archive_enable',
|
569 |
+
'name' => __( 'Author Archives', 'schema-premium' ),
|
570 |
+
'desc' => __( 'enable?', 'schema-premium' ),
|
571 |
+
'type' => 'checkbox',
|
572 |
+
'readonly' => true,
|
573 |
+
'premium_feature' => true
|
574 |
+
),
|
575 |
+
'author_url' => array(
|
576 |
+
'id' => 'author_url_enable',
|
577 |
+
'name' => __( 'Author URL', 'schema-premium' ),
|
578 |
+
'desc' => __( 'enable?', 'schema-premium' ),
|
579 |
+
'type' => 'checkbox',
|
580 |
+
'tooltip_title' => __('Keep disabled', 'schema-premium'),
|
581 |
+
'tooltip_desc' => __('if you don\'t want to expose author profile url.', 'schema-premium' ),
|
582 |
+
'readonly' => true,
|
583 |
+
'premium_feature' => true
|
584 |
+
),
|
585 |
+
'gravatar_image' => array(
|
586 |
+
'id' => 'gravatar_image_enable',
|
587 |
+
'name' => __( 'Gravatar ImageObject', 'schema-premium' ),
|
588 |
+
'desc' => __( 'enable?', 'schema-premium' ),
|
589 |
+
'type' => 'checkbox',
|
590 |
+
'tooltip_title' => __('When enabled', 'schema-premium' ),
|
591 |
+
'tooltip_desc' => __('User gravatar.com image will be used in author markup.', 'schema-premium' ),
|
592 |
+
'readonly' => true,
|
593 |
+
'premium_feature' => true
|
594 |
+
)
|
595 |
+
),
|
596 |
+
'breadcrumbs' => array(
|
597 |
+
'breadcrumbs' => array(
|
598 |
+
'id' => 'breadcrumbs_enable',
|
599 |
+
'name' => __( 'Breadcrumbs', 'schema-premium' ),
|
600 |
+
'desc' => __( 'enable?', 'schema-premium' ),
|
601 |
+
'type' => 'checkbox'
|
602 |
+
),
|
603 |
+
'breadcrumbs_home_enable' => array(
|
604 |
+
'id' => 'breadcrumbs_home_enable',
|
605 |
+
'name' => __( 'Show Homepage', 'schema-premium' ),
|
606 |
+
'desc' => __( 'enable?', 'schema-premium' ),
|
607 |
+
'type' => 'checkbox',
|
608 |
+
'readonly' => true,
|
609 |
+
'premium_feature' => true
|
610 |
+
),
|
611 |
+
'breadcrumbs_home_text' => array(
|
612 |
+
'id' => 'breadcrumbs_home_text',
|
613 |
+
'name' => __( 'Homepage Text', 'schema-premium' ),
|
614 |
+
'desc' => '',
|
615 |
+
'type' => 'text',
|
616 |
+
'std' => __( 'Home', 'schema-premium' ),
|
617 |
+
'tooltip_title' => __('Change', 'schema-premium'),
|
618 |
+
'tooltip_desc' => __('Text for the Homepage. Default is Home', 'schema-premium' ),
|
619 |
+
'readonly' => true,
|
620 |
+
'premium_feature' => true
|
621 |
+
),
|
622 |
+
),
|
623 |
+
'blog' => array(
|
624 |
+
'blog_markup' => array(
|
625 |
+
'id' => 'blog_markup',
|
626 |
+
'name' => __( 'Blog Markup', 'schema-premium' ),
|
627 |
+
'desc' => __( '', 'schema-premium' ),
|
628 |
+
'type' => 'select',
|
629 |
+
'options' => array(
|
630 |
+
'' => __('Select Markup Type', 'schema-premium'),
|
631 |
+
'Blog' => __( 'Blog', 'schema-premium'),
|
632 |
+
'ItemList' => __( 'ItemList', 'schema-premium')
|
633 |
+
),
|
634 |
+
'std' => '',
|
635 |
+
'readonly' => true,
|
636 |
+
'premium_feature' => true
|
637 |
+
),
|
638 |
+
'category' => array(
|
639 |
+
'id' => 'category_enable',
|
640 |
+
'name' => __( 'Categories', 'schema-premium' ),
|
641 |
+
'desc' => __( 'enable?', 'schema-premium' ),
|
642 |
+
'type' => 'checkbox',
|
643 |
+
'readonly' => true,
|
644 |
+
'premium_feature' => true
|
645 |
+
),
|
646 |
+
'tag' => array(
|
647 |
+
'id' => 'tag_enable',
|
648 |
+
'name' => __( 'Tags', 'schema-premium' ),
|
649 |
+
'desc' => __( 'enable?', 'schema-premium' ),
|
650 |
+
'type' => 'checkbox',
|
651 |
+
'readonly' => true,
|
652 |
+
'premium_feature' => true
|
653 |
+
),
|
654 |
+
),
|
655 |
+
'post_types' => array(
|
656 |
+
'post_type_archive' => array(
|
657 |
+
'id' => 'post_type_archive_enable',
|
658 |
+
'name' => __( 'Post Type Archives', 'schema-premium' ),
|
659 |
+
'desc' => __( 'enable?', 'schema-premium' ),
|
660 |
+
'type' => 'checkbox',
|
661 |
+
'readonly' => true,
|
662 |
+
'premium_feature' => true
|
663 |
+
),
|
664 |
+
'taxonomy' => array(
|
665 |
+
'id' => 'taxonomy_enable',
|
666 |
+
'name' => __( 'Taxonomies', 'schema-premium' ),
|
667 |
+
'desc' => __( 'enable?', 'schema-premium' ),
|
668 |
+
'type' => 'checkbox',
|
669 |
+
'readonly' => true,
|
670 |
+
'premium_feature' => true
|
671 |
+
),
|
672 |
+
),
|
673 |
+
'special_pages' => array(
|
674 |
+
'about_page' => array(
|
675 |
+
'id' => 'about_page',
|
676 |
+
'name' => __( 'About Page', 'schema-premium' ),
|
677 |
+
'desc' => __( '', 'schema-premium' ),
|
678 |
+
'type' => 'post_select',
|
679 |
+
'post_type' => 'page'
|
680 |
+
),
|
681 |
+
'contact_page' => array(
|
682 |
+
'id' => 'contact_page',
|
683 |
+
'name' => __( 'Contact Page', 'schema-premium' ),
|
684 |
+
'desc' => __( '', 'schema-premium' ),
|
685 |
+
'type' => 'post_select',
|
686 |
+
'post_type' => 'page'
|
687 |
+
)
|
688 |
+
),
|
689 |
+
'embeds' => array(
|
690 |
+
'video' => array(
|
691 |
+
'id' => 'video_object_enable',
|
692 |
+
'name' => __( 'VideoObject', 'schema-premium' ),
|
693 |
+
'desc' => __( 'enable?', 'schema-premium' ),
|
694 |
+
'type' => 'checkbox',
|
695 |
+
'tooltip_title' => __('When enabled', 'schema-premium'),
|
696 |
+
'tooltip_desc' => __('Schema plugin will fetch video data automatically from embedded video. (configure it under Schema > Types)', 'schema-premium'),
|
697 |
+
),
|
698 |
+
'video_meta' => array(
|
699 |
+
'id' => 'video_object_meta_enable',
|
700 |
+
'name' => __( 'VideoObject meta', 'schema-premium' ),
|
701 |
+
'desc' => __( 'enable?', 'schema-premium' ),
|
702 |
+
'type' => 'checkbox',
|
703 |
+
'tooltip_title' => __('When enabled', 'schema-premium'),
|
704 |
+
'tooltip_desc' => __('Schema plugin will show new post meta feilds to allow you insert video details in page editor.', 'schema-premium'),
|
705 |
+
'readonly' => true,
|
706 |
+
'premium_feature' => true
|
707 |
+
),
|
708 |
+
'audio' => array(
|
709 |
+
'id' => 'audio_object_enable',
|
710 |
+
'name' => __( 'AudioObject', 'schema-premium' ),
|
711 |
+
'desc' => __( 'enable?', 'schema-premium' ),
|
712 |
+
'type' => 'checkbox',
|
713 |
+
'tooltip_title' => __('When enabled', 'schema-premium'),
|
714 |
+
'tooltip_desc' => __('Schema plugin will fetch audio data automatically from embedded audio. (configure it under Schema > Types)', 'schema-premium'),
|
715 |
+
),
|
716 |
+
'youtube_api_key' => array(
|
717 |
+
'id' => 'youtube_api_key',
|
718 |
+
'name' => __( 'YouTube API Key', 'schema-premium' ),
|
719 |
+
'desc' => '<br><br>' . __('Obtain a YouTube API Key from your Google Developer console.', 'schema-premium'),
|
720 |
+
'type' => 'text',
|
721 |
+
'std' => '',
|
722 |
+
'tooltip_title' => __('When used', 'schema-premium'),
|
723 |
+
'tooltip_desc' => __('Schema plugin will use YoouTube API to fetch video data automatically.', 'schema-premium'),
|
724 |
+
'readonly' => true,
|
725 |
+
'premium_feature' => true
|
726 |
+
)
|
727 |
+
)
|
728 |
+
)
|
729 |
+
),
|
730 |
|
731 |
/** Extension Settings */
|
732 |
'extensions' => apply_filters('schema_wp_settings_extensions',
|
742 |
'main' => array(
|
743 |
'uninstall_on_delete' => array(
|
744 |
'id' => 'uninstall_on_delete',
|
745 |
+
'name' => __( 'Delete Data on Uninstall?', 'schema-premium' ),
|
746 |
+
'desc' => __( 'Check this box if you would like Schema to completely remove all of its data when uninstalling via Plugins > Delete.', 'schema-premium' ),
|
747 |
'type' => 'checkbox'
|
748 |
+
),
|
749 |
+
'schema_output_location' => array(
|
750 |
+
'id' => 'schema_output_location',
|
751 |
+
'name' => __( 'Schema Markup Output', 'schema-premium' ),
|
752 |
+
'desc' => '',
|
753 |
+
'type' => 'select',
|
754 |
+
'options' => array(
|
755 |
+
'head' => __( 'Head', 'schema-premium'),
|
756 |
+
'footer' => __( 'Footer', 'schema-premium')
|
757 |
+
),
|
758 |
+
'std' => 'head',
|
759 |
+
'tooltip_title' => __('Schema markup script output', 'schema-premium'),
|
760 |
+
'tooltip_desc' => __('Choose where to output the schema.org json-ld markup.', 'schema-premium'),
|
761 |
+
'readonly' => true,
|
762 |
+
'premium_feature' => true
|
763 |
+
),
|
764 |
+
'json_ld_output_format' => array(
|
765 |
+
'id' => 'json_ld_output_format',
|
766 |
+
'name' => __( 'JSON-LD Output Format', 'schema-premium' ),
|
767 |
+
'desc' => '',
|
768 |
+
'type' => 'select',
|
769 |
+
'options' => array(
|
770 |
+
'minified' => __( 'Minified', 'schema-premium'),
|
771 |
+
'pretty_print' => __( 'Pretty Print', 'schema-premium')
|
772 |
+
),
|
773 |
+
'std' => 'minified',
|
774 |
+
'tooltip_title' => __('Schema markup script output', 'schema-premium'),
|
775 |
+
'tooltip_desc' => __('Choose the output format of the schema.org json-ld markup.', 'schema-premium'),
|
776 |
+
'readonly' => true,
|
777 |
+
'premium_feature' => true
|
778 |
+
),
|
779 |
+
'schema_test_link' => array(
|
780 |
+
'id' => 'schema_test_link',
|
781 |
+
'name' => __( 'Enable Test Schema Link in Admin Top Toolbar?', 'schema-premium' ),
|
782 |
+
'desc' => '',
|
783 |
+
'type' => 'select',
|
784 |
+
'options' => array(
|
785 |
+
'yes' => __( 'Yes', 'schema-premium'),
|
786 |
+
'no' => __( 'No', 'schema-premium')
|
787 |
+
),
|
788 |
+
'std' => 'yes',
|
789 |
+
'tooltip_title' => __('When enabled', 'schema-premium'),
|
790 |
+
'tooltip_desc' => __('Schema plugin will show a Test link in admin toolbar. Clicking on that link will take you directly to Google Rich Snippets Testing Tool.', 'schema-premium'),
|
791 |
+
'readonly' => true,
|
792 |
+
'premium_feature' => true
|
793 |
+
),
|
794 |
+
'properties_instructions' => array(
|
795 |
+
'id' => 'properties_instructions_enable',
|
796 |
+
'name' => __( 'Enable Properties Instructions?', 'schema-premium' ),
|
797 |
+
'desc' => '',
|
798 |
+
'type' => 'select',
|
799 |
+
'options' => array(
|
800 |
+
'yes' => __( 'Yes', 'schema-premium'),
|
801 |
+
'no' => __( 'No', 'schema-premium')
|
802 |
+
),
|
803 |
+
'std' => 'no',
|
804 |
+
'tooltip_title' => __('When enabled', 'schema-premium'),
|
805 |
+
'tooltip_desc' => __('Instructions will show under each property post meta field.', 'schema-premium'),
|
806 |
+
'readonly' => true,
|
807 |
+
'premium_feature' => true
|
808 |
+
),
|
809 |
+
'acf_admin_menu_show' => array(
|
810 |
+
'id' => 'acf_admin_menu_show',
|
811 |
+
'name' => __( 'Enable ACF PRO admin menu?', 'schema-premium' ),
|
812 |
+
'desc' => '',
|
813 |
+
'type' => 'select',
|
814 |
+
'options' => array(
|
815 |
+
'yes' => __( 'Yes', 'schema-premium'),
|
816 |
+
'no' => __( 'No', 'schema-premium')
|
817 |
+
),
|
818 |
+
'std' => 'no',
|
819 |
+
'tooltip_title' => __('When enabled', 'schema-premium'),
|
820 |
+
'tooltip_desc' => __('Schema Premium plugin will show Advanced Custom Fields (ACF) admin menu item.', 'schema-premium'),
|
821 |
+
'readonly' => true,
|
822 |
+
'premium_feature' => true
|
823 |
)
|
824 |
)
|
825 |
)
|
826 |
)
|
827 |
+
|
828 |
);
|
829 |
|
830 |
return apply_filters( 'schema_wp_registered_settings', $schema_wp_settings );
|
1077 |
'main' => '',
|
1078 |
) ),
|
1079 |
'schemas' => apply_filters( 'schema_wp_settings_sections_schemas', array(
|
1080 |
+
'general' => __( 'General', 'schema-premium' ),
|
1081 |
+
'author' => __( 'Author', 'schema-premium' ),
|
1082 |
+
'breadcrumbs' => __( 'Breadcrumbs', 'schema-premium' ),
|
1083 |
+
'blog' => __( 'Blog', 'schema-premium' ),
|
1084 |
+
'post_types' => __( 'Post Types', 'schema-premium' ),
|
1085 |
+
'special_pages' => __( 'Special Pages', 'schema-premium' ),
|
1086 |
+
'embeds' => __( 'Embeds', 'schema-premium' ),
|
1087 |
) ),
|
1088 |
'knowledge_graph' => apply_filters( 'schema_wp_settings_sections_knowledge_graph', array(
|
1089 |
'organization' => __( 'Organization Info', 'wp-schema' ),
|
1172 |
}
|
1173 |
|
1174 |
$checked = ! empty( $schema_wp_option ) ? checked( 1, $schema_wp_option, false ) : '';
|
1175 |
+
$readonly = $args['readonly'] === true ? ' readonly="readonly"' : '';
|
1176 |
+
$disabled = (!empty($readonly)) ? ' disabled="true"' : '';
|
1177 |
+
$premium = $args['premium_feature'] === true ? schema_wp_admin_get_premium_notice() : '';
|
1178 |
+
|
1179 |
$html = '<input type="hidden"' . $name . ' value="-1" />';
|
1180 |
+
$html .= '<input ' . $class_field . 'type="checkbox" id="schema_wp_settings[' . schema_wp_sanitize_key( $args['id'] ) . ']"' . $name . ' value="1" ' . $checked . $readonly . $disabled.'/>';
|
1181 |
+
$html .= '<label for="schema_wp_settings[' . schema_wp_sanitize_key( $args['id'] ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>' . $premium;
|
1182 |
|
1183 |
echo apply_filters( 'schema_wp_after_setting_output', $html, $args );
|
1184 |
}
|
1283 |
}
|
1284 |
|
1285 |
$readonly = $args['readonly'] === true ? ' readonly="readonly"' : '';
|
1286 |
+
$premium = $args['premium_feature'] === true ? schema_wp_admin_get_premium_notice() : '';
|
1287 |
$size = ( isset( $args['size'] ) && ! is_null( $args['size'] ) ) ? $args['size'] : 'regular';
|
1288 |
$html = '<input type="text" class="' . $class_field . sanitize_html_class( $size ) . '-text" id="schema_wp_settings[' . schema_wp_sanitize_key( $args['id'] ) . ']" ' . $name . ' value="' . esc_attr( stripslashes( $value ) ) . '" placeholder="' . $args['placeholder'] . '" ' . $readonly . '/>';
|
1289 |
+
$html .= '<label for="schema_wp_settings[' . schema_wp_sanitize_key( $args['id'] ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>' . $premium;
|
1290 |
|
1291 |
echo apply_filters( 'schema_wp_after_setting_output', $html, $args );
|
1292 |
}
|
1444 |
} else {
|
1445 |
$class_field = '';
|
1446 |
}
|
1447 |
+
|
1448 |
+
$readonly = $args['readonly'] === true ? ' readonly="readonly"' : '';
|
1449 |
+
$disabled = (!empty($readonly)) ? ' disabled="true"' : '';
|
1450 |
+
$premium = $args['premium_feature'] === true ? schema_wp_admin_get_premium_notice() : '';
|
1451 |
+
|
1452 |
+
$html = '<select ' . $class_field .' id="schema_wp_settings[' . schema_wp_sanitize_key( $args['id'] ) . ']" name="schema_wp_settings[' . esc_attr( $args['id'] ) . ']" ' . $chosen . 'data-placeholder="' . esc_html( $placeholder ) . '"'.$readonly.$disabled.' />';
|
1453 |
|
1454 |
foreach ( $args['options'] as $option => $name ) {
|
1455 |
$selected = selected( $option, $value, false );
|
1457 |
}
|
1458 |
|
1459 |
$html .= '</select>';
|
1460 |
+
$html .= '<label for="schema_wp_settings[' . schema_wp_sanitize_key( $args['id'] ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>' . $premium;
|
1461 |
|
1462 |
echo apply_filters( 'schema_wp_after_setting_output', $html, $args );
|
1463 |
}
|
1480 |
} else {
|
1481 |
$value = isset( $args['std'] ) ? $args['std'] : '';
|
1482 |
}
|
1483 |
+
|
1484 |
$html = '<select id="schema_wp_settings[' . schema_wp_sanitize_key( $args['id'] ) . ']" name="schema_wp_settings[' . esc_attr( $args['id'] ) . ']"/>';
|
1485 |
|
1486 |
foreach ( $args['options'] as $option => $color ) {
|
1582 |
else
|
1583 |
$value = isset( $args['std'] ) ? $args['std'] : '';
|
1584 |
|
1585 |
+
$readonly = $args['readonly'] === true ? ' readonly="readonly"' : '';
|
1586 |
+
$disabled = (!empty($readonly)) ? ' disabled="true"' : '';
|
1587 |
+
$premium = $args['premium_feature'] === true ? schema_wp_admin_get_premium_notice() : '';
|
1588 |
+
|
1589 |
$size = ( isset( $args['size'] ) && ! is_null( $args['size'] ) ) ? $args['size'] : 'regular';
|
1590 |
+
$html = '<input type="text" class="' . $class_field . sanitize_html_class( $size ) . '-text" id="schema_wp_settings[' . schema_wp_sanitize_key( $args['id'] ) . ']" name="schema_wp_settings[' . esc_attr( $args['id'] ) . ']" value="' . esc_attr( stripslashes( $value ) ) . '"'.$readonly.'/>';
|
1591 |
+
$html .= '<span> <input type="button" class="schema_wp_settings_upload_button button-secondary" ' .$disabled . ' value="' . __( 'Upload File', 'wp-schema' ) . '"/></span>' . $premium;
|
1592 |
|
1593 |
$html .= '<p>' . wp_kses_post( $args['desc'] ) . '</p>';
|
1594 |
|
1875 |
do_action( 'schema_wp_' . $args['id'], $args );
|
1876 |
}
|
1877 |
|
1878 |
+
add_filter( 'option_page_capability_schema_wp_settings', 'schema_wp_set_settings_cap' );
|
1879 |
/**
|
1880 |
* Set manage_schema_options as the cap required to save Schema settings pages
|
1881 |
*
|
1885 |
function schema_wp_set_settings_cap() {
|
1886 |
return 'manage_schema_options';
|
1887 |
}
|
|
|
1888 |
|
1889 |
+
add_filter( 'schema_wp_after_setting_name', 'schema_wp_add_setting_tooltip', 10, 2 );
|
1890 |
+
/**
|
1891 |
+
* Add Tooltip to settings fields
|
1892 |
+
*
|
1893 |
+
* @since 1.0
|
1894 |
+
* @return string capability required
|
1895 |
+
*/
|
1896 |
function schema_wp_add_setting_tooltip( $html, $args ) {
|
1897 |
|
1898 |
if ( ! empty( $args['tooltip_title'] ) && ! empty( $args['tooltip_desc'] ) ) {
|
1903 |
return $html;
|
1904 |
}
|
1905 |
|
1906 |
+
/**
|
1907 |
+
* Return premium feature notice
|
1908 |
+
*
|
1909 |
+
* @since 1.7.8
|
1910 |
+
*
|
1911 |
+
* @return string
|
1912 |
+
*/
|
1913 |
+
function schema_wp_admin_get_premium_notice() {
|
1914 |
+
return ' <span style="color:green">(' . __('Premium Feature') . ')</span>';
|
1915 |
+
}
|
1916 |
+
|
1917 |
add_action( 'admin_print_footer_scripts', 'schema_wp_admin_footer_scripts' );
|
1918 |
/**
|
1919 |
* Footer scripts
|
includes/integrations/divi.php
DELETED
@@ -1,31 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Divi Theme integration
|
4 |
-
*
|
5 |
-
*
|
6 |
-
* plugin url: http://elegantthemes.com/
|
7 |
-
* @since 1.5.9
|
8 |
-
*/
|
9 |
-
|
10 |
-
// Exit if accessed directly
|
11 |
-
if ( ! defined( 'ABSPATH' ) ) exit;
|
12 |
-
|
13 |
-
|
14 |
-
add_filter( 'schema_wp_filter_content', 'remove_divi_shortcodes' );
|
15 |
-
/**
|
16 |
-
* Remove Divi shortcodes from content
|
17 |
-
*
|
18 |
-
* @since 1.5.9
|
19 |
-
* @return string
|
20 |
-
*/
|
21 |
-
function remove_divi_shortcodes( $content ) {
|
22 |
-
|
23 |
-
$my_theme = wp_get_theme();
|
24 |
-
|
25 |
-
if ( $my_theme == 'Divi') {
|
26 |
-
|
27 |
-
$content = preg_replace('/\[\/?et_pb.*?\]/', '', $content);
|
28 |
-
}
|
29 |
-
|
30 |
-
return $content;
|
31 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
includes/integrations/visual-composer.php
DELETED
@@ -1,33 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Visual Composer plugin integration
|
4 |
-
*
|
5 |
-
*
|
6 |
-
* plugin url: https://vc.wpbakery.com/
|
7 |
-
* @since 1.5.9.3
|
8 |
-
*/
|
9 |
-
|
10 |
-
// Exit if accessed directly
|
11 |
-
if ( ! defined( 'ABSPATH' ) ) exit;
|
12 |
-
|
13 |
-
|
14 |
-
add_filter( 'schema_wp_filter_content', 'remove_visual_composer_shortcodes' );
|
15 |
-
/**
|
16 |
-
* Remove VC shortcodes from content
|
17 |
-
*
|
18 |
-
* @since 1.5.9.3
|
19 |
-
* @return string
|
20 |
-
*/
|
21 |
-
function remove_visual_composer_shortcodes( $content ) {
|
22 |
-
|
23 |
-
global $post;
|
24 |
-
|
25 |
-
$vc_enabled = get_post_meta($post->ID, '_wpb_vc_js_status', true);
|
26 |
-
|
27 |
-
if ( isset($vc_enabled) && $vc_enabled == 'true') {
|
28 |
-
|
29 |
-
$content = preg_replace('/\[\/?vc_.*?\]/', '', $content);
|
30 |
-
}
|
31 |
-
|
32 |
-
return $content;
|
33 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/schema-wp-de.po
ADDED
@@ -0,0 +1,1953 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of Plugins - Schema - Stable (latest release) in German
|
2 |
+
# This file is distributed under the same license as the Plugins - Schema - Stable (latest release) package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2018-07-16 16:35:43+0000\n"
|
6 |
+
"MIME-Version: 1.0\n"
|
7 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
+
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: GlotPress/2.4.0-alpha\n"
|
11 |
+
"Language: de\n"
|
12 |
+
"Project-Id-Version: Plugins - Schema - Stable (latest release)\n"
|
13 |
+
|
14 |
+
#. Author URI of the plugin/theme
|
15 |
+
msgid "http://zebida.com"
|
16 |
+
msgstr ""
|
17 |
+
|
18 |
+
#. Author of the plugin/theme
|
19 |
+
msgid "Hesham"
|
20 |
+
msgstr ""
|
21 |
+
|
22 |
+
#. Description of the plugin/theme
|
23 |
+
msgid "The next generation of Structured Data."
|
24 |
+
msgstr "Die nächste Generation von strukturierten Daten."
|
25 |
+
|
26 |
+
#. Plugin URI of the plugin/theme
|
27 |
+
msgid "https://schema.press"
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
#: schema.php:143
|
31 |
+
msgid "Your version of PHP is below the minimum version of PHP required by Schema plugin. Please contact your host and request that your version be upgraded to 5.4 or later."
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
#: schema.php:120 schema.php:132
|
35 |
+
msgid "Cheatin’ huh?"
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: includes/misc-functions.php:657
|
39 |
+
msgid "Egyptian Pound"
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: includes/misc-functions.php:656
|
43 |
+
msgid "Vietnamese Dong"
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: includes/misc-functions.php:655
|
47 |
+
msgid "US Dollars"
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: includes/misc-functions.php:654
|
51 |
+
msgid "Turkish Lira"
|
52 |
+
msgstr ""
|
53 |
+
|
54 |
+
#: includes/misc-functions.php:653
|
55 |
+
msgid "Thai Baht"
|
56 |
+
msgstr ""
|
57 |
+
|
58 |
+
#: includes/misc-functions.php:652
|
59 |
+
msgid "Taiwan New Dollars"
|
60 |
+
msgstr ""
|
61 |
+
|
62 |
+
#: includes/misc-functions.php:651
|
63 |
+
msgid "Swiss Franc"
|
64 |
+
msgstr "Schweizer Franken"
|
65 |
+
|
66 |
+
#: includes/misc-functions.php:650
|
67 |
+
msgid "Swedish Krona"
|
68 |
+
msgstr "Schwedische Krone"
|
69 |
+
|
70 |
+
#: includes/misc-functions.php:649
|
71 |
+
msgid "South African rand"
|
72 |
+
msgstr "Südafrikanischer Rand"
|
73 |
+
|
74 |
+
#: includes/misc-functions.php:648
|
75 |
+
msgid "Singapore Dollar"
|
76 |
+
msgstr ""
|
77 |
+
|
78 |
+
#: includes/misc-functions.php:647
|
79 |
+
msgid "Russian Ruble"
|
80 |
+
msgstr ""
|
81 |
+
|
82 |
+
#: includes/misc-functions.php:646
|
83 |
+
msgid "Romanian Leu"
|
84 |
+
msgstr ""
|
85 |
+
|
86 |
+
#: includes/misc-functions.php:645
|
87 |
+
msgid "Pounds Sterling"
|
88 |
+
msgstr ""
|
89 |
+
|
90 |
+
#: includes/misc-functions.php:644
|
91 |
+
msgid "Polish Zloty"
|
92 |
+
msgstr ""
|
93 |
+
|
94 |
+
#: includes/misc-functions.php:643
|
95 |
+
msgid "Philippine Pesos"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: includes/misc-functions.php:642
|
99 |
+
msgid "Paraguayan Guaraní"
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: includes/misc-functions.php:641
|
103 |
+
msgid "New Zealand Dollar"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: includes/misc-functions.php:640
|
107 |
+
msgid "Norwegian Krone"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: includes/misc-functions.php:639
|
111 |
+
msgid "Nigerian Naira"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: includes/misc-functions.php:638
|
115 |
+
msgid "Mexican Peso"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: includes/misc-functions.php:637
|
119 |
+
msgid "Malaysian Ringgits"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: includes/misc-functions.php:636
|
123 |
+
msgid "South Korean Won"
|
124 |
+
msgstr "Südkoreanischer Won"
|
125 |
+
|
126 |
+
#: includes/misc-functions.php:635
|
127 |
+
msgid "Lao Kip"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: includes/misc-functions.php:634
|
131 |
+
msgid "Japanese Yen"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: includes/misc-functions.php:633
|
135 |
+
msgid "Israeli Shekel"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: includes/misc-functions.php:632
|
139 |
+
msgid "Nepali Rupee"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: includes/misc-functions.php:631
|
143 |
+
msgid "Indian Rupee"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: includes/misc-functions.php:630
|
147 |
+
msgid "Indonesia Rupiah"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: includes/misc-functions.php:629
|
151 |
+
msgid "Icelandic krona"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: includes/misc-functions.php:628
|
155 |
+
msgid "Hungarian Forint"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: includes/misc-functions.php:627
|
159 |
+
msgid "Croatia kuna"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: includes/misc-functions.php:626
|
163 |
+
msgid "Hong Kong Dollar"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: includes/misc-functions.php:625
|
167 |
+
msgid "Euros"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: includes/misc-functions.php:624
|
171 |
+
msgid "Dominican Peso"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: includes/misc-functions.php:623
|
175 |
+
msgid "Danish Krone"
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: includes/misc-functions.php:622
|
179 |
+
msgid "Czech Koruna"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: includes/misc-functions.php:621
|
183 |
+
msgid "Colombian Peso"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: includes/misc-functions.php:620
|
187 |
+
msgid "Chinese Yuan"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: includes/misc-functions.php:619
|
191 |
+
msgid "Chilean Peso"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: includes/misc-functions.php:618
|
195 |
+
msgid "Canadian Dollars"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: includes/misc-functions.php:617
|
199 |
+
msgid "Bulgarian Lev"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: includes/misc-functions.php:616
|
203 |
+
msgid "Brazilian Real"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: includes/misc-functions.php:615
|
207 |
+
msgid "Bangladeshi Taka"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: includes/misc-functions.php:614
|
211 |
+
msgid "Australian Dollars"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: includes/json/web-page-element.php:128
|
215 |
+
msgid "Search Results for “%s”"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: includes/json/web-page-element.php:76
|
219 |
+
msgid "It looks like nothing was found at this location!"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: includes/json/web-page-element.php:75
|
223 |
+
msgid "Page not found"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: includes/json/tag.php:84
|
227 |
+
msgid " Tag"
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: includes/json/category.php:108
|
231 |
+
msgid " Category"
|
232 |
+
msgstr "Kategorie"
|
233 |
+
|
234 |
+
#: includes/integrations/yoast-seo.php:81
|
235 |
+
msgid "These are the features that will be disabled:<br /><ol><li>Organization/Person</li><li>Social Profiles</li><li>Breadcrumb</li><li>Sitelink Search Box</li></ol>"
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: includes/integrations/yoast-seo.php:81
|
239 |
+
msgid "Schema plugin will override Yoast SEO output to avoid markup duplication."
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: includes/integrations/yoast-seo.php:78
|
243 |
+
msgid "Yes"
|
244 |
+
msgstr ""
|
245 |
+
|
246 |
+
#: includes/integrations/yoast-seo.php:77
|
247 |
+
msgid "Disable Duplicate Features that Yoast SEO Offers?"
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: includes/integrations/genesis.php:112
|
251 |
+
msgid "Search"
|
252 |
+
msgstr ""
|
253 |
+
|
254 |
+
#: includes/integrations/genesis.php:110 includes/integrations/genesis.php:129
|
255 |
+
msgid "Search this website"
|
256 |
+
msgstr "Auf der Webseite suchen"
|
257 |
+
|
258 |
+
#: includes/install.php:88
|
259 |
+
msgid "Page"
|
260 |
+
msgstr ""
|
261 |
+
|
262 |
+
#: includes/install.php:45
|
263 |
+
msgid "Post"
|
264 |
+
msgstr ""
|
265 |
+
|
266 |
+
#: includes/extensions/video-object.php:123
|
267 |
+
msgid "Video short description."
|
268 |
+
msgstr ""
|
269 |
+
|
270 |
+
#: includes/extensions/video-object.php:116
|
271 |
+
msgid "Video duration, example: if duration is 1 Hour 35 MIN, use: PT1H35M"
|
272 |
+
msgstr ""
|
273 |
+
|
274 |
+
#: includes/extensions/video-object.php:109
|
275 |
+
msgid "Video upload date in ISO 8601 format YYYY-MM-DD example: 2016-06-23"
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
+
#: includes/extensions/video-object.php:102
|
279 |
+
msgid "Video title"
|
280 |
+
msgstr ""
|
281 |
+
|
282 |
+
#: includes/extensions/video-object.php:96
|
283 |
+
msgid "You have enabled VideoObject, if you see an error in the <a target=\"_blank\" href=\"https://search.google.com/structured-data/testing-tool\">testing tool</a>, use the fields below to fill the missing fields, correct markup errors, and add additional details about the video embedded in your content editor."
|
284 |
+
msgstr ""
|
285 |
+
|
286 |
+
#: includes/extensions/video-object.php:52
|
287 |
+
msgid "Multiple videos"
|
288 |
+
msgstr ""
|
289 |
+
|
290 |
+
#: includes/extensions/video-object.php:48
|
291 |
+
msgid "Single video"
|
292 |
+
msgstr "Einzelnes Video"
|
293 |
+
|
294 |
+
#: includes/extensions/video-object.php:39
|
295 |
+
msgid "Note: You can enable markups to multiple videos on the same page. However, this may slow down your site, make sure your site is hosted on a reliable web host and cache your site pages by a good caching plugin. (Recommended setting: Single Video)"
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: includes/extensions/video-object.php:38
|
299 |
+
msgid "Select video markup type."
|
300 |
+
msgstr ""
|
301 |
+
|
302 |
+
#: includes/extensions/video-object.php:37
|
303 |
+
msgid "Video Markups"
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: includes/extensions/sameAs.php:74
|
307 |
+
msgid "sameAs"
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: includes/extensions/sameAs.php:41
|
311 |
+
msgid "Enter sameAs URLs, one per line."
|
312 |
+
msgstr ""
|
313 |
+
|
314 |
+
#: includes/extensions/sameAs.php:39
|
315 |
+
msgid "URLs"
|
316 |
+
msgstr "URLs"
|
317 |
+
|
318 |
+
#: includes/extensions/audio-object.php:122
|
319 |
+
msgid "Audio short description."
|
320 |
+
msgstr ""
|
321 |
+
|
322 |
+
#: includes/extensions/audio-object.php:115
|
323 |
+
msgid "Audio duration, example: if duration is 1 Hour 35 MIN, use: PT1H35M"
|
324 |
+
msgstr ""
|
325 |
+
|
326 |
+
#: includes/extensions/audio-object.php:114
|
327 |
+
#: includes/extensions/video-object.php:115
|
328 |
+
msgid "Duration"
|
329 |
+
msgstr ""
|
330 |
+
|
331 |
+
#: includes/extensions/audio-object.php:108
|
332 |
+
msgid "Audio upload date in ISO 8601 format YYYY-MM-DD example: 2016-06-23"
|
333 |
+
msgstr ""
|
334 |
+
|
335 |
+
#: includes/extensions/audio-object.php:107
|
336 |
+
#: includes/extensions/video-object.php:108
|
337 |
+
msgid "Upload Date"
|
338 |
+
msgstr ""
|
339 |
+
|
340 |
+
#: includes/extensions/audio-object.php:101
|
341 |
+
msgid "Audio title"
|
342 |
+
msgstr ""
|
343 |
+
|
344 |
+
#: includes/extensions/audio-object.php:95
|
345 |
+
msgid "You have enabled AudioObject, if you see an error in the <a target=\"_blank\" href=\"https://search.google.com/structured-data/testing-tool\">testing tool</a>, use the fields below to fill the missing fields, correct markup errors, and add additional details about the audio embedded in your content editor."
|
346 |
+
msgstr ""
|
347 |
+
|
348 |
+
#: includes/extensions/audio-object.php:51
|
349 |
+
msgid "Multiple audios"
|
350 |
+
msgstr ""
|
351 |
+
|
352 |
+
#: includes/extensions/audio-object.php:47
|
353 |
+
msgid "Single audio"
|
354 |
+
msgstr ""
|
355 |
+
|
356 |
+
#: includes/extensions/audio-object.php:43
|
357 |
+
#: includes/extensions/video-object.php:44
|
358 |
+
msgid "None"
|
359 |
+
msgstr ""
|
360 |
+
|
361 |
+
#: includes/extensions/audio-object.php:38
|
362 |
+
msgid "Note: You can enable markups to multiple audios on the same page. However, this may slow down your site, make sure your site is hosted on a reliable web host and cache your site pages by a good caching plugin. (Recommended setting: Single Audio)"
|
363 |
+
msgstr ""
|
364 |
+
|
365 |
+
#: includes/extensions/audio-object.php:37
|
366 |
+
msgid "Select audio markup type."
|
367 |
+
msgstr ""
|
368 |
+
|
369 |
+
#: includes/extensions/audio-object.php:36
|
370 |
+
msgid "Audio Markups"
|
371 |
+
msgstr ""
|
372 |
+
|
373 |
+
#: includes/class-capabilities.php:36
|
374 |
+
msgid "Manage Schema Options"
|
375 |
+
msgstr ""
|
376 |
+
|
377 |
+
#: includes/admin/updater/class-updater.php:402
|
378 |
+
msgid "You do not have permission to install plugin updates"
|
379 |
+
msgstr ""
|
380 |
+
|
381 |
+
#: includes/admin/updater/class-updater.php:212
|
382 |
+
msgid "There is a new version of %1$s available. %2$sView version %3$s details%4$s or %5$supdate now%6$s."
|
383 |
+
msgstr ""
|
384 |
+
|
385 |
+
#: includes/admin/updater/class-updater.php:204
|
386 |
+
msgid "There is a new version of %1$s available. %2$sView version %3$s details%4$s."
|
387 |
+
msgstr ""
|
388 |
+
|
389 |
+
#: includes/admin/updater/class-license-handler.php:475
|
390 |
+
msgid "Enter valid license key for automatic updates."
|
391 |
+
msgstr ""
|
392 |
+
|
393 |
+
#: includes/admin/updater/class-license-handler.php:436
|
394 |
+
msgid "You have invalid or expired license keys for Schema. Please go to the <a href=\"%s\">Licenses page</a> to correct this issue."
|
395 |
+
msgstr ""
|
396 |
+
|
397 |
+
#: includes/admin/updater/class-license-handler.php:319
|
398 |
+
msgid "Nonce verification failed"
|
399 |
+
msgstr ""
|
400 |
+
|
401 |
+
#: includes/admin/updater/class-license-handler.php:204
|
402 |
+
msgid "Enter your extension license keys here to receive updates for purchased extensions. If your license key has expired, please <a href=\"%s\" target=\"_blank\">renew your license</a>."
|
403 |
+
msgstr ""
|
404 |
+
|
405 |
+
#: includes/admin/updater/class-license-handler.php:168
|
406 |
+
msgid "%1$s"
|
407 |
+
msgstr ""
|
408 |
+
|
409 |
+
#: includes/admin/settings/register-settings.php:1554
|
410 |
+
msgid "Deactivate License"
|
411 |
+
msgstr ""
|
412 |
+
|
413 |
+
#: includes/admin/settings/register-settings.php:1543
|
414 |
+
msgid "To receive updates, please enter your valid %s license key."
|
415 |
+
msgstr ""
|
416 |
+
|
417 |
+
#: includes/admin/settings/register-settings.php:1525
|
418 |
+
msgid "Your license key expires on %s."
|
419 |
+
msgstr ""
|
420 |
+
|
421 |
+
#: includes/admin/settings/register-settings.php:1515
|
422 |
+
msgid "Your license key expires soon! It expires on %s. <a href=\"%s\" target=\"_blank\">Renew your license key</a>."
|
423 |
+
msgstr ""
|
424 |
+
|
425 |
+
#: includes/admin/settings/register-settings.php:1508
|
426 |
+
msgid "License key never expires."
|
427 |
+
msgstr ""
|
428 |
+
|
429 |
+
#: includes/admin/settings/register-settings.php:1482
|
430 |
+
msgid "Your license key has reached its activation limit. <a href=\"%s\">View possible upgrades</a> now."
|
431 |
+
msgstr ""
|
432 |
+
|
433 |
+
#: includes/admin/settings/register-settings.php:1473
|
434 |
+
msgid "This appears to be an invalid license key for %s."
|
435 |
+
msgstr ""
|
436 |
+
|
437 |
+
#: includes/admin/settings/register-settings.php:1461
|
438 |
+
msgid "Your %s is not active for this URL. Please <a href=\"%s\" target=\"_blank\">visit your account page</a> to manage your license key URLs."
|
439 |
+
msgstr ""
|
440 |
+
|
441 |
+
#: includes/admin/settings/register-settings.php:1448
|
442 |
+
msgid "Invalid license. Please <a href=\"%s\" target=\"_blank\">visit your account page</a> and verify it."
|
443 |
+
msgstr ""
|
444 |
+
|
445 |
+
#: includes/admin/settings/register-settings.php:1436
|
446 |
+
msgid "Your license key has been disabled. Please <a href=\"%s\" target=\"_blank\">contact support</a> for more information."
|
447 |
+
msgstr ""
|
448 |
+
|
449 |
+
#: includes/admin/settings/register-settings.php:1423
|
450 |
+
msgid "Your license key expired on %s. Please <a href=\"%s\" target=\"_blank\">renew your license key</a>."
|
451 |
+
msgstr ""
|
452 |
+
|
453 |
+
#: includes/admin/settings/register-settings.php:1271
|
454 |
+
#: includes/admin/settings/register-settings.php:1301
|
455 |
+
msgid "Upload File"
|
456 |
+
msgstr "Datei hochladen"
|
457 |
+
|
458 |
+
#: includes/admin/settings/register-settings.php:1124
|
459 |
+
msgid "The callback function used for the %s setting is missing."
|
460 |
+
msgstr ""
|
461 |
+
|
462 |
+
#: includes/admin/settings/register-settings.php:818
|
463 |
+
msgid "Main"
|
464 |
+
msgstr ""
|
465 |
+
|
466 |
+
#: includes/admin/settings/register-settings.php:815
|
467 |
+
msgid "Corporate Contacts"
|
468 |
+
msgstr ""
|
469 |
+
|
470 |
+
#: includes/admin/settings/register-settings.php:812
|
471 |
+
msgid "Organization Info"
|
472 |
+
msgstr ""
|
473 |
+
|
474 |
+
#: includes/admin/settings/register-settings.php:757
|
475 |
+
msgid "Licenses"
|
476 |
+
msgstr ""
|
477 |
+
|
478 |
+
#: includes/admin/settings/register-settings.php:551
|
479 |
+
msgid "Check this box if you would like Schema to completely remove all of its data when uninstalling via Plugins > Delete."
|
480 |
+
msgstr ""
|
481 |
+
|
482 |
+
#: includes/admin/settings/register-settings.php:550
|
483 |
+
msgid "Delete Data on Uninstall?"
|
484 |
+
msgstr "Daten bei der Deinstallation löschen?"
|
485 |
+
|
486 |
+
#: includes/admin/settings/register-settings.php:477
|
487 |
+
msgid "Site Alternate Name"
|
488 |
+
msgstr ""
|
489 |
+
|
490 |
+
#: includes/admin/settings/register-settings.php:469
|
491 |
+
msgid "Site Name"
|
492 |
+
msgstr ""
|
493 |
+
|
494 |
+
#: includes/admin/settings/register-settings.php:463
|
495 |
+
msgid "Tell Google to show your site name in search results."
|
496 |
+
msgstr ""
|
497 |
+
|
498 |
+
#: includes/admin/settings/register-settings.php:462
|
499 |
+
msgid "Enable Site Name?"
|
500 |
+
msgstr ""
|
501 |
+
|
502 |
+
#: includes/admin/settings/register-settings.php:454
|
503 |
+
msgid "Tell Google to show a Sitelinks search box."
|
504 |
+
msgstr ""
|
505 |
+
|
506 |
+
#: includes/admin/settings/register-settings.php:453
|
507 |
+
msgid "Enable Sitelinks Search Box?"
|
508 |
+
msgstr ""
|
509 |
+
|
510 |
+
#: includes/admin/settings/register-settings.php:440
|
511 |
+
msgid "Recommended. The URL of contact page."
|
512 |
+
msgstr ""
|
513 |
+
|
514 |
+
#: includes/admin/settings/register-settings.php:439
|
515 |
+
msgid "URL"
|
516 |
+
msgstr ""
|
517 |
+
|
518 |
+
#: includes/admin/settings/register-settings.php:432
|
519 |
+
msgid "Recommended. An internationalized version of the phone number, starting with the \"+\" symbol and country code (+1 in the US and Canada)."
|
520 |
+
msgstr ""
|
521 |
+
|
522 |
+
#: includes/admin/settings/register-settings.php:431
|
523 |
+
msgid "Telephone"
|
524 |
+
msgstr "Telefon"
|
525 |
+
|
526 |
+
#: includes/admin/settings/register-settings.php:423
|
527 |
+
msgid "Contact Type"
|
528 |
+
msgstr ""
|
529 |
+
|
530 |
+
#: includes/admin/settings/register-settings.php:312
|
531 |
+
msgid "Website URL"
|
532 |
+
msgstr ""
|
533 |
+
|
534 |
+
#: includes/admin/settings/register-settings.php:245
|
535 |
+
msgid "Select Site Type"
|
536 |
+
msgstr ""
|
537 |
+
|
538 |
+
#: includes/admin/settings/contextual-help.php:65
|
539 |
+
msgid "A description of all the options are provided beside their input boxes."
|
540 |
+
msgstr ""
|
541 |
+
|
542 |
+
#: includes/admin/settings/contextual-help.php:64
|
543 |
+
msgid "This screen provides advanced options such as deleting plugin data on uninstall."
|
544 |
+
msgstr ""
|
545 |
+
|
546 |
+
#: includes/admin/settings/contextual-help.php:57
|
547 |
+
msgid "This screen provides access to settings added by most Schema extensions."
|
548 |
+
msgstr ""
|
549 |
+
|
550 |
+
#: includes/admin/settings/contextual-help.php:51
|
551 |
+
msgid "This screen provides settings for configuring Search Results. You can set Sitelinks Search Box and Site Name."
|
552 |
+
msgstr ""
|
553 |
+
|
554 |
+
#: includes/admin/settings/contextual-help.php:50
|
555 |
+
#: includes/admin/settings/register-settings.php:813
|
556 |
+
msgid "Search Results"
|
557 |
+
msgstr "Suchergebnisse"
|
558 |
+
|
559 |
+
#: includes/admin/settings/contextual-help.php:45
|
560 |
+
msgid "This screen provides settings for configuring the Knowledge Graph. You can set Organization Info and Corporate Contacts."
|
561 |
+
msgstr ""
|
562 |
+
|
563 |
+
#: includes/admin/settings/contextual-help.php:44
|
564 |
+
#: includes/admin/settings/register-settings.php:750
|
565 |
+
msgid "Knowledge Graph"
|
566 |
+
msgstr ""
|
567 |
+
|
568 |
+
#: includes/admin/settings/contextual-help.php:39
|
569 |
+
msgid "This screen provides the most basic settings for configuring Schema plugin on your site. You can set Schema for About and Contact pages, and turn automatic <em>Feature image</em> on and off...etc"
|
570 |
+
msgstr ""
|
571 |
+
|
572 |
+
#: includes/admin/settings/contextual-help.php:29
|
573 |
+
msgid "<a href=\"%s\">Post an issue</a> on <a href=\"%s\">GitHub</a>. View <a href=\"%s\">extensions</a>"
|
574 |
+
msgstr ""
|
575 |
+
|
576 |
+
#: includes/admin/settings/contextual-help.php:27
|
577 |
+
msgid "Visit the <a href=\"%s\">documentation</a> on the schema.press website."
|
578 |
+
msgstr ""
|
579 |
+
|
580 |
+
#: includes/admin/settings/contextual-help.php:26
|
581 |
+
msgid "For more information:"
|
582 |
+
msgstr ""
|
583 |
+
|
584 |
+
#: includes/admin/post-type/schema-wp-submit.php:111
|
585 |
+
msgid "Save "
|
586 |
+
msgstr ""
|
587 |
+
|
588 |
+
#: includes/admin/post-type/schema-wp-submit.php:110
|
589 |
+
msgid "Update "
|
590 |
+
msgstr ""
|
591 |
+
|
592 |
+
#: includes/admin/post-type/schema-wp-submit.php:104
|
593 |
+
msgid "Save"
|
594 |
+
msgstr ""
|
595 |
+
|
596 |
+
#: includes/admin/post-type/schema-wp-submit.php:103
|
597 |
+
msgid "Publish"
|
598 |
+
msgstr ""
|
599 |
+
|
600 |
+
#: includes/admin/post-type/schema-wp-submit.php:92
|
601 |
+
msgid "Move to Trash"
|
602 |
+
msgstr ""
|
603 |
+
|
604 |
+
#: includes/admin/post-type/schema-wp-submit.php:90
|
605 |
+
msgid "Delete Permanently"
|
606 |
+
msgstr ""
|
607 |
+
|
608 |
+
#: includes/admin/post-type/schema-wp-submit.php:38
|
609 |
+
msgid "%s"
|
610 |
+
msgstr "%s"
|
611 |
+
|
612 |
+
#: includes/admin/post-type/schema-wp-ajax.php:95
|
613 |
+
msgid "You must select at leat one post type!"
|
614 |
+
msgstr ""
|
615 |
+
|
616 |
+
#: includes/admin/post-type/schema-post-type.php:172
|
617 |
+
msgid "Create Schema"
|
618 |
+
msgstr ""
|
619 |
+
|
620 |
+
#: includes/admin/post-type/schema-post-type.php:118
|
621 |
+
msgid "Preview schema"
|
622 |
+
msgstr ""
|
623 |
+
|
624 |
+
#: includes/admin/post-type/schema-post-type.php:111
|
625 |
+
msgid "View schema"
|
626 |
+
msgstr ""
|
627 |
+
|
628 |
+
#: includes/admin/post-type/schema-post-type.php:105
|
629 |
+
msgid "Schema draft updated."
|
630 |
+
msgstr ""
|
631 |
+
|
632 |
+
#. translators: Publish box date format, see http://php.net/date
|
633 |
+
#: includes/admin/post-type/schema-post-type.php:103
|
634 |
+
msgid "M j, Y @ G:i"
|
635 |
+
msgstr ""
|
636 |
+
|
637 |
+
#: includes/admin/post-type/schema-post-type.php:101
|
638 |
+
msgid "Schema scheduled for: <strong>%1$s</strong>."
|
639 |
+
msgstr ""
|
640 |
+
|
641 |
+
#: includes/admin/post-type/schema-post-type.php:99
|
642 |
+
msgid "Schema added."
|
643 |
+
msgstr ""
|
644 |
+
|
645 |
+
#: includes/admin/post-type/schema-post-type.php:97
|
646 |
+
msgid "Schema created."
|
647 |
+
msgstr ""
|
648 |
+
|
649 |
+
#. translators: %s: date and time of the revision
|
650 |
+
#: includes/admin/post-type/schema-post-type.php:96
|
651 |
+
msgid "Schema restored to revision from %s"
|
652 |
+
msgstr ""
|
653 |
+
|
654 |
+
#: includes/admin/post-type/schema-post-type.php:94
|
655 |
+
#: includes/admin/post-type/schema-post-type.php:98
|
656 |
+
msgid "Schema saved."
|
657 |
+
msgstr ""
|
658 |
+
|
659 |
+
#: includes/admin/post-type/schema-post-type.php:93
|
660 |
+
msgid "Custom field deleted."
|
661 |
+
msgstr ""
|
662 |
+
|
663 |
+
#: includes/admin/post-type/schema-post-type.php:92
|
664 |
+
msgid "Custom field updated."
|
665 |
+
msgstr ""
|
666 |
+
|
667 |
+
#: includes/admin/post-type/schema-post-type.php:91
|
668 |
+
msgid "Schema updated."
|
669 |
+
msgstr ""
|
670 |
+
|
671 |
+
#: includes/admin/post-type/schema-post-type.php:43
|
672 |
+
msgid "Description."
|
673 |
+
msgstr ""
|
674 |
+
|
675 |
+
#: includes/admin/post-type/schema-post-type.php:38
|
676 |
+
msgid "No schema found in Trash."
|
677 |
+
msgstr ""
|
678 |
+
|
679 |
+
#: includes/admin/post-type/schema-post-type.php:37
|
680 |
+
msgid "No schema found."
|
681 |
+
msgstr ""
|
682 |
+
|
683 |
+
#: includes/admin/post-type/schema-post-type.php:36
|
684 |
+
msgid "Parent Schemas:"
|
685 |
+
msgstr ""
|
686 |
+
|
687 |
+
#: includes/admin/post-type/schema-post-type.php:35
|
688 |
+
msgid "Search Schemas"
|
689 |
+
msgstr ""
|
690 |
+
|
691 |
+
#: includes/admin/post-type/schema-post-type.php:34
|
692 |
+
msgid "All Schemas"
|
693 |
+
msgstr "Alle Schemas"
|
694 |
+
|
695 |
+
#: includes/admin/post-type/schema-post-type.php:33
|
696 |
+
msgid "View Schema"
|
697 |
+
msgstr "Schema anzeigen"
|
698 |
+
|
699 |
+
#: includes/admin/post-type/schema-post-type.php:32
|
700 |
+
msgid "Edit Schema"
|
701 |
+
msgstr "Schema bearbeiten"
|
702 |
+
|
703 |
+
#: includes/admin/post-type/schema-post-type.php:31
|
704 |
+
msgid "New Schema"
|
705 |
+
msgstr "Neues Schema"
|
706 |
+
|
707 |
+
#: includes/admin/post-type/schema-post-type.php:30
|
708 |
+
msgid "Add New Schema"
|
709 |
+
msgstr "Neues Schema hinzufügen"
|
710 |
+
|
711 |
+
#: includes/admin/post-type/schema-post-type.php:29
|
712 |
+
msgctxt "schema"
|
713 |
+
msgid "Add New"
|
714 |
+
msgstr ""
|
715 |
+
|
716 |
+
#: includes/admin/post-type/schema-post-type.php:28
|
717 |
+
msgctxt "add new on admin bar"
|
718 |
+
msgid "Schema"
|
719 |
+
msgstr "Schema"
|
720 |
+
|
721 |
+
#: includes/admin/post-type/schema-post-type.php:27
|
722 |
+
msgctxt "admin menu"
|
723 |
+
msgid "Schema"
|
724 |
+
msgstr "Schema"
|
725 |
+
|
726 |
+
#: includes/admin/post-type/schema-post-type.php:26
|
727 |
+
msgctxt "post type singular name"
|
728 |
+
msgid "Schema"
|
729 |
+
msgstr "Schema"
|
730 |
+
|
731 |
+
#: includes/admin/post-type/schema-post-type.php:25
|
732 |
+
msgctxt "post type general name"
|
733 |
+
msgid "Schema"
|
734 |
+
msgstr "Schema"
|
735 |
+
|
736 |
+
#: includes/admin/post-type/schema-columns.php:51
|
737 |
+
msgid "Content"
|
738 |
+
msgstr ""
|
739 |
+
|
740 |
+
#: includes/admin/post-type/schema-columns.php:46
|
741 |
+
#: includes/admin/post-type/schema-columns.php:58
|
742 |
+
msgid "-"
|
743 |
+
msgstr ""
|
744 |
+
|
745 |
+
#: includes/admin/post-type/schema-columns.php:39
|
746 |
+
msgid "Post Type"
|
747 |
+
msgstr ""
|
748 |
+
|
749 |
+
#: includes/admin/post-type/schema-columns.php:34
|
750 |
+
msgid "Not set!"
|
751 |
+
msgstr ""
|
752 |
+
|
753 |
+
#: includes/admin/post-type/schema-columns.php:27
|
754 |
+
msgid "Schema Type"
|
755 |
+
msgstr "Schema-Typ"
|
756 |
+
|
757 |
+
#: includes/admin/meta.php:274
|
758 |
+
msgid "Post Meta"
|
759 |
+
msgstr ""
|
760 |
+
|
761 |
+
#: includes/admin/meta.php:273
|
762 |
+
msgid "Post Types"
|
763 |
+
msgstr ""
|
764 |
+
|
765 |
+
#: includes/admin/meta.php:248
|
766 |
+
msgid "Description for this field"
|
767 |
+
msgstr ""
|
768 |
+
|
769 |
+
#: includes/admin/meta.php:245
|
770 |
+
msgid "Field description"
|
771 |
+
msgstr ""
|
772 |
+
|
773 |
+
#: includes/admin/meta.php:236
|
774 |
+
msgid "Field label"
|
775 |
+
msgstr ""
|
776 |
+
|
777 |
+
#: includes/admin/meta.php:235 includes/admin/meta.php:240
|
778 |
+
msgid "Label"
|
779 |
+
msgstr ""
|
780 |
+
|
781 |
+
#: includes/admin/meta.php:227
|
782 |
+
msgid "Checkbox"
|
783 |
+
msgstr ""
|
784 |
+
|
785 |
+
#: includes/admin/meta.php:223
|
786 |
+
msgid "Text Area"
|
787 |
+
msgstr "Textfeld"
|
788 |
+
|
789 |
+
#: includes/admin/meta.php:219
|
790 |
+
msgid "Text"
|
791 |
+
msgstr "Text"
|
792 |
+
|
793 |
+
#: includes/admin/meta.php:216
|
794 |
+
msgid "Select Type"
|
795 |
+
msgstr "Typ wählen"
|
796 |
+
|
797 |
+
#: includes/admin/meta.php:213
|
798 |
+
msgid "Select field type"
|
799 |
+
msgstr "Feldtyp wählen"
|
800 |
+
|
801 |
+
#: includes/admin/meta.php:212
|
802 |
+
msgid "Type"
|
803 |
+
msgstr "Typ"
|
804 |
+
|
805 |
+
#: includes/admin/meta.php:201
|
806 |
+
msgid "Create Field?"
|
807 |
+
msgstr ""
|
808 |
+
|
809 |
+
#: includes/admin/meta.php:200
|
810 |
+
msgid "Create custom post meta field?"
|
811 |
+
msgstr ""
|
812 |
+
|
813 |
+
#: includes/admin/meta.php:199
|
814 |
+
msgid "Create?"
|
815 |
+
msgstr ""
|
816 |
+
|
817 |
+
#: includes/admin/meta.php:195
|
818 |
+
msgid "Meta Key Name"
|
819 |
+
msgstr ""
|
820 |
+
|
821 |
+
#: includes/admin/meta.php:191
|
822 |
+
msgid "Add post meta key name as source"
|
823 |
+
msgstr ""
|
824 |
+
|
825 |
+
#: includes/admin/meta.php:190
|
826 |
+
msgid "Key"
|
827 |
+
msgstr ""
|
828 |
+
|
829 |
+
#: includes/admin/meta.php:182 includes/admin/meta.php:244
|
830 |
+
#: includes/extensions/audio-object.php:121
|
831 |
+
#: includes/extensions/video-object.php:122
|
832 |
+
msgid "Description"
|
833 |
+
msgstr ""
|
834 |
+
|
835 |
+
#: includes/admin/meta.php:178
|
836 |
+
msgid "Headline"
|
837 |
+
msgstr ""
|
838 |
+
|
839 |
+
#: includes/admin/meta.php:174
|
840 |
+
msgid "Author Name"
|
841 |
+
msgstr ""
|
842 |
+
|
843 |
+
#: includes/admin/meta.php:171
|
844 |
+
msgid "Select Filter"
|
845 |
+
msgstr ""
|
846 |
+
|
847 |
+
#: includes/admin/meta.php:167
|
848 |
+
msgid "This is the filter name"
|
849 |
+
msgstr ""
|
850 |
+
|
851 |
+
#: includes/admin/meta.php:166
|
852 |
+
msgid "Filter"
|
853 |
+
msgstr ""
|
854 |
+
|
855 |
+
#: includes/admin/meta.php:155
|
856 |
+
msgid "This feature allow you to override the schema.org markups output generated by the Schema plugin."
|
857 |
+
msgstr ""
|
858 |
+
|
859 |
+
#: includes/admin/meta.php:154
|
860 |
+
msgid "This is where you can define a source for schema.org markup fields to override its output. Select a filter name, then define post meta key name to pull data from, or tick the check box to automatically create a new custom post meta field to insert values manually when editing posts."
|
861 |
+
msgstr ""
|
862 |
+
|
863 |
+
#: includes/admin/meta.php:145
|
864 |
+
msgid "This field will allow you to override the Schema post meta box title, default: Schema"
|
865 |
+
msgstr ""
|
866 |
+
|
867 |
+
#: includes/admin/meta.php:144
|
868 |
+
msgid "Post meta box title, default: Schema"
|
869 |
+
msgstr ""
|
870 |
+
|
871 |
+
#: includes/admin/meta.php:143 includes/extensions/audio-object.php:100
|
872 |
+
#: includes/extensions/video-object.php:101
|
873 |
+
msgid "Title"
|
874 |
+
msgstr "Titel"
|
875 |
+
|
876 |
+
#: includes/admin/meta.php:129
|
877 |
+
msgid "Enabled on specific custom post types"
|
878 |
+
msgstr ""
|
879 |
+
|
880 |
+
#: includes/admin/meta.php:88
|
881 |
+
msgid "It is recommended to set type BlogPosting for posts, and leave empty or set to General for page post type"
|
882 |
+
msgstr ""
|
883 |
+
|
884 |
+
#: includes/admin/meta.php:87
|
885 |
+
msgid "Select more specific article type"
|
886 |
+
msgstr ""
|
887 |
+
|
888 |
+
#: includes/admin/meta.php:86
|
889 |
+
msgid "Article Type"
|
890 |
+
msgstr ""
|
891 |
+
|
892 |
+
#: includes/admin/meta.php:46 includes/admin/meta.php:72
|
893 |
+
msgid "Enable post meta box?"
|
894 |
+
msgstr ""
|
895 |
+
|
896 |
+
#: includes/admin/meta.php:45 includes/admin/meta.php:71
|
897 |
+
msgid "Enable custom post meta box"
|
898 |
+
msgstr ""
|
899 |
+
|
900 |
+
#: includes/admin/meta.php:44 includes/admin/meta.php:70
|
901 |
+
msgid "Post meta"
|
902 |
+
msgstr ""
|
903 |
+
|
904 |
+
#: includes/admin/meta.php:32 includes/admin/meta.php:57
|
905 |
+
msgid "Select Schema type which describes your content best"
|
906 |
+
msgstr ""
|
907 |
+
|
908 |
+
#: includes/admin/meta.php:31 includes/admin/meta.php:56
|
909 |
+
msgid "Schema Markup Type"
|
910 |
+
msgstr ""
|
911 |
+
|
912 |
+
#: includes/admin/meta-tax.php:44 includes/extensions/sameAs.php:40
|
913 |
+
msgid "URL of a reference Web page that unambiguously indicates the item's identity. E.g. the URL of the item's Wikipedia page, Freebase page, or official website."
|
914 |
+
msgstr ""
|
915 |
+
|
916 |
+
#: includes/admin/meta-tax.php:44
|
917 |
+
msgid "sameAs "
|
918 |
+
msgstr ""
|
919 |
+
|
920 |
+
#: includes/admin/meta-tax/class-usage-demo.php:83
|
921 |
+
msgid "This is a Repeater Block"
|
922 |
+
msgstr ""
|
923 |
+
|
924 |
+
#: includes/admin/meta-tax/class-usage-demo.php:67
|
925 |
+
msgid "My Posts "
|
926 |
+
msgstr ""
|
927 |
+
|
928 |
+
#: includes/admin/meta-tax/class-usage-demo.php:65
|
929 |
+
msgid "My Taxonomy "
|
930 |
+
msgstr ""
|
931 |
+
|
932 |
+
#: includes/admin/meta-tax/class-usage-demo.php:63
|
933 |
+
msgid "My wysiwyg Editor "
|
934 |
+
msgstr ""
|
935 |
+
|
936 |
+
#: includes/admin/meta-tax/class-usage-demo.php:61
|
937 |
+
msgid "My File "
|
938 |
+
msgstr ""
|
939 |
+
|
940 |
+
#: includes/admin/meta-tax/class-usage-demo.php:59
|
941 |
+
#: includes/admin/meta-tax/class-usage-demo.php:77
|
942 |
+
msgid "My Image "
|
943 |
+
msgstr ""
|
944 |
+
|
945 |
+
#: includes/admin/meta-tax/class-usage-demo.php:57
|
946 |
+
msgid "My Color "
|
947 |
+
msgstr ""
|
948 |
+
|
949 |
+
#: includes/admin/meta-tax/class-usage-demo.php:55
|
950 |
+
msgid "My Time "
|
951 |
+
msgstr ""
|
952 |
+
|
953 |
+
#: includes/admin/meta-tax/class-usage-demo.php:53
|
954 |
+
msgid "My Date "
|
955 |
+
msgstr ""
|
956 |
+
|
957 |
+
#: includes/admin/meta-tax/class-usage-demo.php:51
|
958 |
+
msgid "My Radio Filed"
|
959 |
+
msgstr ""
|
960 |
+
|
961 |
+
#: includes/admin/meta-tax/class-usage-demo.php:49
|
962 |
+
msgid "My select "
|
963 |
+
msgstr ""
|
964 |
+
|
965 |
+
#: includes/admin/meta-tax/class-usage-demo.php:47
|
966 |
+
#: includes/admin/meta-tax/class-usage-demo.php:76
|
967 |
+
msgid "My Checkbox "
|
968 |
+
msgstr ""
|
969 |
+
|
970 |
+
#: includes/admin/meta-tax/class-usage-demo.php:45
|
971 |
+
#: includes/admin/meta-tax/class-usage-demo.php:75
|
972 |
+
msgid "My Textarea "
|
973 |
+
msgstr ""
|
974 |
+
|
975 |
+
#: includes/admin/meta-tax/class-usage-demo.php:43
|
976 |
+
#: includes/admin/meta-tax/class-usage-demo.php:74
|
977 |
+
msgid "My Text "
|
978 |
+
msgstr ""
|
979 |
+
|
980 |
+
#: includes/admin/meta-tax/class-meta-tax.php:727
|
981 |
+
msgid "Upload Image"
|
982 |
+
msgstr "Bild hochladen"
|
983 |
+
|
984 |
+
#: includes/admin/meta-tax/class-meta-tax.php:725
|
985 |
+
msgid "Remove Image"
|
986 |
+
msgstr ""
|
987 |
+
|
988 |
+
#: includes/admin/meta-tax/class-meta-tax.php:392
|
989 |
+
msgid "Add"
|
990 |
+
msgstr "Hinzufügen"
|
991 |
+
|
992 |
+
#: includes/admin/meta-exclude.php:69
|
993 |
+
msgid "Schema Exclude"
|
994 |
+
msgstr ""
|
995 |
+
|
996 |
+
#: includes/admin/meta-exclude.php:37
|
997 |
+
msgid "Tick this checkbox to turn off Schema output on this entry."
|
998 |
+
msgstr ""
|
999 |
+
|
1000 |
+
#: includes/admin/meta-exclude.php:36
|
1001 |
+
msgid "Turn Schema OFF"
|
1002 |
+
msgstr ""
|
1003 |
+
|
1004 |
+
#: includes/admin/meta/class-meta.php:345 includes/admin/meta.php:153
|
1005 |
+
msgid "Fields"
|
1006 |
+
msgstr ""
|
1007 |
+
|
1008 |
+
#: includes/admin/meta/class-meta.php:64
|
1009 |
+
#: includes/admin/settings/contextual-help.php:62
|
1010 |
+
#: includes/admin/settings/register-settings.php:760
|
1011 |
+
msgid "Advanced"
|
1012 |
+
msgstr ""
|
1013 |
+
|
1014 |
+
#: includes/admin/extensions.php:129
|
1015 |
+
msgid "There was an error retrieving the extensions list from the server. Please try again later."
|
1016 |
+
msgstr ""
|
1017 |
+
|
1018 |
+
#: includes/admin/extensions.php:118
|
1019 |
+
msgid "Get this Extension"
|
1020 |
+
msgstr ""
|
1021 |
+
|
1022 |
+
#: includes/admin/extensions.php:56
|
1023 |
+
msgid "Our official free extensions are available to all license holders!"
|
1024 |
+
msgstr "Unsere kostenlosen, offiziellen Erweiterungen sind für alle Lizenz-Inhaber verfügbar!"
|
1025 |
+
|
1026 |
+
#: includes/admin/extensions.php:54
|
1027 |
+
msgid "If you have a Personal or Plus license, you can easily upgrade from your account page to <a href=\"%s\">get access to all of these extensions</a>!"
|
1028 |
+
msgstr "Wenn Sie eine Personal- oder Plus-Lizenz besitzen, können Sie sie einfach in Ihrem Kundenkonto erweitern, <a href=\"%s\">um Zugriff auf diese Erweiterungen zu erhalten</a>!"
|
1029 |
+
|
1030 |
+
#: includes/admin/extensions.php:53
|
1031 |
+
msgid "Pro Extensions are only available with a Professional or Ultimate license. If you already have one of these licenses, simply <a href=\"%s\">log in to your account</a> to download any of these extensions."
|
1032 |
+
msgstr ""
|
1033 |
+
|
1034 |
+
#: includes/admin/extensions.php:46
|
1035 |
+
msgid "These extensions <em><strong>add functionality</strong></em> to your Schema-powered site."
|
1036 |
+
msgstr ""
|
1037 |
+
|
1038 |
+
#: includes/admin/extensions.php:43 includes/admin/extensions.php:61
|
1039 |
+
msgid "Browse all extensions"
|
1040 |
+
msgstr "Alle Erweiterungen durchsuchen"
|
1041 |
+
|
1042 |
+
#: includes/admin/extensions.php:41
|
1043 |
+
msgid "Extensions for Schema"
|
1044 |
+
msgstr ""
|
1045 |
+
|
1046 |
+
#: includes/admin/extensions.php:32
|
1047 |
+
msgid "Official Free"
|
1048 |
+
msgstr ""
|
1049 |
+
|
1050 |
+
#: includes/admin/extensions.php:31
|
1051 |
+
msgid "Pro"
|
1052 |
+
msgstr ""
|
1053 |
+
|
1054 |
+
#: includes/admin/class-welcome.php:421
|
1055 |
+
msgid "View %s"
|
1056 |
+
msgstr "%s ansehen"
|
1057 |
+
|
1058 |
+
#: includes/admin/class-welcome.php:394
|
1059 |
+
msgid "Here, we will be listing some of the faces that have helped build Schema."
|
1060 |
+
msgstr ""
|
1061 |
+
|
1062 |
+
#: includes/admin/class-welcome.php:389
|
1063 |
+
msgid "Thank you for updating to the latest version!"
|
1064 |
+
msgstr "Danke, dass Sie auf die neueste Version aktualisiert haben!"
|
1065 |
+
|
1066 |
+
#: includes/admin/class-welcome.php:370
|
1067 |
+
msgid "We do our best to provide support we can. If you encounter a problem, report it to <a href=\"https://wordpress.org/support/plugin/schema\">support</a>."
|
1068 |
+
msgstr ""
|
1069 |
+
|
1070 |
+
#: includes/admin/class-welcome.php:369
|
1071 |
+
msgid "Support"
|
1072 |
+
msgstr ""
|
1073 |
+
|
1074 |
+
#: includes/admin/class-welcome.php:365
|
1075 |
+
msgid "Docs are on its way! We will update <a href=\"http://schema.press/\">schema.press</a> site with plugin documentation soon."
|
1076 |
+
msgstr ""
|
1077 |
+
|
1078 |
+
#: includes/admin/class-welcome.php:364
|
1079 |
+
msgid "Documentation"
|
1080 |
+
msgstr ""
|
1081 |
+
|
1082 |
+
#: includes/admin/class-welcome.php:361
|
1083 |
+
msgid "Need Help?"
|
1084 |
+
msgstr ""
|
1085 |
+
|
1086 |
+
#: includes/admin/class-welcome.php:350
|
1087 |
+
msgid "Structured Data helps search engines to understand what the content is specifically about. Moreover, structured data will allow users to see the value of a website before they visit, via rich snippets, which are rich data that are displayed in the SERP’s."
|
1088 |
+
msgstr ""
|
1089 |
+
|
1090 |
+
#: includes/admin/class-welcome.php:349
|
1091 |
+
msgid "Structured Data can help you to send the right signals to search engines about your business and content."
|
1092 |
+
msgstr ""
|
1093 |
+
|
1094 |
+
#: includes/admin/class-welcome.php:348
|
1095 |
+
msgid "Why is Structured Data so Important?"
|
1096 |
+
msgstr "Warum sind strukturierte Daten so wichtig?"
|
1097 |
+
|
1098 |
+
#: includes/admin/class-welcome.php:346
|
1099 |
+
msgid "Schema markup is code (semantic vocabulary) that you put on your website to help the search engines return more informative results for users. So, Schema is not just for SEO reasons, it’s also for the benefit of the searcher."
|
1100 |
+
msgstr ""
|
1101 |
+
|
1102 |
+
#: includes/admin/class-welcome.php:345
|
1103 |
+
msgid "What is Schema markup?"
|
1104 |
+
msgstr ""
|
1105 |
+
|
1106 |
+
#: includes/admin/class-welcome.php:340
|
1107 |
+
msgid "Overview"
|
1108 |
+
msgstr "Übersicht"
|
1109 |
+
|
1110 |
+
#: includes/admin/class-welcome.php:337
|
1111 |
+
msgid "Hang on! We are going to add more schema integration and cool features to Schema plugin."
|
1112 |
+
msgstr ""
|
1113 |
+
|
1114 |
+
#: includes/admin/class-welcome.php:332
|
1115 |
+
msgid "Thank you for installing Schema. The best schema.org plugin for WordPress."
|
1116 |
+
msgstr ""
|
1117 |
+
|
1118 |
+
#: includes/admin/class-welcome.php:307
|
1119 |
+
msgid "Supported oEmbed audios: SoundCloud, and Mixcloud."
|
1120 |
+
msgstr ""
|
1121 |
+
|
1122 |
+
#: includes/admin/class-welcome.php:306
|
1123 |
+
msgid "Schema allow you to enable AudioObject markup automatically whenever oEmbed is called on your page."
|
1124 |
+
msgstr ""
|
1125 |
+
|
1126 |
+
#: includes/admin/class-welcome.php:305
|
1127 |
+
msgid "Automatically add AudioObject to oEmbed"
|
1128 |
+
msgstr ""
|
1129 |
+
|
1130 |
+
#: includes/admin/class-welcome.php:303
|
1131 |
+
msgid "Supported oEmbed videos: Dailymotion, TED, Vimeo, VideoPress, Vine, YouTube."
|
1132 |
+
msgstr ""
|
1133 |
+
|
1134 |
+
#: includes/admin/class-welcome.php:302
|
1135 |
+
msgid "Schema allow you to enable VideoObject markup automatically whenever oEmbed is called on your page."
|
1136 |
+
msgstr ""
|
1137 |
+
|
1138 |
+
#: includes/admin/class-welcome.php:301
|
1139 |
+
msgid "Automatically add VideoObject to oEmbed"
|
1140 |
+
msgstr ""
|
1141 |
+
|
1142 |
+
#: includes/admin/class-welcome.php:297
|
1143 |
+
msgid "Also, you can set Schema to work on specific post categories."
|
1144 |
+
msgstr ""
|
1145 |
+
|
1146 |
+
#: includes/admin/class-welcome.php:296
|
1147 |
+
msgid "Now, you can create new schema.org markup types and enable them on post type bases."
|
1148 |
+
msgstr ""
|
1149 |
+
|
1150 |
+
#: includes/admin/class-welcome.php:295
|
1151 |
+
msgid "Schema Post Type"
|
1152 |
+
msgstr ""
|
1153 |
+
|
1154 |
+
#: includes/admin/class-welcome.php:289
|
1155 |
+
msgid "If Divi theme is active, Schema plugin will clear shortcodes to be able to output the content description."
|
1156 |
+
msgstr ""
|
1157 |
+
|
1158 |
+
#: includes/admin/class-welcome.php:288
|
1159 |
+
msgid "Is Divi your Theme?"
|
1160 |
+
msgstr ""
|
1161 |
+
|
1162 |
+
#: includes/admin/class-welcome.php:286
|
1163 |
+
msgid "No problem! The Schema plugin will automatically indicate that and show respect for SEO Framework."
|
1164 |
+
msgstr ""
|
1165 |
+
|
1166 |
+
#: includes/admin/class-welcome.php:285
|
1167 |
+
msgid "The SEO Framework plugin is active?"
|
1168 |
+
msgstr ""
|
1169 |
+
|
1170 |
+
#: includes/admin/class-welcome.php:283
|
1171 |
+
msgid "Using Thesis? The Schema plugin will automatically indicate and use Thesis Post Image is are presented."
|
1172 |
+
msgstr ""
|
1173 |
+
|
1174 |
+
#: includes/admin/class-welcome.php:282
|
1175 |
+
msgid "Uses Thesis Theme 2.x Post Image"
|
1176 |
+
msgstr ""
|
1177 |
+
|
1178 |
+
#: includes/admin/class-welcome.php:281
|
1179 |
+
msgid "Using Genesis Framework? The Schema plugin will automatically indicate that and correct Genesis Schema output."
|
1180 |
+
msgstr ""
|
1181 |
+
|
1182 |
+
#: includes/admin/class-welcome.php:280
|
1183 |
+
msgid "Correct Genesis Schema Markup"
|
1184 |
+
msgstr ""
|
1185 |
+
|
1186 |
+
#: includes/admin/class-welcome.php:278
|
1187 |
+
msgid "If you are using the WPRichSnippets plugin, Schema will behave!"
|
1188 |
+
msgstr ""
|
1189 |
+
|
1190 |
+
#: includes/admin/class-welcome.php:277
|
1191 |
+
msgid "WPRichSnippets plugin"
|
1192 |
+
msgstr ""
|
1193 |
+
|
1194 |
+
#: includes/admin/class-welcome.php:275
|
1195 |
+
msgid "If you are using the AMP plugin, Schema got you covered!"
|
1196 |
+
msgstr ""
|
1197 |
+
|
1198 |
+
#: includes/admin/class-welcome.php:274
|
1199 |
+
msgid "Hello AMP!"
|
1200 |
+
msgstr "Hallo AMP!"
|
1201 |
+
|
1202 |
+
#: includes/admin/class-welcome.php:272
|
1203 |
+
msgid "Now Schema plugin plays nicely with Yoast SEO plugin, you can have both plugins active with no conflicts."
|
1204 |
+
msgstr ""
|
1205 |
+
|
1206 |
+
#: includes/admin/class-welcome.php:271
|
1207 |
+
msgid "Play nicely with Yoast SEO"
|
1208 |
+
msgstr "Verträgt sich gut mit Yoast SEO"
|
1209 |
+
|
1210 |
+
#: includes/admin/class-welcome.php:269
|
1211 |
+
msgid "Schema plays nicely and support themes mentioned below."
|
1212 |
+
msgstr ""
|
1213 |
+
|
1214 |
+
#: includes/admin/class-welcome.php:268
|
1215 |
+
msgid "Integration with Themes and other Plugins"
|
1216 |
+
msgstr ""
|
1217 |
+
|
1218 |
+
#: includes/admin/class-welcome.php:264 includes/admin/class-welcome.php:353
|
1219 |
+
msgid "Go To Schema Settings"
|
1220 |
+
msgstr ""
|
1221 |
+
|
1222 |
+
#: includes/admin/class-welcome.php:260
|
1223 |
+
msgid "Maybe coming soon!"
|
1224 |
+
msgstr ""
|
1225 |
+
|
1226 |
+
#: includes/admin/class-welcome.php:258
|
1227 |
+
msgid "New Schema Type?"
|
1228 |
+
msgstr ""
|
1229 |
+
|
1230 |
+
#: includes/admin/class-welcome.php:254
|
1231 |
+
msgid "author archive"
|
1232 |
+
msgstr ""
|
1233 |
+
|
1234 |
+
#: includes/admin/class-welcome.php:254
|
1235 |
+
msgid "Person"
|
1236 |
+
msgstr ""
|
1237 |
+
|
1238 |
+
#: includes/admin/class-welcome.php:250
|
1239 |
+
msgid "for the contact page"
|
1240 |
+
msgstr ""
|
1241 |
+
|
1242 |
+
#: includes/admin/class-welcome.php:250
|
1243 |
+
msgid "ContactPage"
|
1244 |
+
msgstr ""
|
1245 |
+
|
1246 |
+
#: includes/admin/class-welcome.php:246
|
1247 |
+
msgid "for the about page"
|
1248 |
+
msgstr ""
|
1249 |
+
|
1250 |
+
#: includes/admin/class-welcome.php:246
|
1251 |
+
msgid "AboutPage"
|
1252 |
+
msgstr ""
|
1253 |
+
|
1254 |
+
#: includes/admin/class-welcome.php:242
|
1255 |
+
msgid "for Tags"
|
1256 |
+
msgstr ""
|
1257 |
+
|
1258 |
+
#: includes/admin/class-welcome.php:238
|
1259 |
+
msgid "for Categories"
|
1260 |
+
msgstr ""
|
1261 |
+
|
1262 |
+
#: includes/admin/class-welcome.php:238 includes/admin/class-welcome.php:242
|
1263 |
+
msgid "CollectionPage"
|
1264 |
+
msgstr ""
|
1265 |
+
|
1266 |
+
#: includes/admin/class-welcome.php:234
|
1267 |
+
msgid "for Breadcrumbs"
|
1268 |
+
msgstr ""
|
1269 |
+
|
1270 |
+
#: includes/admin/class-welcome.php:234
|
1271 |
+
msgid "BreadcrumbList"
|
1272 |
+
msgstr ""
|
1273 |
+
|
1274 |
+
#: includes/admin/class-welcome.php:230
|
1275 |
+
msgid "for Web Page Footer"
|
1276 |
+
msgstr ""
|
1277 |
+
|
1278 |
+
#: includes/admin/class-welcome.php:230
|
1279 |
+
msgid "WPFooter"
|
1280 |
+
msgstr ""
|
1281 |
+
|
1282 |
+
#: includes/admin/class-welcome.php:226
|
1283 |
+
msgid "for Web Page Header"
|
1284 |
+
msgstr ""
|
1285 |
+
|
1286 |
+
#: includes/admin/class-welcome.php:226
|
1287 |
+
msgid "WPHeader"
|
1288 |
+
msgstr ""
|
1289 |
+
|
1290 |
+
#: includes/admin/class-welcome.php:222
|
1291 |
+
msgid "for Blog posts list page"
|
1292 |
+
msgstr ""
|
1293 |
+
|
1294 |
+
#: includes/admin/class-welcome.php:222
|
1295 |
+
msgid "Blog"
|
1296 |
+
msgstr ""
|
1297 |
+
|
1298 |
+
#: includes/admin/class-welcome.php:217
|
1299 |
+
msgid "TechArticle"
|
1300 |
+
msgstr ""
|
1301 |
+
|
1302 |
+
#: includes/admin/class-welcome.php:216
|
1303 |
+
msgid "ScholarlyArticle"
|
1304 |
+
msgstr ""
|
1305 |
+
|
1306 |
+
#: includes/admin/class-welcome.php:215
|
1307 |
+
msgid "Report"
|
1308 |
+
msgstr ""
|
1309 |
+
|
1310 |
+
#: includes/admin/class-welcome.php:214
|
1311 |
+
msgid "NewsArticle"
|
1312 |
+
msgstr ""
|
1313 |
+
|
1314 |
+
#: includes/admin/class-welcome.php:213 includes/install.php:58
|
1315 |
+
msgid "BlogPosting"
|
1316 |
+
msgstr ""
|
1317 |
+
|
1318 |
+
#: includes/admin/class-welcome.php:210 includes/admin/meta.php:37
|
1319 |
+
#: includes/admin/meta.php:38 includes/admin/meta.php:62
|
1320 |
+
#: includes/admin/meta.php:63 includes/admin/meta.php:272
|
1321 |
+
#: includes/install.php:57 includes/install.php:99
|
1322 |
+
msgid "Article"
|
1323 |
+
msgstr ""
|
1324 |
+
|
1325 |
+
#: includes/admin/class-welcome.php:208
|
1326 |
+
msgid "Now, Schema plugin supports more schema.org types."
|
1327 |
+
msgstr ""
|
1328 |
+
|
1329 |
+
#: includes/admin/class-welcome.php:207
|
1330 |
+
msgid "Support More Schema Types"
|
1331 |
+
msgstr ""
|
1332 |
+
|
1333 |
+
#: includes/admin/class-welcome.php:200
|
1334 |
+
#: includes/admin/settings/display-settings.php:86
|
1335 |
+
msgid "Quick Configuration Wizard"
|
1336 |
+
msgstr ""
|
1337 |
+
|
1338 |
+
#: includes/admin/class-welcome.php:199
|
1339 |
+
msgid "Plugin Settings"
|
1340 |
+
msgstr ""
|
1341 |
+
|
1342 |
+
#: includes/admin/class-welcome.php:197
|
1343 |
+
msgid "Get started quickly with the Schema configuration wizard!"
|
1344 |
+
msgstr ""
|
1345 |
+
|
1346 |
+
#: includes/admin/class-welcome.php:196
|
1347 |
+
msgid "First-time Schema configuration!"
|
1348 |
+
msgstr ""
|
1349 |
+
|
1350 |
+
#: includes/admin/class-welcome.php:188 includes/admin/class-welcome.php:333
|
1351 |
+
#: includes/admin/class-welcome.php:390
|
1352 |
+
msgid "Version %s"
|
1353 |
+
msgstr ""
|
1354 |
+
|
1355 |
+
#: includes/admin/class-welcome.php:185
|
1356 |
+
msgid "Thank you for installing Schema. The best Schema.org plugin for WordPress."
|
1357 |
+
msgstr ""
|
1358 |
+
|
1359 |
+
#: includes/admin/class-welcome.php:184 includes/admin/class-welcome.php:331
|
1360 |
+
#: includes/admin/class-welcome.php:388
|
1361 |
+
msgid "Welcome to Schema v%s"
|
1362 |
+
msgstr ""
|
1363 |
+
|
1364 |
+
#: includes/admin/class-welcome.php:167
|
1365 |
+
msgid "Credits"
|
1366 |
+
msgstr ""
|
1367 |
+
|
1368 |
+
#: includes/admin/class-welcome.php:163
|
1369 |
+
msgid "Getting Started"
|
1370 |
+
msgstr ""
|
1371 |
+
|
1372 |
+
#: includes/admin/class-welcome.php:160
|
1373 |
+
msgid "What's New"
|
1374 |
+
msgstr ""
|
1375 |
+
|
1376 |
+
#: includes/admin/class-welcome.php:70 includes/admin/class-welcome.php:71
|
1377 |
+
msgid "The people that build Schema"
|
1378 |
+
msgstr ""
|
1379 |
+
|
1380 |
+
#: includes/admin/class-welcome.php:61 includes/admin/class-welcome.php:62
|
1381 |
+
msgid "Getting started with Schema"
|
1382 |
+
msgstr ""
|
1383 |
+
|
1384 |
+
#: includes/admin/class-welcome.php:52 includes/admin/class-welcome.php:53
|
1385 |
+
msgid "What's new in Schema"
|
1386 |
+
msgstr ""
|
1387 |
+
|
1388 |
+
#: includes/admin/class-setup-wizard.php:832
|
1389 |
+
msgid "Select Image"
|
1390 |
+
msgstr ""
|
1391 |
+
|
1392 |
+
#: includes/admin/class-setup-wizard.php:801
|
1393 |
+
#: includes/admin/meta/class-meta.php:42
|
1394 |
+
#: includes/admin/settings/register-settings.php:1378
|
1395 |
+
msgid "Select One"
|
1396 |
+
msgstr "Bitte auswählen"
|
1397 |
+
|
1398 |
+
#: includes/admin/class-setup-wizard.php:693
|
1399 |
+
msgid "Learn More"
|
1400 |
+
msgstr ""
|
1401 |
+
|
1402 |
+
#: includes/admin/class-setup-wizard.php:688
|
1403 |
+
msgid "Configure Your Schema Types!"
|
1404 |
+
msgstr ""
|
1405 |
+
|
1406 |
+
#: includes/admin/class-setup-wizard.php:686
|
1407 |
+
msgid "Next Step"
|
1408 |
+
msgstr ""
|
1409 |
+
|
1410 |
+
#: includes/admin/class-setup-wizard.php:682
|
1411 |
+
msgid "here"
|
1412 |
+
msgstr ""
|
1413 |
+
|
1414 |
+
#: includes/admin/class-setup-wizard.php:682
|
1415 |
+
msgid "You can change settings from"
|
1416 |
+
msgstr ""
|
1417 |
+
|
1418 |
+
#: includes/admin/class-setup-wizard.php:680
|
1419 |
+
msgid "Schema will now take care of all the needed technical optimization of your site."
|
1420 |
+
msgstr ""
|
1421 |
+
|
1422 |
+
#: includes/admin/class-setup-wizard.php:678
|
1423 |
+
msgid "You've done it!"
|
1424 |
+
msgstr ""
|
1425 |
+
|
1426 |
+
#: includes/admin/class-setup-wizard.php:655
|
1427 |
+
#: includes/admin/class-setup-wizard.php:658
|
1428 |
+
#: includes/admin/settings/register-settings.php:529
|
1429 |
+
msgid "AudioObject"
|
1430 |
+
msgstr ""
|
1431 |
+
|
1432 |
+
#: includes/admin/class-setup-wizard.php:646
|
1433 |
+
#: includes/admin/class-setup-wizard.php:649
|
1434 |
+
#: includes/admin/settings/register-settings.php:523
|
1435 |
+
msgid "VideoObject"
|
1436 |
+
msgstr ""
|
1437 |
+
|
1438 |
+
#: includes/admin/class-setup-wizard.php:637
|
1439 |
+
#: includes/admin/class-setup-wizard.php:640
|
1440 |
+
#: includes/admin/settings/register-settings.php:517
|
1441 |
+
msgid "Comments"
|
1442 |
+
msgstr ""
|
1443 |
+
|
1444 |
+
#: includes/admin/class-setup-wizard.php:628
|
1445 |
+
#: includes/admin/class-setup-wizard.php:631
|
1446 |
+
#: includes/admin/settings/register-settings.php:511
|
1447 |
+
msgid "Breadcrumbs"
|
1448 |
+
msgstr ""
|
1449 |
+
|
1450 |
+
#: includes/admin/class-setup-wizard.php:623
|
1451 |
+
#: includes/admin/class-setup-wizard.php:632
|
1452 |
+
#: includes/admin/class-setup-wizard.php:641
|
1453 |
+
#: includes/admin/class-setup-wizard.php:650
|
1454 |
+
#: includes/admin/class-setup-wizard.php:659
|
1455 |
+
#: includes/admin/settings/register-settings.php:506
|
1456 |
+
#: includes/admin/settings/register-settings.php:512
|
1457 |
+
#: includes/admin/settings/register-settings.php:518
|
1458 |
+
#: includes/admin/settings/register-settings.php:524
|
1459 |
+
#: includes/admin/settings/register-settings.php:530
|
1460 |
+
msgid "enable?"
|
1461 |
+
msgstr ""
|
1462 |
+
|
1463 |
+
#: includes/admin/class-setup-wizard.php:619
|
1464 |
+
#: includes/admin/class-setup-wizard.php:622
|
1465 |
+
#: includes/admin/settings/register-settings.php:505
|
1466 |
+
msgid "WPHeader and WPFooter"
|
1467 |
+
msgstr ""
|
1468 |
+
|
1469 |
+
#: includes/admin/class-setup-wizard.php:611
|
1470 |
+
#: includes/admin/settings/register-settings.php:267
|
1471 |
+
msgid "Publisher Logo should have a wide aspect ratio, not a square icon, it should be no wider than 600px, and no taller than 60px."
|
1472 |
+
msgstr ""
|
1473 |
+
|
1474 |
+
#: includes/admin/class-setup-wizard.php:605
|
1475 |
+
#: includes/admin/class-setup-wizard.php:610
|
1476 |
+
#: includes/admin/settings/register-settings.php:266
|
1477 |
+
msgid "Publisher Logo"
|
1478 |
+
msgstr ""
|
1479 |
+
|
1480 |
+
#: includes/admin/class-setup-wizard.php:595
|
1481 |
+
#: includes/admin/class-setup-wizard.php:598
|
1482 |
+
#: includes/admin/settings/register-settings.php:498
|
1483 |
+
msgid "Contact Page"
|
1484 |
+
msgstr ""
|
1485 |
+
|
1486 |
+
#: includes/admin/class-setup-wizard.php:585
|
1487 |
+
#: includes/admin/class-setup-wizard.php:588
|
1488 |
+
#: includes/admin/settings/register-settings.php:491
|
1489 |
+
msgid "About Page"
|
1490 |
+
msgstr ""
|
1491 |
+
|
1492 |
+
#: includes/admin/class-setup-wizard.php:580
|
1493 |
+
msgid "Automatically, add additional schema.org markups to your website content."
|
1494 |
+
msgstr ""
|
1495 |
+
|
1496 |
+
#: includes/admin/class-setup-wizard.php:578
|
1497 |
+
msgid "Mark Up Your Content"
|
1498 |
+
msgstr ""
|
1499 |
+
|
1500 |
+
#: includes/admin/class-setup-wizard.php:552
|
1501 |
+
#: includes/admin/class-setup-wizard.php:555
|
1502 |
+
#: includes/admin/settings/register-settings.php:411
|
1503 |
+
msgid "Tumblr"
|
1504 |
+
msgstr "Tumblr"
|
1505 |
+
|
1506 |
+
#: includes/admin/class-setup-wizard.php:540
|
1507 |
+
#: includes/admin/class-setup-wizard.php:543
|
1508 |
+
#: includes/admin/settings/register-settings.php:403
|
1509 |
+
msgid "SoundCloud"
|
1510 |
+
msgstr "SoundCloud"
|
1511 |
+
|
1512 |
+
#: includes/admin/class-setup-wizard.php:528
|
1513 |
+
#: includes/admin/class-setup-wizard.php:531
|
1514 |
+
#: includes/admin/settings/register-settings.php:395
|
1515 |
+
msgid "Pinterest"
|
1516 |
+
msgstr ""
|
1517 |
+
|
1518 |
+
#: includes/admin/class-setup-wizard.php:516
|
1519 |
+
#: includes/admin/class-setup-wizard.php:519
|
1520 |
+
#: includes/admin/settings/register-settings.php:387
|
1521 |
+
msgid "Myspace"
|
1522 |
+
msgstr ""
|
1523 |
+
|
1524 |
+
#: includes/admin/class-setup-wizard.php:507
|
1525 |
+
msgid "Linkedin"
|
1526 |
+
msgstr ""
|
1527 |
+
|
1528 |
+
#: includes/admin/class-setup-wizard.php:504
|
1529 |
+
#: includes/admin/settings/register-settings.php:380
|
1530 |
+
msgid "LinkedIn"
|
1531 |
+
msgstr ""
|
1532 |
+
|
1533 |
+
#: includes/admin/class-setup-wizard.php:492
|
1534 |
+
#: includes/admin/class-setup-wizard.php:495
|
1535 |
+
#: includes/admin/settings/register-settings.php:372
|
1536 |
+
msgid "YouTube"
|
1537 |
+
msgstr "YouTube"
|
1538 |
+
|
1539 |
+
#: includes/admin/class-setup-wizard.php:480
|
1540 |
+
#: includes/admin/class-setup-wizard.php:483
|
1541 |
+
#: includes/admin/settings/register-settings.php:364
|
1542 |
+
msgid "Instagram"
|
1543 |
+
msgstr ""
|
1544 |
+
|
1545 |
+
#: includes/admin/class-setup-wizard.php:468
|
1546 |
+
#: includes/admin/class-setup-wizard.php:471
|
1547 |
+
#: includes/admin/settings/register-settings.php:356
|
1548 |
+
msgid "Google+"
|
1549 |
+
msgstr ""
|
1550 |
+
|
1551 |
+
#: includes/admin/class-setup-wizard.php:456
|
1552 |
+
#: includes/admin/class-setup-wizard.php:459
|
1553 |
+
#: includes/admin/settings/register-settings.php:348
|
1554 |
+
msgid "Twitter"
|
1555 |
+
msgstr "Twitter"
|
1556 |
+
|
1557 |
+
#: includes/admin/class-setup-wizard.php:444
|
1558 |
+
#: includes/admin/class-setup-wizard.php:447
|
1559 |
+
#: includes/admin/settings/register-settings.php:340
|
1560 |
+
msgid "Facebook"
|
1561 |
+
msgstr ""
|
1562 |
+
|
1563 |
+
#: includes/admin/class-setup-wizard.php:439
|
1564 |
+
msgid "Knowledge panels prominently display your social profile information in some Google Search results."
|
1565 |
+
msgstr ""
|
1566 |
+
|
1567 |
+
#: includes/admin/class-setup-wizard.php:437
|
1568 |
+
#: includes/admin/settings/register-settings.php:335
|
1569 |
+
msgid "Provide your social profile information to a Google Knowledge panel."
|
1570 |
+
msgstr ""
|
1571 |
+
|
1572 |
+
#: includes/admin/class-setup-wizard.php:412
|
1573 |
+
#: includes/admin/class-setup-wizard.php:611
|
1574 |
+
#: includes/admin/settings/register-settings.php:267
|
1575 |
+
#: includes/admin/settings/register-settings.php:322
|
1576 |
+
msgid "Logo guidelines"
|
1577 |
+
msgstr ""
|
1578 |
+
|
1579 |
+
#: includes/admin/class-setup-wizard.php:412
|
1580 |
+
#: includes/admin/settings/register-settings.php:322
|
1581 |
+
msgid "Specify the image of your organization's logo to be used in Google Search results and in the Knowledge Graph.<br />Learn more about"
|
1582 |
+
msgstr ""
|
1583 |
+
|
1584 |
+
#: includes/admin/class-setup-wizard.php:411
|
1585 |
+
#: includes/admin/settings/register-settings.php:321
|
1586 |
+
msgid "Logo"
|
1587 |
+
msgstr ""
|
1588 |
+
|
1589 |
+
#: includes/admin/class-setup-wizard.php:406
|
1590 |
+
msgid "Organization Logo"
|
1591 |
+
msgstr "Unternehmenslogo"
|
1592 |
+
|
1593 |
+
#: includes/admin/class-setup-wizard.php:394
|
1594 |
+
#: includes/admin/class-setup-wizard.php:397
|
1595 |
+
#: includes/admin/post-type/schema-columns.php:19
|
1596 |
+
#: includes/admin/settings/register-settings.php:303
|
1597 |
+
msgid "Name"
|
1598 |
+
msgstr ""
|
1599 |
+
|
1600 |
+
#: includes/admin/class-setup-wizard.php:383
|
1601 |
+
msgid "Organization or Person?"
|
1602 |
+
msgstr ""
|
1603 |
+
|
1604 |
+
#: includes/admin/class-setup-wizard.php:380
|
1605 |
+
#: includes/admin/settings/register-settings.php:289
|
1606 |
+
msgid "This Website Represent"
|
1607 |
+
msgstr ""
|
1608 |
+
|
1609 |
+
#: includes/admin/class-setup-wizard.php:375
|
1610 |
+
#: includes/admin/settings/register-settings.php:283
|
1611 |
+
msgid "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."
|
1612 |
+
msgstr ""
|
1613 |
+
|
1614 |
+
#: includes/admin/class-setup-wizard.php:373
|
1615 |
+
msgid "Does your site represent a Person or Organization?"
|
1616 |
+
msgstr ""
|
1617 |
+
|
1618 |
+
#: includes/admin/class-setup-wizard.php:371
|
1619 |
+
#: includes/admin/settings/register-settings.php:282
|
1620 |
+
msgid "Person or Organization"
|
1621 |
+
msgstr ""
|
1622 |
+
|
1623 |
+
#: includes/admin/class-setup-wizard.php:359
|
1624 |
+
#: includes/admin/class-setup-wizard.php:422
|
1625 |
+
#: includes/admin/class-setup-wizard.php:566
|
1626 |
+
#: includes/admin/class-setup-wizard.php:666
|
1627 |
+
msgid "Skip this step"
|
1628 |
+
msgstr ""
|
1629 |
+
|
1630 |
+
#: includes/admin/class-setup-wizard.php:358
|
1631 |
+
#: includes/admin/class-setup-wizard.php:421
|
1632 |
+
#: includes/admin/class-setup-wizard.php:565
|
1633 |
+
#: includes/admin/class-setup-wizard.php:665
|
1634 |
+
msgid "Continue"
|
1635 |
+
msgstr ""
|
1636 |
+
|
1637 |
+
#: includes/admin/class-setup-wizard.php:325
|
1638 |
+
msgid "This information can help us to prioritize future additions to our plugin for specific types of sites"
|
1639 |
+
msgstr ""
|
1640 |
+
|
1641 |
+
#: includes/admin/class-setup-wizard.php:323
|
1642 |
+
msgid "What is your site about?"
|
1643 |
+
msgstr ""
|
1644 |
+
|
1645 |
+
#: includes/admin/class-setup-wizard.php:311
|
1646 |
+
msgid "Not right now"
|
1647 |
+
msgstr ""
|
1648 |
+
|
1649 |
+
#: includes/admin/class-setup-wizard.php:310
|
1650 |
+
msgid "Let's Go!"
|
1651 |
+
msgstr ""
|
1652 |
+
|
1653 |
+
#: includes/admin/class-setup-wizard.php:308
|
1654 |
+
msgid "No time right now? If you don’t want to go through the wizard, you can skip and return to the WordPress dashboard. Come back anytime if you change your mind!"
|
1655 |
+
msgstr ""
|
1656 |
+
|
1657 |
+
#: includes/admin/class-setup-wizard.php:307
|
1658 |
+
msgid "Thank you for choosing Schema to power your website! This quick setup wizard will help you configure the basic settings. <strong>It’s completely optional and shouldn’t take longer than two minutes.</strong>"
|
1659 |
+
msgstr ""
|
1660 |
+
|
1661 |
+
#: includes/admin/class-setup-wizard.php:306
|
1662 |
+
msgid "Welcome to Schema!"
|
1663 |
+
msgstr ""
|
1664 |
+
|
1665 |
+
#: includes/admin/class-setup-wizard.php:245
|
1666 |
+
msgid "Return to the WordPress Dashboard"
|
1667 |
+
msgstr ""
|
1668 |
+
|
1669 |
+
#: includes/admin/class-setup-wizard.php:178
|
1670 |
+
msgid "Schema › Setup Wizard"
|
1671 |
+
msgstr ""
|
1672 |
+
|
1673 |
+
#: includes/admin/class-setup-wizard.php:141
|
1674 |
+
msgid "Ready!"
|
1675 |
+
msgstr ""
|
1676 |
+
|
1677 |
+
#: includes/admin/class-setup-wizard.php:136
|
1678 |
+
#: includes/admin/settings/register-settings.php:751
|
1679 |
+
msgid "Schemas"
|
1680 |
+
msgstr ""
|
1681 |
+
|
1682 |
+
#: includes/admin/class-setup-wizard.php:131
|
1683 |
+
#: includes/admin/class-setup-wizard.php:435
|
1684 |
+
#: includes/admin/settings/register-settings.php:334
|
1685 |
+
#: includes/admin/settings/register-settings.php:814
|
1686 |
+
msgid "Social Profiles"
|
1687 |
+
msgstr "Soziale Profile"
|
1688 |
+
|
1689 |
+
#: includes/admin/class-setup-wizard.php:126
|
1690 |
+
#: includes/admin/class-welcome.php:212
|
1691 |
+
#: includes/admin/settings/contextual-help.php:38
|
1692 |
+
#: includes/admin/settings/register-settings.php:749
|
1693 |
+
msgid "General"
|
1694 |
+
msgstr "Allgemein"
|
1695 |
+
|
1696 |
+
#: includes/admin/class-setup-wizard.php:121
|
1697 |
+
#: includes/admin/class-setup-wizard.php:321
|
1698 |
+
#: includes/admin/class-setup-wizard.php:333
|
1699 |
+
#: includes/admin/settings/register-settings.php:241
|
1700 |
+
msgid "Site Type"
|
1701 |
+
msgstr ""
|
1702 |
+
|
1703 |
+
#: includes/admin/class-setup-wizard.php:116
|
1704 |
+
msgid "Introduction"
|
1705 |
+
msgstr ""
|
1706 |
+
|
1707 |
+
#: includes/admin/class-setup-wizard.php:82 includes/admin/scripts.php:25
|
1708 |
+
msgid "We are sorry but your browser is not compatible with this kind of file upload. Please upgrade your browser."
|
1709 |
+
msgstr ""
|
1710 |
+
|
1711 |
+
#: includes/admin/class-setup-wizard.php:80
|
1712 |
+
#: includes/admin/meta-tax/class-meta-tax.php:379
|
1713 |
+
#: includes/admin/meta-tax/class-meta-tax.php:426 includes/admin/scripts.php:23
|
1714 |
+
msgid "Remove"
|
1715 |
+
msgstr ""
|
1716 |
+
|
1717 |
+
#: includes/admin/class-setup-wizard.php:79 includes/admin/scripts.php:22
|
1718 |
+
msgid "Use This File"
|
1719 |
+
msgstr ""
|
1720 |
+
|
1721 |
+
#: includes/admin/class-setup-wizard.php:61
|
1722 |
+
msgctxt "enhanced select"
|
1723 |
+
msgid "Searching…"
|
1724 |
+
msgstr ""
|
1725 |
+
|
1726 |
+
#: includes/admin/class-setup-wizard.php:60
|
1727 |
+
msgctxt "enhanced select"
|
1728 |
+
msgid "Loading more results…"
|
1729 |
+
msgstr ""
|
1730 |
+
|
1731 |
+
#: includes/admin/class-setup-wizard.php:59
|
1732 |
+
msgctxt "enhanced select"
|
1733 |
+
msgid "You can only select %qty% items"
|
1734 |
+
msgstr ""
|
1735 |
+
|
1736 |
+
#: includes/admin/class-setup-wizard.php:58
|
1737 |
+
msgctxt "enhanced select"
|
1738 |
+
msgid "You can only select 1 item"
|
1739 |
+
msgstr ""
|
1740 |
+
|
1741 |
+
#: includes/admin/class-setup-wizard.php:57
|
1742 |
+
msgctxt "enhanced select"
|
1743 |
+
msgid "Please delete %qty% characters"
|
1744 |
+
msgstr ""
|
1745 |
+
|
1746 |
+
#: includes/admin/class-setup-wizard.php:56
|
1747 |
+
msgctxt "enhanced select"
|
1748 |
+
msgid "Please delete 1 character"
|
1749 |
+
msgstr ""
|
1750 |
+
|
1751 |
+
#: includes/admin/class-setup-wizard.php:55
|
1752 |
+
msgctxt "enhanced select"
|
1753 |
+
msgid "Please enter %qty% or more characters"
|
1754 |
+
msgstr ""
|
1755 |
+
|
1756 |
+
#: includes/admin/class-setup-wizard.php:54
|
1757 |
+
msgctxt "enhanced select"
|
1758 |
+
msgid "Please enter 1 or more characters"
|
1759 |
+
msgstr ""
|
1760 |
+
|
1761 |
+
#: includes/admin/class-setup-wizard.php:53
|
1762 |
+
msgctxt "enhanced select"
|
1763 |
+
msgid "Loading failed"
|
1764 |
+
msgstr ""
|
1765 |
+
|
1766 |
+
#: includes/admin/class-setup-wizard.php:52
|
1767 |
+
msgctxt "enhanced select"
|
1768 |
+
msgid "No matches found"
|
1769 |
+
msgstr ""
|
1770 |
+
|
1771 |
+
#: includes/admin/class-setup-wizard.php:51
|
1772 |
+
msgctxt "enhanced select"
|
1773 |
+
msgid "%qty% results are available, use up and down arrow keys to navigate."
|
1774 |
+
msgstr ""
|
1775 |
+
|
1776 |
+
#: includes/admin/class-setup-wizard.php:50
|
1777 |
+
msgctxt "enhanced select"
|
1778 |
+
msgid "One result is available, press enter to select it."
|
1779 |
+
msgstr ""
|
1780 |
+
|
1781 |
+
#: includes/admin/class-notices.php:50
|
1782 |
+
#: includes/admin/updater/class-license-handler.php:319
|
1783 |
+
#: includes/admin/updater/class-updater.php:402
|
1784 |
+
msgid "Error"
|
1785 |
+
msgstr "Fehler"
|
1786 |
+
|
1787 |
+
#: includes/admin/class-notices.php:50
|
1788 |
+
msgid "Security check failed"
|
1789 |
+
msgstr "Die Sicherheitsüberprüfung ist fehlgeschlagen"
|
1790 |
+
|
1791 |
+
#: includes/admin/class-notices.php:29
|
1792 |
+
msgid "Settings successfully imported"
|
1793 |
+
msgstr "Die Einstellungen wurden erfolgreich importiert"
|
1794 |
+
|
1795 |
+
#: includes/admin/class-notices.php:17
|
1796 |
+
#: includes/admin/settings/register-settings.php:645
|
1797 |
+
msgid "Settings updated."
|
1798 |
+
msgstr "Die Einstellungen wurden aktualisiert."
|
1799 |
+
|
1800 |
+
#: includes/admin/class-menu.php:78 includes/admin/class-menu.php:79
|
1801 |
+
msgid "About"
|
1802 |
+
msgstr "Über"
|
1803 |
+
|
1804 |
+
#: includes/admin/class-menu.php:66 includes/admin/class-menu.php:67
|
1805 |
+
#: includes/admin/settings/contextual-help.php:56
|
1806 |
+
#: includes/admin/settings/register-settings.php:754
|
1807 |
+
msgid "Extensions"
|
1808 |
+
msgstr ""
|
1809 |
+
|
1810 |
+
#: includes/admin/class-menu.php:55 includes/admin/class-menu.php:56
|
1811 |
+
msgid "Types"
|
1812 |
+
msgstr "Typen"
|
1813 |
+
|
1814 |
+
#: includes/admin/class-menu.php:39
|
1815 |
+
msgid "Settings"
|
1816 |
+
msgstr "Einstellungen"
|
1817 |
+
|
1818 |
+
#: includes/admin/class-menu.php:38 includes/admin/meta.php:271
|
1819 |
+
msgid "Schema Settings"
|
1820 |
+
msgstr "Schema-Einstellungen"
|
1821 |
+
|
1822 |
+
#. #-#-#-#-# schema-code.pot (Schema 1.7) #-#-#-#-#
|
1823 |
+
#. Plugin Name of the plugin/theme
|
1824 |
+
#: includes/admin/class-feedback.php:289 includes/admin/class-menu.php:29
|
1825 |
+
#: includes/admin/class-menu.php:30 includes/admin/meta-tax.php:25
|
1826 |
+
#: includes/admin/meta.php:149 includes/admin/settings/display-settings.php:65
|
1827 |
+
#: includes/extensions/post-meta-generator.php:160
|
1828 |
+
msgid "Schema"
|
1829 |
+
msgstr ""
|
1830 |
+
|
1831 |
+
#: includes/admin/class-feedback.php:241
|
1832 |
+
msgid "No thanks"
|
1833 |
+
msgstr ""
|
1834 |
+
|
1835 |
+
#: includes/admin/class-feedback.php:238
|
1836 |
+
msgid "Leave Feedback"
|
1837 |
+
msgstr ""
|
1838 |
+
|
1839 |
+
#: includes/admin/class-feedback.php:232
|
1840 |
+
msgid "your feedback"
|
1841 |
+
msgstr ""
|
1842 |
+
|
1843 |
+
#: includes/admin/class-feedback.php:232
|
1844 |
+
msgid "Let us know what you think about the plugin, what is missing, and how we can make it better. Leave us a review with"
|
1845 |
+
msgstr ""
|
1846 |
+
|
1847 |
+
#: includes/admin/class-feedback.php:230
|
1848 |
+
msgid "You have been using the %s plugin for %s now!"
|
1849 |
+
msgstr ""
|
1850 |
+
|
1851 |
+
#: includes/admin/class-feedback.php:228
|
1852 |
+
msgid "How do you like Schema?"
|
1853 |
+
msgstr ""
|
1854 |
+
|
1855 |
+
#: includes/admin/class-feedback.php:100
|
1856 |
+
msgid "a second"
|
1857 |
+
msgstr ""
|
1858 |
+
|
1859 |
+
#: includes/admin/class-feedback.php:98
|
1860 |
+
msgid "%s seconds"
|
1861 |
+
msgstr "%s Sekunden"
|
1862 |
+
|
1863 |
+
#: includes/admin/class-feedback.php:92
|
1864 |
+
msgid "a minute"
|
1865 |
+
msgstr ""
|
1866 |
+
|
1867 |
+
#: includes/admin/class-feedback.php:90
|
1868 |
+
msgid "%s minutes"
|
1869 |
+
msgstr "%s Minuten"
|
1870 |
+
|
1871 |
+
#: includes/admin/class-feedback.php:84
|
1872 |
+
msgid "an hour"
|
1873 |
+
msgstr ""
|
1874 |
+
|
1875 |
+
#: includes/admin/class-feedback.php:82
|
1876 |
+
msgid "%s hours"
|
1877 |
+
msgstr "%s Stunden"
|
1878 |
+
|
1879 |
+
#: includes/admin/class-feedback.php:76
|
1880 |
+
msgid "a day"
|
1881 |
+
msgstr ""
|
1882 |
+
|
1883 |
+
#: includes/admin/class-feedback.php:74
|
1884 |
+
msgid "%s days"
|
1885 |
+
msgstr "%s Tage"
|
1886 |
+
|
1887 |
+
#: includes/admin/class-feedback.php:68
|
1888 |
+
msgid "a week"
|
1889 |
+
msgstr ""
|
1890 |
+
|
1891 |
+
#: includes/admin/class-feedback.php:66
|
1892 |
+
msgid "%s weeks"
|
1893 |
+
msgstr "%s Wochen"
|
1894 |
+
|
1895 |
+
#: includes/admin/class-feedback.php:60
|
1896 |
+
msgid "a year"
|
1897 |
+
msgstr ""
|
1898 |
+
|
1899 |
+
#: includes/admin/class-feedback.php:58
|
1900 |
+
msgid "%s years"
|
1901 |
+
msgstr "%s Jahre"
|
1902 |
+
|
1903 |
+
#: includes/admin/admin-functions.php:163
|
1904 |
+
msgid "Package Tracking"
|
1905 |
+
msgstr "Sendungsverfolgung"
|
1906 |
+
|
1907 |
+
#: includes/admin/admin-functions.php:162
|
1908 |
+
msgid "Roadside Assistance"
|
1909 |
+
msgstr ""
|
1910 |
+
|
1911 |
+
#: includes/admin/admin-functions.php:161
|
1912 |
+
msgid "Baggage Tracking"
|
1913 |
+
msgstr ""
|
1914 |
+
|
1915 |
+
#: includes/admin/admin-functions.php:160
|
1916 |
+
msgid "Emergency"
|
1917 |
+
msgstr ""
|
1918 |
+
|
1919 |
+
#: includes/admin/admin-functions.php:159
|
1920 |
+
msgid "Credit Card Support"
|
1921 |
+
msgstr ""
|
1922 |
+
|
1923 |
+
#: includes/admin/admin-functions.php:158
|
1924 |
+
msgid "Reservations"
|
1925 |
+
msgstr "Reservierungen"
|
1926 |
+
|
1927 |
+
#: includes/admin/admin-functions.php:157
|
1928 |
+
msgid "Sales"
|
1929 |
+
msgstr ""
|
1930 |
+
|
1931 |
+
#: includes/admin/admin-functions.php:156
|
1932 |
+
msgid "Bill Payment"
|
1933 |
+
msgstr ""
|
1934 |
+
|
1935 |
+
#: includes/admin/admin-functions.php:155
|
1936 |
+
msgid "Billing Support"
|
1937 |
+
msgstr ""
|
1938 |
+
|
1939 |
+
#: includes/admin/admin-functions.php:154
|
1940 |
+
msgid "Technical Support"
|
1941 |
+
msgstr "Technischer Support"
|
1942 |
+
|
1943 |
+
#: includes/admin/admin-functions.php:153
|
1944 |
+
msgid "Customer Support"
|
1945 |
+
msgstr ""
|
1946 |
+
|
1947 |
+
#: includes/admin/admin-bar-menu.php:43
|
1948 |
+
msgid "_blank"
|
1949 |
+
msgstr ""
|
1950 |
+
|
1951 |
+
#: includes/admin/admin-bar-menu.php:41
|
1952 |
+
msgid "Structured Data Testing Tool"
|
1953 |
+
msgstr ""
|
languages/schema-wp-en_CA.mo
ADDED
Binary file
|
languages/schema-wp-en_CA.po
ADDED
@@ -0,0 +1,1850 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of Schema in English (Canada)
|
2 |
+
# This file is distributed under the same license as the Schema package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2019-12-18 23:23+0000\n"
|
6 |
+
"MIME-Version: 1.0\n"
|
7 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
+
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: Loco https://localise.biz/\n"
|
11 |
+
"Language: en_CA\n"
|
12 |
+
"Project-Id-Version: Schema\n"
|
13 |
+
"Report-Msgid-Bugs-To: \n"
|
14 |
+
"POT-Creation-Date: 2019-11-27 14:34+0000\n"
|
15 |
+
"Last-Translator: Hesham Z. <hesham.zebida@gmail.com>\n"
|
16 |
+
"Language-Team: English (Canada)\n"
|
17 |
+
"X-Loco-Version: 2.3.1; wp-5.3.2"
|
18 |
+
|
19 |
+
#: includes/admin/meta.php:249
|
20 |
+
msgid ""
|
21 |
+
" <a class=\"button button-large\" target=\"_blank\" href=\"https://schema."
|
22 |
+
"press/downloads/schema-premium/\">Get Schema Premium</a>"
|
23 |
+
msgstr ""
|
24 |
+
|
25 |
+
#: includes/json/category.php:108
|
26 |
+
msgid " Category"
|
27 |
+
msgstr " Category"
|
28 |
+
|
29 |
+
#: includes/json/tag.php:84
|
30 |
+
msgid " Tag"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: includes/admin/updater/class-license-handler.php:168
|
34 |
+
#, php-format
|
35 |
+
msgid "%1$s"
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: includes/admin/settings/contextual-help.php:29
|
39 |
+
#, php-format
|
40 |
+
msgid ""
|
41 |
+
"<a href=\"%s\">Post an issue</a> on <a href=\"%s\">GitHub</a>. View <a "
|
42 |
+
"href=\"%s\">extensions</a>"
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: includes/admin/settings/contextual-help.php:65
|
46 |
+
msgid "A description of all the options are provided beside their input boxes."
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: includes/admin/class-menu.php:79 includes/admin/class-menu.php:80
|
50 |
+
msgid "About"
|
51 |
+
msgstr "About"
|
52 |
+
|
53 |
+
#: includes/admin/class-setup-wizard.php:595
|
54 |
+
#: includes/admin/class-setup-wizard.php:598
|
55 |
+
msgid "About Page"
|
56 |
+
msgstr ""
|
57 |
+
|
58 |
+
#: includes/admin/class-welcome.php:246
|
59 |
+
msgid "AboutPage"
|
60 |
+
msgstr ""
|
61 |
+
|
62 |
+
#: includes/admin/post-type/schema-post-type.php:28
|
63 |
+
msgctxt "add new on admin bar"
|
64 |
+
msgid "Schema"
|
65 |
+
msgstr ""
|
66 |
+
|
67 |
+
#: includes/admin/post-type/schema-post-type.php:30
|
68 |
+
msgid "Add New Schema"
|
69 |
+
msgstr ""
|
70 |
+
|
71 |
+
#: includes/admin/meta.php:170
|
72 |
+
msgid "Add post meta key name as source"
|
73 |
+
msgstr ""
|
74 |
+
|
75 |
+
#: includes/admin/post-type/schema-post-type.php:27
|
76 |
+
msgctxt "admin menu"
|
77 |
+
msgid "Schema"
|
78 |
+
msgstr ""
|
79 |
+
|
80 |
+
#: includes/admin/settings/contextual-help.php:62
|
81 |
+
#: includes/admin/meta/class-meta.php:64
|
82 |
+
msgid "Advanced"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: includes/admin/post-type/schema-post-type.php:34
|
86 |
+
msgid "All Schemas"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: includes/admin/class-welcome.php:297
|
90 |
+
msgid "Also, you can set Schema to work on specific post categories."
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: includes/admin/meta.php:41 includes/admin/meta.php:42
|
94 |
+
#: includes/admin/meta.php:266 includes/admin/class-welcome.php:210
|
95 |
+
msgid "Article"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: includes/admin/meta.php:65
|
99 |
+
msgid "Article Type"
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: includes/extensions/audio-object.php:115
|
103 |
+
msgid "Audio duration, example: if duration is 1 Hour 35 MIN, use: PT1H35M"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: includes/extensions/audio-object.php:36
|
107 |
+
msgid "Audio Markups"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: includes/extensions/audio-object.php:122
|
111 |
+
msgid "Audio short description."
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: includes/extensions/audio-object.php:101
|
115 |
+
msgid "Audio title"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: includes/extensions/audio-object.php:108
|
119 |
+
msgid "Audio upload date in ISO 8601 format YYYY-MM-DD example: 2016-06-23"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: includes/admin/class-setup-wizard.php:665
|
123 |
+
#: includes/admin/class-setup-wizard.php:668
|
124 |
+
msgid "AudioObject"
|
125 |
+
msgstr ""
|
126 |
+
|
127 |
+
#: includes/misc-functions.php:680
|
128 |
+
msgid "Australian Dollars"
|
129 |
+
msgstr ""
|
130 |
+
|
131 |
+
#: includes/admin/class-welcome.php:254
|
132 |
+
msgid "author archive"
|
133 |
+
msgstr ""
|
134 |
+
|
135 |
+
#: includes/admin/meta.php:153
|
136 |
+
msgid "Author Name"
|
137 |
+
msgstr ""
|
138 |
+
|
139 |
+
#: includes/admin/class-welcome.php:305
|
140 |
+
msgid "Automatically add AudioObject to oEmbed"
|
141 |
+
msgstr ""
|
142 |
+
|
143 |
+
#: includes/admin/class-welcome.php:301
|
144 |
+
msgid "Automatically add VideoObject to oEmbed"
|
145 |
+
msgstr ""
|
146 |
+
|
147 |
+
#: includes/admin/class-setup-wizard.php:590
|
148 |
+
msgid ""
|
149 |
+
"Automatically, add additional schema.org markups to your website content."
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: includes/admin/admin-functions.php:161
|
153 |
+
msgid "Baggage Tracking"
|
154 |
+
msgstr ""
|
155 |
+
|
156 |
+
#: includes/misc-functions.php:681
|
157 |
+
msgid "Bangladeshi Taka"
|
158 |
+
msgstr ""
|
159 |
+
|
160 |
+
#: includes/admin/admin-functions.php:156
|
161 |
+
msgid "Bill Payment"
|
162 |
+
msgstr ""
|
163 |
+
|
164 |
+
#: includes/admin/admin-functions.php:155
|
165 |
+
msgid "Billing Support"
|
166 |
+
msgstr ""
|
167 |
+
|
168 |
+
#: includes/admin/class-welcome.php:222
|
169 |
+
msgid "Blog"
|
170 |
+
msgstr ""
|
171 |
+
|
172 |
+
#: includes/admin/class-welcome.php:213
|
173 |
+
msgid "BlogPosting"
|
174 |
+
msgstr ""
|
175 |
+
|
176 |
+
#: includes/misc-functions.php:682
|
177 |
+
msgid "Brazilian Real"
|
178 |
+
msgstr ""
|
179 |
+
|
180 |
+
#: includes/admin/class-welcome.php:234
|
181 |
+
msgid "BreadcrumbList"
|
182 |
+
msgstr ""
|
183 |
+
|
184 |
+
#: includes/admin/class-setup-wizard.php:638
|
185 |
+
#: includes/admin/class-setup-wizard.php:641
|
186 |
+
msgid "Breadcrumbs"
|
187 |
+
msgstr ""
|
188 |
+
|
189 |
+
#: includes/admin/extensions.php:43 includes/admin/extensions.php:61
|
190 |
+
#: includes/admin/extensions.php:61
|
191 |
+
msgid "Browse all extensions"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: includes/misc-functions.php:683
|
195 |
+
msgid "Bulgarian Lev"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: includes/misc-functions.php:684
|
199 |
+
msgid "Canadian Dollars"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: includes/admin/meta.php:206
|
203 |
+
msgid "Checkbox"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: includes/misc-functions.php:685
|
207 |
+
msgid "Chilean Peso"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: includes/misc-functions.php:686
|
211 |
+
msgid "Chinese Yuan"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: includes/admin/class-welcome.php:238 includes/admin/class-welcome.php:242
|
215 |
+
msgid "CollectionPage"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: includes/misc-functions.php:687
|
219 |
+
msgid "Colombian Peso"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: includes/admin/class-setup-wizard.php:647
|
223 |
+
#: includes/admin/class-setup-wizard.php:650
|
224 |
+
msgid "Comments"
|
225 |
+
msgstr ""
|
226 |
+
|
227 |
+
#: includes/admin/class-setup-wizard.php:698
|
228 |
+
msgid "Configure Your Schema Types!"
|
229 |
+
msgstr ""
|
230 |
+
|
231 |
+
#: includes/admin/class-setup-wizard.php:605
|
232 |
+
#: includes/admin/class-setup-wizard.php:608
|
233 |
+
msgid "Contact Page"
|
234 |
+
msgstr ""
|
235 |
+
|
236 |
+
#: includes/admin/settings/register-settings.php:424
|
237 |
+
msgid "Contact Type"
|
238 |
+
msgstr ""
|
239 |
+
|
240 |
+
#: includes/admin/class-welcome.php:250
|
241 |
+
msgid "ContactPage"
|
242 |
+
msgstr ""
|
243 |
+
|
244 |
+
#: includes/admin/post-type/schema-columns.php:51
|
245 |
+
msgid "Content"
|
246 |
+
msgstr ""
|
247 |
+
|
248 |
+
#: includes/admin/class-setup-wizard.php:368
|
249 |
+
#: includes/admin/class-setup-wizard.php:431
|
250 |
+
#: includes/admin/class-setup-wizard.php:575
|
251 |
+
#: includes/admin/class-setup-wizard.php:675
|
252 |
+
msgid "Continue"
|
253 |
+
msgstr ""
|
254 |
+
|
255 |
+
#: includes/admin/class-welcome.php:280
|
256 |
+
msgid "Correct Genesis Schema Markup"
|
257 |
+
msgstr ""
|
258 |
+
|
259 |
+
#: includes/admin/meta.php:179
|
260 |
+
msgid "Create custom post meta field?"
|
261 |
+
msgstr ""
|
262 |
+
|
263 |
+
#: includes/admin/meta.php:180
|
264 |
+
msgid "Create Field?"
|
265 |
+
msgstr ""
|
266 |
+
|
267 |
+
#: includes/admin/post-type/schema-post-type.php:172
|
268 |
+
msgid "Create Schema"
|
269 |
+
msgstr ""
|
270 |
+
|
271 |
+
#: includes/admin/meta.php:178
|
272 |
+
msgid "Create?"
|
273 |
+
msgstr ""
|
274 |
+
|
275 |
+
#: includes/admin/admin-functions.php:159
|
276 |
+
msgid "Credit Card Support"
|
277 |
+
msgstr ""
|
278 |
+
|
279 |
+
#: includes/admin/class-welcome.php:167
|
280 |
+
msgid "Credits"
|
281 |
+
msgstr ""
|
282 |
+
|
283 |
+
#: includes/misc-functions.php:693
|
284 |
+
msgid "Croatia kuna"
|
285 |
+
msgstr ""
|
286 |
+
|
287 |
+
#: includes/admin/post-type/schema-post-type.php:93
|
288 |
+
msgid "Custom field deleted."
|
289 |
+
msgstr ""
|
290 |
+
|
291 |
+
#: includes/admin/post-type/schema-post-type.php:92
|
292 |
+
msgid "Custom field updated."
|
293 |
+
msgstr ""
|
294 |
+
|
295 |
+
#: includes/admin/admin-functions.php:153
|
296 |
+
msgid "Customer Support"
|
297 |
+
msgstr ""
|
298 |
+
|
299 |
+
#: includes/misc-functions.php:688
|
300 |
+
msgid "Czech Koruna"
|
301 |
+
msgstr ""
|
302 |
+
|
303 |
+
#: includes/misc-functions.php:689
|
304 |
+
msgid "Danish Krone"
|
305 |
+
msgstr ""
|
306 |
+
|
307 |
+
#: includes/admin/meta.php:161 includes/admin/meta.php:223
|
308 |
+
#: includes/extensions/audio-object.php:121
|
309 |
+
#: includes/extensions/video-object.php:121
|
310 |
+
msgid "Description"
|
311 |
+
msgstr ""
|
312 |
+
|
313 |
+
#: includes/admin/meta.php:227
|
314 |
+
msgid "Description for this field"
|
315 |
+
msgstr ""
|
316 |
+
|
317 |
+
#: includes/admin/post-type/schema-post-type.php:43
|
318 |
+
msgid "Description."
|
319 |
+
msgstr ""
|
320 |
+
|
321 |
+
#: includes/integrations/yoast-seo.php:77
|
322 |
+
msgid "Disable Duplicate Features that Yoast SEO Offers?"
|
323 |
+
msgstr ""
|
324 |
+
|
325 |
+
#: includes/admin/class-welcome.php:365
|
326 |
+
msgid ""
|
327 |
+
"Docs are on its way! We will update <a href=\"http://schema.press/\">schema."
|
328 |
+
"press</a> site with plugin documentation soon."
|
329 |
+
msgstr ""
|
330 |
+
|
331 |
+
#: includes/admin/class-welcome.php:364
|
332 |
+
msgid "Documentation"
|
333 |
+
msgstr ""
|
334 |
+
|
335 |
+
#: includes/admin/class-setup-wizard.php:383
|
336 |
+
msgid "Does your site represent a Person or Organization?"
|
337 |
+
msgstr ""
|
338 |
+
|
339 |
+
#: includes/misc-functions.php:690
|
340 |
+
msgid "Dominican Peso"
|
341 |
+
msgstr ""
|
342 |
+
|
343 |
+
#: includes/extensions/audio-object.php:114
|
344 |
+
#: includes/extensions/video-object.php:114
|
345 |
+
msgid "Duration"
|
346 |
+
msgstr ""
|
347 |
+
|
348 |
+
#: includes/admin/post-type/schema-post-type.php:32
|
349 |
+
msgid "Edit Schema"
|
350 |
+
msgstr ""
|
351 |
+
|
352 |
+
#: includes/misc-functions.php:723
|
353 |
+
msgid "Egyptian Pound"
|
354 |
+
msgstr ""
|
355 |
+
|
356 |
+
#: includes/admin/admin-functions.php:160
|
357 |
+
msgid "Emergency"
|
358 |
+
msgstr ""
|
359 |
+
|
360 |
+
#: includes/admin/meta.php:50
|
361 |
+
msgid "Enable custom post meta box"
|
362 |
+
msgstr ""
|
363 |
+
|
364 |
+
#: includes/admin/meta.php:51
|
365 |
+
msgid "Enable post meta box?"
|
366 |
+
msgstr ""
|
367 |
+
|
368 |
+
#: includes/admin/settings/register-settings.php:463
|
369 |
+
msgid "Enable Site Name?"
|
370 |
+
msgstr ""
|
371 |
+
|
372 |
+
#: includes/admin/settings/register-settings.php:454
|
373 |
+
msgid "Enable Sitelinks Search Box?"
|
374 |
+
msgstr ""
|
375 |
+
|
376 |
+
#: includes/admin/class-setup-wizard.php:633
|
377 |
+
#: includes/admin/class-setup-wizard.php:642
|
378 |
+
#: includes/admin/class-setup-wizard.php:651
|
379 |
+
#: includes/admin/class-setup-wizard.php:660
|
380 |
+
#: includes/admin/class-setup-wizard.php:669
|
381 |
+
#: includes/admin/settings/register-settings.php:546
|
382 |
+
msgid "enable?"
|
383 |
+
msgstr ""
|
384 |
+
|
385 |
+
#: includes/admin/meta.php:108
|
386 |
+
msgid "Enabled on specific custom post types"
|
387 |
+
msgstr ""
|
388 |
+
|
389 |
+
#: includes/admin/class-setup-wizard.php:52
|
390 |
+
msgctxt "enhanced select"
|
391 |
+
msgid "%qty% results are available, use up and down arrow keys to navigate."
|
392 |
+
msgstr ""
|
393 |
+
|
394 |
+
#: includes/admin/class-setup-wizard.php:54
|
395 |
+
msgctxt "enhanced select"
|
396 |
+
msgid "Loading failed"
|
397 |
+
msgstr ""
|
398 |
+
|
399 |
+
#: includes/admin/class-setup-wizard.php:61
|
400 |
+
msgctxt "enhanced select"
|
401 |
+
msgid "Loading more results…"
|
402 |
+
msgstr ""
|
403 |
+
|
404 |
+
#: includes/admin/class-setup-wizard.php:53
|
405 |
+
msgctxt "enhanced select"
|
406 |
+
msgid "No matches found"
|
407 |
+
msgstr ""
|
408 |
+
|
409 |
+
#: includes/admin/class-setup-wizard.php:51
|
410 |
+
msgctxt "enhanced select"
|
411 |
+
msgid "One result is available, press enter to select it."
|
412 |
+
msgstr ""
|
413 |
+
|
414 |
+
#: includes/admin/class-setup-wizard.php:58
|
415 |
+
msgctxt "enhanced select"
|
416 |
+
msgid "Please delete %qty% characters"
|
417 |
+
msgstr ""
|
418 |
+
|
419 |
+
#: includes/admin/class-setup-wizard.php:57
|
420 |
+
msgctxt "enhanced select"
|
421 |
+
msgid "Please delete 1 character"
|
422 |
+
msgstr ""
|
423 |
+
|
424 |
+
#: includes/admin/class-setup-wizard.php:56
|
425 |
+
msgctxt "enhanced select"
|
426 |
+
msgid "Please enter %qty% or more characters"
|
427 |
+
msgstr ""
|
428 |
+
|
429 |
+
#: includes/admin/class-setup-wizard.php:55
|
430 |
+
msgctxt "enhanced select"
|
431 |
+
msgid "Please enter 1 or more characters"
|
432 |
+
msgstr ""
|
433 |
+
|
434 |
+
#: includes/admin/class-setup-wizard.php:62
|
435 |
+
msgctxt "enhanced select"
|
436 |
+
msgid "Searching…"
|
437 |
+
msgstr ""
|
438 |
+
|
439 |
+
#: includes/admin/class-setup-wizard.php:60
|
440 |
+
msgctxt "enhanced select"
|
441 |
+
msgid "You can only select %qty% items"
|
442 |
+
msgstr ""
|
443 |
+
|
444 |
+
#: includes/admin/class-setup-wizard.php:59
|
445 |
+
msgctxt "enhanced select"
|
446 |
+
msgid "You can only select 1 item"
|
447 |
+
msgstr ""
|
448 |
+
|
449 |
+
#: includes/extensions/sameAs.php:41
|
450 |
+
msgid "Enter sameAs URLs, one per line."
|
451 |
+
msgstr "Enter sameAs URLs, one per line."
|
452 |
+
|
453 |
+
#: includes/admin/updater/class-license-handler.php:475
|
454 |
+
msgid "Enter valid license key for automatic updates."
|
455 |
+
msgstr ""
|
456 |
+
|
457 |
+
#: includes/admin/updater/class-license-handler.php:204
|
458 |
+
#, php-format
|
459 |
+
msgid ""
|
460 |
+
"Enter your extension license keys here to receive updates for purchased "
|
461 |
+
"extensions. If your license key has expired, please <a href=\"%s\" "
|
462 |
+
"target=\"_blank\">renew your license</a>."
|
463 |
+
msgstr ""
|
464 |
+
|
465 |
+
#: includes/admin/class-notices.php:53
|
466 |
+
#: includes/admin/updater/class-license-handler.php:319
|
467 |
+
msgid "Error"
|
468 |
+
msgstr ""
|
469 |
+
|
470 |
+
#: includes/misc-functions.php:691
|
471 |
+
msgid "Euros"
|
472 |
+
msgstr ""
|
473 |
+
|
474 |
+
#: includes/admin/class-menu.php:67 includes/admin/class-menu.php:68
|
475 |
+
#: includes/admin/settings/contextual-help.php:56
|
476 |
+
msgid "Extensions"
|
477 |
+
msgstr ""
|
478 |
+
|
479 |
+
#: includes/admin/extensions.php:41
|
480 |
+
msgid "Extensions for Schema"
|
481 |
+
msgstr ""
|
482 |
+
|
483 |
+
#: includes/admin/class-setup-wizard.php:454
|
484 |
+
#: includes/admin/class-setup-wizard.php:457
|
485 |
+
#: includes/admin/settings/register-settings.php:341
|
486 |
+
msgid "Facebook"
|
487 |
+
msgstr ""
|
488 |
+
|
489 |
+
#: includes/integrations/yoast-seo.php:81
|
490 |
+
msgid ""
|
491 |
+
"Features that will be disabled:<br /><ol><li>Organization/Person</li><li>"
|
492 |
+
"Social Profiles</li><li>Corporate Contacts\n"
|
493 |
+
"</li><li>Breadcrumb</li><li>Sitelink Search Box</li></ol>"
|
494 |
+
msgstr ""
|
495 |
+
|
496 |
+
#: includes/admin/meta.php:224
|
497 |
+
msgid "Field description"
|
498 |
+
msgstr ""
|
499 |
+
|
500 |
+
#: includes/admin/meta.php:215
|
501 |
+
msgid "Field label"
|
502 |
+
msgstr ""
|
503 |
+
|
504 |
+
#: includes/admin/meta.php:132 includes/admin/meta/class-meta.php:346
|
505 |
+
msgid "Fields"
|
506 |
+
msgstr ""
|
507 |
+
|
508 |
+
#: includes/admin/meta.php:145
|
509 |
+
msgid "Filter"
|
510 |
+
msgstr ""
|
511 |
+
|
512 |
+
#: includes/admin/class-welcome.php:196
|
513 |
+
msgid "First-time Schema configuration!"
|
514 |
+
msgstr ""
|
515 |
+
|
516 |
+
#: includes/admin/class-welcome.php:222
|
517 |
+
msgid "for Blog posts list page"
|
518 |
+
msgstr ""
|
519 |
+
|
520 |
+
#: includes/admin/class-welcome.php:234
|
521 |
+
msgid "for Breadcrumbs"
|
522 |
+
msgstr ""
|
523 |
+
|
524 |
+
#: includes/admin/class-welcome.php:238
|
525 |
+
msgid "for Categories"
|
526 |
+
msgstr ""
|
527 |
+
|
528 |
+
#: includes/admin/settings/contextual-help.php:26
|
529 |
+
msgid "For more information:"
|
530 |
+
msgstr ""
|
531 |
+
|
532 |
+
#: includes/admin/class-welcome.php:242
|
533 |
+
msgid "for Tags"
|
534 |
+
msgstr ""
|
535 |
+
|
536 |
+
#: includes/admin/class-welcome.php:246
|
537 |
+
msgid "for the about page"
|
538 |
+
msgstr ""
|
539 |
+
|
540 |
+
#: includes/admin/class-welcome.php:250
|
541 |
+
msgid "for the contact page"
|
542 |
+
msgstr ""
|
543 |
+
|
544 |
+
#: includes/admin/class-welcome.php:230
|
545 |
+
msgid "for Web Page Footer"
|
546 |
+
msgstr ""
|
547 |
+
|
548 |
+
#: includes/admin/class-welcome.php:226
|
549 |
+
msgid "for Web Page Header"
|
550 |
+
msgstr ""
|
551 |
+
|
552 |
+
#: includes/admin/class-setup-wizard.php:136
|
553 |
+
#: includes/admin/class-welcome.php:212
|
554 |
+
#: includes/admin/settings/register-settings.php:1020
|
555 |
+
#: includes/admin/settings/contextual-help.php:38
|
556 |
+
msgid "General"
|
557 |
+
msgstr ""
|
558 |
+
|
559 |
+
#: includes/admin/extensions.php:124
|
560 |
+
msgid "Get Schema Premium"
|
561 |
+
msgstr ""
|
562 |
+
|
563 |
+
#: includes/admin/class-welcome.php:197
|
564 |
+
msgid "Get started quickly with the Schema configuration wizard!"
|
565 |
+
msgstr ""
|
566 |
+
|
567 |
+
#: includes/admin/extensions.php:124
|
568 |
+
msgid "Get this Extension"
|
569 |
+
msgstr ""
|
570 |
+
|
571 |
+
#: includes/admin/class-welcome.php:163
|
572 |
+
msgid "Getting Started"
|
573 |
+
msgstr ""
|
574 |
+
|
575 |
+
#: includes/admin/class-welcome.php:61 includes/admin/class-welcome.php:62
|
576 |
+
msgid "Getting started with Schema"
|
577 |
+
msgstr ""
|
578 |
+
|
579 |
+
#: includes/admin/meta.php:269
|
580 |
+
msgid "Go Premium"
|
581 |
+
msgstr ""
|
582 |
+
|
583 |
+
#: includes/admin/class-welcome.php:264 includes/admin/class-welcome.php:353
|
584 |
+
msgid "Go To Schema Settings"
|
585 |
+
msgstr ""
|
586 |
+
|
587 |
+
#: includes/admin/class-setup-wizard.php:478
|
588 |
+
#: includes/admin/class-setup-wizard.php:481
|
589 |
+
#: includes/admin/settings/register-settings.php:357
|
590 |
+
msgid "Google+"
|
591 |
+
msgstr ""
|
592 |
+
|
593 |
+
#: includes/admin/class-welcome.php:337
|
594 |
+
msgid ""
|
595 |
+
"Hang on! We are going to add more schema integration and cool features to "
|
596 |
+
"Schema plugin."
|
597 |
+
msgstr ""
|
598 |
+
|
599 |
+
#: includes/admin/meta.php:157
|
600 |
+
msgid "Headline"
|
601 |
+
msgstr ""
|
602 |
+
|
603 |
+
#: includes/admin/class-welcome.php:274
|
604 |
+
msgid "Hello AMP!"
|
605 |
+
msgstr ""
|
606 |
+
|
607 |
+
#: includes/admin/class-setup-wizard.php:692
|
608 |
+
msgid "here"
|
609 |
+
msgstr ""
|
610 |
+
|
611 |
+
#: includes/admin/class-welcome.php:394
|
612 |
+
msgid ""
|
613 |
+
"Here, we will be listing some of the faces that have helped build Schema."
|
614 |
+
msgstr ""
|
615 |
+
|
616 |
+
#. Author of the plugin/theme
|
617 |
+
msgid "Hesham"
|
618 |
+
msgstr ""
|
619 |
+
|
620 |
+
#: includes/misc-functions.php:692
|
621 |
+
msgid "Hong Kong Dollar"
|
622 |
+
msgstr ""
|
623 |
+
|
624 |
+
#: includes/admin/class-feedback.php:232
|
625 |
+
msgid "How do you like Schema?"
|
626 |
+
msgstr ""
|
627 |
+
|
628 |
+
#. Author URI of the plugin/theme
|
629 |
+
msgid "http://zebida.com"
|
630 |
+
msgstr ""
|
631 |
+
|
632 |
+
#. Plugin URI of the plugin/theme
|
633 |
+
msgid "https://schema.press"
|
634 |
+
msgstr ""
|
635 |
+
|
636 |
+
#: includes/misc-functions.php:694
|
637 |
+
msgid "Hungarian Forint"
|
638 |
+
msgstr ""
|
639 |
+
|
640 |
+
#: includes/misc-functions.php:695
|
641 |
+
msgid "Icelandic krona"
|
642 |
+
msgstr ""
|
643 |
+
|
644 |
+
#: includes/admin/class-welcome.php:289
|
645 |
+
msgid ""
|
646 |
+
"If Divi theme is active, Schema plugin will clear shortcodes to be able to "
|
647 |
+
"output the content description."
|
648 |
+
msgstr ""
|
649 |
+
|
650 |
+
#: includes/admin/class-welcome.php:275
|
651 |
+
msgid "If you are using the AMP plugin, Schema got you covered!"
|
652 |
+
msgstr ""
|
653 |
+
|
654 |
+
#: includes/admin/class-welcome.php:278
|
655 |
+
msgid "If you are using the WPRichSnippets plugin, Schema will behave!"
|
656 |
+
msgstr ""
|
657 |
+
|
658 |
+
#: includes/admin/extensions.php:54
|
659 |
+
#, php-format
|
660 |
+
msgid ""
|
661 |
+
"If you have a Personal or Plus license, you can easily upgrade from your "
|
662 |
+
"account page to <a href=\"%s\">get access to all of these extensions</a>!"
|
663 |
+
msgstr ""
|
664 |
+
|
665 |
+
#: includes/misc-functions.php:697
|
666 |
+
msgid "Indian Rupee"
|
667 |
+
msgstr ""
|
668 |
+
|
669 |
+
#: includes/misc-functions.php:696
|
670 |
+
msgid "Indonesia Rupiah"
|
671 |
+
msgstr ""
|
672 |
+
|
673 |
+
#: includes/admin/class-setup-wizard.php:490
|
674 |
+
#: includes/admin/class-setup-wizard.php:493
|
675 |
+
#: includes/admin/settings/register-settings.php:365
|
676 |
+
msgid "Instagram"
|
677 |
+
msgstr ""
|
678 |
+
|
679 |
+
#: includes/admin/class-welcome.php:268
|
680 |
+
msgid "Integration with Themes and other Plugins"
|
681 |
+
msgstr ""
|
682 |
+
|
683 |
+
#: includes/admin/class-setup-wizard.php:126
|
684 |
+
msgid "Introduction"
|
685 |
+
msgstr ""
|
686 |
+
|
687 |
+
#: includes/admin/class-welcome.php:288
|
688 |
+
msgid "Is Divi your Theme?"
|
689 |
+
msgstr ""
|
690 |
+
|
691 |
+
#: includes/misc-functions.php:699
|
692 |
+
msgid "Israeli Shekel"
|
693 |
+
msgstr ""
|
694 |
+
|
695 |
+
#: includes/admin/meta.php:67
|
696 |
+
msgid ""
|
697 |
+
"It is recommended to set type BlogPosting for posts, and leave empty or set "
|
698 |
+
"to General for page post type"
|
699 |
+
msgstr ""
|
700 |
+
|
701 |
+
#: includes/json/web-page-element.php:76
|
702 |
+
msgid "It looks like nothing was found at this location!"
|
703 |
+
msgstr ""
|
704 |
+
|
705 |
+
#: includes/misc-functions.php:700
|
706 |
+
msgid "Japanese Yen"
|
707 |
+
msgstr ""
|
708 |
+
|
709 |
+
#: includes/admin/meta.php:169
|
710 |
+
msgid "Key"
|
711 |
+
msgstr ""
|
712 |
+
|
713 |
+
#: includes/admin/settings/register-settings.php:1021
|
714 |
+
#: includes/admin/settings/contextual-help.php:44
|
715 |
+
msgid "Knowledge Graph"
|
716 |
+
msgstr ""
|
717 |
+
|
718 |
+
#: includes/admin/class-setup-wizard.php:449
|
719 |
+
msgid ""
|
720 |
+
"Knowledge panels prominently display your social profile information in some "
|
721 |
+
"Google Search results."
|
722 |
+
msgstr ""
|
723 |
+
|
724 |
+
#: includes/admin/meta.php:214 includes/admin/meta.php:219
|
725 |
+
msgid "Label"
|
726 |
+
msgstr ""
|
727 |
+
|
728 |
+
#: includes/misc-functions.php:701
|
729 |
+
msgid "Lao Kip"
|
730 |
+
msgstr ""
|
731 |
+
|
732 |
+
#: includes/admin/class-setup-wizard.php:703
|
733 |
+
msgid "Learn More"
|
734 |
+
msgstr ""
|
735 |
+
|
736 |
+
#: includes/admin/class-feedback.php:242
|
737 |
+
msgid "Leave Feedback"
|
738 |
+
msgstr ""
|
739 |
+
|
740 |
+
#: includes/admin/class-feedback.php:236
|
741 |
+
msgid ""
|
742 |
+
"Let us know what you think about the plugin, what is missing, and how we can "
|
743 |
+
"make it better. Leave us a review with"
|
744 |
+
msgstr ""
|
745 |
+
|
746 |
+
#: includes/admin/class-setup-wizard.php:320
|
747 |
+
msgid "Let's Go!"
|
748 |
+
msgstr ""
|
749 |
+
|
750 |
+
#: includes/admin/class-setup-wizard.php:514
|
751 |
+
#: includes/admin/settings/register-settings.php:381
|
752 |
+
msgid "LinkedIn"
|
753 |
+
msgstr ""
|
754 |
+
|
755 |
+
#: includes/admin/class-setup-wizard.php:517
|
756 |
+
msgid "Linkedin"
|
757 |
+
msgstr ""
|
758 |
+
|
759 |
+
#: includes/admin/class-setup-wizard.php:421
|
760 |
+
#: includes/admin/settings/register-settings.php:322
|
761 |
+
msgid "Logo"
|
762 |
+
msgstr ""
|
763 |
+
|
764 |
+
#: includes/admin/class-setup-wizard.php:422
|
765 |
+
#: includes/admin/class-setup-wizard.php:621
|
766 |
+
#: includes/admin/settings/register-settings.php:268
|
767 |
+
#: includes/admin/settings/register-settings.php:323
|
768 |
+
msgid "Logo guidelines"
|
769 |
+
msgstr ""
|
770 |
+
|
771 |
+
#. translators: Publish box date format, see http://php.net/date
|
772 |
+
#: includes/admin/post-type/schema-post-type.php:103
|
773 |
+
msgid "M j, Y @ G:i"
|
774 |
+
msgstr ""
|
775 |
+
|
776 |
+
#: includes/misc-functions.php:703
|
777 |
+
msgid "Malaysian Ringgits"
|
778 |
+
msgstr ""
|
779 |
+
|
780 |
+
#: includes/admin/class-capabilities.php:36
|
781 |
+
msgid "Manage Schema Options"
|
782 |
+
msgstr ""
|
783 |
+
|
784 |
+
#: includes/admin/class-setup-wizard.php:588
|
785 |
+
msgid "Mark Up Your Content"
|
786 |
+
msgstr ""
|
787 |
+
|
788 |
+
#: includes/admin/class-welcome.php:260
|
789 |
+
msgid "Maybe coming soon!"
|
790 |
+
msgstr ""
|
791 |
+
|
792 |
+
#: includes/admin/meta.php:174
|
793 |
+
msgid "Meta Key Name"
|
794 |
+
msgstr ""
|
795 |
+
|
796 |
+
#: includes/misc-functions.php:704
|
797 |
+
msgid "Mexican Peso"
|
798 |
+
msgstr ""
|
799 |
+
|
800 |
+
#: includes/extensions/audio-object.php:51
|
801 |
+
msgid "Multiple audios"
|
802 |
+
msgstr ""
|
803 |
+
|
804 |
+
#: includes/extensions/video-object.php:51
|
805 |
+
msgid "Multiple videos"
|
806 |
+
msgstr ""
|
807 |
+
|
808 |
+
#: includes/admin/class-setup-wizard.php:526
|
809 |
+
#: includes/admin/class-setup-wizard.php:529
|
810 |
+
#: includes/admin/settings/register-settings.php:388
|
811 |
+
msgid "Myspace"
|
812 |
+
msgstr ""
|
813 |
+
|
814 |
+
#: includes/admin/class-setup-wizard.php:404
|
815 |
+
#: includes/admin/class-setup-wizard.php:407
|
816 |
+
#: includes/admin/settings/register-settings.php:304
|
817 |
+
#: includes/admin/post-type/schema-columns.php:19
|
818 |
+
msgid "Name"
|
819 |
+
msgstr ""
|
820 |
+
|
821 |
+
#: includes/admin/class-welcome.php:361
|
822 |
+
msgid "Need Help?"
|
823 |
+
msgstr ""
|
824 |
+
|
825 |
+
#: includes/misc-functions.php:698
|
826 |
+
msgid "Nepali Rupee"
|
827 |
+
msgstr ""
|
828 |
+
|
829 |
+
#: includes/admin/post-type/schema-post-type.php:31
|
830 |
+
msgid "New Schema"
|
831 |
+
msgstr ""
|
832 |
+
|
833 |
+
#: includes/admin/class-welcome.php:258
|
834 |
+
msgid "New Schema Type?"
|
835 |
+
msgstr ""
|
836 |
+
|
837 |
+
#: includes/misc-functions.php:707
|
838 |
+
msgid "New Zealand Dollar"
|
839 |
+
msgstr ""
|
840 |
+
|
841 |
+
#: includes/admin/class-welcome.php:214
|
842 |
+
msgid "NewsArticle"
|
843 |
+
msgstr ""
|
844 |
+
|
845 |
+
#: includes/admin/class-setup-wizard.php:696
|
846 |
+
msgid "Next Step"
|
847 |
+
msgstr ""
|
848 |
+
|
849 |
+
#: includes/misc-functions.php:705
|
850 |
+
msgid "Nigerian Naira"
|
851 |
+
msgstr ""
|
852 |
+
|
853 |
+
#: includes/admin/class-welcome.php:286
|
854 |
+
msgid ""
|
855 |
+
"No problem! The Schema plugin will automatically indicate that and show "
|
856 |
+
"respect for SEO Framework."
|
857 |
+
msgstr ""
|
858 |
+
|
859 |
+
#: includes/admin/post-type/schema-post-type.php:38
|
860 |
+
msgid "No schema found in Trash."
|
861 |
+
msgstr ""
|
862 |
+
|
863 |
+
#: includes/admin/post-type/schema-post-type.php:37
|
864 |
+
msgid "No schema found."
|
865 |
+
msgstr ""
|
866 |
+
|
867 |
+
#: includes/admin/class-feedback.php:245
|
868 |
+
msgid "No thanks"
|
869 |
+
msgstr ""
|
870 |
+
|
871 |
+
#: includes/admin/class-setup-wizard.php:318
|
872 |
+
msgid ""
|
873 |
+
"No time right now? If you don’t want to go through the wizard, you can skip "
|
874 |
+
"and return to the WordPress dashboard. Come back anytime if you change your "
|
875 |
+
"mind!"
|
876 |
+
msgstr ""
|
877 |
+
|
878 |
+
#: includes/admin/updater/class-license-handler.php:319
|
879 |
+
msgid "Nonce verification failed"
|
880 |
+
msgstr ""
|
881 |
+
|
882 |
+
#: includes/extensions/audio-object.php:43
|
883 |
+
#: includes/extensions/video-object.php:43
|
884 |
+
msgid "None"
|
885 |
+
msgstr ""
|
886 |
+
|
887 |
+
#: includes/misc-functions.php:706
|
888 |
+
msgid "Norwegian Krone"
|
889 |
+
msgstr ""
|
890 |
+
|
891 |
+
#: includes/admin/class-setup-wizard.php:321
|
892 |
+
msgid "Not right now"
|
893 |
+
msgstr ""
|
894 |
+
|
895 |
+
#: includes/extensions/audio-object.php:38
|
896 |
+
msgid ""
|
897 |
+
"Note: You can enable markups to multiple audios on the same page. However, "
|
898 |
+
"this may slow down your site, make sure your site is hosted on a reliable "
|
899 |
+
"web host and cache your site pages by a good caching plugin. (Recommended "
|
900 |
+
"setting: Single Audio)"
|
901 |
+
msgstr ""
|
902 |
+
|
903 |
+
#: includes/extensions/video-object.php:38
|
904 |
+
msgid ""
|
905 |
+
"Note: You can enable markups to multiple videos on the same page. However, "
|
906 |
+
"this may slow down your site, make sure your site is hosted on a reliable "
|
907 |
+
"web host and cache your site pages by a good caching plugin. (Recommended "
|
908 |
+
"setting: Single Video)"
|
909 |
+
msgstr ""
|
910 |
+
|
911 |
+
#: includes/admin/class-welcome.php:272
|
912 |
+
msgid ""
|
913 |
+
"Now Schema plugin plays nicely with Yoast SEO plugin, you can have both "
|
914 |
+
"plugins active with no conflicts."
|
915 |
+
msgstr ""
|
916 |
+
"Now Schema plugin plays nicely with Yoast SEO plugin, you can have both "
|
917 |
+
"plugins active with no conflicts."
|
918 |
+
|
919 |
+
#: includes/admin/class-welcome.php:208
|
920 |
+
msgid "Now, Schema plugin supports more schema.org types."
|
921 |
+
msgstr ""
|
922 |
+
|
923 |
+
#: includes/admin/class-welcome.php:296
|
924 |
+
msgid ""
|
925 |
+
"Now, you can create new schema.org markup types and enable them on post type "
|
926 |
+
"bases."
|
927 |
+
msgstr ""
|
928 |
+
|
929 |
+
#: includes/admin/extensions.php:32
|
930 |
+
msgid "Official Free"
|
931 |
+
msgstr ""
|
932 |
+
|
933 |
+
#: includes/admin/class-setup-wizard.php:416
|
934 |
+
msgid "Organization Logo"
|
935 |
+
msgstr ""
|
936 |
+
|
937 |
+
#: includes/admin/class-setup-wizard.php:393
|
938 |
+
msgid "Organization or Person?"
|
939 |
+
msgstr "Organization or Person?"
|
940 |
+
|
941 |
+
#: includes/admin/extensions.php:56
|
942 |
+
msgid "Our official free extensions are available to all license holders!"
|
943 |
+
msgstr ""
|
944 |
+
|
945 |
+
#: includes/admin/class-welcome.php:340
|
946 |
+
msgid "Overview"
|
947 |
+
msgstr ""
|
948 |
+
|
949 |
+
#: includes/admin/admin-functions.php:163
|
950 |
+
msgid "Package Tracking"
|
951 |
+
msgstr ""
|
952 |
+
|
953 |
+
#: includes/install.php:88
|
954 |
+
msgid "Page"
|
955 |
+
msgstr ""
|
956 |
+
|
957 |
+
#: includes/json/web-page-element.php:75
|
958 |
+
msgid "Page not found"
|
959 |
+
msgstr ""
|
960 |
+
|
961 |
+
#: includes/misc-functions.php:708
|
962 |
+
msgid "Paraguayan Guaraní"
|
963 |
+
msgstr ""
|
964 |
+
|
965 |
+
#: includes/admin/post-type/schema-post-type.php:36
|
966 |
+
msgid "Parent Schemas:"
|
967 |
+
msgstr ""
|
968 |
+
|
969 |
+
#: includes/admin/class-welcome.php:254
|
970 |
+
msgid "Person"
|
971 |
+
msgstr ""
|
972 |
+
|
973 |
+
#: includes/admin/class-setup-wizard.php:381
|
974 |
+
#: includes/admin/settings/register-settings.php:283
|
975 |
+
msgid "Person or Organization"
|
976 |
+
msgstr ""
|
977 |
+
|
978 |
+
#: includes/misc-functions.php:709
|
979 |
+
msgid "Philippine Pesos"
|
980 |
+
msgstr ""
|
981 |
+
|
982 |
+
#: includes/admin/class-setup-wizard.php:538
|
983 |
+
#: includes/admin/class-setup-wizard.php:541
|
984 |
+
#: includes/admin/settings/register-settings.php:396
|
985 |
+
msgid "Pinterest"
|
986 |
+
msgstr ""
|
987 |
+
|
988 |
+
#: includes/admin/class-welcome.php:271
|
989 |
+
msgid "Play nicely with Yoast SEO"
|
990 |
+
msgstr ""
|
991 |
+
|
992 |
+
#: includes/admin/class-welcome.php:199
|
993 |
+
msgid "Plugin Settings"
|
994 |
+
msgstr "Plugin Settings"
|
995 |
+
|
996 |
+
#: includes/misc-functions.php:710
|
997 |
+
msgid "Polish Zloty"
|
998 |
+
msgstr ""
|
999 |
+
|
1000 |
+
#: includes/install.php:45
|
1001 |
+
msgid "Post"
|
1002 |
+
msgstr ""
|
1003 |
+
|
1004 |
+
#: includes/admin/meta.php:268
|
1005 |
+
msgid "Post Meta"
|
1006 |
+
msgstr ""
|
1007 |
+
|
1008 |
+
#: includes/admin/meta.php:49
|
1009 |
+
msgid "Post meta"
|
1010 |
+
msgstr ""
|
1011 |
+
|
1012 |
+
#: includes/admin/meta.php:123
|
1013 |
+
msgid "Post meta box title, default: Schema"
|
1014 |
+
msgstr ""
|
1015 |
+
|
1016 |
+
#: includes/admin/post-type/schema-columns.php:39
|
1017 |
+
msgid "Post Type"
|
1018 |
+
msgstr ""
|
1019 |
+
|
1020 |
+
#: includes/admin/post-type/schema-post-type.php:25
|
1021 |
+
msgctxt "post type general name"
|
1022 |
+
msgid "Schema"
|
1023 |
+
msgstr ""
|
1024 |
+
|
1025 |
+
#: includes/admin/post-type/schema-post-type.php:26
|
1026 |
+
msgctxt "post type singular name"
|
1027 |
+
msgid "Schema"
|
1028 |
+
msgstr ""
|
1029 |
+
|
1030 |
+
#: includes/admin/meta.php:267
|
1031 |
+
msgid "Post Types"
|
1032 |
+
msgstr ""
|
1033 |
+
|
1034 |
+
#: includes/misc-functions.php:711
|
1035 |
+
msgid "Pounds Sterling"
|
1036 |
+
msgstr ""
|
1037 |
+
|
1038 |
+
#: includes/admin/class-menu.php:90 includes/admin/extensions.php:31
|
1039 |
+
msgid "Premium"
|
1040 |
+
msgstr ""
|
1041 |
+
|
1042 |
+
#: includes/admin/extensions.php:53
|
1043 |
+
#, php-format
|
1044 |
+
msgid ""
|
1045 |
+
"Premium Extensions are only available with a Professional or Ultimate "
|
1046 |
+
"license. If you already have one of these licenses, simply <a href=\"%s\">"
|
1047 |
+
"log in to your account</a> to download any of these extensions."
|
1048 |
+
msgstr ""
|
1049 |
+
|
1050 |
+
#: includes/admin/post-type/schema-post-type.php:118
|
1051 |
+
msgid "Preview schema"
|
1052 |
+
msgstr ""
|
1053 |
+
|
1054 |
+
#: includes/admin/class-setup-wizard.php:447
|
1055 |
+
#: includes/admin/settings/register-settings.php:336
|
1056 |
+
msgid "Provide your social profile information to a Google Knowledge panel."
|
1057 |
+
msgstr ""
|
1058 |
+
|
1059 |
+
#: includes/admin/class-setup-wizard.php:615
|
1060 |
+
#: includes/admin/class-setup-wizard.php:620
|
1061 |
+
#: includes/admin/settings/register-settings.php:267
|
1062 |
+
msgid "Publisher Logo"
|
1063 |
+
msgstr ""
|
1064 |
+
|
1065 |
+
#: includes/admin/class-setup-wizard.php:621
|
1066 |
+
#: includes/admin/settings/register-settings.php:268
|
1067 |
+
msgid ""
|
1068 |
+
"Publisher Logo should have a wide aspect ratio, not a square icon, it should "
|
1069 |
+
"be no wider than 600px, and no taller than 60px."
|
1070 |
+
msgstr ""
|
1071 |
+
|
1072 |
+
#: includes/admin/class-welcome.php:200
|
1073 |
+
#: includes/admin/settings/display-settings.php:86
|
1074 |
+
msgid "Quick Configuration Wizard"
|
1075 |
+
msgstr ""
|
1076 |
+
|
1077 |
+
#: includes/admin/class-setup-wizard.php:151
|
1078 |
+
msgid "Ready!"
|
1079 |
+
msgstr ""
|
1080 |
+
|
1081 |
+
#: includes/admin/settings/register-settings.php:433
|
1082 |
+
msgid ""
|
1083 |
+
"Recommended. An internationalized version of the phone number, starting with "
|
1084 |
+
"the \"+\" symbol and country code (+1 in the US and Canada)."
|
1085 |
+
msgstr ""
|
1086 |
+
|
1087 |
+
#: includes/admin/settings/register-settings.php:441
|
1088 |
+
msgid "Recommended. The URL of contact page."
|
1089 |
+
msgstr ""
|
1090 |
+
|
1091 |
+
#: includes/admin/scripts.php:23 includes/admin/class-setup-wizard.php:81
|
1092 |
+
msgid "Remove"
|
1093 |
+
msgstr ""
|
1094 |
+
|
1095 |
+
#: includes/admin/class-welcome.php:215
|
1096 |
+
msgid "Report"
|
1097 |
+
msgstr ""
|
1098 |
+
|
1099 |
+
#: includes/admin/admin-functions.php:158
|
1100 |
+
msgid "Reservations"
|
1101 |
+
msgstr ""
|
1102 |
+
|
1103 |
+
#: includes/admin/class-setup-wizard.php:255
|
1104 |
+
msgid "Return to the WordPress Dashboard"
|
1105 |
+
msgstr ""
|
1106 |
+
|
1107 |
+
#: includes/admin/admin-functions.php:162
|
1108 |
+
msgid "Roadside Assistance"
|
1109 |
+
msgstr ""
|
1110 |
+
|
1111 |
+
#: includes/misc-functions.php:712
|
1112 |
+
msgid "Romanian Leu"
|
1113 |
+
msgstr ""
|
1114 |
+
|
1115 |
+
#: includes/misc-functions.php:713
|
1116 |
+
msgid "Russian Ruble"
|
1117 |
+
msgstr ""
|
1118 |
+
|
1119 |
+
#: includes/admin/admin-functions.php:157
|
1120 |
+
msgid "Sales"
|
1121 |
+
msgstr ""
|
1122 |
+
|
1123 |
+
#: includes/extensions/sameAs.php:74
|
1124 |
+
msgid "sameAs"
|
1125 |
+
msgstr "sameAs"
|
1126 |
+
|
1127 |
+
#: includes/admin/meta-tax.php:44
|
1128 |
+
msgid "sameAs "
|
1129 |
+
msgstr "sameAs "
|
1130 |
+
|
1131 |
+
#: includes/admin/meta.php:249
|
1132 |
+
#, php-format
|
1133 |
+
msgid "Save 15% off your purchase? Use discount code: <b>SPFREE15</b>"
|
1134 |
+
msgstr ""
|
1135 |
+
|
1136 |
+
#. #-#-#-#-# schema-code.pot (Schema 1.7) #-#-#-#-#
|
1137 |
+
#. Plugin Name of the plugin/theme
|
1138 |
+
#: includes/admin/class-feedback.php:293 includes/admin/meta.php:128
|
1139 |
+
#: includes/admin/class-menu.php:30 includes/admin/class-menu.php:31
|
1140 |
+
#: includes/admin/meta-tax.php:25
|
1141 |
+
#: includes/extensions/post-meta-generator.php:160
|
1142 |
+
#: includes/admin/settings/display-settings.php:65
|
1143 |
+
msgid "Schema"
|
1144 |
+
msgstr ""
|
1145 |
+
|
1146 |
+
#: includes/admin/post-type/schema-post-type.php:29
|
1147 |
+
msgctxt "schema"
|
1148 |
+
msgid "Add New"
|
1149 |
+
msgstr "Add New"
|
1150 |
+
|
1151 |
+
#: includes/admin/class-setup-wizard.php:188
|
1152 |
+
msgid "Schema › Setup Wizard"
|
1153 |
+
msgstr ""
|
1154 |
+
|
1155 |
+
#: includes/admin/post-type/schema-post-type.php:99
|
1156 |
+
msgid "Schema added."
|
1157 |
+
msgstr ""
|
1158 |
+
|
1159 |
+
#: includes/admin/class-welcome.php:306
|
1160 |
+
msgid ""
|
1161 |
+
"Schema allow you to enable AudioObject markup automatically whenever oEmbed "
|
1162 |
+
"is called on your page."
|
1163 |
+
msgstr ""
|
1164 |
+
|
1165 |
+
#: includes/admin/class-welcome.php:302
|
1166 |
+
msgid ""
|
1167 |
+
"Schema allow you to enable VideoObject markup automatically whenever oEmbed "
|
1168 |
+
"is called on your page."
|
1169 |
+
msgstr ""
|
1170 |
+
|
1171 |
+
#: includes/admin/post-type/schema-post-type.php:97
|
1172 |
+
msgid "Schema created."
|
1173 |
+
msgstr ""
|
1174 |
+
|
1175 |
+
#: includes/admin/post-type/schema-post-type.php:105
|
1176 |
+
msgid "Schema draft updated."
|
1177 |
+
msgstr ""
|
1178 |
+
|
1179 |
+
#: includes/admin/meta-exclude.php:69
|
1180 |
+
msgid "Schema Exclude"
|
1181 |
+
msgstr ""
|
1182 |
+
|
1183 |
+
#: includes/admin/class-welcome.php:346
|
1184 |
+
msgid ""
|
1185 |
+
"Schema markup is code (semantic vocabulary) that you put on your website to "
|
1186 |
+
"help the search engines return more informative results for users. So, "
|
1187 |
+
"Schema is not just for SEO reasons, it’s also for the benefit of the "
|
1188 |
+
"searcher."
|
1189 |
+
msgstr ""
|
1190 |
+
|
1191 |
+
#: includes/admin/meta.php:35
|
1192 |
+
msgid "Schema Markup Type"
|
1193 |
+
msgstr ""
|
1194 |
+
|
1195 |
+
#: includes/admin/class-welcome.php:269
|
1196 |
+
msgid "Schema plays nicely and support themes mentioned below."
|
1197 |
+
msgstr ""
|
1198 |
+
|
1199 |
+
#: includes/integrations/yoast-seo.php:81
|
1200 |
+
msgid ""
|
1201 |
+
"Schema plugin will override Yoast SEO output to avoid markup duplication. "
|
1202 |
+
"Check this box if you would like to disable Schema markup and use Yoast SEO "
|
1203 |
+
"output instead."
|
1204 |
+
msgstr ""
|
1205 |
+
|
1206 |
+
#: includes/admin/class-welcome.php:295
|
1207 |
+
msgid "Schema Post Type"
|
1208 |
+
msgstr ""
|
1209 |
+
|
1210 |
+
#. translators: %s: date and time of the revision
|
1211 |
+
#: includes/admin/post-type/schema-post-type.php:96
|
1212 |
+
#, php-format
|
1213 |
+
msgid "Schema restored to revision from %s"
|
1214 |
+
msgstr ""
|
1215 |
+
|
1216 |
+
#: includes/admin/post-type/schema-post-type.php:94
|
1217 |
+
#: includes/admin/post-type/schema-post-type.php:98
|
1218 |
+
msgid "Schema saved."
|
1219 |
+
msgstr ""
|
1220 |
+
|
1221 |
+
#: includes/admin/post-type/schema-post-type.php:101
|
1222 |
+
#, php-format
|
1223 |
+
msgid "Schema scheduled for: <strong>%1$s</strong>."
|
1224 |
+
msgstr ""
|
1225 |
+
|
1226 |
+
#: includes/admin/meta.php:265 includes/admin/class-menu.php:39
|
1227 |
+
msgid "Schema Settings"
|
1228 |
+
msgstr ""
|
1229 |
+
|
1230 |
+
#: includes/admin/class-setup-wizard.php:105
|
1231 |
+
msgid "Schema Setup"
|
1232 |
+
msgstr ""
|
1233 |
+
|
1234 |
+
#: includes/admin/class-setup-wizard.php:105
|
1235 |
+
msgid "Schema Setup Wizard"
|
1236 |
+
msgstr ""
|
1237 |
+
|
1238 |
+
#: includes/admin/post-type/schema-columns.php:27
|
1239 |
+
msgid "Schema Type"
|
1240 |
+
msgstr ""
|
1241 |
+
|
1242 |
+
#: includes/admin/post-type/schema-post-type.php:91
|
1243 |
+
msgid "Schema updated."
|
1244 |
+
msgstr ""
|
1245 |
+
|
1246 |
+
#: includes/admin/class-setup-wizard.php:690
|
1247 |
+
msgid ""
|
1248 |
+
"Schema will now take care of all the needed technical optimization of your "
|
1249 |
+
"site."
|
1250 |
+
msgstr ""
|
1251 |
+
|
1252 |
+
#: includes/admin/class-setup-wizard.php:146
|
1253 |
+
#: includes/admin/settings/register-settings.php:1022
|
1254 |
+
msgid "Schemas"
|
1255 |
+
msgstr ""
|
1256 |
+
|
1257 |
+
#: includes/admin/class-welcome.php:216
|
1258 |
+
msgid "ScholarlyArticle"
|
1259 |
+
msgstr ""
|
1260 |
+
|
1261 |
+
#: includes/admin/settings/contextual-help.php:50
|
1262 |
+
msgid "Search Results"
|
1263 |
+
msgstr ""
|
1264 |
+
|
1265 |
+
#: includes/admin/post-type/schema-post-type.php:35
|
1266 |
+
msgid "Search Schemas"
|
1267 |
+
msgstr ""
|
1268 |
+
|
1269 |
+
#: includes/admin/class-notices.php:53
|
1270 |
+
msgid "Security check failed"
|
1271 |
+
msgstr ""
|
1272 |
+
|
1273 |
+
#: includes/extensions/audio-object.php:37
|
1274 |
+
msgid "Select audio markup type."
|
1275 |
+
msgstr ""
|
1276 |
+
|
1277 |
+
#: includes/admin/meta.php:192
|
1278 |
+
msgid "Select field type"
|
1279 |
+
msgstr ""
|
1280 |
+
|
1281 |
+
#: includes/admin/meta.php:150
|
1282 |
+
msgid "Select Filter"
|
1283 |
+
msgstr ""
|
1284 |
+
|
1285 |
+
#: includes/admin/meta.php:66
|
1286 |
+
msgid "Select more specific article type"
|
1287 |
+
msgstr ""
|
1288 |
+
|
1289 |
+
#: includes/admin/class-setup-wizard.php:811
|
1290 |
+
#: includes/admin/settings/register-settings.php:1668
|
1291 |
+
#: includes/admin/meta/class-meta.php:42
|
1292 |
+
msgid "Select One"
|
1293 |
+
msgstr ""
|
1294 |
+
|
1295 |
+
#: includes/admin/meta.php:36
|
1296 |
+
msgid "Select Schema type which describes your content best"
|
1297 |
+
msgstr ""
|
1298 |
+
|
1299 |
+
#: includes/admin/settings/register-settings.php:246
|
1300 |
+
msgid "Select Site Type"
|
1301 |
+
msgstr ""
|
1302 |
+
|
1303 |
+
#: includes/admin/meta.php:195
|
1304 |
+
msgid "Select Type"
|
1305 |
+
msgstr ""
|
1306 |
+
|
1307 |
+
#: includes/extensions/video-object.php:37
|
1308 |
+
msgid "Select video markup type."
|
1309 |
+
msgstr ""
|
1310 |
+
|
1311 |
+
#: includes/admin/class-menu.php:40
|
1312 |
+
msgid "Settings"
|
1313 |
+
msgstr ""
|
1314 |
+
|
1315 |
+
#: includes/admin/class-notices.php:32
|
1316 |
+
msgid "Settings successfully imported"
|
1317 |
+
msgstr ""
|
1318 |
+
|
1319 |
+
#: includes/admin/class-notices.php:20
|
1320 |
+
msgid "Settings updated."
|
1321 |
+
msgstr ""
|
1322 |
+
|
1323 |
+
#: includes/misc-functions.php:714
|
1324 |
+
msgid "Singapore Dollar"
|
1325 |
+
msgstr ""
|
1326 |
+
|
1327 |
+
#: includes/extensions/audio-object.php:47
|
1328 |
+
msgid "Single audio"
|
1329 |
+
msgstr ""
|
1330 |
+
|
1331 |
+
#: includes/extensions/video-object.php:47
|
1332 |
+
msgid "Single video"
|
1333 |
+
msgstr ""
|
1334 |
+
|
1335 |
+
#: includes/admin/settings/register-settings.php:478
|
1336 |
+
msgid "Site Alternate Name"
|
1337 |
+
msgstr ""
|
1338 |
+
|
1339 |
+
#: includes/admin/settings/register-settings.php:470
|
1340 |
+
msgid "Site Name"
|
1341 |
+
msgstr ""
|
1342 |
+
|
1343 |
+
#: includes/admin/class-setup-wizard.php:131
|
1344 |
+
#: includes/admin/class-setup-wizard.php:331
|
1345 |
+
#: includes/admin/class-setup-wizard.php:343
|
1346 |
+
#: includes/admin/settings/register-settings.php:242
|
1347 |
+
msgid "Site Type"
|
1348 |
+
msgstr ""
|
1349 |
+
|
1350 |
+
#: includes/admin/class-setup-wizard.php:369
|
1351 |
+
#: includes/admin/class-setup-wizard.php:432
|
1352 |
+
#: includes/admin/class-setup-wizard.php:576
|
1353 |
+
#: includes/admin/class-setup-wizard.php:676
|
1354 |
+
msgid "Skip this step"
|
1355 |
+
msgstr ""
|
1356 |
+
|
1357 |
+
#: includes/admin/class-setup-wizard.php:141
|
1358 |
+
#: includes/admin/class-setup-wizard.php:445
|
1359 |
+
#: includes/admin/settings/register-settings.php:335
|
1360 |
+
msgid "Social Profiles"
|
1361 |
+
msgstr ""
|
1362 |
+
|
1363 |
+
#: includes/admin/class-setup-wizard.php:550
|
1364 |
+
#: includes/admin/class-setup-wizard.php:553
|
1365 |
+
#: includes/admin/settings/register-settings.php:404
|
1366 |
+
msgid "SoundCloud"
|
1367 |
+
msgstr ""
|
1368 |
+
|
1369 |
+
#: includes/misc-functions.php:715
|
1370 |
+
msgid "South African rand"
|
1371 |
+
msgstr ""
|
1372 |
+
|
1373 |
+
#: includes/misc-functions.php:702
|
1374 |
+
msgid "South Korean Won"
|
1375 |
+
msgstr ""
|
1376 |
+
|
1377 |
+
#: includes/admin/class-setup-wizard.php:422
|
1378 |
+
#: includes/admin/settings/register-settings.php:323
|
1379 |
+
msgid ""
|
1380 |
+
"Specify the image of your organization's logo to be used in Google Search "
|
1381 |
+
"results and in the Knowledge Graph.<br />Learn more about"
|
1382 |
+
msgstr ""
|
1383 |
+
|
1384 |
+
#: includes/admin/class-welcome.php:349
|
1385 |
+
msgid ""
|
1386 |
+
"Structured Data can help you to send the right signals to search engines "
|
1387 |
+
"about your business and content."
|
1388 |
+
msgstr ""
|
1389 |
+
|
1390 |
+
#: includes/admin/class-welcome.php:350
|
1391 |
+
msgid ""
|
1392 |
+
"Structured Data helps search engines to understand what the content is "
|
1393 |
+
"specifically about. Moreover, structured data will allow users to see the "
|
1394 |
+
"value of a website before they visit, via rich snippets, which are rich data "
|
1395 |
+
"that are displayed in the SERP’s."
|
1396 |
+
msgstr ""
|
1397 |
+
|
1398 |
+
#: includes/admin/admin-bar-menu.php:41
|
1399 |
+
msgid "Structured Data Testing Tool"
|
1400 |
+
msgstr ""
|
1401 |
+
|
1402 |
+
#: includes/admin/class-welcome.php:369
|
1403 |
+
msgid "Support"
|
1404 |
+
msgstr ""
|
1405 |
+
|
1406 |
+
#: includes/admin/class-welcome.php:207
|
1407 |
+
msgid "Support More Schema Types"
|
1408 |
+
msgstr ""
|
1409 |
+
|
1410 |
+
#: includes/admin/class-welcome.php:307
|
1411 |
+
msgid "Supported oEmbed audios: SoundCloud, and Mixcloud."
|
1412 |
+
msgstr ""
|
1413 |
+
|
1414 |
+
#: includes/admin/class-welcome.php:303
|
1415 |
+
msgid ""
|
1416 |
+
"Supported oEmbed videos: Dailymotion, TED, Vimeo, VideoPress, Vine, YouTube."
|
1417 |
+
msgstr ""
|
1418 |
+
|
1419 |
+
#: includes/misc-functions.php:716
|
1420 |
+
msgid "Swedish Krona"
|
1421 |
+
msgstr ""
|
1422 |
+
|
1423 |
+
#: includes/misc-functions.php:717
|
1424 |
+
msgid "Swiss Franc"
|
1425 |
+
msgstr ""
|
1426 |
+
|
1427 |
+
#: includes/misc-functions.php:718
|
1428 |
+
msgid "Taiwan New Dollars"
|
1429 |
+
msgstr ""
|
1430 |
+
|
1431 |
+
#: includes/admin/class-welcome.php:217
|
1432 |
+
msgid "TechArticle"
|
1433 |
+
msgstr ""
|
1434 |
+
|
1435 |
+
#: includes/admin/admin-functions.php:154
|
1436 |
+
msgid "Technical Support"
|
1437 |
+
msgstr ""
|
1438 |
+
|
1439 |
+
#: includes/admin/settings/register-settings.php:432
|
1440 |
+
msgid "Telephone"
|
1441 |
+
msgstr ""
|
1442 |
+
|
1443 |
+
#: includes/admin/settings/register-settings.php:455
|
1444 |
+
msgid "Tell Google to show a Sitelinks search box."
|
1445 |
+
msgstr ""
|
1446 |
+
|
1447 |
+
#: includes/admin/settings/register-settings.php:464
|
1448 |
+
msgid "Tell Google to show your site name in search results."
|
1449 |
+
msgstr ""
|
1450 |
+
|
1451 |
+
#: includes/admin/meta.php:198
|
1452 |
+
msgid "Text"
|
1453 |
+
msgstr ""
|
1454 |
+
|
1455 |
+
#: includes/admin/meta.php:202
|
1456 |
+
msgid "Text Area"
|
1457 |
+
msgstr ""
|
1458 |
+
|
1459 |
+
#: includes/misc-functions.php:719
|
1460 |
+
msgid "Thai Baht"
|
1461 |
+
msgstr ""
|
1462 |
+
|
1463 |
+
#: includes/admin/class-setup-wizard.php:317
|
1464 |
+
msgid ""
|
1465 |
+
"Thank you for choosing Schema to power your website! This quick setup wizard "
|
1466 |
+
"will help you configure the basic settings. <strong>It’s completely optional "
|
1467 |
+
"and shouldn’t take longer than two minutes.</strong>"
|
1468 |
+
msgstr ""
|
1469 |
+
|
1470 |
+
#: includes/admin/class-welcome.php:185
|
1471 |
+
msgid ""
|
1472 |
+
"Thank you for installing Schema. The best Schema.org plugin for WordPress."
|
1473 |
+
msgstr ""
|
1474 |
+
|
1475 |
+
#: includes/admin/class-welcome.php:332
|
1476 |
+
msgid ""
|
1477 |
+
"Thank you for installing Schema. The best schema.org plugin for WordPress."
|
1478 |
+
msgstr ""
|
1479 |
+
|
1480 |
+
#: includes/admin/class-welcome.php:389
|
1481 |
+
msgid "Thank you for updating to the latest version!"
|
1482 |
+
msgstr ""
|
1483 |
+
|
1484 |
+
#. Description of the plugin/theme
|
1485 |
+
msgid "The next generation of Structured Data."
|
1486 |
+
msgstr ""
|
1487 |
+
|
1488 |
+
#: includes/admin/class-welcome.php:70 includes/admin/class-welcome.php:71
|
1489 |
+
msgid "The people that build Schema"
|
1490 |
+
msgstr ""
|
1491 |
+
|
1492 |
+
#: includes/admin/class-welcome.php:285
|
1493 |
+
msgid "The SEO Framework plugin is active?"
|
1494 |
+
msgstr ""
|
1495 |
+
|
1496 |
+
#: includes/admin/extensions.php:142
|
1497 |
+
msgid ""
|
1498 |
+
"There was an error retrieving the extensions list from the server. Please "
|
1499 |
+
"try again later."
|
1500 |
+
msgstr ""
|
1501 |
+
|
1502 |
+
#: includes/admin/extensions.php:46
|
1503 |
+
msgid ""
|
1504 |
+
"These extensions <em><strong>add functionality</strong></em> to your Schema-"
|
1505 |
+
"powered site."
|
1506 |
+
msgstr ""
|
1507 |
+
|
1508 |
+
#: includes/admin/meta.php:134
|
1509 |
+
msgid ""
|
1510 |
+
"This feature allow you to override the schema.org markups output generated "
|
1511 |
+
"by the Schema plugin."
|
1512 |
+
msgstr ""
|
1513 |
+
|
1514 |
+
#: includes/admin/meta.php:124
|
1515 |
+
msgid ""
|
1516 |
+
"This field will allow you to override the Schema post meta box title, "
|
1517 |
+
"default: Schema"
|
1518 |
+
msgstr ""
|
1519 |
+
|
1520 |
+
#: includes/admin/class-setup-wizard.php:335
|
1521 |
+
msgid ""
|
1522 |
+
"This information can help us to prioritize future additions to our plugin "
|
1523 |
+
"for specific types of sites"
|
1524 |
+
msgstr ""
|
1525 |
+
|
1526 |
+
#: includes/admin/class-setup-wizard.php:385
|
1527 |
+
#: includes/admin/settings/register-settings.php:284
|
1528 |
+
msgid ""
|
1529 |
+
"This information will be used in Google's Knowledge Graph Card, the big "
|
1530 |
+
"block of information you see on the right side of the search results."
|
1531 |
+
msgstr ""
|
1532 |
+
|
1533 |
+
#: includes/admin/meta.php:146
|
1534 |
+
msgid "This is the filter name"
|
1535 |
+
msgstr ""
|
1536 |
+
|
1537 |
+
#: includes/admin/meta.php:133
|
1538 |
+
msgid ""
|
1539 |
+
"This is where you can define a source for schema.org markup fields to "
|
1540 |
+
"override its output. Select a filter name, then define post meta key name to "
|
1541 |
+
"pull data from, or tick the check box to automatically create a new custom "
|
1542 |
+
"post meta field to insert values manually when editing posts."
|
1543 |
+
msgstr ""
|
1544 |
+
|
1545 |
+
#: includes/admin/settings/contextual-help.php:57
|
1546 |
+
msgid ""
|
1547 |
+
"This screen provides access to settings added by most Schema extensions."
|
1548 |
+
msgstr ""
|
1549 |
+
|
1550 |
+
#: includes/admin/settings/contextual-help.php:64
|
1551 |
+
msgid ""
|
1552 |
+
"This screen provides advanced options such as deleting plugin data on "
|
1553 |
+
"uninstall."
|
1554 |
+
msgstr ""
|
1555 |
+
|
1556 |
+
#: includes/admin/settings/contextual-help.php:51
|
1557 |
+
msgid ""
|
1558 |
+
"This screen provides settings for configuring Search Results. You can set "
|
1559 |
+
"Sitelinks Search Box and Site Name."
|
1560 |
+
msgstr ""
|
1561 |
+
|
1562 |
+
#: includes/admin/settings/contextual-help.php:45
|
1563 |
+
msgid ""
|
1564 |
+
"This screen provides settings for configuring the Knowledge Graph. You can "
|
1565 |
+
"set Organization Info and Corporate Contacts."
|
1566 |
+
msgstr ""
|
1567 |
+
|
1568 |
+
#: includes/admin/settings/contextual-help.php:39
|
1569 |
+
msgid ""
|
1570 |
+
"This screen provides the most basic settings for configuring Schema plugin "
|
1571 |
+
"on your site. You can set Schema for About and Contact pages, and turn "
|
1572 |
+
"automatic <em>Feature image</em> on and off...etc"
|
1573 |
+
msgstr ""
|
1574 |
+
|
1575 |
+
#: includes/admin/class-setup-wizard.php:390
|
1576 |
+
#: includes/admin/settings/register-settings.php:290
|
1577 |
+
msgid "This Website Represent"
|
1578 |
+
msgstr ""
|
1579 |
+
|
1580 |
+
#: includes/admin/meta-exclude.php:37
|
1581 |
+
msgid "Tick this checkbox to turn off Schema output on this entry."
|
1582 |
+
msgstr ""
|
1583 |
+
|
1584 |
+
#: includes/admin/meta.php:122 includes/extensions/audio-object.php:100
|
1585 |
+
#: includes/extensions/video-object.php:100
|
1586 |
+
msgid "Title"
|
1587 |
+
msgstr ""
|
1588 |
+
|
1589 |
+
#: includes/admin/class-setup-wizard.php:562
|
1590 |
+
#: includes/admin/class-setup-wizard.php:565
|
1591 |
+
#: includes/admin/settings/register-settings.php:412
|
1592 |
+
msgid "Tumblr"
|
1593 |
+
msgstr ""
|
1594 |
+
|
1595 |
+
#: includes/misc-functions.php:720
|
1596 |
+
msgid "Turkish Lira"
|
1597 |
+
msgstr ""
|
1598 |
+
|
1599 |
+
#: includes/admin/meta-exclude.php:36
|
1600 |
+
msgid "Turn Schema OFF"
|
1601 |
+
msgstr ""
|
1602 |
+
|
1603 |
+
#: includes/admin/class-setup-wizard.php:466
|
1604 |
+
#: includes/admin/class-setup-wizard.php:469
|
1605 |
+
#: includes/admin/settings/register-settings.php:349
|
1606 |
+
msgid "Twitter"
|
1607 |
+
msgstr ""
|
1608 |
+
|
1609 |
+
#: includes/admin/meta.php:191
|
1610 |
+
msgid "Type"
|
1611 |
+
msgstr ""
|
1612 |
+
|
1613 |
+
#: includes/admin/class-menu.php:56 includes/admin/class-menu.php:57
|
1614 |
+
msgid "Types"
|
1615 |
+
msgstr ""
|
1616 |
+
|
1617 |
+
#: includes/extensions/audio-object.php:107
|
1618 |
+
#: includes/extensions/video-object.php:107
|
1619 |
+
msgid "Upload Date"
|
1620 |
+
msgstr ""
|
1621 |
+
|
1622 |
+
#: includes/admin/settings/register-settings.php:440
|
1623 |
+
msgid "URL"
|
1624 |
+
msgstr ""
|
1625 |
+
|
1626 |
+
#: includes/admin/meta-tax.php:44 includes/extensions/sameAs.php:40
|
1627 |
+
msgid ""
|
1628 |
+
"URL of a reference Web page that unambiguously indicates the item's identity."
|
1629 |
+
" E.g. the URL of the item's Wikipedia page, Freebase page, or official "
|
1630 |
+
"website."
|
1631 |
+
msgstr ""
|
1632 |
+
"URL of a reference Web page that unambiguously indicates the item's identity."
|
1633 |
+
" E.g. the URL of the item's Wikipedia page, Freebase page, or official "
|
1634 |
+
"website."
|
1635 |
+
|
1636 |
+
#: includes/extensions/sameAs.php:39
|
1637 |
+
msgid "URLs"
|
1638 |
+
msgstr "URLs"
|
1639 |
+
|
1640 |
+
#: includes/misc-functions.php:721
|
1641 |
+
msgid "US Dollars"
|
1642 |
+
msgstr ""
|
1643 |
+
|
1644 |
+
#: includes/admin/scripts.php:22 includes/admin/class-setup-wizard.php:80
|
1645 |
+
msgid "Use This File"
|
1646 |
+
msgstr ""
|
1647 |
+
|
1648 |
+
#: includes/admin/class-welcome.php:282
|
1649 |
+
msgid "Uses Thesis Theme 2.x Post Image"
|
1650 |
+
msgstr ""
|
1651 |
+
|
1652 |
+
#: includes/admin/class-welcome.php:281
|
1653 |
+
msgid ""
|
1654 |
+
"Using Genesis Framework? The Schema plugin will automatically indicate that "
|
1655 |
+
"and correct Genesis Schema output."
|
1656 |
+
msgstr ""
|
1657 |
+
|
1658 |
+
#: includes/admin/class-welcome.php:283
|
1659 |
+
msgid ""
|
1660 |
+
"Using Thesis? The Schema plugin will automatically indicate and use Thesis "
|
1661 |
+
"Post Image is are presented."
|
1662 |
+
msgstr ""
|
1663 |
+
|
1664 |
+
#: includes/admin/class-welcome.php:188 includes/admin/class-welcome.php:333
|
1665 |
+
#: includes/admin/class-welcome.php:390
|
1666 |
+
#, php-format
|
1667 |
+
msgid "Version %s"
|
1668 |
+
msgstr ""
|
1669 |
+
|
1670 |
+
#: includes/extensions/video-object.php:115
|
1671 |
+
msgid "Video duration, example: if duration is 1 Hour 35 MIN, use: PT1H35M"
|
1672 |
+
msgstr ""
|
1673 |
+
|
1674 |
+
#: includes/extensions/video-object.php:36
|
1675 |
+
msgid "Video Markups"
|
1676 |
+
msgstr ""
|
1677 |
+
|
1678 |
+
#: includes/extensions/video-object.php:122
|
1679 |
+
msgid "Video short description."
|
1680 |
+
msgstr ""
|
1681 |
+
|
1682 |
+
#: includes/extensions/video-object.php:101
|
1683 |
+
msgid "Video title"
|
1684 |
+
msgstr ""
|
1685 |
+
|
1686 |
+
#: includes/extensions/video-object.php:108
|
1687 |
+
msgid "Video upload date in ISO 8601 format YYYY-MM-DD example: 2016-06-23"
|
1688 |
+
msgstr ""
|
1689 |
+
|
1690 |
+
#: includes/admin/class-setup-wizard.php:656
|
1691 |
+
#: includes/admin/class-setup-wizard.php:659
|
1692 |
+
msgid "VideoObject"
|
1693 |
+
msgstr ""
|
1694 |
+
|
1695 |
+
#: includes/misc-functions.php:722
|
1696 |
+
msgid "Vietnamese Dong"
|
1697 |
+
msgstr ""
|
1698 |
+
|
1699 |
+
#: includes/admin/class-welcome.php:421
|
1700 |
+
#, php-format
|
1701 |
+
msgid "View %s"
|
1702 |
+
msgstr ""
|
1703 |
+
|
1704 |
+
#: includes/admin/post-type/schema-post-type.php:33
|
1705 |
+
msgid "View Schema"
|
1706 |
+
msgstr ""
|
1707 |
+
|
1708 |
+
#: includes/admin/post-type/schema-post-type.php:111
|
1709 |
+
msgid "View schema"
|
1710 |
+
msgstr ""
|
1711 |
+
|
1712 |
+
#: includes/admin/settings/contextual-help.php:27
|
1713 |
+
#, php-format
|
1714 |
+
msgid "Visit the <a href=\"%s\">documentation</a> on the schema.press website."
|
1715 |
+
msgstr ""
|
1716 |
+
|
1717 |
+
#: includes/admin/meta.php:249
|
1718 |
+
msgid "Want to enable new features?"
|
1719 |
+
msgstr ""
|
1720 |
+
|
1721 |
+
#: includes/admin/scripts.php:25 includes/admin/class-setup-wizard.php:83
|
1722 |
+
msgid ""
|
1723 |
+
"We are sorry but your browser is not compatible with this kind of file "
|
1724 |
+
"upload. Please upgrade your browser."
|
1725 |
+
msgstr ""
|
1726 |
+
|
1727 |
+
#: includes/admin/class-welcome.php:370
|
1728 |
+
msgid ""
|
1729 |
+
"We do our best to provide support we can. If you encounter a problem, report "
|
1730 |
+
"it to <a href=\"https://wordpress.org/support/plugin/schema\">support</a>."
|
1731 |
+
msgstr ""
|
1732 |
+
|
1733 |
+
#: includes/admin/settings/register-settings.php:313
|
1734 |
+
msgid "Website URL"
|
1735 |
+
msgstr ""
|
1736 |
+
|
1737 |
+
#: includes/admin/class-welcome.php:184 includes/admin/class-welcome.php:331
|
1738 |
+
#: includes/admin/class-welcome.php:388
|
1739 |
+
#, php-format
|
1740 |
+
msgid "Welcome to Schema v%s"
|
1741 |
+
msgstr ""
|
1742 |
+
|
1743 |
+
#: includes/admin/class-setup-wizard.php:316
|
1744 |
+
msgid "Welcome to Schema!"
|
1745 |
+
msgstr ""
|
1746 |
+
|
1747 |
+
#: includes/admin/class-welcome.php:345
|
1748 |
+
msgid "What is Schema markup?"
|
1749 |
+
msgstr ""
|
1750 |
+
|
1751 |
+
#: includes/admin/class-setup-wizard.php:333
|
1752 |
+
msgid "What is your site about?"
|
1753 |
+
msgstr ""
|
1754 |
+
|
1755 |
+
#: includes/admin/class-welcome.php:160
|
1756 |
+
msgid "What's New"
|
1757 |
+
msgstr ""
|
1758 |
+
|
1759 |
+
#: includes/admin/class-welcome.php:52 includes/admin/class-welcome.php:53
|
1760 |
+
msgid "What's new in Schema"
|
1761 |
+
msgstr ""
|
1762 |
+
|
1763 |
+
#: includes/admin/class-welcome.php:348
|
1764 |
+
msgid "Why is Structured Data so Important?"
|
1765 |
+
msgstr ""
|
1766 |
+
|
1767 |
+
#: includes/admin/class-welcome.php:230
|
1768 |
+
msgid "WPFooter"
|
1769 |
+
msgstr ""
|
1770 |
+
|
1771 |
+
#: includes/admin/class-welcome.php:226
|
1772 |
+
msgid "WPHeader"
|
1773 |
+
msgstr ""
|
1774 |
+
|
1775 |
+
#: includes/admin/class-setup-wizard.php:629
|
1776 |
+
#: includes/admin/class-setup-wizard.php:632
|
1777 |
+
#: includes/admin/settings/register-settings.php:545
|
1778 |
+
msgid "WPHeader and WPFooter"
|
1779 |
+
msgstr ""
|
1780 |
+
|
1781 |
+
#: includes/admin/class-welcome.php:277
|
1782 |
+
msgid "WPRichSnippets plugin"
|
1783 |
+
msgstr ""
|
1784 |
+
|
1785 |
+
#: includes/integrations/yoast-seo.php:78
|
1786 |
+
msgid "Yes"
|
1787 |
+
msgstr ""
|
1788 |
+
|
1789 |
+
#: includes/admin/class-setup-wizard.php:692
|
1790 |
+
msgid "You can change settings from"
|
1791 |
+
msgstr ""
|
1792 |
+
|
1793 |
+
#: schema.php:124 schema.php:136
|
1794 |
+
msgid "You don’t have permission to do this"
|
1795 |
+
msgstr ""
|
1796 |
+
|
1797 |
+
#: includes/admin/class-feedback.php:234
|
1798 |
+
#, php-format
|
1799 |
+
msgid "You have been using the %s plugin for %s now!"
|
1800 |
+
msgstr ""
|
1801 |
+
|
1802 |
+
#: includes/extensions/audio-object.php:95
|
1803 |
+
msgid ""
|
1804 |
+
"You have enabled AudioObject, if you see an error in the <a "
|
1805 |
+
"target=\"_blank\" href=\"https://search.google.com/structured-data/testing-"
|
1806 |
+
"tool\">testing tool</a>, use the fields below to fill the missing fields, "
|
1807 |
+
"correct markup errors, and add additional details about the audio embedded "
|
1808 |
+
"in your content editor."
|
1809 |
+
msgstr ""
|
1810 |
+
|
1811 |
+
#: includes/extensions/video-object.php:95
|
1812 |
+
msgid ""
|
1813 |
+
"You have enabled VideoObject, if you see an error in the <a "
|
1814 |
+
"target=\"_blank\" href=\"https://search.google.com/structured-data/testing-"
|
1815 |
+
"tool\">testing tool</a>, use the fields below to fill the missing fields, "
|
1816 |
+
"correct markup errors, and add additional details about the video embedded "
|
1817 |
+
"in your content editor."
|
1818 |
+
msgstr ""
|
1819 |
+
|
1820 |
+
#: includes/admin/updater/class-license-handler.php:436
|
1821 |
+
#, php-format
|
1822 |
+
msgid ""
|
1823 |
+
"You have invalid or expired license keys for Schema. Please go to the <a "
|
1824 |
+
"href=\"%s\">Licenses page</a> to correct this issue."
|
1825 |
+
msgstr ""
|
1826 |
+
|
1827 |
+
#: includes/admin/post-type/schema-wp-ajax.php:95
|
1828 |
+
msgid "You must select at least one post type!"
|
1829 |
+
msgstr ""
|
1830 |
+
|
1831 |
+
#: includes/admin/class-setup-wizard.php:688
|
1832 |
+
msgid "You've done it!"
|
1833 |
+
msgstr ""
|
1834 |
+
|
1835 |
+
#: includes/admin/class-feedback.php:236
|
1836 |
+
msgid "your feedback"
|
1837 |
+
msgstr ""
|
1838 |
+
|
1839 |
+
#: schema.php:147
|
1840 |
+
msgid ""
|
1841 |
+
"Your version of PHP is below the minimum version of PHP required by Schema "
|
1842 |
+
"plugin. Please contact your host and request that your version be upgraded "
|
1843 |
+
"to 5.4 or later."
|
1844 |
+
msgstr ""
|
1845 |
+
|
1846 |
+
#: includes/admin/class-setup-wizard.php:502
|
1847 |
+
#: includes/admin/class-setup-wizard.php:505
|
1848 |
+
#: includes/admin/settings/register-settings.php:373
|
1849 |
+
msgid "YouTube"
|
1850 |
+
msgstr ""
|
languages/schema-wp-es.po
ADDED
@@ -0,0 +1,1953 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of Plugins - Schema - Stable (latest release) in Spanish (Spain)
|
2 |
+
# This file is distributed under the same license as the Plugins - Schema - Stable (latest release) package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2018-07-20 22:49:08+0000\n"
|
6 |
+
"MIME-Version: 1.0\n"
|
7 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
+
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: GlotPress/2.4.0-alpha\n"
|
11 |
+
"Language: es\n"
|
12 |
+
"Project-Id-Version: Plugins - Schema - Stable (latest release)\n"
|
13 |
+
|
14 |
+
#. Author URI of the plugin/theme
|
15 |
+
msgid "http://zebida.com"
|
16 |
+
msgstr ""
|
17 |
+
|
18 |
+
#. Author of the plugin/theme
|
19 |
+
msgid "Hesham"
|
20 |
+
msgstr ""
|
21 |
+
|
22 |
+
#. Description of the plugin/theme
|
23 |
+
msgid "The next generation of Structured Data."
|
24 |
+
msgstr ""
|
25 |
+
|
26 |
+
#. Plugin URI of the plugin/theme
|
27 |
+
msgid "https://schema.press"
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
#: schema.php:143
|
31 |
+
msgid "Your version of PHP is below the minimum version of PHP required by Schema plugin. Please contact your host and request that your version be upgraded to 5.4 or later."
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
#: schema.php:120 schema.php:132
|
35 |
+
msgid "Cheatin’ huh?"
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: includes/misc-functions.php:657
|
39 |
+
msgid "Egyptian Pound"
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: includes/misc-functions.php:656
|
43 |
+
msgid "Vietnamese Dong"
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: includes/misc-functions.php:655
|
47 |
+
msgid "US Dollars"
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: includes/misc-functions.php:654
|
51 |
+
msgid "Turkish Lira"
|
52 |
+
msgstr ""
|
53 |
+
|
54 |
+
#: includes/misc-functions.php:653
|
55 |
+
msgid "Thai Baht"
|
56 |
+
msgstr ""
|
57 |
+
|
58 |
+
#: includes/misc-functions.php:652
|
59 |
+
msgid "Taiwan New Dollars"
|
60 |
+
msgstr ""
|
61 |
+
|
62 |
+
#: includes/misc-functions.php:651
|
63 |
+
msgid "Swiss Franc"
|
64 |
+
msgstr ""
|
65 |
+
|
66 |
+
#: includes/misc-functions.php:650
|
67 |
+
msgid "Swedish Krona"
|
68 |
+
msgstr ""
|
69 |
+
|
70 |
+
#: includes/misc-functions.php:649
|
71 |
+
msgid "South African rand"
|
72 |
+
msgstr ""
|
73 |
+
|
74 |
+
#: includes/misc-functions.php:648
|
75 |
+
msgid "Singapore Dollar"
|
76 |
+
msgstr ""
|
77 |
+
|
78 |
+
#: includes/misc-functions.php:647
|
79 |
+
msgid "Russian Ruble"
|
80 |
+
msgstr ""
|
81 |
+
|
82 |
+
#: includes/misc-functions.php:646
|
83 |
+
msgid "Romanian Leu"
|
84 |
+
msgstr ""
|
85 |
+
|
86 |
+
#: includes/misc-functions.php:645
|
87 |
+
msgid "Pounds Sterling"
|
88 |
+
msgstr ""
|
89 |
+
|
90 |
+
#: includes/misc-functions.php:644
|
91 |
+
msgid "Polish Zloty"
|
92 |
+
msgstr ""
|
93 |
+
|
94 |
+
#: includes/misc-functions.php:643
|
95 |
+
msgid "Philippine Pesos"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: includes/misc-functions.php:642
|
99 |
+
msgid "Paraguayan Guaraní"
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: includes/misc-functions.php:641
|
103 |
+
msgid "New Zealand Dollar"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: includes/misc-functions.php:640
|
107 |
+
msgid "Norwegian Krone"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: includes/misc-functions.php:639
|
111 |
+
msgid "Nigerian Naira"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: includes/misc-functions.php:638
|
115 |
+
msgid "Mexican Peso"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: includes/misc-functions.php:637
|
119 |
+
msgid "Malaysian Ringgits"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: includes/misc-functions.php:636
|
123 |
+
msgid "South Korean Won"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: includes/misc-functions.php:635
|
127 |
+
msgid "Lao Kip"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: includes/misc-functions.php:634
|
131 |
+
msgid "Japanese Yen"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: includes/misc-functions.php:633
|
135 |
+
msgid "Israeli Shekel"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: includes/misc-functions.php:632
|
139 |
+
msgid "Nepali Rupee"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: includes/misc-functions.php:631
|
143 |
+
msgid "Indian Rupee"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: includes/misc-functions.php:630
|
147 |
+
msgid "Indonesia Rupiah"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: includes/misc-functions.php:629
|
151 |
+
msgid "Icelandic krona"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: includes/misc-functions.php:628
|
155 |
+
msgid "Hungarian Forint"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: includes/misc-functions.php:627
|
159 |
+
msgid "Croatia kuna"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: includes/misc-functions.php:626
|
163 |
+
msgid "Hong Kong Dollar"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: includes/misc-functions.php:625
|
167 |
+
msgid "Euros"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: includes/misc-functions.php:624
|
171 |
+
msgid "Dominican Peso"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: includes/misc-functions.php:623
|
175 |
+
msgid "Danish Krone"
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: includes/misc-functions.php:622
|
179 |
+
msgid "Czech Koruna"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: includes/misc-functions.php:621
|
183 |
+
msgid "Colombian Peso"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: includes/misc-functions.php:620
|
187 |
+
msgid "Chinese Yuan"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: includes/misc-functions.php:619
|
191 |
+
msgid "Chilean Peso"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: includes/misc-functions.php:618
|
195 |
+
msgid "Canadian Dollars"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: includes/misc-functions.php:617
|
199 |
+
msgid "Bulgarian Lev"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: includes/misc-functions.php:616
|
203 |
+
msgid "Brazilian Real"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: includes/misc-functions.php:615
|
207 |
+
msgid "Bangladeshi Taka"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: includes/misc-functions.php:614
|
211 |
+
msgid "Australian Dollars"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: includes/json/web-page-element.php:128
|
215 |
+
msgid "Search Results for “%s”"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: includes/json/web-page-element.php:76
|
219 |
+
msgid "It looks like nothing was found at this location!"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: includes/json/web-page-element.php:75
|
223 |
+
msgid "Page not found"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: includes/json/tag.php:84
|
227 |
+
msgid " Tag"
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: includes/json/category.php:108
|
231 |
+
msgid " Category"
|
232 |
+
msgstr ""
|
233 |
+
|
234 |
+
#: includes/integrations/yoast-seo.php:81
|
235 |
+
msgid "These are the features that will be disabled:<br /><ol><li>Organization/Person</li><li>Social Profiles</li><li>Breadcrumb</li><li>Sitelink Search Box</li></ol>"
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: includes/integrations/yoast-seo.php:81
|
239 |
+
msgid "Schema plugin will override Yoast SEO output to avoid markup duplication."
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: includes/integrations/yoast-seo.php:78
|
243 |
+
msgid "Yes"
|
244 |
+
msgstr "Sí"
|
245 |
+
|
246 |
+
#: includes/integrations/yoast-seo.php:77
|
247 |
+
msgid "Disable Duplicate Features that Yoast SEO Offers?"
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: includes/integrations/genesis.php:112
|
251 |
+
msgid "Search"
|
252 |
+
msgstr ""
|
253 |
+
|
254 |
+
#: includes/integrations/genesis.php:110 includes/integrations/genesis.php:129
|
255 |
+
msgid "Search this website"
|
256 |
+
msgstr ""
|
257 |
+
|
258 |
+
#: includes/install.php:88
|
259 |
+
msgid "Page"
|
260 |
+
msgstr ""
|
261 |
+
|
262 |
+
#: includes/install.php:45
|
263 |
+
msgid "Post"
|
264 |
+
msgstr ""
|
265 |
+
|
266 |
+
#: includes/extensions/video-object.php:123
|
267 |
+
msgid "Video short description."
|
268 |
+
msgstr ""
|
269 |
+
|
270 |
+
#: includes/extensions/video-object.php:116
|
271 |
+
msgid "Video duration, example: if duration is 1 Hour 35 MIN, use: PT1H35M"
|
272 |
+
msgstr ""
|
273 |
+
|
274 |
+
#: includes/extensions/video-object.php:109
|
275 |
+
msgid "Video upload date in ISO 8601 format YYYY-MM-DD example: 2016-06-23"
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
+
#: includes/extensions/video-object.php:102
|
279 |
+
msgid "Video title"
|
280 |
+
msgstr ""
|
281 |
+
|
282 |
+
#: includes/extensions/video-object.php:96
|
283 |
+
msgid "You have enabled VideoObject, if you see an error in the <a target=\"_blank\" href=\"https://search.google.com/structured-data/testing-tool\">testing tool</a>, use the fields below to fill the missing fields, correct markup errors, and add additional details about the video embedded in your content editor."
|
284 |
+
msgstr ""
|
285 |
+
|
286 |
+
#: includes/extensions/video-object.php:52
|
287 |
+
msgid "Multiple videos"
|
288 |
+
msgstr ""
|
289 |
+
|
290 |
+
#: includes/extensions/video-object.php:48
|
291 |
+
msgid "Single video"
|
292 |
+
msgstr ""
|
293 |
+
|
294 |
+
#: includes/extensions/video-object.php:39
|
295 |
+
msgid "Note: You can enable markups to multiple videos on the same page. However, this may slow down your site, make sure your site is hosted on a reliable web host and cache your site pages by a good caching plugin. (Recommended setting: Single Video)"
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: includes/extensions/video-object.php:38
|
299 |
+
msgid "Select video markup type."
|
300 |
+
msgstr ""
|
301 |
+
|
302 |
+
#: includes/extensions/video-object.php:37
|
303 |
+
msgid "Video Markups"
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: includes/extensions/sameAs.php:74
|
307 |
+
msgid "sameAs"
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: includes/extensions/sameAs.php:41
|
311 |
+
msgid "Enter sameAs URLs, one per line."
|
312 |
+
msgstr ""
|
313 |
+
|
314 |
+
#: includes/extensions/sameAs.php:39
|
315 |
+
msgid "URLs"
|
316 |
+
msgstr ""
|
317 |
+
|
318 |
+
#: includes/extensions/audio-object.php:122
|
319 |
+
msgid "Audio short description."
|
320 |
+
msgstr ""
|
321 |
+
|
322 |
+
#: includes/extensions/audio-object.php:115
|
323 |
+
msgid "Audio duration, example: if duration is 1 Hour 35 MIN, use: PT1H35M"
|
324 |
+
msgstr ""
|
325 |
+
|
326 |
+
#: includes/extensions/audio-object.php:114
|
327 |
+
#: includes/extensions/video-object.php:115
|
328 |
+
msgid "Duration"
|
329 |
+
msgstr ""
|
330 |
+
|
331 |
+
#: includes/extensions/audio-object.php:108
|
332 |
+
msgid "Audio upload date in ISO 8601 format YYYY-MM-DD example: 2016-06-23"
|
333 |
+
msgstr ""
|
334 |
+
|
335 |
+
#: includes/extensions/audio-object.php:107
|
336 |
+
#: includes/extensions/video-object.php:108
|
337 |
+
msgid "Upload Date"
|
338 |
+
msgstr ""
|
339 |
+
|
340 |
+
#: includes/extensions/audio-object.php:101
|
341 |
+
msgid "Audio title"
|
342 |
+
msgstr ""
|
343 |
+
|
344 |
+
#: includes/extensions/audio-object.php:95
|
345 |
+
msgid "You have enabled AudioObject, if you see an error in the <a target=\"_blank\" href=\"https://search.google.com/structured-data/testing-tool\">testing tool</a>, use the fields below to fill the missing fields, correct markup errors, and add additional details about the audio embedded in your content editor."
|
346 |
+
msgstr ""
|
347 |
+
|
348 |
+
#: includes/extensions/audio-object.php:51
|
349 |
+
msgid "Multiple audios"
|
350 |
+
msgstr ""
|
351 |
+
|
352 |
+
#: includes/extensions/audio-object.php:47
|
353 |
+
msgid "Single audio"
|
354 |
+
msgstr ""
|
355 |
+
|
356 |
+
#: includes/extensions/audio-object.php:43
|
357 |
+
#: includes/extensions/video-object.php:44
|
358 |
+
msgid "None"
|
359 |
+
msgstr ""
|
360 |
+
|
361 |
+
#: includes/extensions/audio-object.php:38
|
362 |
+
msgid "Note: You can enable markups to multiple audios on the same page. However, this may slow down your site, make sure your site is hosted on a reliable web host and cache your site pages by a good caching plugin. (Recommended setting: Single Audio)"
|
363 |
+
msgstr ""
|
364 |
+
|
365 |
+
#: includes/extensions/audio-object.php:37
|
366 |
+
msgid "Select audio markup type."
|
367 |
+
msgstr ""
|
368 |
+
|
369 |
+
#: includes/extensions/audio-object.php:36
|
370 |
+
msgid "Audio Markups"
|
371 |
+
msgstr ""
|
372 |
+
|
373 |
+
#: includes/class-capabilities.php:36
|
374 |
+
msgid "Manage Schema Options"
|
375 |
+
msgstr ""
|
376 |
+
|
377 |
+
#: includes/admin/updater/class-updater.php:402
|
378 |
+
msgid "You do not have permission to install plugin updates"
|
379 |
+
msgstr ""
|
380 |
+
|
381 |
+
#: includes/admin/updater/class-updater.php:212
|
382 |
+
msgid "There is a new version of %1$s available. %2$sView version %3$s details%4$s or %5$supdate now%6$s."
|
383 |
+
msgstr ""
|
384 |
+
|
385 |
+
#: includes/admin/updater/class-updater.php:204
|
386 |
+
msgid "There is a new version of %1$s available. %2$sView version %3$s details%4$s."
|
387 |
+
msgstr ""
|
388 |
+
|
389 |
+
#: includes/admin/updater/class-license-handler.php:475
|
390 |
+
msgid "Enter valid license key for automatic updates."
|
391 |
+
msgstr ""
|
392 |
+
|
393 |
+
#: includes/admin/updater/class-license-handler.php:436
|
394 |
+
msgid "You have invalid or expired license keys for Schema. Please go to the <a href=\"%s\">Licenses page</a> to correct this issue."
|
395 |
+
msgstr ""
|
396 |
+
|
397 |
+
#: includes/admin/updater/class-license-handler.php:319
|
398 |
+
msgid "Nonce verification failed"
|
399 |
+
msgstr ""
|
400 |
+
|
401 |
+
#: includes/admin/updater/class-license-handler.php:204
|
402 |
+
msgid "Enter your extension license keys here to receive updates for purchased extensions. If your license key has expired, please <a href=\"%s\" target=\"_blank\">renew your license</a>."
|
403 |
+
msgstr ""
|
404 |
+
|
405 |
+
#: includes/admin/updater/class-license-handler.php:168
|
406 |
+
msgid "%1$s"
|
407 |
+
msgstr ""
|
408 |
+
|
409 |
+
#: includes/admin/settings/register-settings.php:1554
|
410 |
+
msgid "Deactivate License"
|
411 |
+
msgstr ""
|
412 |
+
|
413 |
+
#: includes/admin/settings/register-settings.php:1543
|
414 |
+
msgid "To receive updates, please enter your valid %s license key."
|
415 |
+
msgstr ""
|
416 |
+
|
417 |
+
#: includes/admin/settings/register-settings.php:1525
|
418 |
+
msgid "Your license key expires on %s."
|
419 |
+
msgstr ""
|
420 |
+
|
421 |
+
#: includes/admin/settings/register-settings.php:1515
|
422 |
+
msgid "Your license key expires soon! It expires on %s. <a href=\"%s\" target=\"_blank\">Renew your license key</a>."
|
423 |
+
msgstr ""
|
424 |
+
|
425 |
+
#: includes/admin/settings/register-settings.php:1508
|
426 |
+
msgid "License key never expires."
|
427 |
+
msgstr ""
|
428 |
+
|
429 |
+
#: includes/admin/settings/register-settings.php:1482
|
430 |
+
msgid "Your license key has reached its activation limit. <a href=\"%s\">View possible upgrades</a> now."
|
431 |
+
msgstr ""
|
432 |
+
|
433 |
+
#: includes/admin/settings/register-settings.php:1473
|
434 |
+
msgid "This appears to be an invalid license key for %s."
|
435 |
+
msgstr ""
|
436 |
+
|
437 |
+
#: includes/admin/settings/register-settings.php:1461
|
438 |
+
msgid "Your %s is not active for this URL. Please <a href=\"%s\" target=\"_blank\">visit your account page</a> to manage your license key URLs."
|
439 |
+
msgstr ""
|
440 |
+
|
441 |
+
#: includes/admin/settings/register-settings.php:1448
|
442 |
+
msgid "Invalid license. Please <a href=\"%s\" target=\"_blank\">visit your account page</a> and verify it."
|
443 |
+
msgstr ""
|
444 |
+
|
445 |
+
#: includes/admin/settings/register-settings.php:1436
|
446 |
+
msgid "Your license key has been disabled. Please <a href=\"%s\" target=\"_blank\">contact support</a> for more information."
|
447 |
+
msgstr ""
|
448 |
+
|
449 |
+
#: includes/admin/settings/register-settings.php:1423
|
450 |
+
msgid "Your license key expired on %s. Please <a href=\"%s\" target=\"_blank\">renew your license key</a>."
|
451 |
+
msgstr ""
|
452 |
+
|
453 |
+
#: includes/admin/settings/register-settings.php:1271
|
454 |
+
#: includes/admin/settings/register-settings.php:1301
|
455 |
+
msgid "Upload File"
|
456 |
+
msgstr ""
|
457 |
+
|
458 |
+
#: includes/admin/settings/register-settings.php:1124
|
459 |
+
msgid "The callback function used for the %s setting is missing."
|
460 |
+
msgstr ""
|
461 |
+
|
462 |
+
#: includes/admin/settings/register-settings.php:818
|
463 |
+
msgid "Main"
|
464 |
+
msgstr ""
|
465 |
+
|
466 |
+
#: includes/admin/settings/register-settings.php:815
|
467 |
+
msgid "Corporate Contacts"
|
468 |
+
msgstr ""
|
469 |
+
|
470 |
+
#: includes/admin/settings/register-settings.php:812
|
471 |
+
msgid "Organization Info"
|
472 |
+
msgstr ""
|
473 |
+
|
474 |
+
#: includes/admin/settings/register-settings.php:757
|
475 |
+
msgid "Licenses"
|
476 |
+
msgstr ""
|
477 |
+
|
478 |
+
#: includes/admin/settings/register-settings.php:551
|
479 |
+
msgid "Check this box if you would like Schema to completely remove all of its data when uninstalling via Plugins > Delete."
|
480 |
+
msgstr ""
|
481 |
+
|
482 |
+
#: includes/admin/settings/register-settings.php:550
|
483 |
+
msgid "Delete Data on Uninstall?"
|
484 |
+
msgstr ""
|
485 |
+
|
486 |
+
#: includes/admin/settings/register-settings.php:477
|
487 |
+
msgid "Site Alternate Name"
|
488 |
+
msgstr ""
|
489 |
+
|
490 |
+
#: includes/admin/settings/register-settings.php:469
|
491 |
+
msgid "Site Name"
|
492 |
+
msgstr ""
|
493 |
+
|
494 |
+
#: includes/admin/settings/register-settings.php:463
|
495 |
+
msgid "Tell Google to show your site name in search results."
|
496 |
+
msgstr ""
|
497 |
+
|
498 |
+
#: includes/admin/settings/register-settings.php:462
|
499 |
+
msgid "Enable Site Name?"
|
500 |
+
msgstr ""
|
501 |
+
|
502 |
+
#: includes/admin/settings/register-settings.php:454
|
503 |
+
msgid "Tell Google to show a Sitelinks search box."
|
504 |
+
msgstr ""
|
505 |
+
|
506 |
+
#: includes/admin/settings/register-settings.php:453
|
507 |
+
msgid "Enable Sitelinks Search Box?"
|
508 |
+
msgstr ""
|
509 |
+
|
510 |
+
#: includes/admin/settings/register-settings.php:440
|
511 |
+
msgid "Recommended. The URL of contact page."
|
512 |
+
msgstr ""
|
513 |
+
|
514 |
+
#: includes/admin/settings/register-settings.php:439
|
515 |
+
msgid "URL"
|
516 |
+
msgstr ""
|
517 |
+
|
518 |
+
#: includes/admin/settings/register-settings.php:432
|
519 |
+
msgid "Recommended. An internationalized version of the phone number, starting with the \"+\" symbol and country code (+1 in the US and Canada)."
|
520 |
+
msgstr ""
|
521 |
+
|
522 |
+
#: includes/admin/settings/register-settings.php:431
|
523 |
+
msgid "Telephone"
|
524 |
+
msgstr ""
|
525 |
+
|
526 |
+
#: includes/admin/settings/register-settings.php:423
|
527 |
+
msgid "Contact Type"
|
528 |
+
msgstr ""
|
529 |
+
|
530 |
+
#: includes/admin/settings/register-settings.php:312
|
531 |
+
msgid "Website URL"
|
532 |
+
msgstr "URL de la web"
|
533 |
+
|
534 |
+
#: includes/admin/settings/register-settings.php:245
|
535 |
+
msgid "Select Site Type"
|
536 |
+
msgstr ""
|
537 |
+
|
538 |
+
#: includes/admin/settings/contextual-help.php:65
|
539 |
+
msgid "A description of all the options are provided beside their input boxes."
|
540 |
+
msgstr ""
|
541 |
+
|
542 |
+
#: includes/admin/settings/contextual-help.php:64
|
543 |
+
msgid "This screen provides advanced options such as deleting plugin data on uninstall."
|
544 |
+
msgstr ""
|
545 |
+
|
546 |
+
#: includes/admin/settings/contextual-help.php:57
|
547 |
+
msgid "This screen provides access to settings added by most Schema extensions."
|
548 |
+
msgstr ""
|
549 |
+
|
550 |
+
#: includes/admin/settings/contextual-help.php:51
|
551 |
+
msgid "This screen provides settings for configuring Search Results. You can set Sitelinks Search Box and Site Name."
|
552 |
+
msgstr ""
|
553 |
+
|
554 |
+
#: includes/admin/settings/contextual-help.php:50
|
555 |
+
#: includes/admin/settings/register-settings.php:813
|
556 |
+
msgid "Search Results"
|
557 |
+
msgstr ""
|
558 |
+
|
559 |
+
#: includes/admin/settings/contextual-help.php:45
|
560 |
+
msgid "This screen provides settings for configuring the Knowledge Graph. You can set Organization Info and Corporate Contacts."
|
561 |
+
msgstr ""
|
562 |
+
|
563 |
+
#: includes/admin/settings/contextual-help.php:44
|
564 |
+
#: includes/admin/settings/register-settings.php:750
|
565 |
+
msgid "Knowledge Graph"
|
566 |
+
msgstr ""
|
567 |
+
|
568 |
+
#: includes/admin/settings/contextual-help.php:39
|
569 |
+
msgid "This screen provides the most basic settings for configuring Schema plugin on your site. You can set Schema for About and Contact pages, and turn automatic <em>Feature image</em> on and off...etc"
|
570 |
+
msgstr ""
|
571 |
+
|
572 |
+
#: includes/admin/settings/contextual-help.php:29
|
573 |
+
msgid "<a href=\"%s\">Post an issue</a> on <a href=\"%s\">GitHub</a>. View <a href=\"%s\">extensions</a>"
|
574 |
+
msgstr ""
|
575 |
+
|
576 |
+
#: includes/admin/settings/contextual-help.php:27
|
577 |
+
msgid "Visit the <a href=\"%s\">documentation</a> on the schema.press website."
|
578 |
+
msgstr ""
|
579 |
+
|
580 |
+
#: includes/admin/settings/contextual-help.php:26
|
581 |
+
msgid "For more information:"
|
582 |
+
msgstr ""
|
583 |
+
|
584 |
+
#: includes/admin/post-type/schema-wp-submit.php:111
|
585 |
+
msgid "Save "
|
586 |
+
msgstr ""
|
587 |
+
|
588 |
+
#: includes/admin/post-type/schema-wp-submit.php:110
|
589 |
+
msgid "Update "
|
590 |
+
msgstr ""
|
591 |
+
|
592 |
+
#: includes/admin/post-type/schema-wp-submit.php:104
|
593 |
+
msgid "Save"
|
594 |
+
msgstr ""
|
595 |
+
|
596 |
+
#: includes/admin/post-type/schema-wp-submit.php:103
|
597 |
+
msgid "Publish"
|
598 |
+
msgstr ""
|
599 |
+
|
600 |
+
#: includes/admin/post-type/schema-wp-submit.php:92
|
601 |
+
msgid "Move to Trash"
|
602 |
+
msgstr ""
|
603 |
+
|
604 |
+
#: includes/admin/post-type/schema-wp-submit.php:90
|
605 |
+
msgid "Delete Permanently"
|
606 |
+
msgstr ""
|
607 |
+
|
608 |
+
#: includes/admin/post-type/schema-wp-submit.php:38
|
609 |
+
msgid "%s"
|
610 |
+
msgstr ""
|
611 |
+
|
612 |
+
#: includes/admin/post-type/schema-wp-ajax.php:95
|
613 |
+
msgid "You must select at leat one post type!"
|
614 |
+
msgstr ""
|
615 |
+
|
616 |
+
#: includes/admin/post-type/schema-post-type.php:172
|
617 |
+
msgid "Create Schema"
|
618 |
+
msgstr ""
|
619 |
+
|
620 |
+
#: includes/admin/post-type/schema-post-type.php:118
|
621 |
+
msgid "Preview schema"
|
622 |
+
msgstr ""
|
623 |
+
|
624 |
+
#: includes/admin/post-type/schema-post-type.php:111
|
625 |
+
msgid "View schema"
|
626 |
+
msgstr ""
|
627 |
+
|
628 |
+
#: includes/admin/post-type/schema-post-type.php:105
|
629 |
+
msgid "Schema draft updated."
|
630 |
+
msgstr ""
|
631 |
+
|
632 |
+
#. translators: Publish box date format, see http://php.net/date
|
633 |
+
#: includes/admin/post-type/schema-post-type.php:103
|
634 |
+
msgid "M j, Y @ G:i"
|
635 |
+
msgstr ""
|
636 |
+
|
637 |
+
#: includes/admin/post-type/schema-post-type.php:101
|
638 |
+
msgid "Schema scheduled for: <strong>%1$s</strong>."
|
639 |
+
msgstr ""
|
640 |
+
|
641 |
+
#: includes/admin/post-type/schema-post-type.php:99
|
642 |
+
msgid "Schema added."
|
643 |
+
msgstr ""
|
644 |
+
|
645 |
+
#: includes/admin/post-type/schema-post-type.php:97
|
646 |
+
msgid "Schema created."
|
647 |
+
msgstr ""
|
648 |
+
|
649 |
+
#. translators: %s: date and time of the revision
|
650 |
+
#: includes/admin/post-type/schema-post-type.php:96
|
651 |
+
msgid "Schema restored to revision from %s"
|
652 |
+
msgstr ""
|
653 |
+
|
654 |
+
#: includes/admin/post-type/schema-post-type.php:94
|
655 |
+
#: includes/admin/post-type/schema-post-type.php:98
|
656 |
+
msgid "Schema saved."
|
657 |
+
msgstr ""
|
658 |
+
|
659 |
+
#: includes/admin/post-type/schema-post-type.php:93
|
660 |
+
msgid "Custom field deleted."
|
661 |
+
msgstr ""
|
662 |
+
|
663 |
+
#: includes/admin/post-type/schema-post-type.php:92
|
664 |
+
msgid "Custom field updated."
|
665 |
+
msgstr ""
|
666 |
+
|
667 |
+
#: includes/admin/post-type/schema-post-type.php:91
|
668 |
+
msgid "Schema updated."
|
669 |
+
msgstr ""
|
670 |
+
|
671 |
+
#: includes/admin/post-type/schema-post-type.php:43
|
672 |
+
msgid "Description."
|
673 |
+
msgstr ""
|
674 |
+
|
675 |
+
#: includes/admin/post-type/schema-post-type.php:38
|
676 |
+
msgid "No schema found in Trash."
|
677 |
+
msgstr ""
|
678 |
+
|
679 |
+
#: includes/admin/post-type/schema-post-type.php:37
|
680 |
+
msgid "No schema found."
|
681 |
+
msgstr ""
|
682 |
+
|
683 |
+
#: includes/admin/post-type/schema-post-type.php:36
|
684 |
+
msgid "Parent Schemas:"
|
685 |
+
msgstr ""
|
686 |
+
|
687 |
+
#: includes/admin/post-type/schema-post-type.php:35
|
688 |
+
msgid "Search Schemas"
|
689 |
+
msgstr ""
|
690 |
+
|
691 |
+
#: includes/admin/post-type/schema-post-type.php:34
|
692 |
+
msgid "All Schemas"
|
693 |
+
msgstr ""
|
694 |
+
|
695 |
+
#: includes/admin/post-type/schema-post-type.php:33
|
696 |
+
msgid "View Schema"
|
697 |
+
msgstr ""
|
698 |
+
|
699 |
+
#: includes/admin/post-type/schema-post-type.php:32
|
700 |
+
msgid "Edit Schema"
|
701 |
+
msgstr ""
|
702 |
+
|
703 |
+
#: includes/admin/post-type/schema-post-type.php:31
|
704 |
+
msgid "New Schema"
|
705 |
+
msgstr ""
|
706 |
+
|
707 |
+
#: includes/admin/post-type/schema-post-type.php:30
|
708 |
+
msgid "Add New Schema"
|
709 |
+
msgstr ""
|
710 |
+
|
711 |
+
#: includes/admin/post-type/schema-post-type.php:29
|
712 |
+
msgctxt "schema"
|
713 |
+
msgid "Add New"
|
714 |
+
msgstr ""
|
715 |
+
|
716 |
+
#: includes/admin/post-type/schema-post-type.php:28
|
717 |
+
msgctxt "add new on admin bar"
|
718 |
+
msgid "Schema"
|
719 |
+
msgstr ""
|
720 |
+
|
721 |
+
#: includes/admin/post-type/schema-post-type.php:27
|
722 |
+
msgctxt "admin menu"
|
723 |
+
msgid "Schema"
|
724 |
+
msgstr ""
|
725 |
+
|
726 |
+
#: includes/admin/post-type/schema-post-type.php:26
|
727 |
+
msgctxt "post type singular name"
|
728 |
+
msgid "Schema"
|
729 |
+
msgstr ""
|
730 |
+
|
731 |
+
#: includes/admin/post-type/schema-post-type.php:25
|
732 |
+
msgctxt "post type general name"
|
733 |
+
msgid "Schema"
|
734 |
+
msgstr ""
|
735 |
+
|
736 |
+
#: includes/admin/post-type/schema-columns.php:51
|
737 |
+
msgid "Content"
|
738 |
+
msgstr ""
|
739 |
+
|
740 |
+
#: includes/admin/post-type/schema-columns.php:46
|
741 |
+
#: includes/admin/post-type/schema-columns.php:58
|
742 |
+
msgid "-"
|
743 |
+
msgstr ""
|
744 |
+
|
745 |
+
#: includes/admin/post-type/schema-columns.php:39
|
746 |
+
msgid "Post Type"
|
747 |
+
msgstr ""
|
748 |
+
|
749 |
+
#: includes/admin/post-type/schema-columns.php:34
|
750 |
+
msgid "Not set!"
|
751 |
+
msgstr ""
|
752 |
+
|
753 |
+
#: includes/admin/post-type/schema-columns.php:27
|
754 |
+
msgid "Schema Type"
|
755 |
+
msgstr ""
|
756 |
+
|
757 |
+
#: includes/admin/meta.php:274
|
758 |
+
msgid "Post Meta"
|
759 |
+
msgstr ""
|
760 |
+
|
761 |
+
#: includes/admin/meta.php:273
|
762 |
+
msgid "Post Types"
|
763 |
+
msgstr ""
|
764 |
+
|
765 |
+
#: includes/admin/meta.php:248
|
766 |
+
msgid "Description for this field"
|
767 |
+
msgstr ""
|
768 |
+
|
769 |
+
#: includes/admin/meta.php:245
|
770 |
+
msgid "Field description"
|
771 |
+
msgstr ""
|
772 |
+
|
773 |
+
#: includes/admin/meta.php:236
|
774 |
+
msgid "Field label"
|
775 |
+
msgstr ""
|
776 |
+
|
777 |
+
#: includes/admin/meta.php:235 includes/admin/meta.php:240
|
778 |
+
msgid "Label"
|
779 |
+
msgstr ""
|
780 |
+
|
781 |
+
#: includes/admin/meta.php:227
|
782 |
+
msgid "Checkbox"
|
783 |
+
msgstr ""
|
784 |
+
|
785 |
+
#: includes/admin/meta.php:223
|
786 |
+
msgid "Text Area"
|
787 |
+
msgstr ""
|
788 |
+
|
789 |
+
#: includes/admin/meta.php:219
|
790 |
+
msgid "Text"
|
791 |
+
msgstr ""
|
792 |
+
|
793 |
+
#: includes/admin/meta.php:216
|
794 |
+
msgid "Select Type"
|
795 |
+
msgstr ""
|
796 |
+
|
797 |
+
#: includes/admin/meta.php:213
|
798 |
+
msgid "Select field type"
|
799 |
+
msgstr ""
|
800 |
+
|
801 |
+
#: includes/admin/meta.php:212
|
802 |
+
msgid "Type"
|
803 |
+
msgstr ""
|
804 |
+
|
805 |
+
#: includes/admin/meta.php:201
|
806 |
+
msgid "Create Field?"
|
807 |
+
msgstr ""
|
808 |
+
|
809 |
+
#: includes/admin/meta.php:200
|
810 |
+
msgid "Create custom post meta field?"
|
811 |
+
msgstr ""
|
812 |
+
|
813 |
+
#: includes/admin/meta.php:199
|
814 |
+
msgid "Create?"
|
815 |
+
msgstr ""
|
816 |
+
|
817 |
+
#: includes/admin/meta.php:195
|
818 |
+
msgid "Meta Key Name"
|
819 |
+
msgstr ""
|
820 |
+
|
821 |
+
#: includes/admin/meta.php:191
|
822 |
+
msgid "Add post meta key name as source"
|
823 |
+
msgstr ""
|
824 |
+
|
825 |
+
#: includes/admin/meta.php:190
|
826 |
+
msgid "Key"
|
827 |
+
msgstr ""
|
828 |
+
|
829 |
+
#: includes/admin/meta.php:182 includes/admin/meta.php:244
|
830 |
+
#: includes/extensions/audio-object.php:121
|
831 |
+
#: includes/extensions/video-object.php:122
|
832 |
+
msgid "Description"
|
833 |
+
msgstr ""
|
834 |
+
|
835 |
+
#: includes/admin/meta.php:178
|
836 |
+
msgid "Headline"
|
837 |
+
msgstr ""
|
838 |
+
|
839 |
+
#: includes/admin/meta.php:174
|
840 |
+
msgid "Author Name"
|
841 |
+
msgstr ""
|
842 |
+
|
843 |
+
#: includes/admin/meta.php:171
|
844 |
+
msgid "Select Filter"
|
845 |
+
msgstr ""
|
846 |
+
|
847 |
+
#: includes/admin/meta.php:167
|
848 |
+
msgid "This is the filter name"
|
849 |
+
msgstr ""
|
850 |
+
|
851 |
+
#: includes/admin/meta.php:166
|
852 |
+
msgid "Filter"
|
853 |
+
msgstr ""
|
854 |
+
|
855 |
+
#: includes/admin/meta.php:155
|
856 |
+
msgid "This feature allow you to override the schema.org markups output generated by the Schema plugin."
|
857 |
+
msgstr ""
|
858 |
+
|
859 |
+
#: includes/admin/meta.php:154
|
860 |
+
msgid "This is where you can define a source for schema.org markup fields to override its output. Select a filter name, then define post meta key name to pull data from, or tick the check box to automatically create a new custom post meta field to insert values manually when editing posts."
|
861 |
+
msgstr ""
|
862 |
+
|
863 |
+
#: includes/admin/meta.php:145
|
864 |
+
msgid "This field will allow you to override the Schema post meta box title, default: Schema"
|
865 |
+
msgstr ""
|
866 |
+
|
867 |
+
#: includes/admin/meta.php:144
|
868 |
+
msgid "Post meta box title, default: Schema"
|
869 |
+
msgstr ""
|
870 |
+
|
871 |
+
#: includes/admin/meta.php:143 includes/extensions/audio-object.php:100
|
872 |
+
#: includes/extensions/video-object.php:101
|
873 |
+
msgid "Title"
|
874 |
+
msgstr ""
|
875 |
+
|
876 |
+
#: includes/admin/meta.php:129
|
877 |
+
msgid "Enabled on specific custom post types"
|
878 |
+
msgstr ""
|
879 |
+
|
880 |
+
#: includes/admin/meta.php:88
|
881 |
+
msgid "It is recommended to set type BlogPosting for posts, and leave empty or set to General for page post type"
|
882 |
+
msgstr ""
|
883 |
+
|
884 |
+
#: includes/admin/meta.php:87
|
885 |
+
msgid "Select more specific article type"
|
886 |
+
msgstr ""
|
887 |
+
|
888 |
+
#: includes/admin/meta.php:86
|
889 |
+
msgid "Article Type"
|
890 |
+
msgstr ""
|
891 |
+
|
892 |
+
#: includes/admin/meta.php:46 includes/admin/meta.php:72
|
893 |
+
msgid "Enable post meta box?"
|
894 |
+
msgstr ""
|
895 |
+
|
896 |
+
#: includes/admin/meta.php:45 includes/admin/meta.php:71
|
897 |
+
msgid "Enable custom post meta box"
|
898 |
+
msgstr ""
|
899 |
+
|
900 |
+
#: includes/admin/meta.php:44 includes/admin/meta.php:70
|
901 |
+
msgid "Post meta"
|
902 |
+
msgstr ""
|
903 |
+
|
904 |
+
#: includes/admin/meta.php:32 includes/admin/meta.php:57
|
905 |
+
msgid "Select Schema type which describes your content best"
|
906 |
+
msgstr ""
|
907 |
+
|
908 |
+
#: includes/admin/meta.php:31 includes/admin/meta.php:56
|
909 |
+
msgid "Schema Markup Type"
|
910 |
+
msgstr ""
|
911 |
+
|
912 |
+
#: includes/admin/meta-tax.php:44 includes/extensions/sameAs.php:40
|
913 |
+
msgid "URL of a reference Web page that unambiguously indicates the item's identity. E.g. the URL of the item's Wikipedia page, Freebase page, or official website."
|
914 |
+
msgstr ""
|
915 |
+
|
916 |
+
#: includes/admin/meta-tax.php:44
|
917 |
+
msgid "sameAs "
|
918 |
+
msgstr ""
|
919 |
+
|
920 |
+
#: includes/admin/meta-tax/class-usage-demo.php:83
|
921 |
+
msgid "This is a Repeater Block"
|
922 |
+
msgstr ""
|
923 |
+
|
924 |
+
#: includes/admin/meta-tax/class-usage-demo.php:67
|
925 |
+
msgid "My Posts "
|
926 |
+
msgstr ""
|
927 |
+
|
928 |
+
#: includes/admin/meta-tax/class-usage-demo.php:65
|
929 |
+
msgid "My Taxonomy "
|
930 |
+
msgstr ""
|
931 |
+
|
932 |
+
#: includes/admin/meta-tax/class-usage-demo.php:63
|
933 |
+
msgid "My wysiwyg Editor "
|
934 |
+
msgstr ""
|
935 |
+
|
936 |
+
#: includes/admin/meta-tax/class-usage-demo.php:61
|
937 |
+
msgid "My File "
|
938 |
+
msgstr ""
|
939 |
+
|
940 |
+
#: includes/admin/meta-tax/class-usage-demo.php:59
|
941 |
+
#: includes/admin/meta-tax/class-usage-demo.php:77
|
942 |
+
msgid "My Image "
|
943 |
+
msgstr ""
|
944 |
+
|
945 |
+
#: includes/admin/meta-tax/class-usage-demo.php:57
|
946 |
+
msgid "My Color "
|
947 |
+
msgstr ""
|
948 |
+
|
949 |
+
#: includes/admin/meta-tax/class-usage-demo.php:55
|
950 |
+
msgid "My Time "
|
951 |
+
msgstr ""
|
952 |
+
|
953 |
+
#: includes/admin/meta-tax/class-usage-demo.php:53
|
954 |
+
msgid "My Date "
|
955 |
+
msgstr ""
|
956 |
+
|
957 |
+
#: includes/admin/meta-tax/class-usage-demo.php:51
|
958 |
+
msgid "My Radio Filed"
|
959 |
+
msgstr ""
|
960 |
+
|
961 |
+
#: includes/admin/meta-tax/class-usage-demo.php:49
|
962 |
+
msgid "My select "
|
963 |
+
msgstr ""
|
964 |
+
|
965 |
+
#: includes/admin/meta-tax/class-usage-demo.php:47
|
966 |
+
#: includes/admin/meta-tax/class-usage-demo.php:76
|
967 |
+
msgid "My Checkbox "
|
968 |
+
msgstr ""
|
969 |
+
|
970 |
+
#: includes/admin/meta-tax/class-usage-demo.php:45
|
971 |
+
#: includes/admin/meta-tax/class-usage-demo.php:75
|
972 |
+
msgid "My Textarea "
|
973 |
+
msgstr ""
|
974 |
+
|
975 |
+
#: includes/admin/meta-tax/class-usage-demo.php:43
|
976 |
+
#: includes/admin/meta-tax/class-usage-demo.php:74
|
977 |
+
msgid "My Text "
|
978 |
+
msgstr ""
|
979 |
+
|
980 |
+
#: includes/admin/meta-tax/class-meta-tax.php:727
|
981 |
+
msgid "Upload Image"
|
982 |
+
msgstr ""
|
983 |
+
|
984 |
+
#: includes/admin/meta-tax/class-meta-tax.php:725
|
985 |
+
msgid "Remove Image"
|
986 |
+
msgstr ""
|
987 |
+
|
988 |
+
#: includes/admin/meta-tax/class-meta-tax.php:392
|
989 |
+
msgid "Add"
|
990 |
+
msgstr ""
|
991 |
+
|
992 |
+
#: includes/admin/meta-exclude.php:69
|
993 |
+
msgid "Schema Exclude"
|
994 |
+
msgstr ""
|
995 |
+
|
996 |
+
#: includes/admin/meta-exclude.php:37
|
997 |
+
msgid "Tick this checkbox to turn off Schema output on this entry."
|
998 |
+
msgstr ""
|
999 |
+
|
1000 |
+
#: includes/admin/meta-exclude.php:36
|
1001 |
+
msgid "Turn Schema OFF"
|
1002 |
+
msgstr ""
|
1003 |
+
|
1004 |
+
#: includes/admin/meta/class-meta.php:345 includes/admin/meta.php:153
|
1005 |
+
msgid "Fields"
|
1006 |
+
msgstr ""
|
1007 |
+
|
1008 |
+
#: includes/admin/meta/class-meta.php:64
|
1009 |
+
#: includes/admin/settings/contextual-help.php:62
|
1010 |
+
#: includes/admin/settings/register-settings.php:760
|
1011 |
+
msgid "Advanced"
|
1012 |
+
msgstr ""
|
1013 |
+
|
1014 |
+
#: includes/admin/extensions.php:129
|
1015 |
+
msgid "There was an error retrieving the extensions list from the server. Please try again later."
|
1016 |
+
msgstr ""
|
1017 |
+
|
1018 |
+
#: includes/admin/extensions.php:118
|
1019 |
+
msgid "Get this Extension"
|
1020 |
+
msgstr ""
|
1021 |
+
|
1022 |
+
#: includes/admin/extensions.php:56
|
1023 |
+
msgid "Our official free extensions are available to all license holders!"
|
1024 |
+
msgstr ""
|
1025 |
+
|
1026 |
+
#: includes/admin/extensions.php:54
|
1027 |
+
msgid "If you have a Personal or Plus license, you can easily upgrade from your account page to <a href=\"%s\">get access to all of these extensions</a>!"
|
1028 |
+
msgstr ""
|
1029 |
+
|
1030 |
+
#: includes/admin/extensions.php:53
|
1031 |
+
msgid "Pro Extensions are only available with a Professional or Ultimate license. If you already have one of these licenses, simply <a href=\"%s\">log in to your account</a> to download any of these extensions."
|
1032 |
+
msgstr ""
|
1033 |
+
|
1034 |
+
#: includes/admin/extensions.php:46
|
1035 |
+
msgid "These extensions <em><strong>add functionality</strong></em> to your Schema-powered site."
|
1036 |
+
msgstr ""
|
1037 |
+
|
1038 |
+
#: includes/admin/extensions.php:43 includes/admin/extensions.php:61
|
1039 |
+
msgid "Browse all extensions"
|
1040 |
+
msgstr ""
|
1041 |
+
|
1042 |
+
#: includes/admin/extensions.php:41
|
1043 |
+
msgid "Extensions for Schema"
|
1044 |
+
msgstr ""
|
1045 |
+
|
1046 |
+
#: includes/admin/extensions.php:32
|
1047 |
+
msgid "Official Free"
|
1048 |
+
msgstr ""
|
1049 |
+
|
1050 |
+
#: includes/admin/extensions.php:31
|
1051 |
+
msgid "Pro"
|
1052 |
+
msgstr ""
|
1053 |
+
|
1054 |
+
#: includes/admin/class-welcome.php:421
|
1055 |
+
msgid "View %s"
|
1056 |
+
msgstr ""
|
1057 |
+
|
1058 |
+
#: includes/admin/class-welcome.php:394
|
1059 |
+
msgid "Here, we will be listing some of the faces that have helped build Schema."
|
1060 |
+
msgstr ""
|
1061 |
+
|
1062 |
+
#: includes/admin/class-welcome.php:389
|
1063 |
+
msgid "Thank you for updating to the latest version!"
|
1064 |
+
msgstr ""
|
1065 |
+
|
1066 |
+
#: includes/admin/class-welcome.php:370
|
1067 |
+
msgid "We do our best to provide support we can. If you encounter a problem, report it to <a href=\"https://wordpress.org/support/plugin/schema\">support</a>."
|
1068 |
+
msgstr ""
|
1069 |
+
|
1070 |
+
#: includes/admin/class-welcome.php:369
|
1071 |
+
msgid "Support"
|
1072 |
+
msgstr ""
|
1073 |
+
|
1074 |
+
#: includes/admin/class-welcome.php:365
|
1075 |
+
msgid "Docs are on its way! We will update <a href=\"http://schema.press/\">schema.press</a> site with plugin documentation soon."
|
1076 |
+
msgstr ""
|
1077 |
+
|
1078 |
+
#: includes/admin/class-welcome.php:364
|
1079 |
+
msgid "Documentation"
|
1080 |
+
msgstr ""
|
1081 |
+
|
1082 |
+
#: includes/admin/class-welcome.php:361
|
1083 |
+
msgid "Need Help?"
|
1084 |
+
msgstr ""
|
1085 |
+
|
1086 |
+
#: includes/admin/class-welcome.php:350
|
1087 |
+
msgid "Structured Data helps search engines to understand what the content is specifically about. Moreover, structured data will allow users to see the value of a website before they visit, via rich snippets, which are rich data that are displayed in the SERP’s."
|
1088 |
+
msgstr ""
|
1089 |
+
|
1090 |
+
#: includes/admin/class-welcome.php:349
|
1091 |
+
msgid "Structured Data can help you to send the right signals to search engines about your business and content."
|
1092 |
+
msgstr ""
|
1093 |
+
|
1094 |
+
#: includes/admin/class-welcome.php:348
|
1095 |
+
msgid "Why is Structured Data so Important?"
|
1096 |
+
msgstr ""
|
1097 |
+
|
1098 |
+
#: includes/admin/class-welcome.php:346
|
1099 |
+
msgid "Schema markup is code (semantic vocabulary) that you put on your website to help the search engines return more informative results for users. So, Schema is not just for SEO reasons, it’s also for the benefit of the searcher."
|
1100 |
+
msgstr ""
|
1101 |
+
|
1102 |
+
#: includes/admin/class-welcome.php:345
|
1103 |
+
msgid "What is Schema markup?"
|
1104 |
+
msgstr ""
|
1105 |
+
|
1106 |
+
#: includes/admin/class-welcome.php:340
|
1107 |
+
msgid "Overview"
|
1108 |
+
msgstr ""
|
1109 |
+
|
1110 |
+
#: includes/admin/class-welcome.php:337
|
1111 |
+
msgid "Hang on! We are going to add more schema integration and cool features to Schema plugin."
|
1112 |
+
msgstr ""
|
1113 |
+
|
1114 |
+
#: includes/admin/class-welcome.php:332
|
1115 |
+
msgid "Thank you for installing Schema. The best schema.org plugin for WordPress."
|
1116 |
+
msgstr ""
|
1117 |
+
|
1118 |
+
#: includes/admin/class-welcome.php:307
|
1119 |
+
msgid "Supported oEmbed audios: SoundCloud, and Mixcloud."
|
1120 |
+
msgstr ""
|
1121 |
+
|
1122 |
+
#: includes/admin/class-welcome.php:306
|
1123 |
+
msgid "Schema allow you to enable AudioObject markup automatically whenever oEmbed is called on your page."
|
1124 |
+
msgstr ""
|
1125 |
+
|
1126 |
+
#: includes/admin/class-welcome.php:305
|
1127 |
+
msgid "Automatically add AudioObject to oEmbed"
|
1128 |
+
msgstr ""
|
1129 |
+
|
1130 |
+
#: includes/admin/class-welcome.php:303
|
1131 |
+
msgid "Supported oEmbed videos: Dailymotion, TED, Vimeo, VideoPress, Vine, YouTube."
|
1132 |
+
msgstr ""
|
1133 |
+
|
1134 |
+
#: includes/admin/class-welcome.php:302
|
1135 |
+
msgid "Schema allow you to enable VideoObject markup automatically whenever oEmbed is called on your page."
|
1136 |
+
msgstr ""
|
1137 |
+
|
1138 |
+
#: includes/admin/class-welcome.php:301
|
1139 |
+
msgid "Automatically add VideoObject to oEmbed"
|
1140 |
+
msgstr ""
|
1141 |
+
|
1142 |
+
#: includes/admin/class-welcome.php:297
|
1143 |
+
msgid "Also, you can set Schema to work on specific post categories."
|
1144 |
+
msgstr ""
|
1145 |
+
|
1146 |
+
#: includes/admin/class-welcome.php:296
|
1147 |
+
msgid "Now, you can create new schema.org markup types and enable them on post type bases."
|
1148 |
+
msgstr ""
|
1149 |
+
|
1150 |
+
#: includes/admin/class-welcome.php:295
|
1151 |
+
msgid "Schema Post Type"
|
1152 |
+
msgstr ""
|
1153 |
+
|
1154 |
+
#: includes/admin/class-welcome.php:289
|
1155 |
+
msgid "If Divi theme is active, Schema plugin will clear shortcodes to be able to output the content description."
|
1156 |
+
msgstr ""
|
1157 |
+
|
1158 |
+
#: includes/admin/class-welcome.php:288
|
1159 |
+
msgid "Is Divi your Theme?"
|
1160 |
+
msgstr ""
|
1161 |
+
|
1162 |
+
#: includes/admin/class-welcome.php:286
|
1163 |
+
msgid "No problem! The Schema plugin will automatically indicate that and show respect for SEO Framework."
|
1164 |
+
msgstr ""
|
1165 |
+
|
1166 |
+
#: includes/admin/class-welcome.php:285
|
1167 |
+
msgid "The SEO Framework plugin is active?"
|
1168 |
+
msgstr ""
|
1169 |
+
|
1170 |
+
#: includes/admin/class-welcome.php:283
|
1171 |
+
msgid "Using Thesis? The Schema plugin will automatically indicate and use Thesis Post Image is are presented."
|
1172 |
+
msgstr ""
|
1173 |
+
|
1174 |
+
#: includes/admin/class-welcome.php:282
|
1175 |
+
msgid "Uses Thesis Theme 2.x Post Image"
|
1176 |
+
msgstr ""
|
1177 |
+
|
1178 |
+
#: includes/admin/class-welcome.php:281
|
1179 |
+
msgid "Using Genesis Framework? The Schema plugin will automatically indicate that and correct Genesis Schema output."
|
1180 |
+
msgstr ""
|
1181 |
+
|
1182 |
+
#: includes/admin/class-welcome.php:280
|
1183 |
+
msgid "Correct Genesis Schema Markup"
|
1184 |
+
msgstr ""
|
1185 |
+
|
1186 |
+
#: includes/admin/class-welcome.php:278
|
1187 |
+
msgid "If you are using the WPRichSnippets plugin, Schema will behave!"
|
1188 |
+
msgstr ""
|
1189 |
+
|
1190 |
+
#: includes/admin/class-welcome.php:277
|
1191 |
+
msgid "WPRichSnippets plugin"
|
1192 |
+
msgstr ""
|
1193 |
+
|
1194 |
+
#: includes/admin/class-welcome.php:275
|
1195 |
+
msgid "If you are using the AMP plugin, Schema got you covered!"
|
1196 |
+
msgstr ""
|
1197 |
+
|
1198 |
+
#: includes/admin/class-welcome.php:274
|
1199 |
+
msgid "Hello AMP!"
|
1200 |
+
msgstr ""
|
1201 |
+
|
1202 |
+
#: includes/admin/class-welcome.php:272
|
1203 |
+
msgid "Now Schema plugin plays nicely with Yoast SEO plugin, you can have both plugins active with no conflicts."
|
1204 |
+
msgstr ""
|
1205 |
+
|
1206 |
+
#: includes/admin/class-welcome.php:271
|
1207 |
+
msgid "Play nicely with Yoast SEO"
|
1208 |
+
msgstr ""
|
1209 |
+
|
1210 |
+
#: includes/admin/class-welcome.php:269
|
1211 |
+
msgid "Schema plays nicely and support themes mentioned below."
|
1212 |
+
msgstr ""
|
1213 |
+
|
1214 |
+
#: includes/admin/class-welcome.php:268
|
1215 |
+
msgid "Integration with Themes and other Plugins"
|
1216 |
+
msgstr ""
|
1217 |
+
|
1218 |
+
#: includes/admin/class-welcome.php:264 includes/admin/class-welcome.php:353
|
1219 |
+
msgid "Go To Schema Settings"
|
1220 |
+
msgstr ""
|
1221 |
+
|
1222 |
+
#: includes/admin/class-welcome.php:260
|
1223 |
+
msgid "Maybe coming soon!"
|
1224 |
+
msgstr ""
|
1225 |
+
|
1226 |
+
#: includes/admin/class-welcome.php:258
|
1227 |
+
msgid "New Schema Type?"
|
1228 |
+
msgstr ""
|
1229 |
+
|
1230 |
+
#: includes/admin/class-welcome.php:254
|
1231 |
+
msgid "author archive"
|
1232 |
+
msgstr ""
|
1233 |
+
|
1234 |
+
#: includes/admin/class-welcome.php:254
|
1235 |
+
msgid "Person"
|
1236 |
+
msgstr ""
|
1237 |
+
|
1238 |
+
#: includes/admin/class-welcome.php:250
|
1239 |
+
msgid "for the contact page"
|
1240 |
+
msgstr ""
|
1241 |
+
|
1242 |
+
#: includes/admin/class-welcome.php:250
|
1243 |
+
msgid "ContactPage"
|
1244 |
+
msgstr ""
|
1245 |
+
|
1246 |
+
#: includes/admin/class-welcome.php:246
|
1247 |
+
msgid "for the about page"
|
1248 |
+
msgstr ""
|
1249 |
+
|
1250 |
+
#: includes/admin/class-welcome.php:246
|
1251 |
+
msgid "AboutPage"
|
1252 |
+
msgstr ""
|
1253 |
+
|
1254 |
+
#: includes/admin/class-welcome.php:242
|
1255 |
+
msgid "for Tags"
|
1256 |
+
msgstr ""
|
1257 |
+
|
1258 |
+
#: includes/admin/class-welcome.php:238
|
1259 |
+
msgid "for Categories"
|
1260 |
+
msgstr ""
|
1261 |
+
|
1262 |
+
#: includes/admin/class-welcome.php:238 includes/admin/class-welcome.php:242
|
1263 |
+
msgid "CollectionPage"
|
1264 |
+
msgstr ""
|
1265 |
+
|
1266 |
+
#: includes/admin/class-welcome.php:234
|
1267 |
+
msgid "for Breadcrumbs"
|
1268 |
+
msgstr ""
|
1269 |
+
|
1270 |
+
#: includes/admin/class-welcome.php:234
|
1271 |
+
msgid "BreadcrumbList"
|
1272 |
+
msgstr ""
|
1273 |
+
|
1274 |
+
#: includes/admin/class-welcome.php:230
|
1275 |
+
msgid "for Web Page Footer"
|
1276 |
+
msgstr ""
|
1277 |
+
|
1278 |
+
#: includes/admin/class-welcome.php:230
|
1279 |
+
msgid "WPFooter"
|
1280 |
+
msgstr ""
|
1281 |
+
|
1282 |
+
#: includes/admin/class-welcome.php:226
|
1283 |
+
msgid "for Web Page Header"
|
1284 |
+
msgstr ""
|
1285 |
+
|
1286 |
+
#: includes/admin/class-welcome.php:226
|
1287 |
+
msgid "WPHeader"
|
1288 |
+
msgstr ""
|
1289 |
+
|
1290 |
+
#: includes/admin/class-welcome.php:222
|
1291 |
+
msgid "for Blog posts list page"
|
1292 |
+
msgstr ""
|
1293 |
+
|
1294 |
+
#: includes/admin/class-welcome.php:222
|
1295 |
+
msgid "Blog"
|
1296 |
+
msgstr ""
|
1297 |
+
|
1298 |
+
#: includes/admin/class-welcome.php:217
|
1299 |
+
msgid "TechArticle"
|
1300 |
+
msgstr ""
|
1301 |
+
|
1302 |
+
#: includes/admin/class-welcome.php:216
|
1303 |
+
msgid "ScholarlyArticle"
|
1304 |
+
msgstr ""
|
1305 |
+
|
1306 |
+
#: includes/admin/class-welcome.php:215
|
1307 |
+
msgid "Report"
|
1308 |
+
msgstr ""
|
1309 |
+
|
1310 |
+
#: includes/admin/class-welcome.php:214
|
1311 |
+
msgid "NewsArticle"
|
1312 |
+
msgstr ""
|
1313 |
+
|
1314 |
+
#: includes/admin/class-welcome.php:213 includes/install.php:58
|
1315 |
+
msgid "BlogPosting"
|
1316 |
+
msgstr ""
|
1317 |
+
|
1318 |
+
#: includes/admin/class-welcome.php:210 includes/admin/meta.php:37
|
1319 |
+
#: includes/admin/meta.php:38 includes/admin/meta.php:62
|
1320 |
+
#: includes/admin/meta.php:63 includes/admin/meta.php:272
|
1321 |
+
#: includes/install.php:57 includes/install.php:99
|
1322 |
+
msgid "Article"
|
1323 |
+
msgstr ""
|
1324 |
+
|
1325 |
+
#: includes/admin/class-welcome.php:208
|
1326 |
+
msgid "Now, Schema plugin supports more schema.org types."
|
1327 |
+
msgstr ""
|
1328 |
+
|
1329 |
+
#: includes/admin/class-welcome.php:207
|
1330 |
+
msgid "Support More Schema Types"
|
1331 |
+
msgstr ""
|
1332 |
+
|
1333 |
+
#: includes/admin/class-welcome.php:200
|
1334 |
+
#: includes/admin/settings/display-settings.php:86
|
1335 |
+
msgid "Quick Configuration Wizard"
|
1336 |
+
msgstr ""
|
1337 |
+
|
1338 |
+
#: includes/admin/class-welcome.php:199
|
1339 |
+
msgid "Plugin Settings"
|
1340 |
+
msgstr ""
|
1341 |
+
|
1342 |
+
#: includes/admin/class-welcome.php:197
|
1343 |
+
msgid "Get started quickly with the Schema configuration wizard!"
|
1344 |
+
msgstr ""
|
1345 |
+
|
1346 |
+
#: includes/admin/class-welcome.php:196
|
1347 |
+
msgid "First-time Schema configuration!"
|
1348 |
+
msgstr ""
|
1349 |
+
|
1350 |
+
#: includes/admin/class-welcome.php:188 includes/admin/class-welcome.php:333
|
1351 |
+
#: includes/admin/class-welcome.php:390
|
1352 |
+
msgid "Version %s"
|
1353 |
+
msgstr ""
|
1354 |
+
|
1355 |
+
#: includes/admin/class-welcome.php:185
|
1356 |
+
msgid "Thank you for installing Schema. The best Schema.org plugin for WordPress."
|
1357 |
+
msgstr ""
|
1358 |
+
|
1359 |
+
#: includes/admin/class-welcome.php:184 includes/admin/class-welcome.php:331
|
1360 |
+
#: includes/admin/class-welcome.php:388
|
1361 |
+
msgid "Welcome to Schema v%s"
|
1362 |
+
msgstr ""
|
1363 |
+
|
1364 |
+
#: includes/admin/class-welcome.php:167
|
1365 |
+
msgid "Credits"
|
1366 |
+
msgstr ""
|
1367 |
+
|
1368 |
+
#: includes/admin/class-welcome.php:163
|
1369 |
+
msgid "Getting Started"
|
1370 |
+
msgstr ""
|
1371 |
+
|
1372 |
+
#: includes/admin/class-welcome.php:160
|
1373 |
+
msgid "What's New"
|
1374 |
+
msgstr ""
|
1375 |
+
|
1376 |
+
#: includes/admin/class-welcome.php:70 includes/admin/class-welcome.php:71
|
1377 |
+
msgid "The people that build Schema"
|
1378 |
+
msgstr ""
|
1379 |
+
|
1380 |
+
#: includes/admin/class-welcome.php:61 includes/admin/class-welcome.php:62
|
1381 |
+
msgid "Getting started with Schema"
|
1382 |
+
msgstr ""
|
1383 |
+
|
1384 |
+
#: includes/admin/class-welcome.php:52 includes/admin/class-welcome.php:53
|
1385 |
+
msgid "What's new in Schema"
|
1386 |
+
msgstr ""
|
1387 |
+
|
1388 |
+
#: includes/admin/class-setup-wizard.php:832
|
1389 |
+
msgid "Select Image"
|
1390 |
+
msgstr "Seleccionar Imagen"
|
1391 |
+
|
1392 |
+
#: includes/admin/class-setup-wizard.php:801
|
1393 |
+
#: includes/admin/meta/class-meta.php:42
|
1394 |
+
#: includes/admin/settings/register-settings.php:1378
|
1395 |
+
msgid "Select One"
|
1396 |
+
msgstr ""
|
1397 |
+
|
1398 |
+
#: includes/admin/class-setup-wizard.php:693
|
1399 |
+
msgid "Learn More"
|
1400 |
+
msgstr "Saber más"
|
1401 |
+
|
1402 |
+
#: includes/admin/class-setup-wizard.php:688
|
1403 |
+
msgid "Configure Your Schema Types!"
|
1404 |
+
msgstr ""
|
1405 |
+
|
1406 |
+
#: includes/admin/class-setup-wizard.php:686
|
1407 |
+
msgid "Next Step"
|
1408 |
+
msgstr "Siguiente paso"
|
1409 |
+
|
1410 |
+
#: includes/admin/class-setup-wizard.php:682
|
1411 |
+
msgid "here"
|
1412 |
+
msgstr ""
|
1413 |
+
|
1414 |
+
#: includes/admin/class-setup-wizard.php:682
|
1415 |
+
msgid "You can change settings from"
|
1416 |
+
msgstr ""
|
1417 |
+
|
1418 |
+
#: includes/admin/class-setup-wizard.php:680
|
1419 |
+
msgid "Schema will now take care of all the needed technical optimization of your site."
|
1420 |
+
msgstr ""
|
1421 |
+
|
1422 |
+
#: includes/admin/class-setup-wizard.php:678
|
1423 |
+
msgid "You've done it!"
|
1424 |
+
msgstr ""
|
1425 |
+
|
1426 |
+
#: includes/admin/class-setup-wizard.php:655
|
1427 |
+
#: includes/admin/class-setup-wizard.php:658
|
1428 |
+
#: includes/admin/settings/register-settings.php:529
|
1429 |
+
msgid "AudioObject"
|
1430 |
+
msgstr ""
|
1431 |
+
|
1432 |
+
#: includes/admin/class-setup-wizard.php:646
|
1433 |
+
#: includes/admin/class-setup-wizard.php:649
|
1434 |
+
#: includes/admin/settings/register-settings.php:523
|
1435 |
+
msgid "VideoObject"
|
1436 |
+
msgstr ""
|
1437 |
+
|
1438 |
+
#: includes/admin/class-setup-wizard.php:637
|
1439 |
+
#: includes/admin/class-setup-wizard.php:640
|
1440 |
+
#: includes/admin/settings/register-settings.php:517
|
1441 |
+
msgid "Comments"
|
1442 |
+
msgstr ""
|
1443 |
+
|
1444 |
+
#: includes/admin/class-setup-wizard.php:628
|
1445 |
+
#: includes/admin/class-setup-wizard.php:631
|
1446 |
+
#: includes/admin/settings/register-settings.php:511
|
1447 |
+
msgid "Breadcrumbs"
|
1448 |
+
msgstr ""
|
1449 |
+
|
1450 |
+
#: includes/admin/class-setup-wizard.php:623
|
1451 |
+
#: includes/admin/class-setup-wizard.php:632
|
1452 |
+
#: includes/admin/class-setup-wizard.php:641
|
1453 |
+
#: includes/admin/class-setup-wizard.php:650
|
1454 |
+
#: includes/admin/class-setup-wizard.php:659
|
1455 |
+
#: includes/admin/settings/register-settings.php:506
|
1456 |
+
#: includes/admin/settings/register-settings.php:512
|
1457 |
+
#: includes/admin/settings/register-settings.php:518
|
1458 |
+
#: includes/admin/settings/register-settings.php:524
|
1459 |
+
#: includes/admin/settings/register-settings.php:530
|
1460 |
+
msgid "enable?"
|
1461 |
+
msgstr ""
|
1462 |
+
|
1463 |
+
#: includes/admin/class-setup-wizard.php:619
|
1464 |
+
#: includes/admin/class-setup-wizard.php:622
|
1465 |
+
#: includes/admin/settings/register-settings.php:505
|
1466 |
+
msgid "WPHeader and WPFooter"
|
1467 |
+
msgstr ""
|
1468 |
+
|
1469 |
+
#: includes/admin/class-setup-wizard.php:611
|
1470 |
+
#: includes/admin/settings/register-settings.php:267
|
1471 |
+
msgid "Publisher Logo should have a wide aspect ratio, not a square icon, it should be no wider than 600px, and no taller than 60px."
|
1472 |
+
msgstr ""
|
1473 |
+
|
1474 |
+
#: includes/admin/class-setup-wizard.php:605
|
1475 |
+
#: includes/admin/class-setup-wizard.php:610
|
1476 |
+
#: includes/admin/settings/register-settings.php:266
|
1477 |
+
msgid "Publisher Logo"
|
1478 |
+
msgstr ""
|
1479 |
+
|
1480 |
+
#: includes/admin/class-setup-wizard.php:595
|
1481 |
+
#: includes/admin/class-setup-wizard.php:598
|
1482 |
+
#: includes/admin/settings/register-settings.php:498
|
1483 |
+
msgid "Contact Page"
|
1484 |
+
msgstr ""
|
1485 |
+
|
1486 |
+
#: includes/admin/class-setup-wizard.php:585
|
1487 |
+
#: includes/admin/class-setup-wizard.php:588
|
1488 |
+
#: includes/admin/settings/register-settings.php:491
|
1489 |
+
msgid "About Page"
|
1490 |
+
msgstr ""
|
1491 |
+
|
1492 |
+
#: includes/admin/class-setup-wizard.php:580
|
1493 |
+
msgid "Automatically, add additional schema.org markups to your website content."
|
1494 |
+
msgstr ""
|
1495 |
+
|
1496 |
+
#: includes/admin/class-setup-wizard.php:578
|
1497 |
+
msgid "Mark Up Your Content"
|
1498 |
+
msgstr ""
|
1499 |
+
|
1500 |
+
#: includes/admin/class-setup-wizard.php:552
|
1501 |
+
#: includes/admin/class-setup-wizard.php:555
|
1502 |
+
#: includes/admin/settings/register-settings.php:411
|
1503 |
+
msgid "Tumblr"
|
1504 |
+
msgstr ""
|
1505 |
+
|
1506 |
+
#: includes/admin/class-setup-wizard.php:540
|
1507 |
+
#: includes/admin/class-setup-wizard.php:543
|
1508 |
+
#: includes/admin/settings/register-settings.php:403
|
1509 |
+
msgid "SoundCloud"
|
1510 |
+
msgstr ""
|
1511 |
+
|
1512 |
+
#: includes/admin/class-setup-wizard.php:528
|
1513 |
+
#: includes/admin/class-setup-wizard.php:531
|
1514 |
+
#: includes/admin/settings/register-settings.php:395
|
1515 |
+
msgid "Pinterest"
|
1516 |
+
msgstr ""
|
1517 |
+
|
1518 |
+
#: includes/admin/class-setup-wizard.php:516
|
1519 |
+
#: includes/admin/class-setup-wizard.php:519
|
1520 |
+
#: includes/admin/settings/register-settings.php:387
|
1521 |
+
msgid "Myspace"
|
1522 |
+
msgstr ""
|
1523 |
+
|
1524 |
+
#: includes/admin/class-setup-wizard.php:507
|
1525 |
+
msgid "Linkedin"
|
1526 |
+
msgstr "Linkedin"
|
1527 |
+
|
1528 |
+
#: includes/admin/class-setup-wizard.php:504
|
1529 |
+
#: includes/admin/settings/register-settings.php:380
|
1530 |
+
msgid "LinkedIn"
|
1531 |
+
msgstr ""
|
1532 |
+
|
1533 |
+
#: includes/admin/class-setup-wizard.php:492
|
1534 |
+
#: includes/admin/class-setup-wizard.php:495
|
1535 |
+
#: includes/admin/settings/register-settings.php:372
|
1536 |
+
msgid "YouTube"
|
1537 |
+
msgstr ""
|
1538 |
+
|
1539 |
+
#: includes/admin/class-setup-wizard.php:480
|
1540 |
+
#: includes/admin/class-setup-wizard.php:483
|
1541 |
+
#: includes/admin/settings/register-settings.php:364
|
1542 |
+
msgid "Instagram"
|
1543 |
+
msgstr ""
|
1544 |
+
|
1545 |
+
#: includes/admin/class-setup-wizard.php:468
|
1546 |
+
#: includes/admin/class-setup-wizard.php:471
|
1547 |
+
#: includes/admin/settings/register-settings.php:356
|
1548 |
+
msgid "Google+"
|
1549 |
+
msgstr ""
|
1550 |
+
|
1551 |
+
#: includes/admin/class-setup-wizard.php:456
|
1552 |
+
#: includes/admin/class-setup-wizard.php:459
|
1553 |
+
#: includes/admin/settings/register-settings.php:348
|
1554 |
+
msgid "Twitter"
|
1555 |
+
msgstr ""
|
1556 |
+
|
1557 |
+
#: includes/admin/class-setup-wizard.php:444
|
1558 |
+
#: includes/admin/class-setup-wizard.php:447
|
1559 |
+
#: includes/admin/settings/register-settings.php:340
|
1560 |
+
msgid "Facebook"
|
1561 |
+
msgstr ""
|
1562 |
+
|
1563 |
+
#: includes/admin/class-setup-wizard.php:439
|
1564 |
+
msgid "Knowledge panels prominently display your social profile information in some Google Search results."
|
1565 |
+
msgstr ""
|
1566 |
+
|
1567 |
+
#: includes/admin/class-setup-wizard.php:437
|
1568 |
+
#: includes/admin/settings/register-settings.php:335
|
1569 |
+
msgid "Provide your social profile information to a Google Knowledge panel."
|
1570 |
+
msgstr ""
|
1571 |
+
|
1572 |
+
#: includes/admin/class-setup-wizard.php:412
|
1573 |
+
#: includes/admin/class-setup-wizard.php:611
|
1574 |
+
#: includes/admin/settings/register-settings.php:267
|
1575 |
+
#: includes/admin/settings/register-settings.php:322
|
1576 |
+
msgid "Logo guidelines"
|
1577 |
+
msgstr ""
|
1578 |
+
|
1579 |
+
#: includes/admin/class-setup-wizard.php:412
|
1580 |
+
#: includes/admin/settings/register-settings.php:322
|
1581 |
+
msgid "Specify the image of your organization's logo to be used in Google Search results and in the Knowledge Graph.<br />Learn more about"
|
1582 |
+
msgstr ""
|
1583 |
+
|
1584 |
+
#: includes/admin/class-setup-wizard.php:411
|
1585 |
+
#: includes/admin/settings/register-settings.php:321
|
1586 |
+
msgid "Logo"
|
1587 |
+
msgstr ""
|
1588 |
+
|
1589 |
+
#: includes/admin/class-setup-wizard.php:406
|
1590 |
+
msgid "Organization Logo"
|
1591 |
+
msgstr ""
|
1592 |
+
|
1593 |
+
#: includes/admin/class-setup-wizard.php:394
|
1594 |
+
#: includes/admin/class-setup-wizard.php:397
|
1595 |
+
#: includes/admin/post-type/schema-columns.php:19
|
1596 |
+
#: includes/admin/settings/register-settings.php:303
|
1597 |
+
msgid "Name"
|
1598 |
+
msgstr ""
|
1599 |
+
|
1600 |
+
#: includes/admin/class-setup-wizard.php:383
|
1601 |
+
msgid "Organization or Person?"
|
1602 |
+
msgstr ""
|
1603 |
+
|
1604 |
+
#: includes/admin/class-setup-wizard.php:380
|
1605 |
+
#: includes/admin/settings/register-settings.php:289
|
1606 |
+
msgid "This Website Represent"
|
1607 |
+
msgstr ""
|
1608 |
+
|
1609 |
+
#: includes/admin/class-setup-wizard.php:375
|
1610 |
+
#: includes/admin/settings/register-settings.php:283
|
1611 |
+
msgid "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."
|
1612 |
+
msgstr ""
|
1613 |
+
|
1614 |
+
#: includes/admin/class-setup-wizard.php:373
|
1615 |
+
msgid "Does your site represent a Person or Organization?"
|
1616 |
+
msgstr ""
|
1617 |
+
|
1618 |
+
#: includes/admin/class-setup-wizard.php:371
|
1619 |
+
#: includes/admin/settings/register-settings.php:282
|
1620 |
+
msgid "Person or Organization"
|
1621 |
+
msgstr "Persona u Organización"
|
1622 |
+
|
1623 |
+
#: includes/admin/class-setup-wizard.php:359
|
1624 |
+
#: includes/admin/class-setup-wizard.php:422
|
1625 |
+
#: includes/admin/class-setup-wizard.php:566
|
1626 |
+
#: includes/admin/class-setup-wizard.php:666
|
1627 |
+
msgid "Skip this step"
|
1628 |
+
msgstr "Saltar este paso"
|
1629 |
+
|
1630 |
+
#: includes/admin/class-setup-wizard.php:358
|
1631 |
+
#: includes/admin/class-setup-wizard.php:421
|
1632 |
+
#: includes/admin/class-setup-wizard.php:565
|
1633 |
+
#: includes/admin/class-setup-wizard.php:665
|
1634 |
+
msgid "Continue"
|
1635 |
+
msgstr "Continuar"
|
1636 |
+
|
1637 |
+
#: includes/admin/class-setup-wizard.php:325
|
1638 |
+
msgid "This information can help us to prioritize future additions to our plugin for specific types of sites"
|
1639 |
+
msgstr ""
|
1640 |
+
|
1641 |
+
#: includes/admin/class-setup-wizard.php:323
|
1642 |
+
msgid "What is your site about?"
|
1643 |
+
msgstr ""
|
1644 |
+
|
1645 |
+
#: includes/admin/class-setup-wizard.php:311
|
1646 |
+
msgid "Not right now"
|
1647 |
+
msgstr ""
|
1648 |
+
|
1649 |
+
#: includes/admin/class-setup-wizard.php:310
|
1650 |
+
msgid "Let's Go!"
|
1651 |
+
msgstr ""
|
1652 |
+
|
1653 |
+
#: includes/admin/class-setup-wizard.php:308
|
1654 |
+
msgid "No time right now? If you don’t want to go through the wizard, you can skip and return to the WordPress dashboard. Come back anytime if you change your mind!"
|
1655 |
+
msgstr ""
|
1656 |
+
|
1657 |
+
#: includes/admin/class-setup-wizard.php:307
|
1658 |
+
msgid "Thank you for choosing Schema to power your website! This quick setup wizard will help you configure the basic settings. <strong>It’s completely optional and shouldn’t take longer than two minutes.</strong>"
|
1659 |
+
msgstr ""
|
1660 |
+
|
1661 |
+
#: includes/admin/class-setup-wizard.php:306
|
1662 |
+
msgid "Welcome to Schema!"
|
1663 |
+
msgstr ""
|
1664 |
+
|
1665 |
+
#: includes/admin/class-setup-wizard.php:245
|
1666 |
+
msgid "Return to the WordPress Dashboard"
|
1667 |
+
msgstr ""
|
1668 |
+
|
1669 |
+
#: includes/admin/class-setup-wizard.php:178
|
1670 |
+
msgid "Schema › Setup Wizard"
|
1671 |
+
msgstr ""
|
1672 |
+
|
1673 |
+
#: includes/admin/class-setup-wizard.php:141
|
1674 |
+
msgid "Ready!"
|
1675 |
+
msgstr "¡Listo!"
|
1676 |
+
|
1677 |
+
#: includes/admin/class-setup-wizard.php:136
|
1678 |
+
#: includes/admin/settings/register-settings.php:751
|
1679 |
+
msgid "Schemas"
|
1680 |
+
msgstr ""
|
1681 |
+
|
1682 |
+
#: includes/admin/class-setup-wizard.php:131
|
1683 |
+
#: includes/admin/class-setup-wizard.php:435
|
1684 |
+
#: includes/admin/settings/register-settings.php:334
|
1685 |
+
#: includes/admin/settings/register-settings.php:814
|
1686 |
+
msgid "Social Profiles"
|
1687 |
+
msgstr ""
|
1688 |
+
|
1689 |
+
#: includes/admin/class-setup-wizard.php:126
|
1690 |
+
#: includes/admin/class-welcome.php:212
|
1691 |
+
#: includes/admin/settings/contextual-help.php:38
|
1692 |
+
#: includes/admin/settings/register-settings.php:749
|
1693 |
+
msgid "General"
|
1694 |
+
msgstr ""
|
1695 |
+
|
1696 |
+
#: includes/admin/class-setup-wizard.php:121
|
1697 |
+
#: includes/admin/class-setup-wizard.php:321
|
1698 |
+
#: includes/admin/class-setup-wizard.php:333
|
1699 |
+
#: includes/admin/settings/register-settings.php:241
|
1700 |
+
msgid "Site Type"
|
1701 |
+
msgstr "Tipo de Sitio"
|
1702 |
+
|
1703 |
+
#: includes/admin/class-setup-wizard.php:116
|
1704 |
+
msgid "Introduction"
|
1705 |
+
msgstr "Introducción"
|
1706 |
+
|
1707 |
+
#: includes/admin/class-setup-wizard.php:82 includes/admin/scripts.php:25
|
1708 |
+
msgid "We are sorry but your browser is not compatible with this kind of file upload. Please upgrade your browser."
|
1709 |
+
msgstr ""
|
1710 |
+
|
1711 |
+
#: includes/admin/class-setup-wizard.php:80
|
1712 |
+
#: includes/admin/meta-tax/class-meta-tax.php:379
|
1713 |
+
#: includes/admin/meta-tax/class-meta-tax.php:426 includes/admin/scripts.php:23
|
1714 |
+
msgid "Remove"
|
1715 |
+
msgstr ""
|
1716 |
+
|
1717 |
+
#: includes/admin/class-setup-wizard.php:79 includes/admin/scripts.php:22
|
1718 |
+
msgid "Use This File"
|
1719 |
+
msgstr ""
|
1720 |
+
|
1721 |
+
#: includes/admin/class-setup-wizard.php:61
|
1722 |
+
msgctxt "enhanced select"
|
1723 |
+
msgid "Searching…"
|
1724 |
+
msgstr ""
|
1725 |
+
|
1726 |
+
#: includes/admin/class-setup-wizard.php:60
|
1727 |
+
msgctxt "enhanced select"
|
1728 |
+
msgid "Loading more results…"
|
1729 |
+
msgstr ""
|
1730 |
+
|
1731 |
+
#: includes/admin/class-setup-wizard.php:59
|
1732 |
+
msgctxt "enhanced select"
|
1733 |
+
msgid "You can only select %qty% items"
|
1734 |
+
msgstr ""
|
1735 |
+
|
1736 |
+
#: includes/admin/class-setup-wizard.php:58
|
1737 |
+
msgctxt "enhanced select"
|
1738 |
+
msgid "You can only select 1 item"
|
1739 |
+
msgstr ""
|
1740 |
+
|
1741 |
+
#: includes/admin/class-setup-wizard.php:57
|
1742 |
+
msgctxt "enhanced select"
|
1743 |
+
msgid "Please delete %qty% characters"
|
1744 |
+
msgstr ""
|
1745 |
+
|
1746 |
+
#: includes/admin/class-setup-wizard.php:56
|
1747 |
+
msgctxt "enhanced select"
|
1748 |
+
msgid "Please delete 1 character"
|
1749 |
+
msgstr ""
|
1750 |
+
|
1751 |
+
#: includes/admin/class-setup-wizard.php:55
|
1752 |
+
msgctxt "enhanced select"
|
1753 |
+
msgid "Please enter %qty% or more characters"
|
1754 |
+
msgstr ""
|
1755 |
+
|
1756 |
+
#: includes/admin/class-setup-wizard.php:54
|
1757 |
+
msgctxt "enhanced select"
|
1758 |
+
msgid "Please enter 1 or more characters"
|
1759 |
+
msgstr ""
|
1760 |
+
|
1761 |
+
#: includes/admin/class-setup-wizard.php:53
|
1762 |
+
msgctxt "enhanced select"
|
1763 |
+
msgid "Loading failed"
|
1764 |
+
msgstr ""
|
1765 |
+
|
1766 |
+
#: includes/admin/class-setup-wizard.php:52
|
1767 |
+
msgctxt "enhanced select"
|
1768 |
+
msgid "No matches found"
|
1769 |
+
msgstr ""
|
1770 |
+
|
1771 |
+
#: includes/admin/class-setup-wizard.php:51
|
1772 |
+
msgctxt "enhanced select"
|
1773 |
+
msgid "%qty% results are available, use up and down arrow keys to navigate."
|
1774 |
+
msgstr ""
|
1775 |
+
|
1776 |
+
#: includes/admin/class-setup-wizard.php:50
|
1777 |
+
msgctxt "enhanced select"
|
1778 |
+
msgid "One result is available, press enter to select it."
|
1779 |
+
msgstr ""
|
1780 |
+
|
1781 |
+
#: includes/admin/class-notices.php:50
|
1782 |
+
#: includes/admin/updater/class-license-handler.php:319
|
1783 |
+
#: includes/admin/updater/class-updater.php:402
|
1784 |
+
msgid "Error"
|
1785 |
+
msgstr ""
|
1786 |
+
|
1787 |
+
#: includes/admin/class-notices.php:50
|
1788 |
+
msgid "Security check failed"
|
1789 |
+
msgstr ""
|
1790 |
+
|
1791 |
+
#: includes/admin/class-notices.php:29
|
1792 |
+
msgid "Settings successfully imported"
|
1793 |
+
msgstr ""
|
1794 |
+
|
1795 |
+
#: includes/admin/class-notices.php:17
|
1796 |
+
#: includes/admin/settings/register-settings.php:645
|
1797 |
+
msgid "Settings updated."
|
1798 |
+
msgstr ""
|
1799 |
+
|
1800 |
+
#: includes/admin/class-menu.php:78 includes/admin/class-menu.php:79
|
1801 |
+
msgid "About"
|
1802 |
+
msgstr ""
|
1803 |
+
|
1804 |
+
#: includes/admin/class-menu.php:66 includes/admin/class-menu.php:67
|
1805 |
+
#: includes/admin/settings/contextual-help.php:56
|
1806 |
+
#: includes/admin/settings/register-settings.php:754
|
1807 |
+
msgid "Extensions"
|
1808 |
+
msgstr ""
|
1809 |
+
|
1810 |
+
#: includes/admin/class-menu.php:55 includes/admin/class-menu.php:56
|
1811 |
+
msgid "Types"
|
1812 |
+
msgstr ""
|
1813 |
+
|
1814 |
+
#: includes/admin/class-menu.php:39
|
1815 |
+
msgid "Settings"
|
1816 |
+
msgstr ""
|
1817 |
+
|
1818 |
+
#: includes/admin/class-menu.php:38 includes/admin/meta.php:271
|
1819 |
+
msgid "Schema Settings"
|
1820 |
+
msgstr ""
|
1821 |
+
|
1822 |
+
#. #-#-#-#-# schema-code.pot (Schema 1.7) #-#-#-#-#
|
1823 |
+
#. Plugin Name of the plugin/theme
|
1824 |
+
#: includes/admin/class-feedback.php:289 includes/admin/class-menu.php:29
|
1825 |
+
#: includes/admin/class-menu.php:30 includes/admin/meta-tax.php:25
|
1826 |
+
#: includes/admin/meta.php:149 includes/admin/settings/display-settings.php:65
|
1827 |
+
#: includes/extensions/post-meta-generator.php:160
|
1828 |
+
msgid "Schema"
|
1829 |
+
msgstr ""
|
1830 |
+
|
1831 |
+
#: includes/admin/class-feedback.php:241
|
1832 |
+
msgid "No thanks"
|
1833 |
+
msgstr ""
|
1834 |
+
|
1835 |
+
#: includes/admin/class-feedback.php:238
|
1836 |
+
msgid "Leave Feedback"
|
1837 |
+
msgstr ""
|
1838 |
+
|
1839 |
+
#: includes/admin/class-feedback.php:232
|
1840 |
+
msgid "your feedback"
|
1841 |
+
msgstr ""
|
1842 |
+
|
1843 |
+
#: includes/admin/class-feedback.php:232
|
1844 |
+
msgid "Let us know what you think about the plugin, what is missing, and how we can make it better. Leave us a review with"
|
1845 |
+
msgstr ""
|
1846 |
+
|
1847 |
+
#: includes/admin/class-feedback.php:230
|
1848 |
+
msgid "You have been using the %s plugin for %s now!"
|
1849 |
+
msgstr ""
|
1850 |
+
|
1851 |
+
#: includes/admin/class-feedback.php:228
|
1852 |
+
msgid "How do you like Schema?"
|
1853 |
+
msgstr ""
|
1854 |
+
|
1855 |
+
#: includes/admin/class-feedback.php:100
|
1856 |
+
msgid "a second"
|
1857 |
+
msgstr ""
|
1858 |
+
|
1859 |
+
#: includes/admin/class-feedback.php:98
|
1860 |
+
msgid "%s seconds"
|
1861 |
+
msgstr ""
|
1862 |
+
|
1863 |
+
#: includes/admin/class-feedback.php:92
|
1864 |
+
msgid "a minute"
|
1865 |
+
msgstr ""
|
1866 |
+
|
1867 |
+
#: includes/admin/class-feedback.php:90
|
1868 |
+
msgid "%s minutes"
|
1869 |
+
msgstr ""
|
1870 |
+
|
1871 |
+
#: includes/admin/class-feedback.php:84
|
1872 |
+
msgid "an hour"
|
1873 |
+
msgstr ""
|
1874 |
+
|
1875 |
+
#: includes/admin/class-feedback.php:82
|
1876 |
+
msgid "%s hours"
|
1877 |
+
msgstr ""
|
1878 |
+
|
1879 |
+
#: includes/admin/class-feedback.php:76
|
1880 |
+
msgid "a day"
|
1881 |
+
msgstr ""
|
1882 |
+
|
1883 |
+
#: includes/admin/class-feedback.php:74
|
1884 |
+
msgid "%s days"
|
1885 |
+
msgstr ""
|
1886 |
+
|
1887 |
+
#: includes/admin/class-feedback.php:68
|
1888 |
+
msgid "a week"
|
1889 |
+
msgstr ""
|
1890 |
+
|
1891 |
+
#: includes/admin/class-feedback.php:66
|
1892 |
+
msgid "%s weeks"
|
1893 |
+
msgstr ""
|
1894 |
+
|
1895 |
+
#: includes/admin/class-feedback.php:60
|
1896 |
+
msgid "a year"
|
1897 |
+
msgstr ""
|
1898 |
+
|
1899 |
+
#: includes/admin/class-feedback.php:58
|
1900 |
+
msgid "%s years"
|
1901 |
+
msgstr ""
|
1902 |
+
|
1903 |
+
#: includes/admin/admin-functions.php:163
|
1904 |
+
msgid "Package Tracking"
|
1905 |
+
msgstr ""
|
1906 |
+
|
1907 |
+
#: includes/admin/admin-functions.php:162
|
1908 |
+
msgid "Roadside Assistance"
|
1909 |
+
msgstr ""
|
1910 |
+
|
1911 |
+
#: includes/admin/admin-functions.php:161
|
1912 |
+
msgid "Baggage Tracking"
|
1913 |
+
msgstr ""
|
1914 |
+
|
1915 |
+
#: includes/admin/admin-functions.php:160
|
1916 |
+
msgid "Emergency"
|
1917 |
+
msgstr ""
|
1918 |
+
|
1919 |
+
#: includes/admin/admin-functions.php:159
|
1920 |
+
msgid "Credit Card Support"
|
1921 |
+
msgstr ""
|
1922 |
+
|
1923 |
+
#: includes/admin/admin-functions.php:158
|
1924 |
+
msgid "Reservations"
|
1925 |
+
msgstr ""
|
1926 |
+
|
1927 |
+
#: includes/admin/admin-functions.php:157
|
1928 |
+
msgid "Sales"
|
1929 |
+
msgstr ""
|
1930 |
+
|
1931 |
+
#: includes/admin/admin-functions.php:156
|
1932 |
+
msgid "Bill Payment"
|
1933 |
+
msgstr ""
|
1934 |
+
|
1935 |
+
#: includes/admin/admin-functions.php:155
|
1936 |
+
msgid "Billing Support"
|
1937 |
+
msgstr ""
|
1938 |
+
|
1939 |
+
#: includes/admin/admin-functions.php:154
|
1940 |
+
msgid "Technical Support"
|
1941 |
+
msgstr ""
|
1942 |
+
|
1943 |
+
#: includes/admin/admin-functions.php:153
|
1944 |
+
msgid "Customer Support"
|
1945 |
+
msgstr ""
|
1946 |
+
|
1947 |
+
#: includes/admin/admin-bar-menu.php:43
|
1948 |
+
msgid "_blank"
|
1949 |
+
msgstr ""
|
1950 |
+
|
1951 |
+
#: includes/admin/admin-bar-menu.php:41
|
1952 |
+
msgid "Structured Data Testing Tool"
|
1953 |
+
msgstr ""
|
languages/schema-wp-fr.mo
ADDED
Binary file
|
languages/schema-wp-fr.po
ADDED
@@ -0,0 +1,2004 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of Schema in French (France)
|
2 |
+
# This file is distributed under the same license as the Schema package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2019-12-18 23:21+0000\n"
|
6 |
+
"MIME-Version: 1.0\n"
|
7 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
+
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
10 |
+
"X-Generator: Loco https://localise.biz/\n"
|
11 |
+
"Language: fr\n"
|
12 |
+
"Project-Id-Version: Schema\n"
|
13 |
+
"Report-Msgid-Bugs-To: \n"
|
14 |
+
"POT-Creation-Date: 2019-11-27 14:34+0000\n"
|
15 |
+
"Last-Translator: Hesham Z. <hesham.zebida@gmail.com>\n"
|
16 |
+
"Language-Team: French\n"
|
17 |
+
"X-Loco-Version: 2.3.1; wp-5.3.2"
|
18 |
+
|
19 |
+
#: includes/admin/meta.php:249
|
20 |
+
msgid ""
|
21 |
+
" <a class=\"button button-large\" target=\"_blank\" href=\"https://schema."
|
22 |
+
"press/downloads/schema-premium/\">Get Schema Premium</a>"
|
23 |
+
msgstr ""
|
24 |
+
|
25 |
+
#: includes/json/category.php:108
|
26 |
+
msgid " Category"
|
27 |
+
msgstr " Catégorie"
|
28 |
+
|
29 |
+
#: includes/json/tag.php:84
|
30 |
+
msgid " Tag"
|
31 |
+
msgstr " Étiquette"
|
32 |
+
|
33 |
+
#: includes/admin/updater/class-license-handler.php:168
|
34 |
+
#, php-format
|
35 |
+
msgid "%1$s"
|
36 |
+
msgstr "%1$s"
|
37 |
+
|
38 |
+
#: includes/admin/settings/contextual-help.php:29
|
39 |
+
#, php-format
|
40 |
+
msgid ""
|
41 |
+
"<a href=\"%s\">Post an issue</a> on <a href=\"%s\">GitHub</a>. View <a "
|
42 |
+
"href=\"%s\">extensions</a>"
|
43 |
+
msgstr ""
|
44 |
+
"<a href=\"%s\">Publier un problème</a> sur <a href=\"%s\">GitHub</a>. Voir "
|
45 |
+
"<a href=\"%s\">extensions</a>"
|
46 |
+
|
47 |
+
#: includes/admin/settings/contextual-help.php:65
|
48 |
+
msgid "A description of all the options are provided beside their input boxes."
|
49 |
+
msgstr ""
|
50 |
+
"Une description de toutes les options est fournie à côté de leurs zones de "
|
51 |
+
"saisie."
|
52 |
+
|
53 |
+
#: includes/admin/class-menu.php:79 includes/admin/class-menu.php:80
|
54 |
+
msgid "About"
|
55 |
+
msgstr "À propos"
|
56 |
+
|
57 |
+
#: includes/admin/class-setup-wizard.php:595
|
58 |
+
#: includes/admin/class-setup-wizard.php:598
|
59 |
+
msgid "About Page"
|
60 |
+
msgstr "Page à propos"
|
61 |
+
|
62 |
+
#: includes/admin/class-welcome.php:246
|
63 |
+
msgid "AboutPage"
|
64 |
+
msgstr "AboutPage"
|
65 |
+
|
66 |
+
#: includes/admin/post-type/schema-post-type.php:28
|
67 |
+
msgctxt "add new on admin bar"
|
68 |
+
msgid "Schema"
|
69 |
+
msgstr "Schéma"
|
70 |
+
|
71 |
+
#: includes/admin/post-type/schema-post-type.php:30
|
72 |
+
msgid "Add New Schema"
|
73 |
+
msgstr "Ajouter un nouveau schéma"
|
74 |
+
|
75 |
+
#: includes/admin/meta.php:170
|
76 |
+
msgid "Add post meta key name as source"
|
77 |
+
msgstr "Ajouter le nom de la clé méta de publication comme source"
|
78 |
+
|
79 |
+
#: includes/admin/post-type/schema-post-type.php:27
|
80 |
+
msgctxt "admin menu"
|
81 |
+
msgid "Schema"
|
82 |
+
msgstr "Schéma"
|
83 |
+
|
84 |
+
#: includes/admin/settings/contextual-help.php:62
|
85 |
+
#: includes/admin/meta/class-meta.php:64
|
86 |
+
msgid "Advanced"
|
87 |
+
msgstr "Avancée"
|
88 |
+
|
89 |
+
#: includes/admin/post-type/schema-post-type.php:34
|
90 |
+
msgid "All Schemas"
|
91 |
+
msgstr "Tous les schémas"
|
92 |
+
|
93 |
+
#: includes/admin/class-welcome.php:297
|
94 |
+
msgid "Also, you can set Schema to work on specific post categories."
|
95 |
+
msgstr ""
|
96 |
+
"En outre, vous pouvez configurer Schema pour qu’il fonctionne sur des "
|
97 |
+
"catégories de publication spécifiques."
|
98 |
+
|
99 |
+
#: includes/admin/meta.php:41 includes/admin/meta.php:42
|
100 |
+
#: includes/admin/meta.php:266 includes/admin/class-welcome.php:210
|
101 |
+
msgid "Article"
|
102 |
+
msgstr "Article"
|
103 |
+
|
104 |
+
#: includes/admin/meta.php:65
|
105 |
+
msgid "Article Type"
|
106 |
+
msgstr "Type d’article"
|
107 |
+
|
108 |
+
#: includes/extensions/audio-object.php:115
|
109 |
+
msgid "Audio duration, example: if duration is 1 Hour 35 MIN, use: PT1H35M"
|
110 |
+
msgstr ""
|
111 |
+
"Durée son, exemple : si la durée est de 1 heure 35 minutes, utilisez : "
|
112 |
+
"PT1H35M"
|
113 |
+
|
114 |
+
#: includes/extensions/audio-object.php:36
|
115 |
+
msgid "Audio Markups"
|
116 |
+
msgstr "Marquages son"
|
117 |
+
|
118 |
+
#: includes/extensions/audio-object.php:122
|
119 |
+
msgid "Audio short description."
|
120 |
+
msgstr "Description son courte."
|
121 |
+
|
122 |
+
#: includes/extensions/audio-object.php:101
|
123 |
+
msgid "Audio title"
|
124 |
+
msgstr "Titre son"
|
125 |
+
|
126 |
+
#: includes/extensions/audio-object.php:108
|
127 |
+
msgid "Audio upload date in ISO 8601 format YYYY-MM-DD example: 2016-06-23"
|
128 |
+
msgstr ""
|
129 |
+
"Date de téléversement son au format ISO 8601 AAAA-MM-JJ exemple : 2016-06-23"
|
130 |
+
|
131 |
+
#: includes/admin/class-setup-wizard.php:665
|
132 |
+
#: includes/admin/class-setup-wizard.php:668
|
133 |
+
msgid "AudioObject"
|
134 |
+
msgstr "AudioObject"
|
135 |
+
|
136 |
+
#: includes/misc-functions.php:680
|
137 |
+
msgid "Australian Dollars"
|
138 |
+
msgstr "Dollars australiens "
|
139 |
+
|
140 |
+
#: includes/admin/class-welcome.php:254
|
141 |
+
msgid "author archive"
|
142 |
+
msgstr "archive auteur"
|
143 |
+
|
144 |
+
#: includes/admin/meta.php:153
|
145 |
+
msgid "Author Name"
|
146 |
+
msgstr "Nom de l’auteur"
|
147 |
+
|
148 |
+
#: includes/admin/class-welcome.php:305
|
149 |
+
msgid "Automatically add AudioObject to oEmbed"
|
150 |
+
msgstr "Ajouter automatiquement AudioObject à oEmbed"
|
151 |
+
|
152 |
+
#: includes/admin/class-welcome.php:301
|
153 |
+
msgid "Automatically add VideoObject to oEmbed"
|
154 |
+
msgstr "Ajouter automatiquement VideoObject à oEmbed"
|
155 |
+
|
156 |
+
#: includes/admin/class-setup-wizard.php:590
|
157 |
+
msgid ""
|
158 |
+
"Automatically, add additional schema.org markups to your website content."
|
159 |
+
msgstr ""
|
160 |
+
"Ajoutez automatiquement des annotations schema.org au contenu de votre site "
|
161 |
+
"Web."
|
162 |
+
|
163 |
+
#: includes/admin/admin-functions.php:161
|
164 |
+
msgid "Baggage Tracking"
|
165 |
+
msgstr "Suivi des bagages"
|
166 |
+
|
167 |
+
#: includes/misc-functions.php:681
|
168 |
+
msgid "Bangladeshi Taka"
|
169 |
+
msgstr "Taka bangladais"
|
170 |
+
|
171 |
+
#: includes/admin/admin-functions.php:156
|
172 |
+
msgid "Bill Payment"
|
173 |
+
msgstr "Paiement de factures"
|
174 |
+
|
175 |
+
#: includes/admin/admin-functions.php:155
|
176 |
+
msgid "Billing Support"
|
177 |
+
msgstr "Service facturation"
|
178 |
+
|
179 |
+
#: includes/admin/class-welcome.php:222
|
180 |
+
msgid "Blog"
|
181 |
+
msgstr "Blog"
|
182 |
+
|
183 |
+
#: includes/admin/class-welcome.php:213
|
184 |
+
msgid "BlogPosting"
|
185 |
+
msgstr "BlogPosting"
|
186 |
+
|
187 |
+
#: includes/misc-functions.php:682
|
188 |
+
msgid "Brazilian Real"
|
189 |
+
msgstr "Real brésilien"
|
190 |
+
|
191 |
+
#: includes/admin/class-welcome.php:234
|
192 |
+
msgid "BreadcrumbList"
|
193 |
+
msgstr "BreadcrumbList"
|
194 |
+
|
195 |
+
#: includes/admin/class-setup-wizard.php:638
|
196 |
+
#: includes/admin/class-setup-wizard.php:641
|
197 |
+
msgid "Breadcrumbs"
|
198 |
+
msgstr "Fil d’Ariane"
|
199 |
+
|
200 |
+
#: includes/admin/extensions.php:43 includes/admin/extensions.php:61
|
201 |
+
#: includes/admin/extensions.php:61
|
202 |
+
msgid "Browse all extensions"
|
203 |
+
msgstr "Parcourir tous les modules"
|
204 |
+
|
205 |
+
#: includes/misc-functions.php:683
|
206 |
+
msgid "Bulgarian Lev"
|
207 |
+
msgstr "Lev bulgare"
|
208 |
+
|
209 |
+
#: includes/misc-functions.php:684
|
210 |
+
msgid "Canadian Dollars"
|
211 |
+
msgstr "Dollars canadiens"
|
212 |
+
|
213 |
+
#: includes/admin/meta.php:206
|
214 |
+
msgid "Checkbox"
|
215 |
+
msgstr "Case à cocher"
|
216 |
+
|
217 |
+
#: includes/misc-functions.php:685
|
218 |
+
msgid "Chilean Peso"
|
219 |
+
msgstr "Peso chilien"
|
220 |
+
|
221 |
+
#: includes/misc-functions.php:686
|
222 |
+
msgid "Chinese Yuan"
|
223 |
+
msgstr "Le yuan chinois"
|
224 |
+
|
225 |
+
#: includes/admin/class-welcome.php:238 includes/admin/class-welcome.php:242
|
226 |
+
msgid "CollectionPage"
|
227 |
+
msgstr "CollectionPage"
|
228 |
+
|
229 |
+
#: includes/misc-functions.php:687
|
230 |
+
msgid "Colombian Peso"
|
231 |
+
msgstr "Peso colombien"
|
232 |
+
|
233 |
+
#: includes/admin/class-setup-wizard.php:647
|
234 |
+
#: includes/admin/class-setup-wizard.php:650
|
235 |
+
msgid "Comments"
|
236 |
+
msgstr "Commentaires"
|
237 |
+
|
238 |
+
#: includes/admin/class-setup-wizard.php:698
|
239 |
+
msgid "Configure Your Schema Types!"
|
240 |
+
msgstr "Configurez vos types de schéma !"
|
241 |
+
|
242 |
+
#: includes/admin/class-setup-wizard.php:605
|
243 |
+
#: includes/admin/class-setup-wizard.php:608
|
244 |
+
msgid "Contact Page"
|
245 |
+
msgstr "Page de contact"
|
246 |
+
|
247 |
+
#: includes/admin/settings/register-settings.php:424
|
248 |
+
msgid "Contact Type"
|
249 |
+
msgstr "Type de contact"
|
250 |
+
|
251 |
+
#: includes/admin/class-welcome.php:250
|
252 |
+
msgid "ContactPage"
|
253 |
+
msgstr "ContactPage"
|
254 |
+
|
255 |
+
#: includes/admin/post-type/schema-columns.php:51
|
256 |
+
msgid "Content"
|
257 |
+
msgstr "Contenu"
|
258 |
+
|
259 |
+
#: includes/admin/class-setup-wizard.php:368
|
260 |
+
#: includes/admin/class-setup-wizard.php:431
|
261 |
+
#: includes/admin/class-setup-wizard.php:575
|
262 |
+
#: includes/admin/class-setup-wizard.php:675
|
263 |
+
msgid "Continue"
|
264 |
+
msgstr "Continuer"
|
265 |
+
|
266 |
+
#: includes/admin/class-welcome.php:280
|
267 |
+
msgid "Correct Genesis Schema Markup"
|
268 |
+
msgstr "Corriger le balisage schéma de Genesis"
|
269 |
+
|
270 |
+
#: includes/admin/meta.php:179
|
271 |
+
msgid "Create custom post meta field?"
|
272 |
+
msgstr "Créer un champ de méta de publication personnalisé ?"
|
273 |
+
|
274 |
+
#: includes/admin/meta.php:180
|
275 |
+
msgid "Create Field?"
|
276 |
+
msgstr "Créer un champ ?"
|
277 |
+
|
278 |
+
#: includes/admin/post-type/schema-post-type.php:172
|
279 |
+
msgid "Create Schema"
|
280 |
+
msgstr "Créer un schéma"
|
281 |
+
|
282 |
+
#: includes/admin/meta.php:178
|
283 |
+
msgid "Create?"
|
284 |
+
msgstr "Créer ?"
|
285 |
+
|
286 |
+
#: includes/admin/admin-functions.php:159
|
287 |
+
msgid "Credit Card Support"
|
288 |
+
msgstr "Support carte de crédit"
|
289 |
+
|
290 |
+
#: includes/admin/class-welcome.php:167
|
291 |
+
msgid "Credits"
|
292 |
+
msgstr "Crédits"
|
293 |
+
|
294 |
+
#: includes/misc-functions.php:693
|
295 |
+
msgid "Croatia kuna"
|
296 |
+
msgstr "Kuna croate"
|
297 |
+
|
298 |
+
#: includes/admin/post-type/schema-post-type.php:93
|
299 |
+
msgid "Custom field deleted."
|
300 |
+
msgstr "Champ personnalisé supprimé."
|
301 |
+
|
302 |
+
#: includes/admin/post-type/schema-post-type.php:92
|
303 |
+
msgid "Custom field updated."
|
304 |
+
msgstr "Champ personnalisé mis à jour."
|
305 |
+
|
306 |
+
#: includes/admin/admin-functions.php:153
|
307 |
+
msgid "Customer Support"
|
308 |
+
msgstr "Service client"
|
309 |
+
|
310 |
+
#: includes/misc-functions.php:688
|
311 |
+
msgid "Czech Koruna"
|
312 |
+
msgstr "Couronne tchèque"
|
313 |
+
|
314 |
+
#: includes/misc-functions.php:689
|
315 |
+
msgid "Danish Krone"
|
316 |
+
msgstr "Couronne danoise"
|
317 |
+
|
318 |
+
#: includes/admin/meta.php:161 includes/admin/meta.php:223
|
319 |
+
#: includes/extensions/audio-object.php:121
|
320 |
+
#: includes/extensions/video-object.php:121
|
321 |
+
msgid "Description"
|
322 |
+
msgstr "Description"
|
323 |
+
|
324 |
+
#: includes/admin/meta.php:227
|
325 |
+
msgid "Description for this field"
|
326 |
+
msgstr "Description pour ce champ"
|
327 |
+
|
328 |
+
#: includes/admin/post-type/schema-post-type.php:43
|
329 |
+
msgid "Description."
|
330 |
+
msgstr "Description."
|
331 |
+
|
332 |
+
#: includes/integrations/yoast-seo.php:77
|
333 |
+
msgid "Disable Duplicate Features that Yoast SEO Offers?"
|
334 |
+
msgstr "Désactiver les fonctionnalités en double que propose Yoast SEO ?"
|
335 |
+
|
336 |
+
#: includes/admin/class-welcome.php:365
|
337 |
+
msgid ""
|
338 |
+
"Docs are on its way! We will update <a href=\"http://schema.press/\">schema."
|
339 |
+
"press</a> site with plugin documentation soon."
|
340 |
+
msgstr ""
|
341 |
+
"Les documents sont en route ! Nous mettrons bientôt à jour le site <a "
|
342 |
+
"href=\"http://schema.press/\">schema.press</a> avec la documentation de "
|
343 |
+
"l’extension."
|
344 |
+
|
345 |
+
#: includes/admin/class-welcome.php:364
|
346 |
+
msgid "Documentation"
|
347 |
+
msgstr "Documentation"
|
348 |
+
|
349 |
+
#: includes/admin/class-setup-wizard.php:383
|
350 |
+
msgid "Does your site represent a Person or Organization?"
|
351 |
+
msgstr "Votre site représente-t-il une personne ou une organisation ?"
|
352 |
+
|
353 |
+
#: includes/misc-functions.php:690
|
354 |
+
msgid "Dominican Peso"
|
355 |
+
msgstr "Peso dominicain"
|
356 |
+
|
357 |
+
#: includes/extensions/audio-object.php:114
|
358 |
+
#: includes/extensions/video-object.php:114
|
359 |
+
msgid "Duration"
|
360 |
+
msgstr "Durée"
|
361 |
+
|
362 |
+
#: includes/admin/post-type/schema-post-type.php:32
|
363 |
+
msgid "Edit Schema"
|
364 |
+
msgstr "Modifier le schéma"
|
365 |
+
|
366 |
+
#: includes/misc-functions.php:723
|
367 |
+
msgid "Egyptian Pound"
|
368 |
+
msgstr "Livre égyptienne"
|
369 |
+
|
370 |
+
#: includes/admin/admin-functions.php:160
|
371 |
+
msgid "Emergency"
|
372 |
+
msgstr "Urgence"
|
373 |
+
|
374 |
+
#: includes/admin/meta.php:50
|
375 |
+
msgid "Enable custom post meta box"
|
376 |
+
msgstr "Activer la boîte personnalisée publication méta"
|
377 |
+
|
378 |
+
#: includes/admin/meta.php:51
|
379 |
+
msgid "Enable post meta box?"
|
380 |
+
msgstr "Activer la boite publication méta ?"
|
381 |
+
|
382 |
+
#: includes/admin/settings/register-settings.php:463
|
383 |
+
msgid "Enable Site Name?"
|
384 |
+
msgstr "Activer le nom du site ?"
|
385 |
+
|
386 |
+
#: includes/admin/settings/register-settings.php:454
|
387 |
+
msgid "Enable Sitelinks Search Box?"
|
388 |
+
msgstr "Activer la zone de recherche de liens annexes ?"
|
389 |
+
|
390 |
+
#: includes/admin/class-setup-wizard.php:633
|
391 |
+
#: includes/admin/class-setup-wizard.php:642
|
392 |
+
#: includes/admin/class-setup-wizard.php:651
|
393 |
+
#: includes/admin/class-setup-wizard.php:660
|
394 |
+
#: includes/admin/class-setup-wizard.php:669
|
395 |
+
#: includes/admin/settings/register-settings.php:546
|
396 |
+
msgid "enable?"
|
397 |
+
msgstr "activer ?"
|
398 |
+
|
399 |
+
#: includes/admin/meta.php:108
|
400 |
+
msgid "Enabled on specific custom post types"
|
401 |
+
msgstr "Activé sur des types de publication personnalisés spécifiques"
|
402 |
+
|
403 |
+
#: includes/admin/class-setup-wizard.php:52
|
404 |
+
msgctxt "enhanced select"
|
405 |
+
msgid "%qty% results are available, use up and down arrow keys to navigate."
|
406 |
+
msgstr ""
|
407 |
+
"%qty% résultats sont disponibles, utilisez les flèches haut et bas pour "
|
408 |
+
"naviguer."
|
409 |
+
|
410 |
+
#: includes/admin/class-setup-wizard.php:54
|
411 |
+
msgctxt "enhanced select"
|
412 |
+
msgid "Loading failed"
|
413 |
+
msgstr "Le chargement a échoué"
|
414 |
+
|
415 |
+
#: includes/admin/class-setup-wizard.php:61
|
416 |
+
msgctxt "enhanced select"
|
417 |
+
msgid "Loading more results…"
|
418 |
+
msgstr "Chargement de plus de résultats…"
|
419 |
+
|
420 |
+
#: includes/admin/class-setup-wizard.php:53
|
421 |
+
msgctxt "enhanced select"
|
422 |
+
msgid "No matches found"
|
423 |
+
msgstr "Aucun résultat"
|
424 |
+
|
425 |
+
#: includes/admin/class-setup-wizard.php:51
|
426 |
+
msgctxt "enhanced select"
|
427 |
+
msgid "One result is available, press enter to select it."
|
428 |
+
msgstr "Un résultat est disponible, appuyez sur Entrée pour le sélectionner."
|
429 |
+
|
430 |
+
#: includes/admin/class-setup-wizard.php:58
|
431 |
+
msgctxt "enhanced select"
|
432 |
+
msgid "Please delete %qty% characters"
|
433 |
+
msgstr "Veuillez supprimer %qty% caractères"
|
434 |
+
|
435 |
+
#: includes/admin/class-setup-wizard.php:57
|
436 |
+
msgctxt "enhanced select"
|
437 |
+
msgid "Please delete 1 character"
|
438 |
+
msgstr "Veuillez supprimer 1 caractère"
|
439 |
+
|
440 |
+
#: includes/admin/class-setup-wizard.php:56
|
441 |
+
msgctxt "enhanced select"
|
442 |
+
msgid "Please enter %qty% or more characters"
|
443 |
+
msgstr "Veuillez saisir %qty% ou plus de caractères"
|
444 |
+
|
445 |
+
#: includes/admin/class-setup-wizard.php:55
|
446 |
+
msgctxt "enhanced select"
|
447 |
+
msgid "Please enter 1 or more characters"
|
448 |
+
msgstr "Veuillez saisir 1 ou plusieurs caractères"
|
449 |
+
|
450 |
+
#: includes/admin/class-setup-wizard.php:62
|
451 |
+
msgctxt "enhanced select"
|
452 |
+
msgid "Searching…"
|
453 |
+
msgstr "Rechercher…"
|
454 |
+
|
455 |
+
#: includes/admin/class-setup-wizard.php:60
|
456 |
+
msgctxt "enhanced select"
|
457 |
+
msgid "You can only select %qty% items"
|
458 |
+
msgstr "Vous pouvez sélectionner uniquement %qty% éléments"
|
459 |
+
|
460 |
+
#: includes/admin/class-setup-wizard.php:59
|
461 |
+
msgctxt "enhanced select"
|
462 |
+
msgid "You can only select 1 item"
|
463 |
+
msgstr "Vous ne pouvez sélectionner qu’un élément"
|
464 |
+
|
465 |
+
#: includes/extensions/sameAs.php:41
|
466 |
+
msgid "Enter sameAs URLs, one per line."
|
467 |
+
msgstr "Saisir les mêmes URL, une par ligne."
|
468 |
+
|
469 |
+
#: includes/admin/updater/class-license-handler.php:475
|
470 |
+
msgid "Enter valid license key for automatic updates."
|
471 |
+
msgstr ""
|
472 |
+
"Saisissez une clé de licence valide pour les mises à jour automatiques."
|
473 |
+
|
474 |
+
#: includes/admin/updater/class-license-handler.php:204
|
475 |
+
#, php-format
|
476 |
+
msgid ""
|
477 |
+
"Enter your extension license keys here to receive updates for purchased "
|
478 |
+
"extensions. If your license key has expired, please <a href=\"%s\" "
|
479 |
+
"target=\"_blank\">renew your license</a>."
|
480 |
+
msgstr ""
|
481 |
+
"Saisissez vos clés de licence d’extension ici pour recevoir les mises à jour "
|
482 |
+
"des extensions achetées. Si votre clé de licence a expiré, veuillez <a "
|
483 |
+
"href=\"%s\" target=\"_blank\">renouveler votre licence</a>."
|
484 |
+
|
485 |
+
#: includes/admin/class-notices.php:53
|
486 |
+
#: includes/admin/updater/class-license-handler.php:319
|
487 |
+
msgid "Error"
|
488 |
+
msgstr "Erreur"
|
489 |
+
|
490 |
+
#: includes/misc-functions.php:691
|
491 |
+
msgid "Euros"
|
492 |
+
msgstr "Euros"
|
493 |
+
|
494 |
+
#: includes/admin/class-menu.php:67 includes/admin/class-menu.php:68
|
495 |
+
#: includes/admin/settings/contextual-help.php:56
|
496 |
+
msgid "Extensions"
|
497 |
+
msgstr "Modules"
|
498 |
+
|
499 |
+
#: includes/admin/extensions.php:41
|
500 |
+
msgid "Extensions for Schema"
|
501 |
+
msgstr "Modules pour Schema"
|
502 |
+
|
503 |
+
#: includes/admin/class-setup-wizard.php:454
|
504 |
+
#: includes/admin/class-setup-wizard.php:457
|
505 |
+
#: includes/admin/settings/register-settings.php:341
|
506 |
+
msgid "Facebook"
|
507 |
+
msgstr "Facebook"
|
508 |
+
|
509 |
+
#: includes/integrations/yoast-seo.php:81
|
510 |
+
msgid ""
|
511 |
+
"Features that will be disabled:<br /><ol><li>Organization/Person</li><li>"
|
512 |
+
"Social Profiles</li><li>Corporate Contacts\n"
|
513 |
+
"</li><li>Breadcrumb</li><li>Sitelink Search Box</li></ol>"
|
514 |
+
msgstr ""
|
515 |
+
|
516 |
+
#: includes/admin/meta.php:224
|
517 |
+
msgid "Field description"
|
518 |
+
msgstr "Description du champ"
|
519 |
+
|
520 |
+
#: includes/admin/meta.php:215
|
521 |
+
msgid "Field label"
|
522 |
+
msgstr "Libellé de champ"
|
523 |
+
|
524 |
+
#: includes/admin/meta.php:132 includes/admin/meta/class-meta.php:346
|
525 |
+
msgid "Fields"
|
526 |
+
msgstr "Champs"
|
527 |
+
|
528 |
+
#: includes/admin/meta.php:145
|
529 |
+
msgid "Filter"
|
530 |
+
msgstr "Filtre"
|
531 |
+
|
532 |
+
#: includes/admin/class-welcome.php:196
|
533 |
+
msgid "First-time Schema configuration!"
|
534 |
+
msgstr "Configuration initiale de Schema !"
|
535 |
+
|
536 |
+
#: includes/admin/class-welcome.php:222
|
537 |
+
msgid "for Blog posts list page"
|
538 |
+
msgstr "pour la page de liste des articles de blog"
|
539 |
+
|
540 |
+
#: includes/admin/class-welcome.php:234
|
541 |
+
msgid "for Breadcrumbs"
|
542 |
+
msgstr "pour le fil d’Ariane"
|
543 |
+
|
544 |
+
#: includes/admin/class-welcome.php:238
|
545 |
+
msgid "for Categories"
|
546 |
+
msgstr "pour les catégories"
|
547 |
+
|
548 |
+
#: includes/admin/settings/contextual-help.php:26
|
549 |
+
msgid "For more information:"
|
550 |
+
msgstr "Pour plus d’informations :"
|
551 |
+
|
552 |
+
#: includes/admin/class-welcome.php:242
|
553 |
+
msgid "for Tags"
|
554 |
+
msgstr "pour les étiquettes"
|
555 |
+
|
556 |
+
#: includes/admin/class-welcome.php:246
|
557 |
+
msgid "for the about page"
|
558 |
+
msgstr "pour la page à propos"
|
559 |
+
|
560 |
+
#: includes/admin/class-welcome.php:250
|
561 |
+
msgid "for the contact page"
|
562 |
+
msgstr "pour la page de contact"
|
563 |
+
|
564 |
+
#: includes/admin/class-welcome.php:230
|
565 |
+
msgid "for Web Page Footer"
|
566 |
+
msgstr "pour le pied de page de page Web"
|
567 |
+
|
568 |
+
#: includes/admin/class-welcome.php:226
|
569 |
+
msgid "for Web Page Header"
|
570 |
+
msgstr "pour l’en-tête de page Web "
|
571 |
+
|
572 |
+
#: includes/admin/class-setup-wizard.php:136
|
573 |
+
#: includes/admin/class-welcome.php:212
|
574 |
+
#: includes/admin/settings/register-settings.php:1020
|
575 |
+
#: includes/admin/settings/contextual-help.php:38
|
576 |
+
msgid "General"
|
577 |
+
msgstr "Général"
|
578 |
+
|
579 |
+
#: includes/admin/extensions.php:124
|
580 |
+
msgid "Get Schema Premium"
|
581 |
+
msgstr ""
|
582 |
+
|
583 |
+
#: includes/admin/class-welcome.php:197
|
584 |
+
msgid "Get started quickly with the Schema configuration wizard!"
|
585 |
+
msgstr "Commencez rapidement avec l’assistant de configuration de Schema !"
|
586 |
+
|
587 |
+
#: includes/admin/extensions.php:124
|
588 |
+
msgid "Get this Extension"
|
589 |
+
msgstr "Obtenez cette extension"
|
590 |
+
|
591 |
+
#: includes/admin/class-welcome.php:163
|
592 |
+
msgid "Getting Started"
|
593 |
+
msgstr "Commencer"
|
594 |
+
|
595 |
+
#: includes/admin/class-welcome.php:61 includes/admin/class-welcome.php:62
|
596 |
+
msgid "Getting started with Schema"
|
597 |
+
msgstr "Débuter avec Schema"
|
598 |
+
|
599 |
+
#: includes/admin/meta.php:269
|
600 |
+
msgid "Go Premium"
|
601 |
+
msgstr ""
|
602 |
+
|
603 |
+
#: includes/admin/class-welcome.php:264 includes/admin/class-welcome.php:353
|
604 |
+
msgid "Go To Schema Settings"
|
605 |
+
msgstr "Aller aux Réglages de Schema"
|
606 |
+
|
607 |
+
#: includes/admin/class-setup-wizard.php:478
|
608 |
+
#: includes/admin/class-setup-wizard.php:481
|
609 |
+
#: includes/admin/settings/register-settings.php:357
|
610 |
+
msgid "Google+"
|
611 |
+
msgstr "Google+"
|
612 |
+
|
613 |
+
#: includes/admin/class-welcome.php:337
|
614 |
+
msgid ""
|
615 |
+
"Hang on! We are going to add more schema integration and cool features to "
|
616 |
+
"Schema plugin."
|
617 |
+
msgstr ""
|
618 |
+
"Tenez bon ! Nous allons ajouter plus d’intégration de schéma et d’autres "
|
619 |
+
"fonctionnalités intéressantes à l’extension Schema."
|
620 |
+
|
621 |
+
#: includes/admin/meta.php:157
|
622 |
+
msgid "Headline"
|
623 |
+
msgstr "Gros titre"
|
624 |
+
|
625 |
+
#: includes/admin/class-welcome.php:274
|
626 |
+
msgid "Hello AMP!"
|
627 |
+
msgstr "Bonjour AMP !"
|
628 |
+
|
629 |
+
#: includes/admin/class-setup-wizard.php:692
|
630 |
+
msgid "here"
|
631 |
+
msgstr "ici"
|
632 |
+
|
633 |
+
#: includes/admin/class-welcome.php:394
|
634 |
+
msgid ""
|
635 |
+
"Here, we will be listing some of the faces that have helped build Schema."
|
636 |
+
msgstr ""
|
637 |
+
"Ici, nous allons énumérer quelques-uns des visages qui ont aidé à construire "
|
638 |
+
"Schema."
|
639 |
+
|
640 |
+
#. Author of the plugin/theme
|
641 |
+
msgid "Hesham"
|
642 |
+
msgstr "Hesham"
|
643 |
+
|
644 |
+
#: includes/misc-functions.php:692
|
645 |
+
msgid "Hong Kong Dollar"
|
646 |
+
msgstr "Dollar de Hong Kong"
|
647 |
+
|
648 |
+
#: includes/admin/class-feedback.php:232
|
649 |
+
msgid "How do you like Schema?"
|
650 |
+
msgstr "Comment aimez-vous Schema ?"
|
651 |
+
|
652 |
+
#. Author URI of the plugin/theme
|
653 |
+
msgid "http://zebida.com"
|
654 |
+
msgstr "http://zebida.com"
|
655 |
+
|
656 |
+
#. Plugin URI of the plugin/theme
|
657 |
+
msgid "https://schema.press"
|
658 |
+
msgstr "https://schema.press"
|
659 |
+
|
660 |
+
#: includes/misc-functions.php:694
|
661 |
+
msgid "Hungarian Forint"
|
662 |
+
msgstr "Forint hongrois"
|
663 |
+
|
664 |
+
#: includes/misc-functions.php:695
|
665 |
+
msgid "Icelandic krona"
|
666 |
+
msgstr "Couronne islandaise"
|
667 |
+
|
668 |
+
#: includes/admin/class-welcome.php:289
|
669 |
+
msgid ""
|
670 |
+
"If Divi theme is active, Schema plugin will clear shortcodes to be able to "
|
671 |
+
"output the content description."
|
672 |
+
msgstr ""
|
673 |
+
"Si le thème Divi est actif, l’extension Schema effacera les codes courts "
|
674 |
+
"pour pouvoir afficher la description du contenu."
|
675 |
+
|
676 |
+
#: includes/admin/class-welcome.php:275
|
677 |
+
msgid "If you are using the AMP plugin, Schema got you covered!"
|
678 |
+
msgstr "Si vous utilisez l’extension AMP, Schema vous couvre !"
|
679 |
+
|
680 |
+
#: includes/admin/class-welcome.php:278
|
681 |
+
msgid "If you are using the WPRichSnippets plugin, Schema will behave!"
|
682 |
+
msgstr "Si vous utilisez l’extension WPRichSnippets, Schema va faire avec !"
|
683 |
+
|
684 |
+
#: includes/admin/extensions.php:54
|
685 |
+
#, php-format
|
686 |
+
msgid ""
|
687 |
+
"If you have a Personal or Plus license, you can easily upgrade from your "
|
688 |
+
"account page to <a href=\"%s\">get access to all of these extensions</a>!"
|
689 |
+
msgstr ""
|
690 |
+
"Si vous possédez une licence Personnelle ou Plus, vous pouvez facilement "
|
691 |
+
"mettre à niveau à partir de votre page de compte pour <a href=\"%s\">accéder "
|
692 |
+
"à toutes ces extensions</a>!"
|
693 |
+
|
694 |
+
#: includes/misc-functions.php:697
|
695 |
+
msgid "Indian Rupee"
|
696 |
+
msgstr "Roupie indienne"
|
697 |
+
|
698 |
+
#: includes/misc-functions.php:696
|
699 |
+
msgid "Indonesia Rupiah"
|
700 |
+
msgstr "Roupie indonésienne"
|
701 |
+
|
702 |
+
#: includes/admin/class-setup-wizard.php:490
|
703 |
+
#: includes/admin/class-setup-wizard.php:493
|
704 |
+
#: includes/admin/settings/register-settings.php:365
|
705 |
+
msgid "Instagram"
|
706 |
+
msgstr "Instagram"
|
707 |
+
|
708 |
+
#: includes/admin/class-welcome.php:268
|
709 |
+
msgid "Integration with Themes and other Plugins"
|
710 |
+
msgstr "Intégration avec thèmes et autres extensions"
|
711 |
+
|
712 |
+
#: includes/admin/class-setup-wizard.php:126
|
713 |
+
msgid "Introduction"
|
714 |
+
msgstr "Introduction"
|
715 |
+
|
716 |
+
#: includes/admin/class-welcome.php:288
|
717 |
+
msgid "Is Divi your Theme?"
|
718 |
+
msgstr "Est-ce que votre thème est Divi ?"
|
719 |
+
|
720 |
+
#: includes/misc-functions.php:699
|
721 |
+
msgid "Israeli Shekel"
|
722 |
+
msgstr "IShekel israélien"
|
723 |
+
|
724 |
+
#: includes/admin/meta.php:67
|
725 |
+
msgid ""
|
726 |
+
"It is recommended to set type BlogPosting for posts, and leave empty or set "
|
727 |
+
"to General for page post type"
|
728 |
+
msgstr ""
|
729 |
+
"Il est recommandé de définir le type BlogPosting pour les publications et de "
|
730 |
+
"laisser vide ou de définir Général pour le type de publication de page."
|
731 |
+
|
732 |
+
#: includes/json/web-page-element.php:76
|
733 |
+
msgid "It looks like nothing was found at this location!"
|
734 |
+
msgstr "On dirait que rien n’a été trouvé à cet endroit !"
|
735 |
+
|
736 |
+
#: includes/misc-functions.php:700
|
737 |
+
msgid "Japanese Yen"
|
738 |
+
msgstr "Yen japonais"
|
739 |
+
|
740 |
+
#: includes/admin/meta.php:169
|
741 |
+
msgid "Key"
|
742 |
+
msgstr "Clé"
|
743 |
+
|
744 |
+
#: includes/admin/settings/register-settings.php:1021
|
745 |
+
#: includes/admin/settings/contextual-help.php:44
|
746 |
+
msgid "Knowledge Graph"
|
747 |
+
msgstr "Graphe de connaissances"
|
748 |
+
|
749 |
+
#: includes/admin/class-setup-wizard.php:449
|
750 |
+
msgid ""
|
751 |
+
"Knowledge panels prominently display your social profile information in some "
|
752 |
+
"Google Search results."
|
753 |
+
msgstr ""
|
754 |
+
"Les panneaux de connaissances affichent en évidence les informations de "
|
755 |
+
"votre profil social dans certains résultats de recherche Google."
|
756 |
+
|
757 |
+
#: includes/admin/meta.php:214 includes/admin/meta.php:219
|
758 |
+
msgid "Label"
|
759 |
+
msgstr "Libellé"
|
760 |
+
|
761 |
+
#: includes/misc-functions.php:701
|
762 |
+
msgid "Lao Kip"
|
763 |
+
msgstr "Kip laotien"
|
764 |
+
|
765 |
+
#: includes/admin/class-setup-wizard.php:703
|
766 |
+
msgid "Learn More"
|
767 |
+
msgstr "Apprendre plus"
|
768 |
+
|
769 |
+
#: includes/admin/class-feedback.php:242
|
770 |
+
msgid "Leave Feedback"
|
771 |
+
msgstr "Laisser un retour"
|
772 |
+
|
773 |
+
#: includes/admin/class-feedback.php:236
|
774 |
+
msgid ""
|
775 |
+
"Let us know what you think about the plugin, what is missing, and how we can "
|
776 |
+
"make it better. Leave us a review with"
|
777 |
+
msgstr ""
|
778 |
+
"Dites-nous ce que vous pensez de l’extension, de ce qui manque et comment "
|
779 |
+
"nous pouvons l’améliorer. Laissez-nous un avis avec"
|
780 |
+
|
781 |
+
#: includes/admin/class-setup-wizard.php:320
|
782 |
+
msgid "Let's Go!"
|
783 |
+
msgstr "Allons-y !"
|
784 |
+
|
785 |
+
#: includes/admin/class-setup-wizard.php:514
|
786 |
+
#: includes/admin/settings/register-settings.php:381
|
787 |
+
msgid "LinkedIn"
|
788 |
+
msgstr "LinkedIn"
|
789 |
+
|
790 |
+
#: includes/admin/class-setup-wizard.php:517
|
791 |
+
msgid "Linkedin"
|
792 |
+
msgstr "Linkedin"
|
793 |
+
|
794 |
+
#: includes/admin/class-setup-wizard.php:421
|
795 |
+
#: includes/admin/settings/register-settings.php:322
|
796 |
+
msgid "Logo"
|
797 |
+
msgstr "Logo"
|
798 |
+
|
799 |
+
#: includes/admin/class-setup-wizard.php:422
|
800 |
+
#: includes/admin/class-setup-wizard.php:621
|
801 |
+
#: includes/admin/settings/register-settings.php:268
|
802 |
+
#: includes/admin/settings/register-settings.php:323
|
803 |
+
msgid "Logo guidelines"
|
804 |
+
msgstr "Directives pour logo"
|
805 |
+
|
806 |
+
#. translators: Publish box date format, see http://php.net/date
|
807 |
+
#: includes/admin/post-type/schema-post-type.php:103
|
808 |
+
msgid "M j, Y @ G:i"
|
809 |
+
msgstr "j M Y @ G:i"
|
810 |
+
|
811 |
+
#: includes/misc-functions.php:703
|
812 |
+
msgid "Malaysian Ringgits"
|
813 |
+
msgstr "Ringgits Malaisiens"
|
814 |
+
|
815 |
+
#: includes/admin/class-capabilities.php:36
|
816 |
+
msgid "Manage Schema Options"
|
817 |
+
msgstr "Gérer les options de schéma"
|
818 |
+
|
819 |
+
#: includes/admin/class-setup-wizard.php:588
|
820 |
+
msgid "Mark Up Your Content"
|
821 |
+
msgstr "Marquez votre contenu"
|
822 |
+
|
823 |
+
#: includes/admin/class-welcome.php:260
|
824 |
+
msgid "Maybe coming soon!"
|
825 |
+
msgstr "Peut-être à venir bientôt !"
|
826 |
+
|
827 |
+
#: includes/admin/meta.php:174
|
828 |
+
msgid "Meta Key Name"
|
829 |
+
msgstr "Nom de clé méta"
|
830 |
+
|
831 |
+
#: includes/misc-functions.php:704
|
832 |
+
msgid "Mexican Peso"
|
833 |
+
msgstr "Peso Mexicain"
|
834 |
+
|
835 |
+
#: includes/extensions/audio-object.php:51
|
836 |
+
msgid "Multiple audios"
|
837 |
+
msgstr "Sons multiples"
|
838 |
+
|
839 |
+
#: includes/extensions/video-object.php:51
|
840 |
+
msgid "Multiple videos"
|
841 |
+
msgstr "Vidéos multiples"
|
842 |
+
|
843 |
+
#: includes/admin/class-setup-wizard.php:526
|
844 |
+
#: includes/admin/class-setup-wizard.php:529
|
845 |
+
#: includes/admin/settings/register-settings.php:388
|
846 |
+
msgid "Myspace"
|
847 |
+
msgstr "Myspace"
|
848 |
+
|
849 |
+
#: includes/admin/class-setup-wizard.php:404
|
850 |
+
#: includes/admin/class-setup-wizard.php:407
|
851 |
+
#: includes/admin/settings/register-settings.php:304
|
852 |
+
#: includes/admin/post-type/schema-columns.php:19
|
853 |
+
msgid "Name"
|
854 |
+
msgstr "Nom"
|
855 |
+
|
856 |
+
#: includes/admin/class-welcome.php:361
|
857 |
+
msgid "Need Help?"
|
858 |
+
msgstr "Besoin d’aide ?"
|
859 |
+
|
860 |
+
#: includes/misc-functions.php:698
|
861 |
+
msgid "Nepali Rupee"
|
862 |
+
msgstr "Roupie népalaise"
|
863 |
+
|
864 |
+
#: includes/admin/post-type/schema-post-type.php:31
|
865 |
+
msgid "New Schema"
|
866 |
+
msgstr "Nouveau schéma"
|
867 |
+
|
868 |
+
#: includes/admin/class-welcome.php:258
|
869 |
+
msgid "New Schema Type?"
|
870 |
+
msgstr "Nouveau type de schéma ?"
|
871 |
+
|
872 |
+
#: includes/misc-functions.php:707
|
873 |
+
msgid "New Zealand Dollar"
|
874 |
+
msgstr "Dollar néo-zélandais"
|
875 |
+
|
876 |
+
#: includes/admin/class-welcome.php:214
|
877 |
+
msgid "NewsArticle"
|
878 |
+
msgstr "NewsArticle"
|
879 |
+
|
880 |
+
#: includes/admin/class-setup-wizard.php:696
|
881 |
+
msgid "Next Step"
|
882 |
+
msgstr "Étape suivante"
|
883 |
+
|
884 |
+
#: includes/misc-functions.php:705
|
885 |
+
msgid "Nigerian Naira"
|
886 |
+
msgstr "Naira Nigérian"
|
887 |
+
|
888 |
+
#: includes/admin/class-welcome.php:286
|
889 |
+
msgid ""
|
890 |
+
"No problem! The Schema plugin will automatically indicate that and show "
|
891 |
+
"respect for SEO Framework."
|
892 |
+
msgstr ""
|
893 |
+
"Aucun problème ! L’extension Schema l’indiquera automatiquement et "
|
894 |
+
"respectera The SEO Framework."
|
895 |
+
|
896 |
+
#: includes/admin/post-type/schema-post-type.php:38
|
897 |
+
msgid "No schema found in Trash."
|
898 |
+
msgstr "Aucun schéma trouvé dans la corbeille."
|
899 |
+
|
900 |
+
#: includes/admin/post-type/schema-post-type.php:37
|
901 |
+
msgid "No schema found."
|
902 |
+
msgstr "Aucun schéma trouvé."
|
903 |
+
|
904 |
+
#: includes/admin/class-feedback.php:245
|
905 |
+
msgid "No thanks"
|
906 |
+
msgstr "Non merci"
|
907 |
+
|
908 |
+
#: includes/admin/class-setup-wizard.php:318
|
909 |
+
msgid ""
|
910 |
+
"No time right now? If you don’t want to go through the wizard, you can skip "
|
911 |
+
"and return to the WordPress dashboard. Come back anytime if you change your "
|
912 |
+
"mind!"
|
913 |
+
msgstr ""
|
914 |
+
"Pas le temps maintenant ? Si vous ne souhaitez pas utiliser l’assistant, "
|
915 |
+
"vous pouvez ignorer et revenir au tableau de bord WordPress. Revenez à tout "
|
916 |
+
"moment si vous changez d’avis !"
|
917 |
+
|
918 |
+
#: includes/admin/updater/class-license-handler.php:319
|
919 |
+
msgid "Nonce verification failed"
|
920 |
+
msgstr "La vérification de nonce a échoué"
|
921 |
+
|
922 |
+
#: includes/extensions/audio-object.php:43
|
923 |
+
#: includes/extensions/video-object.php:43
|
924 |
+
msgid "None"
|
925 |
+
msgstr "Aucun"
|
926 |
+
|
927 |
+
#: includes/misc-functions.php:706
|
928 |
+
msgid "Norwegian Krone"
|
929 |
+
msgstr "Couronne norvégienne"
|
930 |
+
|
931 |
+
#: includes/admin/class-setup-wizard.php:321
|
932 |
+
msgid "Not right now"
|
933 |
+
msgstr "Pas tout de suite"
|
934 |
+
|
935 |
+
#: includes/extensions/audio-object.php:38
|
936 |
+
msgid ""
|
937 |
+
"Note: You can enable markups to multiple audios on the same page. However, "
|
938 |
+
"this may slow down your site, make sure your site is hosted on a reliable "
|
939 |
+
"web host and cache your site pages by a good caching plugin. (Recommended "
|
940 |
+
"setting: Single Audio)"
|
941 |
+
msgstr ""
|
942 |
+
"Remarque : vous pouvez activer les annotations sur plusieurs fichiers son "
|
943 |
+
"sur la même page. Toutefois, cela peut ralentir votre site, assurez-vous que "
|
944 |
+
"votre site est hébergé sur un hébergeur Web fiable et mettez en cache les "
|
945 |
+
"pages de votre site avec une bonne extension de mise en cache. (Réglage "
|
946 |
+
"recommandé : son unique)"
|
947 |
+
|
948 |
+
#: includes/extensions/video-object.php:38
|
949 |
+
msgid ""
|
950 |
+
"Note: You can enable markups to multiple videos on the same page. However, "
|
951 |
+
"this may slow down your site, make sure your site is hosted on a reliable "
|
952 |
+
"web host and cache your site pages by a good caching plugin. (Recommended "
|
953 |
+
"setting: Single Video)"
|
954 |
+
msgstr ""
|
955 |
+
"Remarque : vous pouvez activer les annotations pour plusieurs vidéos sur la "
|
956 |
+
"même page. Toutefois, cela peut ralentir votre site, assurez-vous que votre "
|
957 |
+
"site est hébergé sur un hébergeur Web fiable et mettez en cache les pages de "
|
958 |
+
"votre site avec une bonne extension de mise en cache. (Réglage recommandé : "
|
959 |
+
"Vidéo unique)"
|
960 |
+
|
961 |
+
#: includes/admin/class-welcome.php:272
|
962 |
+
msgid ""
|
963 |
+
"Now Schema plugin plays nicely with Yoast SEO plugin, you can have both "
|
964 |
+
"plugins active with no conflicts."
|
965 |
+
msgstr ""
|
966 |
+
"Maintenant, l’extension Schema coopère bien avec l’extension Yoast SEO, vous "
|
967 |
+
"pouvez avoir les deux extension actives sans conflit."
|
968 |
+
|
969 |
+
#: includes/admin/class-welcome.php:208
|
970 |
+
msgid "Now, Schema plugin supports more schema.org types."
|
971 |
+
msgstr "Maintenant, l’extension Schema supporte plus de types schema.org."
|
972 |
+
|
973 |
+
#: includes/admin/class-welcome.php:296
|
974 |
+
msgid ""
|
975 |
+
"Now, you can create new schema.org markup types and enable them on post type "
|
976 |
+
"bases."
|
977 |
+
msgstr ""
|
978 |
+
"Maintenant, vous pouvez créer de nouveaux types de balises schema.org et les "
|
979 |
+
"activer sur des bases de type de publication."
|
980 |
+
|
981 |
+
#: includes/admin/extensions.php:32
|
982 |
+
msgid "Official Free"
|
983 |
+
msgstr "Officiel Gratuit"
|
984 |
+
|
985 |
+
#: includes/admin/class-setup-wizard.php:416
|
986 |
+
msgid "Organization Logo"
|
987 |
+
msgstr "Logo de l’organisation"
|
988 |
+
|
989 |
+
#: includes/admin/class-setup-wizard.php:393
|
990 |
+
msgid "Organization or Person?"
|
991 |
+
msgstr "Organisation ou personne ?"
|
992 |
+
|
993 |
+
#: includes/admin/extensions.php:56
|
994 |
+
msgid "Our official free extensions are available to all license holders!"
|
995 |
+
msgstr ""
|
996 |
+
"Nos extensions gratuites officielles sont disponibles pour tous les "
|
997 |
+
"détenteurs de licence !"
|
998 |
+
|
999 |
+
#: includes/admin/class-welcome.php:340
|
1000 |
+
msgid "Overview"
|
1001 |
+
msgstr "Vue d’ensemble"
|
1002 |
+
|
1003 |
+
#: includes/admin/admin-functions.php:163
|
1004 |
+
msgid "Package Tracking"
|
1005 |
+
msgstr "Suivi des colis"
|
1006 |
+
|
1007 |
+
#: includes/install.php:88
|
1008 |
+
msgid "Page"
|
1009 |
+
msgstr "Page"
|
1010 |
+
|
1011 |
+
#: includes/json/web-page-element.php:75
|
1012 |
+
msgid "Page not found"
|
1013 |
+
msgstr "Page non trouvée"
|
1014 |
+
|
1015 |
+
#: includes/misc-functions.php:708
|
1016 |
+
msgid "Paraguayan Guaraní"
|
1017 |
+
msgstr "Guaraní paraguayen"
|
1018 |
+
|
1019 |
+
#: includes/admin/post-type/schema-post-type.php:36
|
1020 |
+
msgid "Parent Schemas:"
|
1021 |
+
msgstr "Schémas parents :"
|
1022 |
+
|
1023 |
+
#: includes/admin/class-welcome.php:254
|
1024 |
+
msgid "Person"
|
1025 |
+
msgstr "Person"
|
1026 |
+
|
1027 |
+
#: includes/admin/class-setup-wizard.php:381
|
1028 |
+
#: includes/admin/settings/register-settings.php:283
|
1029 |
+
msgid "Person or Organization"
|
1030 |
+
msgstr "Personne ou organisation"
|
1031 |
+
|
1032 |
+
#: includes/misc-functions.php:709
|
1033 |
+
msgid "Philippine Pesos"
|
1034 |
+
msgstr "Pesos philippins"
|
1035 |
+
|
1036 |
+
#: includes/admin/class-setup-wizard.php:538
|
1037 |
+
#: includes/admin/class-setup-wizard.php:541
|
1038 |
+
#: includes/admin/settings/register-settings.php:396
|
1039 |
+
msgid "Pinterest"
|
1040 |
+
msgstr "Pinterest"
|
1041 |
+
|
1042 |
+
#: includes/admin/class-welcome.php:271
|
1043 |
+
msgid "Play nicely with Yoast SEO"
|
1044 |
+
msgstr "Coopère bien avec Yoast SEO"
|
1045 |
+
|
1046 |
+
#: includes/admin/class-welcome.php:199
|
1047 |
+
msgid "Plugin Settings"
|
1048 |
+
msgstr "Réglages de l’extension"
|
1049 |
+
|
1050 |
+
#: includes/misc-functions.php:710
|
1051 |
+
msgid "Polish Zloty"
|
1052 |
+
msgstr "Zloty polonais"
|
1053 |
+
|
1054 |
+
#: includes/install.php:45
|
1055 |
+
msgid "Post"
|
1056 |
+
msgstr "Publication"
|
1057 |
+
|
1058 |
+
#: includes/admin/meta.php:268
|
1059 |
+
msgid "Post Meta"
|
1060 |
+
msgstr "Méta de publication"
|
1061 |
+
|
1062 |
+
#: includes/admin/meta.php:49
|
1063 |
+
msgid "Post meta"
|
1064 |
+
msgstr "Publication méta"
|
1065 |
+
|
1066 |
+
#: includes/admin/meta.php:123
|
1067 |
+
msgid "Post meta box title, default: Schema"
|
1068 |
+
msgstr "Titre de la boîte à méta, valeur par défaut : Schéma"
|
1069 |
+
|
1070 |
+
#: includes/admin/post-type/schema-columns.php:39
|
1071 |
+
msgid "Post Type"
|
1072 |
+
msgstr "Type de publication"
|
1073 |
+
|
1074 |
+
#: includes/admin/post-type/schema-post-type.php:25
|
1075 |
+
msgctxt "post type general name"
|
1076 |
+
msgid "Schema"
|
1077 |
+
msgstr "Schéma"
|
1078 |
+
|
1079 |
+
#: includes/admin/post-type/schema-post-type.php:26
|
1080 |
+
msgctxt "post type singular name"
|
1081 |
+
msgid "Schema"
|
1082 |
+
msgstr "Schéma"
|
1083 |
+
|
1084 |
+
#: includes/admin/meta.php:267
|
1085 |
+
msgid "Post Types"
|
1086 |
+
msgstr "Types de publication"
|
1087 |
+
|
1088 |
+
#: includes/misc-functions.php:711
|
1089 |
+
msgid "Pounds Sterling"
|
1090 |
+
msgstr "Livres sterling"
|
1091 |
+
|
1092 |
+
#: includes/admin/class-menu.php:90 includes/admin/extensions.php:31
|
1093 |
+
msgid "Premium"
|
1094 |
+
msgstr ""
|
1095 |
+
|
1096 |
+
#: includes/admin/extensions.php:53
|
1097 |
+
#, php-format
|
1098 |
+
msgid ""
|
1099 |
+
"Premium Extensions are only available with a Professional or Ultimate "
|
1100 |
+
"license. If you already have one of these licenses, simply <a href=\"%s\">"
|
1101 |
+
"log in to your account</a> to download any of these extensions."
|
1102 |
+
msgstr ""
|
1103 |
+
|
1104 |
+
#: includes/admin/post-type/schema-post-type.php:118
|
1105 |
+
msgid "Preview schema"
|
1106 |
+
msgstr "Prévisualiser le schéma"
|
1107 |
+
|
1108 |
+
#: includes/admin/class-setup-wizard.php:447
|
1109 |
+
#: includes/admin/settings/register-settings.php:336
|
1110 |
+
msgid "Provide your social profile information to a Google Knowledge panel."
|
1111 |
+
msgstr ""
|
1112 |
+
"Fournissez vos informations de profil social à un panneau de connaissances "
|
1113 |
+
"Google."
|
1114 |
+
|
1115 |
+
#: includes/admin/class-setup-wizard.php:615
|
1116 |
+
#: includes/admin/class-setup-wizard.php:620
|
1117 |
+
#: includes/admin/settings/register-settings.php:267
|
1118 |
+
msgid "Publisher Logo"
|
1119 |
+
msgstr "Logo de l’éditeur"
|
1120 |
+
|
1121 |
+
#: includes/admin/class-setup-wizard.php:621
|
1122 |
+
#: includes/admin/settings/register-settings.php:268
|
1123 |
+
msgid ""
|
1124 |
+
"Publisher Logo should have a wide aspect ratio, not a square icon, it should "
|
1125 |
+
"be no wider than 600px, and no taller than 60px."
|
1126 |
+
msgstr ""
|
1127 |
+
"Le logo de l’éditeur doit avoir un rapport de format large (pas d’icône "
|
1128 |
+
"carrée). Il ne doit pas dépasser 600px de large, ni 60px de haut."
|
1129 |
+
|
1130 |
+
#: includes/admin/class-welcome.php:200
|
1131 |
+
#: includes/admin/settings/display-settings.php:86
|
1132 |
+
msgid "Quick Configuration Wizard"
|
1133 |
+
msgstr "Assistant de configuration rapide"
|
1134 |
+
|
1135 |
+
#: includes/admin/class-setup-wizard.php:151
|
1136 |
+
msgid "Ready!"
|
1137 |
+
msgstr "Prêt !"
|
1138 |
+
|
1139 |
+
#: includes/admin/settings/register-settings.php:433
|
1140 |
+
msgid ""
|
1141 |
+
"Recommended. An internationalized version of the phone number, starting with "
|
1142 |
+
"the \"+\" symbol and country code (+1 in the US and Canada)."
|
1143 |
+
msgstr ""
|
1144 |
+
"Conseillé. Une version internationalisée du numéro de téléphone, commençant "
|
1145 |
+
"par le symbole « + » et le code du pays (+1 aux États-Unis et au Canada)."
|
1146 |
+
|
1147 |
+
#: includes/admin/settings/register-settings.php:441
|
1148 |
+
msgid "Recommended. The URL of contact page."
|
1149 |
+
msgstr "Conseillé. URL de la page de contact."
|
1150 |
+
|
1151 |
+
#: includes/admin/scripts.php:23 includes/admin/class-setup-wizard.php:81
|
1152 |
+
msgid "Remove"
|
1153 |
+
msgstr "Retirer"
|
1154 |
+
|
1155 |
+
#: includes/admin/class-welcome.php:215
|
1156 |
+
msgid "Report"
|
1157 |
+
msgstr "Rapport"
|
1158 |
+
|
1159 |
+
#: includes/admin/admin-functions.php:158
|
1160 |
+
msgid "Reservations"
|
1161 |
+
msgstr "Réservations"
|
1162 |
+
|
1163 |
+
#: includes/admin/class-setup-wizard.php:255
|
1164 |
+
msgid "Return to the WordPress Dashboard"
|
1165 |
+
msgstr "Retour au tableau de bord WordPress"
|
1166 |
+
|
1167 |
+
#: includes/admin/admin-functions.php:162
|
1168 |
+
msgid "Roadside Assistance"
|
1169 |
+
msgstr "Assistance routière"
|
1170 |
+
|
1171 |
+
#: includes/misc-functions.php:712
|
1172 |
+
msgid "Romanian Leu"
|
1173 |
+
msgstr "Leu roumain"
|
1174 |
+
|
1175 |
+
#: includes/misc-functions.php:713
|
1176 |
+
msgid "Russian Ruble"
|
1177 |
+
msgstr "Rouble russe"
|
1178 |
+
|
1179 |
+
#: includes/admin/admin-functions.php:157
|
1180 |
+
msgid "Sales"
|
1181 |
+
msgstr "Ventes"
|
1182 |
+
|
1183 |
+
#: includes/extensions/sameAs.php:74
|
1184 |
+
msgid "sameAs"
|
1185 |
+
msgstr "pareil que"
|
1186 |
+
|
1187 |
+
#: includes/admin/meta-tax.php:44
|
1188 |
+
msgid "sameAs "
|
1189 |
+
msgstr "pareil que "
|
1190 |
+
|
1191 |
+
#: includes/admin/meta.php:249
|
1192 |
+
#, php-format
|
1193 |
+
msgid "Save 15% off your purchase? Use discount code: <b>SPFREE15</b>"
|
1194 |
+
msgstr ""
|
1195 |
+
|
1196 |
+
#. #-#-#-#-# schema-code.pot (Schema 1.7) #-#-#-#-#
|
1197 |
+
#. Plugin Name of the plugin/theme
|
1198 |
+
#: includes/admin/class-feedback.php:293 includes/admin/meta.php:128
|
1199 |
+
#: includes/admin/class-menu.php:30 includes/admin/class-menu.php:31
|
1200 |
+
#: includes/admin/meta-tax.php:25
|
1201 |
+
#: includes/extensions/post-meta-generator.php:160
|
1202 |
+
#: includes/admin/settings/display-settings.php:65
|
1203 |
+
msgid "Schema"
|
1204 |
+
msgstr "Schema"
|
1205 |
+
|
1206 |
+
#: includes/admin/post-type/schema-post-type.php:29
|
1207 |
+
msgctxt "schema"
|
1208 |
+
msgid "Add New"
|
1209 |
+
msgstr "Ajouter un nouveau"
|
1210 |
+
|
1211 |
+
#: includes/admin/class-setup-wizard.php:188
|
1212 |
+
msgid "Schema › Setup Wizard"
|
1213 |
+
msgstr "Schéma › Assistant de configuration"
|
1214 |
+
|
1215 |
+
#: includes/admin/post-type/schema-post-type.php:99
|
1216 |
+
msgid "Schema added."
|
1217 |
+
msgstr "Schéma ajouté."
|
1218 |
+
|
1219 |
+
#: includes/admin/class-welcome.php:306
|
1220 |
+
msgid ""
|
1221 |
+
"Schema allow you to enable AudioObject markup automatically whenever oEmbed "
|
1222 |
+
"is called on your page."
|
1223 |
+
msgstr ""
|
1224 |
+
"Shema permet d’activer automatiquement le balisage AudioObject chaque fois "
|
1225 |
+
"que oEmbed est appelé sur votre page."
|
1226 |
+
|
1227 |
+
#: includes/admin/class-welcome.php:302
|
1228 |
+
msgid ""
|
1229 |
+
"Schema allow you to enable VideoObject markup automatically whenever oEmbed "
|
1230 |
+
"is called on your page."
|
1231 |
+
msgstr ""
|
1232 |
+
"Schema permet d’activer automatiquement le balisage VideoObject chaque fois "
|
1233 |
+
"que oEmbed est appelé sur votre page."
|
1234 |
+
|
1235 |
+
#: includes/admin/post-type/schema-post-type.php:97
|
1236 |
+
msgid "Schema created."
|
1237 |
+
msgstr "Schéma créé."
|
1238 |
+
|
1239 |
+
#: includes/admin/post-type/schema-post-type.php:105
|
1240 |
+
msgid "Schema draft updated."
|
1241 |
+
msgstr "Brouillon de schéma mis à jour."
|
1242 |
+
|
1243 |
+
#: includes/admin/meta-exclude.php:69
|
1244 |
+
msgid "Schema Exclude"
|
1245 |
+
msgstr "Schéma Exclure"
|
1246 |
+
|
1247 |
+
#: includes/admin/class-welcome.php:346
|
1248 |
+
msgid ""
|
1249 |
+
"Schema markup is code (semantic vocabulary) that you put on your website to "
|
1250 |
+
"help the search engines return more informative results for users. So, "
|
1251 |
+
"Schema is not just for SEO reasons, it’s also for the benefit of the "
|
1252 |
+
"searcher."
|
1253 |
+
msgstr ""
|
1254 |
+
"Le balisage de schéma est un code (vocabulaire sémantique) que vous avez mis "
|
1255 |
+
"sur votre site Web pour aider les moteurs de recherche à fournir des "
|
1256 |
+
"résultats plus informatifs aux utilisateurs. Donc, Schema c’est pas "
|
1257 |
+
"seulement pour le référencement, c’est aussi pour le bénéfice du chercheur."
|
1258 |
+
|
1259 |
+
#: includes/admin/meta.php:35
|
1260 |
+
msgid "Schema Markup Type"
|
1261 |
+
msgstr "Type de marquage de schéma"
|
1262 |
+
|
1263 |
+
#: includes/admin/class-welcome.php:269
|
1264 |
+
msgid "Schema plays nicely and support themes mentioned below."
|
1265 |
+
msgstr "Schema coopère bien et supporte les thèmes mentionnés ci-dessous."
|
1266 |
+
|
1267 |
+
#: includes/integrations/yoast-seo.php:81
|
1268 |
+
msgid ""
|
1269 |
+
"Schema plugin will override Yoast SEO output to avoid markup duplication. "
|
1270 |
+
"Check this box if you would like to disable Schema markup and use Yoast SEO "
|
1271 |
+
"output instead."
|
1272 |
+
msgstr ""
|
1273 |
+
|
1274 |
+
#: includes/admin/class-welcome.php:295
|
1275 |
+
msgid "Schema Post Type"
|
1276 |
+
msgstr "Type de publication Schema"
|
1277 |
+
|
1278 |
+
#. translators: %s: date and time of the revision
|
1279 |
+
#: includes/admin/post-type/schema-post-type.php:96
|
1280 |
+
#, php-format
|
1281 |
+
msgid "Schema restored to revision from %s"
|
1282 |
+
msgstr "Schéma restauré à la révision du %s"
|
1283 |
+
|
1284 |
+
#: includes/admin/post-type/schema-post-type.php:94
|
1285 |
+
#: includes/admin/post-type/schema-post-type.php:98
|
1286 |
+
msgid "Schema saved."
|
1287 |
+
msgstr "Schéma enregistré."
|
1288 |
+
|
1289 |
+
#: includes/admin/post-type/schema-post-type.php:101
|
1290 |
+
#, php-format
|
1291 |
+
msgid "Schema scheduled for: <strong>%1$s</strong>."
|
1292 |
+
msgstr "Schéma planifié pour : <strong>%1$s</strong>."
|
1293 |
+
|
1294 |
+
#: includes/admin/meta.php:265 includes/admin/class-menu.php:39
|
1295 |
+
msgid "Schema Settings"
|
1296 |
+
msgstr "Réglages Schema"
|
1297 |
+
|
1298 |
+
#: includes/admin/class-setup-wizard.php:105
|
1299 |
+
msgid "Schema Setup"
|
1300 |
+
msgstr ""
|
1301 |
+
|
1302 |
+
#: includes/admin/class-setup-wizard.php:105
|
1303 |
+
msgid "Schema Setup Wizard"
|
1304 |
+
msgstr ""
|
1305 |
+
|
1306 |
+
#: includes/admin/post-type/schema-columns.php:27
|
1307 |
+
msgid "Schema Type"
|
1308 |
+
msgstr "Type de schéma"
|
1309 |
+
|
1310 |
+
#: includes/admin/post-type/schema-post-type.php:91
|
1311 |
+
msgid "Schema updated."
|
1312 |
+
msgstr "Schéma mis à jour."
|
1313 |
+
|
1314 |
+
#: includes/admin/class-setup-wizard.php:690
|
1315 |
+
msgid ""
|
1316 |
+
"Schema will now take care of all the needed technical optimization of your "
|
1317 |
+
"site."
|
1318 |
+
msgstr ""
|
1319 |
+
"Schema va maintenant s’occuper de toute l’optimisation technique nécessaire "
|
1320 |
+
"de votre site."
|
1321 |
+
|
1322 |
+
#: includes/admin/class-setup-wizard.php:146
|
1323 |
+
#: includes/admin/settings/register-settings.php:1022
|
1324 |
+
msgid "Schemas"
|
1325 |
+
msgstr "Schémas"
|
1326 |
+
|
1327 |
+
#: includes/admin/class-welcome.php:216
|
1328 |
+
msgid "ScholarlyArticle"
|
1329 |
+
msgstr "ScholarlyArticle"
|
1330 |
+
|
1331 |
+
#: includes/admin/settings/contextual-help.php:50
|
1332 |
+
msgid "Search Results"
|
1333 |
+
msgstr "Résultats de la recherche"
|
1334 |
+
|
1335 |
+
#: includes/admin/post-type/schema-post-type.php:35
|
1336 |
+
msgid "Search Schemas"
|
1337 |
+
msgstr "Rechercher des schémas"
|
1338 |
+
|
1339 |
+
#: includes/admin/class-notices.php:53
|
1340 |
+
msgid "Security check failed"
|
1341 |
+
msgstr "Échec de la vérification de sécurité"
|
1342 |
+
|
1343 |
+
#: includes/extensions/audio-object.php:37
|
1344 |
+
msgid "Select audio markup type."
|
1345 |
+
msgstr "Sélectionnez le type de marquage son."
|
1346 |
+
|
1347 |
+
#: includes/admin/meta.php:192
|
1348 |
+
msgid "Select field type"
|
1349 |
+
msgstr "Sélectionner le type de champ"
|
1350 |
+
|
1351 |
+
#: includes/admin/meta.php:150
|
1352 |
+
msgid "Select Filter"
|
1353 |
+
msgstr "Sélectionner le filtre"
|
1354 |
+
|
1355 |
+
#: includes/admin/meta.php:66
|
1356 |
+
msgid "Select more specific article type"
|
1357 |
+
msgstr "Sélectionner un type d’article plus spécifique"
|
1358 |
+
|
1359 |
+
#: includes/admin/class-setup-wizard.php:811
|
1360 |
+
#: includes/admin/settings/register-settings.php:1668
|
1361 |
+
#: includes/admin/meta/class-meta.php:42
|
1362 |
+
msgid "Select One"
|
1363 |
+
msgstr "Sélectionner un"
|
1364 |
+
|
1365 |
+
#: includes/admin/meta.php:36
|
1366 |
+
msgid "Select Schema type which describes your content best"
|
1367 |
+
msgstr "Sélectionner le type de schéma qui décrit le mieux votre contenu"
|
1368 |
+
|
1369 |
+
#: includes/admin/settings/register-settings.php:246
|
1370 |
+
msgid "Select Site Type"
|
1371 |
+
msgstr "Sélectionner un type de site"
|
1372 |
+
|
1373 |
+
#: includes/admin/meta.php:195
|
1374 |
+
msgid "Select Type"
|
1375 |
+
msgstr "Sélectionner le type"
|
1376 |
+
|
1377 |
+
#: includes/extensions/video-object.php:37
|
1378 |
+
msgid "Select video markup type."
|
1379 |
+
msgstr "Sélectionnez le type de marquage vidéo."
|
1380 |
+
|
1381 |
+
#: includes/admin/class-menu.php:40
|
1382 |
+
msgid "Settings"
|
1383 |
+
msgstr "Réglages"
|
1384 |
+
|
1385 |
+
#: includes/admin/class-notices.php:32
|
1386 |
+
msgid "Settings successfully imported"
|
1387 |
+
msgstr "Réglages bien importés"
|
1388 |
+
|
1389 |
+
#: includes/admin/class-notices.php:20
|
1390 |
+
msgid "Settings updated."
|
1391 |
+
msgstr "Réglages mis à jour."
|
1392 |
+
|
1393 |
+
#: includes/misc-functions.php:714
|
1394 |
+
msgid "Singapore Dollar"
|
1395 |
+
msgstr "Dollar de Singapour"
|
1396 |
+
|
1397 |
+
#: includes/extensions/audio-object.php:47
|
1398 |
+
msgid "Single audio"
|
1399 |
+
msgstr "Son unique"
|
1400 |
+
|
1401 |
+
#: includes/extensions/video-object.php:47
|
1402 |
+
msgid "Single video"
|
1403 |
+
msgstr "Vidéo unique"
|
1404 |
+
|
1405 |
+
#: includes/admin/settings/register-settings.php:478
|
1406 |
+
msgid "Site Alternate Name"
|
1407 |
+
msgstr "Nom alternatif du site"
|
1408 |
+
|
1409 |
+
#: includes/admin/settings/register-settings.php:470
|
1410 |
+
msgid "Site Name"
|
1411 |
+
msgstr "Nom du site"
|
1412 |
+
|
1413 |
+
#: includes/admin/class-setup-wizard.php:131
|
1414 |
+
#: includes/admin/class-setup-wizard.php:331
|
1415 |
+
#: includes/admin/class-setup-wizard.php:343
|
1416 |
+
#: includes/admin/settings/register-settings.php:242
|
1417 |
+
msgid "Site Type"
|
1418 |
+
msgstr "Type de site"
|
1419 |
+
|
1420 |
+
#: includes/admin/class-setup-wizard.php:369
|
1421 |
+
#: includes/admin/class-setup-wizard.php:432
|
1422 |
+
#: includes/admin/class-setup-wizard.php:576
|
1423 |
+
#: includes/admin/class-setup-wizard.php:676
|
1424 |
+
msgid "Skip this step"
|
1425 |
+
msgstr "Passer cette étape"
|
1426 |
+
|
1427 |
+
#: includes/admin/class-setup-wizard.php:141
|
1428 |
+
#: includes/admin/class-setup-wizard.php:445
|
1429 |
+
#: includes/admin/settings/register-settings.php:335
|
1430 |
+
msgid "Social Profiles"
|
1431 |
+
msgstr "Profils sociaux"
|
1432 |
+
|
1433 |
+
#: includes/admin/class-setup-wizard.php:550
|
1434 |
+
#: includes/admin/class-setup-wizard.php:553
|
1435 |
+
#: includes/admin/settings/register-settings.php:404
|
1436 |
+
msgid "SoundCloud"
|
1437 |
+
msgstr "SoundCloud"
|
1438 |
+
|
1439 |
+
#: includes/misc-functions.php:715
|
1440 |
+
msgid "South African rand"
|
1441 |
+
msgstr "Rand sud-africain"
|
1442 |
+
|
1443 |
+
#: includes/misc-functions.php:702
|
1444 |
+
msgid "South Korean Won"
|
1445 |
+
msgstr "Won sud-coréen"
|
1446 |
+
|
1447 |
+
#: includes/admin/class-setup-wizard.php:422
|
1448 |
+
#: includes/admin/settings/register-settings.php:323
|
1449 |
+
msgid ""
|
1450 |
+
"Specify the image of your organization's logo to be used in Google Search "
|
1451 |
+
"results and in the Knowledge Graph.<br />Learn more about"
|
1452 |
+
msgstr ""
|
1453 |
+
"Spécifiez l’image du logo de votre organisation à utiliser dans les "
|
1454 |
+
"résultats de recherche Google et dans le graphique de connaissances. <br />"
|
1455 |
+
"En savoir plus"
|
1456 |
+
|
1457 |
+
#: includes/admin/class-welcome.php:349
|
1458 |
+
msgid ""
|
1459 |
+
"Structured Data can help you to send the right signals to search engines "
|
1460 |
+
"about your business and content."
|
1461 |
+
msgstr ""
|
1462 |
+
"Les données structurées peuvent vous aider à envoyer les bons signaux aux "
|
1463 |
+
"moteurs de recherche concernant votre entreprise et son contenu."
|
1464 |
+
|
1465 |
+
#: includes/admin/class-welcome.php:350
|
1466 |
+
msgid ""
|
1467 |
+
"Structured Data helps search engines to understand what the content is "
|
1468 |
+
"specifically about. Moreover, structured data will allow users to see the "
|
1469 |
+
"value of a website before they visit, via rich snippets, which are rich data "
|
1470 |
+
"that are displayed in the SERP’s."
|
1471 |
+
msgstr ""
|
1472 |
+
"Les données structurées aident les moteurs de recherche à comprendre en quoi "
|
1473 |
+
"consiste spécifiquement le contenu. De plus, les données structurées "
|
1474 |
+
"permettront aux utilisateurs de voir la valeur d’un site Web avant de le "
|
1475 |
+
"visiter, via des extraits enrichis, qui sont des données enrichies affichées "
|
1476 |
+
"dans les SERP."
|
1477 |
+
|
1478 |
+
#: includes/admin/admin-bar-menu.php:41
|
1479 |
+
msgid "Structured Data Testing Tool"
|
1480 |
+
msgstr "Outil de test de données structurées"
|
1481 |
+
|
1482 |
+
#: includes/admin/class-welcome.php:369
|
1483 |
+
msgid "Support"
|
1484 |
+
msgstr "Support"
|
1485 |
+
|
1486 |
+
#: includes/admin/class-welcome.php:207
|
1487 |
+
msgid "Support More Schema Types"
|
1488 |
+
msgstr "Supporte plus de types de schéma"
|
1489 |
+
|
1490 |
+
#: includes/admin/class-welcome.php:307
|
1491 |
+
msgid "Supported oEmbed audios: SoundCloud, and Mixcloud."
|
1492 |
+
msgstr "Prise en charge des fichiers son oEmbed : SoundCloud et Mixcloud."
|
1493 |
+
|
1494 |
+
#: includes/admin/class-welcome.php:303
|
1495 |
+
msgid ""
|
1496 |
+
"Supported oEmbed videos: Dailymotion, TED, Vimeo, VideoPress, Vine, YouTube."
|
1497 |
+
msgstr ""
|
1498 |
+
"Vidéos oEmbed supportées : Dailymotion, TED, Vimeo, VideoPress, Vine, "
|
1499 |
+
"YouTube."
|
1500 |
+
|
1501 |
+
#: includes/misc-functions.php:716
|
1502 |
+
msgid "Swedish Krona"
|
1503 |
+
msgstr "Couronne suédoise"
|
1504 |
+
|
1505 |
+
#: includes/misc-functions.php:717
|
1506 |
+
msgid "Swiss Franc"
|
1507 |
+
msgstr "Franc suisse"
|
1508 |
+
|
1509 |
+
#: includes/misc-functions.php:718
|
1510 |
+
msgid "Taiwan New Dollars"
|
1511 |
+
msgstr "Nouveaux dollars taïwanais"
|
1512 |
+
|
1513 |
+
#: includes/admin/class-welcome.php:217
|
1514 |
+
msgid "TechArticle"
|
1515 |
+
msgstr "TechArticle"
|
1516 |
+
|
1517 |
+
#: includes/admin/admin-functions.php:154
|
1518 |
+
msgid "Technical Support"
|
1519 |
+
msgstr "Support technique"
|
1520 |
+
|
1521 |
+
#: includes/admin/settings/register-settings.php:432
|
1522 |
+
msgid "Telephone"
|
1523 |
+
msgstr "Téléphone"
|
1524 |
+
|
1525 |
+
#: includes/admin/settings/register-settings.php:455
|
1526 |
+
msgid "Tell Google to show a Sitelinks search box."
|
1527 |
+
msgstr "Dites à Google d’afficher un champ de recherche de liens annexes."
|
1528 |
+
|
1529 |
+
#: includes/admin/settings/register-settings.php:464
|
1530 |
+
msgid "Tell Google to show your site name in search results."
|
1531 |
+
msgstr ""
|
1532 |
+
"Dites à Google d’afficher le nom de votre site dans les résultats de "
|
1533 |
+
"recherche."
|
1534 |
+
|
1535 |
+
#: includes/admin/meta.php:198
|
1536 |
+
msgid "Text"
|
1537 |
+
msgstr "Texte"
|
1538 |
+
|
1539 |
+
#: includes/admin/meta.php:202
|
1540 |
+
msgid "Text Area"
|
1541 |
+
msgstr "Zone de texte"
|
1542 |
+
|
1543 |
+
#: includes/misc-functions.php:719
|
1544 |
+
msgid "Thai Baht"
|
1545 |
+
msgstr "Baht thaïlandais"
|
1546 |
+
|
1547 |
+
#: includes/admin/class-setup-wizard.php:317
|
1548 |
+
msgid ""
|
1549 |
+
"Thank you for choosing Schema to power your website! This quick setup wizard "
|
1550 |
+
"will help you configure the basic settings. <strong>It’s completely optional "
|
1551 |
+
"and shouldn’t take longer than two minutes.</strong>"
|
1552 |
+
msgstr ""
|
1553 |
+
"Merci d'avoir choisi Schema pour alimenter votre site web ! Cet assistant de "
|
1554 |
+
"configuration rapide vous aidera à configurer les réglages de base. <strong>"
|
1555 |
+
"C’est totalement facultatif et ne devrait pas prendre plus de deux minutes."
|
1556 |
+
"</strong>"
|
1557 |
+
|
1558 |
+
#: includes/admin/class-welcome.php:185
|
1559 |
+
msgid ""
|
1560 |
+
"Thank you for installing Schema. The best Schema.org plugin for WordPress."
|
1561 |
+
msgstr ""
|
1562 |
+
"Merci d’avoir installé Schema. La meilleure extension Schema.org pour "
|
1563 |
+
"WordPress."
|
1564 |
+
|
1565 |
+
#: includes/admin/class-welcome.php:332
|
1566 |
+
msgid ""
|
1567 |
+
"Thank you for installing Schema. The best schema.org plugin for WordPress."
|
1568 |
+
msgstr ""
|
1569 |
+
"Merci d’avoir installé Schema. La meilleure extension schema.org pour "
|
1570 |
+
"WordPress."
|
1571 |
+
|
1572 |
+
#: includes/admin/class-welcome.php:389
|
1573 |
+
msgid "Thank you for updating to the latest version!"
|
1574 |
+
msgstr "Merci d’avoir mis à jour la dernière version !"
|
1575 |
+
|
1576 |
+
#. Description of the plugin/theme
|
1577 |
+
msgid "The next generation of Structured Data."
|
1578 |
+
msgstr "La prochaine génération de données structurées."
|
1579 |
+
|
1580 |
+
#: includes/admin/class-welcome.php:70 includes/admin/class-welcome.php:71
|
1581 |
+
msgid "The people that build Schema"
|
1582 |
+
msgstr "Les personnes qui construisent Schema"
|
1583 |
+
|
1584 |
+
#: includes/admin/class-welcome.php:285
|
1585 |
+
msgid "The SEO Framework plugin is active?"
|
1586 |
+
msgstr "L’extension The SEO Framework est-elle active ?"
|
1587 |
+
|
1588 |
+
#: includes/admin/extensions.php:142
|
1589 |
+
msgid ""
|
1590 |
+
"There was an error retrieving the extensions list from the server. Please "
|
1591 |
+
"try again later."
|
1592 |
+
msgstr ""
|
1593 |
+
"Une erreur s’est produite lors de l’extraction de la liste des extensions du "
|
1594 |
+
"serveur. Veuillez réessayer ultérieurement."
|
1595 |
+
|
1596 |
+
#: includes/admin/extensions.php:46
|
1597 |
+
msgid ""
|
1598 |
+
"These extensions <em><strong>add functionality</strong></em> to your Schema-"
|
1599 |
+
"powered site."
|
1600 |
+
msgstr ""
|
1601 |
+
"Ces extensions <em><strong>ajoutent des fonctionnalités</strong></em> à "
|
1602 |
+
"votre site Web alimenté par Schema."
|
1603 |
+
|
1604 |
+
#: includes/admin/meta.php:134
|
1605 |
+
msgid ""
|
1606 |
+
"This feature allow you to override the schema.org markups output generated "
|
1607 |
+
"by the Schema plugin."
|
1608 |
+
msgstr ""
|
1609 |
+
"Cette fonctionnalité vous permet de remplacer la sortie des balises schema."
|
1610 |
+
"org générée par l’extension Schema."
|
1611 |
+
|
1612 |
+
#: includes/admin/meta.php:124
|
1613 |
+
msgid ""
|
1614 |
+
"This field will allow you to override the Schema post meta box title, "
|
1615 |
+
"default: Schema"
|
1616 |
+
msgstr ""
|
1617 |
+
"Ce champ vous permettra de remplacer le titre de la boîte de méta de "
|
1618 |
+
"publication Schema, par défaut : Schema"
|
1619 |
+
|
1620 |
+
#: includes/admin/class-setup-wizard.php:335
|
1621 |
+
msgid ""
|
1622 |
+
"This information can help us to prioritize future additions to our plugin "
|
1623 |
+
"for specific types of sites"
|
1624 |
+
msgstr ""
|
1625 |
+
"Ces informations peuvent nous aider à hiérarchiser les ajouts futurs à notre "
|
1626 |
+
"extension pour des types de sites spécifiques."
|
1627 |
+
|
1628 |
+
#: includes/admin/class-setup-wizard.php:385
|
1629 |
+
#: includes/admin/settings/register-settings.php:284
|
1630 |
+
msgid ""
|
1631 |
+
"This information will be used in Google's Knowledge Graph Card, the big "
|
1632 |
+
"block of information you see on the right side of the search results."
|
1633 |
+
msgstr ""
|
1634 |
+
"Ces informations seront utilisées dans la fiche de connaissances de Google, "
|
1635 |
+
"le gros bloc d’informations que vous voyez à droite des résultats de la "
|
1636 |
+
"recherche."
|
1637 |
+
|
1638 |
+
#: includes/admin/meta.php:146
|
1639 |
+
msgid "This is the filter name"
|
1640 |
+
msgstr "C’est le nom du filtre"
|
1641 |
+
|
1642 |
+
#: includes/admin/meta.php:133
|
1643 |
+
msgid ""
|
1644 |
+
"This is where you can define a source for schema.org markup fields to "
|
1645 |
+
"override its output. Select a filter name, then define post meta key name to "
|
1646 |
+
"pull data from, or tick the check box to automatically create a new custom "
|
1647 |
+
"post meta field to insert values manually when editing posts."
|
1648 |
+
msgstr ""
|
1649 |
+
"C'est ici que vous pouvez définir une source pour les champs de balisage "
|
1650 |
+
"schema.org afin de remplacer sa sortie. Sélectionnez un nom de filtre, puis "
|
1651 |
+
"définissez le nom de la clé de méta de publication à partir de laquelle "
|
1652 |
+
"extraire des données ou cochez la case pour créer automatiquement un nouveau "
|
1653 |
+
"champ de méta de publication personnalisé afin d'insérer des valeurs "
|
1654 |
+
"manuellement lors de la modification de publications."
|
1655 |
+
|
1656 |
+
#: includes/admin/settings/contextual-help.php:57
|
1657 |
+
msgid ""
|
1658 |
+
"This screen provides access to settings added by most Schema extensions."
|
1659 |
+
msgstr ""
|
1660 |
+
"Cet écran permet d’accéder aux réglages ajoutés par la plupart des modules "
|
1661 |
+
"de Schema."
|
1662 |
+
|
1663 |
+
#: includes/admin/settings/contextual-help.php:64
|
1664 |
+
msgid ""
|
1665 |
+
"This screen provides advanced options such as deleting plugin data on "
|
1666 |
+
"uninstall."
|
1667 |
+
msgstr ""
|
1668 |
+
"Cet écran propose des options avancées telles que la suppression des données "
|
1669 |
+
"de l’extension lors de sa désinstallation."
|
1670 |
+
|
1671 |
+
#: includes/admin/settings/contextual-help.php:51
|
1672 |
+
msgid ""
|
1673 |
+
"This screen provides settings for configuring Search Results. You can set "
|
1674 |
+
"Sitelinks Search Box and Site Name."
|
1675 |
+
msgstr ""
|
1676 |
+
"Cet écran fournit les réglages de configuration des résultats de recherche. "
|
1677 |
+
"Vous pouvez définir un champ de recherche de liens annexes et un nom de site."
|
1678 |
+
|
1679 |
+
#: includes/admin/settings/contextual-help.php:45
|
1680 |
+
msgid ""
|
1681 |
+
"This screen provides settings for configuring the Knowledge Graph. You can "
|
1682 |
+
"set Organization Info and Corporate Contacts."
|
1683 |
+
msgstr ""
|
1684 |
+
"Cet écran fournit les réglages de configuration du graphe de connaissances. "
|
1685 |
+
"Vous pouvez définir les informations d’organisation et les contacts "
|
1686 |
+
"d’entreprise."
|
1687 |
+
|
1688 |
+
#: includes/admin/settings/contextual-help.php:39
|
1689 |
+
msgid ""
|
1690 |
+
"This screen provides the most basic settings for configuring Schema plugin "
|
1691 |
+
"on your site. You can set Schema for About and Contact pages, and turn "
|
1692 |
+
"automatic <em>Feature image</em> on and off...etc"
|
1693 |
+
msgstr ""
|
1694 |
+
"Cet écran fournit les réglages de base pour la configuration de l’extension "
|
1695 |
+
"Schema sur votre site. Vous pouvez définir Schema pour les pages À propos et "
|
1696 |
+
"Contact, et activer et désactiver <em>l’image mise en avant</em>, etc."
|
1697 |
+
|
1698 |
+
#: includes/admin/class-setup-wizard.php:390
|
1699 |
+
#: includes/admin/settings/register-settings.php:290
|
1700 |
+
msgid "This Website Represent"
|
1701 |
+
msgstr "Ce site Web représente"
|
1702 |
+
|
1703 |
+
#: includes/admin/meta-exclude.php:37
|
1704 |
+
msgid "Tick this checkbox to turn off Schema output on this entry."
|
1705 |
+
msgstr ""
|
1706 |
+
"Cochez cette case pour désactiver la sortie de schéma sur cette entrée."
|
1707 |
+
|
1708 |
+
#: includes/admin/meta.php:122 includes/extensions/audio-object.php:100
|
1709 |
+
#: includes/extensions/video-object.php:100
|
1710 |
+
msgid "Title"
|
1711 |
+
msgstr "Titre"
|
1712 |
+
|
1713 |
+
#: includes/admin/class-setup-wizard.php:562
|
1714 |
+
#: includes/admin/class-setup-wizard.php:565
|
1715 |
+
#: includes/admin/settings/register-settings.php:412
|
1716 |
+
msgid "Tumblr"
|
1717 |
+
msgstr "Tumblr"
|
1718 |
+
|
1719 |
+
#: includes/misc-functions.php:720
|
1720 |
+
msgid "Turkish Lira"
|
1721 |
+
msgstr "Lire turque"
|
1722 |
+
|
1723 |
+
#: includes/admin/meta-exclude.php:36
|
1724 |
+
msgid "Turn Schema OFF"
|
1725 |
+
msgstr "Désactiver Schema"
|
1726 |
+
|
1727 |
+
#: includes/admin/class-setup-wizard.php:466
|
1728 |
+
#: includes/admin/class-setup-wizard.php:469
|
1729 |
+
#: includes/admin/settings/register-settings.php:349
|
1730 |
+
msgid "Twitter"
|
1731 |
+
msgstr "Twitter"
|
1732 |
+
|
1733 |
+
#: includes/admin/meta.php:191
|
1734 |
+
msgid "Type"
|
1735 |
+
msgstr "Type"
|
1736 |
+
|
1737 |
+
#: includes/admin/class-menu.php:56 includes/admin/class-menu.php:57
|
1738 |
+
msgid "Types"
|
1739 |
+
msgstr "Types"
|
1740 |
+
|
1741 |
+
#: includes/extensions/audio-object.php:107
|
1742 |
+
#: includes/extensions/video-object.php:107
|
1743 |
+
msgid "Upload Date"
|
1744 |
+
msgstr "Date de téléversement"
|
1745 |
+
|
1746 |
+
#: includes/admin/settings/register-settings.php:440
|
1747 |
+
msgid "URL"
|
1748 |
+
msgstr "URL"
|
1749 |
+
|
1750 |
+
#: includes/admin/meta-tax.php:44 includes/extensions/sameAs.php:40
|
1751 |
+
msgid ""
|
1752 |
+
"URL of a reference Web page that unambiguously indicates the item's identity."
|
1753 |
+
" E.g. the URL of the item's Wikipedia page, Freebase page, or official "
|
1754 |
+
"website."
|
1755 |
+
msgstr ""
|
1756 |
+
"URL d’une page Web de référence qui indique sans ambiguïté l’identité de "
|
1757 |
+
"l’élément. Par exemple, l’URL de la page Wikipedia, de la page Freebase ou "
|
1758 |
+
"du site Web officiel de l’élément."
|
1759 |
+
|
1760 |
+
#: includes/extensions/sameAs.php:39
|
1761 |
+
msgid "URLs"
|
1762 |
+
msgstr "URL"
|
1763 |
+
|
1764 |
+
#: includes/misc-functions.php:721
|
1765 |
+
msgid "US Dollars"
|
1766 |
+
msgstr "Dollars US"
|
1767 |
+
|
1768 |
+
#: includes/admin/scripts.php:22 includes/admin/class-setup-wizard.php:80
|
1769 |
+
msgid "Use This File"
|
1770 |
+
msgstr "Utilisez ce fichier"
|
1771 |
+
|
1772 |
+
#: includes/admin/class-welcome.php:282
|
1773 |
+
msgid "Uses Thesis Theme 2.x Post Image"
|
1774 |
+
msgstr "Utilise le thème Thesis 2.x image publication"
|
1775 |
+
|
1776 |
+
#: includes/admin/class-welcome.php:281
|
1777 |
+
msgid ""
|
1778 |
+
"Using Genesis Framework? The Schema plugin will automatically indicate that "
|
1779 |
+
"and correct Genesis Schema output."
|
1780 |
+
msgstr ""
|
1781 |
+
"Vous utilisez le framework Genesis ? L’extension Schema l’indiquera "
|
1782 |
+
"automatiquement et corrigera la sortie du schéma de Genesis."
|
1783 |
+
|
1784 |
+
#: includes/admin/class-welcome.php:283
|
1785 |
+
msgid ""
|
1786 |
+
"Using Thesis? The Schema plugin will automatically indicate and use Thesis "
|
1787 |
+
"Post Image is are presented."
|
1788 |
+
msgstr ""
|
1789 |
+
"Vous utiliser le thème Thesis ? L’extension Schema indiquera et utilisera "
|
1790 |
+
"automatiquement la publication image Thesis (!?)."
|
1791 |
+
|
1792 |
+
#: includes/admin/class-welcome.php:188 includes/admin/class-welcome.php:333
|
1793 |
+
#: includes/admin/class-welcome.php:390
|
1794 |
+
#, php-format
|
1795 |
+
msgid "Version %s"
|
1796 |
+
msgstr "Version %s"
|
1797 |
+
|
1798 |
+
#: includes/extensions/video-object.php:115
|
1799 |
+
msgid "Video duration, example: if duration is 1 Hour 35 MIN, use: PT1H35M"
|
1800 |
+
msgstr ""
|
1801 |
+
"Durée de la vidéo, exemple : si la durée est de 1 heure 35 minutes, "
|
1802 |
+
"utilisez : PT1H35M"
|
1803 |
+
|
1804 |
+
#: includes/extensions/video-object.php:36
|
1805 |
+
msgid "Video Markups"
|
1806 |
+
msgstr "Marquage vidéo"
|
1807 |
+
|
1808 |
+
#: includes/extensions/video-object.php:122
|
1809 |
+
msgid "Video short description."
|
1810 |
+
msgstr "Description courte de la vidéo."
|
1811 |
+
|
1812 |
+
#: includes/extensions/video-object.php:101
|
1813 |
+
msgid "Video title"
|
1814 |
+
msgstr "Titre de la vidéo"
|
1815 |
+
|
1816 |
+
#: includes/extensions/video-object.php:108
|
1817 |
+
msgid "Video upload date in ISO 8601 format YYYY-MM-DD example: 2016-06-23"
|
1818 |
+
msgstr ""
|
1819 |
+
"Date de téléversement de la vidéo au format ISO 8601 AAAA-MM-JJ exemple : "
|
1820 |
+
"2016-06-23"
|
1821 |
+
|
1822 |
+
#: includes/admin/class-setup-wizard.php:656
|
1823 |
+
#: includes/admin/class-setup-wizard.php:659
|
1824 |
+
msgid "VideoObject"
|
1825 |
+
msgstr "VideoObject"
|
1826 |
+
|
1827 |
+
#: includes/misc-functions.php:722
|
1828 |
+
msgid "Vietnamese Dong"
|
1829 |
+
msgstr "Dong vietnamien"
|
1830 |
+
|
1831 |
+
#: includes/admin/class-welcome.php:421
|
1832 |
+
#, php-format
|
1833 |
+
msgid "View %s"
|
1834 |
+
msgstr "Voir %s"
|
1835 |
+
|
1836 |
+
#: includes/admin/post-type/schema-post-type.php:33
|
1837 |
+
msgid "View Schema"
|
1838 |
+
msgstr "Voir le schéma"
|
1839 |
+
|
1840 |
+
#: includes/admin/post-type/schema-post-type.php:111
|
1841 |
+
msgid "View schema"
|
1842 |
+
msgstr "Voir le schéma"
|
1843 |
+
|
1844 |
+
#: includes/admin/settings/contextual-help.php:27
|
1845 |
+
#, php-format
|
1846 |
+
msgid "Visit the <a href=\"%s\">documentation</a> on the schema.press website."
|
1847 |
+
msgstr ""
|
1848 |
+
"Consultez la <a href=\"%s\">documentation</a> sur le site Web schema.press."
|
1849 |
+
|
1850 |
+
#: includes/admin/meta.php:249
|
1851 |
+
msgid "Want to enable new features?"
|
1852 |
+
msgstr ""
|
1853 |
+
|
1854 |
+
#: includes/admin/scripts.php:25 includes/admin/class-setup-wizard.php:83
|
1855 |
+
msgid ""
|
1856 |
+
"We are sorry but your browser is not compatible with this kind of file "
|
1857 |
+
"upload. Please upgrade your browser."
|
1858 |
+
msgstr ""
|
1859 |
+
"Nous sommes désolés, mais votre navigateur n’est pas compatible avec ce type "
|
1860 |
+
"de téléversement de fichier. Veuillez mettre à jour votre navigateur."
|
1861 |
+
|
1862 |
+
#: includes/admin/class-welcome.php:370
|
1863 |
+
msgid ""
|
1864 |
+
"We do our best to provide support we can. If you encounter a problem, report "
|
1865 |
+
"it to <a href=\"https://wordpress.org/support/plugin/schema\">support</a>."
|
1866 |
+
msgstr ""
|
1867 |
+
"Nous faisons de notre mieux pour fournir le meilleur soutien possible. Si "
|
1868 |
+
"vous rencontrez un problème, signalez-le au <a href=\"https://wordpress."
|
1869 |
+
"org/support/plugin/schema\">support</a>."
|
1870 |
+
|
1871 |
+
#: includes/admin/settings/register-settings.php:313
|
1872 |
+
msgid "Website URL"
|
1873 |
+
msgstr "URL du site web"
|
1874 |
+
|
1875 |
+
#: includes/admin/class-welcome.php:184 includes/admin/class-welcome.php:331
|
1876 |
+
#: includes/admin/class-welcome.php:388
|
1877 |
+
#, php-format
|
1878 |
+
msgid "Welcome to Schema v%s"
|
1879 |
+
msgstr "Bienvenue dans Schema v%s"
|
1880 |
+
|
1881 |
+
#: includes/admin/class-setup-wizard.php:316
|
1882 |
+
msgid "Welcome to Schema!"
|
1883 |
+
msgstr "Bienvenue dans Schema !"
|
1884 |
+
|
1885 |
+
#: includes/admin/class-welcome.php:345
|
1886 |
+
msgid "What is Schema markup?"
|
1887 |
+
msgstr "Qu’est-ce que le balisage de schéma ?"
|
1888 |
+
|
1889 |
+
#: includes/admin/class-setup-wizard.php:333
|
1890 |
+
msgid "What is your site about?"
|
1891 |
+
msgstr "De quoi parle votre site ?"
|
1892 |
+
|
1893 |
+
#: includes/admin/class-welcome.php:160
|
1894 |
+
msgid "What's New"
|
1895 |
+
msgstr "Quoi de neuf"
|
1896 |
+
|
1897 |
+
#: includes/admin/class-welcome.php:52 includes/admin/class-welcome.php:53
|
1898 |
+
msgid "What's new in Schema"
|
1899 |
+
msgstr "Quoi de neuf dans Schema"
|
1900 |
+
|
1901 |
+
#: includes/admin/class-welcome.php:348
|
1902 |
+
msgid "Why is Structured Data so Important?"
|
1903 |
+
msgstr "Pourquoi les données structurées sont-elles si importantes ?"
|
1904 |
+
|
1905 |
+
#: includes/admin/class-welcome.php:230
|
1906 |
+
msgid "WPFooter"
|
1907 |
+
msgstr "WPFooter"
|
1908 |
+
|
1909 |
+
#: includes/admin/class-welcome.php:226
|
1910 |
+
msgid "WPHeader"
|
1911 |
+
msgstr "WPHeader"
|
1912 |
+
|
1913 |
+
#: includes/admin/class-setup-wizard.php:629
|
1914 |
+
#: includes/admin/class-setup-wizard.php:632
|
1915 |
+
#: includes/admin/settings/register-settings.php:545
|
1916 |
+
msgid "WPHeader and WPFooter"
|
1917 |
+
msgstr "WPHeader et WPFooter"
|
1918 |
+
|
1919 |
+
#: includes/admin/class-welcome.php:277
|
1920 |
+
msgid "WPRichSnippets plugin"
|
1921 |
+
msgstr "Extension WPRichSnippets"
|
1922 |
+
|
1923 |
+
#: includes/integrations/yoast-seo.php:78
|
1924 |
+
msgid "Yes"
|
1925 |
+
msgstr "Oui"
|
1926 |
+
|
1927 |
+
#: includes/admin/class-setup-wizard.php:692
|
1928 |
+
msgid "You can change settings from"
|
1929 |
+
msgstr "Vous pouvez modifier les réglages de"
|
1930 |
+
|
1931 |
+
#: schema.php:124 schema.php:136
|
1932 |
+
msgid "You don’t have permission to do this"
|
1933 |
+
msgstr ""
|
1934 |
+
|
1935 |
+
#: includes/admin/class-feedback.php:234
|
1936 |
+
#, php-format
|
1937 |
+
msgid "You have been using the %s plugin for %s now!"
|
1938 |
+
msgstr "Vous utilisez l’extension %s pour %s maintenant !"
|
1939 |
+
|
1940 |
+
#: includes/extensions/audio-object.php:95
|
1941 |
+
msgid ""
|
1942 |
+
"You have enabled AudioObject, if you see an error in the <a "
|
1943 |
+
"target=\"_blank\" href=\"https://search.google.com/structured-data/testing-"
|
1944 |
+
"tool\">testing tool</a>, use the fields below to fill the missing fields, "
|
1945 |
+
"correct markup errors, and add additional details about the audio embedded "
|
1946 |
+
"in your content editor."
|
1947 |
+
msgstr ""
|
1948 |
+
"Vous avez activé AudioObject. Si vous constatez une erreur dans l’<a "
|
1949 |
+
"target=\"_blank\" href=\"https://search.google.com/structured-data/testing-"
|
1950 |
+
"tool\">outil de test</a>, utilisez le champs ci-dessous pour remplir les "
|
1951 |
+
"champs manquants, corriger les erreurs de marquage et ajouter des détails "
|
1952 |
+
"supplémentaires sur le son intégré à votre éditeur de contenu."
|
1953 |
+
|
1954 |
+
#: includes/extensions/video-object.php:95
|
1955 |
+
msgid ""
|
1956 |
+
"You have enabled VideoObject, if you see an error in the <a "
|
1957 |
+
"target=\"_blank\" href=\"https://search.google.com/structured-data/testing-"
|
1958 |
+
"tool\">testing tool</a>, use the fields below to fill the missing fields, "
|
1959 |
+
"correct markup errors, and add additional details about the video embedded "
|
1960 |
+
"in your content editor."
|
1961 |
+
msgstr ""
|
1962 |
+
"Vous avez activé VideoObject. Si vous constatez une erreur dans l’<a "
|
1963 |
+
"target=\"_blank\" href=\"https://search.google.com/structured-data/testing-"
|
1964 |
+
"tool\">outil de test</a>, utilisez le champs ci-dessous pour remplir les "
|
1965 |
+
"champs manquants, corriger les erreurs de marquage et ajouter des détails "
|
1966 |
+
"supplémentaires sur la vidéo intégrée à votre éditeur de contenu."
|
1967 |
+
|
1968 |
+
#: includes/admin/updater/class-license-handler.php:436
|
1969 |
+
#, php-format
|
1970 |
+
msgid ""
|
1971 |
+
"You have invalid or expired license keys for Schema. Please go to the <a "
|
1972 |
+
"href=\"%s\">Licenses page</a> to correct this issue."
|
1973 |
+
msgstr ""
|
1974 |
+
"Vous avez des clés de licence non valides ou expirées pour Schema. Veuillez "
|
1975 |
+
"vous rendre sur la <a href=\"%s\">page licences</a> pour corriger ce "
|
1976 |
+
"problème."
|
1977 |
+
|
1978 |
+
#: includes/admin/post-type/schema-wp-ajax.php:95
|
1979 |
+
msgid "You must select at least one post type!"
|
1980 |
+
msgstr ""
|
1981 |
+
|
1982 |
+
#: includes/admin/class-setup-wizard.php:688
|
1983 |
+
msgid "You've done it!"
|
1984 |
+
msgstr "Vous l’avez fait !"
|
1985 |
+
|
1986 |
+
#: includes/admin/class-feedback.php:236
|
1987 |
+
msgid "your feedback"
|
1988 |
+
msgstr "vos retours"
|
1989 |
+
|
1990 |
+
#: schema.php:147
|
1991 |
+
msgid ""
|
1992 |
+
"Your version of PHP is below the minimum version of PHP required by Schema "
|
1993 |
+
"plugin. Please contact your host and request that your version be upgraded "
|
1994 |
+
"to 5.4 or later."
|
1995 |
+
msgstr ""
|
1996 |
+
"Votre version de PHP est inférieure à la version minimale de PHP requise par "
|
1997 |
+
"l’extension Schema. Veuillez contacter votre hébergeur et demander que votre "
|
1998 |
+
"version soit mise à niveau vers la version 5.4 ou ultérieure."
|
1999 |
+
|
2000 |
+
#: includes/admin/class-setup-wizard.php:502
|
2001 |
+
#: includes/admin/class-setup-wizard.php:505
|
2002 |
+
#: includes/admin/settings/register-settings.php:373
|
2003 |
+
msgid "YouTube"
|
2004 |
+
msgstr "YouTube"
|
languages/schema-wp-ru.po
ADDED
@@ -0,0 +1,1953 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of Plugins - Schema - Stable (latest release) in Russian
|
2 |
+
# This file is distributed under the same license as the Plugins - Schema - Stable (latest release) package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: +0000\n"
|
6 |
+
"MIME-Version: 1.0\n"
|
7 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
+
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"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);\n"
|
10 |
+
"X-Generator: GlotPress/2.4.0-alpha\n"
|
11 |
+
"Language: ru\n"
|
12 |
+
"Project-Id-Version: Plugins - Schema - Stable (latest release)\n"
|
13 |
+
|
14 |
+
#. Author URI of the plugin/theme
|
15 |
+
msgid "http://zebida.com"
|
16 |
+
msgstr "http://zebida.com"
|
17 |
+
|
18 |
+
#. Author of the plugin/theme
|
19 |
+
msgid "Hesham"
|
20 |
+
msgstr "Hesham"
|
21 |
+
|
22 |
+
#. Description of the plugin/theme
|
23 |
+
msgid "The next generation of Structured Data."
|
24 |
+
msgstr "Новое поколение структурированных данных."
|
25 |
+
|
26 |
+
#. Plugin URI of the plugin/theme
|
27 |
+
msgid "https://schema.press"
|
28 |
+
msgstr "https://schema.press"
|
29 |
+
|
30 |
+
#: schema.php:143
|
31 |
+
msgid "Your version of PHP is below the minimum version of PHP required by Schema plugin. Please contact your host and request that your version be upgraded to 5.4 or later."
|
32 |
+
msgstr "Ваша версия PHP должна быть не старее версии 5.4. Свяжитесь с вашим хостером, чтобы обновить вашу версию PHP"
|
33 |
+
|
34 |
+
#: schema.php:120 schema.php:132
|
35 |
+
msgid "Cheatin’ huh?"
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: includes/misc-functions.php:657
|
39 |
+
msgid "Egyptian Pound"
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: includes/misc-functions.php:656
|
43 |
+
msgid "Vietnamese Dong"
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: includes/misc-functions.php:655
|
47 |
+
msgid "US Dollars"
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: includes/misc-functions.php:654
|
51 |
+
msgid "Turkish Lira"
|
52 |
+
msgstr ""
|
53 |
+
|
54 |
+
#: includes/misc-functions.php:653
|
55 |
+
msgid "Thai Baht"
|
56 |
+
msgstr ""
|
57 |
+
|
58 |
+
#: includes/misc-functions.php:652
|
59 |
+
msgid "Taiwan New Dollars"
|
60 |
+
msgstr ""
|
61 |
+
|
62 |
+
#: includes/misc-functions.php:651
|
63 |
+
msgid "Swiss Franc"
|
64 |
+
msgstr ""
|
65 |
+
|
66 |
+
#: includes/misc-functions.php:650
|
67 |
+
msgid "Swedish Krona"
|
68 |
+
msgstr ""
|
69 |
+
|
70 |
+
#: includes/misc-functions.php:649
|
71 |
+
msgid "South African rand"
|
72 |
+
msgstr ""
|
73 |
+
|
74 |
+
#: includes/misc-functions.php:648
|
75 |
+
msgid "Singapore Dollar"
|
76 |
+
msgstr ""
|
77 |
+
|
78 |
+
#: includes/misc-functions.php:647
|
79 |
+
msgid "Russian Ruble"
|
80 |
+
msgstr ""
|
81 |
+
|
82 |
+
#: includes/misc-functions.php:646
|
83 |
+
msgid "Romanian Leu"
|
84 |
+
msgstr ""
|
85 |
+
|
86 |
+
#: includes/misc-functions.php:645
|
87 |
+
msgid "Pounds Sterling"
|
88 |
+
msgstr ""
|
89 |
+
|
90 |
+
#: includes/misc-functions.php:644
|
91 |
+
msgid "Polish Zloty"
|
92 |
+
msgstr ""
|
93 |
+
|
94 |
+
#: includes/misc-functions.php:643
|
95 |
+
msgid "Philippine Pesos"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: includes/misc-functions.php:642
|
99 |
+
msgid "Paraguayan Guaraní"
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: includes/misc-functions.php:641
|
103 |
+
msgid "New Zealand Dollar"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: includes/misc-functions.php:640
|
107 |
+
msgid "Norwegian Krone"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: includes/misc-functions.php:639
|
111 |
+
msgid "Nigerian Naira"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: includes/misc-functions.php:638
|
115 |
+
msgid "Mexican Peso"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: includes/misc-functions.php:637
|
119 |
+
msgid "Malaysian Ringgits"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: includes/misc-functions.php:636
|
123 |
+
msgid "South Korean Won"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: includes/misc-functions.php:635
|
127 |
+
msgid "Lao Kip"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: includes/misc-functions.php:634
|
131 |
+
msgid "Japanese Yen"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: includes/misc-functions.php:633
|
135 |
+
msgid "Israeli Shekel"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: includes/misc-functions.php:632
|
139 |
+
msgid "Nepali Rupee"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: includes/misc-functions.php:631
|
143 |
+
msgid "Indian Rupee"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: includes/misc-functions.php:630
|
147 |
+
msgid "Indonesia Rupiah"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: includes/misc-functions.php:629
|
151 |
+
msgid "Icelandic krona"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: includes/misc-functions.php:628
|
155 |
+
msgid "Hungarian Forint"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: includes/misc-functions.php:627
|
159 |
+
msgid "Croatia kuna"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: includes/misc-functions.php:626
|
163 |
+
msgid "Hong Kong Dollar"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: includes/misc-functions.php:625
|
167 |
+
msgid "Euros"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: includes/misc-functions.php:624
|
171 |
+
msgid "Dominican Peso"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: includes/misc-functions.php:623
|
175 |
+
msgid "Danish Krone"
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: includes/misc-functions.php:622
|
179 |
+
msgid "Czech Koruna"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: includes/misc-functions.php:621
|
183 |
+
msgid "Colombian Peso"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: includes/misc-functions.php:620
|
187 |
+
msgid "Chinese Yuan"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: includes/misc-functions.php:619
|
191 |
+
msgid "Chilean Peso"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: includes/misc-functions.php:618
|
195 |
+
msgid "Canadian Dollars"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: includes/misc-functions.php:617
|
199 |
+
msgid "Bulgarian Lev"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: includes/misc-functions.php:616
|
203 |
+
msgid "Brazilian Real"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: includes/misc-functions.php:615
|
207 |
+
msgid "Bangladeshi Taka"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: includes/misc-functions.php:614
|
211 |
+
msgid "Australian Dollars"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: includes/json/web-page-element.php:128
|
215 |
+
msgid "Search Results for “%s”"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: includes/json/web-page-element.php:76
|
219 |
+
msgid "It looks like nothing was found at this location!"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: includes/json/web-page-element.php:75
|
223 |
+
msgid "Page not found"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: includes/json/tag.php:84
|
227 |
+
msgid " Tag"
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: includes/json/category.php:108
|
231 |
+
msgid " Category"
|
232 |
+
msgstr ""
|
233 |
+
|
234 |
+
#: includes/integrations/yoast-seo.php:81
|
235 |
+
msgid "These are the features that will be disabled:<br /><ol><li>Organization/Person</li><li>Social Profiles</li><li>Breadcrumb</li><li>Sitelink Search Box</li></ol>"
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: includes/integrations/yoast-seo.php:81
|
239 |
+
msgid "Schema plugin will override Yoast SEO output to avoid markup duplication."
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: includes/integrations/yoast-seo.php:78
|
243 |
+
msgid "Yes"
|
244 |
+
msgstr ""
|
245 |
+
|
246 |
+
#: includes/integrations/yoast-seo.php:77
|
247 |
+
msgid "Disable Duplicate Features that Yoast SEO Offers?"
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: includes/integrations/genesis.php:112
|
251 |
+
msgid "Search"
|
252 |
+
msgstr ""
|
253 |
+
|
254 |
+
#: includes/integrations/genesis.php:110 includes/integrations/genesis.php:129
|
255 |
+
msgid "Search this website"
|
256 |
+
msgstr ""
|
257 |
+
|
258 |
+
#: includes/install.php:88
|
259 |
+
msgid "Page"
|
260 |
+
msgstr ""
|
261 |
+
|
262 |
+
#: includes/install.php:45
|
263 |
+
msgid "Post"
|
264 |
+
msgstr ""
|
265 |
+
|
266 |
+
#: includes/extensions/video-object.php:123
|
267 |
+
msgid "Video short description."
|
268 |
+
msgstr ""
|
269 |
+
|
270 |
+
#: includes/extensions/video-object.php:116
|
271 |
+
msgid "Video duration, example: if duration is 1 Hour 35 MIN, use: PT1H35M"
|
272 |
+
msgstr ""
|
273 |
+
|
274 |
+
#: includes/extensions/video-object.php:109
|
275 |
+
msgid "Video upload date in ISO 8601 format YYYY-MM-DD example: 2016-06-23"
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
+
#: includes/extensions/video-object.php:102
|
279 |
+
msgid "Video title"
|
280 |
+
msgstr ""
|
281 |
+
|
282 |
+
#: includes/extensions/video-object.php:96
|
283 |
+
msgid "You have enabled VideoObject, if you see an error in the <a target=\"_blank\" href=\"https://search.google.com/structured-data/testing-tool\">testing tool</a>, use the fields below to fill the missing fields, correct markup errors, and add additional details about the video embedded in your content editor."
|
284 |
+
msgstr ""
|
285 |
+
|
286 |
+
#: includes/extensions/video-object.php:52
|
287 |
+
msgid "Multiple videos"
|
288 |
+
msgstr ""
|
289 |
+
|
290 |
+
#: includes/extensions/video-object.php:48
|
291 |
+
msgid "Single video"
|
292 |
+
msgstr ""
|
293 |
+
|
294 |
+
#: includes/extensions/video-object.php:39
|
295 |
+
msgid "Note: You can enable markups to multiple videos on the same page. However, this may slow down your site, make sure your site is hosted on a reliable web host and cache your site pages by a good caching plugin. (Recommended setting: Single Video)"
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: includes/extensions/video-object.php:38
|
299 |
+
msgid "Select video markup type."
|
300 |
+
msgstr ""
|
301 |
+
|
302 |
+
#: includes/extensions/video-object.php:37
|
303 |
+
msgid "Video Markups"
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: includes/extensions/sameAs.php:74
|
307 |
+
msgid "sameAs"
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: includes/extensions/sameAs.php:41
|
311 |
+
msgid "Enter sameAs URLs, one per line."
|
312 |
+
msgstr ""
|
313 |
+
|
314 |
+
#: includes/extensions/sameAs.php:39
|
315 |
+
msgid "URLs"
|
316 |
+
msgstr ""
|
317 |
+
|
318 |
+
#: includes/extensions/audio-object.php:122
|
319 |
+
msgid "Audio short description."
|
320 |
+
msgstr ""
|
321 |
+
|
322 |
+
#: includes/extensions/audio-object.php:115
|
323 |
+
msgid "Audio duration, example: if duration is 1 Hour 35 MIN, use: PT1H35M"
|
324 |
+
msgstr ""
|
325 |
+
|
326 |
+
#: includes/extensions/audio-object.php:114
|
327 |
+
#: includes/extensions/video-object.php:115
|
328 |
+
msgid "Duration"
|
329 |
+
msgstr ""
|
330 |
+
|
331 |
+
#: includes/extensions/audio-object.php:108
|
332 |
+
msgid "Audio upload date in ISO 8601 format YYYY-MM-DD example: 2016-06-23"
|
333 |
+
msgstr ""
|
334 |
+
|
335 |
+
#: includes/extensions/audio-object.php:107
|
336 |
+
#: includes/extensions/video-object.php:108
|
337 |
+
msgid "Upload Date"
|
338 |
+
msgstr ""
|
339 |
+
|
340 |
+
#: includes/extensions/audio-object.php:101
|
341 |
+
msgid "Audio title"
|
342 |
+
msgstr ""
|
343 |
+
|
344 |
+
#: includes/extensions/audio-object.php:95
|
345 |
+
msgid "You have enabled AudioObject, if you see an error in the <a target=\"_blank\" href=\"https://search.google.com/structured-data/testing-tool\">testing tool</a>, use the fields below to fill the missing fields, correct markup errors, and add additional details about the audio embedded in your content editor."
|
346 |
+
msgstr ""
|
347 |
+
|
348 |
+
#: includes/extensions/audio-object.php:51
|
349 |
+
msgid "Multiple audios"
|
350 |
+
msgstr ""
|
351 |
+
|
352 |
+
#: includes/extensions/audio-object.php:47
|
353 |
+
msgid "Single audio"
|
354 |
+
msgstr ""
|
355 |
+
|
356 |
+
#: includes/extensions/audio-object.php:43
|
357 |
+
#: includes/extensions/video-object.php:44
|
358 |
+
msgid "None"
|
359 |
+
msgstr ""
|
360 |
+
|
361 |
+
#: includes/extensions/audio-object.php:38
|
362 |
+
msgid "Note: You can enable markups to multiple audios on the same page. However, this may slow down your site, make sure your site is hosted on a reliable web host and cache your site pages by a good caching plugin. (Recommended setting: Single Audio)"
|
363 |
+
msgstr ""
|
364 |
+
|
365 |
+
#: includes/extensions/audio-object.php:37
|
366 |
+
msgid "Select audio markup type."
|
367 |
+
msgstr ""
|
368 |
+
|
369 |
+
#: includes/extensions/audio-object.php:36
|
370 |
+
msgid "Audio Markups"
|
371 |
+
msgstr ""
|
372 |
+
|
373 |
+
#: includes/class-capabilities.php:36
|
374 |
+
msgid "Manage Schema Options"
|
375 |
+
msgstr ""
|
376 |
+
|
377 |
+
#: includes/admin/updater/class-updater.php:402
|
378 |
+
msgid "You do not have permission to install plugin updates"
|
379 |
+
msgstr ""
|
380 |
+
|
381 |
+
#: includes/admin/updater/class-updater.php:212
|
382 |
+
msgid "There is a new version of %1$s available. %2$sView version %3$s details%4$s or %5$supdate now%6$s."
|
383 |
+
msgstr ""
|
384 |
+
|
385 |
+
#: includes/admin/updater/class-updater.php:204
|
386 |
+
msgid "There is a new version of %1$s available. %2$sView version %3$s details%4$s."
|
387 |
+
msgstr ""
|
388 |
+
|
389 |
+
#: includes/admin/updater/class-license-handler.php:475
|
390 |
+
msgid "Enter valid license key for automatic updates."
|
391 |
+
msgstr ""
|
392 |
+
|
393 |
+
#: includes/admin/updater/class-license-handler.php:436
|
394 |
+
msgid "You have invalid or expired license keys for Schema. Please go to the <a href=\"%s\">Licenses page</a> to correct this issue."
|
395 |
+
msgstr ""
|
396 |
+
|
397 |
+
#: includes/admin/updater/class-license-handler.php:319
|
398 |
+
msgid "Nonce verification failed"
|
399 |
+
msgstr ""
|
400 |
+
|
401 |
+
#: includes/admin/updater/class-license-handler.php:204
|
402 |
+
msgid "Enter your extension license keys here to receive updates for purchased extensions. If your license key has expired, please <a href=\"%s\" target=\"_blank\">renew your license</a>."
|
403 |
+
msgstr ""
|
404 |
+
|
405 |
+
#: includes/admin/updater/class-license-handler.php:168
|
406 |
+
msgid "%1$s"
|
407 |
+
msgstr ""
|
408 |
+
|
409 |
+
#: includes/admin/settings/register-settings.php:1554
|
410 |
+
msgid "Deactivate License"
|
411 |
+
msgstr ""
|
412 |
+
|
413 |
+
#: includes/admin/settings/register-settings.php:1543
|
414 |
+
msgid "To receive updates, please enter your valid %s license key."
|
415 |
+
msgstr ""
|
416 |
+
|
417 |
+
#: includes/admin/settings/register-settings.php:1525
|
418 |
+
msgid "Your license key expires on %s."
|
419 |
+
msgstr ""
|
420 |
+
|
421 |
+
#: includes/admin/settings/register-settings.php:1515
|
422 |
+
msgid "Your license key expires soon! It expires on %s. <a href=\"%s\" target=\"_blank\">Renew your license key</a>."
|
423 |
+
msgstr ""
|
424 |
+
|
425 |
+
#: includes/admin/settings/register-settings.php:1508
|
426 |
+
msgid "License key never expires."
|
427 |
+
msgstr ""
|
428 |
+
|
429 |
+
#: includes/admin/settings/register-settings.php:1482
|
430 |
+
msgid "Your license key has reached its activation limit. <a href=\"%s\">View possible upgrades</a> now."
|
431 |
+
msgstr ""
|
432 |
+
|
433 |
+
#: includes/admin/settings/register-settings.php:1473
|
434 |
+
msgid "This appears to be an invalid license key for %s."
|
435 |
+
msgstr ""
|
436 |
+
|
437 |
+
#: includes/admin/settings/register-settings.php:1461
|
438 |
+
msgid "Your %s is not active for this URL. Please <a href=\"%s\" target=\"_blank\">visit your account page</a> to manage your license key URLs."
|
439 |
+
msgstr ""
|
440 |
+
|
441 |
+
#: includes/admin/settings/register-settings.php:1448
|
442 |
+
msgid "Invalid license. Please <a href=\"%s\" target=\"_blank\">visit your account page</a> and verify it."
|
443 |
+
msgstr ""
|
444 |
+
|
445 |
+
#: includes/admin/settings/register-settings.php:1436
|
446 |
+
msgid "Your license key has been disabled. Please <a href=\"%s\" target=\"_blank\">contact support</a> for more information."
|
447 |
+
msgstr ""
|
448 |
+
|
449 |
+
#: includes/admin/settings/register-settings.php:1423
|
450 |
+
msgid "Your license key expired on %s. Please <a href=\"%s\" target=\"_blank\">renew your license key</a>."
|
451 |
+
msgstr ""
|
452 |
+
|
453 |
+
#: includes/admin/settings/register-settings.php:1271
|
454 |
+
#: includes/admin/settings/register-settings.php:1301
|
455 |
+
msgid "Upload File"
|
456 |
+
msgstr ""
|
457 |
+
|
458 |
+
#: includes/admin/settings/register-settings.php:1124
|
459 |
+
msgid "The callback function used for the %s setting is missing."
|
460 |
+
msgstr ""
|
461 |
+
|
462 |
+
#: includes/admin/settings/register-settings.php:818
|
463 |
+
msgid "Main"
|
464 |
+
msgstr ""
|
465 |
+
|
466 |
+
#: includes/admin/settings/register-settings.php:815
|
467 |
+
msgid "Corporate Contacts"
|
468 |
+
msgstr ""
|
469 |
+
|
470 |
+
#: includes/admin/settings/register-settings.php:812
|
471 |
+
msgid "Organization Info"
|
472 |
+
msgstr ""
|
473 |
+
|
474 |
+
#: includes/admin/settings/register-settings.php:757
|
475 |
+
msgid "Licenses"
|
476 |
+
msgstr ""
|
477 |
+
|
478 |
+
#: includes/admin/settings/register-settings.php:551
|
479 |
+
msgid "Check this box if you would like Schema to completely remove all of its data when uninstalling via Plugins > Delete."
|
480 |
+
msgstr ""
|
481 |
+
|
482 |
+
#: includes/admin/settings/register-settings.php:550
|
483 |
+
msgid "Delete Data on Uninstall?"
|
484 |
+
msgstr ""
|
485 |
+
|
486 |
+
#: includes/admin/settings/register-settings.php:477
|
487 |
+
msgid "Site Alternate Name"
|
488 |
+
msgstr ""
|
489 |
+
|
490 |
+
#: includes/admin/settings/register-settings.php:469
|
491 |
+
msgid "Site Name"
|
492 |
+
msgstr ""
|
493 |
+
|
494 |
+
#: includes/admin/settings/register-settings.php:463
|
495 |
+
msgid "Tell Google to show your site name in search results."
|
496 |
+
msgstr ""
|
497 |
+
|
498 |
+
#: includes/admin/settings/register-settings.php:462
|
499 |
+
msgid "Enable Site Name?"
|
500 |
+
msgstr ""
|
501 |
+
|
502 |
+
#: includes/admin/settings/register-settings.php:454
|
503 |
+
msgid "Tell Google to show a Sitelinks search box."
|
504 |
+
msgstr ""
|
505 |
+
|
506 |
+
#: includes/admin/settings/register-settings.php:453
|
507 |
+
msgid "Enable Sitelinks Search Box?"
|
508 |
+
msgstr ""
|
509 |
+
|
510 |
+
#: includes/admin/settings/register-settings.php:440
|
511 |
+
msgid "Recommended. The URL of contact page."
|
512 |
+
msgstr ""
|
513 |
+
|
514 |
+
#: includes/admin/settings/register-settings.php:439
|
515 |
+
msgid "URL"
|
516 |
+
msgstr ""
|
517 |
+
|
518 |
+
#: includes/admin/settings/register-settings.php:432
|
519 |
+
msgid "Recommended. An internationalized version of the phone number, starting with the \"+\" symbol and country code (+1 in the US and Canada)."
|
520 |
+
msgstr ""
|
521 |
+
|
522 |
+
#: includes/admin/settings/register-settings.php:431
|
523 |
+
msgid "Telephone"
|
524 |
+
msgstr ""
|
525 |
+
|
526 |
+
#: includes/admin/settings/register-settings.php:423
|
527 |
+
msgid "Contact Type"
|
528 |
+
msgstr ""
|
529 |
+
|
530 |
+
#: includes/admin/settings/register-settings.php:312
|
531 |
+
msgid "Website URL"
|
532 |
+
msgstr ""
|
533 |
+
|
534 |
+
#: includes/admin/settings/register-settings.php:245
|
535 |
+
msgid "Select Site Type"
|
536 |
+
msgstr ""
|
537 |
+
|
538 |
+
#: includes/admin/settings/contextual-help.php:65
|
539 |
+
msgid "A description of all the options are provided beside their input boxes."
|
540 |
+
msgstr ""
|
541 |
+
|
542 |
+
#: includes/admin/settings/contextual-help.php:64
|
543 |
+
msgid "This screen provides advanced options such as deleting plugin data on uninstall."
|
544 |
+
msgstr ""
|
545 |
+
|
546 |
+
#: includes/admin/settings/contextual-help.php:57
|
547 |
+
msgid "This screen provides access to settings added by most Schema extensions."
|
548 |
+
msgstr ""
|
549 |
+
|
550 |
+
#: includes/admin/settings/contextual-help.php:51
|
551 |
+
msgid "This screen provides settings for configuring Search Results. You can set Sitelinks Search Box and Site Name."
|
552 |
+
msgstr ""
|
553 |
+
|
554 |
+
#: includes/admin/settings/contextual-help.php:50
|
555 |
+
#: includes/admin/settings/register-settings.php:813
|
556 |
+
msgid "Search Results"
|
557 |
+
msgstr ""
|
558 |
+
|
559 |
+
#: includes/admin/settings/contextual-help.php:45
|
560 |
+
msgid "This screen provides settings for configuring the Knowledge Graph. You can set Organization Info and Corporate Contacts."
|
561 |
+
msgstr ""
|
562 |
+
|
563 |
+
#: includes/admin/settings/contextual-help.php:44
|
564 |
+
#: includes/admin/settings/register-settings.php:750
|
565 |
+
msgid "Knowledge Graph"
|
566 |
+
msgstr ""
|
567 |
+
|
568 |
+
#: includes/admin/settings/contextual-help.php:39
|
569 |
+
msgid "This screen provides the most basic settings for configuring Schema plugin on your site. You can set Schema for About and Contact pages, and turn automatic <em>Feature image</em> on and off...etc"
|
570 |
+
msgstr ""
|
571 |
+
|
572 |
+
#: includes/admin/settings/contextual-help.php:29
|
573 |
+
msgid "<a href=\"%s\">Post an issue</a> on <a href=\"%s\">GitHub</a>. View <a href=\"%s\">extensions</a>"
|
574 |
+
msgstr ""
|
575 |
+
|
576 |
+
#: includes/admin/settings/contextual-help.php:27
|
577 |
+
msgid "Visit the <a href=\"%s\">documentation</a> on the schema.press website."
|
578 |
+
msgstr ""
|
579 |
+
|
580 |
+
#: includes/admin/settings/contextual-help.php:26
|
581 |
+
msgid "For more information:"
|
582 |
+
msgstr ""
|
583 |
+
|
584 |
+
#: includes/admin/post-type/schema-wp-submit.php:111
|
585 |
+
msgid "Save "
|
586 |
+
msgstr ""
|
587 |
+
|
588 |
+
#: includes/admin/post-type/schema-wp-submit.php:110
|
589 |
+
msgid "Update "
|
590 |
+
msgstr ""
|
591 |
+
|
592 |
+
#: includes/admin/post-type/schema-wp-submit.php:104
|
593 |
+
msgid "Save"
|
594 |
+
msgstr ""
|
595 |
+
|
596 |
+
#: includes/admin/post-type/schema-wp-submit.php:103
|
597 |
+
msgid "Publish"
|
598 |
+
msgstr ""
|
599 |
+
|
600 |
+
#: includes/admin/post-type/schema-wp-submit.php:92
|
601 |
+
msgid "Move to Trash"
|
602 |
+
msgstr ""
|
603 |
+
|
604 |
+
#: includes/admin/post-type/schema-wp-submit.php:90
|
605 |
+
msgid "Delete Permanently"
|
606 |
+
msgstr ""
|
607 |
+
|
608 |
+
#: includes/admin/post-type/schema-wp-submit.php:38
|
609 |
+
msgid "%s"
|
610 |
+
msgstr ""
|
611 |
+
|
612 |
+
#: includes/admin/post-type/schema-wp-ajax.php:95
|
613 |
+
msgid "You must select at leat one post type!"
|
614 |
+
msgstr ""
|
615 |
+
|
616 |
+
#: includes/admin/post-type/schema-post-type.php:172
|
617 |
+
msgid "Create Schema"
|
618 |
+
msgstr ""
|
619 |
+
|
620 |
+
#: includes/admin/post-type/schema-post-type.php:118
|
621 |
+
msgid "Preview schema"
|
622 |
+
msgstr ""
|
623 |
+
|
624 |
+
#: includes/admin/post-type/schema-post-type.php:111
|
625 |
+
msgid "View schema"
|
626 |
+
msgstr ""
|
627 |
+
|
628 |
+
#: includes/admin/post-type/schema-post-type.php:105
|
629 |
+
msgid "Schema draft updated."
|
630 |
+
msgstr ""
|
631 |
+
|
632 |
+
#. translators: Publish box date format, see http://php.net/date
|
633 |
+
#: includes/admin/post-type/schema-post-type.php:103
|
634 |
+
msgid "M j, Y @ G:i"
|
635 |
+
msgstr ""
|
636 |
+
|
637 |
+
#: includes/admin/post-type/schema-post-type.php:101
|
638 |
+
msgid "Schema scheduled for: <strong>%1$s</strong>."
|
639 |
+
msgstr ""
|
640 |
+
|
641 |
+
#: includes/admin/post-type/schema-post-type.php:99
|
642 |
+
msgid "Schema added."
|
643 |
+
msgstr ""
|
644 |
+
|
645 |
+
#: includes/admin/post-type/schema-post-type.php:97
|
646 |
+
msgid "Schema created."
|
647 |
+
msgstr ""
|
648 |
+
|
649 |
+
#. translators: %s: date and time of the revision
|
650 |
+
#: includes/admin/post-type/schema-post-type.php:96
|
651 |
+
msgid "Schema restored to revision from %s"
|
652 |
+
msgstr ""
|
653 |
+
|
654 |
+
#: includes/admin/post-type/schema-post-type.php:94
|
655 |
+
#: includes/admin/post-type/schema-post-type.php:98
|
656 |
+
msgid "Schema saved."
|
657 |
+
msgstr ""
|
658 |
+
|
659 |
+
#: includes/admin/post-type/schema-post-type.php:93
|
660 |
+
msgid "Custom field deleted."
|
661 |
+
msgstr ""
|
662 |
+
|
663 |
+
#: includes/admin/post-type/schema-post-type.php:92
|
664 |
+
msgid "Custom field updated."
|
665 |
+
msgstr ""
|
666 |
+
|
667 |
+
#: includes/admin/post-type/schema-post-type.php:91
|
668 |
+
msgid "Schema updated."
|
669 |
+
msgstr ""
|
670 |
+
|
671 |
+
#: includes/admin/post-type/schema-post-type.php:43
|
672 |
+
msgid "Description."
|
673 |
+
msgstr ""
|
674 |
+
|
675 |
+
#: includes/admin/post-type/schema-post-type.php:38
|
676 |
+
msgid "No schema found in Trash."
|
677 |
+
msgstr ""
|
678 |
+
|
679 |
+
#: includes/admin/post-type/schema-post-type.php:37
|
680 |
+
msgid "No schema found."
|
681 |
+
msgstr ""
|
682 |
+
|
683 |
+
#: includes/admin/post-type/schema-post-type.php:36
|
684 |
+
msgid "Parent Schemas:"
|
685 |
+
msgstr ""
|
686 |
+
|
687 |
+
#: includes/admin/post-type/schema-post-type.php:35
|
688 |
+
msgid "Search Schemas"
|
689 |
+
msgstr ""
|
690 |
+
|
691 |
+
#: includes/admin/post-type/schema-post-type.php:34
|
692 |
+
msgid "All Schemas"
|
693 |
+
msgstr ""
|
694 |
+
|
695 |
+
#: includes/admin/post-type/schema-post-type.php:33
|
696 |
+
msgid "View Schema"
|
697 |
+
msgstr ""
|
698 |
+
|
699 |
+
#: includes/admin/post-type/schema-post-type.php:32
|
700 |
+
msgid "Edit Schema"
|
701 |
+
msgstr ""
|
702 |
+
|
703 |
+
#: includes/admin/post-type/schema-post-type.php:31
|
704 |
+
msgid "New Schema"
|
705 |
+
msgstr ""
|
706 |
+
|
707 |
+
#: includes/admin/post-type/schema-post-type.php:30
|
708 |
+
msgid "Add New Schema"
|
709 |
+
msgstr ""
|
710 |
+
|
711 |
+
#: includes/admin/post-type/schema-post-type.php:29
|
712 |
+
msgctxt "schema"
|
713 |
+
msgid "Add New"
|
714 |
+
msgstr ""
|
715 |
+
|
716 |
+
#: includes/admin/post-type/schema-post-type.php:28
|
717 |
+
msgctxt "add new on admin bar"
|
718 |
+
msgid "Schema"
|
719 |
+
msgstr ""
|
720 |
+
|
721 |
+
#: includes/admin/post-type/schema-post-type.php:27
|
722 |
+
msgctxt "admin menu"
|
723 |
+
msgid "Schema"
|
724 |
+
msgstr ""
|
725 |
+
|
726 |
+
#: includes/admin/post-type/schema-post-type.php:26
|
727 |
+
msgctxt "post type singular name"
|
728 |
+
msgid "Schema"
|
729 |
+
msgstr ""
|
730 |
+
|
731 |
+
#: includes/admin/post-type/schema-post-type.php:25
|
732 |
+
msgctxt "post type general name"
|
733 |
+
msgid "Schema"
|
734 |
+
msgstr ""
|
735 |
+
|
736 |
+
#: includes/admin/post-type/schema-columns.php:51
|
737 |
+
msgid "Content"
|
738 |
+
msgstr ""
|
739 |
+
|
740 |
+
#: includes/admin/post-type/schema-columns.php:46
|
741 |
+
#: includes/admin/post-type/schema-columns.php:58
|
742 |
+
msgid "-"
|
743 |
+
msgstr ""
|
744 |
+
|
745 |
+
#: includes/admin/post-type/schema-columns.php:39
|
746 |
+
msgid "Post Type"
|
747 |
+
msgstr ""
|
748 |
+
|
749 |
+
#: includes/admin/post-type/schema-columns.php:34
|
750 |
+
msgid "Not set!"
|
751 |
+
msgstr ""
|
752 |
+
|
753 |
+
#: includes/admin/post-type/schema-columns.php:27
|
754 |
+
msgid "Schema Type"
|
755 |
+
msgstr ""
|
756 |
+
|
757 |
+
#: includes/admin/meta.php:274
|
758 |
+
msgid "Post Meta"
|
759 |
+
msgstr ""
|
760 |
+
|
761 |
+
#: includes/admin/meta.php:273
|
762 |
+
msgid "Post Types"
|
763 |
+
msgstr ""
|
764 |
+
|
765 |
+
#: includes/admin/meta.php:248
|
766 |
+
msgid "Description for this field"
|
767 |
+
msgstr ""
|
768 |
+
|
769 |
+
#: includes/admin/meta.php:245
|
770 |
+
msgid "Field description"
|
771 |
+
msgstr ""
|
772 |
+
|
773 |
+
#: includes/admin/meta.php:236
|
774 |
+
msgid "Field label"
|
775 |
+
msgstr ""
|
776 |
+
|
777 |
+
#: includes/admin/meta.php:235 includes/admin/meta.php:240
|
778 |
+
msgid "Label"
|
779 |
+
msgstr ""
|
780 |
+
|
781 |
+
#: includes/admin/meta.php:227
|
782 |
+
msgid "Checkbox"
|
783 |
+
msgstr ""
|
784 |
+
|
785 |
+
#: includes/admin/meta.php:223
|
786 |
+
msgid "Text Area"
|
787 |
+
msgstr ""
|
788 |
+
|
789 |
+
#: includes/admin/meta.php:219
|
790 |
+
msgid "Text"
|
791 |
+
msgstr ""
|
792 |
+
|
793 |
+
#: includes/admin/meta.php:216
|
794 |
+
msgid "Select Type"
|
795 |
+
msgstr ""
|
796 |
+
|
797 |
+
#: includes/admin/meta.php:213
|
798 |
+
msgid "Select field type"
|
799 |
+
msgstr ""
|
800 |
+
|
801 |
+
#: includes/admin/meta.php:212
|
802 |
+
msgid "Type"
|
803 |
+
msgstr ""
|
804 |
+
|
805 |
+
#: includes/admin/meta.php:201
|
806 |
+
msgid "Create Field?"
|
807 |
+
msgstr ""
|
808 |
+
|
809 |
+
#: includes/admin/meta.php:200
|
810 |
+
msgid "Create custom post meta field?"
|
811 |
+
msgstr ""
|
812 |
+
|
813 |
+
#: includes/admin/meta.php:199
|
814 |
+
msgid "Create?"
|
815 |
+
msgstr ""
|
816 |
+
|
817 |
+
#: includes/admin/meta.php:195
|
818 |
+
msgid "Meta Key Name"
|
819 |
+
msgstr ""
|
820 |
+
|
821 |
+
#: includes/admin/meta.php:191
|
822 |
+
msgid "Add post meta key name as source"
|
823 |
+
msgstr ""
|
824 |
+
|
825 |
+
#: includes/admin/meta.php:190
|
826 |
+
msgid "Key"
|
827 |
+
msgstr ""
|
828 |
+
|
829 |
+
#: includes/admin/meta.php:182 includes/admin/meta.php:244
|
830 |
+
#: includes/extensions/audio-object.php:121
|
831 |
+
#: includes/extensions/video-object.php:122
|
832 |
+
msgid "Description"
|
833 |
+
msgstr ""
|
834 |
+
|
835 |
+
#: includes/admin/meta.php:178
|
836 |
+
msgid "Headline"
|
837 |
+
msgstr ""
|
838 |
+
|
839 |
+
#: includes/admin/meta.php:174
|
840 |
+
msgid "Author Name"
|
841 |
+
msgstr ""
|
842 |
+
|
843 |
+
#: includes/admin/meta.php:171
|
844 |
+
msgid "Select Filter"
|
845 |
+
msgstr ""
|
846 |
+
|
847 |
+
#: includes/admin/meta.php:167
|
848 |
+
msgid "This is the filter name"
|
849 |
+
msgstr ""
|
850 |
+
|
851 |
+
#: includes/admin/meta.php:166
|
852 |
+
msgid "Filter"
|
853 |
+
msgstr ""
|
854 |
+
|
855 |
+
#: includes/admin/meta.php:155
|
856 |
+
msgid "This feature allow you to override the schema.org markups output generated by the Schema plugin."
|
857 |
+
msgstr ""
|
858 |
+
|
859 |
+
#: includes/admin/meta.php:154
|
860 |
+
msgid "This is where you can define a source for schema.org markup fields to override its output. Select a filter name, then define post meta key name to pull data from, or tick the check box to automatically create a new custom post meta field to insert values manually when editing posts."
|
861 |
+
msgstr ""
|
862 |
+
|
863 |
+
#: includes/admin/meta.php:145
|
864 |
+
msgid "This field will allow you to override the Schema post meta box title, default: Schema"
|
865 |
+
msgstr ""
|
866 |
+
|
867 |
+
#: includes/admin/meta.php:144
|
868 |
+
msgid "Post meta box title, default: Schema"
|
869 |
+
msgstr ""
|
870 |
+
|
871 |
+
#: includes/admin/meta.php:143 includes/extensions/audio-object.php:100
|
872 |
+
#: includes/extensions/video-object.php:101
|
873 |
+
msgid "Title"
|
874 |
+
msgstr ""
|
875 |
+
|
876 |
+
#: includes/admin/meta.php:129
|
877 |
+
msgid "Enabled on specific custom post types"
|
878 |
+
msgstr ""
|
879 |
+
|
880 |
+
#: includes/admin/meta.php:88
|
881 |
+
msgid "It is recommended to set type BlogPosting for posts, and leave empty or set to General for page post type"
|
882 |
+
msgstr ""
|
883 |
+
|
884 |
+
#: includes/admin/meta.php:87
|
885 |
+
msgid "Select more specific article type"
|
886 |
+
msgstr ""
|
887 |
+
|
888 |
+
#: includes/admin/meta.php:86
|
889 |
+
msgid "Article Type"
|
890 |
+
msgstr ""
|
891 |
+
|
892 |
+
#: includes/admin/meta.php:46 includes/admin/meta.php:72
|
893 |
+
msgid "Enable post meta box?"
|
894 |
+
msgstr ""
|
895 |
+
|
896 |
+
#: includes/admin/meta.php:45 includes/admin/meta.php:71
|
897 |
+
msgid "Enable custom post meta box"
|
898 |
+
msgstr ""
|
899 |
+
|
900 |
+
#: includes/admin/meta.php:44 includes/admin/meta.php:70
|
901 |
+
msgid "Post meta"
|
902 |
+
msgstr ""
|
903 |
+
|
904 |
+
#: includes/admin/meta.php:32 includes/admin/meta.php:57
|
905 |
+
msgid "Select Schema type which describes your content best"
|
906 |
+
msgstr ""
|
907 |
+
|
908 |
+
#: includes/admin/meta.php:31 includes/admin/meta.php:56
|
909 |
+
msgid "Schema Markup Type"
|
910 |
+
msgstr ""
|
911 |
+
|
912 |
+
#: includes/admin/meta-tax.php:44 includes/extensions/sameAs.php:40
|
913 |
+
msgid "URL of a reference Web page that unambiguously indicates the item's identity. E.g. the URL of the item's Wikipedia page, Freebase page, or official website."
|
914 |
+
msgstr ""
|
915 |
+
|
916 |
+
#: includes/admin/meta-tax.php:44
|
917 |
+
msgid "sameAs "
|
918 |
+
msgstr ""
|
919 |
+
|
920 |
+
#: includes/admin/meta-tax/class-usage-demo.php:83
|
921 |
+
msgid "This is a Repeater Block"
|
922 |
+
msgstr ""
|
923 |
+
|
924 |
+
#: includes/admin/meta-tax/class-usage-demo.php:67
|
925 |
+
msgid "My Posts "
|
926 |
+
msgstr ""
|
927 |
+
|
928 |
+
#: includes/admin/meta-tax/class-usage-demo.php:65
|
929 |
+
msgid "My Taxonomy "
|
930 |
+
msgstr ""
|
931 |
+
|
932 |
+
#: includes/admin/meta-tax/class-usage-demo.php:63
|
933 |
+
msgid "My wysiwyg Editor "
|
934 |
+
msgstr ""
|
935 |
+
|
936 |
+
#: includes/admin/meta-tax/class-usage-demo.php:61
|
937 |
+
msgid "My File "
|
938 |
+
msgstr ""
|
939 |
+
|
940 |
+
#: includes/admin/meta-tax/class-usage-demo.php:59
|
941 |
+
#: includes/admin/meta-tax/class-usage-demo.php:77
|
942 |
+
msgid "My Image "
|
943 |
+
msgstr ""
|
944 |
+
|
945 |
+
#: includes/admin/meta-tax/class-usage-demo.php:57
|
946 |
+
msgid "My Color "
|
947 |
+
msgstr ""
|
948 |
+
|
949 |
+
#: includes/admin/meta-tax/class-usage-demo.php:55
|
950 |
+
msgid "My Time "
|
951 |
+
msgstr ""
|
952 |
+
|
953 |
+
#: includes/admin/meta-tax/class-usage-demo.php:53
|
954 |
+
msgid "My Date "
|
955 |
+
msgstr ""
|
956 |
+
|
957 |
+
#: includes/admin/meta-tax/class-usage-demo.php:51
|
958 |
+
msgid "My Radio Filed"
|
959 |
+
msgstr ""
|
960 |
+
|
961 |
+
#: includes/admin/meta-tax/class-usage-demo.php:49
|
962 |
+
msgid "My select "
|
963 |
+
msgstr ""
|
964 |
+
|
965 |
+
#: includes/admin/meta-tax/class-usage-demo.php:47
|
966 |
+
#: includes/admin/meta-tax/class-usage-demo.php:76
|
967 |
+
msgid "My Checkbox "
|
968 |
+
msgstr ""
|
969 |
+
|
970 |
+
#: includes/admin/meta-tax/class-usage-demo.php:45
|
971 |
+
#: includes/admin/meta-tax/class-usage-demo.php:75
|
972 |
+
msgid "My Textarea "
|
973 |
+
msgstr ""
|
974 |
+
|
975 |
+
#: includes/admin/meta-tax/class-usage-demo.php:43
|
976 |
+
#: includes/admin/meta-tax/class-usage-demo.php:74
|
977 |
+
msgid "My Text "
|
978 |
+
msgstr ""
|
979 |
+
|
980 |
+
#: includes/admin/meta-tax/class-meta-tax.php:727
|
981 |
+
msgid "Upload Image"
|
982 |
+
msgstr ""
|
983 |
+
|
984 |
+
#: includes/admin/meta-tax/class-meta-tax.php:725
|
985 |
+
msgid "Remove Image"
|
986 |
+
msgstr ""
|
987 |
+
|
988 |
+
#: includes/admin/meta-tax/class-meta-tax.php:392
|
989 |
+
msgid "Add"
|
990 |
+
msgstr ""
|
991 |
+
|
992 |
+
#: includes/admin/meta-exclude.php:69
|
993 |
+
msgid "Schema Exclude"
|
994 |
+
msgstr ""
|
995 |
+
|
996 |
+
#: includes/admin/meta-exclude.php:37
|
997 |
+
msgid "Tick this checkbox to turn off Schema output on this entry."
|
998 |
+
msgstr ""
|
999 |
+
|
1000 |
+
#: includes/admin/meta-exclude.php:36
|
1001 |
+
msgid "Turn Schema OFF"
|
1002 |
+
msgstr ""
|
1003 |
+
|
1004 |
+
#: includes/admin/meta/class-meta.php:345 includes/admin/meta.php:153
|
1005 |
+
msgid "Fields"
|
1006 |
+
msgstr ""
|
1007 |
+
|
1008 |
+
#: includes/admin/meta/class-meta.php:64
|
1009 |
+
#: includes/admin/settings/contextual-help.php:62
|
1010 |
+
#: includes/admin/settings/register-settings.php:760
|
1011 |
+
msgid "Advanced"
|
1012 |
+
msgstr ""
|
1013 |
+
|
1014 |
+
#: includes/admin/extensions.php:129
|
1015 |
+
msgid "There was an error retrieving the extensions list from the server. Please try again later."
|
1016 |
+
msgstr ""
|
1017 |
+
|
1018 |
+
#: includes/admin/extensions.php:118
|
1019 |
+
msgid "Get this Extension"
|
1020 |
+
msgstr ""
|
1021 |
+
|
1022 |
+
#: includes/admin/extensions.php:56
|
1023 |
+
msgid "Our official free extensions are available to all license holders!"
|
1024 |
+
msgstr ""
|
1025 |
+
|
1026 |
+
#: includes/admin/extensions.php:54
|
1027 |
+
msgid "If you have a Personal or Plus license, you can easily upgrade from your account page to <a href=\"%s\">get access to all of these extensions</a>!"
|
1028 |
+
msgstr ""
|
1029 |
+
|
1030 |
+
#: includes/admin/extensions.php:53
|
1031 |
+
msgid "Pro Extensions are only available with a Professional or Ultimate license. If you already have one of these licenses, simply <a href=\"%s\">log in to your account</a> to download any of these extensions."
|
1032 |
+
msgstr ""
|
1033 |
+
|
1034 |
+
#: includes/admin/extensions.php:46
|
1035 |
+
msgid "These extensions <em><strong>add functionality</strong></em> to your Schema-powered site."
|
1036 |
+
msgstr ""
|
1037 |
+
|
1038 |
+
#: includes/admin/extensions.php:43 includes/admin/extensions.php:61
|
1039 |
+
msgid "Browse all extensions"
|
1040 |
+
msgstr ""
|
1041 |
+
|
1042 |
+
#: includes/admin/extensions.php:41
|
1043 |
+
msgid "Extensions for Schema"
|
1044 |
+
msgstr ""
|
1045 |
+
|
1046 |
+
#: includes/admin/extensions.php:32
|
1047 |
+
msgid "Official Free"
|
1048 |
+
msgstr ""
|
1049 |
+
|
1050 |
+
#: includes/admin/extensions.php:31
|
1051 |
+
msgid "Pro"
|
1052 |
+
msgstr ""
|
1053 |
+
|
1054 |
+
#: includes/admin/class-welcome.php:421
|
1055 |
+
msgid "View %s"
|
1056 |
+
msgstr ""
|
1057 |
+
|
1058 |
+
#: includes/admin/class-welcome.php:394
|
1059 |
+
msgid "Here, we will be listing some of the faces that have helped build Schema."
|
1060 |
+
msgstr ""
|
1061 |
+
|
1062 |
+
#: includes/admin/class-welcome.php:389
|
1063 |
+
msgid "Thank you for updating to the latest version!"
|
1064 |
+
msgstr ""
|
1065 |
+
|
1066 |
+
#: includes/admin/class-welcome.php:370
|
1067 |
+
msgid "We do our best to provide support we can. If you encounter a problem, report it to <a href=\"https://wordpress.org/support/plugin/schema\">support</a>."
|
1068 |
+
msgstr ""
|
1069 |
+
|
1070 |
+
#: includes/admin/class-welcome.php:369
|
1071 |
+
msgid "Support"
|
1072 |
+
msgstr ""
|
1073 |
+
|
1074 |
+
#: includes/admin/class-welcome.php:365
|
1075 |
+
msgid "Docs are on its way! We will update <a href=\"http://schema.press/\">schema.press</a> site with plugin documentation soon."
|
1076 |
+
msgstr ""
|
1077 |
+
|
1078 |
+
#: includes/admin/class-welcome.php:364
|
1079 |
+
msgid "Documentation"
|
1080 |
+
msgstr ""
|
1081 |
+
|
1082 |
+
#: includes/admin/class-welcome.php:361
|
1083 |
+
msgid "Need Help?"
|
1084 |
+
msgstr ""
|
1085 |
+
|
1086 |
+
#: includes/admin/class-welcome.php:350
|
1087 |
+
msgid "Structured Data helps search engines to understand what the content is specifically about. Moreover, structured data will allow users to see the value of a website before they visit, via rich snippets, which are rich data that are displayed in the SERP’s."
|
1088 |
+
msgstr ""
|
1089 |
+
|
1090 |
+
#: includes/admin/class-welcome.php:349
|
1091 |
+
msgid "Structured Data can help you to send the right signals to search engines about your business and content."
|
1092 |
+
msgstr ""
|
1093 |
+
|
1094 |
+
#: includes/admin/class-welcome.php:348
|
1095 |
+
msgid "Why is Structured Data so Important?"
|
1096 |
+
msgstr ""
|
1097 |
+
|
1098 |
+
#: includes/admin/class-welcome.php:346
|
1099 |
+
msgid "Schema markup is code (semantic vocabulary) that you put on your website to help the search engines return more informative results for users. So, Schema is not just for SEO reasons, it’s also for the benefit of the searcher."
|
1100 |
+
msgstr ""
|
1101 |
+
|
1102 |
+
#: includes/admin/class-welcome.php:345
|
1103 |
+
msgid "What is Schema markup?"
|
1104 |
+
msgstr ""
|
1105 |
+
|
1106 |
+
#: includes/admin/class-welcome.php:340
|
1107 |
+
msgid "Overview"
|
1108 |
+
msgstr ""
|
1109 |
+
|
1110 |
+
#: includes/admin/class-welcome.php:337
|
1111 |
+
msgid "Hang on! We are going to add more schema integration and cool features to Schema plugin."
|
1112 |
+
msgstr ""
|
1113 |
+
|
1114 |
+
#: includes/admin/class-welcome.php:332
|
1115 |
+
msgid "Thank you for installing Schema. The best schema.org plugin for WordPress."
|
1116 |
+
msgstr ""
|
1117 |
+
|
1118 |
+
#: includes/admin/class-welcome.php:307
|
1119 |
+
msgid "Supported oEmbed audios: SoundCloud, and Mixcloud."
|
1120 |
+
msgstr ""
|
1121 |
+
|
1122 |
+
#: includes/admin/class-welcome.php:306
|
1123 |
+
msgid "Schema allow you to enable AudioObject markup automatically whenever oEmbed is called on your page."
|
1124 |
+
msgstr ""
|
1125 |
+
|
1126 |
+
#: includes/admin/class-welcome.php:305
|
1127 |
+
msgid "Automatically add AudioObject to oEmbed"
|
1128 |
+
msgstr ""
|
1129 |
+
|
1130 |
+
#: includes/admin/class-welcome.php:303
|
1131 |
+
msgid "Supported oEmbed videos: Dailymotion, TED, Vimeo, VideoPress, Vine, YouTube."
|
1132 |
+
msgstr ""
|
1133 |
+
|
1134 |
+
#: includes/admin/class-welcome.php:302
|
1135 |
+
msgid "Schema allow you to enable VideoObject markup automatically whenever oEmbed is called on your page."
|
1136 |
+
msgstr ""
|
1137 |
+
|
1138 |
+
#: includes/admin/class-welcome.php:301
|
1139 |
+
msgid "Automatically add VideoObject to oEmbed"
|
1140 |
+
msgstr ""
|
1141 |
+
|
1142 |
+
#: includes/admin/class-welcome.php:297
|
1143 |
+
msgid "Also, you can set Schema to work on specific post categories."
|
1144 |
+
msgstr ""
|
1145 |
+
|
1146 |
+
#: includes/admin/class-welcome.php:296
|
1147 |
+
msgid "Now, you can create new schema.org markup types and enable them on post type bases."
|
1148 |
+
msgstr ""
|
1149 |
+
|
1150 |
+
#: includes/admin/class-welcome.php:295
|
1151 |
+
msgid "Schema Post Type"
|
1152 |
+
msgstr ""
|
1153 |
+
|
1154 |
+
#: includes/admin/class-welcome.php:289
|
1155 |
+
msgid "If Divi theme is active, Schema plugin will clear shortcodes to be able to output the content description."
|
1156 |
+
msgstr ""
|
1157 |
+
|
1158 |
+
#: includes/admin/class-welcome.php:288
|
1159 |
+
msgid "Is Divi your Theme?"
|
1160 |
+
msgstr ""
|
1161 |
+
|
1162 |
+
#: includes/admin/class-welcome.php:286
|
1163 |
+
msgid "No problem! The Schema plugin will automatically indicate that and show respect for SEO Framework."
|
1164 |
+
msgstr ""
|
1165 |
+
|
1166 |
+
#: includes/admin/class-welcome.php:285
|
1167 |
+
msgid "The SEO Framework plugin is active?"
|
1168 |
+
msgstr ""
|
1169 |
+
|
1170 |
+
#: includes/admin/class-welcome.php:283
|
1171 |
+
msgid "Using Thesis? The Schema plugin will automatically indicate and use Thesis Post Image is are presented."
|
1172 |
+
msgstr ""
|
1173 |
+
|
1174 |
+
#: includes/admin/class-welcome.php:282
|
1175 |
+
msgid "Uses Thesis Theme 2.x Post Image"
|
1176 |
+
msgstr ""
|
1177 |
+
|
1178 |
+
#: includes/admin/class-welcome.php:281
|
1179 |
+
msgid "Using Genesis Framework? The Schema plugin will automatically indicate that and correct Genesis Schema output."
|
1180 |
+
msgstr ""
|
1181 |
+
|
1182 |
+
#: includes/admin/class-welcome.php:280
|
1183 |
+
msgid "Correct Genesis Schema Markup"
|
1184 |
+
msgstr ""
|
1185 |
+
|
1186 |
+
#: includes/admin/class-welcome.php:278
|
1187 |
+
msgid "If you are using the WPRichSnippets plugin, Schema will behave!"
|
1188 |
+
msgstr ""
|
1189 |
+
|
1190 |
+
#: includes/admin/class-welcome.php:277
|
1191 |
+
msgid "WPRichSnippets plugin"
|
1192 |
+
msgstr ""
|
1193 |
+
|
1194 |
+
#: includes/admin/class-welcome.php:275
|
1195 |
+
msgid "If you are using the AMP plugin, Schema got you covered!"
|
1196 |
+
msgstr ""
|
1197 |
+
|
1198 |
+
#: includes/admin/class-welcome.php:274
|
1199 |
+
msgid "Hello AMP!"
|
1200 |
+
msgstr ""
|
1201 |
+
|
1202 |
+
#: includes/admin/class-welcome.php:272
|
1203 |
+
msgid "Now Schema plugin plays nicely with Yoast SEO plugin, you can have both plugins active with no conflicts."
|
1204 |
+
msgstr ""
|
1205 |
+
|
1206 |
+
#: includes/admin/class-welcome.php:271
|
1207 |
+
msgid "Play nicely with Yoast SEO"
|
1208 |
+
msgstr ""
|
1209 |
+
|
1210 |
+
#: includes/admin/class-welcome.php:269
|
1211 |
+
msgid "Schema plays nicely and support themes mentioned below."
|
1212 |
+
msgstr ""
|
1213 |
+
|
1214 |
+
#: includes/admin/class-welcome.php:268
|
1215 |
+
msgid "Integration with Themes and other Plugins"
|
1216 |
+
msgstr ""
|
1217 |
+
|
1218 |
+
#: includes/admin/class-welcome.php:264 includes/admin/class-welcome.php:353
|
1219 |
+
msgid "Go To Schema Settings"
|
1220 |
+
msgstr ""
|
1221 |
+
|
1222 |
+
#: includes/admin/class-welcome.php:260
|
1223 |
+
msgid "Maybe coming soon!"
|
1224 |
+
msgstr ""
|
1225 |
+
|
1226 |
+
#: includes/admin/class-welcome.php:258
|
1227 |
+
msgid "New Schema Type?"
|
1228 |
+
msgstr ""
|
1229 |
+
|
1230 |
+
#: includes/admin/class-welcome.php:254
|
1231 |
+
msgid "author archive"
|
1232 |
+
msgstr ""
|
1233 |
+
|
1234 |
+
#: includes/admin/class-welcome.php:254
|
1235 |
+
msgid "Person"
|
1236 |
+
msgstr ""
|
1237 |
+
|
1238 |
+
#: includes/admin/class-welcome.php:250
|
1239 |
+
msgid "for the contact page"
|
1240 |
+
msgstr ""
|
1241 |
+
|
1242 |
+
#: includes/admin/class-welcome.php:250
|
1243 |
+
msgid "ContactPage"
|
1244 |
+
msgstr ""
|
1245 |
+
|
1246 |
+
#: includes/admin/class-welcome.php:246
|
1247 |
+
msgid "for the about page"
|
1248 |
+
msgstr ""
|
1249 |
+
|
1250 |
+
#: includes/admin/class-welcome.php:246
|
1251 |
+
msgid "AboutPage"
|
1252 |
+
msgstr ""
|
1253 |
+
|
1254 |
+
#: includes/admin/class-welcome.php:242
|
1255 |
+
msgid "for Tags"
|
1256 |
+
msgstr ""
|
1257 |
+
|
1258 |
+
#: includes/admin/class-welcome.php:238
|
1259 |
+
msgid "for Categories"
|
1260 |
+
msgstr ""
|
1261 |
+
|
1262 |
+
#: includes/admin/class-welcome.php:238 includes/admin/class-welcome.php:242
|
1263 |
+
msgid "CollectionPage"
|
1264 |
+
msgstr ""
|
1265 |
+
|
1266 |
+
#: includes/admin/class-welcome.php:234
|
1267 |
+
msgid "for Breadcrumbs"
|
1268 |
+
msgstr ""
|
1269 |
+
|
1270 |
+
#: includes/admin/class-welcome.php:234
|
1271 |
+
msgid "BreadcrumbList"
|
1272 |
+
msgstr ""
|
1273 |
+
|
1274 |
+
#: includes/admin/class-welcome.php:230
|
1275 |
+
msgid "for Web Page Footer"
|
1276 |
+
msgstr ""
|
1277 |
+
|
1278 |
+
#: includes/admin/class-welcome.php:230
|
1279 |
+
msgid "WPFooter"
|
1280 |
+
msgstr ""
|
1281 |
+
|
1282 |
+
#: includes/admin/class-welcome.php:226
|
1283 |
+
msgid "for Web Page Header"
|
1284 |
+
msgstr ""
|
1285 |
+
|
1286 |
+
#: includes/admin/class-welcome.php:226
|
1287 |
+
msgid "WPHeader"
|
1288 |
+
msgstr ""
|
1289 |
+
|
1290 |
+
#: includes/admin/class-welcome.php:222
|
1291 |
+
msgid "for Blog posts list page"
|
1292 |
+
msgstr ""
|
1293 |
+
|
1294 |
+
#: includes/admin/class-welcome.php:222
|
1295 |
+
msgid "Blog"
|
1296 |
+
msgstr ""
|
1297 |
+
|
1298 |
+
#: includes/admin/class-welcome.php:217
|
1299 |
+
msgid "TechArticle"
|
1300 |
+
msgstr ""
|
1301 |
+
|
1302 |
+
#: includes/admin/class-welcome.php:216
|
1303 |
+
msgid "ScholarlyArticle"
|
1304 |
+
msgstr ""
|
1305 |
+
|
1306 |
+
#: includes/admin/class-welcome.php:215
|
1307 |
+
msgid "Report"
|
1308 |
+
msgstr ""
|
1309 |
+
|
1310 |
+
#: includes/admin/class-welcome.php:214
|
1311 |
+
msgid "NewsArticle"
|
1312 |
+
msgstr ""
|
1313 |
+
|
1314 |
+
#: includes/admin/class-welcome.php:213 includes/install.php:58
|
1315 |
+
msgid "BlogPosting"
|
1316 |
+
msgstr ""
|
1317 |
+
|
1318 |
+
#: includes/admin/class-welcome.php:210 includes/admin/meta.php:37
|
1319 |
+
#: includes/admin/meta.php:38 includes/admin/meta.php:62
|
1320 |
+
#: includes/admin/meta.php:63 includes/admin/meta.php:272
|
1321 |
+
#: includes/install.php:57 includes/install.php:99
|
1322 |
+
msgid "Article"
|
1323 |
+
msgstr ""
|
1324 |
+
|
1325 |
+
#: includes/admin/class-welcome.php:208
|
1326 |
+
msgid "Now, Schema plugin supports more schema.org types."
|
1327 |
+
msgstr ""
|
1328 |
+
|
1329 |
+
#: includes/admin/class-welcome.php:207
|
1330 |
+
msgid "Support More Schema Types"
|
1331 |
+
msgstr ""
|
1332 |
+
|
1333 |
+
#: includes/admin/class-welcome.php:200
|
1334 |
+
#: includes/admin/settings/display-settings.php:86
|
1335 |
+
msgid "Quick Configuration Wizard"
|
1336 |
+
msgstr ""
|
1337 |
+
|
1338 |
+
#: includes/admin/class-welcome.php:199
|
1339 |
+
msgid "Plugin Settings"
|
1340 |
+
msgstr ""
|
1341 |
+
|
1342 |
+
#: includes/admin/class-welcome.php:197
|
1343 |
+
msgid "Get started quickly with the Schema configuration wizard!"
|
1344 |
+
msgstr ""
|
1345 |
+
|
1346 |
+
#: includes/admin/class-welcome.php:196
|
1347 |
+
msgid "First-time Schema configuration!"
|
1348 |
+
msgstr ""
|
1349 |
+
|
1350 |
+
#: includes/admin/class-welcome.php:188 includes/admin/class-welcome.php:333
|
1351 |
+
#: includes/admin/class-welcome.php:390
|
1352 |
+
msgid "Version %s"
|
1353 |
+
msgstr ""
|
1354 |
+
|
1355 |
+
#: includes/admin/class-welcome.php:185
|
1356 |
+
msgid "Thank you for installing Schema. The best Schema.org plugin for WordPress."
|
1357 |
+
msgstr ""
|
1358 |
+
|
1359 |
+
#: includes/admin/class-welcome.php:184 includes/admin/class-welcome.php:331
|
1360 |
+
#: includes/admin/class-welcome.php:388
|
1361 |
+
msgid "Welcome to Schema v%s"
|
1362 |
+
msgstr ""
|
1363 |
+
|
1364 |
+
#: includes/admin/class-welcome.php:167
|
1365 |
+
msgid "Credits"
|
1366 |
+
msgstr ""
|
1367 |
+
|
1368 |
+
#: includes/admin/class-welcome.php:163
|
1369 |
+
msgid "Getting Started"
|
1370 |
+
msgstr ""
|
1371 |
+
|
1372 |
+
#: includes/admin/class-welcome.php:160
|
1373 |
+
msgid "What's New"
|
1374 |
+
msgstr ""
|
1375 |
+
|
1376 |
+
#: includes/admin/class-welcome.php:70 includes/admin/class-welcome.php:71
|
1377 |
+
msgid "The people that build Schema"
|
1378 |
+
msgstr ""
|
1379 |
+
|
1380 |
+
#: includes/admin/class-welcome.php:61 includes/admin/class-welcome.php:62
|
1381 |
+
msgid "Getting started with Schema"
|
1382 |
+
msgstr ""
|
1383 |
+
|
1384 |
+
#: includes/admin/class-welcome.php:52 includes/admin/class-welcome.php:53
|
1385 |
+
msgid "What's new in Schema"
|
1386 |
+
msgstr ""
|
1387 |
+
|
1388 |
+
#: includes/admin/class-setup-wizard.php:832
|
1389 |
+
msgid "Select Image"
|
1390 |
+
msgstr ""
|
1391 |
+
|
1392 |
+
#: includes/admin/class-setup-wizard.php:801
|
1393 |
+
#: includes/admin/meta/class-meta.php:42
|
1394 |
+
#: includes/admin/settings/register-settings.php:1378
|
1395 |
+
msgid "Select One"
|
1396 |
+
msgstr ""
|
1397 |
+
|
1398 |
+
#: includes/admin/class-setup-wizard.php:693
|
1399 |
+
msgid "Learn More"
|
1400 |
+
msgstr ""
|
1401 |
+
|
1402 |
+
#: includes/admin/class-setup-wizard.php:688
|
1403 |
+
msgid "Configure Your Schema Types!"
|
1404 |
+
msgstr ""
|
1405 |
+
|
1406 |
+
#: includes/admin/class-setup-wizard.php:686
|
1407 |
+
msgid "Next Step"
|
1408 |
+
msgstr ""
|
1409 |
+
|
1410 |
+
#: includes/admin/class-setup-wizard.php:682
|
1411 |
+
msgid "here"
|
1412 |
+
msgstr ""
|
1413 |
+
|
1414 |
+
#: includes/admin/class-setup-wizard.php:682
|
1415 |
+
msgid "You can change settings from"
|
1416 |
+
msgstr ""
|
1417 |
+
|
1418 |
+
#: includes/admin/class-setup-wizard.php:680
|
1419 |
+
msgid "Schema will now take care of all the needed technical optimization of your site."
|
1420 |
+
msgstr ""
|
1421 |
+
|
1422 |
+
#: includes/admin/class-setup-wizard.php:678
|
1423 |
+
msgid "You've done it!"
|
1424 |
+
msgstr ""
|
1425 |
+
|
1426 |
+
#: includes/admin/class-setup-wizard.php:655
|
1427 |
+
#: includes/admin/class-setup-wizard.php:658
|
1428 |
+
#: includes/admin/settings/register-settings.php:529
|
1429 |
+
msgid "AudioObject"
|
1430 |
+
msgstr ""
|
1431 |
+
|
1432 |
+
#: includes/admin/class-setup-wizard.php:646
|
1433 |
+
#: includes/admin/class-setup-wizard.php:649
|
1434 |
+
#: includes/admin/settings/register-settings.php:523
|
1435 |
+
msgid "VideoObject"
|
1436 |
+
msgstr ""
|
1437 |
+
|
1438 |
+
#: includes/admin/class-setup-wizard.php:637
|
1439 |
+
#: includes/admin/class-setup-wizard.php:640
|
1440 |
+
#: includes/admin/settings/register-settings.php:517
|
1441 |
+
msgid "Comments"
|
1442 |
+
msgstr ""
|
1443 |
+
|
1444 |
+
#: includes/admin/class-setup-wizard.php:628
|
1445 |
+
#: includes/admin/class-setup-wizard.php:631
|
1446 |
+
#: includes/admin/settings/register-settings.php:511
|
1447 |
+
msgid "Breadcrumbs"
|
1448 |
+
msgstr ""
|
1449 |
+
|
1450 |
+
#: includes/admin/class-setup-wizard.php:623
|
1451 |
+
#: includes/admin/class-setup-wizard.php:632
|
1452 |
+
#: includes/admin/class-setup-wizard.php:641
|
1453 |
+
#: includes/admin/class-setup-wizard.php:650
|
1454 |
+
#: includes/admin/class-setup-wizard.php:659
|
1455 |
+
#: includes/admin/settings/register-settings.php:506
|
1456 |
+
#: includes/admin/settings/register-settings.php:512
|
1457 |
+
#: includes/admin/settings/register-settings.php:518
|
1458 |
+
#: includes/admin/settings/register-settings.php:524
|
1459 |
+
#: includes/admin/settings/register-settings.php:530
|
1460 |
+
msgid "enable?"
|
1461 |
+
msgstr ""
|
1462 |
+
|
1463 |
+
#: includes/admin/class-setup-wizard.php:619
|
1464 |
+
#: includes/admin/class-setup-wizard.php:622
|
1465 |
+
#: includes/admin/settings/register-settings.php:505
|
1466 |
+
msgid "WPHeader and WPFooter"
|
1467 |
+
msgstr ""
|
1468 |
+
|
1469 |
+
#: includes/admin/class-setup-wizard.php:611
|
1470 |
+
#: includes/admin/settings/register-settings.php:267
|
1471 |
+
msgid "Publisher Logo should have a wide aspect ratio, not a square icon, it should be no wider than 600px, and no taller than 60px."
|
1472 |
+
msgstr ""
|
1473 |
+
|
1474 |
+
#: includes/admin/class-setup-wizard.php:605
|
1475 |
+
#: includes/admin/class-setup-wizard.php:610
|
1476 |
+
#: includes/admin/settings/register-settings.php:266
|
1477 |
+
msgid "Publisher Logo"
|
1478 |
+
msgstr ""
|
1479 |
+
|
1480 |
+
#: includes/admin/class-setup-wizard.php:595
|
1481 |
+
#: includes/admin/class-setup-wizard.php:598
|
1482 |
+
#: includes/admin/settings/register-settings.php:498
|
1483 |
+
msgid "Contact Page"
|
1484 |
+
msgstr ""
|
1485 |
+
|
1486 |
+
#: includes/admin/class-setup-wizard.php:585
|
1487 |
+
#: includes/admin/class-setup-wizard.php:588
|
1488 |
+
#: includes/admin/settings/register-settings.php:491
|
1489 |
+
msgid "About Page"
|
1490 |
+
msgstr ""
|
1491 |
+
|
1492 |
+
#: includes/admin/class-setup-wizard.php:580
|
1493 |
+
msgid "Automatically, add additional schema.org markups to your website content."
|
1494 |
+
msgstr ""
|
1495 |
+
|
1496 |
+
#: includes/admin/class-setup-wizard.php:578
|
1497 |
+
msgid "Mark Up Your Content"
|
1498 |
+
msgstr ""
|
1499 |
+
|
1500 |
+
#: includes/admin/class-setup-wizard.php:552
|
1501 |
+
#: includes/admin/class-setup-wizard.php:555
|
1502 |
+
#: includes/admin/settings/register-settings.php:411
|
1503 |
+
msgid "Tumblr"
|
1504 |
+
msgstr ""
|
1505 |
+
|
1506 |
+
#: includes/admin/class-setup-wizard.php:540
|
1507 |
+
#: includes/admin/class-setup-wizard.php:543
|
1508 |
+
#: includes/admin/settings/register-settings.php:403
|
1509 |
+
msgid "SoundCloud"
|
1510 |
+
msgstr ""
|
1511 |
+
|
1512 |
+
#: includes/admin/class-setup-wizard.php:528
|
1513 |
+
#: includes/admin/class-setup-wizard.php:531
|
1514 |
+
#: includes/admin/settings/register-settings.php:395
|
1515 |
+
msgid "Pinterest"
|
1516 |
+
msgstr ""
|
1517 |
+
|
1518 |
+
#: includes/admin/class-setup-wizard.php:516
|
1519 |
+
#: includes/admin/class-setup-wizard.php:519
|
1520 |
+
#: includes/admin/settings/register-settings.php:387
|
1521 |
+
msgid "Myspace"
|
1522 |
+
msgstr ""
|
1523 |
+
|
1524 |
+
#: includes/admin/class-setup-wizard.php:507
|
1525 |
+
msgid "Linkedin"
|
1526 |
+
msgstr ""
|
1527 |
+
|
1528 |
+
#: includes/admin/class-setup-wizard.php:504
|
1529 |
+
#: includes/admin/settings/register-settings.php:380
|
1530 |
+
msgid "LinkedIn"
|
1531 |
+
msgstr ""
|
1532 |
+
|
1533 |
+
#: includes/admin/class-setup-wizard.php:492
|
1534 |
+
#: includes/admin/class-setup-wizard.php:495
|
1535 |
+
#: includes/admin/settings/register-settings.php:372
|
1536 |
+
msgid "YouTube"
|
1537 |
+
msgstr ""
|
1538 |
+
|
1539 |
+
#: includes/admin/class-setup-wizard.php:480
|
1540 |
+
#: includes/admin/class-setup-wizard.php:483
|
1541 |
+
#: includes/admin/settings/register-settings.php:364
|
1542 |
+
msgid "Instagram"
|
1543 |
+
msgstr ""
|
1544 |
+
|
1545 |
+
#: includes/admin/class-setup-wizard.php:468
|
1546 |
+
#: includes/admin/class-setup-wizard.php:471
|
1547 |
+
#: includes/admin/settings/register-settings.php:356
|
1548 |
+
msgid "Google+"
|
1549 |
+
msgstr ""
|
1550 |
+
|
1551 |
+
#: includes/admin/class-setup-wizard.php:456
|
1552 |
+
#: includes/admin/class-setup-wizard.php:459
|
1553 |
+
#: includes/admin/settings/register-settings.php:348
|
1554 |
+
msgid "Twitter"
|
1555 |
+
msgstr ""
|
1556 |
+
|
1557 |
+
#: includes/admin/class-setup-wizard.php:444
|
1558 |
+
#: includes/admin/class-setup-wizard.php:447
|
1559 |
+
#: includes/admin/settings/register-settings.php:340
|
1560 |
+
msgid "Facebook"
|
1561 |
+
msgstr ""
|
1562 |
+
|
1563 |
+
#: includes/admin/class-setup-wizard.php:439
|
1564 |
+
msgid "Knowledge panels prominently display your social profile information in some Google Search results."
|
1565 |
+
msgstr ""
|
1566 |
+
|
1567 |
+
#: includes/admin/class-setup-wizard.php:437
|
1568 |
+
#: includes/admin/settings/register-settings.php:335
|
1569 |
+
msgid "Provide your social profile information to a Google Knowledge panel."
|
1570 |
+
msgstr ""
|
1571 |
+
|
1572 |
+
#: includes/admin/class-setup-wizard.php:412
|
1573 |
+
#: includes/admin/class-setup-wizard.php:611
|
1574 |
+
#: includes/admin/settings/register-settings.php:267
|
1575 |
+
#: includes/admin/settings/register-settings.php:322
|
1576 |
+
msgid "Logo guidelines"
|
1577 |
+
msgstr ""
|
1578 |
+
|
1579 |
+
#: includes/admin/class-setup-wizard.php:412
|
1580 |
+
#: includes/admin/settings/register-settings.php:322
|
1581 |
+
msgid "Specify the image of your organization's logo to be used in Google Search results and in the Knowledge Graph.<br />Learn more about"
|
1582 |
+
msgstr ""
|
1583 |
+
|
1584 |
+
#: includes/admin/class-setup-wizard.php:411
|
1585 |
+
#: includes/admin/settings/register-settings.php:321
|
1586 |
+
msgid "Logo"
|
1587 |
+
msgstr ""
|
1588 |
+
|
1589 |
+
#: includes/admin/class-setup-wizard.php:406
|
1590 |
+
msgid "Organization Logo"
|
1591 |
+
msgstr ""
|
1592 |
+
|
1593 |
+
#: includes/admin/class-setup-wizard.php:394
|
1594 |
+
#: includes/admin/class-setup-wizard.php:397
|
1595 |
+
#: includes/admin/post-type/schema-columns.php:19
|
1596 |
+
#: includes/admin/settings/register-settings.php:303
|
1597 |
+
msgid "Name"
|
1598 |
+
msgstr ""
|
1599 |
+
|
1600 |
+
#: includes/admin/class-setup-wizard.php:383
|
1601 |
+
msgid "Organization or Person?"
|
1602 |
+
msgstr ""
|
1603 |
+
|
1604 |
+
#: includes/admin/class-setup-wizard.php:380
|
1605 |
+
#: includes/admin/settings/register-settings.php:289
|
1606 |
+
msgid "This Website Represent"
|
1607 |
+
msgstr ""
|
1608 |
+
|
1609 |
+
#: includes/admin/class-setup-wizard.php:375
|
1610 |
+
#: includes/admin/settings/register-settings.php:283
|
1611 |
+
msgid "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."
|
1612 |
+
msgstr ""
|
1613 |
+
|
1614 |
+
#: includes/admin/class-setup-wizard.php:373
|
1615 |
+
msgid "Does your site represent a Person or Organization?"
|
1616 |
+
msgstr ""
|
1617 |
+
|
1618 |
+
#: includes/admin/class-setup-wizard.php:371
|
1619 |
+
#: includes/admin/settings/register-settings.php:282
|
1620 |
+
msgid "Person or Organization"
|
1621 |
+
msgstr ""
|
1622 |
+
|
1623 |
+
#: includes/admin/class-setup-wizard.php:359
|
1624 |
+
#: includes/admin/class-setup-wizard.php:422
|
1625 |
+
#: includes/admin/class-setup-wizard.php:566
|
1626 |
+
#: includes/admin/class-setup-wizard.php:666
|
1627 |
+
msgid "Skip this step"
|
1628 |
+
msgstr ""
|
1629 |
+
|
1630 |
+
#: includes/admin/class-setup-wizard.php:358
|
1631 |
+
#: includes/admin/class-setup-wizard.php:421
|
1632 |
+
#: includes/admin/class-setup-wizard.php:565
|
1633 |
+
#: includes/admin/class-setup-wizard.php:665
|
1634 |
+
msgid "Continue"
|
1635 |
+
msgstr ""
|
1636 |
+
|
1637 |
+
#: includes/admin/class-setup-wizard.php:325
|
1638 |
+
msgid "This information can help us to prioritize future additions to our plugin for specific types of sites"
|
1639 |
+
msgstr ""
|
1640 |
+
|
1641 |
+
#: includes/admin/class-setup-wizard.php:323
|
1642 |
+
msgid "What is your site about?"
|
1643 |
+
msgstr ""
|
1644 |
+
|
1645 |
+
#: includes/admin/class-setup-wizard.php:311
|
1646 |
+
msgid "Not right now"
|
1647 |
+
msgstr ""
|
1648 |
+
|
1649 |
+
#: includes/admin/class-setup-wizard.php:310
|
1650 |
+
msgid "Let's Go!"
|
1651 |
+
msgstr ""
|
1652 |
+
|
1653 |
+
#: includes/admin/class-setup-wizard.php:308
|
1654 |
+
msgid "No time right now? If you don’t want to go through the wizard, you can skip and return to the WordPress dashboard. Come back anytime if you change your mind!"
|
1655 |
+
msgstr ""
|
1656 |
+
|
1657 |
+
#: includes/admin/class-setup-wizard.php:307
|
1658 |
+
msgid "Thank you for choosing Schema to power your website! This quick setup wizard will help you configure the basic settings. <strong>It’s completely optional and shouldn’t take longer than two minutes.</strong>"
|
1659 |
+
msgstr ""
|
1660 |
+
|
1661 |
+
#: includes/admin/class-setup-wizard.php:306
|
1662 |
+
msgid "Welcome to Schema!"
|
1663 |
+
msgstr ""
|
1664 |
+
|
1665 |
+
#: includes/admin/class-setup-wizard.php:245
|
1666 |
+
msgid "Return to the WordPress Dashboard"
|
1667 |
+
msgstr ""
|
1668 |
+
|
1669 |
+
#: includes/admin/class-setup-wizard.php:178
|
1670 |
+
msgid "Schema › Setup Wizard"
|
1671 |
+
msgstr ""
|
1672 |
+
|
1673 |
+
#: includes/admin/class-setup-wizard.php:141
|
1674 |
+
msgid "Ready!"
|
1675 |
+
msgstr ""
|
1676 |
+
|
1677 |
+
#: includes/admin/class-setup-wizard.php:136
|
1678 |
+
#: includes/admin/settings/register-settings.php:751
|
1679 |
+
msgid "Schemas"
|
1680 |
+
msgstr ""
|
1681 |
+
|
1682 |
+
#: includes/admin/class-setup-wizard.php:131
|
1683 |
+
#: includes/admin/class-setup-wizard.php:435
|
1684 |
+
#: includes/admin/settings/register-settings.php:334
|
1685 |
+
#: includes/admin/settings/register-settings.php:814
|
1686 |
+
msgid "Social Profiles"
|
1687 |
+
msgstr ""
|
1688 |
+
|
1689 |
+
#: includes/admin/class-setup-wizard.php:126
|
1690 |
+
#: includes/admin/class-welcome.php:212
|
1691 |
+
#: includes/admin/settings/contextual-help.php:38
|
1692 |
+
#: includes/admin/settings/register-settings.php:749
|
1693 |
+
msgid "General"
|
1694 |
+
msgstr ""
|
1695 |
+
|
1696 |
+
#: includes/admin/class-setup-wizard.php:121
|
1697 |
+
#: includes/admin/class-setup-wizard.php:321
|
1698 |
+
#: includes/admin/class-setup-wizard.php:333
|
1699 |
+
#: includes/admin/settings/register-settings.php:241
|
1700 |
+
msgid "Site Type"
|
1701 |
+
msgstr ""
|
1702 |
+
|
1703 |
+
#: includes/admin/class-setup-wizard.php:116
|
1704 |
+
msgid "Introduction"
|
1705 |
+
msgstr ""
|
1706 |
+
|
1707 |
+
#: includes/admin/class-setup-wizard.php:82 includes/admin/scripts.php:25
|
1708 |
+
msgid "We are sorry but your browser is not compatible with this kind of file upload. Please upgrade your browser."
|
1709 |
+
msgstr ""
|
1710 |
+
|
1711 |
+
#: includes/admin/class-setup-wizard.php:80
|
1712 |
+
#: includes/admin/meta-tax/class-meta-tax.php:379
|
1713 |
+
#: includes/admin/meta-tax/class-meta-tax.php:426 includes/admin/scripts.php:23
|
1714 |
+
msgid "Remove"
|
1715 |
+
msgstr ""
|
1716 |
+
|
1717 |
+
#: includes/admin/class-setup-wizard.php:79 includes/admin/scripts.php:22
|
1718 |
+
msgid "Use This File"
|
1719 |
+
msgstr ""
|
1720 |
+
|
1721 |
+
#: includes/admin/class-setup-wizard.php:61
|
1722 |
+
msgctxt "enhanced select"
|
1723 |
+
msgid "Searching…"
|
1724 |
+
msgstr ""
|
1725 |
+
|
1726 |
+
#: includes/admin/class-setup-wizard.php:60
|
1727 |
+
msgctxt "enhanced select"
|
1728 |
+
msgid "Loading more results…"
|
1729 |
+
msgstr ""
|
1730 |
+
|
1731 |
+
#: includes/admin/class-setup-wizard.php:59
|
1732 |
+
msgctxt "enhanced select"
|
1733 |
+
msgid "You can only select %qty% items"
|
1734 |
+
msgstr ""
|
1735 |
+
|
1736 |
+
#: includes/admin/class-setup-wizard.php:58
|
1737 |
+
msgctxt "enhanced select"
|
1738 |
+
msgid "You can only select 1 item"
|
1739 |
+
msgstr ""
|
1740 |
+
|
1741 |
+
#: includes/admin/class-setup-wizard.php:57
|
1742 |
+
msgctxt "enhanced select"
|
1743 |
+
msgid "Please delete %qty% characters"
|
1744 |
+
msgstr ""
|
1745 |
+
|
1746 |
+
#: includes/admin/class-setup-wizard.php:56
|
1747 |
+
msgctxt "enhanced select"
|
1748 |
+
msgid "Please delete 1 character"
|
1749 |
+
msgstr ""
|
1750 |
+
|
1751 |
+
#: includes/admin/class-setup-wizard.php:55
|
1752 |
+
msgctxt "enhanced select"
|
1753 |
+
msgid "Please enter %qty% or more characters"
|
1754 |
+
msgstr ""
|
1755 |
+
|
1756 |
+
#: includes/admin/class-setup-wizard.php:54
|
1757 |
+
msgctxt "enhanced select"
|
1758 |
+
msgid "Please enter 1 or more characters"
|
1759 |
+
msgstr ""
|
1760 |
+
|
1761 |
+
#: includes/admin/class-setup-wizard.php:53
|
1762 |
+
msgctxt "enhanced select"
|
1763 |
+
msgid "Loading failed"
|
1764 |
+
msgstr ""
|
1765 |
+
|
1766 |
+
#: includes/admin/class-setup-wizard.php:52
|
1767 |
+
msgctxt "enhanced select"
|
1768 |
+
msgid "No matches found"
|
1769 |
+
msgstr ""
|
1770 |
+
|
1771 |
+
#: includes/admin/class-setup-wizard.php:51
|
1772 |
+
msgctxt "enhanced select"
|
1773 |
+
msgid "%qty% results are available, use up and down arrow keys to navigate."
|
1774 |
+
msgstr ""
|
1775 |
+
|
1776 |
+
#: includes/admin/class-setup-wizard.php:50
|
1777 |
+
msgctxt "enhanced select"
|
1778 |
+
msgid "One result is available, press enter to select it."
|
1779 |
+
msgstr ""
|
1780 |
+
|
1781 |
+
#: includes/admin/class-notices.php:50
|
1782 |
+
#: includes/admin/updater/class-license-handler.php:319
|
1783 |
+
#: includes/admin/updater/class-updater.php:402
|
1784 |
+
msgid "Error"
|
1785 |
+
msgstr ""
|
1786 |
+
|
1787 |
+
#: includes/admin/class-notices.php:50
|
1788 |
+
msgid "Security check failed"
|
1789 |
+
msgstr ""
|
1790 |
+
|
1791 |
+
#: includes/admin/class-notices.php:29
|
1792 |
+
msgid "Settings successfully imported"
|
1793 |
+
msgstr ""
|
1794 |
+
|
1795 |
+
#: includes/admin/class-notices.php:17
|
1796 |
+
#: includes/admin/settings/register-settings.php:645
|
1797 |
+
msgid "Settings updated."
|
1798 |
+
msgstr ""
|
1799 |
+
|
1800 |
+
#: includes/admin/class-menu.php:78 includes/admin/class-menu.php:79
|
1801 |
+
msgid "About"
|
1802 |
+
msgstr ""
|
1803 |
+
|
1804 |
+
#: includes/admin/class-menu.php:66 includes/admin/class-menu.php:67
|
1805 |
+
#: includes/admin/settings/contextual-help.php:56
|
1806 |
+
#: includes/admin/settings/register-settings.php:754
|
1807 |
+
msgid "Extensions"
|
1808 |
+
msgstr ""
|
1809 |
+
|
1810 |
+
#: includes/admin/class-menu.php:55 includes/admin/class-menu.php:56
|
1811 |
+
msgid "Types"
|
1812 |
+
msgstr ""
|
1813 |
+
|
1814 |
+
#: includes/admin/class-menu.php:39
|
1815 |
+
msgid "Settings"
|
1816 |
+
msgstr ""
|
1817 |
+
|
1818 |
+
#: includes/admin/class-menu.php:38 includes/admin/meta.php:271
|
1819 |
+
msgid "Schema Settings"
|
1820 |
+
msgstr ""
|
1821 |
+
|
1822 |
+
#. #-#-#-#-# schema-code.pot (Schema 1.7) #-#-#-#-#
|
1823 |
+
#. Plugin Name of the plugin/theme
|
1824 |
+
#: includes/admin/class-feedback.php:289 includes/admin/class-menu.php:29
|
1825 |
+
#: includes/admin/class-menu.php:30 includes/admin/meta-tax.php:25
|
1826 |
+
#: includes/admin/meta.php:149 includes/admin/settings/display-settings.php:65
|
1827 |
+
#: includes/extensions/post-meta-generator.php:160
|
1828 |
+
msgid "Schema"
|
1829 |
+
msgstr ""
|
1830 |
+
|
1831 |
+
#: includes/admin/class-feedback.php:241
|
1832 |
+
msgid "No thanks"
|
1833 |
+
msgstr ""
|
1834 |
+
|
1835 |
+
#: includes/admin/class-feedback.php:238
|
1836 |
+
msgid "Leave Feedback"
|
1837 |
+
msgstr ""
|
1838 |
+
|
1839 |
+
#: includes/admin/class-feedback.php:232
|
1840 |
+
msgid "your feedback"
|
1841 |
+
msgstr ""
|
1842 |
+
|
1843 |
+
#: includes/admin/class-feedback.php:232
|
1844 |
+
msgid "Let us know what you think about the plugin, what is missing, and how we can make it better. Leave us a review with"
|
1845 |
+
msgstr ""
|
1846 |
+
|
1847 |
+
#: includes/admin/class-feedback.php:230
|
1848 |
+
msgid "You have been using the %s plugin for %s now!"
|
1849 |
+
msgstr ""
|
1850 |
+
|
1851 |
+
#: includes/admin/class-feedback.php:228
|
1852 |
+
msgid "How do you like Schema?"
|
1853 |
+
msgstr ""
|
1854 |
+
|
1855 |
+
#: includes/admin/class-feedback.php:100
|
1856 |
+
msgid "a second"
|
1857 |
+
msgstr ""
|
1858 |
+
|
1859 |
+
#: includes/admin/class-feedback.php:98
|
1860 |
+
msgid "%s seconds"
|
1861 |
+
msgstr ""
|
1862 |
+
|
1863 |
+
#: includes/admin/class-feedback.php:92
|
1864 |
+
msgid "a minute"
|
1865 |
+
msgstr ""
|
1866 |
+
|
1867 |
+
#: includes/admin/class-feedback.php:90
|
1868 |
+
msgid "%s minutes"
|
1869 |
+
msgstr ""
|
1870 |
+
|
1871 |
+
#: includes/admin/class-feedback.php:84
|
1872 |
+
msgid "an hour"
|
1873 |
+
msgstr ""
|
1874 |
+
|
1875 |
+
#: includes/admin/class-feedback.php:82
|
1876 |
+
msgid "%s hours"
|
1877 |
+
msgstr ""
|
1878 |
+
|
1879 |
+
#: includes/admin/class-feedback.php:76
|
1880 |
+
msgid "a day"
|
1881 |
+
msgstr ""
|
1882 |
+
|
1883 |
+
#: includes/admin/class-feedback.php:74
|
1884 |
+
msgid "%s days"
|
1885 |
+
msgstr ""
|
1886 |
+
|
1887 |
+
#: includes/admin/class-feedback.php:68
|
1888 |
+
msgid "a week"
|
1889 |
+
msgstr ""
|
1890 |
+
|
1891 |
+
#: includes/admin/class-feedback.php:66
|
1892 |
+
msgid "%s weeks"
|
1893 |
+
msgstr ""
|
1894 |
+
|
1895 |
+
#: includes/admin/class-feedback.php:60
|
1896 |
+
msgid "a year"
|
1897 |
+
msgstr ""
|
1898 |
+
|
1899 |
+
#: includes/admin/class-feedback.php:58
|
1900 |
+
msgid "%s years"
|
1901 |
+
msgstr ""
|
1902 |
+
|
1903 |
+
#: includes/admin/admin-functions.php:163
|
1904 |
+
msgid "Package Tracking"
|
1905 |
+
msgstr ""
|
1906 |
+
|
1907 |
+
#: includes/admin/admin-functions.php:162
|
1908 |
+
msgid "Roadside Assistance"
|
1909 |
+
msgstr ""
|
1910 |
+
|
1911 |
+
#: includes/admin/admin-functions.php:161
|
1912 |
+
msgid "Baggage Tracking"
|
1913 |
+
msgstr ""
|
1914 |
+
|
1915 |
+
#: includes/admin/admin-functions.php:160
|
1916 |
+
msgid "Emergency"
|
1917 |
+
msgstr ""
|
1918 |
+
|
1919 |
+
#: includes/admin/admin-functions.php:159
|
1920 |
+
msgid "Credit Card Support"
|
1921 |
+
msgstr ""
|
1922 |
+
|
1923 |
+
#: includes/admin/admin-functions.php:158
|
1924 |
+
msgid "Reservations"
|
1925 |
+
msgstr ""
|
1926 |
+
|
1927 |
+
#: includes/admin/admin-functions.php:157
|
1928 |
+
msgid "Sales"
|
1929 |
+
msgstr ""
|
1930 |
+
|
1931 |
+
#: includes/admin/admin-functions.php:156
|
1932 |
+
msgid "Bill Payment"
|
1933 |
+
msgstr ""
|
1934 |
+
|
1935 |
+
#: includes/admin/admin-functions.php:155
|
1936 |
+
msgid "Billing Support"
|
1937 |
+
msgstr ""
|
1938 |
+
|
1939 |
+
#: includes/admin/admin-functions.php:154
|
1940 |
+
msgid "Technical Support"
|
1941 |
+
msgstr ""
|
1942 |
+
|
1943 |
+
#: includes/admin/admin-functions.php:153
|
1944 |
+
msgid "Customer Support"
|
1945 |
+
msgstr ""
|
1946 |
+
|
1947 |
+
#: includes/admin/admin-bar-menu.php:43
|
1948 |
+
msgid "_blank"
|
1949 |
+
msgstr ""
|
1950 |
+
|
1951 |
+
#: includes/admin/admin-bar-menu.php:41
|
1952 |
+
msgid "Structured Data Testing Tool"
|
1953 |
+
msgstr ""
|
languages/schema-wp-sv.po
ADDED
@@ -0,0 +1,1953 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of Plugins - Schema - Stable (latest release) in Swedish
|
2 |
+
# This file is distributed under the same license as the Plugins - Schema - Stable (latest release) package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2019-09-27 18:47:02+0000\n"
|
6 |
+
"MIME-Version: 1.0\n"
|
7 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
+
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: GlotPress/2.4.0-alpha\n"
|
11 |
+
"Language: sv_SE\n"
|
12 |
+
"Project-Id-Version: Plugins - Schema - Stable (latest release)\n"
|
13 |
+
|
14 |
+
#. Author URI of the plugin/theme
|
15 |
+
msgid "http://zebida.com"
|
16 |
+
msgstr "http://zebida.com"
|
17 |
+
|
18 |
+
#. Author of the plugin/theme
|
19 |
+
msgid "Hesham"
|
20 |
+
msgstr "Hesham"
|
21 |
+
|
22 |
+
#. Description of the plugin/theme
|
23 |
+
msgid "The next generation of Structured Data."
|
24 |
+
msgstr ""
|
25 |
+
|
26 |
+
#. Plugin URI of the plugin/theme
|
27 |
+
msgid "https://schema.press"
|
28 |
+
msgstr "https://schema.press"
|
29 |
+
|
30 |
+
#: schema.php:143
|
31 |
+
msgid "Your version of PHP is below the minimum version of PHP required by Schema plugin. Please contact your host and request that your version be upgraded to 5.4 or later."
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
#: schema.php:120 schema.php:132
|
35 |
+
msgid "Cheatin’ huh?"
|
36 |
+
msgstr "Fuskar du, va?"
|
37 |
+
|
38 |
+
#: includes/misc-functions.php:657
|
39 |
+
msgid "Egyptian Pound"
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: includes/misc-functions.php:656
|
43 |
+
msgid "Vietnamese Dong"
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: includes/misc-functions.php:655
|
47 |
+
msgid "US Dollars"
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: includes/misc-functions.php:654
|
51 |
+
msgid "Turkish Lira"
|
52 |
+
msgstr ""
|
53 |
+
|
54 |
+
#: includes/misc-functions.php:653
|
55 |
+
msgid "Thai Baht"
|
56 |
+
msgstr ""
|
57 |
+
|
58 |
+
#: includes/misc-functions.php:652
|
59 |
+
msgid "Taiwan New Dollars"
|
60 |
+
msgstr ""
|
61 |
+
|
62 |
+
#: includes/misc-functions.php:651
|
63 |
+
msgid "Swiss Franc"
|
64 |
+
msgstr ""
|
65 |
+
|
66 |
+
#: includes/misc-functions.php:650
|
67 |
+
msgid "Swedish Krona"
|
68 |
+
msgstr ""
|
69 |
+
|
70 |
+
#: includes/misc-functions.php:649
|
71 |
+
msgid "South African rand"
|
72 |
+
msgstr ""
|
73 |
+
|
74 |
+
#: includes/misc-functions.php:648
|
75 |
+
msgid "Singapore Dollar"
|
76 |
+
msgstr ""
|
77 |
+
|
78 |
+
#: includes/misc-functions.php:647
|
79 |
+
msgid "Russian Ruble"
|
80 |
+
msgstr ""
|
81 |
+
|
82 |
+
#: includes/misc-functions.php:646
|
83 |
+
msgid "Romanian Leu"
|
84 |
+
msgstr ""
|
85 |
+
|
86 |
+
#: includes/misc-functions.php:645
|
87 |
+
msgid "Pounds Sterling"
|
88 |
+
msgstr ""
|
89 |
+
|
90 |
+
#: includes/misc-functions.php:644
|
91 |
+
msgid "Polish Zloty"
|
92 |
+
msgstr ""
|
93 |
+
|
94 |
+
#: includes/misc-functions.php:643
|
95 |
+
msgid "Philippine Pesos"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: includes/misc-functions.php:642
|
99 |
+
msgid "Paraguayan Guaraní"
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: includes/misc-functions.php:641
|
103 |
+
msgid "New Zealand Dollar"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: includes/misc-functions.php:640
|
107 |
+
msgid "Norwegian Krone"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: includes/misc-functions.php:639
|
111 |
+
msgid "Nigerian Naira"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: includes/misc-functions.php:638
|
115 |
+
msgid "Mexican Peso"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: includes/misc-functions.php:637
|
119 |
+
msgid "Malaysian Ringgits"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: includes/misc-functions.php:636
|
123 |
+
msgid "South Korean Won"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: includes/misc-functions.php:635
|
127 |
+
msgid "Lao Kip"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: includes/misc-functions.php:634
|
131 |
+
msgid "Japanese Yen"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: includes/misc-functions.php:633
|
135 |
+
msgid "Israeli Shekel"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: includes/misc-functions.php:632
|
139 |
+
msgid "Nepali Rupee"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: includes/misc-functions.php:631
|
143 |
+
msgid "Indian Rupee"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: includes/misc-functions.php:630
|
147 |
+
msgid "Indonesia Rupiah"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: includes/misc-functions.php:629
|
151 |
+
msgid "Icelandic krona"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: includes/misc-functions.php:628
|
155 |
+
msgid "Hungarian Forint"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: includes/misc-functions.php:627
|
159 |
+
msgid "Croatia kuna"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: includes/misc-functions.php:626
|
163 |
+
msgid "Hong Kong Dollar"
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: includes/misc-functions.php:625
|
167 |
+
msgid "Euros"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: includes/misc-functions.php:624
|
171 |
+
msgid "Dominican Peso"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: includes/misc-functions.php:623
|
175 |
+
msgid "Danish Krone"
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: includes/misc-functions.php:622
|
179 |
+
msgid "Czech Koruna"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: includes/misc-functions.php:621
|
183 |
+
msgid "Colombian Peso"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: includes/misc-functions.php:620
|
187 |
+
msgid "Chinese Yuan"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: includes/misc-functions.php:619
|
191 |
+
msgid "Chilean Peso"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: includes/misc-functions.php:618
|
195 |
+
msgid "Canadian Dollars"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: includes/misc-functions.php:617
|
199 |
+
msgid "Bulgarian Lev"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: includes/misc-functions.php:616
|
203 |
+
msgid "Brazilian Real"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: includes/misc-functions.php:615
|
207 |
+
msgid "Bangladeshi Taka"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: includes/misc-functions.php:614
|
211 |
+
msgid "Australian Dollars"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: includes/json/web-page-element.php:128
|
215 |
+
msgid "Search Results for “%s”"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: includes/json/web-page-element.php:76
|
219 |
+
msgid "It looks like nothing was found at this location!"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: includes/json/web-page-element.php:75
|
223 |
+
msgid "Page not found"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: includes/json/tag.php:84
|
227 |
+
msgid " Tag"
|
228 |
+
msgstr " etikett"
|
229 |
+
|
230 |
+
#: includes/json/category.php:108
|
231 |
+
msgid " Category"
|
232 |
+
msgstr " kategori"
|
233 |
+
|
234 |
+
#: includes/integrations/yoast-seo.php:81
|
235 |
+
msgid "These are the features that will be disabled:<br /><ol><li>Organization/Person</li><li>Social Profiles</li><li>Breadcrumb</li><li>Sitelink Search Box</li></ol>"
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: includes/integrations/yoast-seo.php:81
|
239 |
+
msgid "Schema plugin will override Yoast SEO output to avoid markup duplication."
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: includes/integrations/yoast-seo.php:78
|
243 |
+
msgid "Yes"
|
244 |
+
msgstr "Ja"
|
245 |
+
|
246 |
+
#: includes/integrations/yoast-seo.php:77
|
247 |
+
msgid "Disable Duplicate Features that Yoast SEO Offers?"
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: includes/integrations/genesis.php:112
|
251 |
+
msgid "Search"
|
252 |
+
msgstr "Sök"
|
253 |
+
|
254 |
+
#: includes/integrations/genesis.php:110 includes/integrations/genesis.php:129
|
255 |
+
msgid "Search this website"
|
256 |
+
msgstr "Sök på denna webbplats"
|
257 |
+
|
258 |
+
#: includes/install.php:88
|
259 |
+
msgid "Page"
|
260 |
+
msgstr "Sida"
|
261 |
+
|
262 |
+
#: includes/install.php:45
|
263 |
+
msgid "Post"
|
264 |
+
msgstr "Inlägg"
|
265 |
+
|
266 |
+
#: includes/extensions/video-object.php:123
|
267 |
+
msgid "Video short description."
|
268 |
+
msgstr ""
|
269 |
+
|
270 |
+
#: includes/extensions/video-object.php:116
|
271 |
+
msgid "Video duration, example: if duration is 1 Hour 35 MIN, use: PT1H35M"
|
272 |
+
msgstr ""
|
273 |
+
|
274 |
+
#: includes/extensions/video-object.php:109
|
275 |
+
msgid "Video upload date in ISO 8601 format YYYY-MM-DD example: 2016-06-23"
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
+
#: includes/extensions/video-object.php:102
|
279 |
+
msgid "Video title"
|
280 |
+
msgstr ""
|
281 |
+
|
282 |
+
#: includes/extensions/video-object.php:96
|
283 |
+
msgid "You have enabled VideoObject, if you see an error in the <a target=\"_blank\" href=\"https://search.google.com/structured-data/testing-tool\">testing tool</a>, use the fields below to fill the missing fields, correct markup errors, and add additional details about the video embedded in your content editor."
|
284 |
+
msgstr ""
|
285 |
+
|
286 |
+
#: includes/extensions/video-object.php:52
|
287 |
+
msgid "Multiple videos"
|
288 |
+
msgstr "Flera videoklipp"
|
289 |
+
|
290 |
+
#: includes/extensions/video-object.php:48
|
291 |
+
msgid "Single video"
|
292 |
+
msgstr ""
|
293 |
+
|
294 |
+
#: includes/extensions/video-object.php:39
|
295 |
+
msgid "Note: You can enable markups to multiple videos on the same page. However, this may slow down your site, make sure your site is hosted on a reliable web host and cache your site pages by a good caching plugin. (Recommended setting: Single Video)"
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: includes/extensions/video-object.php:38
|
299 |
+
msgid "Select video markup type."
|
300 |
+
msgstr ""
|
301 |
+
|
302 |
+
#: includes/extensions/video-object.php:37
|
303 |
+
msgid "Video Markups"
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: includes/extensions/sameAs.php:74
|
307 |
+
msgid "sameAs"
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: includes/extensions/sameAs.php:41
|
311 |
+
msgid "Enter sameAs URLs, one per line."
|
312 |
+
msgstr ""
|
313 |
+
|
314 |
+
#: includes/extensions/sameAs.php:39
|
315 |
+
msgid "URLs"
|
316 |
+
msgstr "URL:er"
|
317 |
+
|
318 |
+
#: includes/extensions/audio-object.php:122
|
319 |
+
msgid "Audio short description."
|
320 |
+
msgstr ""
|
321 |
+
|
322 |
+
#: includes/extensions/audio-object.php:115
|
323 |
+
msgid "Audio duration, example: if duration is 1 Hour 35 MIN, use: PT1H35M"
|
324 |
+
msgstr ""
|
325 |
+
|
326 |
+
#: includes/extensions/audio-object.php:114
|
327 |
+
#: includes/extensions/video-object.php:115
|
328 |
+
msgid "Duration"
|
329 |
+
msgstr "Varaktighet"
|
330 |
+
|
331 |
+
#: includes/extensions/audio-object.php:108
|
332 |
+
msgid "Audio upload date in ISO 8601 format YYYY-MM-DD example: 2016-06-23"
|
333 |
+
msgstr ""
|
334 |
+
|
335 |
+
#: includes/extensions/audio-object.php:107
|
336 |
+
#: includes/extensions/video-object.php:108
|
337 |
+
msgid "Upload Date"
|
338 |
+
msgstr "Uppladdningsdatum"
|
339 |
+
|
340 |
+
#: includes/extensions/audio-object.php:101
|
341 |
+
msgid "Audio title"
|
342 |
+
msgstr ""
|
343 |
+
|
344 |
+
#: includes/extensions/audio-object.php:95
|
345 |
+
msgid "You have enabled AudioObject, if you see an error in the <a target=\"_blank\" href=\"https://search.google.com/structured-data/testing-tool\">testing tool</a>, use the fields below to fill the missing fields, correct markup errors, and add additional details about the audio embedded in your content editor."
|
346 |
+
msgstr ""
|
347 |
+
|
348 |
+
#: includes/extensions/audio-object.php:51
|
349 |
+
msgid "Multiple audios"
|
350 |
+
msgstr ""
|
351 |
+
|
352 |
+
#: includes/extensions/audio-object.php:47
|
353 |
+
msgid "Single audio"
|
354 |
+
msgstr ""
|
355 |
+
|
356 |
+
#: includes/extensions/audio-object.php:43
|
357 |
+
#: includes/extensions/video-object.php:44
|
358 |
+
msgid "None"
|
359 |
+
msgstr ""
|
360 |
+
|
361 |
+
#: includes/extensions/audio-object.php:38
|
362 |
+
msgid "Note: You can enable markups to multiple audios on the same page. However, this may slow down your site, make sure your site is hosted on a reliable web host and cache your site pages by a good caching plugin. (Recommended setting: Single Audio)"
|
363 |
+
msgstr ""
|
364 |
+
|
365 |
+
#: includes/extensions/audio-object.php:37
|
366 |
+
msgid "Select audio markup type."
|
367 |
+
msgstr ""
|
368 |
+
|
369 |
+
#: includes/extensions/audio-object.php:36
|
370 |
+
msgid "Audio Markups"
|
371 |
+
msgstr ""
|
372 |
+
|
373 |
+
#: includes/class-capabilities.php:36
|
374 |
+
msgid "Manage Schema Options"
|
375 |
+
msgstr ""
|
376 |
+
|
377 |
+
#: includes/admin/updater/class-updater.php:402
|
378 |
+
msgid "You do not have permission to install plugin updates"
|
379 |
+
msgstr ""
|
380 |
+
|
381 |
+
#: includes/admin/updater/class-updater.php:212
|
382 |
+
msgid "There is a new version of %1$s available. %2$sView version %3$s details%4$s or %5$supdate now%6$s."
|
383 |
+
msgstr ""
|
384 |
+
|
385 |
+
#: includes/admin/updater/class-updater.php:204
|
386 |
+
msgid "There is a new version of %1$s available. %2$sView version %3$s details%4$s."
|
387 |
+
msgstr ""
|
388 |
+
|
389 |
+
#: includes/admin/updater/class-license-handler.php:475
|
390 |
+
msgid "Enter valid license key for automatic updates."
|
391 |
+
msgstr ""
|
392 |
+
|
393 |
+
#: includes/admin/updater/class-license-handler.php:436
|
394 |
+
msgid "You have invalid or expired license keys for Schema. Please go to the <a href=\"%s\">Licenses page</a> to correct this issue."
|
395 |
+
msgstr ""
|
396 |
+
|
397 |
+
#: includes/admin/updater/class-license-handler.php:319
|
398 |
+
msgid "Nonce verification failed"
|
399 |
+
msgstr ""
|
400 |
+
|
401 |
+
#: includes/admin/updater/class-license-handler.php:204
|
402 |
+
msgid "Enter your extension license keys here to receive updates for purchased extensions. If your license key has expired, please <a href=\"%s\" target=\"_blank\">renew your license</a>."
|
403 |
+
msgstr ""
|
404 |
+
|
405 |
+
#: includes/admin/updater/class-license-handler.php:168
|
406 |
+
msgid "%1$s"
|
407 |
+
msgstr "%1$s"
|
408 |
+
|
409 |
+
#: includes/admin/settings/register-settings.php:1554
|
410 |
+
msgid "Deactivate License"
|
411 |
+
msgstr "Inaktivera licens"
|
412 |
+
|
413 |
+
#: includes/admin/settings/register-settings.php:1543
|
414 |
+
msgid "To receive updates, please enter your valid %s license key."
|
415 |
+
msgstr ""
|
416 |
+
|
417 |
+
#: includes/admin/settings/register-settings.php:1525
|
418 |
+
msgid "Your license key expires on %s."
|
419 |
+
msgstr ""
|
420 |
+
|
421 |
+
#: includes/admin/settings/register-settings.php:1515
|
422 |
+
msgid "Your license key expires soon! It expires on %s. <a href=\"%s\" target=\"_blank\">Renew your license key</a>."
|
423 |
+
msgstr ""
|
424 |
+
|
425 |
+
#: includes/admin/settings/register-settings.php:1508
|
426 |
+
msgid "License key never expires."
|
427 |
+
msgstr ""
|
428 |
+
|
429 |
+
#: includes/admin/settings/register-settings.php:1482
|
430 |
+
msgid "Your license key has reached its activation limit. <a href=\"%s\">View possible upgrades</a> now."
|
431 |
+
msgstr ""
|
432 |
+
|
433 |
+
#: includes/admin/settings/register-settings.php:1473
|
434 |
+
msgid "This appears to be an invalid license key for %s."
|
435 |
+
msgstr ""
|
436 |
+
|
437 |
+
#: includes/admin/settings/register-settings.php:1461
|
438 |
+
msgid "Your %s is not active for this URL. Please <a href=\"%s\" target=\"_blank\">visit your account page</a> to manage your license key URLs."
|
439 |
+
msgstr ""
|
440 |
+
|
441 |
+
#: includes/admin/settings/register-settings.php:1448
|
442 |
+
msgid "Invalid license. Please <a href=\"%s\" target=\"_blank\">visit your account page</a> and verify it."
|
443 |
+
msgstr ""
|
444 |
+
|
445 |
+
#: includes/admin/settings/register-settings.php:1436
|
446 |
+
msgid "Your license key has been disabled. Please <a href=\"%s\" target=\"_blank\">contact support</a> for more information."
|
447 |
+
msgstr ""
|
448 |
+
|
449 |
+
#: includes/admin/settings/register-settings.php:1423
|
450 |
+
msgid "Your license key expired on %s. Please <a href=\"%s\" target=\"_blank\">renew your license key</a>."
|
451 |
+
msgstr ""
|
452 |
+
|
453 |
+
#: includes/admin/settings/register-settings.php:1271
|
454 |
+
#: includes/admin/settings/register-settings.php:1301
|
455 |
+
msgid "Upload File"
|
456 |
+
msgstr "Ladda upp fil"
|
457 |
+
|
458 |
+
#: includes/admin/settings/register-settings.php:1124
|
459 |
+
msgid "The callback function used for the %s setting is missing."
|
460 |
+
msgstr ""
|
461 |
+
|
462 |
+
#: includes/admin/settings/register-settings.php:818
|
463 |
+
msgid "Main"
|
464 |
+
msgstr ""
|
465 |
+
|
466 |
+
#: includes/admin/settings/register-settings.php:815
|
467 |
+
msgid "Corporate Contacts"
|
468 |
+
msgstr ""
|
469 |
+
|
470 |
+
#: includes/admin/settings/register-settings.php:812
|
471 |
+
msgid "Organization Info"
|
472 |
+
msgstr ""
|
473 |
+
|
474 |
+
#: includes/admin/settings/register-settings.php:757
|
475 |
+
msgid "Licenses"
|
476 |
+
msgstr "Licenser"
|
477 |
+
|
478 |
+
#: includes/admin/settings/register-settings.php:551
|
479 |
+
msgid "Check this box if you would like Schema to completely remove all of its data when uninstalling via Plugins > Delete."
|
480 |
+
msgstr ""
|
481 |
+
|
482 |
+
#: includes/admin/settings/register-settings.php:550
|
483 |
+
msgid "Delete Data on Uninstall?"
|
484 |
+
msgstr "Ta bort data vid avinstallation?"
|
485 |
+
|
486 |
+
#: includes/admin/settings/register-settings.php:477
|
487 |
+
msgid "Site Alternate Name"
|
488 |
+
msgstr ""
|
489 |
+
|
490 |
+
#: includes/admin/settings/register-settings.php:469
|
491 |
+
msgid "Site Name"
|
492 |
+
msgstr ""
|
493 |
+
|
494 |
+
#: includes/admin/settings/register-settings.php:463
|
495 |
+
msgid "Tell Google to show your site name in search results."
|
496 |
+
msgstr ""
|
497 |
+
|
498 |
+
#: includes/admin/settings/register-settings.php:462
|
499 |
+
msgid "Enable Site Name?"
|
500 |
+
msgstr "Aktivera webbplatsnamn?"
|
501 |
+
|
502 |
+
#: includes/admin/settings/register-settings.php:454
|
503 |
+
msgid "Tell Google to show a Sitelinks search box."
|
504 |
+
msgstr ""
|
505 |
+
|
506 |
+
#: includes/admin/settings/register-settings.php:453
|
507 |
+
msgid "Enable Sitelinks Search Box?"
|
508 |
+
msgstr ""
|
509 |
+
|
510 |
+
#: includes/admin/settings/register-settings.php:440
|
511 |
+
msgid "Recommended. The URL of contact page."
|
512 |
+
msgstr ""
|
513 |
+
|
514 |
+
#: includes/admin/settings/register-settings.php:439
|
515 |
+
msgid "URL"
|
516 |
+
msgstr "URL"
|
517 |
+
|
518 |
+
#: includes/admin/settings/register-settings.php:432
|
519 |
+
msgid "Recommended. An internationalized version of the phone number, starting with the \"+\" symbol and country code (+1 in the US and Canada)."
|
520 |
+
msgstr ""
|
521 |
+
|
522 |
+
#: includes/admin/settings/register-settings.php:431
|
523 |
+
msgid "Telephone"
|
524 |
+
msgstr "Telefon"
|
525 |
+
|
526 |
+
#: includes/admin/settings/register-settings.php:423
|
527 |
+
msgid "Contact Type"
|
528 |
+
msgstr ""
|
529 |
+
|
530 |
+
#: includes/admin/settings/register-settings.php:312
|
531 |
+
msgid "Website URL"
|
532 |
+
msgstr "Webbplatsens URL"
|
533 |
+
|
534 |
+
#: includes/admin/settings/register-settings.php:245
|
535 |
+
msgid "Select Site Type"
|
536 |
+
msgstr ""
|
537 |
+
|
538 |
+
#: includes/admin/settings/contextual-help.php:65
|
539 |
+
msgid "A description of all the options are provided beside their input boxes."
|
540 |
+
msgstr ""
|
541 |
+
|
542 |
+
#: includes/admin/settings/contextual-help.php:64
|
543 |
+
msgid "This screen provides advanced options such as deleting plugin data on uninstall."
|
544 |
+
msgstr ""
|
545 |
+
|
546 |
+
#: includes/admin/settings/contextual-help.php:57
|
547 |
+
msgid "This screen provides access to settings added by most Schema extensions."
|
548 |
+
msgstr ""
|
549 |
+
|
550 |
+
#: includes/admin/settings/contextual-help.php:51
|
551 |
+
msgid "This screen provides settings for configuring Search Results. You can set Sitelinks Search Box and Site Name."
|
552 |
+
msgstr ""
|
553 |
+
|
554 |
+
#: includes/admin/settings/contextual-help.php:50
|
555 |
+
#: includes/admin/settings/register-settings.php:813
|
556 |
+
msgid "Search Results"
|
557 |
+
msgstr "Sökresultat"
|
558 |
+
|
559 |
+
#: includes/admin/settings/contextual-help.php:45
|
560 |
+
msgid "This screen provides settings for configuring the Knowledge Graph. You can set Organization Info and Corporate Contacts."
|
561 |
+
msgstr ""
|
562 |
+
|
563 |
+
#: includes/admin/settings/contextual-help.php:44
|
564 |
+
#: includes/admin/settings/register-settings.php:750
|
565 |
+
msgid "Knowledge Graph"
|
566 |
+
msgstr ""
|
567 |
+
|
568 |
+
#: includes/admin/settings/contextual-help.php:39
|
569 |
+
msgid "This screen provides the most basic settings for configuring Schema plugin on your site. You can set Schema for About and Contact pages, and turn automatic <em>Feature image</em> on and off...etc"
|
570 |
+
msgstr ""
|
571 |
+
|
572 |
+
#: includes/admin/settings/contextual-help.php:29
|
573 |
+
msgid "<a href=\"%s\">Post an issue</a> on <a href=\"%s\">GitHub</a>. View <a href=\"%s\">extensions</a>"
|
574 |
+
msgstr ""
|
575 |
+
|
576 |
+
#: includes/admin/settings/contextual-help.php:27
|
577 |
+
msgid "Visit the <a href=\"%s\">documentation</a> on the schema.press website."
|
578 |
+
msgstr ""
|
579 |
+
|
580 |
+
#: includes/admin/settings/contextual-help.php:26
|
581 |
+
msgid "For more information:"
|
582 |
+
msgstr ""
|
583 |
+
|
584 |
+
#: includes/admin/post-type/schema-wp-submit.php:111
|
585 |
+
msgid "Save "
|
586 |
+
msgstr "Spara "
|
587 |
+
|
588 |
+
#: includes/admin/post-type/schema-wp-submit.php:110
|
589 |
+
msgid "Update "
|
590 |
+
msgstr "Uppdatera "
|
591 |
+
|
592 |
+
#: includes/admin/post-type/schema-wp-submit.php:104
|
593 |
+
msgid "Save"
|
594 |
+
msgstr "Spara"
|
595 |
+
|
596 |
+
#: includes/admin/post-type/schema-wp-submit.php:103
|
597 |
+
msgid "Publish"
|
598 |
+
msgstr "Publicera"
|
599 |
+
|
600 |
+
#: includes/admin/post-type/schema-wp-submit.php:92
|
601 |
+
msgid "Move to Trash"
|
602 |
+
msgstr "Flytta till papperskorgen"
|
603 |
+
|
604 |
+
#: includes/admin/post-type/schema-wp-submit.php:90
|
605 |
+
msgid "Delete Permanently"
|
606 |
+
msgstr "Ta bort permanent"
|
607 |
+
|
608 |
+
#: includes/admin/post-type/schema-wp-submit.php:38
|
609 |
+
msgid "%s"
|
610 |
+
msgstr "%s"
|
611 |
+
|
612 |
+
#: includes/admin/post-type/schema-wp-ajax.php:95
|
613 |
+
msgid "You must select at leat one post type!"
|
614 |
+
msgstr ""
|
615 |
+
|
616 |
+
#: includes/admin/post-type/schema-post-type.php:172
|
617 |
+
msgid "Create Schema"
|
618 |
+
msgstr "Skapa schema"
|
619 |
+
|
620 |
+
#: includes/admin/post-type/schema-post-type.php:118
|
621 |
+
msgid "Preview schema"
|
622 |
+
msgstr "Förhandsgranska schema"
|
623 |
+
|
624 |
+
#: includes/admin/post-type/schema-post-type.php:111
|
625 |
+
msgid "View schema"
|
626 |
+
msgstr "Visa schema"
|
627 |
+
|
628 |
+
#: includes/admin/post-type/schema-post-type.php:105
|
629 |
+
msgid "Schema draft updated."
|
630 |
+
msgstr "Schemautkast uppdaterat."
|
631 |
+
|
632 |
+
#. translators: Publish box date format, see http://php.net/date
|
633 |
+
#: includes/admin/post-type/schema-post-type.php:103
|
634 |
+
msgid "M j, Y @ G:i"
|
635 |
+
msgstr ""
|
636 |
+
|
637 |
+
#: includes/admin/post-type/schema-post-type.php:101
|
638 |
+
msgid "Schema scheduled for: <strong>%1$s</strong>."
|
639 |
+
msgstr ""
|
640 |
+
|
641 |
+
#: includes/admin/post-type/schema-post-type.php:99
|
642 |
+
msgid "Schema added."
|
643 |
+
msgstr ""
|
644 |
+
|
645 |
+
#: includes/admin/post-type/schema-post-type.php:97
|
646 |
+
msgid "Schema created."
|
647 |
+
msgstr "Schema skapat."
|
648 |
+
|
649 |
+
#. translators: %s: date and time of the revision
|
650 |
+
#: includes/admin/post-type/schema-post-type.php:96
|
651 |
+
msgid "Schema restored to revision from %s"
|
652 |
+
msgstr ""
|
653 |
+
|
654 |
+
#: includes/admin/post-type/schema-post-type.php:94
|
655 |
+
#: includes/admin/post-type/schema-post-type.php:98
|
656 |
+
msgid "Schema saved."
|
657 |
+
msgstr "Schema sparat."
|
658 |
+
|
659 |
+
#: includes/admin/post-type/schema-post-type.php:93
|
660 |
+
msgid "Custom field deleted."
|
661 |
+
msgstr "Anpassat fält borttaget."
|
662 |
+
|
663 |
+
#: includes/admin/post-type/schema-post-type.php:92
|
664 |
+
msgid "Custom field updated."
|
665 |
+
msgstr "Anpassat fält uppdaterat."
|
666 |
+
|
667 |
+
#: includes/admin/post-type/schema-post-type.php:91
|
668 |
+
msgid "Schema updated."
|
669 |
+
msgstr ""
|
670 |
+
|
671 |
+
#: includes/admin/post-type/schema-post-type.php:43
|
672 |
+
msgid "Description."
|
673 |
+
msgstr "Beskrivning."
|
674 |
+
|
675 |
+
#: includes/admin/post-type/schema-post-type.php:38
|
676 |
+
msgid "No schema found in Trash."
|
677 |
+
msgstr ""
|
678 |
+
|
679 |
+
#: includes/admin/post-type/schema-post-type.php:37
|
680 |
+
msgid "No schema found."
|
681 |
+
msgstr ""
|
682 |
+
|
683 |
+
#: includes/admin/post-type/schema-post-type.php:36
|
684 |
+
msgid "Parent Schemas:"
|
685 |
+
msgstr ""
|
686 |
+
|
687 |
+
#: includes/admin/post-type/schema-post-type.php:35
|
688 |
+
msgid "Search Schemas"
|
689 |
+
msgstr ""
|
690 |
+
|
691 |
+
#: includes/admin/post-type/schema-post-type.php:34
|
692 |
+
msgid "All Schemas"
|
693 |
+
msgstr "Alla scheman"
|
694 |
+
|
695 |
+
#: includes/admin/post-type/schema-post-type.php:33
|
696 |
+
msgid "View Schema"
|
697 |
+
msgstr "Visa schema"
|
698 |
+
|
699 |
+
#: includes/admin/post-type/schema-post-type.php:32
|
700 |
+
msgid "Edit Schema"
|
701 |
+
msgstr "Redigera schema"
|
702 |
+
|
703 |
+
#: includes/admin/post-type/schema-post-type.php:31
|
704 |
+
msgid "New Schema"
|
705 |
+
msgstr "Nytt schema"
|
706 |
+
|
707 |
+
#: includes/admin/post-type/schema-post-type.php:30
|
708 |
+
msgid "Add New Schema"
|
709 |
+
msgstr "Lägg till nytt schema"
|
710 |
+
|
711 |
+
#: includes/admin/post-type/schema-post-type.php:29
|
712 |
+
msgctxt "schema"
|
713 |
+
msgid "Add New"
|
714 |
+
msgstr ""
|
715 |
+
|
716 |
+
#: includes/admin/post-type/schema-post-type.php:28
|
717 |
+
msgctxt "add new on admin bar"
|
718 |
+
msgid "Schema"
|
719 |
+
msgstr "Schema"
|
720 |
+
|
721 |
+
#: includes/admin/post-type/schema-post-type.php:27
|
722 |
+
msgctxt "admin menu"
|
723 |
+
msgid "Schema"
|
724 |
+
msgstr "Schema"
|
725 |
+
|
726 |
+
#: includes/admin/post-type/schema-post-type.php:26
|
727 |
+
msgctxt "post type singular name"
|
728 |
+
msgid "Schema"
|
729 |
+
msgstr "Schema"
|
730 |
+
|
731 |
+
#: includes/admin/post-type/schema-post-type.php:25
|
732 |
+
msgctxt "post type general name"
|
733 |
+
msgid "Schema"
|
734 |
+
msgstr "Schema"
|
735 |
+
|
736 |
+
#: includes/admin/post-type/schema-columns.php:51
|
737 |
+
msgid "Content"
|
738 |
+
msgstr "Innehåll"
|
739 |
+
|
740 |
+
#: includes/admin/post-type/schema-columns.php:46
|
741 |
+
#: includes/admin/post-type/schema-columns.php:58
|
742 |
+
msgid "-"
|
743 |
+
msgstr "-"
|
744 |
+
|
745 |
+
#: includes/admin/post-type/schema-columns.php:39
|
746 |
+
msgid "Post Type"
|
747 |
+
msgstr "Inläggstyp"
|
748 |
+
|
749 |
+
#: includes/admin/post-type/schema-columns.php:34
|
750 |
+
msgid "Not set!"
|
751 |
+
msgstr ""
|
752 |
+
|
753 |
+
#: includes/admin/post-type/schema-columns.php:27
|
754 |
+
msgid "Schema Type"
|
755 |
+
msgstr ""
|
756 |
+
|
757 |
+
#: includes/admin/meta.php:274
|
758 |
+
msgid "Post Meta"
|
759 |
+
msgstr ""
|
760 |
+
|
761 |
+
#: includes/admin/meta.php:273
|
762 |
+
msgid "Post Types"
|
763 |
+
msgstr "Inläggstyper"
|
764 |
+
|
765 |
+
#: includes/admin/meta.php:248
|
766 |
+
msgid "Description for this field"
|
767 |
+
msgstr ""
|
768 |
+
|
769 |
+
#: includes/admin/meta.php:245
|
770 |
+
msgid "Field description"
|
771 |
+
msgstr ""
|
772 |
+
|
773 |
+
#: includes/admin/meta.php:236
|
774 |
+
msgid "Field label"
|
775 |
+
msgstr "Fältetikett"
|
776 |
+
|
777 |
+
#: includes/admin/meta.php:235 includes/admin/meta.php:240
|
778 |
+
msgid "Label"
|
779 |
+
msgstr "Etikett"
|
780 |
+
|
781 |
+
#: includes/admin/meta.php:227
|
782 |
+
msgid "Checkbox"
|
783 |
+
msgstr "Kryssruta"
|
784 |
+
|
785 |
+
#: includes/admin/meta.php:223
|
786 |
+
msgid "Text Area"
|
787 |
+
msgstr "Textområde"
|
788 |
+
|
789 |
+
#: includes/admin/meta.php:219
|
790 |
+
msgid "Text"
|
791 |
+
msgstr "Text"
|
792 |
+
|
793 |
+
#: includes/admin/meta.php:216
|
794 |
+
msgid "Select Type"
|
795 |
+
msgstr "Välj typ"
|
796 |
+
|
797 |
+
#: includes/admin/meta.php:213
|
798 |
+
msgid "Select field type"
|
799 |
+
msgstr ""
|
800 |
+
|
801 |
+
#: includes/admin/meta.php:212
|
802 |
+
msgid "Type"
|
803 |
+
msgstr "Typ"
|
804 |
+
|
805 |
+
#: includes/admin/meta.php:201
|
806 |
+
msgid "Create Field?"
|
807 |
+
msgstr "Skapa fält?"
|
808 |
+
|
809 |
+
#: includes/admin/meta.php:200
|
810 |
+
msgid "Create custom post meta field?"
|
811 |
+
msgstr ""
|
812 |
+
|
813 |
+
#: includes/admin/meta.php:199
|
814 |
+
msgid "Create?"
|
815 |
+
msgstr "Skapa?"
|
816 |
+
|
817 |
+
#: includes/admin/meta.php:195
|
818 |
+
msgid "Meta Key Name"
|
819 |
+
msgstr ""
|
820 |
+
|
821 |
+
#: includes/admin/meta.php:191
|
822 |
+
msgid "Add post meta key name as source"
|
823 |
+
msgstr ""
|
824 |
+
|
825 |
+
#: includes/admin/meta.php:190
|
826 |
+
msgid "Key"
|
827 |
+
msgstr "Nyckel"
|
828 |
+
|
829 |
+
#: includes/admin/meta.php:182 includes/admin/meta.php:244
|
830 |
+
#: includes/extensions/audio-object.php:121
|
831 |
+
#: includes/extensions/video-object.php:122
|
832 |
+
msgid "Description"
|
833 |
+
msgstr "Beskrivning"
|
834 |
+
|
835 |
+
#: includes/admin/meta.php:178
|
836 |
+
msgid "Headline"
|
837 |
+
msgstr "Rubrik"
|
838 |
+
|
839 |
+
#: includes/admin/meta.php:174
|
840 |
+
msgid "Author Name"
|
841 |
+
msgstr "Författarnamn"
|
842 |
+
|
843 |
+
#: includes/admin/meta.php:171
|
844 |
+
msgid "Select Filter"
|
845 |
+
msgstr "Välj filter"
|
846 |
+
|
847 |
+
#: includes/admin/meta.php:167
|
848 |
+
msgid "This is the filter name"
|
849 |
+
msgstr ""
|
850 |
+
|
851 |
+
#: includes/admin/meta.php:166
|
852 |
+
msgid "Filter"
|
853 |
+
msgstr ""
|
854 |
+
|
855 |
+
#: includes/admin/meta.php:155
|
856 |
+
msgid "This feature allow you to override the schema.org markups output generated by the Schema plugin."
|
857 |
+
msgstr ""
|
858 |
+
|
859 |
+
#: includes/admin/meta.php:154
|
860 |
+
msgid "This is where you can define a source for schema.org markup fields to override its output. Select a filter name, then define post meta key name to pull data from, or tick the check box to automatically create a new custom post meta field to insert values manually when editing posts."
|
861 |
+
msgstr ""
|
862 |
+
|
863 |
+
#: includes/admin/meta.php:145
|
864 |
+
msgid "This field will allow you to override the Schema post meta box title, default: Schema"
|
865 |
+
msgstr ""
|
866 |
+
|
867 |
+
#: includes/admin/meta.php:144
|
868 |
+
msgid "Post meta box title, default: Schema"
|
869 |
+
msgstr ""
|
870 |
+
|
871 |
+
#: includes/admin/meta.php:143 includes/extensions/audio-object.php:100
|
872 |
+
#: includes/extensions/video-object.php:101
|
873 |
+
msgid "Title"
|
874 |
+
msgstr "Rubrik"
|
875 |
+
|
876 |
+
#: includes/admin/meta.php:129
|
877 |
+
msgid "Enabled on specific custom post types"
|
878 |
+
msgstr ""
|
879 |
+
|
880 |
+
#: includes/admin/meta.php:88
|
881 |
+
msgid "It is recommended to set type BlogPosting for posts, and leave empty or set to General for page post type"
|
882 |
+
msgstr ""
|
883 |
+
|
884 |
+
#: includes/admin/meta.php:87
|
885 |
+
msgid "Select more specific article type"
|
886 |
+
msgstr ""
|
887 |
+
|
888 |
+
#: includes/admin/meta.php:86
|
889 |
+
msgid "Article Type"
|
890 |
+
msgstr ""
|
891 |
+
|
892 |
+
#: includes/admin/meta.php:46 includes/admin/meta.php:72
|
893 |
+
msgid "Enable post meta box?"
|
894 |
+
msgstr ""
|
895 |
+
|
896 |
+
#: includes/admin/meta.php:45 includes/admin/meta.php:71
|
897 |
+
msgid "Enable custom post meta box"
|
898 |
+
msgstr ""
|
899 |
+
|
900 |
+
#: includes/admin/meta.php:44 includes/admin/meta.php:70
|
901 |
+
msgid "Post meta"
|
902 |
+
msgstr "Metadata för inlägg"
|
903 |
+
|
904 |
+
#: includes/admin/meta.php:32 includes/admin/meta.php:57
|
905 |
+
msgid "Select Schema type which describes your content best"
|
906 |
+
msgstr ""
|
907 |
+
|
908 |
+
#: includes/admin/meta.php:31 includes/admin/meta.php:56
|
909 |
+
msgid "Schema Markup Type"
|
910 |
+
msgstr ""
|
911 |
+
|
912 |
+
#: includes/admin/meta-tax.php:44 includes/extensions/sameAs.php:40
|
913 |
+
msgid "URL of a reference Web page that unambiguously indicates the item's identity. E.g. the URL of the item's Wikipedia page, Freebase page, or official website."
|
914 |
+
msgstr ""
|
915 |
+
|
916 |
+
#: includes/admin/meta-tax.php:44
|
917 |
+
msgid "sameAs "
|
918 |
+
msgstr ""
|
919 |
+
|
920 |
+
#: includes/admin/meta-tax/class-usage-demo.php:83
|
921 |
+
msgid "This is a Repeater Block"
|
922 |
+
msgstr ""
|
923 |
+
|
924 |
+
#: includes/admin/meta-tax/class-usage-demo.php:67
|
925 |
+
msgid "My Posts "
|
926 |
+
msgstr "Mina inlägg "
|
927 |
+
|
928 |
+
#: includes/admin/meta-tax/class-usage-demo.php:65
|
929 |
+
msgid "My Taxonomy "
|
930 |
+
msgstr ""
|
931 |
+
|
932 |
+
#: includes/admin/meta-tax/class-usage-demo.php:63
|
933 |
+
msgid "My wysiwyg Editor "
|
934 |
+
msgstr ""
|
935 |
+
|
936 |
+
#: includes/admin/meta-tax/class-usage-demo.php:61
|
937 |
+
msgid "My File "
|
938 |
+
msgstr "Min fil "
|
939 |
+
|
940 |
+
#: includes/admin/meta-tax/class-usage-demo.php:59
|
941 |
+
#: includes/admin/meta-tax/class-usage-demo.php:77
|
942 |
+
msgid "My Image "
|
943 |
+
msgstr "Min bild "
|
944 |
+
|
945 |
+
#: includes/admin/meta-tax/class-usage-demo.php:57
|
946 |
+
msgid "My Color "
|
947 |
+
msgstr "Min färg "
|
948 |
+
|
949 |
+
#: includes/admin/meta-tax/class-usage-demo.php:55
|
950 |
+
msgid "My Time "
|
951 |
+
msgstr "Min tid "
|
952 |
+
|
953 |
+
#: includes/admin/meta-tax/class-usage-demo.php:53
|
954 |
+
msgid "My Date "
|
955 |
+
msgstr "Mitt datum "
|
956 |
+
|
957 |
+
#: includes/admin/meta-tax/class-usage-demo.php:51
|
958 |
+
msgid "My Radio Filed"
|
959 |
+
msgstr ""
|
960 |
+
|
961 |
+
#: includes/admin/meta-tax/class-usage-demo.php:49
|
962 |
+
msgid "My select "
|
963 |
+
msgstr "Mitt val "
|
964 |
+
|
965 |
+
#: includes/admin/meta-tax/class-usage-demo.php:47
|
966 |
+
#: includes/admin/meta-tax/class-usage-demo.php:76
|
967 |
+
msgid "My Checkbox "
|
968 |
+
msgstr "Min kryssruta "
|
969 |
+
|
970 |
+
#: includes/admin/meta-tax/class-usage-demo.php:45
|
971 |
+
#: includes/admin/meta-tax/class-usage-demo.php:75
|
972 |
+
msgid "My Textarea "
|
973 |
+
msgstr "Mitt textområde "
|
974 |
+
|
975 |
+
#: includes/admin/meta-tax/class-usage-demo.php:43
|
976 |
+
#: includes/admin/meta-tax/class-usage-demo.php:74
|
977 |
+
msgid "My Text "
|
978 |
+
msgstr "Min text "
|
979 |
+
|
980 |
+
#: includes/admin/meta-tax/class-meta-tax.php:727
|
981 |
+
msgid "Upload Image"
|
982 |
+
msgstr "Ladda upp bild"
|
983 |
+
|
984 |
+
#: includes/admin/meta-tax/class-meta-tax.php:725
|
985 |
+
msgid "Remove Image"
|
986 |
+
msgstr "Ta bort bild"
|
987 |
+
|
988 |
+
#: includes/admin/meta-tax/class-meta-tax.php:392
|
989 |
+
msgid "Add"
|
990 |
+
msgstr "Lägg till"
|
991 |
+
|
992 |
+
#: includes/admin/meta-exclude.php:69
|
993 |
+
msgid "Schema Exclude"
|
994 |
+
msgstr ""
|
995 |
+
|
996 |
+
#: includes/admin/meta-exclude.php:37
|
997 |
+
msgid "Tick this checkbox to turn off Schema output on this entry."
|
998 |
+
msgstr ""
|
999 |
+
|
1000 |
+
#: includes/admin/meta-exclude.php:36
|
1001 |
+
msgid "Turn Schema OFF"
|
1002 |
+
msgstr ""
|
1003 |
+
|
1004 |
+
#: includes/admin/meta/class-meta.php:345 includes/admin/meta.php:153
|
1005 |
+
msgid "Fields"
|
1006 |
+
msgstr "Fält"
|
1007 |
+
|
1008 |
+
#: includes/admin/meta/class-meta.php:64
|
1009 |
+
#: includes/admin/settings/contextual-help.php:62
|
1010 |
+
#: includes/admin/settings/register-settings.php:760
|
1011 |
+
msgid "Advanced"
|
1012 |
+
msgstr "Avancerat"
|
1013 |
+
|
1014 |
+
#: includes/admin/extensions.php:129
|
1015 |
+
msgid "There was an error retrieving the extensions list from the server. Please try again later."
|
1016 |
+
msgstr ""
|
1017 |
+
|
1018 |
+
#: includes/admin/extensions.php:118
|
1019 |
+
msgid "Get this Extension"
|
1020 |
+
msgstr "Skaffa denna utökning"
|
1021 |
+
|
1022 |
+
#: includes/admin/extensions.php:56
|
1023 |
+
msgid "Our official free extensions are available to all license holders!"
|
1024 |
+
msgstr ""
|
1025 |
+
|
1026 |
+
#: includes/admin/extensions.php:54
|
1027 |
+
msgid "If you have a Personal or Plus license, you can easily upgrade from your account page to <a href=\"%s\">get access to all of these extensions</a>!"
|
1028 |
+
msgstr ""
|
1029 |
+
|
1030 |
+
#: includes/admin/extensions.php:53
|
1031 |
+
msgid "Pro Extensions are only available with a Professional or Ultimate license. If you already have one of these licenses, simply <a href=\"%s\">log in to your account</a> to download any of these extensions."
|
1032 |
+
msgstr ""
|
1033 |
+
|
1034 |
+
#: includes/admin/extensions.php:46
|
1035 |
+
msgid "These extensions <em><strong>add functionality</strong></em> to your Schema-powered site."
|
1036 |
+
msgstr ""
|
1037 |
+
|
1038 |
+
#: includes/admin/extensions.php:43 includes/admin/extensions.php:61
|
1039 |
+
msgid "Browse all extensions"
|
1040 |
+
msgstr ""
|
1041 |
+
|
1042 |
+
#: includes/admin/extensions.php:41
|
1043 |
+
msgid "Extensions for Schema"
|
1044 |
+
msgstr ""
|
1045 |
+
|
1046 |
+
#: includes/admin/extensions.php:32
|
1047 |
+
msgid "Official Free"
|
1048 |
+
msgstr ""
|
1049 |
+
|
1050 |
+
#: includes/admin/extensions.php:31
|
1051 |
+
msgid "Pro"
|
1052 |
+
msgstr "Pro"
|
1053 |
+
|
1054 |
+
#: includes/admin/class-welcome.php:421
|
1055 |
+
msgid "View %s"
|
1056 |
+
msgstr "Visa %s"
|
1057 |
+
|
1058 |
+
#: includes/admin/class-welcome.php:394
|
1059 |
+
msgid "Here, we will be listing some of the faces that have helped build Schema."
|
1060 |
+
msgstr ""
|
1061 |
+
|
1062 |
+
#: includes/admin/class-welcome.php:389
|
1063 |
+
msgid "Thank you for updating to the latest version!"
|
1064 |
+
msgstr ""
|
1065 |
+
|
1066 |
+
#: includes/admin/class-welcome.php:370
|
1067 |
+
msgid "We do our best to provide support we can. If you encounter a problem, report it to <a href=\"https://wordpress.org/support/plugin/schema\">support</a>."
|
1068 |
+
msgstr ""
|
1069 |
+
|
1070 |
+
#: includes/admin/class-welcome.php:369
|
1071 |
+
msgid "Support"
|
1072 |
+
msgstr "Support"
|
1073 |
+
|
1074 |
+
#: includes/admin/class-welcome.php:365
|
1075 |
+
msgid "Docs are on its way! We will update <a href=\"http://schema.press/\">schema.press</a> site with plugin documentation soon."
|
1076 |
+
msgstr ""
|
1077 |
+
|
1078 |
+
#: includes/admin/class-welcome.php:364
|
1079 |
+
msgid "Documentation"
|
1080 |
+
msgstr "Dokumentation"
|
1081 |
+
|
1082 |
+
#: includes/admin/class-welcome.php:361
|
1083 |
+
msgid "Need Help?"
|
1084 |
+
msgstr "Behöver du hjälp?"
|
1085 |
+
|
1086 |
+
#: includes/admin/class-welcome.php:350
|
1087 |
+
msgid "Structured Data helps search engines to understand what the content is specifically about. Moreover, structured data will allow users to see the value of a website before they visit, via rich snippets, which are rich data that are displayed in the SERP’s."
|
1088 |
+
msgstr ""
|
1089 |
+
|
1090 |
+
#: includes/admin/class-welcome.php:349
|
1091 |
+
msgid "Structured Data can help you to send the right signals to search engines about your business and content."
|
1092 |
+
msgstr ""
|
1093 |
+
|
1094 |
+
#: includes/admin/class-welcome.php:348
|
1095 |
+
msgid "Why is Structured Data so Important?"
|
1096 |
+
msgstr ""
|
1097 |
+
|
1098 |
+
#: includes/admin/class-welcome.php:346
|
1099 |
+
msgid "Schema markup is code (semantic vocabulary) that you put on your website to help the search engines return more informative results for users. So, Schema is not just for SEO reasons, it’s also for the benefit of the searcher."
|
1100 |
+
msgstr ""
|
1101 |
+
|
1102 |
+
#: includes/admin/class-welcome.php:345
|
1103 |
+
msgid "What is Schema markup?"
|
1104 |
+
msgstr ""
|
1105 |
+
|
1106 |
+
#: includes/admin/class-welcome.php:340
|
1107 |
+
msgid "Overview"
|
1108 |
+
msgstr "Översikt"
|
1109 |
+
|
1110 |
+
#: includes/admin/class-welcome.php:337
|
1111 |
+
msgid "Hang on! We are going to add more schema integration and cool features to Schema plugin."
|
1112 |
+
msgstr ""
|
1113 |
+
|
1114 |
+
#: includes/admin/class-welcome.php:332
|
1115 |
+
msgid "Thank you for installing Schema. The best schema.org plugin for WordPress."
|
1116 |
+
msgstr ""
|
1117 |
+
|
1118 |
+
#: includes/admin/class-welcome.php:307
|
1119 |
+
msgid "Supported oEmbed audios: SoundCloud, and Mixcloud."
|
1120 |
+
msgstr ""
|
1121 |
+
|
1122 |
+
#: includes/admin/class-welcome.php:306
|
1123 |
+
msgid "Schema allow you to enable AudioObject markup automatically whenever oEmbed is called on your page."
|
1124 |
+
msgstr ""
|
1125 |
+
|
1126 |
+
#: includes/admin/class-welcome.php:305
|
1127 |
+
msgid "Automatically add AudioObject to oEmbed"
|
1128 |
+
msgstr ""
|
1129 |
+
|
1130 |
+
#: includes/admin/class-welcome.php:303
|
1131 |
+
msgid "Supported oEmbed videos: Dailymotion, TED, Vimeo, VideoPress, Vine, YouTube."
|
1132 |
+
msgstr ""
|
1133 |
+
|
1134 |
+
#: includes/admin/class-welcome.php:302
|
1135 |
+
msgid "Schema allow you to enable VideoObject markup automatically whenever oEmbed is called on your page."
|
1136 |
+
msgstr ""
|
1137 |
+
|
1138 |
+
#: includes/admin/class-welcome.php:301
|
1139 |
+
msgid "Automatically add VideoObject to oEmbed"
|
1140 |
+
msgstr ""
|
1141 |
+
|
1142 |
+
#: includes/admin/class-welcome.php:297
|
1143 |
+
msgid "Also, you can set Schema to work on specific post categories."
|
1144 |
+
msgstr ""
|
1145 |
+
|
1146 |
+
#: includes/admin/class-welcome.php:296
|
1147 |
+
msgid "Now, you can create new schema.org markup types and enable them on post type bases."
|
1148 |
+
msgstr ""
|
1149 |
+
|
1150 |
+
#: includes/admin/class-welcome.php:295
|
1151 |
+
msgid "Schema Post Type"
|
1152 |
+
msgstr ""
|
1153 |
+
|
1154 |
+
#: includes/admin/class-welcome.php:289
|
1155 |
+
msgid "If Divi theme is active, Schema plugin will clear shortcodes to be able to output the content description."
|
1156 |
+
msgstr ""
|
1157 |
+
|
1158 |
+
#: includes/admin/class-welcome.php:288
|
1159 |
+
msgid "Is Divi your Theme?"
|
1160 |
+
msgstr "Är Divi ditt tema?"
|
1161 |
+
|
1162 |
+
#: includes/admin/class-welcome.php:286
|
1163 |
+
msgid "No problem! The Schema plugin will automatically indicate that and show respect for SEO Framework."
|
1164 |
+
msgstr ""
|
1165 |
+
|
1166 |
+
#: includes/admin/class-welcome.php:285
|
1167 |
+
msgid "The SEO Framework plugin is active?"
|
1168 |
+
msgstr ""
|
1169 |
+
|
1170 |
+
#: includes/admin/class-welcome.php:283
|
1171 |
+
msgid "Using Thesis? The Schema plugin will automatically indicate and use Thesis Post Image is are presented."
|
1172 |
+
msgstr ""
|
1173 |
+
|
1174 |
+
#: includes/admin/class-welcome.php:282
|
1175 |
+
msgid "Uses Thesis Theme 2.x Post Image"
|
1176 |
+
msgstr ""
|
1177 |
+
|
1178 |
+
#: includes/admin/class-welcome.php:281
|
1179 |
+
msgid "Using Genesis Framework? The Schema plugin will automatically indicate that and correct Genesis Schema output."
|
1180 |
+
msgstr ""
|
1181 |
+
|
1182 |
+
#: includes/admin/class-welcome.php:280
|
1183 |
+
msgid "Correct Genesis Schema Markup"
|
1184 |
+
msgstr ""
|
1185 |
+
|
1186 |
+
#: includes/admin/class-welcome.php:278
|
1187 |
+
msgid "If you are using the WPRichSnippets plugin, Schema will behave!"
|
1188 |
+
msgstr ""
|
1189 |
+
|
1190 |
+
#: includes/admin/class-welcome.php:277
|
1191 |
+
msgid "WPRichSnippets plugin"
|
1192 |
+
msgstr ""
|
1193 |
+
|
1194 |
+
#: includes/admin/class-welcome.php:275
|
1195 |
+
msgid "If you are using the AMP plugin, Schema got you covered!"
|
1196 |
+
msgstr ""
|
1197 |
+
|
1198 |
+
#: includes/admin/class-welcome.php:274
|
1199 |
+
msgid "Hello AMP!"
|
1200 |
+
msgstr "Hej AMP!"
|
1201 |
+
|
1202 |
+
#: includes/admin/class-welcome.php:272
|
1203 |
+
msgid "Now Schema plugin plays nicely with Yoast SEO plugin, you can have both plugins active with no conflicts."
|
1204 |
+
msgstr ""
|
1205 |
+
|
1206 |
+
#: includes/admin/class-welcome.php:271
|
1207 |
+
msgid "Play nicely with Yoast SEO"
|
1208 |
+
msgstr ""
|
1209 |
+
|
1210 |
+
#: includes/admin/class-welcome.php:269
|
1211 |
+
msgid "Schema plays nicely and support themes mentioned below."
|
1212 |
+
msgstr ""
|
1213 |
+
|
1214 |
+
#: includes/admin/class-welcome.php:268
|
1215 |
+
msgid "Integration with Themes and other Plugins"
|
1216 |
+
msgstr ""
|
1217 |
+
|
1218 |
+
#: includes/admin/class-welcome.php:264 includes/admin/class-welcome.php:353
|
1219 |
+
msgid "Go To Schema Settings"
|
1220 |
+
msgstr ""
|
1221 |
+
|
1222 |
+
#: includes/admin/class-welcome.php:260
|
1223 |
+
msgid "Maybe coming soon!"
|
1224 |
+
msgstr ""
|
1225 |
+
|
1226 |
+
#: includes/admin/class-welcome.php:258
|
1227 |
+
msgid "New Schema Type?"
|
1228 |
+
msgstr ""
|
1229 |
+
|
1230 |
+
#: includes/admin/class-welcome.php:254
|
1231 |
+
msgid "author archive"
|
1232 |
+
msgstr "författararkiv"
|
1233 |
+
|
1234 |
+
#: includes/admin/class-welcome.php:254
|
1235 |
+
msgid "Person"
|
1236 |
+
msgstr "Person"
|
1237 |
+
|
1238 |
+
#: includes/admin/class-welcome.php:250
|
1239 |
+
msgid "for the contact page"
|
1240 |
+
msgstr ""
|
1241 |
+
|
1242 |
+
#: includes/admin/class-welcome.php:250
|
1243 |
+
msgid "ContactPage"
|
1244 |
+
msgstr ""
|
1245 |
+
|
1246 |
+
#: includes/admin/class-welcome.php:246
|
1247 |
+
msgid "for the about page"
|
1248 |
+
msgstr ""
|
1249 |
+
|
1250 |
+
#: includes/admin/class-welcome.php:246
|
1251 |
+
msgid "AboutPage"
|
1252 |
+
msgstr ""
|
1253 |
+
|
1254 |
+
#: includes/admin/class-welcome.php:242
|
1255 |
+
msgid "for Tags"
|
1256 |
+
msgstr ""
|
1257 |
+
|
1258 |
+
#: includes/admin/class-welcome.php:238
|
1259 |
+
msgid "for Categories"
|
1260 |
+
msgstr "för kategorier"
|
1261 |
+
|
1262 |
+
#: includes/admin/class-welcome.php:238 includes/admin/class-welcome.php:242
|
1263 |
+
msgid "CollectionPage"
|
1264 |
+
msgstr ""
|
1265 |
+
|
1266 |
+
#: includes/admin/class-welcome.php:234
|
1267 |
+
msgid "for Breadcrumbs"
|
1268 |
+
msgstr "för synliga sökvägar"
|
1269 |
+
|
1270 |
+
#: includes/admin/class-welcome.php:234
|
1271 |
+
msgid "BreadcrumbList"
|
1272 |
+
msgstr ""
|
1273 |
+
|
1274 |
+
#: includes/admin/class-welcome.php:230
|
1275 |
+
msgid "for Web Page Footer"
|
1276 |
+
msgstr ""
|
1277 |
+
|
1278 |
+
#: includes/admin/class-welcome.php:230
|
1279 |
+
msgid "WPFooter"
|
1280 |
+
msgstr ""
|
1281 |
+
|
1282 |
+
#: includes/admin/class-welcome.php:226
|
1283 |
+
msgid "for Web Page Header"
|
1284 |
+
msgstr ""
|
1285 |
+
|
1286 |
+
#: includes/admin/class-welcome.php:226
|
1287 |
+
msgid "WPHeader"
|
1288 |
+
msgstr ""
|
1289 |
+
|
1290 |
+
#: includes/admin/class-welcome.php:222
|
1291 |
+
msgid "for Blog posts list page"
|
1292 |
+
msgstr ""
|
1293 |
+
|
1294 |
+
#: includes/admin/class-welcome.php:222
|
1295 |
+
msgid "Blog"
|
1296 |
+
msgstr "Blogg"
|
1297 |
+
|
1298 |
+
#: includes/admin/class-welcome.php:217
|
1299 |
+
msgid "TechArticle"
|
1300 |
+
msgstr ""
|
1301 |
+
|
1302 |
+
#: includes/admin/class-welcome.php:216
|
1303 |
+
msgid "ScholarlyArticle"
|
1304 |
+
msgstr ""
|
1305 |
+
|
1306 |
+
#: includes/admin/class-welcome.php:215
|
1307 |
+
msgid "Report"
|
1308 |
+
msgstr ""
|
1309 |
+
|
1310 |
+
#: includes/admin/class-welcome.php:214
|
1311 |
+
msgid "NewsArticle"
|
1312 |
+
msgstr ""
|
1313 |
+
|
1314 |
+
#: includes/admin/class-welcome.php:213 includes/install.php:58
|
1315 |
+
msgid "BlogPosting"
|
1316 |
+
msgstr ""
|
1317 |
+
|
1318 |
+
#: includes/admin/class-welcome.php:210 includes/admin/meta.php:37
|
1319 |
+
#: includes/admin/meta.php:38 includes/admin/meta.php:62
|
1320 |
+
#: includes/admin/meta.php:63 includes/admin/meta.php:272
|
1321 |
+
#: includes/install.php:57 includes/install.php:99
|
1322 |
+
msgid "Article"
|
1323 |
+
msgstr "Artikel"
|
1324 |
+
|
1325 |
+
#: includes/admin/class-welcome.php:208
|
1326 |
+
msgid "Now, Schema plugin supports more schema.org types."
|
1327 |
+
msgstr ""
|
1328 |
+
|
1329 |
+
#: includes/admin/class-welcome.php:207
|
1330 |
+
msgid "Support More Schema Types"
|
1331 |
+
msgstr ""
|
1332 |
+
|
1333 |
+
#: includes/admin/class-welcome.php:200
|
1334 |
+
#: includes/admin/settings/display-settings.php:86
|
1335 |
+
msgid "Quick Configuration Wizard"
|
1336 |
+
msgstr ""
|
1337 |
+
|
1338 |
+
#: includes/admin/class-welcome.php:199
|
1339 |
+
msgid "Plugin Settings"
|
1340 |
+
msgstr ""
|
1341 |
+
|
1342 |
+
#: includes/admin/class-welcome.php:197
|
1343 |
+
msgid "Get started quickly with the Schema configuration wizard!"
|
1344 |
+
msgstr ""
|
1345 |
+
|
1346 |
+
#: includes/admin/class-welcome.php:196
|
1347 |
+
msgid "First-time Schema configuration!"
|
1348 |
+
msgstr ""
|
1349 |
+
|
1350 |
+
#: includes/admin/class-welcome.php:188 includes/admin/class-welcome.php:333
|
1351 |
+
#: includes/admin/class-welcome.php:390
|
1352 |
+
msgid "Version %s"
|
1353 |
+
msgstr "Version %s"
|
1354 |
+
|
1355 |
+
#: includes/admin/class-welcome.php:185
|
1356 |
+
msgid "Thank you for installing Schema. The best Schema.org plugin for WordPress."
|
1357 |
+
msgstr ""
|
1358 |
+
|
1359 |
+
#: includes/admin/class-welcome.php:184 includes/admin/class-welcome.php:331
|
1360 |
+
#: includes/admin/class-welcome.php:388
|
1361 |
+
msgid "Welcome to Schema v%s"
|
1362 |
+
msgstr "Välkommen till Schema v%s"
|
1363 |
+
|
1364 |
+
#: includes/admin/class-welcome.php:167
|
1365 |
+
msgid "Credits"
|
1366 |
+
msgstr "Erkännande"
|
1367 |
+
|
1368 |
+
#: includes/admin/class-welcome.php:163
|
1369 |
+
msgid "Getting Started"
|
1370 |
+
msgstr "Komma igång"
|
1371 |
+
|
1372 |
+
#: includes/admin/class-welcome.php:160
|
1373 |
+
msgid "What's New"
|
1374 |
+
msgstr "Vad som är nytt"
|
1375 |
+
|
1376 |
+
#: includes/admin/class-welcome.php:70 includes/admin/class-welcome.php:71
|
1377 |
+
msgid "The people that build Schema"
|
1378 |
+
msgstr ""
|
1379 |
+
|
1380 |
+
#: includes/admin/class-welcome.php:61 includes/admin/class-welcome.php:62
|
1381 |
+
msgid "Getting started with Schema"
|
1382 |
+
msgstr ""
|
1383 |
+
|
1384 |
+
#: includes/admin/class-welcome.php:52 includes/admin/class-welcome.php:53
|
1385 |
+
msgid "What's new in Schema"
|
1386 |
+
msgstr ""
|
1387 |
+
|
1388 |
+
#: includes/admin/class-setup-wizard.php:832
|
1389 |
+
msgid "Select Image"
|
1390 |
+
msgstr "Välj bild"
|
1391 |
+
|
1392 |
+
#: includes/admin/class-setup-wizard.php:801
|
1393 |
+
#: includes/admin/meta/class-meta.php:42
|
1394 |
+
#: includes/admin/settings/register-settings.php:1378
|
1395 |
+
msgid "Select One"
|
1396 |
+
msgstr "Välj en"
|
1397 |
+
|
1398 |
+
#: includes/admin/class-setup-wizard.php:693
|
1399 |
+
msgid "Learn More"
|
1400 |
+
msgstr "Lär dig mer"
|
1401 |
+
|
1402 |
+
#: includes/admin/class-setup-wizard.php:688
|
1403 |
+
msgid "Configure Your Schema Types!"
|
1404 |
+
msgstr ""
|
1405 |
+
|
1406 |
+
#: includes/admin/class-setup-wizard.php:686
|
1407 |
+
msgid "Next Step"
|
1408 |
+
msgstr "Nästa steg"
|
1409 |
+
|
1410 |
+
#: includes/admin/class-setup-wizard.php:682
|
1411 |
+
msgid "here"
|
1412 |
+
msgstr "här"
|
1413 |
+
|
1414 |
+
#: includes/admin/class-setup-wizard.php:682
|
1415 |
+
msgid "You can change settings from"
|
1416 |
+
msgstr ""
|
1417 |
+
|
1418 |
+
#: includes/admin/class-setup-wizard.php:680
|
1419 |
+
msgid "Schema will now take care of all the needed technical optimization of your site."
|
1420 |
+
msgstr ""
|
1421 |
+
|
1422 |
+
#: includes/admin/class-setup-wizard.php:678
|
1423 |
+
msgid "You've done it!"
|
1424 |
+
msgstr "Du klarade det!"
|
1425 |
+
|
1426 |
+
#: includes/admin/class-setup-wizard.php:655
|
1427 |
+
#: includes/admin/class-setup-wizard.php:658
|
1428 |
+
#: includes/admin/settings/register-settings.php:529
|
1429 |
+
msgid "AudioObject"
|
1430 |
+
msgstr ""
|
1431 |
+
|
1432 |
+
#: includes/admin/class-setup-wizard.php:646
|
1433 |
+
#: includes/admin/class-setup-wizard.php:649
|
1434 |
+
#: includes/admin/settings/register-settings.php:523
|
1435 |
+
msgid "VideoObject"
|
1436 |
+
msgstr ""
|
1437 |
+
|
1438 |
+
#: includes/admin/class-setup-wizard.php:637
|
1439 |
+
#: includes/admin/class-setup-wizard.php:640
|
1440 |
+
#: includes/admin/settings/register-settings.php:517
|
1441 |
+
msgid "Comments"
|
1442 |
+
msgstr ""
|
1443 |
+
|
1444 |
+
#: includes/admin/class-setup-wizard.php:628
|
1445 |
+
#: includes/admin/class-setup-wizard.php:631
|
1446 |
+
#: includes/admin/settings/register-settings.php:511
|
1447 |
+
msgid "Breadcrumbs"
|
1448 |
+
msgstr "Synliga sökvägar"
|
1449 |
+
|
1450 |
+
#: includes/admin/class-setup-wizard.php:623
|
1451 |
+
#: includes/admin/class-setup-wizard.php:632
|
1452 |
+
#: includes/admin/class-setup-wizard.php:641
|
1453 |
+
#: includes/admin/class-setup-wizard.php:650
|
1454 |
+
#: includes/admin/class-setup-wizard.php:659
|
1455 |
+
#: includes/admin/settings/register-settings.php:506
|
1456 |
+
#: includes/admin/settings/register-settings.php:512
|
1457 |
+
#: includes/admin/settings/register-settings.php:518
|
1458 |
+
#: includes/admin/settings/register-settings.php:524
|
1459 |
+
#: includes/admin/settings/register-settings.php:530
|
1460 |
+
msgid "enable?"
|
1461 |
+
msgstr "aktivera?"
|
1462 |
+
|
1463 |
+
#: includes/admin/class-setup-wizard.php:619
|
1464 |
+
#: includes/admin/class-setup-wizard.php:622
|
1465 |
+
#: includes/admin/settings/register-settings.php:505
|
1466 |
+
msgid "WPHeader and WPFooter"
|
1467 |
+
msgstr ""
|
1468 |
+
|
1469 |
+
#: includes/admin/class-setup-wizard.php:611
|
1470 |
+
#: includes/admin/settings/register-settings.php:267
|
1471 |
+
msgid "Publisher Logo should have a wide aspect ratio, not a square icon, it should be no wider than 600px, and no taller than 60px."
|
1472 |
+
msgstr ""
|
1473 |
+
|
1474 |
+
#: includes/admin/class-setup-wizard.php:605
|
1475 |
+
#: includes/admin/class-setup-wizard.php:610
|
1476 |
+
#: includes/admin/settings/register-settings.php:266
|
1477 |
+
msgid "Publisher Logo"
|
1478 |
+
msgstr ""
|
1479 |
+
|
1480 |
+
#: includes/admin/class-setup-wizard.php:595
|
1481 |
+
#: includes/admin/class-setup-wizard.php:598
|
1482 |
+
#: includes/admin/settings/register-settings.php:498
|
1483 |
+
msgid "Contact Page"
|
1484 |
+
msgstr "Kontaktsida"
|
1485 |
+
|
1486 |
+
#: includes/admin/class-setup-wizard.php:585
|
1487 |
+
#: includes/admin/class-setup-wizard.php:588
|
1488 |
+
#: includes/admin/settings/register-settings.php:491
|
1489 |
+
msgid "About Page"
|
1490 |
+
msgstr ""
|
1491 |
+
|
1492 |
+
#: includes/admin/class-setup-wizard.php:580
|
1493 |
+
msgid "Automatically, add additional schema.org markups to your website content."
|
1494 |
+
msgstr ""
|
1495 |
+
|
1496 |
+
#: includes/admin/class-setup-wizard.php:578
|
1497 |
+
msgid "Mark Up Your Content"
|
1498 |
+
msgstr ""
|
1499 |
+
|
1500 |
+
#: includes/admin/class-setup-wizard.php:552
|
1501 |
+
#: includes/admin/class-setup-wizard.php:555
|
1502 |
+
#: includes/admin/settings/register-settings.php:411
|
1503 |
+
msgid "Tumblr"
|
1504 |
+
msgstr "Tumblr"
|
1505 |
+
|
1506 |
+
#: includes/admin/class-setup-wizard.php:540
|
1507 |
+
#: includes/admin/class-setup-wizard.php:543
|
1508 |
+
#: includes/admin/settings/register-settings.php:403
|
1509 |
+
msgid "SoundCloud"
|
1510 |
+
msgstr "SoundCloud"
|
1511 |
+
|
1512 |
+
#: includes/admin/class-setup-wizard.php:528
|
1513 |
+
#: includes/admin/class-setup-wizard.php:531
|
1514 |
+
#: includes/admin/settings/register-settings.php:395
|
1515 |
+
msgid "Pinterest"
|
1516 |
+
msgstr "Pinterest"
|
1517 |
+
|
1518 |
+
#: includes/admin/class-setup-wizard.php:516
|
1519 |
+
#: includes/admin/class-setup-wizard.php:519
|
1520 |
+
#: includes/admin/settings/register-settings.php:387
|
1521 |
+
msgid "Myspace"
|
1522 |
+
msgstr "Myspace"
|
1523 |
+
|
1524 |
+
#: includes/admin/class-setup-wizard.php:507
|
1525 |
+
msgid "Linkedin"
|
1526 |
+
msgstr "Linkedin"
|
1527 |
+
|
1528 |
+
#: includes/admin/class-setup-wizard.php:504
|
1529 |
+
#: includes/admin/settings/register-settings.php:380
|
1530 |
+
msgid "LinkedIn"
|
1531 |
+
msgstr "LinkedIn"
|
1532 |
+
|
1533 |
+
#: includes/admin/class-setup-wizard.php:492
|
1534 |
+
#: includes/admin/class-setup-wizard.php:495
|
1535 |
+
#: includes/admin/settings/register-settings.php:372
|
1536 |
+
msgid "YouTube"
|
1537 |
+
msgstr "YouTube"
|
1538 |
+
|
1539 |
+
#: includes/admin/class-setup-wizard.php:480
|
1540 |
+
#: includes/admin/class-setup-wizard.php:483
|
1541 |
+
#: includes/admin/settings/register-settings.php:364
|
1542 |
+
msgid "Instagram"
|
1543 |
+
msgstr "Instagram"
|
1544 |
+
|
1545 |
+
#: includes/admin/class-setup-wizard.php:468
|
1546 |
+
#: includes/admin/class-setup-wizard.php:471
|
1547 |
+
#: includes/admin/settings/register-settings.php:356
|
1548 |
+
msgid "Google+"
|
1549 |
+
msgstr "Google+"
|
1550 |
+
|
1551 |
+
#: includes/admin/class-setup-wizard.php:456
|
1552 |
+
#: includes/admin/class-setup-wizard.php:459
|
1553 |
+
#: includes/admin/settings/register-settings.php:348
|
1554 |
+
msgid "Twitter"
|
1555 |
+
msgstr "Twitter"
|
1556 |
+
|
1557 |
+
#: includes/admin/class-setup-wizard.php:444
|
1558 |
+
#: includes/admin/class-setup-wizard.php:447
|
1559 |
+
#: includes/admin/settings/register-settings.php:340
|
1560 |
+
msgid "Facebook"
|
1561 |
+
msgstr "Facebook"
|
1562 |
+
|
1563 |
+
#: includes/admin/class-setup-wizard.php:439
|
1564 |
+
msgid "Knowledge panels prominently display your social profile information in some Google Search results."
|
1565 |
+
msgstr ""
|
1566 |
+
|
1567 |
+
#: includes/admin/class-setup-wizard.php:437
|
1568 |
+
#: includes/admin/settings/register-settings.php:335
|
1569 |
+
msgid "Provide your social profile information to a Google Knowledge panel."
|
1570 |
+
msgstr ""
|
1571 |
+
|
1572 |
+
#: includes/admin/class-setup-wizard.php:412
|
1573 |
+
#: includes/admin/class-setup-wizard.php:611
|
1574 |
+
#: includes/admin/settings/register-settings.php:267
|
1575 |
+
#: includes/admin/settings/register-settings.php:322
|
1576 |
+
msgid "Logo guidelines"
|
1577 |
+
msgstr ""
|
1578 |
+
|
1579 |
+
#: includes/admin/class-setup-wizard.php:412
|
1580 |
+
#: includes/admin/settings/register-settings.php:322
|
1581 |
+
msgid "Specify the image of your organization's logo to be used in Google Search results and in the Knowledge Graph.<br />Learn more about"
|
1582 |
+
msgstr ""
|
1583 |
+
|
1584 |
+
#: includes/admin/class-setup-wizard.php:411
|
1585 |
+
#: includes/admin/settings/register-settings.php:321
|
1586 |
+
msgid "Logo"
|
1587 |
+
msgstr "Logga"
|
1588 |
+
|
1589 |
+
#: includes/admin/class-setup-wizard.php:406
|
1590 |
+
msgid "Organization Logo"
|
1591 |
+
msgstr ""
|
1592 |
+
|
1593 |
+
#: includes/admin/class-setup-wizard.php:394
|
1594 |
+
#: includes/admin/class-setup-wizard.php:397
|
1595 |
+
#: includes/admin/post-type/schema-columns.php:19
|
1596 |
+
#: includes/admin/settings/register-settings.php:303
|
1597 |
+
msgid "Name"
|
1598 |
+
msgstr "Namn"
|
1599 |
+
|
1600 |
+
#: includes/admin/class-setup-wizard.php:383
|
1601 |
+
msgid "Organization or Person?"
|
1602 |
+
msgstr ""
|
1603 |
+
|
1604 |
+
#: includes/admin/class-setup-wizard.php:380
|
1605 |
+
#: includes/admin/settings/register-settings.php:289
|
1606 |
+
msgid "This Website Represent"
|
1607 |
+
msgstr ""
|
1608 |
+
|
1609 |
+
#: includes/admin/class-setup-wizard.php:375
|
1610 |
+
#: includes/admin/settings/register-settings.php:283
|
1611 |
+
msgid "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."
|
1612 |
+
msgstr ""
|
1613 |
+
|
1614 |
+
#: includes/admin/class-setup-wizard.php:373
|
1615 |
+
msgid "Does your site represent a Person or Organization?"
|
1616 |
+
msgstr ""
|
1617 |
+
|
1618 |
+
#: includes/admin/class-setup-wizard.php:371
|
1619 |
+
#: includes/admin/settings/register-settings.php:282
|
1620 |
+
msgid "Person or Organization"
|
1621 |
+
msgstr ""
|
1622 |
+
|
1623 |
+
#: includes/admin/class-setup-wizard.php:359
|
1624 |
+
#: includes/admin/class-setup-wizard.php:422
|
1625 |
+
#: includes/admin/class-setup-wizard.php:566
|
1626 |
+
#: includes/admin/class-setup-wizard.php:666
|
1627 |
+
msgid "Skip this step"
|
1628 |
+
msgstr "Hoppa över detta steg"
|
1629 |
+
|
1630 |
+
#: includes/admin/class-setup-wizard.php:358
|
1631 |
+
#: includes/admin/class-setup-wizard.php:421
|
1632 |
+
#: includes/admin/class-setup-wizard.php:565
|
1633 |
+
#: includes/admin/class-setup-wizard.php:665
|
1634 |
+
msgid "Continue"
|
1635 |
+
msgstr "Fortsätt"
|
1636 |
+
|
1637 |
+
#: includes/admin/class-setup-wizard.php:325
|
1638 |
+
msgid "This information can help us to prioritize future additions to our plugin for specific types of sites"
|
1639 |
+
msgstr ""
|
1640 |
+
|
1641 |
+
#: includes/admin/class-setup-wizard.php:323
|
1642 |
+
msgid "What is your site about?"
|
1643 |
+
msgstr "Vad handlar din webbplats om?"
|
1644 |
+
|
1645 |
+
#: includes/admin/class-setup-wizard.php:311
|
1646 |
+
msgid "Not right now"
|
1647 |
+
msgstr "Inte just nu"
|
1648 |
+
|
1649 |
+
#: includes/admin/class-setup-wizard.php:310
|
1650 |
+
msgid "Let's Go!"
|
1651 |
+
msgstr "Sätt igång!"
|
1652 |
+
|
1653 |
+
#: includes/admin/class-setup-wizard.php:308
|
1654 |
+
msgid "No time right now? If you don’t want to go through the wizard, you can skip and return to the WordPress dashboard. Come back anytime if you change your mind!"
|
1655 |
+
msgstr ""
|
1656 |
+
|
1657 |
+
#: includes/admin/class-setup-wizard.php:307
|
1658 |
+
msgid "Thank you for choosing Schema to power your website! This quick setup wizard will help you configure the basic settings. <strong>It’s completely optional and shouldn’t take longer than two minutes.</strong>"
|
1659 |
+
msgstr ""
|
1660 |
+
|
1661 |
+
#: includes/admin/class-setup-wizard.php:306
|
1662 |
+
msgid "Welcome to Schema!"
|
1663 |
+
msgstr "Välkommen till Schema!"
|
1664 |
+
|
1665 |
+
#: includes/admin/class-setup-wizard.php:245
|
1666 |
+
msgid "Return to the WordPress Dashboard"
|
1667 |
+
msgstr ""
|
1668 |
+
|
1669 |
+
#: includes/admin/class-setup-wizard.php:178
|
1670 |
+
msgid "Schema › Setup Wizard"
|
1671 |
+
msgstr ""
|
1672 |
+
|
1673 |
+
#: includes/admin/class-setup-wizard.php:141
|
1674 |
+
msgid "Ready!"
|
1675 |
+
msgstr ""
|
1676 |
+
|
1677 |
+
#: includes/admin/class-setup-wizard.php:136
|
1678 |
+
#: includes/admin/settings/register-settings.php:751
|
1679 |
+
msgid "Schemas"
|
1680 |
+
msgstr ""
|
1681 |
+
|
1682 |
+
#: includes/admin/class-setup-wizard.php:131
|
1683 |
+
#: includes/admin/class-setup-wizard.php:435
|
1684 |
+
#: includes/admin/settings/register-settings.php:334
|
1685 |
+
#: includes/admin/settings/register-settings.php:814
|
1686 |
+
msgid "Social Profiles"
|
1687 |
+
msgstr "Sociala profiler"
|
1688 |
+
|
1689 |
+
#: includes/admin/class-setup-wizard.php:126
|
1690 |
+
#: includes/admin/class-welcome.php:212
|
1691 |
+
#: includes/admin/settings/contextual-help.php:38
|
1692 |
+
#: includes/admin/settings/register-settings.php:749
|
1693 |
+
msgid "General"
|
1694 |
+
msgstr "Allmänt"
|
1695 |
+
|
1696 |
+
#: includes/admin/class-setup-wizard.php:121
|
1697 |
+
#: includes/admin/class-setup-wizard.php:321
|
1698 |
+
#: includes/admin/class-setup-wizard.php:333
|
1699 |
+
#: includes/admin/settings/register-settings.php:241
|
1700 |
+
msgid "Site Type"
|
1701 |
+
msgstr ""
|
1702 |
+
|
1703 |
+
#: includes/admin/class-setup-wizard.php:116
|
1704 |
+
msgid "Introduction"
|
1705 |
+
msgstr "Introduktion"
|
1706 |
+
|
1707 |
+
#: includes/admin/class-setup-wizard.php:82 includes/admin/scripts.php:25
|
1708 |
+
msgid "We are sorry but your browser is not compatible with this kind of file upload. Please upgrade your browser."
|
1709 |
+
msgstr ""
|
1710 |
+
|
1711 |
+
#: includes/admin/class-setup-wizard.php:80
|
1712 |
+
#: includes/admin/meta-tax/class-meta-tax.php:379
|
1713 |
+
#: includes/admin/meta-tax/class-meta-tax.php:426 includes/admin/scripts.php:23
|
1714 |
+
msgid "Remove"
|
1715 |
+
msgstr "Ta bort"
|
1716 |
+
|
1717 |
+
#: includes/admin/class-setup-wizard.php:79 includes/admin/scripts.php:22
|
1718 |
+
msgid "Use This File"
|
1719 |
+
msgstr "Använd denna fil"
|
1720 |
+
|
1721 |
+
#: includes/admin/class-setup-wizard.php:61
|
1722 |
+
msgctxt "enhanced select"
|
1723 |
+
msgid "Searching…"
|
1724 |
+
msgstr "Söker…"
|
1725 |
+
|
1726 |
+
#: includes/admin/class-setup-wizard.php:60
|
1727 |
+
msgctxt "enhanced select"
|
1728 |
+
msgid "Loading more results…"
|
1729 |
+
msgstr ""
|
1730 |
+
|
1731 |
+
#: includes/admin/class-setup-wizard.php:59
|
1732 |
+
msgctxt "enhanced select"
|
1733 |
+
msgid "You can only select %qty% items"
|
1734 |
+
msgstr ""
|
1735 |
+
|
1736 |
+
#: includes/admin/class-setup-wizard.php:58
|
1737 |
+
msgctxt "enhanced select"
|
1738 |
+
msgid "You can only select 1 item"
|
1739 |
+
msgstr ""
|
1740 |
+
|
1741 |
+
#: includes/admin/class-setup-wizard.php:57
|
1742 |
+
msgctxt "enhanced select"
|
1743 |
+
msgid "Please delete %qty% characters"
|
1744 |
+
msgstr ""
|
1745 |
+
|
1746 |
+
#: includes/admin/class-setup-wizard.php:56
|
1747 |
+
msgctxt "enhanced select"
|
1748 |
+
msgid "Please delete 1 character"
|
1749 |
+
msgstr ""
|
1750 |
+
|
1751 |
+
#: includes/admin/class-setup-wizard.php:55
|
1752 |
+
msgctxt "enhanced select"
|
1753 |
+
msgid "Please enter %qty% or more characters"
|
1754 |
+
msgstr ""
|
1755 |
+
|
1756 |
+
#: includes/admin/class-setup-wizard.php:54
|
1757 |
+
msgctxt "enhanced select"
|
1758 |
+
msgid "Please enter 1 or more characters"
|
1759 |
+
msgstr ""
|
1760 |
+
|
1761 |
+
#: includes/admin/class-setup-wizard.php:53
|
1762 |
+
msgctxt "enhanced select"
|
1763 |
+
msgid "Loading failed"
|
1764 |
+
msgstr ""
|
1765 |
+
|
1766 |
+
#: includes/admin/class-setup-wizard.php:52
|
1767 |
+
msgctxt "enhanced select"
|
1768 |
+
msgid "No matches found"
|
1769 |
+
msgstr ""
|
1770 |
+
|
1771 |
+
#: includes/admin/class-setup-wizard.php:51
|
1772 |
+
msgctxt "enhanced select"
|
1773 |
+
msgid "%qty% results are available, use up and down arrow keys to navigate."
|
1774 |
+
msgstr ""
|
1775 |
+
|
1776 |
+
#: includes/admin/class-setup-wizard.php:50
|
1777 |
+
msgctxt "enhanced select"
|
1778 |
+
msgid "One result is available, press enter to select it."
|
1779 |
+
msgstr ""
|
1780 |
+
|
1781 |
+
#: includes/admin/class-notices.php:50
|
1782 |
+
#: includes/admin/updater/class-license-handler.php:319
|
1783 |
+
#: includes/admin/updater/class-updater.php:402
|
1784 |
+
msgid "Error"
|
1785 |
+
msgstr "Fel"
|
1786 |
+
|
1787 |
+
#: includes/admin/class-notices.php:50
|
1788 |
+
msgid "Security check failed"
|
1789 |
+
msgstr ""
|
1790 |
+
|
1791 |
+
#: includes/admin/class-notices.php:29
|
1792 |
+
msgid "Settings successfully imported"
|
1793 |
+
msgstr ""
|
1794 |
+
|
1795 |
+
#: includes/admin/class-notices.php:17
|
1796 |
+
#: includes/admin/settings/register-settings.php:645
|
1797 |
+
msgid "Settings updated."
|
1798 |
+
msgstr "Inställningar uppdaterade."
|
1799 |
+
|
1800 |
+
#: includes/admin/class-menu.php:78 includes/admin/class-menu.php:79
|
1801 |
+
msgid "About"
|
1802 |
+
msgstr "Om"
|
1803 |
+
|
1804 |
+
#: includes/admin/class-menu.php:66 includes/admin/class-menu.php:67
|
1805 |
+
#: includes/admin/settings/contextual-help.php:56
|
1806 |
+
#: includes/admin/settings/register-settings.php:754
|
1807 |
+
msgid "Extensions"
|
1808 |
+
msgstr "Utökningar"
|
1809 |
+
|
1810 |
+
#: includes/admin/class-menu.php:55 includes/admin/class-menu.php:56
|
1811 |
+
msgid "Types"
|
1812 |
+
msgstr "Typer"
|
1813 |
+
|
1814 |
+
#: includes/admin/class-menu.php:39
|
1815 |
+
msgid "Settings"
|
1816 |
+
msgstr "Inställningar"
|
1817 |
+
|
1818 |
+
#: includes/admin/class-menu.php:38 includes/admin/meta.php:271
|
1819 |
+
msgid "Schema Settings"
|
1820 |
+
msgstr "Inställningar för Schema"
|
1821 |
+
|
1822 |
+
#. #-#-#-#-# schema-code.pot (Schema 1.7) #-#-#-#-#
|
1823 |
+
#. Plugin Name of the plugin/theme
|
1824 |
+
#: includes/admin/class-feedback.php:289 includes/admin/class-menu.php:29
|
1825 |
+
#: includes/admin/class-menu.php:30 includes/admin/meta-tax.php:25
|
1826 |
+
#: includes/admin/meta.php:149 includes/admin/settings/display-settings.php:65
|
1827 |
+
#: includes/extensions/post-meta-generator.php:160
|
1828 |
+
msgid "Schema"
|
1829 |
+
msgstr "Schema"
|
1830 |
+
|
1831 |
+
#: includes/admin/class-feedback.php:241
|
1832 |
+
msgid "No thanks"
|
1833 |
+
msgstr "Nej tack"
|
1834 |
+
|
1835 |
+
#: includes/admin/class-feedback.php:238
|
1836 |
+
msgid "Leave Feedback"
|
1837 |
+
msgstr "Lämna feedback"
|
1838 |
+
|
1839 |
+
#: includes/admin/class-feedback.php:232
|
1840 |
+
msgid "your feedback"
|
1841 |
+
msgstr "din feedback"
|
1842 |
+
|
1843 |
+
#: includes/admin/class-feedback.php:232
|
1844 |
+
msgid "Let us know what you think about the plugin, what is missing, and how we can make it better. Leave us a review with"
|
1845 |
+
msgstr ""
|
1846 |
+
|
1847 |
+
#: includes/admin/class-feedback.php:230
|
1848 |
+
msgid "You have been using the %s plugin for %s now!"
|
1849 |
+
msgstr ""
|
1850 |
+
|
1851 |
+
#: includes/admin/class-feedback.php:228
|
1852 |
+
msgid "How do you like Schema?"
|
1853 |
+
msgstr ""
|
1854 |
+
|
1855 |
+
#: includes/admin/class-feedback.php:100
|
1856 |
+
msgid "a second"
|
1857 |
+
msgstr "en sekund"
|
1858 |
+
|
1859 |
+
#: includes/admin/class-feedback.php:98
|
1860 |
+
msgid "%s seconds"
|
1861 |
+
msgstr "%s sekunder"
|
1862 |
+
|
1863 |
+
#: includes/admin/class-feedback.php:92
|
1864 |
+
msgid "a minute"
|
1865 |
+
msgstr "en minut"
|
1866 |
+
|
1867 |
+
#: includes/admin/class-feedback.php:90
|
1868 |
+
msgid "%s minutes"
|
1869 |
+
msgstr "%s minuter"
|
1870 |
+
|
1871 |
+
#: includes/admin/class-feedback.php:84
|
1872 |
+
msgid "an hour"
|
1873 |
+
msgstr "en timme"
|
1874 |
+
|
1875 |
+
#: includes/admin/class-feedback.php:82
|
1876 |
+
msgid "%s hours"
|
1877 |
+
msgstr "%s timmar"
|
1878 |
+
|
1879 |
+
#: includes/admin/class-feedback.php:76
|
1880 |
+
msgid "a day"
|
1881 |
+
msgstr "en dag"
|
1882 |
+
|
1883 |
+
#: includes/admin/class-feedback.php:74
|
1884 |
+
msgid "%s days"
|
1885 |
+
msgstr "%s dagar"
|
1886 |
+
|
1887 |
+
#: includes/admin/class-feedback.php:68
|
1888 |
+
msgid "a week"
|
1889 |
+
msgstr "en vecka"
|
1890 |
+
|
1891 |
+
#: includes/admin/class-feedback.php:66
|
1892 |
+
msgid "%s weeks"
|
1893 |
+
msgstr "%s veckor"
|
1894 |
+
|
1895 |
+
#: includes/admin/class-feedback.php:60
|
1896 |
+
msgid "a year"
|
1897 |
+
msgstr "ett år"
|
1898 |
+
|
1899 |
+
#: includes/admin/class-feedback.php:58
|
1900 |
+
msgid "%s years"
|
1901 |
+
msgstr "%s år"
|
1902 |
+
|
1903 |
+
#: includes/admin/admin-functions.php:163
|
1904 |
+
msgid "Package Tracking"
|
1905 |
+
msgstr "Paketspårning"
|
1906 |
+
|
1907 |
+
#: includes/admin/admin-functions.php:162
|
1908 |
+
msgid "Roadside Assistance"
|
1909 |
+
msgstr ""
|
1910 |
+
|
1911 |
+
#: includes/admin/admin-functions.php:161
|
1912 |
+
msgid "Baggage Tracking"
|
1913 |
+
msgstr ""
|
1914 |
+
|
1915 |
+
#: includes/admin/admin-functions.php:160
|
1916 |
+
msgid "Emergency"
|
1917 |
+
msgstr ""
|
1918 |
+
|
1919 |
+
#: includes/admin/admin-functions.php:159
|
1920 |
+
msgid "Credit Card Support"
|
1921 |
+
msgstr ""
|
1922 |
+
|
1923 |
+
#: includes/admin/admin-functions.php:158
|
1924 |
+
msgid "Reservations"
|
1925 |
+
msgstr ""
|
1926 |
+
|
1927 |
+
#: includes/admin/admin-functions.php:157
|
1928 |
+
msgid "Sales"
|
1929 |
+
msgstr "Rea"
|
1930 |
+
|
1931 |
+
#: includes/admin/admin-functions.php:156
|
1932 |
+
msgid "Bill Payment"
|
1933 |
+
msgstr ""
|
1934 |
+
|
1935 |
+
#: includes/admin/admin-functions.php:155
|
1936 |
+
msgid "Billing Support"
|
1937 |
+
msgstr ""
|
1938 |
+
|
1939 |
+
#: includes/admin/admin-functions.php:154
|
1940 |
+
msgid "Technical Support"
|
1941 |
+
msgstr "Teknisk support"
|
1942 |
+
|
1943 |
+
#: includes/admin/admin-functions.php:153
|
1944 |
+
msgid "Customer Support"
|
1945 |
+
msgstr "Kundsupport"
|
1946 |
+
|
1947 |
+
#: includes/admin/admin-bar-menu.php:43
|
1948 |
+
msgid "_blank"
|
1949 |
+
msgstr "_blank"
|
1950 |
+
|
1951 |
+
#: includes/admin/admin-bar-menu.php:41
|
1952 |
+
msgid "Structured Data Testing Tool"
|
1953 |
+
msgstr ""
|
languages/schema-wp.pot
ADDED
@@ -0,0 +1,1843 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#, fuzzy
|
2 |
+
msgid ""
|
3 |
+
msgstr ""
|
4 |
+
"Project-Id-Version: Schema\n"
|
5 |
+
"Report-Msgid-Bugs-To: \n"
|
6 |
+
"POT-Creation-Date: 2019-11-27 14:34+0000\n"
|
7 |
+
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
8 |
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
9 |
+
"Language-Team: \n"
|
10 |
+
"Language: \n"
|
11 |
+
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
12 |
+
"MIME-Version: 1.0\n"
|
13 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
+
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"X-Generator: Loco https://localise.biz/\n"
|
16 |
+
"X-Loco-Version: 2.3.1; wp-5.3"
|
17 |
+
|
18 |
+
#: includes/admin/meta.php:249
|
19 |
+
msgid ""
|
20 |
+
" <a class=\"button button-large\" target=\"_blank\" href=\"https://schema."
|
21 |
+
"press/downloads/schema-premium/\">Get Schema Premium</a>"
|
22 |
+
msgstr ""
|
23 |
+
|
24 |
+
#: includes/json/category.php:108
|
25 |
+
msgid " Category"
|
26 |
+
msgstr ""
|
27 |
+
|
28 |
+
#: includes/json/tag.php:84
|
29 |
+
msgid " Tag"
|
30 |
+
msgstr ""
|
31 |
+
|
32 |
+
#: includes/admin/updater/class-license-handler.php:168
|
33 |
+
#, php-format
|
34 |
+
msgid "%1$s"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: includes/admin/settings/contextual-help.php:29
|
38 |
+
#, php-format
|
39 |
+
msgid ""
|
40 |
+
"<a href=\"%s\">Post an issue</a> on <a href=\"%s\">GitHub</a>. View <a "
|
41 |
+
"href=\"%s\">extensions</a>"
|
42 |
+
msgstr ""
|
43 |
+
|
44 |
+
#: includes/admin/settings/contextual-help.php:65
|
45 |
+
msgid "A description of all the options are provided beside their input boxes."
|
46 |
+
msgstr ""
|
47 |
+
|
48 |
+
#: includes/admin/class-menu.php:79 includes/admin/class-menu.php:80
|
49 |
+
msgid "About"
|
50 |
+
msgstr ""
|
51 |
+
|
52 |
+
#: includes/admin/class-setup-wizard.php:595
|
53 |
+
#: includes/admin/class-setup-wizard.php:598
|
54 |
+
msgid "About Page"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: includes/admin/class-welcome.php:246
|
58 |
+
msgid "AboutPage"
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: includes/admin/post-type/schema-post-type.php:28
|
62 |
+
msgctxt "add new on admin bar"
|
63 |
+
msgid "Schema"
|
64 |
+
msgstr ""
|
65 |
+
|
66 |
+
#: includes/admin/post-type/schema-post-type.php:30
|
67 |
+
msgid "Add New Schema"
|
68 |
+
msgstr ""
|
69 |
+
|
70 |
+
#: includes/admin/meta.php:170
|
71 |
+
msgid "Add post meta key name as source"
|
72 |
+
msgstr ""
|
73 |
+
|
74 |
+
#: includes/admin/post-type/schema-post-type.php:27
|
75 |
+
msgctxt "admin menu"
|
76 |
+
msgid "Schema"
|
77 |
+
msgstr ""
|
78 |
+
|
79 |
+
#: includes/admin/settings/contextual-help.php:62
|
80 |
+
#: includes/admin/meta/class-meta.php:64
|
81 |
+
msgid "Advanced"
|
82 |
+
msgstr ""
|
83 |
+
|
84 |
+
#: includes/admin/post-type/schema-post-type.php:34
|
85 |
+
msgid "All Schemas"
|
86 |
+
msgstr ""
|
87 |
+
|
88 |
+
#: includes/admin/class-welcome.php:297
|
89 |
+
msgid "Also, you can set Schema to work on specific post categories."
|
90 |
+
msgstr ""
|
91 |
+
|
92 |
+
#: includes/admin/meta.php:41 includes/admin/meta.php:42
|
93 |
+
#: includes/admin/meta.php:266 includes/admin/class-welcome.php:210
|
94 |
+
msgid "Article"
|
95 |
+
msgstr ""
|
96 |
+
|
97 |
+
#: includes/admin/meta.php:65
|
98 |
+
msgid "Article Type"
|
99 |
+
msgstr ""
|
100 |
+
|
101 |
+
#: includes/extensions/audio-object.php:115
|
102 |
+
msgid "Audio duration, example: if duration is 1 Hour 35 MIN, use: PT1H35M"
|
103 |
+
msgstr ""
|
104 |
+
|
105 |
+
#: includes/extensions/audio-object.php:36
|
106 |
+
msgid "Audio Markups"
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
+
#: includes/extensions/audio-object.php:122
|
110 |
+
msgid "Audio short description."
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#: includes/extensions/audio-object.php:101
|
114 |
+
msgid "Audio title"
|
115 |
+
msgstr ""
|
116 |
+
|
117 |
+
#: includes/extensions/audio-object.php:108
|
118 |
+
msgid "Audio upload date in ISO 8601 format YYYY-MM-DD example: 2016-06-23"
|
119 |
+
msgstr ""
|
120 |
+
|
121 |
+
#: includes/admin/class-setup-wizard.php:665
|
122 |
+
#: includes/admin/class-setup-wizard.php:668
|
123 |
+
msgid "AudioObject"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: includes/misc-functions.php:680
|
127 |
+
msgid "Australian Dollars"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: includes/admin/class-welcome.php:254
|
131 |
+
msgid "author archive"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: includes/admin/meta.php:153
|
135 |
+
msgid "Author Name"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: includes/admin/class-welcome.php:305
|
139 |
+
msgid "Automatically add AudioObject to oEmbed"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: includes/admin/class-welcome.php:301
|
143 |
+
msgid "Automatically add VideoObject to oEmbed"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: includes/admin/class-setup-wizard.php:590
|
147 |
+
msgid ""
|
148 |
+
"Automatically, add additional schema.org markups to your website content."
|
149 |
+
msgstr ""
|
150 |
+
|
151 |
+
#: includes/admin/admin-functions.php:161
|
152 |
+
msgid "Baggage Tracking"
|
153 |
+
msgstr ""
|
154 |
+
|
155 |
+
#: includes/misc-functions.php:681
|
156 |
+
msgid "Bangladeshi Taka"
|
157 |
+
msgstr ""
|
158 |
+
|
159 |
+
#: includes/admin/admin-functions.php:156
|
160 |
+
msgid "Bill Payment"
|
161 |
+
msgstr ""
|
162 |
+
|
163 |
+
#: includes/admin/admin-functions.php:155
|
164 |
+
msgid "Billing Support"
|
165 |
+
msgstr ""
|
166 |
+
|
167 |
+
#: includes/admin/class-welcome.php:222
|
168 |
+
msgid "Blog"
|
169 |
+
msgstr ""
|
170 |
+
|
171 |
+
#: includes/admin/class-welcome.php:213
|
172 |
+
msgid "BlogPosting"
|
173 |
+
msgstr ""
|
174 |
+
|
175 |
+
#: includes/misc-functions.php:682
|
176 |
+
msgid "Brazilian Real"
|
177 |
+
msgstr ""
|
178 |
+
|
179 |
+
#: includes/admin/class-welcome.php:234
|
180 |
+
msgid "BreadcrumbList"
|
181 |
+
msgstr ""
|
182 |
+
|
183 |
+
#: includes/admin/class-setup-wizard.php:638
|
184 |
+
#: includes/admin/class-setup-wizard.php:641
|
185 |
+
msgid "Breadcrumbs"
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: includes/admin/extensions.php:43 includes/admin/extensions.php:61
|
189 |
+
#: includes/admin/extensions.php:61
|
190 |
+
msgid "Browse all extensions"
|
191 |
+
msgstr ""
|
192 |
+
|
193 |
+
#: includes/misc-functions.php:683
|
194 |
+
msgid "Bulgarian Lev"
|
195 |
+
msgstr ""
|
196 |
+
|
197 |
+
#: includes/misc-functions.php:684
|
198 |
+
msgid "Canadian Dollars"
|
199 |
+
msgstr ""
|
200 |
+
|
201 |
+
#: includes/admin/meta.php:206
|
202 |
+
msgid "Checkbox"
|
203 |
+
msgstr ""
|
204 |
+
|
205 |
+
#: includes/misc-functions.php:685
|
206 |
+
msgid "Chilean Peso"
|
207 |
+
msgstr ""
|
208 |
+
|
209 |
+
#: includes/misc-functions.php:686
|
210 |
+
msgid "Chinese Yuan"
|
211 |
+
msgstr ""
|
212 |
+
|
213 |
+
#: includes/admin/class-welcome.php:238 includes/admin/class-welcome.php:242
|
214 |
+
msgid "CollectionPage"
|
215 |
+
msgstr ""
|
216 |
+
|
217 |
+
#: includes/misc-functions.php:687
|
218 |
+
msgid "Colombian Peso"
|
219 |
+
msgstr ""
|
220 |
+
|
221 |
+
#: includes/admin/class-setup-wizard.php:647
|
222 |
+
#: includes/admin/class-setup-wizard.php:650
|
223 |
+
msgid "Comments"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: includes/admin/class-setup-wizard.php:698
|
227 |
+
msgid "Configure Your Schema Types!"
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: includes/admin/class-setup-wizard.php:605
|
231 |
+
#: includes/admin/class-setup-wizard.php:608
|
232 |
+
msgid "Contact Page"
|
233 |
+
msgstr ""
|
234 |
+
|
235 |
+
#: includes/admin/settings/register-settings.php:424
|
236 |
+
msgid "Contact Type"
|
237 |
+
msgstr ""
|
238 |
+
|
239 |
+
#: includes/admin/class-welcome.php:250
|
240 |
+
msgid "ContactPage"
|
241 |
+
msgstr ""
|
242 |
+
|
243 |
+
#: includes/admin/post-type/schema-columns.php:51
|
244 |
+
msgid "Content"
|
245 |
+
msgstr ""
|
246 |
+
|
247 |
+
#: includes/admin/class-setup-wizard.php:368
|
248 |
+
#: includes/admin/class-setup-wizard.php:431
|
249 |
+
#: includes/admin/class-setup-wizard.php:575
|
250 |
+
#: includes/admin/class-setup-wizard.php:675
|
251 |
+
msgid "Continue"
|
252 |
+
msgstr ""
|
253 |
+
|
254 |
+
#: includes/admin/class-welcome.php:280
|
255 |
+
msgid "Correct Genesis Schema Markup"
|
256 |
+
msgstr ""
|
257 |
+
|
258 |
+
#: includes/admin/meta.php:179
|
259 |
+
msgid "Create custom post meta field?"
|
260 |
+
msgstr ""
|
261 |
+
|
262 |
+
#: includes/admin/meta.php:180
|
263 |
+
msgid "Create Field?"
|
264 |
+
msgstr ""
|
265 |
+
|
266 |
+
#: includes/admin/post-type/schema-post-type.php:172
|
267 |
+
msgid "Create Schema"
|
268 |
+
msgstr ""
|
269 |
+
|
270 |
+
#: includes/admin/meta.php:178
|
271 |
+
msgid "Create?"
|
272 |
+
msgstr ""
|
273 |
+
|
274 |
+
#: includes/admin/admin-functions.php:159
|
275 |
+
msgid "Credit Card Support"
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
+
#: includes/admin/class-welcome.php:167
|
279 |
+
msgid "Credits"
|
280 |
+
msgstr ""
|
281 |
+
|
282 |
+
#: includes/misc-functions.php:693
|
283 |
+
msgid "Croatia kuna"
|
284 |
+
msgstr ""
|
285 |
+
|
286 |
+
#: includes/admin/post-type/schema-post-type.php:93
|
287 |
+
msgid "Custom field deleted."
|
288 |
+
msgstr ""
|
289 |
+
|
290 |
+
#: includes/admin/post-type/schema-post-type.php:92
|
291 |
+
msgid "Custom field updated."
|
292 |
+
msgstr ""
|
293 |
+
|
294 |
+
#: includes/admin/admin-functions.php:153
|
295 |
+
msgid "Customer Support"
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: includes/misc-functions.php:688
|
299 |
+
msgid "Czech Koruna"
|
300 |
+
msgstr ""
|
301 |
+
|
302 |
+
#: includes/misc-functions.php:689
|
303 |
+
msgid "Danish Krone"
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: includes/admin/meta.php:161 includes/admin/meta.php:223
|
307 |
+
#: includes/extensions/audio-object.php:121
|
308 |
+
#: includes/extensions/video-object.php:121
|
309 |
+
msgid "Description"
|
310 |
+
msgstr ""
|
311 |
+
|
312 |
+
#: includes/admin/meta.php:227
|
313 |
+
msgid "Description for this field"
|
314 |
+
msgstr ""
|
315 |
+
|
316 |
+
#: includes/admin/post-type/schema-post-type.php:43
|
317 |
+
msgid "Description."
|
318 |
+
msgstr ""
|
319 |
+
|
320 |
+
#: includes/integrations/yoast-seo.php:77
|
321 |
+
msgid "Disable Duplicate Features that Yoast SEO Offers?"
|
322 |
+
msgstr ""
|
323 |
+
|
324 |
+
#: includes/admin/class-welcome.php:365
|
325 |
+
msgid ""
|
326 |
+
"Docs are on its way! We will update <a href=\"http://schema.press/\">schema."
|
327 |
+
"press</a> site with plugin documentation soon."
|
328 |
+
msgstr ""
|
329 |
+
|
330 |
+
#: includes/admin/class-welcome.php:364
|
331 |
+
msgid "Documentation"
|
332 |
+
msgstr ""
|
333 |
+
|
334 |
+
#: includes/admin/class-setup-wizard.php:383
|
335 |
+
msgid "Does your site represent a Person or Organization?"
|
336 |
+
msgstr ""
|
337 |
+
|
338 |
+
#: includes/misc-functions.php:690
|
339 |
+
msgid "Dominican Peso"
|
340 |
+
msgstr ""
|
341 |
+
|
342 |
+
#: includes/extensions/audio-object.php:114
|
343 |
+
#: includes/extensions/video-object.php:114
|
344 |
+
msgid "Duration"
|
345 |
+
msgstr ""
|
346 |
+
|
347 |
+
#: includes/admin/post-type/schema-post-type.php:32
|
348 |
+
msgid "Edit Schema"
|
349 |
+
msgstr ""
|
350 |
+
|
351 |
+
#: includes/misc-functions.php:723
|
352 |
+
msgid "Egyptian Pound"
|
353 |
+
msgstr ""
|
354 |
+
|
355 |
+
#: includes/admin/admin-functions.php:160
|
356 |
+
msgid "Emergency"
|
357 |
+
msgstr ""
|
358 |
+
|
359 |
+
#: includes/admin/meta.php:50
|
360 |
+
msgid "Enable custom post meta box"
|
361 |
+
msgstr ""
|
362 |
+
|
363 |
+
#: includes/admin/meta.php:51
|
364 |
+
msgid "Enable post meta box?"
|
365 |
+
msgstr ""
|
366 |
+
|
367 |
+
#: includes/admin/settings/register-settings.php:463
|
368 |
+
msgid "Enable Site Name?"
|
369 |
+
msgstr ""
|
370 |
+
|
371 |
+
#: includes/admin/settings/register-settings.php:454
|
372 |
+
msgid "Enable Sitelinks Search Box?"
|
373 |
+
msgstr ""
|
374 |
+
|
375 |
+
#: includes/admin/class-setup-wizard.php:633
|
376 |
+
#: includes/admin/class-setup-wizard.php:642
|
377 |
+
#: includes/admin/class-setup-wizard.php:651
|
378 |
+
#: includes/admin/class-setup-wizard.php:660
|
379 |
+
#: includes/admin/class-setup-wizard.php:669
|
380 |
+
#: includes/admin/settings/register-settings.php:546
|
381 |
+
msgid "enable?"
|
382 |
+
msgstr ""
|
383 |
+
|
384 |
+
#: includes/admin/meta.php:108
|
385 |
+
msgid "Enabled on specific custom post types"
|
386 |
+
msgstr ""
|
387 |
+
|
388 |
+
#: includes/admin/class-setup-wizard.php:52
|
389 |
+
msgctxt "enhanced select"
|
390 |
+
msgid "%qty% results are available, use up and down arrow keys to navigate."
|
391 |
+
msgstr ""
|
392 |
+
|
393 |
+
#: includes/admin/class-setup-wizard.php:54
|
394 |
+
msgctxt "enhanced select"
|
395 |
+
msgid "Loading failed"
|
396 |
+
msgstr ""
|
397 |
+
|
398 |
+
#: includes/admin/class-setup-wizard.php:61
|
399 |
+
msgctxt "enhanced select"
|
400 |
+
msgid "Loading more results…"
|
401 |
+
msgstr ""
|
402 |
+
|
403 |
+
#: includes/admin/class-setup-wizard.php:53
|
404 |
+
msgctxt "enhanced select"
|
405 |
+
msgid "No matches found"
|
406 |
+
msgstr ""
|
407 |
+
|
408 |
+
#: includes/admin/class-setup-wizard.php:51
|
409 |
+
msgctxt "enhanced select"
|
410 |
+
msgid "One result is available, press enter to select it."
|
411 |
+
msgstr ""
|
412 |
+
|
413 |
+
#: includes/admin/class-setup-wizard.php:58
|
414 |
+
msgctxt "enhanced select"
|
415 |
+
msgid "Please delete %qty% characters"
|
416 |
+
msgstr ""
|
417 |
+
|
418 |
+
#: includes/admin/class-setup-wizard.php:57
|
419 |
+
msgctxt "enhanced select"
|
420 |
+
msgid "Please delete 1 character"
|
421 |
+
msgstr ""
|
422 |
+
|
423 |
+
#: includes/admin/class-setup-wizard.php:56
|
424 |
+
msgctxt "enhanced select"
|
425 |
+
msgid "Please enter %qty% or more characters"
|
426 |
+
msgstr ""
|
427 |
+
|
428 |
+
#: includes/admin/class-setup-wizard.php:55
|
429 |
+
msgctxt "enhanced select"
|
430 |
+
msgid "Please enter 1 or more characters"
|
431 |
+
msgstr ""
|
432 |
+
|
433 |
+
#: includes/admin/class-setup-wizard.php:62
|
434 |
+
msgctxt "enhanced select"
|
435 |
+
msgid "Searching…"
|
436 |
+
msgstr ""
|
437 |
+
|
438 |
+
#: includes/admin/class-setup-wizard.php:60
|
439 |
+
msgctxt "enhanced select"
|
440 |
+
msgid "You can only select %qty% items"
|
441 |
+
msgstr ""
|
442 |
+
|
443 |
+
#: includes/admin/class-setup-wizard.php:59
|
444 |
+
msgctxt "enhanced select"
|
445 |
+
msgid "You can only select 1 item"
|
446 |
+
msgstr ""
|
447 |
+
|
448 |
+
#: includes/extensions/sameAs.php:41
|
449 |
+
msgid "Enter sameAs URLs, one per line."
|
450 |
+
msgstr ""
|
451 |
+
|
452 |
+
#: includes/admin/updater/class-license-handler.php:475
|
453 |
+
msgid "Enter valid license key for automatic updates."
|
454 |
+
msgstr ""
|
455 |
+
|
456 |
+
#: includes/admin/updater/class-license-handler.php:204
|
457 |
+
#, php-format
|
458 |
+
msgid ""
|
459 |
+
"Enter your extension license keys here to receive updates for purchased "
|
460 |
+
"extensions. If your license key has expired, please <a href=\"%s\" "
|
461 |
+
"target=\"_blank\">renew your license</a>."
|
462 |
+
msgstr ""
|
463 |
+
|
464 |
+
#: includes/admin/class-notices.php:53
|
465 |
+
#: includes/admin/updater/class-license-handler.php:319
|
466 |
+
msgid "Error"
|
467 |
+
msgstr ""
|
468 |
+
|
469 |
+
#: includes/misc-functions.php:691
|
470 |
+
msgid "Euros"
|
471 |
+
msgstr ""
|
472 |
+
|
473 |
+
#: includes/admin/class-menu.php:67 includes/admin/class-menu.php:68
|
474 |
+
#: includes/admin/settings/contextual-help.php:56
|
475 |
+
msgid "Extensions"
|
476 |
+
msgstr ""
|
477 |
+
|
478 |
+
#: includes/admin/extensions.php:41
|
479 |
+
msgid "Extensions for Schema"
|
480 |
+
msgstr ""
|
481 |
+
|
482 |
+
#: includes/admin/class-setup-wizard.php:454
|
483 |
+
#: includes/admin/class-setup-wizard.php:457
|
484 |
+
#: includes/admin/settings/register-settings.php:341
|
485 |
+
msgid "Facebook"
|
486 |
+
msgstr ""
|
487 |
+
|
488 |
+
#: includes/integrations/yoast-seo.php:81
|
489 |
+
msgid ""
|
490 |
+
"Features that will be disabled:<br /><ol><li>Organization/Person</li><li>"
|
491 |
+
"Social Profiles</li><li>Corporate Contacts\n"
|
492 |
+
"</li><li>Breadcrumb</li><li>Sitelink Search Box</li></ol>"
|
493 |
+
msgstr ""
|
494 |
+
|
495 |
+
#: includes/admin/meta.php:224
|
496 |
+
msgid "Field description"
|
497 |
+
msgstr ""
|
498 |
+
|
499 |
+
#: includes/admin/meta.php:215
|
500 |
+
msgid "Field label"
|
501 |
+
msgstr ""
|
502 |
+
|
503 |
+
#: includes/admin/meta.php:132 includes/admin/meta/class-meta.php:346
|
504 |
+
msgid "Fields"
|
505 |
+
msgstr ""
|
506 |
+
|
507 |
+
#: includes/admin/meta.php:145
|
508 |
+
msgid "Filter"
|
509 |
+
msgstr ""
|
510 |
+
|
511 |
+
#: includes/admin/class-welcome.php:196
|
512 |
+
msgid "First-time Schema configuration!"
|
513 |
+
msgstr ""
|
514 |
+
|
515 |
+
#: includes/admin/class-welcome.php:222
|
516 |
+
msgid "for Blog posts list page"
|
517 |
+
msgstr ""
|
518 |
+
|
519 |
+
#: includes/admin/class-welcome.php:234
|
520 |
+
msgid "for Breadcrumbs"
|
521 |
+
msgstr ""
|
522 |
+
|
523 |
+
#: includes/admin/class-welcome.php:238
|
524 |
+
msgid "for Categories"
|
525 |
+
msgstr ""
|
526 |
+
|
527 |
+
#: includes/admin/settings/contextual-help.php:26
|
528 |
+
msgid "For more information:"
|
529 |
+
msgstr ""
|
530 |
+
|
531 |
+
#: includes/admin/class-welcome.php:242
|
532 |
+
msgid "for Tags"
|
533 |
+
msgstr ""
|
534 |
+
|
535 |
+
#: includes/admin/class-welcome.php:246
|
536 |
+
msgid "for the about page"
|
537 |
+
msgstr ""
|
538 |
+
|
539 |
+
#: includes/admin/class-welcome.php:250
|
540 |
+
msgid "for the contact page"
|
541 |
+
msgstr ""
|
542 |
+
|
543 |
+
#: includes/admin/class-welcome.php:230
|
544 |
+
msgid "for Web Page Footer"
|
545 |
+
msgstr ""
|
546 |
+
|
547 |
+
#: includes/admin/class-welcome.php:226
|
548 |
+
msgid "for Web Page Header"
|
549 |
+
msgstr ""
|
550 |
+
|
551 |
+
#: includes/admin/class-setup-wizard.php:136
|
552 |
+
#: includes/admin/class-welcome.php:212
|
553 |
+
#: includes/admin/settings/register-settings.php:1020
|
554 |
+
#: includes/admin/settings/contextual-help.php:38
|
555 |
+
msgid "General"
|
556 |
+
msgstr ""
|
557 |
+
|
558 |
+
#: includes/admin/extensions.php:124
|
559 |
+
msgid "Get Schema Premium"
|
560 |
+
msgstr ""
|
561 |
+
|
562 |
+
#: includes/admin/class-welcome.php:197
|
563 |
+
msgid "Get started quickly with the Schema configuration wizard!"
|
564 |
+
msgstr ""
|
565 |
+
|
566 |
+
#: includes/admin/extensions.php:124
|
567 |
+
msgid "Get this Extension"
|
568 |
+
msgstr ""
|
569 |
+
|
570 |
+
#: includes/admin/class-welcome.php:163
|
571 |
+
msgid "Getting Started"
|
572 |
+
msgstr ""
|
573 |
+
|
574 |
+
#: includes/admin/class-welcome.php:61 includes/admin/class-welcome.php:62
|
575 |
+
msgid "Getting started with Schema"
|
576 |
+
msgstr ""
|
577 |
+
|
578 |
+
#: includes/admin/meta.php:269
|
579 |
+
msgid "Go Premium"
|
580 |
+
msgstr ""
|
581 |
+
|
582 |
+
#: includes/admin/class-welcome.php:264 includes/admin/class-welcome.php:353
|
583 |
+
msgid "Go To Schema Settings"
|
584 |
+
msgstr ""
|
585 |
+
|
586 |
+
#: includes/admin/class-setup-wizard.php:478
|
587 |
+
#: includes/admin/class-setup-wizard.php:481
|
588 |
+
#: includes/admin/settings/register-settings.php:357
|
589 |
+
msgid "Google+"
|
590 |
+
msgstr ""
|
591 |
+
|
592 |
+
#: includes/admin/class-welcome.php:337
|
593 |
+
msgid ""
|
594 |
+
"Hang on! We are going to add more schema integration and cool features to "
|
595 |
+
"Schema plugin."
|
596 |
+
msgstr ""
|
597 |
+
|
598 |
+
#: includes/admin/meta.php:157
|
599 |
+
msgid "Headline"
|
600 |
+
msgstr ""
|
601 |
+
|
602 |
+
#: includes/admin/class-welcome.php:274
|
603 |
+
msgid "Hello AMP!"
|
604 |
+
msgstr ""
|
605 |
+
|
606 |
+
#: includes/admin/class-setup-wizard.php:692
|
607 |
+
msgid "here"
|
608 |
+
msgstr ""
|
609 |
+
|
610 |
+
#: includes/admin/class-welcome.php:394
|
611 |
+
msgid ""
|
612 |
+
"Here, we will be listing some of the faces that have helped build Schema."
|
613 |
+
msgstr ""
|
614 |
+
|
615 |
+
#. Author of the plugin
|
616 |
+
msgid "Hesham"
|
617 |
+
msgstr ""
|
618 |
+
|
619 |
+
#: includes/misc-functions.php:692
|
620 |
+
msgid "Hong Kong Dollar"
|
621 |
+
msgstr ""
|
622 |
+
|
623 |
+
#: includes/admin/class-feedback.php:232
|
624 |
+
msgid "How do you like Schema?"
|
625 |
+
msgstr ""
|
626 |
+
|
627 |
+
#. Author URI of the plugin
|
628 |
+
msgid "http://zebida.com"
|
629 |
+
msgstr ""
|
630 |
+
|
631 |
+
#. URI of the plugin
|
632 |
+
msgid "https://schema.press"
|
633 |
+
msgstr ""
|
634 |
+
|
635 |
+
#: includes/misc-functions.php:694
|
636 |
+
msgid "Hungarian Forint"
|
637 |
+
msgstr ""
|
638 |
+
|
639 |
+
#: includes/misc-functions.php:695
|
640 |
+
msgid "Icelandic krona"
|
641 |
+
msgstr ""
|
642 |
+
|
643 |
+
#: includes/admin/class-welcome.php:289
|
644 |
+
msgid ""
|
645 |
+
"If Divi theme is active, Schema plugin will clear shortcodes to be able to "
|
646 |
+
"output the content description."
|
647 |
+
msgstr ""
|
648 |
+
|
649 |
+
#: includes/admin/class-welcome.php:275
|
650 |
+
msgid "If you are using the AMP plugin, Schema got you covered!"
|
651 |
+
msgstr ""
|
652 |
+
|
653 |
+
#: includes/admin/class-welcome.php:278
|
654 |
+
msgid "If you are using the WPRichSnippets plugin, Schema will behave!"
|
655 |
+
msgstr ""
|
656 |
+
|
657 |
+
#: includes/admin/extensions.php:54
|
658 |
+
#, php-format
|
659 |
+
msgid ""
|
660 |
+
"If you have a Personal or Plus license, you can easily upgrade from your "
|
661 |
+
"account page to <a href=\"%s\">get access to all of these extensions</a>!"
|
662 |
+
msgstr ""
|
663 |
+
|
664 |
+
#: includes/misc-functions.php:697
|
665 |
+
msgid "Indian Rupee"
|
666 |
+
msgstr ""
|
667 |
+
|
668 |
+
#: includes/misc-functions.php:696
|
669 |
+
msgid "Indonesia Rupiah"
|
670 |
+
msgstr ""
|
671 |
+
|
672 |
+
#: includes/admin/class-setup-wizard.php:490
|
673 |
+
#: includes/admin/class-setup-wizard.php:493
|
674 |
+
#: includes/admin/settings/register-settings.php:365
|
675 |
+
msgid "Instagram"
|
676 |
+
msgstr ""
|
677 |
+
|
678 |
+
#: includes/admin/class-welcome.php:268
|
679 |
+
msgid "Integration with Themes and other Plugins"
|
680 |
+
msgstr ""
|
681 |
+
|
682 |
+
#: includes/admin/class-setup-wizard.php:126
|
683 |
+
msgid "Introduction"
|
684 |
+
msgstr ""
|
685 |
+
|
686 |
+
#: includes/admin/class-welcome.php:288
|
687 |
+
msgid "Is Divi your Theme?"
|
688 |
+
msgstr ""
|
689 |
+
|
690 |
+
#: includes/misc-functions.php:699
|
691 |
+
msgid "Israeli Shekel"
|
692 |
+
msgstr ""
|
693 |
+
|
694 |
+
#: includes/admin/meta.php:67
|
695 |
+
msgid ""
|
696 |
+
"It is recommended to set type BlogPosting for posts, and leave empty or set "
|
697 |
+
"to General for page post type"
|
698 |
+
msgstr ""
|
699 |
+
|
700 |
+
#: includes/json/web-page-element.php:76
|
701 |
+
msgid "It looks like nothing was found at this location!"
|
702 |
+
msgstr ""
|
703 |
+
|
704 |
+
#: includes/misc-functions.php:700
|
705 |
+
msgid "Japanese Yen"
|
706 |
+
msgstr ""
|
707 |
+
|
708 |
+
#: includes/admin/meta.php:169
|
709 |
+
msgid "Key"
|
710 |
+
msgstr ""
|
711 |
+
|
712 |
+
#: includes/admin/settings/register-settings.php:1021
|
713 |
+
#: includes/admin/settings/contextual-help.php:44
|
714 |
+
msgid "Knowledge Graph"
|
715 |
+
msgstr ""
|
716 |
+
|
717 |
+
#: includes/admin/class-setup-wizard.php:449
|
718 |
+
msgid ""
|
719 |
+
"Knowledge panels prominently display your social profile information in some "
|
720 |
+
"Google Search results."
|
721 |
+
msgstr ""
|
722 |
+
|
723 |
+
#: includes/admin/meta.php:214 includes/admin/meta.php:219
|
724 |
+
msgid "Label"
|
725 |
+
msgstr ""
|
726 |
+
|
727 |
+
#: includes/misc-functions.php:701
|
728 |
+
msgid "Lao Kip"
|
729 |
+
msgstr ""
|
730 |
+
|
731 |
+
#: includes/admin/class-setup-wizard.php:703
|
732 |
+
msgid "Learn More"
|
733 |
+
msgstr ""
|
734 |
+
|
735 |
+
#: includes/admin/class-feedback.php:242
|
736 |
+
msgid "Leave Feedback"
|
737 |
+
msgstr ""
|
738 |
+
|
739 |
+
#: includes/admin/class-feedback.php:236
|
740 |
+
msgid ""
|
741 |
+
"Let us know what you think about the plugin, what is missing, and how we can "
|
742 |
+
"make it better. Leave us a review with"
|
743 |
+
msgstr ""
|
744 |
+
|
745 |
+
#: includes/admin/class-setup-wizard.php:320
|
746 |
+
msgid "Let's Go!"
|
747 |
+
msgstr ""
|
748 |
+
|
749 |
+
#: includes/admin/class-setup-wizard.php:514
|
750 |
+
#: includes/admin/settings/register-settings.php:381
|
751 |
+
msgid "LinkedIn"
|
752 |
+
msgstr ""
|
753 |
+
|
754 |
+
#: includes/admin/class-setup-wizard.php:517
|
755 |
+
msgid "Linkedin"
|
756 |
+
msgstr ""
|
757 |
+
|
758 |
+
#: includes/admin/class-setup-wizard.php:421
|
759 |
+
#: includes/admin/settings/register-settings.php:322
|
760 |
+
msgid "Logo"
|
761 |
+
msgstr ""
|
762 |
+
|
763 |
+
#: includes/admin/class-setup-wizard.php:422
|
764 |
+
#: includes/admin/class-setup-wizard.php:621
|
765 |
+
#: includes/admin/settings/register-settings.php:268
|
766 |
+
#: includes/admin/settings/register-settings.php:323
|
767 |
+
msgid "Logo guidelines"
|
768 |
+
msgstr ""
|
769 |
+
|
770 |
+
#. Publish box date format, see http://php.net/date
|
771 |
+
#: includes/admin/post-type/schema-post-type.php:103
|
772 |
+
msgid "M j, Y @ G:i"
|
773 |
+
msgstr ""
|
774 |
+
|
775 |
+
#: includes/misc-functions.php:703
|
776 |
+
msgid "Malaysian Ringgits"
|
777 |
+
msgstr ""
|
778 |
+
|
779 |
+
#: includes/admin/class-capabilities.php:36
|
780 |
+
msgid "Manage Schema Options"
|
781 |
+
msgstr ""
|
782 |
+
|
783 |
+
#: includes/admin/class-setup-wizard.php:588
|
784 |
+
msgid "Mark Up Your Content"
|
785 |
+
msgstr ""
|
786 |
+
|
787 |
+
#: includes/admin/class-welcome.php:260
|
788 |
+
msgid "Maybe coming soon!"
|
789 |
+
msgstr ""
|
790 |
+
|
791 |
+
#: includes/admin/meta.php:174
|
792 |
+
msgid "Meta Key Name"
|
793 |
+
msgstr ""
|
794 |
+
|
795 |
+
#: includes/misc-functions.php:704
|
796 |
+
msgid "Mexican Peso"
|
797 |
+
msgstr ""
|
798 |
+
|
799 |
+
#: includes/extensions/audio-object.php:51
|
800 |
+
msgid "Multiple audios"
|
801 |
+
msgstr ""
|
802 |
+
|
803 |
+
#: includes/extensions/video-object.php:51
|
804 |
+
msgid "Multiple videos"
|
805 |
+
msgstr ""
|
806 |
+
|
807 |
+
#: includes/admin/class-setup-wizard.php:526
|
808 |
+
#: includes/admin/class-setup-wizard.php:529
|
809 |
+
#: includes/admin/settings/register-settings.php:388
|
810 |
+
msgid "Myspace"
|
811 |
+
msgstr ""
|
812 |
+
|
813 |
+
#: includes/admin/class-setup-wizard.php:404
|
814 |
+
#: includes/admin/class-setup-wizard.php:407
|
815 |
+
#: includes/admin/settings/register-settings.php:304
|
816 |
+
#: includes/admin/post-type/schema-columns.php:19
|
817 |
+
msgid "Name"
|
818 |
+
msgstr ""
|
819 |
+
|
820 |
+
#: includes/admin/class-welcome.php:361
|
821 |
+
msgid "Need Help?"
|
822 |
+
msgstr ""
|
823 |
+
|
824 |
+
#: includes/misc-functions.php:698
|
825 |
+
msgid "Nepali Rupee"
|
826 |
+
msgstr ""
|
827 |
+
|
828 |
+
#: includes/admin/post-type/schema-post-type.php:31
|
829 |
+
msgid "New Schema"
|
830 |
+
msgstr ""
|
831 |
+
|
832 |
+
#: includes/admin/class-welcome.php:258
|
833 |
+
msgid "New Schema Type?"
|
834 |
+
msgstr ""
|
835 |
+
|
836 |
+
#: includes/misc-functions.php:707
|
837 |
+
msgid "New Zealand Dollar"
|
838 |
+
msgstr ""
|
839 |
+
|
840 |
+
#: includes/admin/class-welcome.php:214
|
841 |
+
msgid "NewsArticle"
|
842 |
+
msgstr ""
|
843 |
+
|
844 |
+
#: includes/admin/class-setup-wizard.php:696
|
845 |
+
msgid "Next Step"
|
846 |
+
msgstr ""
|
847 |
+
|
848 |
+
#: includes/misc-functions.php:705
|
849 |
+
msgid "Nigerian Naira"
|
850 |
+
msgstr ""
|
851 |
+
|
852 |
+
#: includes/admin/class-welcome.php:286
|
853 |
+
msgid ""
|
854 |
+
"No problem! The Schema plugin will automatically indicate that and show "
|
855 |
+
"respect for SEO Framework."
|
856 |
+
msgstr ""
|
857 |
+
|
858 |
+
#: includes/admin/post-type/schema-post-type.php:38
|
859 |
+
msgid "No schema found in Trash."
|
860 |
+
msgstr ""
|
861 |
+
|
862 |
+
#: includes/admin/post-type/schema-post-type.php:37
|
863 |
+
msgid "No schema found."
|
864 |
+
msgstr ""
|
865 |
+
|
866 |
+
#: includes/admin/class-feedback.php:245
|
867 |
+
msgid "No thanks"
|
868 |
+
msgstr ""
|
869 |
+
|
870 |
+
#: includes/admin/class-setup-wizard.php:318
|
871 |
+
msgid ""
|
872 |
+
"No time right now? If you don’t want to go through the wizard, you can skip "
|
873 |
+
"and return to the WordPress dashboard. Come back anytime if you change your "
|
874 |
+
"mind!"
|
875 |
+
msgstr ""
|
876 |
+
|
877 |
+
#: includes/admin/updater/class-license-handler.php:319
|
878 |
+
msgid "Nonce verification failed"
|
879 |
+
msgstr ""
|
880 |
+
|
881 |
+
#: includes/extensions/audio-object.php:43
|
882 |
+
#: includes/extensions/video-object.php:43
|
883 |
+
msgid "None"
|
884 |
+
msgstr ""
|
885 |
+
|
886 |
+
#: includes/misc-functions.php:706
|
887 |
+
msgid "Norwegian Krone"
|
888 |
+
msgstr ""
|
889 |
+
|
890 |
+
#: includes/admin/class-setup-wizard.php:321
|
891 |
+
msgid "Not right now"
|
892 |
+
msgstr ""
|
893 |
+
|
894 |
+
#: includes/extensions/audio-object.php:38
|
895 |
+
msgid ""
|
896 |
+
"Note: You can enable markups to multiple audios on the same page. However, "
|
897 |
+
"this may slow down your site, make sure your site is hosted on a reliable "
|
898 |
+
"web host and cache your site pages by a good caching plugin. (Recommended "
|
899 |
+
"setting: Single Audio)"
|
900 |
+
msgstr ""
|
901 |
+
|
902 |
+
#: includes/extensions/video-object.php:38
|
903 |
+
msgid ""
|
904 |
+
"Note: You can enable markups to multiple videos on the same page. However, "
|
905 |
+
"this may slow down your site, make sure your site is hosted on a reliable "
|
906 |
+
"web host and cache your site pages by a good caching plugin. (Recommended "
|
907 |
+
"setting: Single Video)"
|
908 |
+
msgstr ""
|
909 |
+
|
910 |
+
#: includes/admin/class-welcome.php:272
|
911 |
+
msgid ""
|
912 |
+
"Now Schema plugin plays nicely with Yoast SEO plugin, you can have both "
|
913 |
+
"plugins active with no conflicts."
|
914 |
+
msgstr ""
|
915 |
+
|
916 |
+
#: includes/admin/class-welcome.php:208
|
917 |
+
msgid "Now, Schema plugin supports more schema.org types."
|
918 |
+
msgstr ""
|
919 |
+
|
920 |
+
#: includes/admin/class-welcome.php:296
|
921 |
+
msgid ""
|
922 |
+
"Now, you can create new schema.org markup types and enable them on post type "
|
923 |
+
"bases."
|
924 |
+
msgstr ""
|
925 |
+
|
926 |
+
#: includes/admin/extensions.php:32
|
927 |
+
msgid "Official Free"
|
928 |
+
msgstr ""
|
929 |
+
|
930 |
+
#: includes/admin/class-setup-wizard.php:416
|
931 |
+
msgid "Organization Logo"
|
932 |
+
msgstr ""
|
933 |
+
|
934 |
+
#: includes/admin/class-setup-wizard.php:393
|
935 |
+
msgid "Organization or Person?"
|
936 |
+
msgstr ""
|
937 |
+
|
938 |
+
#: includes/admin/extensions.php:56
|
939 |
+
msgid "Our official free extensions are available to all license holders!"
|
940 |
+
msgstr ""
|
941 |
+
|
942 |
+
#: includes/admin/class-welcome.php:340
|
943 |
+
msgid "Overview"
|
944 |
+
msgstr ""
|
945 |
+
|
946 |
+
#: includes/admin/admin-functions.php:163
|
947 |
+
msgid "Package Tracking"
|
948 |
+
msgstr ""
|
949 |
+
|
950 |
+
#: includes/install.php:88
|
951 |
+
msgid "Page"
|
952 |
+
msgstr ""
|
953 |
+
|
954 |
+
#: includes/json/web-page-element.php:75
|
955 |
+
msgid "Page not found"
|
956 |
+
msgstr ""
|
957 |
+
|
958 |
+
#: includes/misc-functions.php:708
|
959 |
+
msgid "Paraguayan Guaraní"
|
960 |
+
msgstr ""
|
961 |
+
|
962 |
+
#: includes/admin/post-type/schema-post-type.php:36
|
963 |
+
msgid "Parent Schemas:"
|
964 |
+
msgstr ""
|
965 |
+
|
966 |
+
#: includes/admin/class-welcome.php:254
|
967 |
+
msgid "Person"
|
968 |
+
msgstr ""
|
969 |
+
|
970 |
+
#: includes/admin/class-setup-wizard.php:381
|
971 |
+
#: includes/admin/settings/register-settings.php:283
|
972 |
+
msgid "Person or Organization"
|
973 |
+
msgstr ""
|
974 |
+
|
975 |
+
#: includes/misc-functions.php:709
|
976 |
+
msgid "Philippine Pesos"
|
977 |
+
msgstr ""
|
978 |
+
|
979 |
+
#: includes/admin/class-setup-wizard.php:538
|
980 |
+
#: includes/admin/class-setup-wizard.php:541
|
981 |
+
#: includes/admin/settings/register-settings.php:396
|
982 |
+
msgid "Pinterest"
|
983 |
+
msgstr ""
|
984 |
+
|
985 |
+
#: includes/admin/class-welcome.php:271
|
986 |
+
msgid "Play nicely with Yoast SEO"
|
987 |
+
msgstr ""
|
988 |
+
|
989 |
+
#: includes/admin/class-welcome.php:199
|
990 |
+
msgid "Plugin Settings"
|
991 |
+
msgstr ""
|
992 |
+
|
993 |
+
#: includes/misc-functions.php:710
|
994 |
+
msgid "Polish Zloty"
|
995 |
+
msgstr ""
|
996 |
+
|
997 |
+
#: includes/install.php:45
|
998 |
+
msgid "Post"
|
999 |
+
msgstr ""
|
1000 |
+
|
1001 |
+
#: includes/admin/meta.php:268
|
1002 |
+
msgid "Post Meta"
|
1003 |
+
msgstr ""
|
1004 |
+
|
1005 |
+
#: includes/admin/meta.php:49
|
1006 |
+
msgid "Post meta"
|
1007 |
+
msgstr ""
|
1008 |
+
|
1009 |
+
#: includes/admin/meta.php:123
|
1010 |
+
msgid "Post meta box title, default: Schema"
|
1011 |
+
msgstr ""
|
1012 |
+
|
1013 |
+
#: includes/admin/post-type/schema-columns.php:39
|
1014 |
+
msgid "Post Type"
|
1015 |
+
msgstr ""
|
1016 |
+
|
1017 |
+
#: includes/admin/post-type/schema-post-type.php:25
|
1018 |
+
msgctxt "post type general name"
|
1019 |
+
msgid "Schema"
|
1020 |
+
msgstr ""
|
1021 |
+
|
1022 |
+
#: includes/admin/post-type/schema-post-type.php:26
|
1023 |
+
msgctxt "post type singular name"
|
1024 |
+
msgid "Schema"
|
1025 |
+
msgstr ""
|
1026 |
+
|
1027 |
+
#: includes/admin/meta.php:267
|
1028 |
+
msgid "Post Types"
|
1029 |
+
msgstr ""
|
1030 |
+
|
1031 |
+
#: includes/misc-functions.php:711
|
1032 |
+
msgid "Pounds Sterling"
|
1033 |
+
msgstr ""
|
1034 |
+
|
1035 |
+
#: includes/admin/class-menu.php:90 includes/admin/extensions.php:31
|
1036 |
+
msgid "Premium"
|
1037 |
+
msgstr ""
|
1038 |
+
|
1039 |
+
#: includes/admin/extensions.php:53
|
1040 |
+
#, php-format
|
1041 |
+
msgid ""
|
1042 |
+
"Premium Extensions are only available with a Professional or Ultimate "
|
1043 |
+
"license. If you already have one of these licenses, simply <a href=\"%s\">"
|
1044 |
+
"log in to your account</a> to download any of these extensions."
|
1045 |
+
msgstr ""
|
1046 |
+
|
1047 |
+
#: includes/admin/post-type/schema-post-type.php:118
|
1048 |
+
msgid "Preview schema"
|
1049 |
+
msgstr ""
|
1050 |
+
|
1051 |
+
#: includes/admin/class-setup-wizard.php:447
|
1052 |
+
#: includes/admin/settings/register-settings.php:336
|
1053 |
+
msgid "Provide your social profile information to a Google Knowledge panel."
|
1054 |
+
msgstr ""
|
1055 |
+
|
1056 |
+
#: includes/admin/class-setup-wizard.php:615
|
1057 |
+
#: includes/admin/class-setup-wizard.php:620
|
1058 |
+
#: includes/admin/settings/register-settings.php:267
|
1059 |
+
msgid "Publisher Logo"
|
1060 |
+
msgstr ""
|
1061 |
+
|
1062 |
+
#: includes/admin/class-setup-wizard.php:621
|
1063 |
+
#: includes/admin/settings/register-settings.php:268
|
1064 |
+
msgid ""
|
1065 |
+
"Publisher Logo should have a wide aspect ratio, not a square icon, it should "
|
1066 |
+
"be no wider than 600px, and no taller than 60px."
|
1067 |
+
msgstr ""
|
1068 |
+
|
1069 |
+
#: includes/admin/class-welcome.php:200
|
1070 |
+
#: includes/admin/settings/display-settings.php:86
|
1071 |
+
msgid "Quick Configuration Wizard"
|
1072 |
+
msgstr ""
|
1073 |
+
|
1074 |
+
#: includes/admin/class-setup-wizard.php:151
|
1075 |
+
msgid "Ready!"
|
1076 |
+
msgstr ""
|
1077 |
+
|
1078 |
+
#: includes/admin/settings/register-settings.php:433
|
1079 |
+
msgid ""
|
1080 |
+
"Recommended. An internationalized version of the phone number, starting with "
|
1081 |
+
"the \"+\" symbol and country code (+1 in the US and Canada)."
|
1082 |
+
msgstr ""
|
1083 |
+
|
1084 |
+
#: includes/admin/settings/register-settings.php:441
|
1085 |
+
msgid "Recommended. The URL of contact page."
|
1086 |
+
msgstr ""
|
1087 |
+
|
1088 |
+
#: includes/admin/scripts.php:23 includes/admin/class-setup-wizard.php:81
|
1089 |
+
msgid "Remove"
|
1090 |
+
msgstr ""
|
1091 |
+
|
1092 |
+
#: includes/admin/class-welcome.php:215
|
1093 |
+
msgid "Report"
|
1094 |
+
msgstr ""
|
1095 |
+
|
1096 |
+
#: includes/admin/admin-functions.php:158
|
1097 |
+
msgid "Reservations"
|
1098 |
+
msgstr ""
|
1099 |
+
|
1100 |
+
#: includes/admin/class-setup-wizard.php:255
|
1101 |
+
msgid "Return to the WordPress Dashboard"
|
1102 |
+
msgstr ""
|
1103 |
+
|
1104 |
+
#: includes/admin/admin-functions.php:162
|
1105 |
+
msgid "Roadside Assistance"
|
1106 |
+
msgstr ""
|
1107 |
+
|
1108 |
+
#: includes/misc-functions.php:712
|
1109 |
+
msgid "Romanian Leu"
|
1110 |
+
msgstr ""
|
1111 |
+
|
1112 |
+
#: includes/misc-functions.php:713
|
1113 |
+
msgid "Russian Ruble"
|
1114 |
+
msgstr ""
|
1115 |
+
|
1116 |
+
#: includes/admin/admin-functions.php:157
|
1117 |
+
msgid "Sales"
|
1118 |
+
msgstr ""
|
1119 |
+
|
1120 |
+
#: includes/extensions/sameAs.php:74
|
1121 |
+
msgid "sameAs"
|
1122 |
+
msgstr ""
|
1123 |
+
|
1124 |
+
#: includes/admin/meta-tax.php:44
|
1125 |
+
msgid "sameAs "
|
1126 |
+
msgstr ""
|
1127 |
+
|
1128 |
+
#: includes/admin/meta.php:249
|
1129 |
+
#, php-format
|
1130 |
+
msgid "Save 15% off your purchase? Use discount code: <b>SPFREE15</b>"
|
1131 |
+
msgstr ""
|
1132 |
+
|
1133 |
+
#. Name of the plugin
|
1134 |
+
#: includes/admin/class-feedback.php:293 includes/admin/meta.php:128
|
1135 |
+
#: includes/admin/class-menu.php:30 includes/admin/class-menu.php:31
|
1136 |
+
#: includes/admin/meta-tax.php:25
|
1137 |
+
#: includes/extensions/post-meta-generator.php:160
|
1138 |
+
#: includes/admin/settings/display-settings.php:65
|
1139 |
+
msgid "Schema"
|
1140 |
+
msgstr ""
|
1141 |
+
|
1142 |
+
#: includes/admin/post-type/schema-post-type.php:29
|
1143 |
+
msgctxt "schema"
|
1144 |
+
msgid "Add New"
|
1145 |
+
msgstr ""
|
1146 |
+
|
1147 |
+
#: includes/admin/class-setup-wizard.php:188
|
1148 |
+
msgid "Schema › Setup Wizard"
|
1149 |
+
msgstr ""
|
1150 |
+
|
1151 |
+
#: includes/admin/post-type/schema-post-type.php:99
|
1152 |
+
msgid "Schema added."
|
1153 |
+
msgstr ""
|
1154 |
+
|
1155 |
+
#: includes/admin/class-welcome.php:306
|
1156 |
+
msgid ""
|
1157 |
+
"Schema allow you to enable AudioObject markup automatically whenever oEmbed "
|
1158 |
+
"is called on your page."
|
1159 |
+
msgstr ""
|
1160 |
+
|
1161 |
+
#: includes/admin/class-welcome.php:302
|
1162 |
+
msgid ""
|
1163 |
+
"Schema allow you to enable VideoObject markup automatically whenever oEmbed "
|
1164 |
+
"is called on your page."
|
1165 |
+
msgstr ""
|
1166 |
+
|
1167 |
+
#: includes/admin/post-type/schema-post-type.php:97
|
1168 |
+
msgid "Schema created."
|
1169 |
+
msgstr ""
|
1170 |
+
|
1171 |
+
#: includes/admin/post-type/schema-post-type.php:105
|
1172 |
+
msgid "Schema draft updated."
|
1173 |
+
msgstr ""
|
1174 |
+
|
1175 |
+
#: includes/admin/meta-exclude.php:69
|
1176 |
+
msgid "Schema Exclude"
|
1177 |
+
msgstr ""
|
1178 |
+
|
1179 |
+
#: includes/admin/class-welcome.php:346
|
1180 |
+
msgid ""
|
1181 |
+
"Schema markup is code (semantic vocabulary) that you put on your website to "
|
1182 |
+
"help the search engines return more informative results for users. So, "
|
1183 |
+
"Schema is not just for SEO reasons, it’s also for the benefit of the "
|
1184 |
+
"searcher."
|
1185 |
+
msgstr ""
|
1186 |
+
|
1187 |
+
#: includes/admin/meta.php:35
|
1188 |
+
msgid "Schema Markup Type"
|
1189 |
+
msgstr ""
|
1190 |
+
|
1191 |
+
#: includes/admin/class-welcome.php:269
|
1192 |
+
msgid "Schema plays nicely and support themes mentioned below."
|
1193 |
+
msgstr ""
|
1194 |
+
|
1195 |
+
#: includes/integrations/yoast-seo.php:81
|
1196 |
+
msgid ""
|
1197 |
+
"Schema plugin will override Yoast SEO output to avoid markup duplication. "
|
1198 |
+
"Check this box if you would like to disable Schema markup and use Yoast SEO "
|
1199 |
+
"output instead."
|
1200 |
+
msgstr ""
|
1201 |
+
|
1202 |
+
#: includes/admin/class-welcome.php:295
|
1203 |
+
msgid "Schema Post Type"
|
1204 |
+
msgstr ""
|
1205 |
+
|
1206 |
+
#. %s: date and time of the revision
|
1207 |
+
#: includes/admin/post-type/schema-post-type.php:96
|
1208 |
+
#, php-format
|
1209 |
+
msgid "Schema restored to revision from %s"
|
1210 |
+
msgstr ""
|
1211 |
+
|
1212 |
+
#: includes/admin/post-type/schema-post-type.php:94
|
1213 |
+
#: includes/admin/post-type/schema-post-type.php:98
|
1214 |
+
msgid "Schema saved."
|
1215 |
+
msgstr ""
|
1216 |
+
|
1217 |
+
#: includes/admin/post-type/schema-post-type.php:101
|
1218 |
+
#, php-format
|
1219 |
+
msgid "Schema scheduled for: <strong>%1$s</strong>."
|
1220 |
+
msgstr ""
|
1221 |
+
|
1222 |
+
#: includes/admin/meta.php:265 includes/admin/class-menu.php:39
|
1223 |
+
msgid "Schema Settings"
|
1224 |
+
msgstr ""
|
1225 |
+
|
1226 |
+
#: includes/admin/class-setup-wizard.php:105
|
1227 |
+
msgid "Schema Setup"
|
1228 |
+
msgstr ""
|
1229 |
+
|
1230 |
+
#: includes/admin/class-setup-wizard.php:105
|
1231 |
+
msgid "Schema Setup Wizard"
|
1232 |
+
msgstr ""
|
1233 |
+
|
1234 |
+
#: includes/admin/post-type/schema-columns.php:27
|
1235 |
+
msgid "Schema Type"
|
1236 |
+
msgstr ""
|
1237 |
+
|
1238 |
+
#: includes/admin/post-type/schema-post-type.php:91
|
1239 |
+
msgid "Schema updated."
|
1240 |
+
msgstr ""
|
1241 |
+
|
1242 |
+
#: includes/admin/class-setup-wizard.php:690
|
1243 |
+
msgid ""
|
1244 |
+
"Schema will now take care of all the needed technical optimization of your "
|
1245 |
+
"site."
|
1246 |
+
msgstr ""
|
1247 |
+
|
1248 |
+
#: includes/admin/class-setup-wizard.php:146
|
1249 |
+
#: includes/admin/settings/register-settings.php:1022
|
1250 |
+
msgid "Schemas"
|
1251 |
+
msgstr ""
|
1252 |
+
|
1253 |
+
#: includes/admin/class-welcome.php:216
|
1254 |
+
msgid "ScholarlyArticle"
|
1255 |
+
msgstr ""
|
1256 |
+
|
1257 |
+
#: includes/admin/settings/contextual-help.php:50
|
1258 |
+
msgid "Search Results"
|
1259 |
+
msgstr ""
|
1260 |
+
|
1261 |
+
#: includes/admin/post-type/schema-post-type.php:35
|
1262 |
+
msgid "Search Schemas"
|
1263 |
+
msgstr ""
|
1264 |
+
|
1265 |
+
#: includes/admin/class-notices.php:53
|
1266 |
+
msgid "Security check failed"
|
1267 |
+
msgstr ""
|
1268 |
+
|
1269 |
+
#: includes/extensions/audio-object.php:37
|
1270 |
+
msgid "Select audio markup type."
|
1271 |
+
msgstr ""
|
1272 |
+
|
1273 |
+
#: includes/admin/meta.php:192
|
1274 |
+
msgid "Select field type"
|
1275 |
+
msgstr ""
|
1276 |
+
|
1277 |
+
#: includes/admin/meta.php:150
|
1278 |
+
msgid "Select Filter"
|
1279 |
+
msgstr ""
|
1280 |
+
|
1281 |
+
#: includes/admin/meta.php:66
|
1282 |
+
msgid "Select more specific article type"
|
1283 |
+
msgstr ""
|
1284 |
+
|
1285 |
+
#: includes/admin/class-setup-wizard.php:811
|
1286 |
+
#: includes/admin/settings/register-settings.php:1668
|
1287 |
+
#: includes/admin/meta/class-meta.php:42
|
1288 |
+
msgid "Select One"
|
1289 |
+
msgstr ""
|
1290 |
+
|
1291 |
+
#: includes/admin/meta.php:36
|
1292 |
+
msgid "Select Schema type which describes your content best"
|
1293 |
+
msgstr ""
|
1294 |
+
|
1295 |
+
#: includes/admin/settings/register-settings.php:246
|
1296 |
+
msgid "Select Site Type"
|
1297 |
+
msgstr ""
|
1298 |
+
|
1299 |
+
#: includes/admin/meta.php:195
|
1300 |
+
msgid "Select Type"
|
1301 |
+
msgstr ""
|
1302 |
+
|
1303 |
+
#: includes/extensions/video-object.php:37
|
1304 |
+
msgid "Select video markup type."
|
1305 |
+
msgstr ""
|
1306 |
+
|
1307 |
+
#: includes/admin/class-menu.php:40
|
1308 |
+
msgid "Settings"
|
1309 |
+
msgstr ""
|
1310 |
+
|
1311 |
+
#: includes/admin/class-notices.php:32
|
1312 |
+
msgid "Settings successfully imported"
|
1313 |
+
msgstr ""
|
1314 |
+
|
1315 |
+
#: includes/admin/class-notices.php:20
|
1316 |
+
msgid "Settings updated."
|
1317 |
+
msgstr ""
|
1318 |
+
|
1319 |
+
#: includes/misc-functions.php:714
|
1320 |
+
msgid "Singapore Dollar"
|
1321 |
+
msgstr ""
|
1322 |
+
|
1323 |
+
#: includes/extensions/audio-object.php:47
|
1324 |
+
msgid "Single audio"
|
1325 |
+
msgstr ""
|
1326 |
+
|
1327 |
+
#: includes/extensions/video-object.php:47
|
1328 |
+
msgid "Single video"
|
1329 |
+
msgstr ""
|
1330 |
+
|
1331 |
+
#: includes/admin/settings/register-settings.php:478
|
1332 |
+
msgid "Site Alternate Name"
|
1333 |
+
msgstr ""
|
1334 |
+
|
1335 |
+
#: includes/admin/settings/register-settings.php:470
|
1336 |
+
msgid "Site Name"
|
1337 |
+
msgstr ""
|
1338 |
+
|
1339 |
+
#: includes/admin/class-setup-wizard.php:131
|
1340 |
+
#: includes/admin/class-setup-wizard.php:331
|
1341 |
+
#: includes/admin/class-setup-wizard.php:343
|
1342 |
+
#: includes/admin/settings/register-settings.php:242
|
1343 |
+
msgid "Site Type"
|
1344 |
+
msgstr ""
|
1345 |
+
|
1346 |
+
#: includes/admin/class-setup-wizard.php:369
|
1347 |
+
#: includes/admin/class-setup-wizard.php:432
|
1348 |
+
#: includes/admin/class-setup-wizard.php:576
|
1349 |
+
#: includes/admin/class-setup-wizard.php:676
|
1350 |
+
msgid "Skip this step"
|
1351 |
+
msgstr ""
|
1352 |
+
|
1353 |
+
#: includes/admin/class-setup-wizard.php:141
|
1354 |
+
#: includes/admin/class-setup-wizard.php:445
|
1355 |
+
#: includes/admin/settings/register-settings.php:335
|
1356 |
+
msgid "Social Profiles"
|
1357 |
+
msgstr ""
|
1358 |
+
|
1359 |
+
#: includes/admin/class-setup-wizard.php:550
|
1360 |
+
#: includes/admin/class-setup-wizard.php:553
|
1361 |
+
#: includes/admin/settings/register-settings.php:404
|
1362 |
+
msgid "SoundCloud"
|
1363 |
+
msgstr ""
|
1364 |
+
|
1365 |
+
#: includes/misc-functions.php:715
|
1366 |
+
msgid "South African rand"
|
1367 |
+
msgstr ""
|
1368 |
+
|
1369 |
+
#: includes/misc-functions.php:702
|
1370 |
+
msgid "South Korean Won"
|
1371 |
+
msgstr ""
|
1372 |
+
|
1373 |
+
#: includes/admin/class-setup-wizard.php:422
|
1374 |
+
#: includes/admin/settings/register-settings.php:323
|
1375 |
+
msgid ""
|
1376 |
+
"Specify the image of your organization's logo to be used in Google Search "
|
1377 |
+
"results and in the Knowledge Graph.<br />Learn more about"
|
1378 |
+
msgstr ""
|
1379 |
+
|
1380 |
+
#: includes/admin/class-welcome.php:349
|
1381 |
+
msgid ""
|
1382 |
+
"Structured Data can help you to send the right signals to search engines "
|
1383 |
+
"about your business and content."
|
1384 |
+
msgstr ""
|
1385 |
+
|
1386 |
+
#: includes/admin/class-welcome.php:350
|
1387 |
+
msgid ""
|
1388 |
+
"Structured Data helps search engines to understand what the content is "
|
1389 |
+
"specifically about. Moreover, structured data will allow users to see the "
|
1390 |
+
"value of a website before they visit, via rich snippets, which are rich data "
|
1391 |
+
"that are displayed in the SERP’s."
|
1392 |
+
msgstr ""
|
1393 |
+
|
1394 |
+
#: includes/admin/admin-bar-menu.php:41
|
1395 |
+
msgid "Structured Data Testing Tool"
|
1396 |
+
msgstr ""
|
1397 |
+
|
1398 |
+
#: includes/admin/class-welcome.php:369
|
1399 |
+
msgid "Support"
|
1400 |
+
msgstr ""
|
1401 |
+
|
1402 |
+
#: includes/admin/class-welcome.php:207
|
1403 |
+
msgid "Support More Schema Types"
|
1404 |
+
msgstr ""
|
1405 |
+
|
1406 |
+
#: includes/admin/class-welcome.php:307
|
1407 |
+
msgid "Supported oEmbed audios: SoundCloud, and Mixcloud."
|
1408 |
+
msgstr ""
|
1409 |
+
|
1410 |
+
#: includes/admin/class-welcome.php:303
|
1411 |
+
msgid ""
|
1412 |
+
"Supported oEmbed videos: Dailymotion, TED, Vimeo, VideoPress, Vine, YouTube."
|
1413 |
+
msgstr ""
|
1414 |
+
|
1415 |
+
#: includes/misc-functions.php:716
|
1416 |
+
msgid "Swedish Krona"
|
1417 |
+
msgstr ""
|
1418 |
+
|
1419 |
+
#: includes/misc-functions.php:717
|
1420 |
+
msgid "Swiss Franc"
|
1421 |
+
msgstr ""
|
1422 |
+
|
1423 |
+
#: includes/misc-functions.php:718
|
1424 |
+
msgid "Taiwan New Dollars"
|
1425 |
+
msgstr ""
|
1426 |
+
|
1427 |
+
#: includes/admin/class-welcome.php:217
|
1428 |
+
msgid "TechArticle"
|
1429 |
+
msgstr ""
|
1430 |
+
|
1431 |
+
#: includes/admin/admin-functions.php:154
|
1432 |
+
msgid "Technical Support"
|
1433 |
+
msgstr ""
|
1434 |
+
|
1435 |
+
#: includes/admin/settings/register-settings.php:432
|
1436 |
+
msgid "Telephone"
|
1437 |
+
msgstr ""
|
1438 |
+
|
1439 |
+
#: includes/admin/settings/register-settings.php:455
|
1440 |
+
msgid "Tell Google to show a Sitelinks search box."
|
1441 |
+
msgstr ""
|
1442 |
+
|
1443 |
+
#: includes/admin/settings/register-settings.php:464
|
1444 |
+
msgid "Tell Google to show your site name in search results."
|
1445 |
+
msgstr ""
|
1446 |
+
|
1447 |
+
#: includes/admin/meta.php:198
|
1448 |
+
msgid "Text"
|
1449 |
+
msgstr ""
|
1450 |
+
|
1451 |
+
#: includes/admin/meta.php:202
|
1452 |
+
msgid "Text Area"
|
1453 |
+
msgstr ""
|
1454 |
+
|
1455 |
+
#: includes/misc-functions.php:719
|
1456 |
+
msgid "Thai Baht"
|
1457 |
+
msgstr ""
|
1458 |
+
|
1459 |
+
#: includes/admin/class-setup-wizard.php:317
|
1460 |
+
msgid ""
|
1461 |
+
"Thank you for choosing Schema to power your website! This quick setup wizard "
|
1462 |
+
"will help you configure the basic settings. <strong>It’s completely optional "
|
1463 |
+
"and shouldn’t take longer than two minutes.</strong>"
|
1464 |
+
msgstr ""
|
1465 |
+
|
1466 |
+
#: includes/admin/class-welcome.php:185
|
1467 |
+
msgid ""
|
1468 |
+
"Thank you for installing Schema. The best Schema.org plugin for WordPress."
|
1469 |
+
msgstr ""
|
1470 |
+
|
1471 |
+
#: includes/admin/class-welcome.php:332
|
1472 |
+
msgid ""
|
1473 |
+
"Thank you for installing Schema. The best schema.org plugin for WordPress."
|
1474 |
+
msgstr ""
|
1475 |
+
|
1476 |
+
#: includes/admin/class-welcome.php:389
|
1477 |
+
msgid "Thank you for updating to the latest version!"
|
1478 |
+
msgstr ""
|
1479 |
+
|
1480 |
+
#. Description of the plugin
|
1481 |
+
msgid "The next generation of Structured Data."
|
1482 |
+
msgstr ""
|
1483 |
+
|
1484 |
+
#: includes/admin/class-welcome.php:70 includes/admin/class-welcome.php:71
|
1485 |
+
msgid "The people that build Schema"
|
1486 |
+
msgstr ""
|
1487 |
+
|
1488 |
+
#: includes/admin/class-welcome.php:285
|
1489 |
+
msgid "The SEO Framework plugin is active?"
|
1490 |
+
msgstr ""
|
1491 |
+
|
1492 |
+
#: includes/admin/extensions.php:142
|
1493 |
+
msgid ""
|
1494 |
+
"There was an error retrieving the extensions list from the server. Please "
|
1495 |
+
"try again later."
|
1496 |
+
msgstr ""
|
1497 |
+
|
1498 |
+
#: includes/admin/extensions.php:46
|
1499 |
+
msgid ""
|
1500 |
+
"These extensions <em><strong>add functionality</strong></em> to your Schema-"
|
1501 |
+
"powered site."
|
1502 |
+
msgstr ""
|
1503 |
+
|
1504 |
+
#: includes/admin/meta.php:134
|
1505 |
+
msgid ""
|
1506 |
+
"This feature allow you to override the schema.org markups output generated "
|
1507 |
+
"by the Schema plugin."
|
1508 |
+
msgstr ""
|
1509 |
+
|
1510 |
+
#: includes/admin/meta.php:124
|
1511 |
+
msgid ""
|
1512 |
+
"This field will allow you to override the Schema post meta box title, "
|
1513 |
+
"default: Schema"
|
1514 |
+
msgstr ""
|
1515 |
+
|
1516 |
+
#: includes/admin/class-setup-wizard.php:335
|
1517 |
+
msgid ""
|
1518 |
+
"This information can help us to prioritize future additions to our plugin "
|
1519 |
+
"for specific types of sites"
|
1520 |
+
msgstr ""
|
1521 |
+
|
1522 |
+
#: includes/admin/class-setup-wizard.php:385
|
1523 |
+
#: includes/admin/settings/register-settings.php:284
|
1524 |
+
msgid ""
|
1525 |
+
"This information will be used in Google's Knowledge Graph Card, the big "
|
1526 |
+
"block of information you see on the right side of the search results."
|
1527 |
+
msgstr ""
|
1528 |
+
|
1529 |
+
#: includes/admin/meta.php:146
|
1530 |
+
msgid "This is the filter name"
|
1531 |
+
msgstr ""
|
1532 |
+
|
1533 |
+
#: includes/admin/meta.php:133
|
1534 |
+
msgid ""
|
1535 |
+
"This is where you can define a source for schema.org markup fields to "
|
1536 |
+
"override its output. Select a filter name, then define post meta key name to "
|
1537 |
+
"pull data from, or tick the check box to automatically create a new custom "
|
1538 |
+
"post meta field to insert values manually when editing posts."
|
1539 |
+
msgstr ""
|
1540 |
+
|
1541 |
+
#: includes/admin/settings/contextual-help.php:57
|
1542 |
+
msgid ""
|
1543 |
+
"This screen provides access to settings added by most Schema extensions."
|
1544 |
+
msgstr ""
|
1545 |
+
|
1546 |
+
#: includes/admin/settings/contextual-help.php:64
|
1547 |
+
msgid ""
|
1548 |
+
"This screen provides advanced options such as deleting plugin data on "
|
1549 |
+
"uninstall."
|
1550 |
+
msgstr ""
|
1551 |
+
|
1552 |
+
#: includes/admin/settings/contextual-help.php:51
|
1553 |
+
msgid ""
|
1554 |
+
"This screen provides settings for configuring Search Results. You can set "
|
1555 |
+
"Sitelinks Search Box and Site Name."
|
1556 |
+
msgstr ""
|
1557 |
+
|
1558 |
+
#: includes/admin/settings/contextual-help.php:45
|
1559 |
+
msgid ""
|
1560 |
+
"This screen provides settings for configuring the Knowledge Graph. You can "
|
1561 |
+
"set Organization Info and Corporate Contacts."
|
1562 |
+
msgstr ""
|
1563 |
+
|
1564 |
+
#: includes/admin/settings/contextual-help.php:39
|
1565 |
+
msgid ""
|
1566 |
+
"This screen provides the most basic settings for configuring Schema plugin "
|
1567 |
+
"on your site. You can set Schema for About and Contact pages, and turn "
|
1568 |
+
"automatic <em>Feature image</em> on and off...etc"
|
1569 |
+
msgstr ""
|
1570 |
+
|
1571 |
+
#: includes/admin/class-setup-wizard.php:390
|
1572 |
+
#: includes/admin/settings/register-settings.php:290
|
1573 |
+
msgid "This Website Represent"
|
1574 |
+
msgstr ""
|
1575 |
+
|
1576 |
+
#: includes/admin/meta-exclude.php:37
|
1577 |
+
msgid "Tick this checkbox to turn off Schema output on this entry."
|
1578 |
+
msgstr ""
|
1579 |
+
|
1580 |
+
#: includes/admin/meta.php:122 includes/extensions/audio-object.php:100
|
1581 |
+
#: includes/extensions/video-object.php:100
|
1582 |
+
msgid "Title"
|
1583 |
+
msgstr ""
|
1584 |
+
|
1585 |
+
#: includes/admin/class-setup-wizard.php:562
|
1586 |
+
#: includes/admin/class-setup-wizard.php:565
|
1587 |
+
#: includes/admin/settings/register-settings.php:412
|
1588 |
+
msgid "Tumblr"
|
1589 |
+
msgstr ""
|
1590 |
+
|
1591 |
+
#: includes/misc-functions.php:720
|
1592 |
+
msgid "Turkish Lira"
|
1593 |
+
msgstr ""
|
1594 |
+
|
1595 |
+
#: includes/admin/meta-exclude.php:36
|
1596 |
+
msgid "Turn Schema OFF"
|
1597 |
+
msgstr ""
|
1598 |
+
|
1599 |
+
#: includes/admin/class-setup-wizard.php:466
|
1600 |
+
#: includes/admin/class-setup-wizard.php:469
|
1601 |
+
#: includes/admin/settings/register-settings.php:349
|
1602 |
+
msgid "Twitter"
|
1603 |
+
msgstr ""
|
1604 |
+
|
1605 |
+
#: includes/admin/meta.php:191
|
1606 |
+
msgid "Type"
|
1607 |
+
msgstr ""
|
1608 |
+
|
1609 |
+
#: includes/admin/class-menu.php:56 includes/admin/class-menu.php:57
|
1610 |
+
msgid "Types"
|
1611 |
+
msgstr ""
|
1612 |
+
|
1613 |
+
#: includes/extensions/audio-object.php:107
|
1614 |
+
#: includes/extensions/video-object.php:107
|
1615 |
+
msgid "Upload Date"
|
1616 |
+
msgstr ""
|
1617 |
+
|
1618 |
+
#: includes/admin/settings/register-settings.php:440
|
1619 |
+
msgid "URL"
|
1620 |
+
msgstr ""
|
1621 |
+
|
1622 |
+
#: includes/admin/meta-tax.php:44 includes/extensions/sameAs.php:40
|
1623 |
+
msgid ""
|
1624 |
+
"URL of a reference Web page that unambiguously indicates the item's identity."
|
1625 |
+
" E.g. the URL of the item's Wikipedia page, Freebase page, or official "
|
1626 |
+
"website."
|
1627 |
+
msgstr ""
|
1628 |
+
|
1629 |
+
#: includes/extensions/sameAs.php:39
|
1630 |
+
msgid "URLs"
|
1631 |
+
msgstr ""
|
1632 |
+
|
1633 |
+
#: includes/misc-functions.php:721
|
1634 |
+
msgid "US Dollars"
|
1635 |
+
msgstr ""
|
1636 |
+
|
1637 |
+
#: includes/admin/scripts.php:22 includes/admin/class-setup-wizard.php:80
|
1638 |
+
msgid "Use This File"
|
1639 |
+
msgstr ""
|
1640 |
+
|
1641 |
+
#: includes/admin/class-welcome.php:282
|
1642 |
+
msgid "Uses Thesis Theme 2.x Post Image"
|
1643 |
+
msgstr ""
|
1644 |
+
|
1645 |
+
#: includes/admin/class-welcome.php:281
|
1646 |
+
msgid ""
|
1647 |
+
"Using Genesis Framework? The Schema plugin will automatically indicate that "
|
1648 |
+
"and correct Genesis Schema output."
|
1649 |
+
msgstr ""
|
1650 |
+
|
1651 |
+
#: includes/admin/class-welcome.php:283
|
1652 |
+
msgid ""
|
1653 |
+
"Using Thesis? The Schema plugin will automatically indicate and use Thesis "
|
1654 |
+
"Post Image is are presented."
|
1655 |
+
msgstr ""
|
1656 |
+
|
1657 |
+
#: includes/admin/class-welcome.php:188 includes/admin/class-welcome.php:333
|
1658 |
+
#: includes/admin/class-welcome.php:390
|
1659 |
+
#, php-format
|
1660 |
+
msgid "Version %s"
|
1661 |
+
msgstr ""
|
1662 |
+
|
1663 |
+
#: includes/extensions/video-object.php:115
|
1664 |
+
msgid "Video duration, example: if duration is 1 Hour 35 MIN, use: PT1H35M"
|
1665 |
+
msgstr ""
|
1666 |
+
|
1667 |
+
#: includes/extensions/video-object.php:36
|
1668 |
+
msgid "Video Markups"
|
1669 |
+
msgstr ""
|
1670 |
+
|
1671 |
+
#: includes/extensions/video-object.php:122
|
1672 |
+
msgid "Video short description."
|
1673 |
+
msgstr ""
|
1674 |
+
|
1675 |
+
#: includes/extensions/video-object.php:101
|
1676 |
+
msgid "Video title"
|
1677 |
+
msgstr ""
|
1678 |
+
|
1679 |
+
#: includes/extensions/video-object.php:108
|
1680 |
+
msgid "Video upload date in ISO 8601 format YYYY-MM-DD example: 2016-06-23"
|
1681 |
+
msgstr ""
|
1682 |
+
|
1683 |
+
#: includes/admin/class-setup-wizard.php:656
|
1684 |
+
#: includes/admin/class-setup-wizard.php:659
|
1685 |
+
msgid "VideoObject"
|
1686 |
+
msgstr ""
|
1687 |
+
|
1688 |
+
#: includes/misc-functions.php:722
|
1689 |
+
msgid "Vietnamese Dong"
|
1690 |
+
msgstr ""
|
1691 |
+
|
1692 |
+
#: includes/admin/class-welcome.php:421
|
1693 |
+
#, php-format
|
1694 |
+
msgid "View %s"
|
1695 |
+
msgstr ""
|
1696 |
+
|
1697 |
+
#: includes/admin/post-type/schema-post-type.php:33
|
1698 |
+
msgid "View Schema"
|
1699 |
+
msgstr ""
|
1700 |
+
|
1701 |
+
#: includes/admin/post-type/schema-post-type.php:111
|
1702 |
+
msgid "View schema"
|
1703 |
+
msgstr ""
|
1704 |
+
|
1705 |
+
#: includes/admin/settings/contextual-help.php:27
|
1706 |
+
#, php-format
|
1707 |
+
msgid "Visit the <a href=\"%s\">documentation</a> on the schema.press website."
|
1708 |
+
msgstr ""
|
1709 |
+
|
1710 |
+
#: includes/admin/meta.php:249
|
1711 |
+
msgid "Want to enable new features?"
|
1712 |
+
msgstr ""
|
1713 |
+
|
1714 |
+
#: includes/admin/scripts.php:25 includes/admin/class-setup-wizard.php:83
|
1715 |
+
msgid ""
|
1716 |
+
"We are sorry but your browser is not compatible with this kind of file "
|
1717 |
+
"upload. Please upgrade your browser."
|
1718 |
+
msgstr ""
|
1719 |
+
|
1720 |
+
#: includes/admin/class-welcome.php:370
|
1721 |
+
msgid ""
|
1722 |
+
"We do our best to provide support we can. If you encounter a problem, report "
|
1723 |
+
"it to <a href=\"https://wordpress.org/support/plugin/schema\">support</a>."
|
1724 |
+
msgstr ""
|
1725 |
+
|
1726 |
+
#: includes/admin/settings/register-settings.php:313
|
1727 |
+
msgid "Website URL"
|
1728 |
+
msgstr ""
|
1729 |
+
|
1730 |
+
#: includes/admin/class-welcome.php:184 includes/admin/class-welcome.php:331
|
1731 |
+
#: includes/admin/class-welcome.php:388
|
1732 |
+
#, php-format
|
1733 |
+
msgid "Welcome to Schema v%s"
|
1734 |
+
msgstr ""
|
1735 |
+
|
1736 |
+
#: includes/admin/class-setup-wizard.php:316
|
1737 |
+
msgid "Welcome to Schema!"
|
1738 |
+
msgstr ""
|
1739 |
+
|
1740 |
+
#: includes/admin/class-welcome.php:345
|
1741 |
+
msgid "What is Schema markup?"
|
1742 |
+
msgstr ""
|
1743 |
+
|
1744 |
+
#: includes/admin/class-setup-wizard.php:333
|
1745 |
+
msgid "What is your site about?"
|
1746 |
+
msgstr ""
|
1747 |
+
|
1748 |
+
#: includes/admin/class-welcome.php:160
|
1749 |
+
msgid "What's New"
|
1750 |
+
msgstr ""
|
1751 |
+
|
1752 |
+
#: includes/admin/class-welcome.php:52 includes/admin/class-welcome.php:53
|
1753 |
+
msgid "What's new in Schema"
|
1754 |
+
msgstr ""
|
1755 |
+
|
1756 |
+
#: includes/admin/class-welcome.php:348
|
1757 |
+
msgid "Why is Structured Data so Important?"
|
1758 |
+
msgstr ""
|
1759 |
+
|
1760 |
+
#: includes/admin/class-welcome.php:230
|
1761 |
+
msgid "WPFooter"
|
1762 |
+
msgstr ""
|
1763 |
+
|
1764 |
+
#: includes/admin/class-welcome.php:226
|
1765 |
+
msgid "WPHeader"
|
1766 |
+
msgstr ""
|
1767 |
+
|
1768 |
+
#: includes/admin/class-setup-wizard.php:629
|
1769 |
+
#: includes/admin/class-setup-wizard.php:632
|
1770 |
+
#: includes/admin/settings/register-settings.php:545
|
1771 |
+
msgid "WPHeader and WPFooter"
|
1772 |
+
msgstr ""
|
1773 |
+
|
1774 |
+
#: includes/admin/class-welcome.php:277
|
1775 |
+
msgid "WPRichSnippets plugin"
|
1776 |
+
msgstr ""
|
1777 |
+
|
1778 |
+
#: includes/integrations/yoast-seo.php:78
|
1779 |
+
msgid "Yes"
|
1780 |
+
msgstr ""
|
1781 |
+
|
1782 |
+
#: includes/admin/class-setup-wizard.php:692
|
1783 |
+
msgid "You can change settings from"
|
1784 |
+
msgstr ""
|
1785 |
+
|
1786 |
+
#: schema.php:124 schema.php:136
|
1787 |
+
msgid "You don’t have permission to do this"
|
1788 |
+
msgstr ""
|
1789 |
+
|
1790 |
+
#: includes/admin/class-feedback.php:234
|
1791 |
+
#, php-format
|
1792 |
+
msgid "You have been using the %s plugin for %s now!"
|
1793 |
+
msgstr ""
|
1794 |
+
|
1795 |
+
#: includes/extensions/audio-object.php:95
|
1796 |
+
msgid ""
|
1797 |
+
"You have enabled AudioObject, if you see an error in the <a "
|
1798 |
+
"target=\"_blank\" href=\"https://search.google.com/structured-data/testing-"
|
1799 |
+
"tool\">testing tool</a>, use the fields below to fill the missing fields, "
|
1800 |
+
"correct markup errors, and add additional details about the audio embedded "
|
1801 |
+
"in your content editor."
|
1802 |
+
msgstr ""
|
1803 |
+
|
1804 |
+
#: includes/extensions/video-object.php:95
|
1805 |
+
msgid ""
|
1806 |
+
"You have enabled VideoObject, if you see an error in the <a "
|
1807 |
+
"target=\"_blank\" href=\"https://search.google.com/structured-data/testing-"
|
1808 |
+
"tool\">testing tool</a>, use the fields below to fill the missing fields, "
|
1809 |
+
"correct markup errors, and add additional details about the video embedded "
|
1810 |
+
"in your content editor."
|
1811 |
+
msgstr ""
|
1812 |
+
|
1813 |
+
#: includes/admin/updater/class-license-handler.php:436
|
1814 |
+
#, php-format
|
1815 |
+
msgid ""
|
1816 |
+
"You have invalid or expired license keys for Schema. Please go to the <a "
|
1817 |
+
"href=\"%s\">Licenses page</a> to correct this issue."
|
1818 |
+
msgstr ""
|
1819 |
+
|
1820 |
+
#: includes/admin/post-type/schema-wp-ajax.php:95
|
1821 |
+
msgid "You must select at least one post type!"
|
1822 |
+
msgstr ""
|
1823 |
+
|
1824 |
+
#: includes/admin/class-setup-wizard.php:688
|
1825 |
+
msgid "You've done it!"
|
1826 |
+
msgstr ""
|
1827 |
+
|
1828 |
+
#: includes/admin/class-feedback.php:236
|
1829 |
+
msgid "your feedback"
|
1830 |
+
msgstr ""
|
1831 |
+
|
1832 |
+
#: schema.php:147
|
1833 |
+
msgid ""
|
1834 |
+
"Your version of PHP is below the minimum version of PHP required by Schema "
|
1835 |
+
"plugin. Please contact your host and request that your version be upgraded "
|
1836 |
+
"to 5.4 or later."
|
1837 |
+
msgstr ""
|
1838 |
+
|
1839 |
+
#: includes/admin/class-setup-wizard.php:502
|
1840 |
+
#: includes/admin/class-setup-wizard.php:505
|
1841 |
+
#: includes/admin/settings/register-settings.php:373
|
1842 |
+
msgid "YouTube"
|
1843 |
+
msgstr ""
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: schema, schema.org, rich snippets, structured data, json-ld, json, google,
|
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 5.2.4
|
7 |
Requires PHP: 5.4
|
8 |
-
Stable tag: 1.7.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -51,9 +51,10 @@ Schema markup is code (semantic vocabulary) that you put on your website to help
|
|
51 |
|
52 |
### Premium Plugin Extensions
|
53 |
|
54 |
-
* [Schema for WooCommerce](https://schema.press/downloads/schema-woocommerce/): Integration for
|
55 |
* [Schema FAQ Block](https://schema.press/downloads/schema-faq-block/): Add FAQ Block.
|
56 |
-
* [Schema How-To Block](https://schema.press/downloads/schema-
|
|
|
57 |
|
58 |
### Supported Google/Schema Markups
|
59 |
|
@@ -107,6 +108,7 @@ Schema markup is code (semantic vocabulary) that you put on your website to help
|
|
107 |
* [Review](https://schema.press/docs-premium/add-schema-org-markup-for-review/)
|
108 |
* [Service](https://schema.press/docs-premium/add-schema-service/)
|
109 |
* [Software Application](https://schema.press/docs-premium/add-schema-org-markup-for-software-application/)
|
|
|
110 |
|
111 |
### Supported Plugins
|
112 |
|
@@ -117,7 +119,7 @@ Schema plugin integrates and/or play nicely with (not necessarily a full integra
|
|
117 |
* Accelerated Mobile Pages - AMP for WP
|
118 |
* WPRichSnippets
|
119 |
* The SEO Framework
|
120 |
-
*
|
121 |
* ThirstyAffiliates
|
122 |
* **[Premium]** WooCommerce: [Schema for WooCommerce](https://schema.press/downloads/schema-woocommerce/) extension.
|
123 |
* Easy Digital Downloads (EDD)
|
@@ -162,7 +164,7 @@ Post detailed information about the issue in the [support forum](https://wordpre
|
|
162 |
|
163 |
Indeed, detailed information about the plugin can be found on the [documentation section](https://schema.press/docs/) on our website.
|
164 |
|
165 |
-
= Are you going to
|
166 |
|
167 |
Nope! The Schema plugin is meant to add markup to a basic WordPress installation, including those types (mostly Article, BlogPosting) which needs to be supported on a fresh install.
|
168 |
|
@@ -198,14 +200,23 @@ Yes, Schema plugin will detect Yoast SEO plugin and override its output on the f
|
|
198 |
Yes, Schema plugin will detect AMP plugin and output a more complete and valid schema.org markup.
|
199 |
|
200 |
== Screenshots ==
|
201 |
-
1. Plugin Settings page.
|
202 |
-
2.
|
203 |
-
3.
|
204 |
-
4.
|
205 |
-
5.
|
|
|
|
|
|
|
206 |
|
207 |
== Changelog ==
|
208 |
|
|
|
|
|
|
|
|
|
|
|
|
|
209 |
= 1.7.7 =
|
210 |
* Fix: Taxonomy json output on WooCommerce product category.
|
211 |
* Fix: Generate image object instead of image url in Organization logo markup.
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 5.2.4
|
7 |
Requires PHP: 5.4
|
8 |
+
Stable tag: 1.7.8
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
51 |
|
52 |
### Premium Plugin Extensions
|
53 |
|
54 |
+
* [Schema for WooCommerce](https://schema.press/downloads/schema-woocommerce/): Integration for WooCommerce.
|
55 |
* [Schema FAQ Block](https://schema.press/downloads/schema-faq-block/): Add FAQ Block.
|
56 |
+
* [Schema How-To Block](https://schema.press/downloads/schema-howto-block/): Add How-To Block.
|
57 |
+
* [Schema Rating](https://schema.press/downloads/schema-rating/): Allow site visitors to submit rating on front-end.
|
58 |
|
59 |
### Supported Google/Schema Markups
|
60 |
|
108 |
* [Review](https://schema.press/docs-premium/add-schema-org-markup-for-review/)
|
109 |
* [Service](https://schema.press/docs-premium/add-schema-service/)
|
110 |
* [Software Application](https://schema.press/docs-premium/add-schema-org-markup-for-software-application/)
|
111 |
+
* [WebPage](https://schema.press/version-110-support-medical-web-page/)
|
112 |
|
113 |
### Supported Plugins
|
114 |
|
119 |
* Accelerated Mobile Pages - AMP for WP
|
120 |
* WPRichSnippets
|
121 |
* The SEO Framework
|
122 |
+
* WPBakery Page Builder
|
123 |
* ThirstyAffiliates
|
124 |
* **[Premium]** WooCommerce: [Schema for WooCommerce](https://schema.press/downloads/schema-woocommerce/) extension.
|
125 |
* Easy Digital Downloads (EDD)
|
164 |
|
165 |
Indeed, detailed information about the plugin can be found on the [documentation section](https://schema.press/docs/) on our website.
|
166 |
|
167 |
+
= Are you going to support new schema.org types in the future? =
|
168 |
|
169 |
Nope! The Schema plugin is meant to add markup to a basic WordPress installation, including those types (mostly Article, BlogPosting) which needs to be supported on a fresh install.
|
170 |
|
200 |
Yes, Schema plugin will detect AMP plugin and output a more complete and valid schema.org markup.
|
201 |
|
202 |
== Screenshots ==
|
203 |
+
1. Schema Plugin General Settings page.
|
204 |
+
2. Schema Plugin Knowledge Graph Settings page.
|
205 |
+
3. Schema Plugin Schemas Settings page.
|
206 |
+
4. Schema Plugin Advanced Settings page.
|
207 |
+
5. Create new schema type screen.
|
208 |
+
6. Create post meta fields with Post Meta Box generator feature.
|
209 |
+
7. Google Structured Data Testing Tool.
|
210 |
+
8. Schema Plugin Easy Configuration Wizard.
|
211 |
|
212 |
== Changelog ==
|
213 |
|
214 |
+
= 1.7.8 =
|
215 |
+
* Enhancement: Added Schema premium settings to plugin settings.
|
216 |
+
* Updated: Changed Visual Composer in readme.txt file to WPBakery Page Builder.
|
217 |
+
* Update: Added more screenshots for plugin settings.
|
218 |
+
* Update: Modified readme.txt file.
|
219 |
+
|
220 |
= 1.7.7 =
|
221 |
* Fix: Taxonomy json output on WooCommerce product category.
|
222 |
* Fix: Generate image object instead of image url in Organization logo markup.
|
schema.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: The next generation of Structured Data.
|
6 |
* Author: Hesham
|
7 |
* Author URI: http://zebida.com
|
8 |
-
* Version: 1.7.
|
9 |
* Text Domain: schema-wp
|
10 |
* Domain Path: languages
|
11 |
*
|
@@ -50,7 +50,7 @@ final class Schema_WP {
|
|
50 |
*
|
51 |
* @since 1.0
|
52 |
*/
|
53 |
-
private $version = '1.7.
|
54 |
|
55 |
/**
|
56 |
* The settings instance variable
|
5 |
* Description: The next generation of Structured Data.
|
6 |
* Author: Hesham
|
7 |
* Author URI: http://zebida.com
|
8 |
+
* Version: 1.7.8
|
9 |
* Text Domain: schema-wp
|
10 |
* Domain Path: languages
|
11 |
*
|
50 |
*
|
51 |
* @since 1.0
|
52 |
*/
|
53 |
+
private $version = '1.7.8';
|
54 |
|
55 |
/**
|
56 |
* The settings instance variable
|