Version Description
- 2019-03-06 =
- New feature: Added a preview section on the plugin settings page. In this preview, the user can see the meta tags that will be printed on all pages (globally) of his website.
- The function "_prepare" is improved. The "$metatags_arr" array renamed to more readable. The array declaration is made more correct.
- Code formatting improved.
- Code commenting improved.
- Some texts are corrected or replaced with new ones.
- All translation files are updated.
Download this release
Release Info
Developer | Arthur Gareginyan |
Plugin | All Meta Tags |
Version | 4.31 |
Comparing to | |
See all releases |
Code changes from version 4.30 to 4.31
- all-meta-tags.php +1 -1
- inc/css/admin.css +3 -1
- inc/js/codemirror-settings.js +11 -0
- inc/php/functional.php +60 -36
- inc/php/tabs/settings.php +58 -22
- inc/php/tabs/support.php +1 -1
- languages/all-meta-tags-de_DE.mo +0 -0
- languages/all-meta-tags-de_DE.po +100 -71
- languages/all-meta-tags-es_ES.mo +0 -0
- languages/all-meta-tags-es_ES.po +121 -92
- languages/all-meta-tags-es_MX.mo +0 -0
- languages/all-meta-tags-es_MX.po +105 -76
- languages/all-meta-tags-fr_FR.mo +0 -0
- languages/all-meta-tags-fr_FR.po +101 -72
- languages/all-meta-tags-it_IT.mo +0 -0
- languages/all-meta-tags-it_IT.po +120 -90
- languages/all-meta-tags-nl_NL.mo +0 -0
- languages/all-meta-tags-nl_NL.po +101 -72
- languages/all-meta-tags-ru_RU.mo +0 -0
- languages/all-meta-tags-ru_RU.po +121 -91
- languages/all-meta-tags.pot +99 -70
- readme.txt +9 -1
all-meta-tags.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: Easily and safely add your custom meta tags to the WordPress website's head section. This is a must have tool for authors and website's owners.
|
6 |
* Author: Space X-Chimp
|
7 |
* Author URI: https://www.spacexchimp.com
|
8 |
-
* Version: 4.
|
9 |
* License: GPL3
|
10 |
* Text Domain: all-meta-tags
|
11 |
* Domain Path: /languages/
|
5 |
* Description: Easily and safely add your custom meta tags to the WordPress website's head section. This is a must have tool for authors and website's owners.
|
6 |
* Author: Space X-Chimp
|
7 |
* Author URI: https://www.spacexchimp.com
|
8 |
+
* Version: 4.31
|
9 |
* License: GPL3
|
10 |
* Text Domain: all-meta-tags
|
11 |
* Domain Path: /languages/
|
inc/css/admin.css
CHANGED
@@ -51,7 +51,7 @@ p {
|
|
51 |
display: block;
|
52 |
margin-top: 15px;
|
53 |
font-size: 16px;
|
54 |
-
letter-spacing: .2em;
|
55 |
text-shadow: none;
|
56 |
line-height: 20px;
|
57 |
}
|
@@ -588,9 +588,11 @@ td.help-text b {
|
|
588 |
.CodeMirror pre.CodeMirror-placeholder {
|
589 |
color: #999;
|
590 |
}
|
|
|
591 |
#woocommerce .CodeMirror {
|
592 |
height: 100% !important;
|
593 |
}
|
|
|
594 |
#woocommerce .CodeMirror .CodeMirror-lines {
|
595 |
cursor: default;
|
596 |
}
|
51 |
display: block;
|
52 |
margin-top: 15px;
|
53 |
font-size: 16px;
|
54 |
+
letter-spacing: 0.2em;
|
55 |
text-shadow: none;
|
56 |
line-height: 20px;
|
57 |
}
|
588 |
.CodeMirror pre.CodeMirror-placeholder {
|
589 |
color: #999;
|
590 |
}
|
591 |
+
#preview .CodeMirror,
|
592 |
#woocommerce .CodeMirror {
|
593 |
height: 100% !important;
|
594 |
}
|
595 |
+
#preview .CodeMirror .CodeMirror-lines,
|
596 |
#woocommerce .CodeMirror .CodeMirror-lines {
|
597 |
cursor: default;
|
598 |
}
|
inc/js/codemirror-settings.js
CHANGED
@@ -26,6 +26,17 @@ jQuery(document).ready(function($) {
|
|
26 |
});
|
27 |
|
28 |
// Replace the preview textarea with the CodeMirror editor
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
$('#woocommerce textarea').each(function(index, element){
|
30 |
var editor = CodeMirror.fromTextArea(element, {
|
31 |
lineNumbers: false,
|
26 |
});
|
27 |
|
28 |
// Replace the preview textarea with the CodeMirror editor
|
29 |
+
$('#preview textarea').each(function(index, element){
|
30 |
+
var editor = CodeMirror.fromTextArea(element, {
|
31 |
+
lineNumbers: false,
|
32 |
+
indentUnit: 4,
|
33 |
+
mode: 'text/html',
|
34 |
+
autoRefresh: true,
|
35 |
+
readOnly: true
|
36 |
+
});
|
37 |
+
});
|
38 |
+
|
39 |
+
// Replace the WooCommerce preview textarea with the CodeMirror editor
|
40 |
$('#woocommerce textarea').each(function(index, element){
|
41 |
var editor = CodeMirror.fromTextArea(element, {
|
42 |
lineNumbers: false,
|
inc/php/functional.php
CHANGED
@@ -6,14 +6,14 @@
|
|
6 |
defined( 'ABSPATH' ) or die( "Restricted access!" );
|
7 |
|
8 |
/**
|
9 |
-
* Generate the
|
10 |
*/
|
11 |
function spacexchimp_p004_prepare() {
|
12 |
|
13 |
// Retrieve options from database
|
14 |
$options = get_option( SPACEXCHIMP_P004_SETTINGS . '_settings' );
|
15 |
|
16 |
-
//
|
17 |
$google = esc_textarea( $options['google'] );
|
18 |
$bing = esc_textarea( $options['bing'] );
|
19 |
$yandex = esc_textarea( $options['yandex'] );
|
@@ -40,91 +40,91 @@ function spacexchimp_p004_prepare() {
|
|
40 |
$copyright = esc_textarea( $options['copyright'] );
|
41 |
$keywords = esc_textarea( $options['keywords'] );
|
42 |
|
43 |
-
$
|
44 |
|
45 |
// Web Master Tools
|
46 |
if ( !empty( $google ) ) {
|
47 |
-
$
|
48 |
}
|
49 |
if ( !empty( $yandex ) ) {
|
50 |
-
$
|
51 |
}
|
52 |
if ( !empty( $bing ) ) {
|
53 |
-
$
|
54 |
}
|
55 |
|
56 |
// Website Verification Services
|
57 |
if ( !empty( $pinterest ) ) {
|
58 |
-
$
|
59 |
}
|
60 |
if ( !empty( $google_author ) ) {
|
61 |
-
$
|
62 |
}
|
63 |
if ( !empty( $facebook ) ) {
|
64 |
-
$
|
65 |
}
|
66 |
if ( !empty( $twitter ) ) {
|
67 |
-
$
|
68 |
-
$
|
69 |
}
|
70 |
if ( !empty( $alexa ) ) {
|
71 |
-
$
|
72 |
}
|
73 |
if ( !empty( $norton ) ) {
|
74 |
-
$
|
75 |
}
|
76 |
if ( !empty( $wot ) ) {
|
77 |
-
$
|
78 |
}
|
79 |
if ( !empty( $specificfeeds ) ) {
|
80 |
-
$
|
81 |
}
|
82 |
if ( !empty( $custom_meta ) ) {
|
83 |
-
$
|
84 |
}
|
85 |
|
86 |
-
//
|
87 |
if ( is_front_page() && is_home() ) {
|
88 |
// Default Home Page
|
89 |
if ( !empty( $home_description ) ) {
|
90 |
-
$
|
91 |
}
|
92 |
if ( !empty( $home_keywords ) ) {
|
93 |
-
$
|
94 |
}
|
95 |
} elseif ( is_front_page() ) {
|
96 |
// Static Home Page
|
97 |
if ( !empty( $home_description ) ) {
|
98 |
-
$
|
99 |
}
|
100 |
if ( !empty( $home_keywords ) ) {
|
101 |
-
$
|
102 |
}
|
103 |
} elseif ( is_home() ) {
|
104 |
// Blog Page
|
105 |
if ( !empty( $home_description ) ) {
|
106 |
-
$
|
107 |
}
|
108 |
if ( !empty( $home_keywords ) ) {
|
109 |
-
$
|
110 |
}
|
111 |
}
|
112 |
|
113 |
-
//
|
114 |
if ( !empty( $author ) ) {
|
115 |
-
$
|
116 |
}
|
117 |
if ( !empty( $designer ) ) {
|
118 |
-
$
|
119 |
}
|
120 |
if ( !empty( $contact ) ) {
|
121 |
-
$
|
122 |
}
|
123 |
if ( !empty( $copyright ) ) {
|
124 |
-
$
|
125 |
}
|
126 |
if ( !empty( $keywords ) ) {
|
127 |
-
$
|
128 |
}
|
129 |
|
130 |
// WooCommerce & Google Shopping (Merchant Center)
|
@@ -154,23 +154,23 @@ function spacexchimp_p004_prepare() {
|
|
154 |
<meta itemprop='priceCurrency' content='$currency' />
|
155 |
</div>
|
156 |
</div>";
|
157 |
-
$
|
158 |
}
|
159 |
|
160 |
}
|
161 |
|
162 |
// Add comment
|
163 |
-
if ( count( $
|
164 |
-
array_unshift( $
|
165 |
-
array_push( $
|
166 |
}
|
167 |
|
168 |
// Return the content of array
|
169 |
-
return $
|
170 |
}
|
171 |
|
172 |
/**
|
173 |
-
* Process the
|
174 |
*/
|
175 |
function spacexchimp_p004_exec() {
|
176 |
echo PHP_EOL,
|
@@ -180,6 +180,30 @@ function spacexchimp_p004_exec() {
|
|
180 |
}
|
181 |
|
182 |
/**
|
183 |
-
* Inject the
|
184 |
*/
|
185 |
add_action( 'wp_head', 'spacexchimp_p004_exec', 0 );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
defined( 'ABSPATH' ) or die( "Restricted access!" );
|
7 |
|
8 |
/**
|
9 |
+
* Generate the custom meta tags
|
10 |
*/
|
11 |
function spacexchimp_p004_prepare() {
|
12 |
|
13 |
// Retrieve options from database
|
14 |
$options = get_option( SPACEXCHIMP_P004_SETTINGS . '_settings' );
|
15 |
|
16 |
+
// Sanitize data and declare variables
|
17 |
$google = esc_textarea( $options['google'] );
|
18 |
$bing = esc_textarea( $options['bing'] );
|
19 |
$yandex = esc_textarea( $options['yandex'] );
|
40 |
$copyright = esc_textarea( $options['copyright'] );
|
41 |
$keywords = esc_textarea( $options['keywords'] );
|
42 |
|
43 |
+
$array = array();
|
44 |
|
45 |
// Web Master Tools
|
46 |
if ( !empty( $google ) ) {
|
47 |
+
$array[] = "<meta name='google-site-verification' content='$google' />";
|
48 |
}
|
49 |
if ( !empty( $yandex ) ) {
|
50 |
+
$array[] = "<meta name='yandex-verification' content='$yandex' />";
|
51 |
}
|
52 |
if ( !empty( $bing ) ) {
|
53 |
+
$array[] = "<meta name='msvalidate.01' content='$bing' />";
|
54 |
}
|
55 |
|
56 |
// Website Verification Services
|
57 |
if ( !empty( $pinterest ) ) {
|
58 |
+
$array[] = "<meta name='p:domain_verify' content='$pinterest' />";
|
59 |
}
|
60 |
if ( !empty( $google_author ) ) {
|
61 |
+
$array[] = "<link rel='author' href='$google_author'>";
|
62 |
}
|
63 |
if ( !empty( $facebook ) ) {
|
64 |
+
$array[] = "<meta name='article:publisher' content='$facebook' />";
|
65 |
}
|
66 |
if ( !empty( $twitter ) ) {
|
67 |
+
$array[] = "<meta name='twitter:site' content='$twitter' />";
|
68 |
+
$array[] = "<meta name='twitter:creator' content='$twitter' />";
|
69 |
}
|
70 |
if ( !empty( $alexa ) ) {
|
71 |
+
$array[] = "<meta name='alexaVerifyID' content='$alexa' />";
|
72 |
}
|
73 |
if ( !empty( $norton ) ) {
|
74 |
+
$array[] = "<meta name='norton-safeweb-site-verification' content='$norton' />";
|
75 |
}
|
76 |
if ( !empty( $wot ) ) {
|
77 |
+
$array[] = "<meta name='wot-verification' content='$wot' />";
|
78 |
}
|
79 |
if ( !empty( $specificfeeds ) ) {
|
80 |
+
$array[] = "<meta name='specificfeeds-verification-code' content='$specificfeeds' />";
|
81 |
}
|
82 |
if ( !empty( $custom_meta ) ) {
|
83 |
+
$array[] = $custom_meta;
|
84 |
}
|
85 |
|
86 |
+
// Custom meta tags for specific pages
|
87 |
if ( is_front_page() && is_home() ) {
|
88 |
// Default Home Page
|
89 |
if ( !empty( $home_description ) ) {
|
90 |
+
$array[] = "<meta name='description' content='$blog_description' />";
|
91 |
}
|
92 |
if ( !empty( $home_keywords ) ) {
|
93 |
+
$array[] = "<meta name='keywords' content='$blog_keywords' />";
|
94 |
}
|
95 |
} elseif ( is_front_page() ) {
|
96 |
// Static Home Page
|
97 |
if ( !empty( $home_description ) ) {
|
98 |
+
$array[] = "<meta name='description' content='$home_description' />";
|
99 |
}
|
100 |
if ( !empty( $home_keywords ) ) {
|
101 |
+
$array[] = "<meta name='keywords' content='$home_keywords' />";
|
102 |
}
|
103 |
} elseif ( is_home() ) {
|
104 |
// Blog Page
|
105 |
if ( !empty( $home_description ) ) {
|
106 |
+
$array[] = "<meta name='description' content='$blog_description' />";
|
107 |
}
|
108 |
if ( !empty( $home_keywords ) ) {
|
109 |
+
$array[] = "<meta name='keywords' content='$blog_keywords' />";
|
110 |
}
|
111 |
}
|
112 |
|
113 |
+
// Custom meta tags for the entire website
|
114 |
if ( !empty( $author ) ) {
|
115 |
+
$array[] = "<meta name='author' content='$author' />";
|
116 |
}
|
117 |
if ( !empty( $designer ) ) {
|
118 |
+
$array[] = "<meta name='designer' content='$designer' />";
|
119 |
}
|
120 |
if ( !empty( $contact ) ) {
|
121 |
+
$array[] = "<meta name='contact' content='$contact' />";
|
122 |
}
|
123 |
if ( !empty( $copyright ) ) {
|
124 |
+
$array[] = "<meta name='copyright' content='$copyright' />";
|
125 |
}
|
126 |
if ( !empty( $keywords ) ) {
|
127 |
+
$array[] = "<meta name='keywords' content='$keywords' />";
|
128 |
}
|
129 |
|
130 |
// WooCommerce & Google Shopping (Merchant Center)
|
154 |
<meta itemprop='priceCurrency' content='$currency' />
|
155 |
</div>
|
156 |
</div>";
|
157 |
+
$array[] = $google_shopping;
|
158 |
}
|
159 |
|
160 |
}
|
161 |
|
162 |
// Add comment
|
163 |
+
if ( count( $array ) > 0 ) {
|
164 |
+
array_unshift( $array, "<!-- [BEGIN] Metadata added via All-Meta-Tags plugin by Space X-Chimp ( https://www.spacexchimp.com ) -->" );
|
165 |
+
array_push( $array, "<!-- [END] Metadata added via All-Meta-Tags plugin by Space X-Chimp ( https://www.spacexchimp.com ) -->" );
|
166 |
}
|
167 |
|
168 |
// Return the content of array
|
169 |
+
return $array;
|
170 |
}
|
171 |
|
172 |
/**
|
173 |
+
* Process the custom meta tags
|
174 |
*/
|
175 |
function spacexchimp_p004_exec() {
|
176 |
echo PHP_EOL,
|
180 |
}
|
181 |
|
182 |
/**
|
183 |
+
* Inject the custom meta tags into the website's frontend
|
184 |
*/
|
185 |
add_action( 'wp_head', 'spacexchimp_p004_exec', 0 );
|
186 |
+
|
187 |
+
/**
|
188 |
+
* Preview the custom meta tags
|
189 |
+
*/
|
190 |
+
function spacexchimp_p004_preview() {
|
191 |
+
$array = spacexchimp_p004_prepare();
|
192 |
+
|
193 |
+
if ( !empty( $array ) ) {
|
194 |
+
if ( is_array( $array ) ) {
|
195 |
+
if ( count( $array ) > 0 ) {
|
196 |
+
array_shift( $array );
|
197 |
+
}
|
198 |
+
if ( count( $array ) > 0 ) {
|
199 |
+
array_pop( $array );
|
200 |
+
}
|
201 |
+
if ( count( $array ) > 0 ) {
|
202 |
+
$array = implode( PHP_EOL, $array );
|
203 |
+
}
|
204 |
+
}
|
205 |
+
}
|
206 |
+
|
207 |
+
// Return the string
|
208 |
+
echo $array;
|
209 |
+
}
|
inc/php/tabs/settings.php
CHANGED
@@ -24,25 +24,30 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
24 |
<div class="postbox" id="webmastertools">
|
25 |
<h3 class="title"><?php _e( 'Web Master Tools', $text ); ?></h3>
|
26 |
<div class="inside">
|
27 |
-
<p class="note"
|
|
|
|
|
|
|
|
|
|
|
28 |
<table class="form-table">
|
29 |
<?php
|
30 |
spacexchimp_p004_control_field( 'google',
|
31 |
'Google Webmaster Tools',
|
32 |
'1234567890',
|
33 |
-
__( 'Enter your meta key “content” value from your verification code to verify your website. <br>Example: <meta name="google-site-verification" content=“<b>1234567890</b>” />',
|
34 |
'https://www.google.com/webmasters/verification/'
|
35 |
);
|
36 |
spacexchimp_p004_control_field( 'bing',
|
37 |
'Bing Webmaster Tools',
|
38 |
'1234567890',
|
39 |
-
__( 'Enter your meta key “content” value from your verification code to verify your website. <br>Example: <meta name="msvalidate.01" content=“<b>1234567890</b>” />',
|
40 |
'http://www.bing.com/webmaster/'
|
41 |
);
|
42 |
spacexchimp_p004_control_field( 'yandex',
|
43 |
'Yandex Webmaster Tools',
|
44 |
'1234567890',
|
45 |
-
__( 'Enter your meta key “content” value from your verification code to verify your website. <br>Example: <meta name="yandex-verification" content=“<b>1234567890</b>” />',
|
46 |
'https://webmaster.yandex.com'
|
47 |
);
|
48 |
?>
|
@@ -53,61 +58,66 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
53 |
<div class="postbox" id="domainverification">
|
54 |
<h3 class="title"><?php _e( 'Domain Verification', $text ); ?></h3>
|
55 |
<div class="inside">
|
56 |
-
<p class="note"
|
|
|
|
|
|
|
|
|
|
|
57 |
<table class="form-table">
|
58 |
<?php
|
59 |
spacexchimp_p004_control_field( 'pinterest',
|
60 |
'Pinterest',
|
61 |
'1234567890',
|
62 |
-
__( 'Enter your meta key “content” value from your verification code to verify your website. <br>Example: <meta name="p:domain_verify" content=“<b>1234567890</b>” />',
|
63 |
'https://help.pinterest.com/en/articles/confirm-your-website'
|
64 |
);
|
65 |
spacexchimp_p004_control_field( 'google_author',
|
66 |
'Google+',
|
67 |
'https://plus.google.com/+Username/',
|
68 |
-
__( 'Enter an absolute URL to the Google+ profile of the publisher. <br>Example: https://plus.google.com/+Username/'
|
69 |
'https://plus.google.com/'
|
70 |
);
|
71 |
spacexchimp_p004_control_field( 'facebook',
|
72 |
'Facebook',
|
73 |
'https://www.facebook.com/username',
|
74 |
-
__( 'Enter an absolute URL to the Facebook profile of the publisher. <br>Example: https://www.facebook.com/username'
|
75 |
'https://www.facebook.com/'
|
76 |
);
|
77 |
spacexchimp_p004_control_field( 'twitter',
|
78 |
'Twitter',
|
79 |
'@Username',
|
80 |
-
__( 'Enter the Twitter username of the publisher. <br>Example:
|
81 |
'https://twitter.com/'
|
82 |
);
|
83 |
spacexchimp_p004_control_field( 'alexa',
|
84 |
'Alexa',
|
85 |
'1234567890',
|
86 |
-
__( 'Enter your meta key “content” value from your verification code to verify your website. <br>Example: <meta name="alexaVerifyID" content=“<b>1234567890</b>” />',
|
87 |
'http://www.alexa.com/siteowners/claim'
|
88 |
);
|
89 |
spacexchimp_p004_control_field( 'norton',
|
90 |
'Norton Safe Web',
|
91 |
'1234567890',
|
92 |
-
__( 'Enter your meta key “content” value from your verification code to verify your website. <br>Example: <meta name="norton-safeweb-site-verification" content=“<b>1234567890</b>” />',
|
93 |
'https://safeweb.norton.com/help/site_owners'
|
94 |
);
|
95 |
spacexchimp_p004_control_field( 'wot',
|
96 |
'Web of Trust (WOT)',
|
97 |
'1234567890',
|
98 |
-
__( 'Enter your meta key “content” value from your verification code to verify your website. <br>Example: <meta name="wot-verification" content=“<b>1234567890</b>” />',
|
99 |
'https://www.mywot.com/wiki/Verify_your_website'
|
100 |
);
|
101 |
spacexchimp_p004_control_field( 'specificfeeds',
|
102 |
'SpecificFeeds',
|
103 |
'1234567890',
|
104 |
-
__( 'Enter your meta key “content” value from your verification code to verify your website. <br>Example: <meta name="specificfeeds-verification-code" content=“<b>1234567890</b>” />',
|
105 |
'https://www.specificfeeds.com'
|
106 |
);
|
107 |
spacexchimp_p004_control_textarea( 'custom_meta',
|
108 |
-
__( 'Custom
|
109 |
'<meta name="google-site-verification" content=“1234567890” />',
|
110 |
-
__( 'If you can\'t find a field to enter your required meta tag then you can add it here. In this field you can add multiple meta tags.', $text )
|
111 |
);
|
112 |
?>
|
113 |
</table>
|
@@ -115,7 +125,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
115 |
</div>
|
116 |
|
117 |
<div class="postbox" id="home">
|
118 |
-
<h3 class="title"><?php _e( 'Meta
|
119 |
<div class="inside">
|
120 |
<p class="note"><?php _e( 'You can use the options below to add meta tags such as Description and Keywords only in Static Home Page of your website.', $text ); ?></p>
|
121 |
<table class="form-table">
|
@@ -123,7 +133,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
123 |
spacexchimp_p004_control_textarea( 'home_description',
|
124 |
__( 'Home Description', $text ),
|
125 |
'My website is about plants, nature, the sea and everything I love',
|
126 |
-
__( 'Enter a short description of your website (150-250 characters). Most search engines use a maximum of 160 chars for the home description.', $text )
|
127 |
);
|
128 |
spacexchimp_p004_control_textarea( 'home_keywords',
|
129 |
__( 'Home Keyword(s)', $text ),
|
@@ -136,7 +146,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
136 |
</div>
|
137 |
|
138 |
<div class="postbox" id="blog">
|
139 |
-
<h3 class="title"><?php _e( 'Meta
|
140 |
<div class="inside">
|
141 |
<p class="note"><?php _e( 'You can use the options below to add meta tags such as Description and Keywords only in Default Home Page and Blog Page of your website.', $text ); ?></p>
|
142 |
<table class="form-table">
|
@@ -144,7 +154,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
144 |
spacexchimp_p004_control_textarea( 'blog_description',
|
145 |
__( 'Blog Description', $text ),
|
146 |
'My blog is about plants, nature, the sea and everything I love',
|
147 |
-
__( 'Enter a short description of your website (150-250 characters). Most search engines use a maximum of 160 chars for the home description.', $text )
|
148 |
);
|
149 |
spacexchimp_p004_control_textarea( 'blog_keywords',
|
150 |
__( 'Blog Keyword(s)', $text ),
|
@@ -157,7 +167,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
157 |
</div>
|
158 |
|
159 |
<div class="postbox" id="everywhere">
|
160 |
-
<h3 class="title"><?php _e( 'Meta
|
161 |
<div class="inside">
|
162 |
<p class="note"><?php _e( 'You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere on your website.', $text ); ?></p>
|
163 |
<table class="form-table">
|
@@ -194,10 +204,27 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
194 |
|
195 |
<input type="submit" name="submit" id="submit" class="btn btn-default btn-lg button-save-main" value="<?php _e( 'Save changes', $text ); ?>">
|
196 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
197 |
<div class="postbox" id="woocommerce">
|
198 |
<h3 class="title"><?php _e( 'WooCommerce & Google Shopping', $text ); ?></h3>
|
199 |
<div class="inside">
|
200 |
-
<p
|
|
|
|
|
|
|
201 |
<?php
|
202 |
// Put the example in a variable
|
203 |
$example = '<div itemtype="http://schema.org/Product" itemscope="">
|
@@ -211,7 +238,16 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
211 |
</div>';
|
212 |
?>
|
213 |
<textarea readonly><?php echo $example; ?></textarea>
|
214 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
215 |
</div>
|
216 |
</div>
|
217 |
|
24 |
<div class="postbox" id="webmastertools">
|
25 |
<h3 class="title"><?php _e( 'Web Master Tools', $text ); ?></h3>
|
26 |
<div class="inside">
|
27 |
+
<p class="note">
|
28 |
+
<?php _e( 'Webmaster Tools require you to verify your domain.', $text ); ?>
|
29 |
+
<?php _e( 'This makes sure that you are the correct owner of your blog or store before they provide their services to you.', $text ); ?>
|
30 |
+
<?php _e( 'You can use the options below to verify your domain.', $text ); ?>
|
31 |
+
<?php _e( 'If your domain is already verified, you can just forget about these.', $text ); ?>
|
32 |
+
</p>
|
33 |
<table class="form-table">
|
34 |
<?php
|
35 |
spacexchimp_p004_control_field( 'google',
|
36 |
'Google Webmaster Tools',
|
37 |
'1234567890',
|
38 |
+
__( 'Enter your meta key “content” value from your verification code to verify your website.', $text ) . '<br>' . __( 'Example:', $text ) . '<meta name="google-site-verification" content=“<b>1234567890</b>” />',
|
39 |
'https://www.google.com/webmasters/verification/'
|
40 |
);
|
41 |
spacexchimp_p004_control_field( 'bing',
|
42 |
'Bing Webmaster Tools',
|
43 |
'1234567890',
|
44 |
+
__( 'Enter your meta key “content” value from your verification code to verify your website.', $text ) . '<br>' . __( 'Example:', $text ) . '<meta name="msvalidate.01" content=“<b>1234567890</b>” />',
|
45 |
'http://www.bing.com/webmaster/'
|
46 |
);
|
47 |
spacexchimp_p004_control_field( 'yandex',
|
48 |
'Yandex Webmaster Tools',
|
49 |
'1234567890',
|
50 |
+
__( 'Enter your meta key “content” value from your verification code to verify your website.', $text ) . '<br>' . __( 'Example:', $text ) . '<meta name="yandex-verification" content=“<b>1234567890</b>” />',
|
51 |
'https://webmaster.yandex.com'
|
52 |
);
|
53 |
?>
|
58 |
<div class="postbox" id="domainverification">
|
59 |
<h3 class="title"><?php _e( 'Domain Verification', $text ); ?></h3>
|
60 |
<div class="inside">
|
61 |
+
<p class="note">
|
62 |
+
<?php _e( 'Third-party services like Alexa, Pinterest and Google-Plus require you to verify your domain.', $text ); ?>
|
63 |
+
<?php _e( 'This makes sure that you are the correct owner of your blog or store before they provide their services to you.', $text ); ?>
|
64 |
+
<?php _e( 'You can use the options below to verify your domain.', $text ); ?>
|
65 |
+
<?php _e( 'If your domain is already verified, you can just forget about these.', $text ); ?>
|
66 |
+
</p>
|
67 |
<table class="form-table">
|
68 |
<?php
|
69 |
spacexchimp_p004_control_field( 'pinterest',
|
70 |
'Pinterest',
|
71 |
'1234567890',
|
72 |
+
__( 'Enter your meta key “content” value from your verification code to verify your website.', $text ) . '<br>' . __( 'Example:', $text ) . '<meta name="p:domain_verify" content=“<b>1234567890</b>” />',
|
73 |
'https://help.pinterest.com/en/articles/confirm-your-website'
|
74 |
);
|
75 |
spacexchimp_p004_control_field( 'google_author',
|
76 |
'Google+',
|
77 |
'https://plus.google.com/+Username/',
|
78 |
+
__( 'Enter an absolute URL to the Google+ profile of the publisher.', $text ) . '<br>' . __( 'Example:', $text ) . '<b>' . 'https://plus.google.com/+Username/' . '<b>',
|
79 |
'https://plus.google.com/'
|
80 |
);
|
81 |
spacexchimp_p004_control_field( 'facebook',
|
82 |
'Facebook',
|
83 |
'https://www.facebook.com/username',
|
84 |
+
__( 'Enter an absolute URL to the Facebook profile of the publisher.', $text ) . '<br>' . __( 'Example:', $text ) . '<b>' . 'https://www.facebook.com/username' . '<b>',
|
85 |
'https://www.facebook.com/'
|
86 |
);
|
87 |
spacexchimp_p004_control_field( 'twitter',
|
88 |
'Twitter',
|
89 |
'@Username',
|
90 |
+
__( 'Enter the Twitter username of the publisher.', $text ) . '<br>' . __( 'Example:', $text ) . '<b>' . '@Username' . '<b>',
|
91 |
'https://twitter.com/'
|
92 |
);
|
93 |
spacexchimp_p004_control_field( 'alexa',
|
94 |
'Alexa',
|
95 |
'1234567890',
|
96 |
+
__( 'Enter your meta key “content” value from your verification code to verify your website.', $text ) . '<br>' . __( 'Example:', $text ) . '<meta name="alexaVerifyID" content=“<b>1234567890</b>” />',
|
97 |
'http://www.alexa.com/siteowners/claim'
|
98 |
);
|
99 |
spacexchimp_p004_control_field( 'norton',
|
100 |
'Norton Safe Web',
|
101 |
'1234567890',
|
102 |
+
__( 'Enter your meta key “content” value from your verification code to verify your website.', $text ) . '<br>' . __( 'Example:', $text ) . '<meta name="norton-safeweb-site-verification" content=“<b>1234567890</b>” />',
|
103 |
'https://safeweb.norton.com/help/site_owners'
|
104 |
);
|
105 |
spacexchimp_p004_control_field( 'wot',
|
106 |
'Web of Trust (WOT)',
|
107 |
'1234567890',
|
108 |
+
__( 'Enter your meta key “content” value from your verification code to verify your website.', $text ) . '<br>' . __( 'Example:', $text ) . '<meta name="wot-verification" content=“<b>1234567890</b>” />',
|
109 |
'https://www.mywot.com/wiki/Verify_your_website'
|
110 |
);
|
111 |
spacexchimp_p004_control_field( 'specificfeeds',
|
112 |
'SpecificFeeds',
|
113 |
'1234567890',
|
114 |
+
__( 'Enter your meta key “content” value from your verification code to verify your website.', $text ) . '<br>' . __( 'Example:', $text ) . '<meta name="specificfeeds-verification-code" content=“<b>1234567890</b>” />',
|
115 |
'https://www.specificfeeds.com'
|
116 |
);
|
117 |
spacexchimp_p004_control_textarea( 'custom_meta',
|
118 |
+
__( 'Custom meta tags', $text ),
|
119 |
'<meta name="google-site-verification" content=“1234567890” />',
|
120 |
+
__( 'If you can\'t find a field to enter your required meta tag then you can add it here.', $text ) . ' ' . __( 'In this field you can add multiple meta tags.', $text ) . '<br>' . __( 'Example:', $text ) . '<b><meta name="custom-meta" content=“1234567890” /></b>'
|
121 |
);
|
122 |
?>
|
123 |
</table>
|
125 |
</div>
|
126 |
|
127 |
<div class="postbox" id="home">
|
128 |
+
<h3 class="title"><?php _e( 'Meta tags for Static Home Page only', $text ); ?></h3>
|
129 |
<div class="inside">
|
130 |
<p class="note"><?php _e( 'You can use the options below to add meta tags such as Description and Keywords only in Static Home Page of your website.', $text ); ?></p>
|
131 |
<table class="form-table">
|
133 |
spacexchimp_p004_control_textarea( 'home_description',
|
134 |
__( 'Home Description', $text ),
|
135 |
'My website is about plants, nature, the sea and everything I love',
|
136 |
+
__( 'Enter a short description of your website (150-250 characters).', $text ) . ' ' . __( 'Most search engines use a maximum of 160 chars for the home description.', $text )
|
137 |
);
|
138 |
spacexchimp_p004_control_textarea( 'home_keywords',
|
139 |
__( 'Home Keyword(s)', $text ),
|
146 |
</div>
|
147 |
|
148 |
<div class="postbox" id="blog">
|
149 |
+
<h3 class="title"><?php _e( 'Meta tags for Default Home Page and Blog Page only', $text ); ?></h3>
|
150 |
<div class="inside">
|
151 |
<p class="note"><?php _e( 'You can use the options below to add meta tags such as Description and Keywords only in Default Home Page and Blog Page of your website.', $text ); ?></p>
|
152 |
<table class="form-table">
|
154 |
spacexchimp_p004_control_textarea( 'blog_description',
|
155 |
__( 'Blog Description', $text ),
|
156 |
'My blog is about plants, nature, the sea and everything I love',
|
157 |
+
__( 'Enter a short description of your website (150-250 characters).', $text ) . ' ' . __( 'Most search engines use a maximum of 160 chars for the home description.', $text )
|
158 |
);
|
159 |
spacexchimp_p004_control_textarea( 'blog_keywords',
|
160 |
__( 'Blog Keyword(s)', $text ),
|
167 |
</div>
|
168 |
|
169 |
<div class="postbox" id="everywhere">
|
170 |
+
<h3 class="title"><?php _e( 'Meta tags for the entire website (Global)', $text ); ?></h3>
|
171 |
<div class="inside">
|
172 |
<p class="note"><?php _e( 'You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere on your website.', $text ); ?></p>
|
173 |
<table class="form-table">
|
204 |
|
205 |
<input type="submit" name="submit" id="submit" class="btn btn-default btn-lg button-save-main" value="<?php _e( 'Save changes', $text ); ?>">
|
206 |
|
207 |
+
<div class="postbox" id="preview">
|
208 |
+
<h3 class="title"><?php _e( 'Preview', $text ); ?></h3>
|
209 |
+
<div class="inside">
|
210 |
+
<p class="note"><?php _e( 'Click the "Save changes" button to update this preview.', $text ); ?></p>
|
211 |
+
<p><?php _e( 'These are meta tags that will be printed on all pages (globally) of your website.', $text ); ?></p>
|
212 |
+
<textarea readonly><?php spacexchimp_p004_preview(); ?></textarea>
|
213 |
+
<br>
|
214 |
+
<p>
|
215 |
+
<?php _e( 'Note!', $text ); ?>
|
216 |
+
<?php _e( 'This preview does not show meta tags that will be printed only on certain pages of your website.', $text ); ?>
|
217 |
+
</p>
|
218 |
+
</div>
|
219 |
+
</div>
|
220 |
+
|
221 |
<div class="postbox" id="woocommerce">
|
222 |
<h3 class="title"><?php _e( 'WooCommerce & Google Shopping', $text ); ?></h3>
|
223 |
<div class="inside">
|
224 |
+
<p>
|
225 |
+
<?php _e( 'This plugin automatically adds the necessary Google Shopping (Merchant Center) structured data on all WooCommerce product pages on your website.', $text ); ?>
|
226 |
+
<?php _e( 'Here is the markup for women\'s T-shirt that sells for 16 dollars and 80 cents of US.', $text ); ?>
|
227 |
+
</p>
|
228 |
<?php
|
229 |
// Put the example in a variable
|
230 |
$example = '<div itemtype="http://schema.org/Product" itemscope="">
|
238 |
</div>';
|
239 |
?>
|
240 |
<textarea readonly><?php echo $example; ?></textarea>
|
241 |
+
<br>
|
242 |
+
<p>
|
243 |
+
<?php
|
244 |
+
printf(
|
245 |
+
__( 'Check these data generated on the pages of your website you can %s here %s .', $text ),
|
246 |
+
'<a href="https://search.google.com/structured-data/testing-tool" target="_blank">',
|
247 |
+
'</a>'
|
248 |
+
);
|
249 |
+
?>
|
250 |
+
</p>
|
251 |
</div>
|
252 |
</div>
|
253 |
|
inc/php/tabs/support.php
CHANGED
@@ -31,7 +31,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
31 |
'<a href="https://www.spacexchimp.com" target="_blank">',
|
32 |
'</a>'
|
33 |
);
|
34 |
-
|
35 |
</p>
|
36 |
<p>
|
37 |
<?php _e( 'Our intention is to create projects that will make this world a better place.', $text ); ?>
|
31 |
'<a href="https://www.spacexchimp.com" target="_blank">',
|
32 |
'</a>'
|
33 |
);
|
34 |
+
?>
|
35 |
</p>
|
36 |
<p>
|
37 |
<?php _e( 'Our intention is to create projects that will make this world a better place.', $text ); ?>
|
languages/all-meta-tags-de_DE.mo
CHANGED
Binary file
|
languages/all-meta-tags-de_DE.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: All Meta Tags\n"
|
6 |
-
"POT-Creation-Date: 2019-03-
|
7 |
-
"PO-Revision-Date: 2019-03-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: German\n"
|
10 |
"Language: de_DE\n"
|
@@ -70,7 +70,7 @@ msgstr "Verwendung"
|
|
70 |
msgid "F.A.Q."
|
71 |
msgstr "F.A.Q."
|
72 |
|
73 |
-
#: inc/php/page.php:49 inc/php/sidebar.php:39 inc/php/tabs/settings.php:
|
74 |
msgid "Support"
|
75 |
msgstr "Unterstützung"
|
76 |
|
@@ -98,16 +98,16 @@ msgstr "Hilfe"
|
|
98 |
msgid "If you have a question, please read the information in the FAQ section."
|
99 |
msgstr "Wenn Sie Fragen haben, lesen Sie bitte auch die Fragen im FAQ Bereich."
|
100 |
|
101 |
-
#: inc/php/sidebar.php:41 inc/php/tabs/settings.php:
|
102 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
103 |
msgstr "Jeder kleine Beitrag trägt dazu bei, unsere Kosten zu decken und wir kann mehr Zeit damit verbringen, Dinge für Leute wie Sie zu entwickeln."
|
104 |
|
105 |
-
#: inc/php/sidebar.php:46 inc/php/tabs/settings.php:
|
106 |
#: inc/php/tabs/support.php:21
|
107 |
msgid "Donate with PayPal"
|
108 |
msgstr "Spende mit PayPal"
|
109 |
|
110 |
-
#: inc/php/sidebar.php:48 inc/php/tabs/settings.php:
|
111 |
msgid "Thanks for your support!"
|
112 |
msgstr "Danke für Ihre Unterstützung!"
|
113 |
|
@@ -522,7 +522,7 @@ msgstr ""
|
|
522 |
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
523 |
msgstr "Aber bitte bedenken Sie, dass dieses Plugin kostenlos ist. Es gibt kein Support Team, deshalb habe wir keine Möglichkeit jedem zu antworten."
|
524 |
|
525 |
-
#: inc/php/tabs/settings.php:21 inc/php/tabs/settings.php:
|
526 |
msgid "Save changes"
|
527 |
msgstr "Änderungen speichern"
|
528 |
|
@@ -530,156 +530,185 @@ msgstr "Änderungen speichern"
|
|
530 |
msgid "Web Master Tools"
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: inc/php/tabs/settings.php:
|
534 |
-
msgid "Webmaster Tools require you to verify your domain.
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: inc/php/tabs/settings.php:
|
538 |
-
msgid "
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: inc/php/tabs/settings.php:
|
542 |
-
msgid "
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: inc/php/tabs/settings.php:
|
546 |
-
msgid "
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: inc/php/tabs/settings.php:
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
msgid "Third-party services like Alexa, Pinterest and Google-Plus require you to verify your domain. This makes sure that you are the correct owner of your blog or store before they provide their services to you. You can use the options below to verify your domain. If your domain is already verified, you can just forget about these."
|
555 |
-
msgstr ""
|
556 |
-
|
557 |
-
#: inc/php/tabs/settings.php:62
|
558 |
-
msgid "Enter your meta key “content” value from your verification code to verify your website. <br>Example: <meta name=\"p:domain_verify\" content=“<b>1234567890</b>” />"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: inc/php/tabs/settings.php:
|
562 |
-
|
|
|
|
|
|
|
|
|
|
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: inc/php/tabs/settings.php:
|
566 |
-
msgid "
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: inc/php/tabs/settings.php:
|
570 |
-
msgid "
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: inc/php/tabs/settings.php:
|
574 |
-
msgid "Enter
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: inc/php/tabs/settings.php:
|
578 |
-
msgid "Enter
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: inc/php/tabs/settings.php:
|
582 |
-
msgid "Enter
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: inc/php/tabs/settings.php:
|
586 |
-
msgid "
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: inc/php/tabs/settings.php:
|
590 |
-
msgid "
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: inc/php/tabs/settings.php:
|
594 |
-
msgid "
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: inc/php/tabs/settings.php:
|
598 |
-
msgid "Meta
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: inc/php/tabs/settings.php:
|
602 |
msgid "You can use the options below to add meta tags such as Description and Keywords only in Static Home Page of your website."
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: inc/php/tabs/settings.php:
|
606 |
msgid "Home Description"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: inc/php/tabs/settings.php:
|
610 |
-
msgid "Enter a short description of your website (150-250 characters).
|
|
|
|
|
|
|
|
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: inc/php/tabs/settings.php:
|
614 |
msgid "Home Keyword(s)"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: inc/php/tabs/settings.php:
|
618 |
msgid "Enter a comma-delimited list of keywords for only Static Home Page of your website."
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: inc/php/tabs/settings.php:
|
622 |
-
msgid "Meta
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: inc/php/tabs/settings.php:
|
626 |
msgid "You can use the options below to add meta tags such as Description and Keywords only in Default Home Page and Blog Page of your website."
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: inc/php/tabs/settings.php:
|
630 |
msgid "Blog Description"
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: inc/php/tabs/settings.php:
|
634 |
msgid "Blog Keyword(s)"
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: inc/php/tabs/settings.php:
|
638 |
msgid "Enter a comma-delimited list of keywords for only Blog Page of your website."
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: inc/php/tabs/settings.php:
|
642 |
-
msgid "Meta
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: inc/php/tabs/settings.php:
|
646 |
msgid "You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere on your website."
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: inc/php/tabs/settings.php:
|
650 |
msgid "Author"
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: inc/php/tabs/settings.php:
|
654 |
msgid "Designer"
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: inc/php/tabs/settings.php:
|
658 |
msgid "Contact"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: inc/php/tabs/settings.php:
|
662 |
msgid "Copyright"
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: inc/php/tabs/settings.php:
|
666 |
msgid "Keyword(s)"
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: inc/php/tabs/settings.php:
|
670 |
msgid "Enter a comma-delimited list of global keywords for your website."
|
671 |
msgstr ""
|
672 |
|
673 |
-
#: inc/php/tabs/settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
674 |
msgid "WooCommerce & Google Shopping"
|
675 |
msgstr ""
|
676 |
|
677 |
-
#: inc/php/tabs/settings.php:
|
678 |
-
msgid "This plugin automatically adds the necessary Google Shopping (Merchant Center) structured data on all WooCommerce product pages on your website.
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: inc/php/tabs/settings.php:
|
682 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
683 |
msgstr ""
|
684 |
|
685 |
#: inc/php/tabs/support.php:13
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: All Meta Tags\n"
|
6 |
+
"POT-Creation-Date: 2019-03-06 15:58+0300\n"
|
7 |
+
"PO-Revision-Date: 2019-03-06 15:58+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: German\n"
|
10 |
"Language: de_DE\n"
|
70 |
msgid "F.A.Q."
|
71 |
msgstr "F.A.Q."
|
72 |
|
73 |
+
#: inc/php/page.php:49 inc/php/sidebar.php:39 inc/php/tabs/settings.php:255
|
74 |
msgid "Support"
|
75 |
msgstr "Unterstützung"
|
76 |
|
98 |
msgid "If you have a question, please read the information in the FAQ section."
|
99 |
msgstr "Wenn Sie Fragen haben, lesen Sie bitte auch die Fragen im FAQ Bereich."
|
100 |
|
101 |
+
#: inc/php/sidebar.php:41 inc/php/tabs/settings.php:257
|
102 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
103 |
msgstr "Jeder kleine Beitrag trägt dazu bei, unsere Kosten zu decken und wir kann mehr Zeit damit verbringen, Dinge für Leute wie Sie zu entwickeln."
|
104 |
|
105 |
+
#: inc/php/sidebar.php:46 inc/php/tabs/settings.php:262
|
106 |
#: inc/php/tabs/support.php:21
|
107 |
msgid "Donate with PayPal"
|
108 |
msgstr "Spende mit PayPal"
|
109 |
|
110 |
+
#: inc/php/sidebar.php:48 inc/php/tabs/settings.php:264
|
111 |
msgid "Thanks for your support!"
|
112 |
msgstr "Danke für Ihre Unterstützung!"
|
113 |
|
522 |
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
523 |
msgstr "Aber bitte bedenken Sie, dass dieses Plugin kostenlos ist. Es gibt kein Support Team, deshalb habe wir keine Möglichkeit jedem zu antworten."
|
524 |
|
525 |
+
#: inc/php/tabs/settings.php:21 inc/php/tabs/settings.php:205
|
526 |
msgid "Save changes"
|
527 |
msgstr "Änderungen speichern"
|
528 |
|
530 |
msgid "Web Master Tools"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: inc/php/tabs/settings.php:28
|
534 |
+
msgid "Webmaster Tools require you to verify your domain."
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: inc/php/tabs/settings.php:29 inc/php/tabs/settings.php:63
|
538 |
+
msgid "This makes sure that you are the correct owner of your blog or store before they provide their services to you."
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: inc/php/tabs/settings.php:30 inc/php/tabs/settings.php:64
|
542 |
+
msgid "You can use the options below to verify your domain."
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: inc/php/tabs/settings.php:31 inc/php/tabs/settings.php:65
|
546 |
+
msgid "If your domain is already verified, you can just forget about these."
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: inc/php/tabs/settings.php:38 inc/php/tabs/settings.php:44
|
550 |
+
#: inc/php/tabs/settings.php:50 inc/php/tabs/settings.php:72
|
551 |
+
#: inc/php/tabs/settings.php:96 inc/php/tabs/settings.php:102
|
552 |
+
#: inc/php/tabs/settings.php:108 inc/php/tabs/settings.php:114
|
553 |
+
msgid "Enter your meta key “content” value from your verification code to verify your website."
|
|
|
|
|
|
|
|
|
|
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: inc/php/tabs/settings.php:38 inc/php/tabs/settings.php:44
|
557 |
+
#: inc/php/tabs/settings.php:50 inc/php/tabs/settings.php:72
|
558 |
+
#: inc/php/tabs/settings.php:78 inc/php/tabs/settings.php:84
|
559 |
+
#: inc/php/tabs/settings.php:90 inc/php/tabs/settings.php:96
|
560 |
+
#: inc/php/tabs/settings.php:102 inc/php/tabs/settings.php:108
|
561 |
+
#: inc/php/tabs/settings.php:114 inc/php/tabs/settings.php:120
|
562 |
+
msgid "Example:"
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: inc/php/tabs/settings.php:59
|
566 |
+
msgid "Domain Verification"
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: inc/php/tabs/settings.php:62
|
570 |
+
msgid "Third-party services like Alexa, Pinterest and Google-Plus require you to verify your domain."
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: inc/php/tabs/settings.php:78
|
574 |
+
msgid "Enter an absolute URL to the Google+ profile of the publisher."
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: inc/php/tabs/settings.php:84
|
578 |
+
msgid "Enter an absolute URL to the Facebook profile of the publisher."
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: inc/php/tabs/settings.php:90
|
582 |
+
msgid "Enter the Twitter username of the publisher."
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: inc/php/tabs/settings.php:118
|
586 |
+
msgid "Custom meta tags"
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: inc/php/tabs/settings.php:120
|
590 |
+
msgid "If you can't find a field to enter your required meta tag then you can add it here."
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: inc/php/tabs/settings.php:120
|
594 |
+
msgid "In this field you can add multiple meta tags."
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: inc/php/tabs/settings.php:128
|
598 |
+
msgid "Meta tags for Static Home Page only"
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: inc/php/tabs/settings.php:130
|
602 |
msgid "You can use the options below to add meta tags such as Description and Keywords only in Static Home Page of your website."
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: inc/php/tabs/settings.php:134
|
606 |
msgid "Home Description"
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: inc/php/tabs/settings.php:136 inc/php/tabs/settings.php:157
|
610 |
+
msgid "Enter a short description of your website (150-250 characters)."
|
611 |
+
msgstr ""
|
612 |
+
|
613 |
+
#: inc/php/tabs/settings.php:136 inc/php/tabs/settings.php:157
|
614 |
+
msgid "Most search engines use a maximum of 160 chars for the home description."
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: inc/php/tabs/settings.php:139
|
618 |
msgid "Home Keyword(s)"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: inc/php/tabs/settings.php:141
|
622 |
msgid "Enter a comma-delimited list of keywords for only Static Home Page of your website."
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: inc/php/tabs/settings.php:149
|
626 |
+
msgid "Meta tags for Default Home Page and Blog Page only"
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: inc/php/tabs/settings.php:151
|
630 |
msgid "You can use the options below to add meta tags such as Description and Keywords only in Default Home Page and Blog Page of your website."
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: inc/php/tabs/settings.php:155
|
634 |
msgid "Blog Description"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: inc/php/tabs/settings.php:160
|
638 |
msgid "Blog Keyword(s)"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: inc/php/tabs/settings.php:162
|
642 |
msgid "Enter a comma-delimited list of keywords for only Blog Page of your website."
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: inc/php/tabs/settings.php:170
|
646 |
+
msgid "Meta tags for the entire website (Global)"
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: inc/php/tabs/settings.php:172
|
650 |
msgid "You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere on your website."
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: inc/php/tabs/settings.php:176
|
654 |
msgid "Author"
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: inc/php/tabs/settings.php:181
|
658 |
msgid "Designer"
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: inc/php/tabs/settings.php:186
|
662 |
msgid "Contact"
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: inc/php/tabs/settings.php:191
|
666 |
msgid "Copyright"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: inc/php/tabs/settings.php:196
|
670 |
msgid "Keyword(s)"
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: inc/php/tabs/settings.php:198
|
674 |
msgid "Enter a comma-delimited list of global keywords for your website."
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: inc/php/tabs/settings.php:208
|
678 |
+
msgid "Preview"
|
679 |
+
msgstr ""
|
680 |
+
|
681 |
+
#: inc/php/tabs/settings.php:210
|
682 |
+
msgid "Click the \"Save changes\" button to update this preview."
|
683 |
+
msgstr ""
|
684 |
+
|
685 |
+
#: inc/php/tabs/settings.php:211
|
686 |
+
msgid "These are meta tags that will be printed on all pages (globally) of your website."
|
687 |
+
msgstr ""
|
688 |
+
|
689 |
+
#: inc/php/tabs/settings.php:215
|
690 |
+
msgid "Note!"
|
691 |
+
msgstr ""
|
692 |
+
|
693 |
+
#: inc/php/tabs/settings.php:216
|
694 |
+
msgid "This preview does not show meta tags that will be printed only on certain pages of your website."
|
695 |
+
msgstr ""
|
696 |
+
|
697 |
+
#: inc/php/tabs/settings.php:222
|
698 |
msgid "WooCommerce & Google Shopping"
|
699 |
msgstr ""
|
700 |
|
701 |
+
#: inc/php/tabs/settings.php:225
|
702 |
+
msgid "This plugin automatically adds the necessary Google Shopping (Merchant Center) structured data on all WooCommerce product pages on your website."
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: inc/php/tabs/settings.php:226
|
706 |
+
msgid "Here is the markup for women's T-shirt that sells for 16 dollars and 80 cents of US."
|
707 |
+
msgstr ""
|
708 |
+
|
709 |
+
#: inc/php/tabs/settings.php:245
|
710 |
+
#, php-format
|
711 |
+
msgid "Check these data generated on the pages of your website you can %s here %s ."
|
712 |
msgstr ""
|
713 |
|
714 |
#: inc/php/tabs/support.php:13
|
languages/all-meta-tags-es_ES.mo
CHANGED
Binary file
|
languages/all-meta-tags-es_ES.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: All Meta Tags\n"
|
6 |
-
"POT-Creation-Date: 2019-03-
|
7 |
-
"PO-Revision-Date: 2019-03-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Spanish\n"
|
10 |
"Language: es_ES\n"
|
@@ -70,7 +70,7 @@ msgstr "Uso"
|
|
70 |
msgid "F.A.Q."
|
71 |
msgstr "Preguntas ?"
|
72 |
|
73 |
-
#: inc/php/page.php:49 inc/php/sidebar.php:39 inc/php/tabs/settings.php:
|
74 |
msgid "Support"
|
75 |
msgstr "Soporte"
|
76 |
|
@@ -98,16 +98,16 @@ msgstr "Ayuda"
|
|
98 |
msgid "If you have a question, please read the information in the FAQ section."
|
99 |
msgstr "Si tiene alguna pregunta, lee la información en la sección de preguntas frecuentes."
|
100 |
|
101 |
-
#: inc/php/sidebar.php:41 inc/php/tabs/settings.php:
|
102 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
103 |
msgstr "Soy un desarrollador independiente, sin un ingreso regular, por lo que cada pequeña contribución ayuda a cubrir mis costos y me deja pasar más tiempo construyendo cosas para que personas como tú las disfruten."
|
104 |
|
105 |
-
#: inc/php/sidebar.php:46 inc/php/tabs/settings.php:
|
106 |
#: inc/php/tabs/support.php:21
|
107 |
msgid "Donate with PayPal"
|
108 |
msgstr "Donar con PayPal"
|
109 |
|
110 |
-
#: inc/php/sidebar.php:48 inc/php/tabs/settings.php:
|
111 |
msgid "Thanks for your support!"
|
112 |
msgstr "¡Gracias por tu apoyo!"
|
113 |
|
@@ -215,7 +215,7 @@ msgstr ""
|
|
215 |
|
216 |
#: inc/php/tabs/faq.php:101
|
217 |
msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
|
218 |
-
msgstr "Quizás no todas las traducciones existentes estén actualizadas. Le invitamos a contribuir correcciones
|
219 |
|
220 |
#: inc/php/tabs/faq.php:102
|
221 |
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
@@ -522,7 +522,7 @@ msgstr "Puede hacer su pregunta en %s esta página %s."
|
|
522 |
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
523 |
msgstr "Pero ten en cuenta que este complemento es gratuito, y no hay un equipo de soporte especial, así que no tenemos forma de responder a todos."
|
524 |
|
525 |
-
#: inc/php/tabs/settings.php:21 inc/php/tabs/settings.php:
|
526 |
msgid "Save changes"
|
527 |
msgstr "Guardar cambios"
|
528 |
|
@@ -530,157 +530,186 @@ msgstr "Guardar cambios"
|
|
530 |
msgid "Web Master Tools"
|
531 |
msgstr "Web Master Tools"
|
532 |
|
533 |
-
#: inc/php/tabs/settings.php:
|
534 |
-
msgid "Webmaster Tools require you to verify your domain.
|
535 |
-
msgstr "Webmaster Tools exige que verifiques tu dominio.
|
536 |
-
|
537 |
-
#: inc/php/tabs/settings.php:
|
538 |
-
msgid "
|
539 |
-
msgstr "
|
540 |
-
|
541 |
-
#: inc/php/tabs/settings.php:
|
542 |
-
msgid "
|
543 |
-
msgstr "
|
544 |
-
|
545 |
-
#: inc/php/tabs/settings.php:
|
546 |
-
msgid "
|
547 |
-
msgstr "
|
548 |
-
|
549 |
-
#: inc/php/tabs/settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
550 |
msgid "Domain Verification"
|
551 |
msgstr "Verificación del domino"
|
552 |
|
553 |
-
#: inc/php/tabs/settings.php:56
|
554 |
-
msgid "Third-party services like Alexa, Pinterest and Google-Plus require you to verify your domain. This makes sure that you are the correct owner of your blog or store before they provide their services to you. You can use the options below to verify your domain. If your domain is already verified, you can just forget about these."
|
555 |
-
msgstr "Los servicios de terceros, como Alexa, Pinterest y Google Plus, exigen que verifiques tu dominio. Esto garantiza que tú eres el propietario de tu página antes de que ellos te brinden su servicio. Puedes usar las opciones que aparecen a continuación para verificar tu dominio. Si tu dominio ya está verificado, puedes obviar esto."
|
556 |
-
|
557 |
#: inc/php/tabs/settings.php:62
|
558 |
-
msgid "
|
559 |
-
msgstr "
|
560 |
-
|
561 |
-
#: inc/php/tabs/settings.php:68
|
562 |
-
msgid "Enter an absolute URL to the Google+ profile of the publisher. <br>Example: https://plus.google.com/+Username/"
|
563 |
-
msgstr "Ingresa la URL completa del perfil de Google+ del editor. <br>Ejemplo: https://plus.google.com/+User/"
|
564 |
|
565 |
-
#: inc/php/tabs/settings.php:
|
566 |
-
msgid "Enter an absolute URL to the
|
567 |
-
msgstr "Ingresa la URL completa del perfil de
|
568 |
|
569 |
-
#: inc/php/tabs/settings.php:
|
570 |
-
msgid "Enter the
|
571 |
-
msgstr "Ingresa
|
572 |
|
573 |
-
#: inc/php/tabs/settings.php:
|
574 |
-
msgid "Enter
|
575 |
-
msgstr "Ingresa el
|
576 |
|
577 |
-
#: inc/php/tabs/settings.php:
|
578 |
-
msgid "
|
579 |
-
msgstr "Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </br>Ejemplo: <meta name=\"norton-safeweb-site-verification\" content=“<b>1234567890</b>” />"
|
580 |
-
|
581 |
-
#: inc/php/tabs/settings.php:98
|
582 |
-
msgid "Enter your meta key “content” value from your verification code to verify your website. <br>Example: <meta name=\"wot-verification\" content=“<b>1234567890</b>” />"
|
583 |
-
msgstr "Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </br>Ejemplo: <meta name=\"wot-verification\" content=“<b>1234567890</b>” />"
|
584 |
-
|
585 |
-
#: inc/php/tabs/settings.php:104
|
586 |
-
msgid "Enter your meta key “content” value from your verification code to verify your website. <br>Example: <meta name=\"specificfeeds-verification-code\" content=“<b>1234567890</b>” />"
|
587 |
-
msgstr "Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web. </br>Ejemplo: <meta name=\"specificfeeds-verification-code\" content=“<b>1234567890</b>” />"
|
588 |
-
|
589 |
-
#: inc/php/tabs/settings.php:108
|
590 |
-
msgid "Custom Meta Tags"
|
591 |
msgstr "Meta etiquetas personalizadas"
|
592 |
|
593 |
-
#: inc/php/tabs/settings.php:
|
594 |
-
msgid "If you can't find a field to enter your required meta tag then you can add it here.
|
595 |
-
msgstr "Si no encuentras un campo para introducir la meta etiqueta que requieres, puedes añadirla aquí.
|
|
|
|
|
|
|
|
|
596 |
|
597 |
-
#: inc/php/tabs/settings.php:
|
598 |
-
msgid "Meta
|
599 |
msgstr "Meta etiquetas sólo para la página de inicio estática"
|
600 |
|
601 |
-
#: inc/php/tabs/settings.php:
|
602 |
msgid "You can use the options below to add meta tags such as Description and Keywords only in Static Home Page of your website."
|
603 |
msgstr "Puedes usar las opciones que están abajo para añadir meta etiquetas, tales como Descripción y Palabras Clave sólo en la página de inicio de tu sitio web."
|
604 |
|
605 |
-
#: inc/php/tabs/settings.php:
|
606 |
msgid "Home Description"
|
607 |
msgstr "Descripción del sitio"
|
608 |
|
609 |
-
#: inc/php/tabs/settings.php:
|
610 |
-
msgid "Enter a short description of your website (150-250 characters).
|
611 |
-
msgstr "Ingresa una breve descripción de tu sitio web (Entre 150 y 250 caracteres).
|
|
|
|
|
|
|
|
|
612 |
|
613 |
-
#: inc/php/tabs/settings.php:
|
614 |
msgid "Home Keyword(s)"
|
615 |
msgstr "Palabra(s) clave de la página de inicio"
|
616 |
|
617 |
-
#: inc/php/tabs/settings.php:
|
618 |
msgid "Enter a comma-delimited list of keywords for only Static Home Page of your website."
|
619 |
msgstr "Ingresa una lista, separadas por comas, de todas las palabras clave sólo para la página estática de inicio de tu sitio web."
|
620 |
|
621 |
-
#: inc/php/tabs/settings.php:
|
622 |
-
msgid "Meta
|
623 |
msgstr "Meta etiquetas sólo para la página de inicio y la del blog"
|
624 |
|
625 |
-
#: inc/php/tabs/settings.php:
|
626 |
msgid "You can use the options below to add meta tags such as Description and Keywords only in Default Home Page and Blog Page of your website."
|
627 |
msgstr "Puedes usar las opciones que están abajo para añadir meta etiquetas, tales como Descripción y Palabras Clave en la página de inicio y en la del blog de tu sitio web."
|
628 |
|
629 |
-
#: inc/php/tabs/settings.php:
|
630 |
msgid "Blog Description"
|
631 |
msgstr "Descripción del blog"
|
632 |
|
633 |
-
#: inc/php/tabs/settings.php:
|
634 |
msgid "Blog Keyword(s)"
|
635 |
msgstr "Palabra(s) clave del blog"
|
636 |
|
637 |
-
#: inc/php/tabs/settings.php:
|
638 |
msgid "Enter a comma-delimited list of keywords for only Blog Page of your website."
|
639 |
msgstr "Ingresa una lista, separadas por comas, de todas las palabras clave sólo para la página del blog de tu sitio web."
|
640 |
|
641 |
-
#: inc/php/tabs/settings.php:
|
642 |
-
msgid "Meta
|
643 |
msgstr "Meta etiquetas para todo el sitio web (Globales)"
|
644 |
|
645 |
-
#: inc/php/tabs/settings.php:
|
646 |
msgid "You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere on your website."
|
647 |
msgstr "Puedes usar las opciones que están abajo para añadir meta etiquetas, tales como Autor, Derechos Reservados y Palabras Clave en cualquier parte de tu sitio web."
|
648 |
|
649 |
-
#: inc/php/tabs/settings.php:
|
650 |
msgid "Author"
|
651 |
msgstr "Autor"
|
652 |
|
653 |
-
#: inc/php/tabs/settings.php:
|
654 |
msgid "Designer"
|
655 |
msgstr "Diseñador"
|
656 |
|
657 |
-
#: inc/php/tabs/settings.php:
|
658 |
msgid "Contact"
|
659 |
msgstr "Contacto"
|
660 |
|
661 |
-
#: inc/php/tabs/settings.php:
|
662 |
msgid "Copyright"
|
663 |
msgstr "Derechos reservados"
|
664 |
|
665 |
-
#: inc/php/tabs/settings.php:
|
666 |
msgid "Keyword(s)"
|
667 |
msgstr "Palabra(s) clave"
|
668 |
|
669 |
-
#: inc/php/tabs/settings.php:
|
670 |
msgid "Enter a comma-delimited list of global keywords for your website."
|
671 |
msgstr "Ingresa un listado, separado por comas, de las palabras clave globales para tu sitio web."
|
672 |
|
673 |
-
#: inc/php/tabs/settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
674 |
msgid "WooCommerce & Google Shopping"
|
675 |
msgstr "WooCommerce y Google Shopping"
|
676 |
|
677 |
-
#: inc/php/tabs/settings.php:
|
678 |
-
msgid "This plugin automatically adds the necessary Google Shopping (Merchant Center) structured data on all WooCommerce product pages on your website.
|
679 |
-
msgstr "Este plugin añade automáticamente los datos estructurados de Google Shopping (Merchant Center) en todas las páginas de producto de tu sitio web.
|
680 |
|
681 |
-
#: inc/php/tabs/settings.php:
|
682 |
-
msgid "
|
683 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
684 |
|
685 |
#: inc/php/tabs/support.php:13
|
686 |
msgid "Support Us"
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: All Meta Tags\n"
|
6 |
+
"POT-Creation-Date: 2019-03-06 15:58+0300\n"
|
7 |
+
"PO-Revision-Date: 2019-03-06 15:58+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Spanish\n"
|
10 |
"Language: es_ES\n"
|
70 |
msgid "F.A.Q."
|
71 |
msgstr "Preguntas ?"
|
72 |
|
73 |
+
#: inc/php/page.php:49 inc/php/sidebar.php:39 inc/php/tabs/settings.php:255
|
74 |
msgid "Support"
|
75 |
msgstr "Soporte"
|
76 |
|
98 |
msgid "If you have a question, please read the information in the FAQ section."
|
99 |
msgstr "Si tiene alguna pregunta, lee la información en la sección de preguntas frecuentes."
|
100 |
|
101 |
+
#: inc/php/sidebar.php:41 inc/php/tabs/settings.php:257
|
102 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
103 |
msgstr "Soy un desarrollador independiente, sin un ingreso regular, por lo que cada pequeña contribución ayuda a cubrir mis costos y me deja pasar más tiempo construyendo cosas para que personas como tú las disfruten."
|
104 |
|
105 |
+
#: inc/php/sidebar.php:46 inc/php/tabs/settings.php:262
|
106 |
#: inc/php/tabs/support.php:21
|
107 |
msgid "Donate with PayPal"
|
108 |
msgstr "Donar con PayPal"
|
109 |
|
110 |
+
#: inc/php/sidebar.php:48 inc/php/tabs/settings.php:264
|
111 |
msgid "Thanks for your support!"
|
112 |
msgstr "¡Gracias por tu apoyo!"
|
113 |
|
215 |
|
216 |
#: inc/php/tabs/faq.php:101
|
217 |
msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
|
218 |
+
msgstr "Quizás no todas las traducciones existentes estén actualizadas. Le invitamos a contribuir correcciones."
|
219 |
|
220 |
#: inc/php/tabs/faq.php:102
|
221 |
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
522 |
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
523 |
msgstr "Pero ten en cuenta que este complemento es gratuito, y no hay un equipo de soporte especial, así que no tenemos forma de responder a todos."
|
524 |
|
525 |
+
#: inc/php/tabs/settings.php:21 inc/php/tabs/settings.php:205
|
526 |
msgid "Save changes"
|
527 |
msgstr "Guardar cambios"
|
528 |
|
530 |
msgid "Web Master Tools"
|
531 |
msgstr "Web Master Tools"
|
532 |
|
533 |
+
#: inc/php/tabs/settings.php:28
|
534 |
+
msgid "Webmaster Tools require you to verify your domain."
|
535 |
+
msgstr "Webmaster Tools exige que verifiques tu dominio."
|
536 |
+
|
537 |
+
#: inc/php/tabs/settings.php:29 inc/php/tabs/settings.php:63
|
538 |
+
msgid "This makes sure that you are the correct owner of your blog or store before they provide their services to you."
|
539 |
+
msgstr "Esto garantiza que tú eres el propietario de tu página antes de que ellos te brinden su servicio."
|
540 |
+
|
541 |
+
#: inc/php/tabs/settings.php:30 inc/php/tabs/settings.php:64
|
542 |
+
msgid "You can use the options below to verify your domain."
|
543 |
+
msgstr "Puedes usar las opciones que aparecen a continuación para verificar tu dominio."
|
544 |
+
|
545 |
+
#: inc/php/tabs/settings.php:31 inc/php/tabs/settings.php:65
|
546 |
+
msgid "If your domain is already verified, you can just forget about these."
|
547 |
+
msgstr "Si tu dominio ya está verificado, puedes obviar esto."
|
548 |
+
|
549 |
+
#: inc/php/tabs/settings.php:38 inc/php/tabs/settings.php:44
|
550 |
+
#: inc/php/tabs/settings.php:50 inc/php/tabs/settings.php:72
|
551 |
+
#: inc/php/tabs/settings.php:96 inc/php/tabs/settings.php:102
|
552 |
+
#: inc/php/tabs/settings.php:108 inc/php/tabs/settings.php:114
|
553 |
+
msgid "Enter your meta key “content” value from your verification code to verify your website."
|
554 |
+
msgstr "Ingresa el valor de tu meta clave “content” proveniente del código de verificación de tu sitio web."
|
555 |
+
|
556 |
+
#: inc/php/tabs/settings.php:38 inc/php/tabs/settings.php:44
|
557 |
+
#: inc/php/tabs/settings.php:50 inc/php/tabs/settings.php:72
|
558 |
+
#: inc/php/tabs/settings.php:78 inc/php/tabs/settings.php:84
|
559 |
+
#: inc/php/tabs/settings.php:90 inc/php/tabs/settings.php:96
|
560 |
+
#: inc/php/tabs/settings.php:102 inc/php/tabs/settings.php:108
|
561 |
+
#: inc/php/tabs/settings.php:114 inc/php/tabs/settings.php:120
|
562 |
+
msgid "Example:"
|
563 |
+
msgstr "Ejemplo:"
|
564 |
+
|
565 |
+
#: inc/php/tabs/settings.php:59
|
566 |
msgid "Domain Verification"
|
567 |
msgstr "Verificación del domino"
|
568 |
|
|
|
|
|
|
|
|
|
569 |
#: inc/php/tabs/settings.php:62
|
570 |
+
msgid "Third-party services like Alexa, Pinterest and Google-Plus require you to verify your domain."
|
571 |
+
msgstr "Los servicios de terceros, como Alexa, Pinterest y Google Plus, exigen que verifiques tu dominio."
|
|
|
|
|
|
|
|
|
572 |
|
573 |
+
#: inc/php/tabs/settings.php:78
|
574 |
+
msgid "Enter an absolute URL to the Google+ profile of the publisher."
|
575 |
+
msgstr "Ingresa la URL completa del perfil de Google+ del editor."
|
576 |
|
577 |
+
#: inc/php/tabs/settings.php:84
|
578 |
+
msgid "Enter an absolute URL to the Facebook profile of the publisher."
|
579 |
+
msgstr "Ingresa la URL completa del perfil de Facebook del editor."
|
580 |
|
581 |
+
#: inc/php/tabs/settings.php:90
|
582 |
+
msgid "Enter the Twitter username of the publisher."
|
583 |
+
msgstr "Ingresa el nombre de usuario de Twitter del editor."
|
584 |
|
585 |
+
#: inc/php/tabs/settings.php:118
|
586 |
+
msgid "Custom meta tags"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
587 |
msgstr "Meta etiquetas personalizadas"
|
588 |
|
589 |
+
#: inc/php/tabs/settings.php:120
|
590 |
+
msgid "If you can't find a field to enter your required meta tag then you can add it here."
|
591 |
+
msgstr "Si no encuentras un campo para introducir la meta etiqueta que requieres, puedes añadirla aquí."
|
592 |
+
|
593 |
+
#: inc/php/tabs/settings.php:120
|
594 |
+
msgid "In this field you can add multiple meta tags."
|
595 |
+
msgstr "En este campo puedes agregar varias meta etiquetas."
|
596 |
|
597 |
+
#: inc/php/tabs/settings.php:128
|
598 |
+
msgid "Meta tags for Static Home Page only"
|
599 |
msgstr "Meta etiquetas sólo para la página de inicio estática"
|
600 |
|
601 |
+
#: inc/php/tabs/settings.php:130
|
602 |
msgid "You can use the options below to add meta tags such as Description and Keywords only in Static Home Page of your website."
|
603 |
msgstr "Puedes usar las opciones que están abajo para añadir meta etiquetas, tales como Descripción y Palabras Clave sólo en la página de inicio de tu sitio web."
|
604 |
|
605 |
+
#: inc/php/tabs/settings.php:134
|
606 |
msgid "Home Description"
|
607 |
msgstr "Descripción del sitio"
|
608 |
|
609 |
+
#: inc/php/tabs/settings.php:136 inc/php/tabs/settings.php:157
|
610 |
+
msgid "Enter a short description of your website (150-250 characters)."
|
611 |
+
msgstr "Ingresa una breve descripción de tu sitio web (Entre 150 y 250 caracteres)."
|
612 |
+
|
613 |
+
#: inc/php/tabs/settings.php:136 inc/php/tabs/settings.php:157
|
614 |
+
msgid "Most search engines use a maximum of 160 chars for the home description."
|
615 |
+
msgstr "La mayoría de los motores de búsqueda usa un máximo de 160 caracteres para esta descripción."
|
616 |
|
617 |
+
#: inc/php/tabs/settings.php:139
|
618 |
msgid "Home Keyword(s)"
|
619 |
msgstr "Palabra(s) clave de la página de inicio"
|
620 |
|
621 |
+
#: inc/php/tabs/settings.php:141
|
622 |
msgid "Enter a comma-delimited list of keywords for only Static Home Page of your website."
|
623 |
msgstr "Ingresa una lista, separadas por comas, de todas las palabras clave sólo para la página estática de inicio de tu sitio web."
|
624 |
|
625 |
+
#: inc/php/tabs/settings.php:149
|
626 |
+
msgid "Meta tags for Default Home Page and Blog Page only"
|
627 |
msgstr "Meta etiquetas sólo para la página de inicio y la del blog"
|
628 |
|
629 |
+
#: inc/php/tabs/settings.php:151
|
630 |
msgid "You can use the options below to add meta tags such as Description and Keywords only in Default Home Page and Blog Page of your website."
|
631 |
msgstr "Puedes usar las opciones que están abajo para añadir meta etiquetas, tales como Descripción y Palabras Clave en la página de inicio y en la del blog de tu sitio web."
|
632 |
|
633 |
+
#: inc/php/tabs/settings.php:155
|
634 |
msgid "Blog Description"
|
635 |
msgstr "Descripción del blog"
|
636 |
|
637 |
+
#: inc/php/tabs/settings.php:160
|
638 |
msgid "Blog Keyword(s)"
|
639 |
msgstr "Palabra(s) clave del blog"
|
640 |
|
641 |
+
#: inc/php/tabs/settings.php:162
|
642 |
msgid "Enter a comma-delimited list of keywords for only Blog Page of your website."
|
643 |
msgstr "Ingresa una lista, separadas por comas, de todas las palabras clave sólo para la página del blog de tu sitio web."
|
644 |
|
645 |
+
#: inc/php/tabs/settings.php:170
|
646 |
+
msgid "Meta tags for the entire website (Global)"
|
647 |
msgstr "Meta etiquetas para todo el sitio web (Globales)"
|
648 |
|
649 |
+
#: inc/php/tabs/settings.php:172
|
650 |
msgid "You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere on your website."
|
651 |
msgstr "Puedes usar las opciones que están abajo para añadir meta etiquetas, tales como Autor, Derechos Reservados y Palabras Clave en cualquier parte de tu sitio web."
|
652 |
|
653 |
+
#: inc/php/tabs/settings.php:176
|
654 |
msgid "Author"
|
655 |
msgstr "Autor"
|
656 |
|
657 |
+
#: inc/php/tabs/settings.php:181
|
658 |
msgid "Designer"
|
659 |
msgstr "Diseñador"
|
660 |
|
661 |
+
#: inc/php/tabs/settings.php:186
|
662 |
msgid "Contact"
|
663 |
msgstr "Contacto"
|
664 |
|
665 |
+
#: inc/php/tabs/settings.php:191
|
666 |
msgid "Copyright"
|
667 |
msgstr "Derechos reservados"
|
668 |
|
669 |
+
#: inc/php/tabs/settings.php:196
|
670 |
msgid "Keyword(s)"
|
671 |
msgstr "Palabra(s) clave"
|
672 |
|
673 |
+
#: inc/php/tabs/settings.php:198
|
674 |
msgid "Enter a comma-delimited list of global keywords for your website."
|
675 |
msgstr "Ingresa un listado, separado por comas, de las palabras clave globales para tu sitio web."
|
676 |
|
677 |
+
#: inc/php/tabs/settings.php:208
|
678 |
+
msgid "Preview"
|
679 |
+
msgstr ""
|
680 |
+
|
681 |
+
#: inc/php/tabs/settings.php:210
|
682 |
+
msgid "Click the \"Save changes\" button to update this preview."
|
683 |
+
msgstr ""
|
684 |
+
|
685 |
+
#: inc/php/tabs/settings.php:211
|
686 |
+
msgid "These are meta tags that will be printed on all pages (globally) of your website."
|
687 |
+
msgstr ""
|
688 |
+
|
689 |
+
#: inc/php/tabs/settings.php:215
|
690 |
+
msgid "Note!"
|
691 |
+
msgstr ""
|
692 |
+
|
693 |
+
#: inc/php/tabs/settings.php:216
|
694 |
+
msgid "This preview does not show meta tags that will be printed only on certain pages of your website."
|
695 |
+
msgstr ""
|
696 |
+
|
697 |
+
#: inc/php/tabs/settings.php:222
|
698 |
msgid "WooCommerce & Google Shopping"
|
699 |
msgstr "WooCommerce y Google Shopping"
|
700 |
|
701 |
+
#: inc/php/tabs/settings.php:225
|
702 |
+
msgid "This plugin automatically adds the necessary Google Shopping (Merchant Center) structured data on all WooCommerce product pages on your website."
|
703 |
+
msgstr "Este plugin añade automáticamente los datos estructurados de Google Shopping (Merchant Center) en todas las páginas de producto de tu sitio web."
|
704 |
|
705 |
+
#: inc/php/tabs/settings.php:226
|
706 |
+
msgid "Here is the markup for women's T-shirt that sells for 16 dollars and 80 cents of US."
|
707 |
+
msgstr "Aquí esta el código para una blusa de mujer que cuesta 16 dólares con 80 centavos norteamericanos."
|
708 |
+
|
709 |
+
#: inc/php/tabs/settings.php:245
|
710 |
+
#, php-format
|
711 |
+
msgid "Check these data generated on the pages of your website you can %s here %s ."
|
712 |
+
msgstr "Puedes revisar los datos generados para las páginas de tu sitio web %s aquí %s ."
|
713 |
|
714 |
#: inc/php/tabs/support.php:13
|
715 |
msgid "Support Us"
|
languages/all-meta-tags-es_MX.mo
CHANGED
Binary file
|
languages/all-meta-tags-es_MX.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: All Meta Tags\n"
|
6 |
-
"POT-Creation-Date: 2019-03-
|
7 |
-
"PO-Revision-Date: 2019-03-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Spanish (Mexico)\n"
|
10 |
"Language: es_MX\n"
|
@@ -71,7 +71,7 @@ msgstr "Uso"
|
|
71 |
msgid "F.A.Q."
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: inc/php/page.php:49 inc/php/sidebar.php:39 inc/php/tabs/settings.php:
|
75 |
msgid "Support"
|
76 |
msgstr "Soporte"
|
77 |
|
@@ -99,16 +99,16 @@ msgstr "Ayuda"
|
|
99 |
msgid "If you have a question, please read the information in the FAQ section."
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: inc/php/sidebar.php:41 inc/php/tabs/settings.php:
|
103 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
104 |
msgstr "Si te gusta este plugin y lo encuentras útil, por favor ayudame hacer este plugin aún mejor y tenerlo actualizado."
|
105 |
|
106 |
-
#: inc/php/sidebar.php:46 inc/php/tabs/settings.php:
|
107 |
#: inc/php/tabs/support.php:21
|
108 |
msgid "Donate with PayPal"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: inc/php/sidebar.php:48 inc/php/tabs/settings.php:
|
112 |
msgid "Thanks for your support!"
|
113 |
msgstr "¡Gracias por su apoyo!"
|
114 |
|
@@ -523,7 +523,7 @@ msgstr ""
|
|
523 |
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: inc/php/tabs/settings.php:21 inc/php/tabs/settings.php:
|
527 |
msgid "Save changes"
|
528 |
msgstr "Guardar Cambios"
|
529 |
|
@@ -531,156 +531,185 @@ msgstr "Guardar Cambios"
|
|
531 |
msgid "Web Master Tools"
|
532 |
msgstr "Herramientas para Web Master"
|
533 |
|
534 |
-
#: inc/php/tabs/settings.php:
|
535 |
-
msgid "Webmaster Tools require you to verify your domain.
|
536 |
-
msgstr "Herramientas para webmasters requieren que verifique su dominio.
|
537 |
|
538 |
-
#: inc/php/tabs/settings.php:
|
539 |
-
msgid "
|
540 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
541 |
|
542 |
-
#: inc/php/tabs/settings.php:
|
543 |
-
|
|
|
|
|
|
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: inc/php/tabs/settings.php:
|
547 |
-
|
|
|
|
|
|
|
|
|
|
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: inc/php/tabs/settings.php:
|
551 |
msgid "Domain Verification"
|
552 |
msgstr "Verificar Dominio"
|
553 |
|
554 |
-
#: inc/php/tabs/settings.php:56
|
555 |
-
msgid "Third-party services like Alexa, Pinterest and Google-Plus require you to verify your domain. This makes sure that you are the correct owner of your blog or store before they provide their services to you. You can use the options below to verify your domain. If your domain is already verified, you can just forget about these."
|
556 |
-
msgstr "Servicios de terceros como Alexa, Pinterest y Google-Plus requieren que verifique su dominio. Esto se asegura de que usted es el correcto propietario de su blog o tienda antes de que prestan sus servicios a usted. Puede utilizar las opciones de abajo para comprobar su dominio. Si su dominio ya está verificado, puede olvidarse de ellas."
|
557 |
-
|
558 |
#: inc/php/tabs/settings.php:62
|
559 |
-
msgid "
|
560 |
-
msgstr ""
|
561 |
-
|
562 |
-
#: inc/php/tabs/settings.php:68
|
563 |
-
msgid "Enter an absolute URL to the Google+ profile of the publisher. <br>Example: https://plus.google.com/+Username/"
|
564 |
-
msgstr ""
|
565 |
-
|
566 |
-
#: inc/php/tabs/settings.php:74
|
567 |
-
msgid "Enter an absolute URL to the Facebook profile of the publisher. <br>Example: https://www.facebook.com/username"
|
568 |
-
msgstr ""
|
569 |
|
570 |
-
#: inc/php/tabs/settings.php:
|
571 |
-
msgid "Enter the
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: inc/php/tabs/settings.php:
|
575 |
-
msgid "Enter
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: inc/php/tabs/settings.php:
|
579 |
-
msgid "Enter
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: inc/php/tabs/settings.php:
|
583 |
-
msgid "
|
584 |
-
msgstr ""
|
585 |
-
|
586 |
-
#: inc/php/tabs/settings.php:104
|
587 |
-
msgid "Enter your meta key “content” value from your verification code to verify your website. <br>Example: <meta name=\"specificfeeds-verification-code\" content=“<b>1234567890</b>” />"
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: inc/php/tabs/settings.php:
|
591 |
-
msgid "
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: inc/php/tabs/settings.php:
|
595 |
-
msgid "
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: inc/php/tabs/settings.php:
|
599 |
-
msgid "Meta
|
600 |
msgstr "Meta Tags solo para Paginas de Inicio estática"
|
601 |
|
602 |
-
#: inc/php/tabs/settings.php:
|
603 |
msgid "You can use the options below to add meta tags such as Description and Keywords only in Static Home Page of your website."
|
604 |
msgstr "Puede usar las opciones abajo para agregar meta tags, como Descripción y palabras claves solo en Paginas de Inicio estática en su sitio web."
|
605 |
|
606 |
-
#: inc/php/tabs/settings.php:
|
607 |
msgid "Home Description"
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: inc/php/tabs/settings.php:
|
611 |
-
msgid "Enter a short description of your website (150-250 characters).
|
|
|
|
|
|
|
|
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: inc/php/tabs/settings.php:
|
615 |
msgid "Home Keyword(s)"
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: inc/php/tabs/settings.php:
|
619 |
msgid "Enter a comma-delimited list of keywords for only Static Home Page of your website."
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: inc/php/tabs/settings.php:
|
623 |
-
msgid "Meta
|
624 |
msgstr "Meta Tags por defecto pagina de inicio y pagina de blog solamente"
|
625 |
|
626 |
-
#: inc/php/tabs/settings.php:
|
627 |
msgid "You can use the options below to add meta tags such as Description and Keywords only in Default Home Page and Blog Page of your website."
|
628 |
msgstr "Puede utilizar las opciones de abajo para agregar meta tags, tales como descripción y palabras claves sólo en página principal predeterminada y Blog página de su sitio web."
|
629 |
|
630 |
-
#: inc/php/tabs/settings.php:
|
631 |
msgid "Blog Description"
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: inc/php/tabs/settings.php:
|
635 |
msgid "Blog Keyword(s)"
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: inc/php/tabs/settings.php:
|
639 |
msgid "Enter a comma-delimited list of keywords for only Blog Page of your website."
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: inc/php/tabs/settings.php:
|
643 |
-
msgid "Meta
|
644 |
msgstr "Meta Tags para todo el sitio web (Global)"
|
645 |
|
646 |
-
#: inc/php/tabs/settings.php:
|
647 |
msgid "You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere on your website."
|
648 |
msgstr "Puede usar las opciones abajo para agregar meta tags como Autor, Derecho autor, palabras clavs en cualquier sitio de su pagina web."
|
649 |
|
650 |
-
#: inc/php/tabs/settings.php:
|
651 |
msgid "Author"
|
652 |
msgstr "Autor"
|
653 |
|
654 |
-
#: inc/php/tabs/settings.php:
|
655 |
msgid "Designer"
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: inc/php/tabs/settings.php:
|
659 |
msgid "Contact"
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: inc/php/tabs/settings.php:
|
663 |
msgid "Copyright"
|
664 |
msgstr ""
|
665 |
|
666 |
-
#: inc/php/tabs/settings.php:
|
667 |
msgid "Keyword(s)"
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: inc/php/tabs/settings.php:
|
671 |
msgid "Enter a comma-delimited list of global keywords for your website."
|
672 |
msgstr ""
|
673 |
|
674 |
-
#: inc/php/tabs/settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
675 |
msgid "WooCommerce & Google Shopping"
|
676 |
msgstr ""
|
677 |
|
678 |
-
#: inc/php/tabs/settings.php:
|
679 |
-
msgid "This plugin automatically adds the necessary Google Shopping (Merchant Center) structured data on all WooCommerce product pages on your website.
|
680 |
msgstr ""
|
681 |
|
682 |
-
#: inc/php/tabs/settings.php:
|
683 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
684 |
msgstr ""
|
685 |
|
686 |
#: inc/php/tabs/support.php:13
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: All Meta Tags\n"
|
6 |
+
"POT-Creation-Date: 2019-03-06 15:59+0300\n"
|
7 |
+
"PO-Revision-Date: 2019-03-06 15:59+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Spanish (Mexico)\n"
|
10 |
"Language: es_MX\n"
|
71 |
msgid "F.A.Q."
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: inc/php/page.php:49 inc/php/sidebar.php:39 inc/php/tabs/settings.php:255
|
75 |
msgid "Support"
|
76 |
msgstr "Soporte"
|
77 |
|
99 |
msgid "If you have a question, please read the information in the FAQ section."
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: inc/php/sidebar.php:41 inc/php/tabs/settings.php:257
|
103 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
104 |
msgstr "Si te gusta este plugin y lo encuentras útil, por favor ayudame hacer este plugin aún mejor y tenerlo actualizado."
|
105 |
|
106 |
+
#: inc/php/sidebar.php:46 inc/php/tabs/settings.php:262
|
107 |
#: inc/php/tabs/support.php:21
|
108 |
msgid "Donate with PayPal"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: inc/php/sidebar.php:48 inc/php/tabs/settings.php:264
|
112 |
msgid "Thanks for your support!"
|
113 |
msgstr "¡Gracias por su apoyo!"
|
114 |
|
523 |
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: inc/php/tabs/settings.php:21 inc/php/tabs/settings.php:205
|
527 |
msgid "Save changes"
|
528 |
msgstr "Guardar Cambios"
|
529 |
|
531 |
msgid "Web Master Tools"
|
532 |
msgstr "Herramientas para Web Master"
|
533 |
|
534 |
+
#: inc/php/tabs/settings.php:28
|
535 |
+
msgid "Webmaster Tools require you to verify your domain."
|
536 |
+
msgstr "Herramientas para webmasters requieren que verifique su dominio."
|
537 |
|
538 |
+
#: inc/php/tabs/settings.php:29 inc/php/tabs/settings.php:63
|
539 |
+
msgid "This makes sure that you are the correct owner of your blog or store before they provide their services to you."
|
540 |
+
msgstr "Esto se asegura de que usted es el correcto propietario de su blog o tienda antes de que prestan sus servicios a usted."
|
541 |
+
|
542 |
+
#: inc/php/tabs/settings.php:30 inc/php/tabs/settings.php:64
|
543 |
+
msgid "You can use the options below to verify your domain."
|
544 |
+
msgstr "Puede utilizar las opciones de abajo para comprobar su dominio."
|
545 |
+
|
546 |
+
#: inc/php/tabs/settings.php:31 inc/php/tabs/settings.php:65
|
547 |
+
msgid "If your domain is already verified, you can just forget about these."
|
548 |
+
msgstr "Si su dominio ya está verificado, puede olvidarse de ellas."
|
549 |
|
550 |
+
#: inc/php/tabs/settings.php:38 inc/php/tabs/settings.php:44
|
551 |
+
#: inc/php/tabs/settings.php:50 inc/php/tabs/settings.php:72
|
552 |
+
#: inc/php/tabs/settings.php:96 inc/php/tabs/settings.php:102
|
553 |
+
#: inc/php/tabs/settings.php:108 inc/php/tabs/settings.php:114
|
554 |
+
msgid "Enter your meta key “content” value from your verification code to verify your website."
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: inc/php/tabs/settings.php:38 inc/php/tabs/settings.php:44
|
558 |
+
#: inc/php/tabs/settings.php:50 inc/php/tabs/settings.php:72
|
559 |
+
#: inc/php/tabs/settings.php:78 inc/php/tabs/settings.php:84
|
560 |
+
#: inc/php/tabs/settings.php:90 inc/php/tabs/settings.php:96
|
561 |
+
#: inc/php/tabs/settings.php:102 inc/php/tabs/settings.php:108
|
562 |
+
#: inc/php/tabs/settings.php:114 inc/php/tabs/settings.php:120
|
563 |
+
msgid "Example:"
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: inc/php/tabs/settings.php:59
|
567 |
msgid "Domain Verification"
|
568 |
msgstr "Verificar Dominio"
|
569 |
|
|
|
|
|
|
|
|
|
570 |
#: inc/php/tabs/settings.php:62
|
571 |
+
msgid "Third-party services like Alexa, Pinterest and Google-Plus require you to verify your domain."
|
572 |
+
msgstr "Servicios de terceros como Alexa, Pinterest y Google-Plus requieren que verifique su dominio."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
573 |
|
574 |
+
#: inc/php/tabs/settings.php:78
|
575 |
+
msgid "Enter an absolute URL to the Google+ profile of the publisher."
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: inc/php/tabs/settings.php:84
|
579 |
+
msgid "Enter an absolute URL to the Facebook profile of the publisher."
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: inc/php/tabs/settings.php:90
|
583 |
+
msgid "Enter the Twitter username of the publisher."
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: inc/php/tabs/settings.php:118
|
587 |
+
msgid "Custom meta tags"
|
|
|
|
|
|
|
|
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: inc/php/tabs/settings.php:120
|
591 |
+
msgid "If you can't find a field to enter your required meta tag then you can add it here."
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: inc/php/tabs/settings.php:120
|
595 |
+
msgid "In this field you can add multiple meta tags."
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: inc/php/tabs/settings.php:128
|
599 |
+
msgid "Meta tags for Static Home Page only"
|
600 |
msgstr "Meta Tags solo para Paginas de Inicio estática"
|
601 |
|
602 |
+
#: inc/php/tabs/settings.php:130
|
603 |
msgid "You can use the options below to add meta tags such as Description and Keywords only in Static Home Page of your website."
|
604 |
msgstr "Puede usar las opciones abajo para agregar meta tags, como Descripción y palabras claves solo en Paginas de Inicio estática en su sitio web."
|
605 |
|
606 |
+
#: inc/php/tabs/settings.php:134
|
607 |
msgid "Home Description"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: inc/php/tabs/settings.php:136 inc/php/tabs/settings.php:157
|
611 |
+
msgid "Enter a short description of your website (150-250 characters)."
|
612 |
+
msgstr ""
|
613 |
+
|
614 |
+
#: inc/php/tabs/settings.php:136 inc/php/tabs/settings.php:157
|
615 |
+
msgid "Most search engines use a maximum of 160 chars for the home description."
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: inc/php/tabs/settings.php:139
|
619 |
msgid "Home Keyword(s)"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: inc/php/tabs/settings.php:141
|
623 |
msgid "Enter a comma-delimited list of keywords for only Static Home Page of your website."
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: inc/php/tabs/settings.php:149
|
627 |
+
msgid "Meta tags for Default Home Page and Blog Page only"
|
628 |
msgstr "Meta Tags por defecto pagina de inicio y pagina de blog solamente"
|
629 |
|
630 |
+
#: inc/php/tabs/settings.php:151
|
631 |
msgid "You can use the options below to add meta tags such as Description and Keywords only in Default Home Page and Blog Page of your website."
|
632 |
msgstr "Puede utilizar las opciones de abajo para agregar meta tags, tales como descripción y palabras claves sólo en página principal predeterminada y Blog página de su sitio web."
|
633 |
|
634 |
+
#: inc/php/tabs/settings.php:155
|
635 |
msgid "Blog Description"
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: inc/php/tabs/settings.php:160
|
639 |
msgid "Blog Keyword(s)"
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: inc/php/tabs/settings.php:162
|
643 |
msgid "Enter a comma-delimited list of keywords for only Blog Page of your website."
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: inc/php/tabs/settings.php:170
|
647 |
+
msgid "Meta tags for the entire website (Global)"
|
648 |
msgstr "Meta Tags para todo el sitio web (Global)"
|
649 |
|
650 |
+
#: inc/php/tabs/settings.php:172
|
651 |
msgid "You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere on your website."
|
652 |
msgstr "Puede usar las opciones abajo para agregar meta tags como Autor, Derecho autor, palabras clavs en cualquier sitio de su pagina web."
|
653 |
|
654 |
+
#: inc/php/tabs/settings.php:176
|
655 |
msgid "Author"
|
656 |
msgstr "Autor"
|
657 |
|
658 |
+
#: inc/php/tabs/settings.php:181
|
659 |
msgid "Designer"
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: inc/php/tabs/settings.php:186
|
663 |
msgid "Contact"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: inc/php/tabs/settings.php:191
|
667 |
msgid "Copyright"
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: inc/php/tabs/settings.php:196
|
671 |
msgid "Keyword(s)"
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: inc/php/tabs/settings.php:198
|
675 |
msgid "Enter a comma-delimited list of global keywords for your website."
|
676 |
msgstr ""
|
677 |
|
678 |
+
#: inc/php/tabs/settings.php:208
|
679 |
+
msgid "Preview"
|
680 |
+
msgstr ""
|
681 |
+
|
682 |
+
#: inc/php/tabs/settings.php:210
|
683 |
+
msgid "Click the \"Save changes\" button to update this preview."
|
684 |
+
msgstr ""
|
685 |
+
|
686 |
+
#: inc/php/tabs/settings.php:211
|
687 |
+
msgid "These are meta tags that will be printed on all pages (globally) of your website."
|
688 |
+
msgstr ""
|
689 |
+
|
690 |
+
#: inc/php/tabs/settings.php:215
|
691 |
+
msgid "Note!"
|
692 |
+
msgstr ""
|
693 |
+
|
694 |
+
#: inc/php/tabs/settings.php:216
|
695 |
+
msgid "This preview does not show meta tags that will be printed only on certain pages of your website."
|
696 |
+
msgstr ""
|
697 |
+
|
698 |
+
#: inc/php/tabs/settings.php:222
|
699 |
msgid "WooCommerce & Google Shopping"
|
700 |
msgstr ""
|
701 |
|
702 |
+
#: inc/php/tabs/settings.php:225
|
703 |
+
msgid "This plugin automatically adds the necessary Google Shopping (Merchant Center) structured data on all WooCommerce product pages on your website."
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: inc/php/tabs/settings.php:226
|
707 |
+
msgid "Here is the markup for women's T-shirt that sells for 16 dollars and 80 cents of US."
|
708 |
+
msgstr ""
|
709 |
+
|
710 |
+
#: inc/php/tabs/settings.php:245
|
711 |
+
#, php-format
|
712 |
+
msgid "Check these data generated on the pages of your website you can %s here %s ."
|
713 |
msgstr ""
|
714 |
|
715 |
#: inc/php/tabs/support.php:13
|
languages/all-meta-tags-fr_FR.mo
CHANGED
Binary file
|
languages/all-meta-tags-fr_FR.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: All Meta Tags\n"
|
6 |
-
"POT-Creation-Date: 2019-03-
|
7 |
-
"PO-Revision-Date: 2019-03-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: French\n"
|
10 |
"Language: fr_FR\n"
|
@@ -69,7 +69,7 @@ msgstr "Utilisation"
|
|
69 |
msgid "F.A.Q."
|
70 |
msgstr "FAQ."
|
71 |
|
72 |
-
#: inc/php/page.php:49 inc/php/sidebar.php:39 inc/php/tabs/settings.php:
|
73 |
msgid "Support"
|
74 |
msgstr "Support"
|
75 |
|
@@ -97,16 +97,16 @@ msgstr "Aide"
|
|
97 |
msgid "If you have a question, please read the information in the FAQ section."
|
98 |
msgstr "Si vous avez une question, veuillez lire les informations dans la section FAQ."
|
99 |
|
100 |
-
#: inc/php/sidebar.php:41 inc/php/tabs/settings.php:
|
101 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
102 |
msgstr "Toute contribution même minime nous aident à couvrir nos frais et nous laisse plus de temps pour ajouter des fonctionnalités que les utilisateurs comme vous apprécient."
|
103 |
|
104 |
-
#: inc/php/sidebar.php:46 inc/php/tabs/settings.php:
|
105 |
#: inc/php/tabs/support.php:21
|
106 |
msgid "Donate with PayPal"
|
107 |
msgstr "Faire un don avec PayPal"
|
108 |
|
109 |
-
#: inc/php/sidebar.php:48 inc/php/tabs/settings.php:
|
110 |
msgid "Thanks for your support!"
|
111 |
msgstr "Merci pour votre soutien!"
|
112 |
|
@@ -214,7 +214,7 @@ msgstr ""
|
|
214 |
|
215 |
#: inc/php/tabs/faq.php:101
|
216 |
msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
|
217 |
-
msgstr "Peut-être que toutes les traductions existantes ne sont pas à jour. Vous êtes invités à apporter des corrections
|
218 |
|
219 |
#: inc/php/tabs/faq.php:102
|
220 |
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
@@ -521,7 +521,7 @@ msgstr "Vous pouvez poser votre question sur %s cette page %s."
|
|
521 |
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: inc/php/tabs/settings.php:21 inc/php/tabs/settings.php:
|
525 |
msgid "Save changes"
|
526 |
msgstr "Enregistrer les modifications"
|
527 |
|
@@ -529,156 +529,185 @@ msgstr "Enregistrer les modifications"
|
|
529 |
msgid "Web Master Tools"
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: inc/php/tabs/settings.php:
|
533 |
-
msgid "Webmaster Tools require you to verify your domain.
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: inc/php/tabs/settings.php:
|
537 |
-
msgid "
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: inc/php/tabs/settings.php:
|
541 |
-
msgid "
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: inc/php/tabs/settings.php:
|
545 |
-
msgid "
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: inc/php/tabs/settings.php:
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
msgid "Third-party services like Alexa, Pinterest and Google-Plus require you to verify your domain. This makes sure that you are the correct owner of your blog or store before they provide their services to you. You can use the options below to verify your domain. If your domain is already verified, you can just forget about these."
|
554 |
-
msgstr ""
|
555 |
-
|
556 |
-
#: inc/php/tabs/settings.php:62
|
557 |
-
msgid "Enter your meta key “content” value from your verification code to verify your website. <br>Example: <meta name=\"p:domain_verify\" content=“<b>1234567890</b>” />"
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: inc/php/tabs/settings.php:
|
561 |
-
|
|
|
|
|
|
|
|
|
|
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: inc/php/tabs/settings.php:
|
565 |
-
msgid "
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: inc/php/tabs/settings.php:
|
569 |
-
msgid "
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: inc/php/tabs/settings.php:
|
573 |
-
msgid "Enter
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: inc/php/tabs/settings.php:
|
577 |
-
msgid "Enter
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: inc/php/tabs/settings.php:
|
581 |
-
msgid "Enter
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: inc/php/tabs/settings.php:
|
585 |
-
msgid "
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: inc/php/tabs/settings.php:
|
589 |
-
msgid "
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: inc/php/tabs/settings.php:
|
593 |
-
msgid "
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: inc/php/tabs/settings.php:
|
597 |
-
msgid "Meta
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: inc/php/tabs/settings.php:
|
601 |
msgid "You can use the options below to add meta tags such as Description and Keywords only in Static Home Page of your website."
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: inc/php/tabs/settings.php:
|
605 |
msgid "Home Description"
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: inc/php/tabs/settings.php:
|
609 |
-
msgid "Enter a short description of your website (150-250 characters).
|
|
|
|
|
|
|
|
|
610 |
msgstr ""
|
611 |
|
612 |
-
#: inc/php/tabs/settings.php:
|
613 |
msgid "Home Keyword(s)"
|
614 |
msgstr ""
|
615 |
|
616 |
-
#: inc/php/tabs/settings.php:
|
617 |
msgid "Enter a comma-delimited list of keywords for only Static Home Page of your website."
|
618 |
msgstr ""
|
619 |
|
620 |
-
#: inc/php/tabs/settings.php:
|
621 |
-
msgid "Meta
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: inc/php/tabs/settings.php:
|
625 |
msgid "You can use the options below to add meta tags such as Description and Keywords only in Default Home Page and Blog Page of your website."
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: inc/php/tabs/settings.php:
|
629 |
msgid "Blog Description"
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: inc/php/tabs/settings.php:
|
633 |
msgid "Blog Keyword(s)"
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: inc/php/tabs/settings.php:
|
637 |
msgid "Enter a comma-delimited list of keywords for only Blog Page of your website."
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: inc/php/tabs/settings.php:
|
641 |
-
msgid "Meta
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: inc/php/tabs/settings.php:
|
645 |
msgid "You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere on your website."
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: inc/php/tabs/settings.php:
|
649 |
msgid "Author"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: inc/php/tabs/settings.php:
|
653 |
msgid "Designer"
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: inc/php/tabs/settings.php:
|
657 |
msgid "Contact"
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: inc/php/tabs/settings.php:
|
661 |
msgid "Copyright"
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: inc/php/tabs/settings.php:
|
665 |
msgid "Keyword(s)"
|
666 |
msgstr ""
|
667 |
|
668 |
-
#: inc/php/tabs/settings.php:
|
669 |
msgid "Enter a comma-delimited list of global keywords for your website."
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: inc/php/tabs/settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
673 |
msgid "WooCommerce & Google Shopping"
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: inc/php/tabs/settings.php:
|
677 |
-
msgid "This plugin automatically adds the necessary Google Shopping (Merchant Center) structured data on all WooCommerce product pages on your website.
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: inc/php/tabs/settings.php:
|
681 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
682 |
msgstr ""
|
683 |
|
684 |
#: inc/php/tabs/support.php:13
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: All Meta Tags\n"
|
6 |
+
"POT-Creation-Date: 2019-03-06 15:59+0300\n"
|
7 |
+
"PO-Revision-Date: 2019-03-06 15:59+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: French\n"
|
10 |
"Language: fr_FR\n"
|
69 |
msgid "F.A.Q."
|
70 |
msgstr "FAQ."
|
71 |
|
72 |
+
#: inc/php/page.php:49 inc/php/sidebar.php:39 inc/php/tabs/settings.php:255
|
73 |
msgid "Support"
|
74 |
msgstr "Support"
|
75 |
|
97 |
msgid "If you have a question, please read the information in the FAQ section."
|
98 |
msgstr "Si vous avez une question, veuillez lire les informations dans la section FAQ."
|
99 |
|
100 |
+
#: inc/php/sidebar.php:41 inc/php/tabs/settings.php:257
|
101 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
102 |
msgstr "Toute contribution même minime nous aident à couvrir nos frais et nous laisse plus de temps pour ajouter des fonctionnalités que les utilisateurs comme vous apprécient."
|
103 |
|
104 |
+
#: inc/php/sidebar.php:46 inc/php/tabs/settings.php:262
|
105 |
#: inc/php/tabs/support.php:21
|
106 |
msgid "Donate with PayPal"
|
107 |
msgstr "Faire un don avec PayPal"
|
108 |
|
109 |
+
#: inc/php/sidebar.php:48 inc/php/tabs/settings.php:264
|
110 |
msgid "Thanks for your support!"
|
111 |
msgstr "Merci pour votre soutien!"
|
112 |
|
214 |
|
215 |
#: inc/php/tabs/faq.php:101
|
216 |
msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
|
217 |
+
msgstr "Peut-être que toutes les traductions existantes ne sont pas à jour. Vous êtes invités à apporter des corrections."
|
218 |
|
219 |
#: inc/php/tabs/faq.php:102
|
220 |
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
521 |
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: inc/php/tabs/settings.php:21 inc/php/tabs/settings.php:205
|
525 |
msgid "Save changes"
|
526 |
msgstr "Enregistrer les modifications"
|
527 |
|
529 |
msgid "Web Master Tools"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: inc/php/tabs/settings.php:28
|
533 |
+
msgid "Webmaster Tools require you to verify your domain."
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: inc/php/tabs/settings.php:29 inc/php/tabs/settings.php:63
|
537 |
+
msgid "This makes sure that you are the correct owner of your blog or store before they provide their services to you."
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: inc/php/tabs/settings.php:30 inc/php/tabs/settings.php:64
|
541 |
+
msgid "You can use the options below to verify your domain."
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: inc/php/tabs/settings.php:31 inc/php/tabs/settings.php:65
|
545 |
+
msgid "If your domain is already verified, you can just forget about these."
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: inc/php/tabs/settings.php:38 inc/php/tabs/settings.php:44
|
549 |
+
#: inc/php/tabs/settings.php:50 inc/php/tabs/settings.php:72
|
550 |
+
#: inc/php/tabs/settings.php:96 inc/php/tabs/settings.php:102
|
551 |
+
#: inc/php/tabs/settings.php:108 inc/php/tabs/settings.php:114
|
552 |
+
msgid "Enter your meta key “content” value from your verification code to verify your website."
|
|
|
|
|
|
|
|
|
|
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: inc/php/tabs/settings.php:38 inc/php/tabs/settings.php:44
|
556 |
+
#: inc/php/tabs/settings.php:50 inc/php/tabs/settings.php:72
|
557 |
+
#: inc/php/tabs/settings.php:78 inc/php/tabs/settings.php:84
|
558 |
+
#: inc/php/tabs/settings.php:90 inc/php/tabs/settings.php:96
|
559 |
+
#: inc/php/tabs/settings.php:102 inc/php/tabs/settings.php:108
|
560 |
+
#: inc/php/tabs/settings.php:114 inc/php/tabs/settings.php:120
|
561 |
+
msgid "Example:"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: inc/php/tabs/settings.php:59
|
565 |
+
msgid "Domain Verification"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: inc/php/tabs/settings.php:62
|
569 |
+
msgid "Third-party services like Alexa, Pinterest and Google-Plus require you to verify your domain."
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: inc/php/tabs/settings.php:78
|
573 |
+
msgid "Enter an absolute URL to the Google+ profile of the publisher."
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: inc/php/tabs/settings.php:84
|
577 |
+
msgid "Enter an absolute URL to the Facebook profile of the publisher."
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: inc/php/tabs/settings.php:90
|
581 |
+
msgid "Enter the Twitter username of the publisher."
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: inc/php/tabs/settings.php:118
|
585 |
+
msgid "Custom meta tags"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: inc/php/tabs/settings.php:120
|
589 |
+
msgid "If you can't find a field to enter your required meta tag then you can add it here."
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: inc/php/tabs/settings.php:120
|
593 |
+
msgid "In this field you can add multiple meta tags."
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: inc/php/tabs/settings.php:128
|
597 |
+
msgid "Meta tags for Static Home Page only"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: inc/php/tabs/settings.php:130
|
601 |
msgid "You can use the options below to add meta tags such as Description and Keywords only in Static Home Page of your website."
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: inc/php/tabs/settings.php:134
|
605 |
msgid "Home Description"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: inc/php/tabs/settings.php:136 inc/php/tabs/settings.php:157
|
609 |
+
msgid "Enter a short description of your website (150-250 characters)."
|
610 |
+
msgstr ""
|
611 |
+
|
612 |
+
#: inc/php/tabs/settings.php:136 inc/php/tabs/settings.php:157
|
613 |
+
msgid "Most search engines use a maximum of 160 chars for the home description."
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: inc/php/tabs/settings.php:139
|
617 |
msgid "Home Keyword(s)"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: inc/php/tabs/settings.php:141
|
621 |
msgid "Enter a comma-delimited list of keywords for only Static Home Page of your website."
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: inc/php/tabs/settings.php:149
|
625 |
+
msgid "Meta tags for Default Home Page and Blog Page only"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: inc/php/tabs/settings.php:151
|
629 |
msgid "You can use the options below to add meta tags such as Description and Keywords only in Default Home Page and Blog Page of your website."
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: inc/php/tabs/settings.php:155
|
633 |
msgid "Blog Description"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: inc/php/tabs/settings.php:160
|
637 |
msgid "Blog Keyword(s)"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: inc/php/tabs/settings.php:162
|
641 |
msgid "Enter a comma-delimited list of keywords for only Blog Page of your website."
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: inc/php/tabs/settings.php:170
|
645 |
+
msgid "Meta tags for the entire website (Global)"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: inc/php/tabs/settings.php:172
|
649 |
msgid "You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere on your website."
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: inc/php/tabs/settings.php:176
|
653 |
msgid "Author"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: inc/php/tabs/settings.php:181
|
657 |
msgid "Designer"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: inc/php/tabs/settings.php:186
|
661 |
msgid "Contact"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: inc/php/tabs/settings.php:191
|
665 |
msgid "Copyright"
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: inc/php/tabs/settings.php:196
|
669 |
msgid "Keyword(s)"
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: inc/php/tabs/settings.php:198
|
673 |
msgid "Enter a comma-delimited list of global keywords for your website."
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: inc/php/tabs/settings.php:208
|
677 |
+
msgid "Preview"
|
678 |
+
msgstr ""
|
679 |
+
|
680 |
+
#: inc/php/tabs/settings.php:210
|
681 |
+
msgid "Click the \"Save changes\" button to update this preview."
|
682 |
+
msgstr ""
|
683 |
+
|
684 |
+
#: inc/php/tabs/settings.php:211
|
685 |
+
msgid "These are meta tags that will be printed on all pages (globally) of your website."
|
686 |
+
msgstr ""
|
687 |
+
|
688 |
+
#: inc/php/tabs/settings.php:215
|
689 |
+
msgid "Note!"
|
690 |
+
msgstr ""
|
691 |
+
|
692 |
+
#: inc/php/tabs/settings.php:216
|
693 |
+
msgid "This preview does not show meta tags that will be printed only on certain pages of your website."
|
694 |
+
msgstr ""
|
695 |
+
|
696 |
+
#: inc/php/tabs/settings.php:222
|
697 |
msgid "WooCommerce & Google Shopping"
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: inc/php/tabs/settings.php:225
|
701 |
+
msgid "This plugin automatically adds the necessary Google Shopping (Merchant Center) structured data on all WooCommerce product pages on your website."
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: inc/php/tabs/settings.php:226
|
705 |
+
msgid "Here is the markup for women's T-shirt that sells for 16 dollars and 80 cents of US."
|
706 |
+
msgstr ""
|
707 |
+
|
708 |
+
#: inc/php/tabs/settings.php:245
|
709 |
+
#, php-format
|
710 |
+
msgid "Check these data generated on the pages of your website you can %s here %s ."
|
711 |
msgstr ""
|
712 |
|
713 |
#: inc/php/tabs/support.php:13
|
languages/all-meta-tags-it_IT.mo
CHANGED
Binary file
|
languages/all-meta-tags-it_IT.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: All Meta Tags\n"
|
6 |
-
"POT-Creation-Date: 2019-03-
|
7 |
-
"PO-Revision-Date: 2019-03-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Italian\n"
|
10 |
"Language: it_IT\n"
|
@@ -70,7 +70,7 @@ msgstr ""
|
|
70 |
msgid "F.A.Q."
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: inc/php/page.php:49 inc/php/sidebar.php:39 inc/php/tabs/settings.php:
|
74 |
msgid "Support"
|
75 |
msgstr ""
|
76 |
|
@@ -98,16 +98,16 @@ msgstr "Aiuto"
|
|
98 |
msgid "If you have a question, please read the information in the FAQ section."
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: inc/php/sidebar.php:41 inc/php/tabs/settings.php:
|
102 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
103 |
msgstr "Sono uno sviluppatore indipendente, senza un reddito stabile, quindi ogni piccolo contributo è utile a coprire i miei costi e mi consente di impiegare più tempo nello sviluppo di strumenti per persone che come te li apprezzano."
|
104 |
|
105 |
-
#: inc/php/sidebar.php:46 inc/php/tabs/settings.php:
|
106 |
#: inc/php/tabs/support.php:21
|
107 |
msgid "Donate with PayPal"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: inc/php/sidebar.php:48 inc/php/tabs/settings.php:
|
111 |
msgid "Thanks for your support!"
|
112 |
msgstr "Grazie per il tuo supporto!"
|
113 |
|
@@ -522,7 +522,7 @@ msgstr ""
|
|
522 |
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: inc/php/tabs/settings.php:21 inc/php/tabs/settings.php:
|
526 |
msgid "Save changes"
|
527 |
msgstr "Salva modifiche"
|
528 |
|
@@ -530,156 +530,186 @@ msgstr "Salva modifiche"
|
|
530 |
msgid "Web Master Tools"
|
531 |
msgstr "Webmaster Tools"
|
532 |
|
533 |
-
#: inc/php/tabs/settings.php:
|
534 |
-
msgid "Webmaster Tools require you to verify your domain.
|
535 |
-
msgstr "Webmaster Tools ti richiede di verificare il tuo dominio.
|
536 |
-
|
537 |
-
#: inc/php/tabs/settings.php:
|
538 |
-
msgid "
|
539 |
-
msgstr "
|
540 |
-
|
541 |
-
#: inc/php/tabs/settings.php:
|
542 |
-
msgid "
|
543 |
-
msgstr "
|
544 |
-
|
545 |
-
#: inc/php/tabs/settings.php:
|
546 |
-
msgid "
|
547 |
-
msgstr "
|
548 |
-
|
549 |
-
#: inc/php/tabs/settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
550 |
msgid "Domain Verification"
|
551 |
msgstr "Verifica dominio"
|
552 |
|
553 |
-
#: inc/php/tabs/settings.php:56
|
554 |
-
msgid "Third-party services like Alexa, Pinterest and Google-Plus require you to verify your domain. This makes sure that you are the correct owner of your blog or store before they provide their services to you. You can use the options below to verify your domain. If your domain is already verified, you can just forget about these."
|
555 |
-
msgstr "Servizi di terze parti come Alexa, Pinterest e Google+ ti richiedono di verificare il tuo dominio. Ciò assicura che tu sia il vero proprietario del tuo blog o negozio prima che ti forniscano i loro servizi. Puoi usare le opzioni qui sotto per verificare il tuo dominio. Se il tuo dominio è già verificato, puoi semplicemente ignorarle."
|
556 |
-
|
557 |
#: inc/php/tabs/settings.php:62
|
558 |
-
msgid "
|
559 |
-
msgstr "
|
560 |
-
|
561 |
-
#: inc/php/tabs/settings.php:68
|
562 |
-
msgid "Enter an absolute URL to the Google+ profile of the publisher. <br>Example: https://plus.google.com/+Username/"
|
563 |
-
msgstr "Inserisci un URL assoluto al tuo profilo Google+. <br>Esempio: https://plus.google.com/+User/"
|
564 |
|
565 |
-
#: inc/php/tabs/settings.php:
|
566 |
-
msgid "Enter an absolute URL to the
|
567 |
-
msgstr "Inserisci un URL assoluto al tuo profilo
|
568 |
|
569 |
-
#: inc/php/tabs/settings.php:
|
570 |
-
msgid "Enter the
|
571 |
-
msgstr "Inserisci
|
572 |
|
573 |
-
#: inc/php/tabs/settings.php:
|
574 |
-
msgid "Enter
|
575 |
-
msgstr "
|
576 |
|
577 |
-
#: inc/php/tabs/settings.php:
|
578 |
-
msgid "
|
579 |
-
msgstr "Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di verifica. <br>Esempio: <meta name=\"norton-safeweb-site-verification\" content=“<b>1234567890</b>” />"
|
580 |
-
|
581 |
-
#: inc/php/tabs/settings.php:98
|
582 |
-
msgid "Enter your meta key “content” value from your verification code to verify your website. <br>Example: <meta name=\"wot-verification\" content=“<b>1234567890</b>” />"
|
583 |
-
msgstr "Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di verifica. <br>Esempio: <meta name=\"wot-verification\" content=“<b>1234567890</b>” />"
|
584 |
-
|
585 |
-
#: inc/php/tabs/settings.php:104
|
586 |
-
msgid "Enter your meta key “content” value from your verification code to verify your website. <br>Example: <meta name=\"specificfeeds-verification-code\" content=“<b>1234567890</b>” />"
|
587 |
-
msgstr "Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di verifica. <br>Esempio: <meta name=\"specificfeeds-verification-code\" content=“<b>1234567890</b>” />"
|
588 |
-
|
589 |
-
#: inc/php/tabs/settings.php:108
|
590 |
-
msgid "Custom Meta Tags"
|
591 |
msgstr "Tag meta personalizzati"
|
592 |
|
593 |
-
#: inc/php/tabs/settings.php:
|
594 |
-
msgid "If you can't find a field to enter your required meta tag then you can add it here.
|
595 |
-
msgstr "Se non riesci a trovare un campo per inserire il tuo meta tag richiesto allora puoi aggiungerlo qui.
|
|
|
|
|
|
|
|
|
596 |
|
597 |
-
#: inc/php/tabs/settings.php:
|
598 |
-
msgid "Meta
|
599 |
msgstr "Tag meta solo per la pagina home statica"
|
600 |
|
601 |
-
#: inc/php/tabs/settings.php:
|
602 |
msgid "You can use the options below to add meta tags such as Description and Keywords only in Static Home Page of your website."
|
603 |
msgstr "Puoi usare le opzioni qui sotto per aggiungere tag meta quali Description e Keywords solo alla pagina home statica del tuo sito web."
|
604 |
|
605 |
-
#: inc/php/tabs/settings.php:
|
606 |
msgid "Home Description"
|
607 |
msgstr "Descrizione home"
|
608 |
|
609 |
-
#: inc/php/tabs/settings.php:
|
610 |
-
msgid "Enter a short description of your website (150-250 characters).
|
611 |
-
msgstr "Inserisci una breve descrizione del tuo sito web (150-250 caratteri).
|
|
|
|
|
|
|
|
|
612 |
|
613 |
-
#: inc/php/tabs/settings.php:
|
614 |
msgid "Home Keyword(s)"
|
615 |
msgstr "Parole chiave home"
|
616 |
|
617 |
-
#: inc/php/tabs/settings.php:
|
618 |
msgid "Enter a comma-delimited list of keywords for only Static Home Page of your website."
|
619 |
msgstr "Inserisci una lista delimitata da virgole di parole chiave solo per la pagina home statica del tuo sito web."
|
620 |
|
621 |
-
#: inc/php/tabs/settings.php:
|
622 |
-
msgid "Meta
|
623 |
msgstr "Tag meta solo per pagina home predefinita e pagina blog"
|
624 |
|
625 |
-
#: inc/php/tabs/settings.php:
|
626 |
msgid "You can use the options below to add meta tags such as Description and Keywords only in Default Home Page and Blog Page of your website."
|
627 |
msgstr "Puoi usare le opzioni qui sotto per aggiungere tag meta quali Description e Keywords solo alla pagina home predefinita e alla pagina blog del tuo sito web."
|
628 |
|
629 |
-
#: inc/php/tabs/settings.php:
|
630 |
msgid "Blog Description"
|
631 |
msgstr "Descrizione blog"
|
632 |
|
633 |
-
#: inc/php/tabs/settings.php:
|
634 |
msgid "Blog Keyword(s)"
|
635 |
msgstr "Parole chiave blog"
|
636 |
|
637 |
-
#: inc/php/tabs/settings.php:
|
638 |
msgid "Enter a comma-delimited list of keywords for only Blog Page of your website."
|
639 |
msgstr "Inserisci una lista delimitata da virgole di parole chiave solo per la pagina blog del tuo sito web."
|
640 |
|
641 |
-
#: inc/php/tabs/settings.php:
|
642 |
-
msgid "Meta
|
643 |
msgstr "Tag meta per tutto il sito (globale)"
|
644 |
|
645 |
-
#: inc/php/tabs/settings.php:
|
646 |
msgid "You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere on your website."
|
647 |
msgstr "Puoi usare le opzioni qui sotto per aggiungere tag meta quali Author, Copyright e Keywords ovunque sul tuo sito."
|
648 |
|
649 |
-
#: inc/php/tabs/settings.php:
|
650 |
msgid "Author"
|
651 |
msgstr "Autore"
|
652 |
|
653 |
-
#: inc/php/tabs/settings.php:
|
654 |
msgid "Designer"
|
655 |
msgstr "Designer"
|
656 |
|
657 |
-
#: inc/php/tabs/settings.php:
|
658 |
msgid "Contact"
|
659 |
msgstr "Contatti"
|
660 |
|
661 |
-
#: inc/php/tabs/settings.php:
|
662 |
msgid "Copyright"
|
663 |
msgstr "Copyright"
|
664 |
|
665 |
-
#: inc/php/tabs/settings.php:
|
666 |
msgid "Keyword(s)"
|
667 |
msgstr "Parole chiave"
|
668 |
|
669 |
-
#: inc/php/tabs/settings.php:
|
670 |
msgid "Enter a comma-delimited list of global keywords for your website."
|
671 |
msgstr "Inserisci una lista delimitata da virgole di parole chiave globali per il tuo sito web."
|
672 |
|
673 |
-
#: inc/php/tabs/settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
674 |
msgid "WooCommerce & Google Shopping"
|
675 |
msgstr "WooCommerce & Google Shopping"
|
676 |
|
677 |
-
#: inc/php/tabs/settings.php:
|
678 |
-
msgid "This plugin automatically adds the necessary Google Shopping (Merchant Center) structured data on all WooCommerce product pages on your website.
|
679 |
-
msgstr "Questo plugin aggiunge automaticamente i dati strutturati necessari a Google Shopping (Merchant Center) su tutte le pagine prodotto WooCommerce del tuo sito web.
|
|
|
|
|
|
|
|
|
680 |
|
681 |
-
#: inc/php/tabs/settings.php:
|
682 |
-
|
|
|
|
|
683 |
msgstr "Puoi controllare <a href=\"https://search.google.com/structured-data/testing-tool\" target=\"_blank\">qui</a> tali dati generati sulle pagine del tuo sito web."
|
684 |
|
685 |
#: inc/php/tabs/support.php:13
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: All Meta Tags\n"
|
6 |
+
"POT-Creation-Date: 2019-03-06 15:59+0300\n"
|
7 |
+
"PO-Revision-Date: 2019-03-06 15:59+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Italian\n"
|
10 |
"Language: it_IT\n"
|
70 |
msgid "F.A.Q."
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: inc/php/page.php:49 inc/php/sidebar.php:39 inc/php/tabs/settings.php:255
|
74 |
msgid "Support"
|
75 |
msgstr ""
|
76 |
|
98 |
msgid "If you have a question, please read the information in the FAQ section."
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: inc/php/sidebar.php:41 inc/php/tabs/settings.php:257
|
102 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
103 |
msgstr "Sono uno sviluppatore indipendente, senza un reddito stabile, quindi ogni piccolo contributo è utile a coprire i miei costi e mi consente di impiegare più tempo nello sviluppo di strumenti per persone che come te li apprezzano."
|
104 |
|
105 |
+
#: inc/php/sidebar.php:46 inc/php/tabs/settings.php:262
|
106 |
#: inc/php/tabs/support.php:21
|
107 |
msgid "Donate with PayPal"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: inc/php/sidebar.php:48 inc/php/tabs/settings.php:264
|
111 |
msgid "Thanks for your support!"
|
112 |
msgstr "Grazie per il tuo supporto!"
|
113 |
|
522 |
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: inc/php/tabs/settings.php:21 inc/php/tabs/settings.php:205
|
526 |
msgid "Save changes"
|
527 |
msgstr "Salva modifiche"
|
528 |
|
530 |
msgid "Web Master Tools"
|
531 |
msgstr "Webmaster Tools"
|
532 |
|
533 |
+
#: inc/php/tabs/settings.php:28
|
534 |
+
msgid "Webmaster Tools require you to verify your domain."
|
535 |
+
msgstr "Webmaster Tools ti richiede di verificare il tuo dominio."
|
536 |
+
|
537 |
+
#: inc/php/tabs/settings.php:29 inc/php/tabs/settings.php:63
|
538 |
+
msgid "This makes sure that you are the correct owner of your blog or store before they provide their services to you."
|
539 |
+
msgstr "Ciò assicura che tu sia il vero proprietario del tuo blog o negozio prima che ti forniscano i loro servizi."
|
540 |
+
|
541 |
+
#: inc/php/tabs/settings.php:30 inc/php/tabs/settings.php:64
|
542 |
+
msgid "You can use the options below to verify your domain."
|
543 |
+
msgstr "Puoi usare le opzioni qui sotto per verificare il tuo dominio."
|
544 |
+
|
545 |
+
#: inc/php/tabs/settings.php:31 inc/php/tabs/settings.php:65
|
546 |
+
msgid "If your domain is already verified, you can just forget about these."
|
547 |
+
msgstr "Se il tuo dominio è già verificato, puoi semplicemente ignorarle."
|
548 |
+
|
549 |
+
#: inc/php/tabs/settings.php:38 inc/php/tabs/settings.php:44
|
550 |
+
#: inc/php/tabs/settings.php:50 inc/php/tabs/settings.php:72
|
551 |
+
#: inc/php/tabs/settings.php:96 inc/php/tabs/settings.php:102
|
552 |
+
#: inc/php/tabs/settings.php:108 inc/php/tabs/settings.php:114
|
553 |
+
msgid "Enter your meta key “content” value from your verification code to verify your website."
|
554 |
+
msgstr "Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di verifica."
|
555 |
+
|
556 |
+
#: inc/php/tabs/settings.php:38 inc/php/tabs/settings.php:44
|
557 |
+
#: inc/php/tabs/settings.php:50 inc/php/tabs/settings.php:72
|
558 |
+
#: inc/php/tabs/settings.php:78 inc/php/tabs/settings.php:84
|
559 |
+
#: inc/php/tabs/settings.php:90 inc/php/tabs/settings.php:96
|
560 |
+
#: inc/php/tabs/settings.php:102 inc/php/tabs/settings.php:108
|
561 |
+
#: inc/php/tabs/settings.php:114 inc/php/tabs/settings.php:120
|
562 |
+
msgid "Example:"
|
563 |
+
msgstr "Esempio:"
|
564 |
+
|
565 |
+
#: inc/php/tabs/settings.php:59
|
566 |
msgid "Domain Verification"
|
567 |
msgstr "Verifica dominio"
|
568 |
|
|
|
|
|
|
|
|
|
569 |
#: inc/php/tabs/settings.php:62
|
570 |
+
msgid "Third-party services like Alexa, Pinterest and Google-Plus require you to verify your domain."
|
571 |
+
msgstr "Servizi di terze parti come Alexa, Pinterest e Google+ ti richiedono di verificare il tuo dominio."
|
|
|
|
|
|
|
|
|
572 |
|
573 |
+
#: inc/php/tabs/settings.php:78
|
574 |
+
msgid "Enter an absolute URL to the Google+ profile of the publisher."
|
575 |
+
msgstr "Inserisci un URL assoluto al tuo profilo Google+."
|
576 |
|
577 |
+
#: inc/php/tabs/settings.php:84
|
578 |
+
msgid "Enter an absolute URL to the Facebook profile of the publisher."
|
579 |
+
msgstr "Inserisci un URL assoluto al tuo profilo Facebook."
|
580 |
|
581 |
+
#: inc/php/tabs/settings.php:90
|
582 |
+
msgid "Enter the Twitter username of the publisher."
|
583 |
+
msgstr "Inserisci il tuo nome utente Twitter."
|
584 |
|
585 |
+
#: inc/php/tabs/settings.php:118
|
586 |
+
msgid "Custom meta tags"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
587 |
msgstr "Tag meta personalizzati"
|
588 |
|
589 |
+
#: inc/php/tabs/settings.php:120
|
590 |
+
msgid "If you can't find a field to enter your required meta tag then you can add it here."
|
591 |
+
msgstr "Se non riesci a trovare un campo per inserire il tuo meta tag richiesto allora puoi aggiungerlo qui."
|
592 |
+
|
593 |
+
#: inc/php/tabs/settings.php:120
|
594 |
+
msgid "In this field you can add multiple meta tags."
|
595 |
+
msgstr "In questo campo puoi aggiungere tag meta multipli."
|
596 |
|
597 |
+
#: inc/php/tabs/settings.php:128
|
598 |
+
msgid "Meta tags for Static Home Page only"
|
599 |
msgstr "Tag meta solo per la pagina home statica"
|
600 |
|
601 |
+
#: inc/php/tabs/settings.php:130
|
602 |
msgid "You can use the options below to add meta tags such as Description and Keywords only in Static Home Page of your website."
|
603 |
msgstr "Puoi usare le opzioni qui sotto per aggiungere tag meta quali Description e Keywords solo alla pagina home statica del tuo sito web."
|
604 |
|
605 |
+
#: inc/php/tabs/settings.php:134
|
606 |
msgid "Home Description"
|
607 |
msgstr "Descrizione home"
|
608 |
|
609 |
+
#: inc/php/tabs/settings.php:136 inc/php/tabs/settings.php:157
|
610 |
+
msgid "Enter a short description of your website (150-250 characters)."
|
611 |
+
msgstr "Inserisci una breve descrizione del tuo sito web (150-250 caratteri)."
|
612 |
+
|
613 |
+
#: inc/php/tabs/settings.php:136 inc/php/tabs/settings.php:157
|
614 |
+
msgid "Most search engines use a maximum of 160 chars for the home description."
|
615 |
+
msgstr "La maggior parte dei motori di ricerca usa un massimo di 160 caratteri per la descrizione della home."
|
616 |
|
617 |
+
#: inc/php/tabs/settings.php:139
|
618 |
msgid "Home Keyword(s)"
|
619 |
msgstr "Parole chiave home"
|
620 |
|
621 |
+
#: inc/php/tabs/settings.php:141
|
622 |
msgid "Enter a comma-delimited list of keywords for only Static Home Page of your website."
|
623 |
msgstr "Inserisci una lista delimitata da virgole di parole chiave solo per la pagina home statica del tuo sito web."
|
624 |
|
625 |
+
#: inc/php/tabs/settings.php:149
|
626 |
+
msgid "Meta tags for Default Home Page and Blog Page only"
|
627 |
msgstr "Tag meta solo per pagina home predefinita e pagina blog"
|
628 |
|
629 |
+
#: inc/php/tabs/settings.php:151
|
630 |
msgid "You can use the options below to add meta tags such as Description and Keywords only in Default Home Page and Blog Page of your website."
|
631 |
msgstr "Puoi usare le opzioni qui sotto per aggiungere tag meta quali Description e Keywords solo alla pagina home predefinita e alla pagina blog del tuo sito web."
|
632 |
|
633 |
+
#: inc/php/tabs/settings.php:155
|
634 |
msgid "Blog Description"
|
635 |
msgstr "Descrizione blog"
|
636 |
|
637 |
+
#: inc/php/tabs/settings.php:160
|
638 |
msgid "Blog Keyword(s)"
|
639 |
msgstr "Parole chiave blog"
|
640 |
|
641 |
+
#: inc/php/tabs/settings.php:162
|
642 |
msgid "Enter a comma-delimited list of keywords for only Blog Page of your website."
|
643 |
msgstr "Inserisci una lista delimitata da virgole di parole chiave solo per la pagina blog del tuo sito web."
|
644 |
|
645 |
+
#: inc/php/tabs/settings.php:170
|
646 |
+
msgid "Meta tags for the entire website (Global)"
|
647 |
msgstr "Tag meta per tutto il sito (globale)"
|
648 |
|
649 |
+
#: inc/php/tabs/settings.php:172
|
650 |
msgid "You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere on your website."
|
651 |
msgstr "Puoi usare le opzioni qui sotto per aggiungere tag meta quali Author, Copyright e Keywords ovunque sul tuo sito."
|
652 |
|
653 |
+
#: inc/php/tabs/settings.php:176
|
654 |
msgid "Author"
|
655 |
msgstr "Autore"
|
656 |
|
657 |
+
#: inc/php/tabs/settings.php:181
|
658 |
msgid "Designer"
|
659 |
msgstr "Designer"
|
660 |
|
661 |
+
#: inc/php/tabs/settings.php:186
|
662 |
msgid "Contact"
|
663 |
msgstr "Contatti"
|
664 |
|
665 |
+
#: inc/php/tabs/settings.php:191
|
666 |
msgid "Copyright"
|
667 |
msgstr "Copyright"
|
668 |
|
669 |
+
#: inc/php/tabs/settings.php:196
|
670 |
msgid "Keyword(s)"
|
671 |
msgstr "Parole chiave"
|
672 |
|
673 |
+
#: inc/php/tabs/settings.php:198
|
674 |
msgid "Enter a comma-delimited list of global keywords for your website."
|
675 |
msgstr "Inserisci una lista delimitata da virgole di parole chiave globali per il tuo sito web."
|
676 |
|
677 |
+
#: inc/php/tabs/settings.php:208
|
678 |
+
msgid "Preview"
|
679 |
+
msgstr ""
|
680 |
+
|
681 |
+
#: inc/php/tabs/settings.php:210
|
682 |
+
msgid "Click the \"Save changes\" button to update this preview."
|
683 |
+
msgstr ""
|
684 |
+
|
685 |
+
#: inc/php/tabs/settings.php:211
|
686 |
+
msgid "These are meta tags that will be printed on all pages (globally) of your website."
|
687 |
+
msgstr ""
|
688 |
+
|
689 |
+
#: inc/php/tabs/settings.php:215
|
690 |
+
msgid "Note!"
|
691 |
+
msgstr ""
|
692 |
+
|
693 |
+
#: inc/php/tabs/settings.php:216
|
694 |
+
msgid "This preview does not show meta tags that will be printed only on certain pages of your website."
|
695 |
+
msgstr ""
|
696 |
+
|
697 |
+
#: inc/php/tabs/settings.php:222
|
698 |
msgid "WooCommerce & Google Shopping"
|
699 |
msgstr "WooCommerce & Google Shopping"
|
700 |
|
701 |
+
#: inc/php/tabs/settings.php:225
|
702 |
+
msgid "This plugin automatically adds the necessary Google Shopping (Merchant Center) structured data on all WooCommerce product pages on your website."
|
703 |
+
msgstr "Questo plugin aggiunge automaticamente i dati strutturati necessari a Google Shopping (Merchant Center) su tutte le pagine prodotto WooCommerce del tuo sito web."
|
704 |
+
|
705 |
+
#: inc/php/tabs/settings.php:226
|
706 |
+
msgid "Here is the markup for women's T-shirt that sells for 16 dollars and 80 cents of US."
|
707 |
+
msgstr "Ecco il codice per una maglietta da donna al prezzo di 16 dollari e 80 centesimi."
|
708 |
|
709 |
+
#: inc/php/tabs/settings.php:245
|
710 |
+
#, fuzzy, php-format
|
711 |
+
#| msgid "Check these data generated on the pages of your website you can <a href=\"https://search.google.com/structured-data/testing-tool\" target=\"_blank\">here</a>."
|
712 |
+
msgid "Check these data generated on the pages of your website you can %s here %s ."
|
713 |
msgstr "Puoi controllare <a href=\"https://search.google.com/structured-data/testing-tool\" target=\"_blank\">qui</a> tali dati generati sulle pagine del tuo sito web."
|
714 |
|
715 |
#: inc/php/tabs/support.php:13
|
languages/all-meta-tags-nl_NL.mo
CHANGED
Binary file
|
languages/all-meta-tags-nl_NL.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: All Meta Tags\n"
|
6 |
-
"POT-Creation-Date: 2019-03-
|
7 |
-
"PO-Revision-Date: 2019-03-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Dutch\n"
|
10 |
"Language: nl_NL\n"
|
@@ -70,7 +70,7 @@ msgstr "Gebruik"
|
|
70 |
msgid "F.A.Q."
|
71 |
msgstr "F.A.Q."
|
72 |
|
73 |
-
#: inc/php/page.php:49 inc/php/sidebar.php:39 inc/php/tabs/settings.php:
|
74 |
msgid "Support"
|
75 |
msgstr "Ondersteuning"
|
76 |
|
@@ -98,16 +98,16 @@ msgstr "Helpen"
|
|
98 |
msgid "If you have a question, please read the information in the FAQ section."
|
99 |
msgstr "Als je een vraag hebt, lees dan de informatie in de FAQ-sectie."
|
100 |
|
101 |
-
#: inc/php/sidebar.php:41 inc/php/tabs/settings.php:
|
102 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: inc/php/sidebar.php:46 inc/php/tabs/settings.php:
|
106 |
#: inc/php/tabs/support.php:21
|
107 |
msgid "Donate with PayPal"
|
108 |
msgstr "Doneer via PayPal"
|
109 |
|
110 |
-
#: inc/php/sidebar.php:48 inc/php/tabs/settings.php:
|
111 |
msgid "Thanks for your support!"
|
112 |
msgstr "Bedankt voor uw steun!"
|
113 |
|
@@ -215,7 +215,7 @@ msgstr ""
|
|
215 |
|
216 |
#: inc/php/tabs/faq.php:101
|
217 |
msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
|
218 |
-
msgstr "Misschien zijn niet alle bestaande vertalingen up-to-date of correct. Je bent van harte welkom om correcties bij te dragen
|
219 |
|
220 |
#: inc/php/tabs/faq.php:102
|
221 |
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
@@ -522,7 +522,7 @@ msgstr "Je kunt je vraag op %s deze pagina %s stellen."
|
|
522 |
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
523 |
msgstr "Maar houd er rekening mee dat deze plug-in gratis is en er geen speciaal ondersteuningsteam is, dus we kunnen niet iedereen antwoorden."
|
524 |
|
525 |
-
#: inc/php/tabs/settings.php:21 inc/php/tabs/settings.php:
|
526 |
msgid "Save changes"
|
527 |
msgstr "Wijzigingen opslaan"
|
528 |
|
@@ -530,156 +530,185 @@ msgstr "Wijzigingen opslaan"
|
|
530 |
msgid "Web Master Tools"
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: inc/php/tabs/settings.php:
|
534 |
-
msgid "Webmaster Tools require you to verify your domain.
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: inc/php/tabs/settings.php:
|
538 |
-
msgid "
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: inc/php/tabs/settings.php:
|
542 |
-
msgid "
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: inc/php/tabs/settings.php:
|
546 |
-
msgid "
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: inc/php/tabs/settings.php:
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
msgid "Third-party services like Alexa, Pinterest and Google-Plus require you to verify your domain. This makes sure that you are the correct owner of your blog or store before they provide their services to you. You can use the options below to verify your domain. If your domain is already verified, you can just forget about these."
|
555 |
-
msgstr ""
|
556 |
-
|
557 |
-
#: inc/php/tabs/settings.php:62
|
558 |
-
msgid "Enter your meta key “content” value from your verification code to verify your website. <br>Example: <meta name=\"p:domain_verify\" content=“<b>1234567890</b>” />"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: inc/php/tabs/settings.php:
|
562 |
-
|
|
|
|
|
|
|
|
|
|
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: inc/php/tabs/settings.php:
|
566 |
-
msgid "
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: inc/php/tabs/settings.php:
|
570 |
-
msgid "
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: inc/php/tabs/settings.php:
|
574 |
-
msgid "Enter
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: inc/php/tabs/settings.php:
|
578 |
-
msgid "Enter
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: inc/php/tabs/settings.php:
|
582 |
-
msgid "Enter
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: inc/php/tabs/settings.php:
|
586 |
-
msgid "
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: inc/php/tabs/settings.php:
|
590 |
-
msgid "
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: inc/php/tabs/settings.php:
|
594 |
-
msgid "
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: inc/php/tabs/settings.php:
|
598 |
-
msgid "Meta
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: inc/php/tabs/settings.php:
|
602 |
msgid "You can use the options below to add meta tags such as Description and Keywords only in Static Home Page of your website."
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: inc/php/tabs/settings.php:
|
606 |
msgid "Home Description"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: inc/php/tabs/settings.php:
|
610 |
-
msgid "Enter a short description of your website (150-250 characters).
|
|
|
|
|
|
|
|
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: inc/php/tabs/settings.php:
|
614 |
msgid "Home Keyword(s)"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: inc/php/tabs/settings.php:
|
618 |
msgid "Enter a comma-delimited list of keywords for only Static Home Page of your website."
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: inc/php/tabs/settings.php:
|
622 |
-
msgid "Meta
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: inc/php/tabs/settings.php:
|
626 |
msgid "You can use the options below to add meta tags such as Description and Keywords only in Default Home Page and Blog Page of your website."
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: inc/php/tabs/settings.php:
|
630 |
msgid "Blog Description"
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: inc/php/tabs/settings.php:
|
634 |
msgid "Blog Keyword(s)"
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: inc/php/tabs/settings.php:
|
638 |
msgid "Enter a comma-delimited list of keywords for only Blog Page of your website."
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: inc/php/tabs/settings.php:
|
642 |
-
msgid "Meta
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: inc/php/tabs/settings.php:
|
646 |
msgid "You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere on your website."
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: inc/php/tabs/settings.php:
|
650 |
msgid "Author"
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: inc/php/tabs/settings.php:
|
654 |
msgid "Designer"
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: inc/php/tabs/settings.php:
|
658 |
msgid "Contact"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: inc/php/tabs/settings.php:
|
662 |
msgid "Copyright"
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: inc/php/tabs/settings.php:
|
666 |
msgid "Keyword(s)"
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: inc/php/tabs/settings.php:
|
670 |
msgid "Enter a comma-delimited list of global keywords for your website."
|
671 |
msgstr ""
|
672 |
|
673 |
-
#: inc/php/tabs/settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
674 |
msgid "WooCommerce & Google Shopping"
|
675 |
msgstr ""
|
676 |
|
677 |
-
#: inc/php/tabs/settings.php:
|
678 |
-
msgid "This plugin automatically adds the necessary Google Shopping (Merchant Center) structured data on all WooCommerce product pages on your website.
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: inc/php/tabs/settings.php:
|
682 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
683 |
msgstr ""
|
684 |
|
685 |
#: inc/php/tabs/support.php:13
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: All Meta Tags\n"
|
6 |
+
"POT-Creation-Date: 2019-03-06 15:59+0300\n"
|
7 |
+
"PO-Revision-Date: 2019-03-06 15:59+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Dutch\n"
|
10 |
"Language: nl_NL\n"
|
70 |
msgid "F.A.Q."
|
71 |
msgstr "F.A.Q."
|
72 |
|
73 |
+
#: inc/php/page.php:49 inc/php/sidebar.php:39 inc/php/tabs/settings.php:255
|
74 |
msgid "Support"
|
75 |
msgstr "Ondersteuning"
|
76 |
|
98 |
msgid "If you have a question, please read the information in the FAQ section."
|
99 |
msgstr "Als je een vraag hebt, lees dan de informatie in de FAQ-sectie."
|
100 |
|
101 |
+
#: inc/php/sidebar.php:41 inc/php/tabs/settings.php:257
|
102 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: inc/php/sidebar.php:46 inc/php/tabs/settings.php:262
|
106 |
#: inc/php/tabs/support.php:21
|
107 |
msgid "Donate with PayPal"
|
108 |
msgstr "Doneer via PayPal"
|
109 |
|
110 |
+
#: inc/php/sidebar.php:48 inc/php/tabs/settings.php:264
|
111 |
msgid "Thanks for your support!"
|
112 |
msgstr "Bedankt voor uw steun!"
|
113 |
|
215 |
|
216 |
#: inc/php/tabs/faq.php:101
|
217 |
msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
|
218 |
+
msgstr "Misschien zijn niet alle bestaande vertalingen up-to-date of correct. Je bent van harte welkom om correcties bij te dragen."
|
219 |
|
220 |
#: inc/php/tabs/faq.php:102
|
221 |
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
522 |
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
523 |
msgstr "Maar houd er rekening mee dat deze plug-in gratis is en er geen speciaal ondersteuningsteam is, dus we kunnen niet iedereen antwoorden."
|
524 |
|
525 |
+
#: inc/php/tabs/settings.php:21 inc/php/tabs/settings.php:205
|
526 |
msgid "Save changes"
|
527 |
msgstr "Wijzigingen opslaan"
|
528 |
|
530 |
msgid "Web Master Tools"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: inc/php/tabs/settings.php:28
|
534 |
+
msgid "Webmaster Tools require you to verify your domain."
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: inc/php/tabs/settings.php:29 inc/php/tabs/settings.php:63
|
538 |
+
msgid "This makes sure that you are the correct owner of your blog or store before they provide their services to you."
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: inc/php/tabs/settings.php:30 inc/php/tabs/settings.php:64
|
542 |
+
msgid "You can use the options below to verify your domain."
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: inc/php/tabs/settings.php:31 inc/php/tabs/settings.php:65
|
546 |
+
msgid "If your domain is already verified, you can just forget about these."
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: inc/php/tabs/settings.php:38 inc/php/tabs/settings.php:44
|
550 |
+
#: inc/php/tabs/settings.php:50 inc/php/tabs/settings.php:72
|
551 |
+
#: inc/php/tabs/settings.php:96 inc/php/tabs/settings.php:102
|
552 |
+
#: inc/php/tabs/settings.php:108 inc/php/tabs/settings.php:114
|
553 |
+
msgid "Enter your meta key “content” value from your verification code to verify your website."
|
|
|
|
|
|
|
|
|
|
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: inc/php/tabs/settings.php:38 inc/php/tabs/settings.php:44
|
557 |
+
#: inc/php/tabs/settings.php:50 inc/php/tabs/settings.php:72
|
558 |
+
#: inc/php/tabs/settings.php:78 inc/php/tabs/settings.php:84
|
559 |
+
#: inc/php/tabs/settings.php:90 inc/php/tabs/settings.php:96
|
560 |
+
#: inc/php/tabs/settings.php:102 inc/php/tabs/settings.php:108
|
561 |
+
#: inc/php/tabs/settings.php:114 inc/php/tabs/settings.php:120
|
562 |
+
msgid "Example:"
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: inc/php/tabs/settings.php:59
|
566 |
+
msgid "Domain Verification"
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: inc/php/tabs/settings.php:62
|
570 |
+
msgid "Third-party services like Alexa, Pinterest and Google-Plus require you to verify your domain."
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: inc/php/tabs/settings.php:78
|
574 |
+
msgid "Enter an absolute URL to the Google+ profile of the publisher."
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: inc/php/tabs/settings.php:84
|
578 |
+
msgid "Enter an absolute URL to the Facebook profile of the publisher."
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: inc/php/tabs/settings.php:90
|
582 |
+
msgid "Enter the Twitter username of the publisher."
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: inc/php/tabs/settings.php:118
|
586 |
+
msgid "Custom meta tags"
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: inc/php/tabs/settings.php:120
|
590 |
+
msgid "If you can't find a field to enter your required meta tag then you can add it here."
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: inc/php/tabs/settings.php:120
|
594 |
+
msgid "In this field you can add multiple meta tags."
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: inc/php/tabs/settings.php:128
|
598 |
+
msgid "Meta tags for Static Home Page only"
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: inc/php/tabs/settings.php:130
|
602 |
msgid "You can use the options below to add meta tags such as Description and Keywords only in Static Home Page of your website."
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: inc/php/tabs/settings.php:134
|
606 |
msgid "Home Description"
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: inc/php/tabs/settings.php:136 inc/php/tabs/settings.php:157
|
610 |
+
msgid "Enter a short description of your website (150-250 characters)."
|
611 |
+
msgstr ""
|
612 |
+
|
613 |
+
#: inc/php/tabs/settings.php:136 inc/php/tabs/settings.php:157
|
614 |
+
msgid "Most search engines use a maximum of 160 chars for the home description."
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: inc/php/tabs/settings.php:139
|
618 |
msgid "Home Keyword(s)"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: inc/php/tabs/settings.php:141
|
622 |
msgid "Enter a comma-delimited list of keywords for only Static Home Page of your website."
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: inc/php/tabs/settings.php:149
|
626 |
+
msgid "Meta tags for Default Home Page and Blog Page only"
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: inc/php/tabs/settings.php:151
|
630 |
msgid "You can use the options below to add meta tags such as Description and Keywords only in Default Home Page and Blog Page of your website."
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: inc/php/tabs/settings.php:155
|
634 |
msgid "Blog Description"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: inc/php/tabs/settings.php:160
|
638 |
msgid "Blog Keyword(s)"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: inc/php/tabs/settings.php:162
|
642 |
msgid "Enter a comma-delimited list of keywords for only Blog Page of your website."
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: inc/php/tabs/settings.php:170
|
646 |
+
msgid "Meta tags for the entire website (Global)"
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: inc/php/tabs/settings.php:172
|
650 |
msgid "You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere on your website."
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: inc/php/tabs/settings.php:176
|
654 |
msgid "Author"
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: inc/php/tabs/settings.php:181
|
658 |
msgid "Designer"
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: inc/php/tabs/settings.php:186
|
662 |
msgid "Contact"
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: inc/php/tabs/settings.php:191
|
666 |
msgid "Copyright"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: inc/php/tabs/settings.php:196
|
670 |
msgid "Keyword(s)"
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: inc/php/tabs/settings.php:198
|
674 |
msgid "Enter a comma-delimited list of global keywords for your website."
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: inc/php/tabs/settings.php:208
|
678 |
+
msgid "Preview"
|
679 |
+
msgstr ""
|
680 |
+
|
681 |
+
#: inc/php/tabs/settings.php:210
|
682 |
+
msgid "Click the \"Save changes\" button to update this preview."
|
683 |
+
msgstr ""
|
684 |
+
|
685 |
+
#: inc/php/tabs/settings.php:211
|
686 |
+
msgid "These are meta tags that will be printed on all pages (globally) of your website."
|
687 |
+
msgstr ""
|
688 |
+
|
689 |
+
#: inc/php/tabs/settings.php:215
|
690 |
+
msgid "Note!"
|
691 |
+
msgstr ""
|
692 |
+
|
693 |
+
#: inc/php/tabs/settings.php:216
|
694 |
+
msgid "This preview does not show meta tags that will be printed only on certain pages of your website."
|
695 |
+
msgstr ""
|
696 |
+
|
697 |
+
#: inc/php/tabs/settings.php:222
|
698 |
msgid "WooCommerce & Google Shopping"
|
699 |
msgstr ""
|
700 |
|
701 |
+
#: inc/php/tabs/settings.php:225
|
702 |
+
msgid "This plugin automatically adds the necessary Google Shopping (Merchant Center) structured data on all WooCommerce product pages on your website."
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: inc/php/tabs/settings.php:226
|
706 |
+
msgid "Here is the markup for women's T-shirt that sells for 16 dollars and 80 cents of US."
|
707 |
+
msgstr ""
|
708 |
+
|
709 |
+
#: inc/php/tabs/settings.php:245
|
710 |
+
#, php-format
|
711 |
+
msgid "Check these data generated on the pages of your website you can %s here %s ."
|
712 |
msgstr ""
|
713 |
|
714 |
#: inc/php/tabs/support.php:13
|
languages/all-meta-tags-ru_RU.mo
CHANGED
Binary file
|
languages/all-meta-tags-ru_RU.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: All Meta Tags\n"
|
6 |
-
"POT-Creation-Date: 2019-03-
|
7 |
-
"PO-Revision-Date: 2019-03-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Russian\n"
|
10 |
"Language: ru_RU\n"
|
@@ -70,7 +70,7 @@ msgstr "Применение"
|
|
70 |
msgid "F.A.Q."
|
71 |
msgstr "F.A.Q."
|
72 |
|
73 |
-
#: inc/php/page.php:49 inc/php/sidebar.php:39 inc/php/tabs/settings.php:
|
74 |
msgid "Support"
|
75 |
msgstr "Поддержка"
|
76 |
|
@@ -98,16 +98,16 @@ msgstr "Помощь"
|
|
98 |
msgid "If you have a question, please read the information in the FAQ section."
|
99 |
msgstr "Если у вас есть вопрос, пожалуйста ознакомьтесь с информацией в разделе FAQ."
|
100 |
|
101 |
-
#: inc/php/sidebar.php:41 inc/php/tabs/settings.php:
|
102 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
103 |
msgstr "Каждый небольшой вклад помогает покрыть наши расходы и позволяет нам тратить больше времени на создание вещей, которыми могут наслаждаться удивительные люди, такие как вы."
|
104 |
|
105 |
-
#: inc/php/sidebar.php:46 inc/php/tabs/settings.php:
|
106 |
#: inc/php/tabs/support.php:21
|
107 |
msgid "Donate with PayPal"
|
108 |
msgstr "Пожертвовать через PayPal"
|
109 |
|
110 |
-
#: inc/php/sidebar.php:48 inc/php/tabs/settings.php:
|
111 |
msgid "Thanks for your support!"
|
112 |
msgstr "Спасибо за вашу поддержку!"
|
113 |
|
@@ -373,7 +373,7 @@ msgstr "Что я делаю не так?"
|
|
373 |
|
374 |
#: inc/php/tabs/faq.php:208
|
375 |
msgid "The tag code which Google (or Bing, Yandex, Pinterest, Alexa, Norton, WOT, SpecificFeeds) gives you is confusing as you only have to paste in the serial key number/letters (<code>1234567890</code>) and not the whole tag (<code><meta name=\"google-site-verification\" content=“1234567890” /></code>)."
|
376 |
-
msgstr "Код тега, который даёт
|
377 |
|
378 |
#: inc/php/tabs/faq.php:209
|
379 |
msgid "So just paste that into the relevant field and you will see “Success” message appear within a few seconds."
|
@@ -522,7 +522,7 @@ msgstr "Вы можете задать ваш вопрос на %s этой ст
|
|
522 |
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
523 |
msgstr "Но имейте в виду, что этот плагин является бесплатным и без специальной поддержки, поэтому у нас нет возможности ответить на все вопросы."
|
524 |
|
525 |
-
#: inc/php/tabs/settings.php:21 inc/php/tabs/settings.php:
|
526 |
msgid "Save changes"
|
527 |
msgstr "Сохранить изменения"
|
528 |
|
@@ -530,156 +530,186 @@ msgstr "Сохранить изменения"
|
|
530 |
msgid "Web Master Tools"
|
531 |
msgstr "Веб-мастер инструменты"
|
532 |
|
533 |
-
#: inc/php/tabs/settings.php:
|
534 |
-
msgid "Webmaster Tools require you to verify your domain.
|
535 |
-
msgstr "Webmaster Tools требует подтверждения вашего домена.
|
536 |
-
|
537 |
-
#: inc/php/tabs/settings.php:
|
538 |
-
msgid "
|
539 |
-
msgstr "
|
540 |
-
|
541 |
-
#: inc/php/tabs/settings.php:
|
542 |
-
msgid "
|
543 |
-
msgstr "
|
544 |
-
|
545 |
-
#: inc/php/tabs/settings.php:
|
546 |
-
msgid "
|
547 |
-
msgstr "
|
548 |
-
|
549 |
-
#: inc/php/tabs/settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
550 |
msgid "Domain Verification"
|
551 |
msgstr "Подтверждение домена"
|
552 |
|
553 |
-
#: inc/php/tabs/settings.php:56
|
554 |
-
msgid "Third-party services like Alexa, Pinterest and Google-Plus require you to verify your domain. This makes sure that you are the correct owner of your blog or store before they provide their services to you. You can use the options below to verify your domain. If your domain is already verified, you can just forget about these."
|
555 |
-
msgstr "Сторонние службы, такие как Alexa, Pinterest и Google-Plus, требуют подтверждения вашего домена. Это гарантирует, что вы являетесь правильным владельцем своего блога или магазина, прежде чем предоставлять свои услуги вам. Вы можете использовать следующие параметры, чтобы подтвердить свой домен. Если ваш домен уже проверен, вы можете просто забыть об этом."
|
556 |
-
|
557 |
#: inc/php/tabs/settings.php:62
|
558 |
-
msgid "
|
559 |
-
msgstr "
|
560 |
-
|
561 |
-
#: inc/php/tabs/settings.php:68
|
562 |
-
msgid "Enter an absolute URL to the Google+ profile of the publisher. <br>Example: https://plus.google.com/+Username/"
|
563 |
-
msgstr "Введите полный URL к профилю в Google+. <br>Пример: https://plus.google.com/+User/"
|
564 |
|
565 |
-
#: inc/php/tabs/settings.php:
|
566 |
-
msgid "Enter an absolute URL to the
|
567 |
-
msgstr "Введите полный URL
|
568 |
|
569 |
-
#: inc/php/tabs/settings.php:
|
570 |
-
msgid "Enter the
|
571 |
-
msgstr "Введите
|
572 |
|
573 |
-
#: inc/php/tabs/settings.php:
|
574 |
-
msgid "Enter
|
575 |
-
msgstr "Введите
|
576 |
|
577 |
-
#: inc/php/tabs/settings.php:
|
578 |
-
msgid "
|
579 |
-
msgstr "Введите содержимое ключа “content” из верификационного meta кода для проверки вашего веб-сайта. <br>Пример: <meta name=\"norton-safeweb-site-verification\" content=“<b>1234567890</b>” />"
|
580 |
-
|
581 |
-
#: inc/php/tabs/settings.php:98
|
582 |
-
msgid "Enter your meta key “content” value from your verification code to verify your website. <br>Example: <meta name=\"wot-verification\" content=“<b>1234567890</b>” />"
|
583 |
-
msgstr "Введите содержимое ключа “content” из верификационного meta кода для проверки вашего веб-сайта. <br>Пример: <meta name=\"wot-verification\" content=“<b>1234567890</b>” />"
|
584 |
-
|
585 |
-
#: inc/php/tabs/settings.php:104
|
586 |
-
msgid "Enter your meta key “content” value from your verification code to verify your website. <br>Example: <meta name=\"specificfeeds-verification-code\" content=“<b>1234567890</b>” />"
|
587 |
-
msgstr "Введите содержимое ключа “content” из верификационного meta кода для проверки вашего веб-сайта. <br>Пример: <meta name=\"specificfeeds-verification-code\" content=“<b>1234567890</b>” />"
|
588 |
-
|
589 |
-
#: inc/php/tabs/settings.php:108
|
590 |
-
msgid "Custom Meta Tags"
|
591 |
msgstr "Пользовательские мета-теги"
|
592 |
|
593 |
-
#: inc/php/tabs/settings.php:
|
594 |
-
msgid "If you can't find a field to enter your required meta tag then you can add it here.
|
595 |
-
msgstr "Если вы не можете найти поле для нужного вам мета-тега, то добавьте ваш мета-тег сюда.
|
|
|
|
|
|
|
|
|
596 |
|
597 |
-
#: inc/php/tabs/settings.php:
|
598 |
-
msgid "Meta
|
599 |
msgstr "Мета-теги только для Static Home Page"
|
600 |
|
601 |
-
#: inc/php/tabs/settings.php:
|
602 |
msgid "You can use the options below to add meta tags such as Description and Keywords only in Static Home Page of your website."
|
603 |
msgstr "Вы можете использовать ниже-расположенные опции для добавления мета тегов таких как Description и Keywords только на Static Home Page страницу вашего веб-сайта."
|
604 |
|
605 |
-
#: inc/php/tabs/settings.php:
|
606 |
msgid "Home Description"
|
607 |
msgstr "Описание главной страницы"
|
608 |
|
609 |
-
#: inc/php/tabs/settings.php:
|
610 |
-
msgid "Enter a short description of your website (150-250 characters).
|
611 |
-
msgstr "Введите краткое описание для вашего веб-сайта (150-250 символов).
|
|
|
|
|
|
|
|
|
612 |
|
613 |
-
#: inc/php/tabs/settings.php:
|
614 |
msgid "Home Keyword(s)"
|
615 |
msgstr "Ключевые слова главной страницы"
|
616 |
|
617 |
-
#: inc/php/tabs/settings.php:
|
618 |
msgid "Enter a comma-delimited list of keywords for only Static Home Page of your website."
|
619 |
msgstr "Введите, разделенный запятыми, список ключевых слов для только Static Home Page вашего веб-сайта."
|
620 |
|
621 |
-
#: inc/php/tabs/settings.php:
|
622 |
-
msgid "Meta
|
623 |
msgstr "Мета-теги для Default Home Page и только Blog Page"
|
624 |
|
625 |
-
#: inc/php/tabs/settings.php:
|
626 |
msgid "You can use the options below to add meta tags such as Description and Keywords only in Default Home Page and Blog Page of your website."
|
627 |
msgstr "Вы можете использовать ниже-расположенные опции для добавления мета тегов таких как Description и Keywords только на Default Home Page и Blog Page страницы вашего веб-сайта."
|
628 |
|
629 |
-
#: inc/php/tabs/settings.php:
|
630 |
msgid "Blog Description"
|
631 |
msgstr "Описание блога"
|
632 |
|
633 |
-
#: inc/php/tabs/settings.php:
|
634 |
msgid "Blog Keyword(s)"
|
635 |
msgstr "Ключевые слова блога"
|
636 |
|
637 |
-
#: inc/php/tabs/settings.php:
|
638 |
msgid "Enter a comma-delimited list of keywords for only Blog Page of your website."
|
639 |
msgstr "Введите, разделенный запятыми, список ключевых слов для только Blog Page вашего веб-сайта."
|
640 |
|
641 |
-
#: inc/php/tabs/settings.php:
|
642 |
-
msgid "Meta
|
643 |
msgstr "Мета-теги для всего веб-сайта (Глобальные)"
|
644 |
|
645 |
-
#: inc/php/tabs/settings.php:
|
646 |
msgid "You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere on your website."
|
647 |
msgstr "Вы можете использовать ниже-расположенные опции для добавления мета тегов таких как Author, Copyright и Keywords на каждую страницу вашего веб-сайта."
|
648 |
|
649 |
-
#: inc/php/tabs/settings.php:
|
650 |
msgid "Author"
|
651 |
msgstr "Автор"
|
652 |
|
653 |
-
#: inc/php/tabs/settings.php:
|
654 |
msgid "Designer"
|
655 |
msgstr "Дизайнер"
|
656 |
|
657 |
-
#: inc/php/tabs/settings.php:
|
658 |
msgid "Contact"
|
659 |
msgstr "Контакты"
|
660 |
|
661 |
-
#: inc/php/tabs/settings.php:
|
662 |
msgid "Copyright"
|
663 |
msgstr "Copyright"
|
664 |
|
665 |
-
#: inc/php/tabs/settings.php:
|
666 |
msgid "Keyword(s)"
|
667 |
msgstr "Ключевые слова"
|
668 |
|
669 |
-
#: inc/php/tabs/settings.php:
|
670 |
msgid "Enter a comma-delimited list of global keywords for your website."
|
671 |
msgstr "Введите, разделенный запятыми, список глобальных ключевых слов для вашего веб-сайта."
|
672 |
|
673 |
-
#: inc/php/tabs/settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
674 |
msgid "WooCommerce & Google Shopping"
|
675 |
msgstr "WooCommerce и Google Shopping"
|
676 |
|
677 |
-
#: inc/php/tabs/settings.php:
|
678 |
-
msgid "This plugin automatically adds the necessary Google Shopping (Merchant Center) structured data on all WooCommerce product pages on your website.
|
679 |
-
msgstr "Этот плагин автоматически добавляет необходимые Google Shopping (Merchant Center) мета теги на все страницы WooCommerce продуктов.
|
|
|
|
|
|
|
|
|
680 |
|
681 |
-
#: inc/php/tabs/settings.php:
|
682 |
-
|
|
|
|
|
683 |
msgstr "Проверить эти данные сгенерированные на страницах вашего веб-сайта вы можете <a href=\"https://search.google.com/structured-data/testing-tool\" target=\"_blank\">здесь</a>."
|
684 |
|
685 |
#: inc/php/tabs/support.php:13
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: All Meta Tags\n"
|
6 |
+
"POT-Creation-Date: 2019-03-06 15:59+0300\n"
|
7 |
+
"PO-Revision-Date: 2019-03-06 15:59+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Russian\n"
|
10 |
"Language: ru_RU\n"
|
70 |
msgid "F.A.Q."
|
71 |
msgstr "F.A.Q."
|
72 |
|
73 |
+
#: inc/php/page.php:49 inc/php/sidebar.php:39 inc/php/tabs/settings.php:255
|
74 |
msgid "Support"
|
75 |
msgstr "Поддержка"
|
76 |
|
98 |
msgid "If you have a question, please read the information in the FAQ section."
|
99 |
msgstr "Если у вас есть вопрос, пожалуйста ознакомьтесь с информацией в разделе FAQ."
|
100 |
|
101 |
+
#: inc/php/sidebar.php:41 inc/php/tabs/settings.php:257
|
102 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
103 |
msgstr "Каждый небольшой вклад помогает покрыть наши расходы и позволяет нам тратить больше времени на создание вещей, которыми могут наслаждаться удивительные люди, такие как вы."
|
104 |
|
105 |
+
#: inc/php/sidebar.php:46 inc/php/tabs/settings.php:262
|
106 |
#: inc/php/tabs/support.php:21
|
107 |
msgid "Donate with PayPal"
|
108 |
msgstr "Пожертвовать через PayPal"
|
109 |
|
110 |
+
#: inc/php/sidebar.php:48 inc/php/tabs/settings.php:264
|
111 |
msgid "Thanks for your support!"
|
112 |
msgstr "Спасибо за вашу поддержку!"
|
113 |
|
373 |
|
374 |
#: inc/php/tabs/faq.php:208
|
375 |
msgid "The tag code which Google (or Bing, Yandex, Pinterest, Alexa, Norton, WOT, SpecificFeeds) gives you is confusing as you only have to paste in the serial key number/letters (<code>1234567890</code>) and not the whole tag (<code><meta name=\"google-site-verification\" content=“1234567890” /></code>)."
|
376 |
+
msgstr "Код тега, который даёт вам Google (или Bing, Yandex, Pinterest, Alexa, Norton, WOT, SpecificFeeds) может запутать, поскольку вам нужно вставить только серийный ключ - число/буквы (<code>1234567890</code>) а не весь тэг (<code><meta name=\"google-site-verification\" content=“1234567890” /></code>)."
|
377 |
|
378 |
#: inc/php/tabs/faq.php:209
|
379 |
msgid "So just paste that into the relevant field and you will see “Success” message appear within a few seconds."
|
522 |
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
523 |
msgstr "Но имейте в виду, что этот плагин является бесплатным и без специальной поддержки, поэтому у нас нет возможности ответить на все вопросы."
|
524 |
|
525 |
+
#: inc/php/tabs/settings.php:21 inc/php/tabs/settings.php:205
|
526 |
msgid "Save changes"
|
527 |
msgstr "Сохранить изменения"
|
528 |
|
530 |
msgid "Web Master Tools"
|
531 |
msgstr "Веб-мастер инструменты"
|
532 |
|
533 |
+
#: inc/php/tabs/settings.php:28
|
534 |
+
msgid "Webmaster Tools require you to verify your domain."
|
535 |
+
msgstr "Webmaster Tools требует подтверждения вашего домена."
|
536 |
+
|
537 |
+
#: inc/php/tabs/settings.php:29 inc/php/tabs/settings.php:63
|
538 |
+
msgid "This makes sure that you are the correct owner of your blog or store before they provide their services to you."
|
539 |
+
msgstr "Это подтвердит то, что вы действительно являетесь владельцем своего блога или магазина, прежде чем они смогут предоставить вам свои услуги."
|
540 |
+
|
541 |
+
#: inc/php/tabs/settings.php:30 inc/php/tabs/settings.php:64
|
542 |
+
msgid "You can use the options below to verify your domain."
|
543 |
+
msgstr "Вы можете использовать следующие параметры, чтобы подтвердить свой домен."
|
544 |
+
|
545 |
+
#: inc/php/tabs/settings.php:31 inc/php/tabs/settings.php:65
|
546 |
+
msgid "If your domain is already verified, you can just forget about these."
|
547 |
+
msgstr "Если ваш домен уже проверен, вы можете просто забыть об этих полях."
|
548 |
+
|
549 |
+
#: inc/php/tabs/settings.php:38 inc/php/tabs/settings.php:44
|
550 |
+
#: inc/php/tabs/settings.php:50 inc/php/tabs/settings.php:72
|
551 |
+
#: inc/php/tabs/settings.php:96 inc/php/tabs/settings.php:102
|
552 |
+
#: inc/php/tabs/settings.php:108 inc/php/tabs/settings.php:114
|
553 |
+
msgid "Enter your meta key “content” value from your verification code to verify your website."
|
554 |
+
msgstr "Введите содержимое ключа “content” из верификационного meta кода для проверки вашего веб-сайта."
|
555 |
+
|
556 |
+
#: inc/php/tabs/settings.php:38 inc/php/tabs/settings.php:44
|
557 |
+
#: inc/php/tabs/settings.php:50 inc/php/tabs/settings.php:72
|
558 |
+
#: inc/php/tabs/settings.php:78 inc/php/tabs/settings.php:84
|
559 |
+
#: inc/php/tabs/settings.php:90 inc/php/tabs/settings.php:96
|
560 |
+
#: inc/php/tabs/settings.php:102 inc/php/tabs/settings.php:108
|
561 |
+
#: inc/php/tabs/settings.php:114 inc/php/tabs/settings.php:120
|
562 |
+
msgid "Example:"
|
563 |
+
msgstr "Пример:"
|
564 |
+
|
565 |
+
#: inc/php/tabs/settings.php:59
|
566 |
msgid "Domain Verification"
|
567 |
msgstr "Подтверждение домена"
|
568 |
|
|
|
|
|
|
|
|
|
569 |
#: inc/php/tabs/settings.php:62
|
570 |
+
msgid "Third-party services like Alexa, Pinterest and Google-Plus require you to verify your domain."
|
571 |
+
msgstr "Сторонние службы, такие как Alexa, Pinterest и Google-Plus, требуют подтверждения вашего домена."
|
|
|
|
|
|
|
|
|
572 |
|
573 |
+
#: inc/php/tabs/settings.php:78
|
574 |
+
msgid "Enter an absolute URL to the Google+ profile of the publisher."
|
575 |
+
msgstr "Введите полный URL к профилю в Google+."
|
576 |
|
577 |
+
#: inc/php/tabs/settings.php:84
|
578 |
+
msgid "Enter an absolute URL to the Facebook profile of the publisher."
|
579 |
+
msgstr "Введите полный URL-адрес профиля пользователя в Facebook."
|
580 |
|
581 |
+
#: inc/php/tabs/settings.php:90
|
582 |
+
msgid "Enter the Twitter username of the publisher."
|
583 |
+
msgstr "Введите имя пользователя в Twitter."
|
584 |
|
585 |
+
#: inc/php/tabs/settings.php:118
|
586 |
+
msgid "Custom meta tags"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
587 |
msgstr "Пользовательские мета-теги"
|
588 |
|
589 |
+
#: inc/php/tabs/settings.php:120
|
590 |
+
msgid "If you can't find a field to enter your required meta tag then you can add it here."
|
591 |
+
msgstr "Если вы не можете найти поле для нужного вам мета-тега, то добавьте ваш мета-тег сюда."
|
592 |
+
|
593 |
+
#: inc/php/tabs/settings.php:120
|
594 |
+
msgid "In this field you can add multiple meta tags."
|
595 |
+
msgstr "В это поле вы можете добавить несколько мета-тегов."
|
596 |
|
597 |
+
#: inc/php/tabs/settings.php:128
|
598 |
+
msgid "Meta tags for Static Home Page only"
|
599 |
msgstr "Мета-теги только для Static Home Page"
|
600 |
|
601 |
+
#: inc/php/tabs/settings.php:130
|
602 |
msgid "You can use the options below to add meta tags such as Description and Keywords only in Static Home Page of your website."
|
603 |
msgstr "Вы можете использовать ниже-расположенные опции для добавления мета тегов таких как Description и Keywords только на Static Home Page страницу вашего веб-сайта."
|
604 |
|
605 |
+
#: inc/php/tabs/settings.php:134
|
606 |
msgid "Home Description"
|
607 |
msgstr "Описание главной страницы"
|
608 |
|
609 |
+
#: inc/php/tabs/settings.php:136 inc/php/tabs/settings.php:157
|
610 |
+
msgid "Enter a short description of your website (150-250 characters)."
|
611 |
+
msgstr "Введите краткое описание для вашего веб-сайта (150-250 символов)."
|
612 |
+
|
613 |
+
#: inc/php/tabs/settings.php:136 inc/php/tabs/settings.php:157
|
614 |
+
msgid "Most search engines use a maximum of 160 chars for the home description."
|
615 |
+
msgstr "Большинство поисковых систем используют максимум 160 символов для описания домашней страницы."
|
616 |
|
617 |
+
#: inc/php/tabs/settings.php:139
|
618 |
msgid "Home Keyword(s)"
|
619 |
msgstr "Ключевые слова главной страницы"
|
620 |
|
621 |
+
#: inc/php/tabs/settings.php:141
|
622 |
msgid "Enter a comma-delimited list of keywords for only Static Home Page of your website."
|
623 |
msgstr "Введите, разделенный запятыми, список ключевых слов для только Static Home Page вашего веб-сайта."
|
624 |
|
625 |
+
#: inc/php/tabs/settings.php:149
|
626 |
+
msgid "Meta tags for Default Home Page and Blog Page only"
|
627 |
msgstr "Мета-теги для Default Home Page и только Blog Page"
|
628 |
|
629 |
+
#: inc/php/tabs/settings.php:151
|
630 |
msgid "You can use the options below to add meta tags such as Description and Keywords only in Default Home Page and Blog Page of your website."
|
631 |
msgstr "Вы можете использовать ниже-расположенные опции для добавления мета тегов таких как Description и Keywords только на Default Home Page и Blog Page страницы вашего веб-сайта."
|
632 |
|
633 |
+
#: inc/php/tabs/settings.php:155
|
634 |
msgid "Blog Description"
|
635 |
msgstr "Описание блога"
|
636 |
|
637 |
+
#: inc/php/tabs/settings.php:160
|
638 |
msgid "Blog Keyword(s)"
|
639 |
msgstr "Ключевые слова блога"
|
640 |
|
641 |
+
#: inc/php/tabs/settings.php:162
|
642 |
msgid "Enter a comma-delimited list of keywords for only Blog Page of your website."
|
643 |
msgstr "Введите, разделенный запятыми, список ключевых слов для только Blog Page вашего веб-сайта."
|
644 |
|
645 |
+
#: inc/php/tabs/settings.php:170
|
646 |
+
msgid "Meta tags for the entire website (Global)"
|
647 |
msgstr "Мета-теги для всего веб-сайта (Глобальные)"
|
648 |
|
649 |
+
#: inc/php/tabs/settings.php:172
|
650 |
msgid "You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere on your website."
|
651 |
msgstr "Вы можете использовать ниже-расположенные опции для добавления мета тегов таких как Author, Copyright и Keywords на каждую страницу вашего веб-сайта."
|
652 |
|
653 |
+
#: inc/php/tabs/settings.php:176
|
654 |
msgid "Author"
|
655 |
msgstr "Автор"
|
656 |
|
657 |
+
#: inc/php/tabs/settings.php:181
|
658 |
msgid "Designer"
|
659 |
msgstr "Дизайнер"
|
660 |
|
661 |
+
#: inc/php/tabs/settings.php:186
|
662 |
msgid "Contact"
|
663 |
msgstr "Контакты"
|
664 |
|
665 |
+
#: inc/php/tabs/settings.php:191
|
666 |
msgid "Copyright"
|
667 |
msgstr "Copyright"
|
668 |
|
669 |
+
#: inc/php/tabs/settings.php:196
|
670 |
msgid "Keyword(s)"
|
671 |
msgstr "Ключевые слова"
|
672 |
|
673 |
+
#: inc/php/tabs/settings.php:198
|
674 |
msgid "Enter a comma-delimited list of global keywords for your website."
|
675 |
msgstr "Введите, разделенный запятыми, список глобальных ключевых слов для вашего веб-сайта."
|
676 |
|
677 |
+
#: inc/php/tabs/settings.php:208
|
678 |
+
msgid "Preview"
|
679 |
+
msgstr ""
|
680 |
+
|
681 |
+
#: inc/php/tabs/settings.php:210
|
682 |
+
msgid "Click the \"Save changes\" button to update this preview."
|
683 |
+
msgstr ""
|
684 |
+
|
685 |
+
#: inc/php/tabs/settings.php:211
|
686 |
+
msgid "These are meta tags that will be printed on all pages (globally) of your website."
|
687 |
+
msgstr ""
|
688 |
+
|
689 |
+
#: inc/php/tabs/settings.php:215
|
690 |
+
msgid "Note!"
|
691 |
+
msgstr ""
|
692 |
+
|
693 |
+
#: inc/php/tabs/settings.php:216
|
694 |
+
msgid "This preview does not show meta tags that will be printed only on certain pages of your website."
|
695 |
+
msgstr ""
|
696 |
+
|
697 |
+
#: inc/php/tabs/settings.php:222
|
698 |
msgid "WooCommerce & Google Shopping"
|
699 |
msgstr "WooCommerce и Google Shopping"
|
700 |
|
701 |
+
#: inc/php/tabs/settings.php:225
|
702 |
+
msgid "This plugin automatically adds the necessary Google Shopping (Merchant Center) structured data on all WooCommerce product pages on your website."
|
703 |
+
msgstr "Этот плагин автоматически добавляет необходимые Google Shopping (Merchant Center) мета теги на все страницы WooCommerce продуктов."
|
704 |
+
|
705 |
+
#: inc/php/tabs/settings.php:226
|
706 |
+
msgid "Here is the markup for women's T-shirt that sells for 16 dollars and 80 cents of US."
|
707 |
+
msgstr "Вот так выглядит разметка для женской футболки которая продаётся за 16 долларов и 80 центов США."
|
708 |
|
709 |
+
#: inc/php/tabs/settings.php:245
|
710 |
+
#, fuzzy, php-format
|
711 |
+
#| msgid "Check these data generated on the pages of your website you can <a href=\"https://search.google.com/structured-data/testing-tool\" target=\"_blank\">here</a>."
|
712 |
+
msgid "Check these data generated on the pages of your website you can %s here %s ."
|
713 |
msgstr "Проверить эти данные сгенерированные на страницах вашего веб-сайта вы можете <a href=\"https://search.google.com/structured-data/testing-tool\" target=\"_blank\">здесь</a>."
|
714 |
|
715 |
#: inc/php/tabs/support.php:13
|
languages/all-meta-tags.pot
CHANGED
@@ -3,7 +3,7 @@ msgid ""
|
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: All Meta Tags\n"
|
6 |
-
"POT-Creation-Date: 2019-03-
|
7 |
"PO-Revision-Date: 2015-10-28 13:57+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
@@ -68,7 +68,7 @@ msgstr ""
|
|
68 |
msgid "F.A.Q."
|
69 |
msgstr ""
|
70 |
|
71 |
-
#: inc/php/page.php:49 inc/php/sidebar.php:39 inc/php/tabs/settings.php:
|
72 |
msgid "Support"
|
73 |
msgstr ""
|
74 |
|
@@ -96,16 +96,16 @@ msgstr ""
|
|
96 |
msgid "If you have a question, please read the information in the FAQ section."
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: inc/php/sidebar.php:41 inc/php/tabs/settings.php:
|
100 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: inc/php/sidebar.php:46 inc/php/tabs/settings.php:
|
104 |
#: inc/php/tabs/support.php:21
|
105 |
msgid "Donate with PayPal"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: inc/php/sidebar.php:48 inc/php/tabs/settings.php:
|
109 |
msgid "Thanks for your support!"
|
110 |
msgstr ""
|
111 |
|
@@ -520,7 +520,7 @@ msgstr ""
|
|
520 |
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: inc/php/tabs/settings.php:21 inc/php/tabs/settings.php:
|
524 |
msgid "Save changes"
|
525 |
msgstr ""
|
526 |
|
@@ -528,156 +528,185 @@ msgstr ""
|
|
528 |
msgid "Web Master Tools"
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: inc/php/tabs/settings.php:
|
532 |
-
msgid "Webmaster Tools require you to verify your domain.
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: inc/php/tabs/settings.php:
|
536 |
-
msgid "
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: inc/php/tabs/settings.php:
|
540 |
-
msgid "
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: inc/php/tabs/settings.php:
|
544 |
-
msgid "
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: inc/php/tabs/settings.php:
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
msgid "Third-party services like Alexa, Pinterest and Google-Plus require you to verify your domain. This makes sure that you are the correct owner of your blog or store before they provide their services to you. You can use the options below to verify your domain. If your domain is already verified, you can just forget about these."
|
553 |
-
msgstr ""
|
554 |
-
|
555 |
-
#: inc/php/tabs/settings.php:62
|
556 |
-
msgid "Enter your meta key “content” value from your verification code to verify your website. <br>Example: <meta name=\"p:domain_verify\" content=“<b>1234567890</b>” />"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: inc/php/tabs/settings.php:
|
560 |
-
|
|
|
|
|
|
|
|
|
|
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: inc/php/tabs/settings.php:
|
564 |
-
msgid "
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: inc/php/tabs/settings.php:
|
568 |
-
msgid "
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: inc/php/tabs/settings.php:
|
572 |
-
msgid "Enter
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: inc/php/tabs/settings.php:
|
576 |
-
msgid "Enter
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: inc/php/tabs/settings.php:
|
580 |
-
msgid "Enter
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: inc/php/tabs/settings.php:
|
584 |
-
msgid "
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: inc/php/tabs/settings.php:
|
588 |
-
msgid "
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: inc/php/tabs/settings.php:
|
592 |
-
msgid "
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: inc/php/tabs/settings.php:
|
596 |
-
msgid "Meta
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: inc/php/tabs/settings.php:
|
600 |
msgid "You can use the options below to add meta tags such as Description and Keywords only in Static Home Page of your website."
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: inc/php/tabs/settings.php:
|
604 |
msgid "Home Description"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: inc/php/tabs/settings.php:
|
608 |
-
msgid "Enter a short description of your website (150-250 characters).
|
|
|
|
|
|
|
|
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: inc/php/tabs/settings.php:
|
612 |
msgid "Home Keyword(s)"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: inc/php/tabs/settings.php:
|
616 |
msgid "Enter a comma-delimited list of keywords for only Static Home Page of your website."
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: inc/php/tabs/settings.php:
|
620 |
-
msgid "Meta
|
621 |
msgstr ""
|
622 |
|
623 |
-
#: inc/php/tabs/settings.php:
|
624 |
msgid "You can use the options below to add meta tags such as Description and Keywords only in Default Home Page and Blog Page of your website."
|
625 |
msgstr ""
|
626 |
|
627 |
-
#: inc/php/tabs/settings.php:
|
628 |
msgid "Blog Description"
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: inc/php/tabs/settings.php:
|
632 |
msgid "Blog Keyword(s)"
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: inc/php/tabs/settings.php:
|
636 |
msgid "Enter a comma-delimited list of keywords for only Blog Page of your website."
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: inc/php/tabs/settings.php:
|
640 |
-
msgid "Meta
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: inc/php/tabs/settings.php:
|
644 |
msgid "You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere on your website."
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: inc/php/tabs/settings.php:
|
648 |
msgid "Author"
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: inc/php/tabs/settings.php:
|
652 |
msgid "Designer"
|
653 |
msgstr ""
|
654 |
|
655 |
-
#: inc/php/tabs/settings.php:
|
656 |
msgid "Contact"
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: inc/php/tabs/settings.php:
|
660 |
msgid "Copyright"
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: inc/php/tabs/settings.php:
|
664 |
msgid "Keyword(s)"
|
665 |
msgstr ""
|
666 |
|
667 |
-
#: inc/php/tabs/settings.php:
|
668 |
msgid "Enter a comma-delimited list of global keywords for your website."
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: inc/php/tabs/settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
672 |
msgid "WooCommerce & Google Shopping"
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: inc/php/tabs/settings.php:
|
676 |
-
msgid "This plugin automatically adds the necessary Google Shopping (Merchant Center) structured data on all WooCommerce product pages on your website.
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: inc/php/tabs/settings.php:
|
680 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
681 |
msgstr ""
|
682 |
|
683 |
#: inc/php/tabs/support.php:13
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: All Meta Tags\n"
|
6 |
+
"POT-Creation-Date: 2019-03-06 15:59+0300\n"
|
7 |
"PO-Revision-Date: 2015-10-28 13:57+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
68 |
msgid "F.A.Q."
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: inc/php/page.php:49 inc/php/sidebar.php:39 inc/php/tabs/settings.php:255
|
72 |
msgid "Support"
|
73 |
msgstr ""
|
74 |
|
96 |
msgid "If you have a question, please read the information in the FAQ section."
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: inc/php/sidebar.php:41 inc/php/tabs/settings.php:257
|
100 |
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: inc/php/sidebar.php:46 inc/php/tabs/settings.php:262
|
104 |
#: inc/php/tabs/support.php:21
|
105 |
msgid "Donate with PayPal"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: inc/php/sidebar.php:48 inc/php/tabs/settings.php:264
|
109 |
msgid "Thanks for your support!"
|
110 |
msgstr ""
|
111 |
|
520 |
msgid "But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: inc/php/tabs/settings.php:21 inc/php/tabs/settings.php:205
|
524 |
msgid "Save changes"
|
525 |
msgstr ""
|
526 |
|
528 |
msgid "Web Master Tools"
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: inc/php/tabs/settings.php:28
|
532 |
+
msgid "Webmaster Tools require you to verify your domain."
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: inc/php/tabs/settings.php:29 inc/php/tabs/settings.php:63
|
536 |
+
msgid "This makes sure that you are the correct owner of your blog or store before they provide their services to you."
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: inc/php/tabs/settings.php:30 inc/php/tabs/settings.php:64
|
540 |
+
msgid "You can use the options below to verify your domain."
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: inc/php/tabs/settings.php:31 inc/php/tabs/settings.php:65
|
544 |
+
msgid "If your domain is already verified, you can just forget about these."
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: inc/php/tabs/settings.php:38 inc/php/tabs/settings.php:44
|
548 |
+
#: inc/php/tabs/settings.php:50 inc/php/tabs/settings.php:72
|
549 |
+
#: inc/php/tabs/settings.php:96 inc/php/tabs/settings.php:102
|
550 |
+
#: inc/php/tabs/settings.php:108 inc/php/tabs/settings.php:114
|
551 |
+
msgid "Enter your meta key “content” value from your verification code to verify your website."
|
|
|
|
|
|
|
|
|
|
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: inc/php/tabs/settings.php:38 inc/php/tabs/settings.php:44
|
555 |
+
#: inc/php/tabs/settings.php:50 inc/php/tabs/settings.php:72
|
556 |
+
#: inc/php/tabs/settings.php:78 inc/php/tabs/settings.php:84
|
557 |
+
#: inc/php/tabs/settings.php:90 inc/php/tabs/settings.php:96
|
558 |
+
#: inc/php/tabs/settings.php:102 inc/php/tabs/settings.php:108
|
559 |
+
#: inc/php/tabs/settings.php:114 inc/php/tabs/settings.php:120
|
560 |
+
msgid "Example:"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: inc/php/tabs/settings.php:59
|
564 |
+
msgid "Domain Verification"
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: inc/php/tabs/settings.php:62
|
568 |
+
msgid "Third-party services like Alexa, Pinterest and Google-Plus require you to verify your domain."
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: inc/php/tabs/settings.php:78
|
572 |
+
msgid "Enter an absolute URL to the Google+ profile of the publisher."
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: inc/php/tabs/settings.php:84
|
576 |
+
msgid "Enter an absolute URL to the Facebook profile of the publisher."
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: inc/php/tabs/settings.php:90
|
580 |
+
msgid "Enter the Twitter username of the publisher."
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: inc/php/tabs/settings.php:118
|
584 |
+
msgid "Custom meta tags"
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: inc/php/tabs/settings.php:120
|
588 |
+
msgid "If you can't find a field to enter your required meta tag then you can add it here."
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: inc/php/tabs/settings.php:120
|
592 |
+
msgid "In this field you can add multiple meta tags."
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: inc/php/tabs/settings.php:128
|
596 |
+
msgid "Meta tags for Static Home Page only"
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: inc/php/tabs/settings.php:130
|
600 |
msgid "You can use the options below to add meta tags such as Description and Keywords only in Static Home Page of your website."
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: inc/php/tabs/settings.php:134
|
604 |
msgid "Home Description"
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: inc/php/tabs/settings.php:136 inc/php/tabs/settings.php:157
|
608 |
+
msgid "Enter a short description of your website (150-250 characters)."
|
609 |
+
msgstr ""
|
610 |
+
|
611 |
+
#: inc/php/tabs/settings.php:136 inc/php/tabs/settings.php:157
|
612 |
+
msgid "Most search engines use a maximum of 160 chars for the home description."
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: inc/php/tabs/settings.php:139
|
616 |
msgid "Home Keyword(s)"
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: inc/php/tabs/settings.php:141
|
620 |
msgid "Enter a comma-delimited list of keywords for only Static Home Page of your website."
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: inc/php/tabs/settings.php:149
|
624 |
+
msgid "Meta tags for Default Home Page and Blog Page only"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: inc/php/tabs/settings.php:151
|
628 |
msgid "You can use the options below to add meta tags such as Description and Keywords only in Default Home Page and Blog Page of your website."
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: inc/php/tabs/settings.php:155
|
632 |
msgid "Blog Description"
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: inc/php/tabs/settings.php:160
|
636 |
msgid "Blog Keyword(s)"
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: inc/php/tabs/settings.php:162
|
640 |
msgid "Enter a comma-delimited list of keywords for only Blog Page of your website."
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: inc/php/tabs/settings.php:170
|
644 |
+
msgid "Meta tags for the entire website (Global)"
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: inc/php/tabs/settings.php:172
|
648 |
msgid "You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere on your website."
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: inc/php/tabs/settings.php:176
|
652 |
msgid "Author"
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: inc/php/tabs/settings.php:181
|
656 |
msgid "Designer"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: inc/php/tabs/settings.php:186
|
660 |
msgid "Contact"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: inc/php/tabs/settings.php:191
|
664 |
msgid "Copyright"
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: inc/php/tabs/settings.php:196
|
668 |
msgid "Keyword(s)"
|
669 |
msgstr ""
|
670 |
|
671 |
+
#: inc/php/tabs/settings.php:198
|
672 |
msgid "Enter a comma-delimited list of global keywords for your website."
|
673 |
msgstr ""
|
674 |
|
675 |
+
#: inc/php/tabs/settings.php:208
|
676 |
+
msgid "Preview"
|
677 |
+
msgstr ""
|
678 |
+
|
679 |
+
#: inc/php/tabs/settings.php:210
|
680 |
+
msgid "Click the \"Save changes\" button to update this preview."
|
681 |
+
msgstr ""
|
682 |
+
|
683 |
+
#: inc/php/tabs/settings.php:211
|
684 |
+
msgid "These are meta tags that will be printed on all pages (globally) of your website."
|
685 |
+
msgstr ""
|
686 |
+
|
687 |
+
#: inc/php/tabs/settings.php:215
|
688 |
+
msgid "Note!"
|
689 |
+
msgstr ""
|
690 |
+
|
691 |
+
#: inc/php/tabs/settings.php:216
|
692 |
+
msgid "This preview does not show meta tags that will be printed only on certain pages of your website."
|
693 |
+
msgstr ""
|
694 |
+
|
695 |
+
#: inc/php/tabs/settings.php:222
|
696 |
msgid "WooCommerce & Google Shopping"
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: inc/php/tabs/settings.php:225
|
700 |
+
msgid "This plugin automatically adds the necessary Google Shopping (Merchant Center) structured data on all WooCommerce product pages on your website."
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: inc/php/tabs/settings.php:226
|
704 |
+
msgid "Here is the markup for women's T-shirt that sells for 16 dollars and 80 cents of US."
|
705 |
+
msgstr ""
|
706 |
+
|
707 |
+
#: inc/php/tabs/settings.php:245
|
708 |
+
#, php-format
|
709 |
+
msgid "Check these data generated on the pages of your website you can %s here %s ."
|
710 |
msgstr ""
|
711 |
|
712 |
#: inc/php/tabs/support.php:13
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: meta, tag, tags, custom, simple, plugin, twitter, facebook, google, google
|
|
4 |
Donate link: https://www.spacexchimp.com/donate.html
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 5.1
|
7 |
-
Stable tag: 4.
|
8 |
License: GPL3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -220,6 +220,14 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
220 |
|
221 |
== Changelog ==
|
222 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
223 |
= 4.30 - 2019-03-01 =
|
224 |
* Framework updated: The file "page.php" is divided into the following parts: "page.php", "usage.php", "faq.php", "support.php".
|
225 |
* Framework updated: The files "settings.php", "usage.php", "faq.php", "support.php" are moved to the subfolder "tabs".
|
4 |
Donate link: https://www.spacexchimp.com/donate.html
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 5.1
|
7 |
+
Stable tag: 4.31
|
8 |
License: GPL3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
220 |
|
221 |
== Changelog ==
|
222 |
|
223 |
+
= 4.31 - 2019-03-06 =
|
224 |
+
* New feature: Added a preview section on the plugin settings page. In this preview, the user can see the meta tags that will be printed on all pages (globally) of his website.
|
225 |
+
* The function "_prepare" is improved. The "$metatags_arr" array renamed to more readable. The array declaration is made more correct.
|
226 |
+
* Code formatting improved.
|
227 |
+
* Code commenting improved.
|
228 |
+
* Some texts are corrected or replaced with new ones.
|
229 |
+
* All translation files are updated.
|
230 |
+
|
231 |
= 4.30 - 2019-03-01 =
|
232 |
* Framework updated: The file "page.php" is divided into the following parts: "page.php", "usage.php", "faq.php", "support.php".
|
233 |
* Framework updated: The files "settings.php", "usage.php", "faq.php", "support.php" are moved to the subfolder "tabs".
|