Version Description
- The readme "Tested up to:" value changed to 5.1 after full testing process and ensuring compatibility.
- Content of the "F.A.Q." section updated.
- Some texts are corrected or replaced with new ones.
- All translation files are updated.
- Code formatting improved.
- Added CSS class ".custom-list" for displaying a custom list, which is used on the plugin settings page.
- The human.txt file updated.
Download this release
Release Info
Developer | Arthur Gareginyan |
Plugin | All Meta Tags |
Version | 4.28 |
Comparing to | |
See all releases |
Code changes from version 4.27 to 4.28
- all-meta-tags.php +1 -1
- humans.txt +4 -2
- inc/css/admin.css +27 -0
- inc/php/messages.php +12 -6
- inc/php/page.php +327 -100
- inc/php/settings.php +5 -5
- inc/php/sidebar.php +1 -1
- languages/Readme.txt +2 -8
- languages/all-meta-tags-de_DE.mo +0 -0
- languages/all-meta-tags-de_DE.po +375 -126
- languages/all-meta-tags-es_ES.mo +0 -0
- languages/all-meta-tags-es_ES.po +377 -131
- languages/all-meta-tags-es_MX.mo +0 -0
- languages/all-meta-tags-es_MX.po +357 -105
- languages/all-meta-tags-it_IT.mo +0 -0
- languages/all-meta-tags-it_IT.po +363 -108
- languages/all-meta-tags-nl_NL.mo +0 -0
- languages/all-meta-tags-nl_NL.po +378 -129
- languages/all-meta-tags-ru_RU.mo +0 -0
- languages/all-meta-tags-ru_RU.po +392 -152
- languages/all-meta-tags.pot +353 -95
- readme.txt +22 -11
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.28
|
9 |
* License: GPL3
|
10 |
* Text Domain: all-meta-tags
|
11 |
* Domain Path: /languages/
|
humans.txt
CHANGED
@@ -19,12 +19,14 @@
|
|
19 |
|
20 |
Name: Arthur Gareginyan
|
21 |
Title: Founder and CTO
|
22 |
-
Site: www.arthurgareginyan.com
|
23 |
Instagram: arthur_gareginyan
|
24 |
|
25 |
|
26 |
/* THANKS */
|
27 |
-
|
|
|
|
|
|
|
28 |
|
29 |
/* META */
|
30 |
Last update: 2018/04/14
|
19 |
|
20 |
Name: Arthur Gareginyan
|
21 |
Title: Founder and CTO
|
|
|
22 |
Instagram: arthur_gareginyan
|
23 |
|
24 |
|
25 |
/* THANKS */
|
26 |
+
Isabella M.
|
27 |
+
Bożena L.
|
28 |
+
Thomas T.
|
29 |
+
Monica K.
|
30 |
|
31 |
/* META */
|
32 |
Last update: 2018/04/14
|
inc/css/admin.css
CHANGED
@@ -441,6 +441,33 @@ p {
|
|
441 |
overflow: hidden;
|
442 |
}
|
443 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
444 |
/* Custom List Numbers
|
445 |
-------------------------------------------------------------- */
|
446 |
.custom-counter {
|
441 |
overflow: hidden;
|
442 |
}
|
443 |
|
444 |
+
/* Custom List
|
445 |
+
-------------------------------------------------------------- */
|
446 |
+
.custom-list {
|
447 |
+
margin-top: 15px;
|
448 |
+
margin-left: 50px;
|
449 |
+
margin-bottom: 30px;
|
450 |
+
list-style-type: none;
|
451 |
+
}
|
452 |
+
.custom-list li {
|
453 |
+
counter-increment: step-counter;
|
454 |
+
margin-bottom: 15px;
|
455 |
+
font-family: Verdana, Geneva, sans-serif;
|
456 |
+
}
|
457 |
+
.custom-list li::before {
|
458 |
+
content: '+';
|
459 |
+
margin-left: -30px;
|
460 |
+
margin-right: 8px;
|
461 |
+
padding: 4px 7px;
|
462 |
+
font-size: 90%;
|
463 |
+
font-weight: bold;
|
464 |
+
background-color: #00c8c8;
|
465 |
+
color: white;
|
466 |
+
-webkit-border-radius: 50%;
|
467 |
+
-moz-border-radius: 50%;
|
468 |
+
border-radius: 50%;
|
469 |
+
}
|
470 |
+
|
471 |
/* Custom List Numbers
|
472 |
-------------------------------------------------------------- */
|
473 |
.custom-counter {
|
inc/php/messages.php
CHANGED
@@ -23,12 +23,18 @@ function spacexchimp_p004_hello_message() {
|
|
23 |
<div class="modal-body">
|
24 |
<img src="<?php echo SPACEXCHIMP_P004_URL . 'inc/img/spacexchimp-logo.png'; ?>">
|
25 |
<button type="button" class="close" data-dismiss="modal">×</button>
|
26 |
-
<p
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
</div>
|
33 |
</div>
|
34 |
</div>
|
23 |
<div class="modal-body">
|
24 |
<img src="<?php echo SPACEXCHIMP_P004_URL . 'inc/img/spacexchimp-logo.png'; ?>">
|
25 |
<button type="button" class="close" data-dismiss="modal">×</button>
|
26 |
+
<p>
|
27 |
+
<?php _e( 'Hello!', SPACEXCHIMP_P004_TEXT ); ?>
|
28 |
+
<?php _e( 'We are the team of Space X-Chimp.', SPACEXCHIMP_P004_TEXT ); ?>
|
29 |
+
</p>
|
30 |
+
<p>
|
31 |
+
<?php
|
32 |
+
printf(
|
33 |
+
__( 'Thank you for installing our plugin! We hope you will love it! %s', SPACEXCHIMP_P004_TEXT ),
|
34 |
+
'😃'
|
35 |
+
);
|
36 |
+
?>
|
37 |
+
</p>
|
38 |
</div>
|
39 |
</div>
|
40 |
</div>
|
inc/php/page.php
CHANGED
@@ -26,11 +26,12 @@ function spacexchimp_p004_render_submenu_page() {
|
|
26 |
<h2 class="sxc-header">
|
27 |
<?php echo $name; ?>
|
28 |
<span>
|
29 |
-
<?php
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
|
|
34 |
?>
|
35 |
</span>
|
36 |
<p class="version"><?php _e( 'Version', $text ); ?> <?php echo $version; ?></p>
|
@@ -69,12 +70,14 @@ function spacexchimp_p004_render_submenu_page() {
|
|
69 |
<li><?php _e( 'Click the "Save changes" button.', $text ); ?></li>
|
70 |
<li><?php _e( 'Enjoy the improved SEO of your website.', $text ); ?> <?php _e( 'It\'s that simple!', $text ); ?></li>
|
71 |
</ol>
|
72 |
-
<p class="note"
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
|
|
|
|
78 |
</p>
|
79 |
</div>
|
80 |
</div>
|
@@ -93,7 +96,7 @@ function spacexchimp_p004_render_submenu_page() {
|
|
93 |
|
94 |
<div class="panel-group" id="collapse-group">
|
95 |
<?php
|
96 |
-
$loopvalue = '
|
97 |
for ( $i = 1; $i <= $loopvalue; $i++ ) {
|
98 |
echo '<div class="panel panel-default">
|
99 |
<div class="panel-heading">
|
@@ -110,34 +113,117 @@ function spacexchimp_p004_render_submenu_page() {
|
|
110 |
?>
|
111 |
</div>
|
112 |
|
113 |
-
|
114 |
-
<div class="answer-1"><?php _e( 'Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites.', $text ); ?></div>
|
115 |
|
116 |
-
<div class="question
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
|
|
|
|
126 |
|
127 |
-
<div class="question
|
128 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
|
130 |
-
<div class="question
|
131 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
132 |
|
133 |
-
<div class="question
|
134 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
135 |
|
136 |
-
<div class="question
|
137 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
138 |
|
139 |
-
<div class="question
|
140 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
141 |
<pre><code><head>
|
142 |
...
|
143 |
<meta name="copyright" content="Copyright (c) 2013-2019 Space X-Chimp. All Rights Reserved.">
|
@@ -145,56 +231,184 @@ function spacexchimp_p004_render_submenu_page() {
|
|
145 |
<meta name="copyright" content="Copyright 2019 Space X-Chimp. All Rights Reserved.">
|
146 |
...
|
147 |
</head></code></pre>
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
<div class="
|
152 |
-
|
153 |
-
|
154 |
-
<div class="
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
<div class="answer
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
198 |
|
199 |
</div>
|
200 |
</div>
|
@@ -209,26 +423,39 @@ function spacexchimp_p004_render_submenu_page() {
|
|
209 |
<span class="image-with-button pull-left">
|
210 |
<img src="<?php echo SPACEXCHIMP_P004_URL . 'inc/img/thanks.png'; ?>" alt="Thanks!">
|
211 |
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="btn btn-default button-labeled">
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
</a>
|
217 |
</span>
|
218 |
-
<p
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
|
|
|
|
226 |
?>
|
227 |
</p>
|
228 |
-
<p
|
229 |
-
|
230 |
-
|
231 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
232 |
</div>
|
233 |
</div>
|
234 |
</div>
|
26 |
<h2 class="sxc-header">
|
27 |
<?php echo $name; ?>
|
28 |
<span>
|
29 |
+
<?php
|
30 |
+
printf(
|
31 |
+
__( 'by %s Space X-Chimp %s', $text ),
|
32 |
+
'<a href="https://www.spacexchimp.com" target="_blank">',
|
33 |
+
'</a>'
|
34 |
+
);
|
35 |
?>
|
36 |
</span>
|
37 |
<p class="version"><?php _e( 'Version', $text ); ?> <?php echo $version; ?></p>
|
70 |
<li><?php _e( 'Click the "Save changes" button.', $text ); ?></li>
|
71 |
<li><?php _e( 'Enjoy the improved SEO of your website.', $text ); ?> <?php _e( 'It\'s that simple!', $text ); ?></li>
|
72 |
</ol>
|
73 |
+
<p class="note">
|
74 |
+
<?php
|
75 |
+
printf(
|
76 |
+
__( 'If you want more options, then %s let us know %s and we will be happy to add them.', $text ),
|
77 |
+
'<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
|
78 |
+
'</a>'
|
79 |
+
);
|
80 |
+
?>
|
81 |
</p>
|
82 |
</div>
|
83 |
</div>
|
96 |
|
97 |
<div class="panel-group" id="collapse-group">
|
98 |
<?php
|
99 |
+
$loopvalue = '22';
|
100 |
for ( $i = 1; $i <= $loopvalue; $i++ ) {
|
101 |
echo '<div class="panel panel-default">
|
102 |
<div class="panel-heading">
|
113 |
?>
|
114 |
</div>
|
115 |
|
116 |
+
<?php $i = 1; ?>
|
|
|
117 |
|
118 |
+
<div class="question-<?php echo $i; ?>">
|
119 |
+
<?php _e( 'Where can I find a documentation for this plugin?', $text ); ?>
|
120 |
+
</div>
|
121 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
122 |
+
<?php
|
123 |
+
printf(
|
124 |
+
__( 'Please visit our %s Documentation site %s to view documentation.', $text ),
|
125 |
+
'<a href="https://docs.spacexchimp.com" target="_blank">',
|
126 |
+
'</a>'
|
127 |
+
);
|
128 |
+
?>
|
129 |
+
</div>
|
130 |
|
131 |
+
<div class="question-<?php echo $i; ?>">
|
132 |
+
<?php _e( 'Will this plugin work on my wordpress.COM website?', $text ); ?>
|
133 |
+
</div>
|
134 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
135 |
+
<?php _e( 'Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites.', $text ); ?>
|
136 |
+
<br><br>
|
137 |
+
<?php _e( 'Please note that there is a difference between wordpress.COM and wordpress.ORG.', $text ); ?>
|
138 |
+
<?php _e( 'The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software.', $text ); ?>
|
139 |
+
<?php
|
140 |
+
printf(
|
141 |
+
__( 'You can learn more about the difference here: %s .', $text ),
|
142 |
+
'<a href="https://en.support.wordpress.com/com-vs-org/" target="_blank">https://en.support.wordpress.com/com-vs-org/</a>'
|
143 |
+
);
|
144 |
+
?>
|
145 |
+
</div>
|
146 |
|
147 |
+
<div class="question-<?php echo $i; ?>">
|
148 |
+
<?php _e( 'Will this plugin work/compatible with the theme I use?', $text ); ?>
|
149 |
+
</div>
|
150 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
151 |
+
<?php _e( 'This plugin is compatible with most themes.', $text ); ?>
|
152 |
+
<?php _e( 'But, unfortunately, we cannot check it with all third-party themes (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party theme.', $text ); ?>
|
153 |
+
<?php _e( 'We constantly check this plugin for compatibility with third-party themes.', $text ); ?>
|
154 |
+
<?php _e( 'If we find that this plugin is incompatible with a third-party theme, and if we can fix it on our part, we release an update of our plugin to fix the problem.', $text ); ?>
|
155 |
+
<br><br>
|
156 |
+
<?php _e( 'If you find a conflict between our plugin and a third-party theme, please let us know and we will definitely release an update of our plugin to fix the problem.', $text ); ?>
|
157 |
+
</div>
|
158 |
|
159 |
+
<div class="question-<?php echo $i; ?>">
|
160 |
+
<?php _e( 'Will this plugin work/compatible with other plugins that I use?', $text ); ?>
|
161 |
+
</div>
|
162 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
163 |
+
<?php _e( 'This plugin is compatible with most plugins.', $text ); ?>
|
164 |
+
<?php _e( 'But, unfortunately, we cannot check it with all third-party plugins (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party plugin.', $text ); ?>
|
165 |
+
<?php _e( 'We constantly check this plugin for compatibility with third-party plugins.', $text ); ?>
|
166 |
+
<?php _e( 'If we find that this plugin is incompatible with a third-party plugin, and if we can fix it on our part, we release an update of our plugin to fix the problem.', $text ); ?>
|
167 |
+
<br><br>
|
168 |
+
<?php _e( 'If you find a conflict between our plugin and a third-party plugin, please let us know and we will definitely release an update of our plugin to fix the problem.', $text ); ?>
|
169 |
+
</div>
|
170 |
|
171 |
+
<div class="question-<?php echo $i; ?>">
|
172 |
+
<?php _e( 'Can I use this plugin on my language?', $text ); ?>
|
173 |
+
</div>
|
174 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
175 |
+
<?php _e( 'Yes.', $text ); ?>
|
176 |
+
<?php _e( 'This plugin is ready for translation and has already been translated into several languages.', $text ); ?>
|
177 |
+
<?php _e( 'But If your language is not available then you can make one.', $text ); ?>
|
178 |
+
<?php _e( 'It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections.', $text ); ?>
|
179 |
+
<?php _e( 'Many of plugin users would be delighted if you share your translation with the community.', $text ); ?>
|
180 |
+
<?php _e( 'Thanks for your contribution!', $text ); ?>
|
181 |
+
<br><br>
|
182 |
+
<?php
|
183 |
+
printf(
|
184 |
+
__( 'If you want to help translate this plugin, please visit the %s.', $text ),
|
185 |
+
'<a href="https://translate.wordpress.org/projects/wp-plugins/' . $slug . '" target="_blank">translation page</a>'
|
186 |
+
);
|
187 |
+
?>
|
188 |
+
<?php _e( 'You can also use the POT file that is included and placed in the "languages" folder to create a translation PO file.', $text ); ?>
|
189 |
+
<?php
|
190 |
+
printf(
|
191 |
+
__( 'Just send the PO file to us ( %s ) and we will include this translation within the next plugin update.', $text ),
|
192 |
+
'<a href="mailto:support@spacexchimp.com?subject=New translation of the ' . $name . ' plugin">support@spacexchimp.com</a>'
|
193 |
+
);
|
194 |
+
?>
|
195 |
+
</div>
|
196 |
|
197 |
+
<div class="question-<?php echo $i; ?>">
|
198 |
+
<?php _e( 'How does it work?', $text ); ?>
|
199 |
+
</div>
|
200 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
201 |
+
<?php _e( 'On the "Settings" tab, fill in the required fields and click the "Save changes" button.', $text ); ?>
|
202 |
+
<?php _e( 'Enjoy the improved SEO of your website.', $text ); ?>
|
203 |
+
<?php _e( 'It\'s that simple!', $text ); ?>
|
204 |
+
</div>
|
205 |
+
|
206 |
+
<div class="question-<?php echo $i; ?>">
|
207 |
+
<?php _e( 'How much of description I can enter in the text field?', $text ); ?>
|
208 |
+
</div>
|
209 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
210 |
+
<?php _e( 'We don\'t limit the number of characters, but most search engines use a maximum of 160 chars for the home description.', $text ); ?>
|
211 |
+
</div>
|
212 |
+
|
213 |
+
<div class="question-<?php echo $i; ?>">
|
214 |
+
<?php _e( 'How much of keywords I can enter in the text field?', $text ); ?>
|
215 |
+
</div>
|
216 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
217 |
+
<?php _e( 'We don\'t limit the number of characters.', $text ); ?>
|
218 |
+
</div>
|
219 |
+
|
220 |
+
<div class="question-<?php echo $i; ?>">
|
221 |
+
<?php _e( 'What about compatibility with the plugin "All in One SEO Pack"?', $text ); ?>
|
222 |
+
</div>
|
223 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
224 |
+
<?php _e( 'As far as we know, the "All Meta Tags" plugin is compatible with the "All in One SEO Pack" plugin.', $text ); ?>
|
225 |
+
<?php _e( 'But to make sure that these plugins do not conflict with each other, you need to follow one simple rule: do not fill the same field in both plugins at once.', $text ); ?>
|
226 |
+
<?php _e( 'Otherwise both plugins fulfill their work and you will get a duplicate actions, for example:', $text ); ?>
|
227 |
<pre><code><head>
|
228 |
...
|
229 |
<meta name="copyright" content="Copyright (c) 2013-2019 Space X-Chimp. All Rights Reserved.">
|
231 |
<meta name="copyright" content="Copyright 2019 Space X-Chimp. All Rights Reserved.">
|
232 |
...
|
233 |
</head></code></pre>
|
234 |
+
<?php _e( 'If you find a conflict between the plugins, please let us know and we will definitely release an update of our plugin to fix the problem.', $text ); ?>
|
235 |
+
</div>
|
236 |
+
|
237 |
+
<div class="question-<?php echo $i; ?>">
|
238 |
+
<?php _e( 'What about compatibility with the plugin "Yoast SEO"?', $text ); ?>
|
239 |
+
</div>
|
240 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
241 |
+
<?php _e( 'As far as we know, the "All Meta Tags" plugin is compatible with the "Yoast SEO" plugin.', $text ); ?>
|
242 |
+
<?php _e( 'But to make sure that these plugins do not conflict with each other, you need to follow one simple rule: do not fill the same field in both plugins at once.', $text ); ?>
|
243 |
+
<?php _e( 'Otherwise both plugins fulfill their work and you will get a duplicate actions.', $text ); ?>
|
244 |
+
<br><br>
|
245 |
+
<?php _e( 'If you find a conflict between the plugins, please let us know and we will definitely release an update of our plugin to fix the problem.', $text ); ?>
|
246 |
+
</div>
|
247 |
+
|
248 |
+
<div class="question-<?php echo $i; ?>">
|
249 |
+
<?php _e( 'Does this plugin requires any modification of the theme?', $text ); ?>
|
250 |
+
</div>
|
251 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
252 |
+
<?php _e( 'Absolutely not.', $text ); ?>
|
253 |
+
<?php _e( 'This plugin is configurable entirely from the plugin settings page.', $text ); ?>
|
254 |
+
</div>
|
255 |
+
|
256 |
+
<div class="question-<?php echo $i; ?>">
|
257 |
+
<?php _e( 'Does this require any knowledge of HTML or CSS?', $text ); ?>
|
258 |
+
</div>
|
259 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
260 |
+
<?php _e( 'Absolutely not.', $text ); ?>
|
261 |
+
<?php _e( 'This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page.', $text ); ?>
|
262 |
+
</div>
|
263 |
+
|
264 |
+
<div class="question-<?php echo $i; ?> question-red">
|
265 |
+
<?php _e( 'It\'s not working.', $text ); ?>
|
266 |
+
<?php _e( 'What could be wrong?', $text ); ?>
|
267 |
+
</div>
|
268 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
269 |
+
<?php _e( 'As with every plugin, it\'s possible that things don\'t work.', $text ); ?>
|
270 |
+
<?php _e( 'It\'s impossible to tell what could be wrong exactly.', $text ); ?>
|
271 |
+
<?php _e( 'The most common reason for this is a web browser\'s cache.', $text ); ?>
|
272 |
+
<?php _e( 'Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load.', $text ); ?>
|
273 |
+
<?php _e( 'This is called the browser\'s cache.', $text ); ?>
|
274 |
+
<?php _e( 'Clearing your browser\'s cache may solve the problem.', $text ); ?>
|
275 |
+
<br><br>
|
276 |
+
<?php _e( 'If you post a support request in the plugin\'s support forum on WordPress.org, we\'d be happy to give it a look and try to help out.', $text ); ?>
|
277 |
+
<?php _e( 'Please include as much information as possible, including a link to your website where the problem can be seen.', $text ); ?>
|
278 |
+
</div>
|
279 |
+
|
280 |
+
<div class="question-<?php echo $i; ?> question-red">
|
281 |
+
<?php _e( 'I can\'t get verify my website.', $text ); ?>
|
282 |
+
<?php _e( 'What am I doing wrong?', $text ); ?>
|
283 |
+
</div>
|
284 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
285 |
+
<?php _e( '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>).', $text ); ?>
|
286 |
+
<?php _e( 'So just paste that into the relevant field and you will see “Success” message appear within a few seconds.', $text ); ?>
|
287 |
+
</div>
|
288 |
+
|
289 |
+
<div class="question-<?php echo $i; ?> question-red">
|
290 |
+
<?php _e( 'The last WordPress update is preventing me from editing my website that is using this plugin.', $text ); ?>
|
291 |
+
<?php _e( 'Why is this?', $text ); ?>
|
292 |
+
</div>
|
293 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
294 |
+
<?php _e( 'This plugin can not cause such problem.', $text ); ?>
|
295 |
+
<?php _e( 'More likely, the problem are related to the settings of the website.', $text ); ?>
|
296 |
+
<?php _e( 'It could just be a cache, so please try to clear your website\'s cache (may be you using a caching plugin, or some web service such as the CloudFlare) and then the cache of your web browser.', $text ); ?>
|
297 |
+
<?php _e( 'Also please try to re-login to the website, this too can help.', $text ); ?>
|
298 |
+
</div>
|
299 |
+
|
300 |
+
<div class="question-<?php echo $i; ?> question-red">
|
301 |
+
<?php _e( 'Where to report bug if found?', $text ); ?>
|
302 |
+
</div>
|
303 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
304 |
+
<?php _e( 'Bug reports are very welcome!', $text ); ?>
|
305 |
+
<?php
|
306 |
+
printf(
|
307 |
+
__( 'Please visit our %s contact page %s and report.', $text ),
|
308 |
+
'<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
|
309 |
+
'</a>'
|
310 |
+
);
|
311 |
+
?>
|
312 |
+
<?php _e( 'Please do not forget to specify the name of the plugin.', $text ); ?>
|
313 |
+
<?php _e( 'Thank you!', $text ); ?>
|
314 |
+
<br><br>
|
315 |
+
<?php _e( 'Please include as much information as possible, including a link to your website where the problem can be seen.', $text ); ?>
|
316 |
+
<?php _e( 'Describe in more detail what exactly you are seeing.', $text ); ?>
|
317 |
+
<?php _e( 'Here are some examples:', $text ); ?>
|
318 |
+
<br><br>
|
319 |
+
<ul class="custom-list">
|
320 |
+
<li><?php _e( 'Elements of the plugin settings page are not working.', $text ); ?></li>
|
321 |
+
<li><?php _e( 'An error message is displayed on the plugin settings page.', $text ); ?></li>
|
322 |
+
<li><?php _e( 'An error message is displayed on the front end of website.', $text ); ?></li>
|
323 |
+
<li><?php _e( 'An error message is displayed on the back end of website.', $text ); ?></li>
|
324 |
+
<li><?php _e( 'Website is crashed.', $text ); ?></li>
|
325 |
+
</ul>
|
326 |
+
</div>
|
327 |
+
|
328 |
+
<div class="question-<?php echo $i; ?>">
|
329 |
+
<?php _e( 'Where to share any ideas or suggestions to make the plugin better?', $text ); ?>
|
330 |
+
</div>
|
331 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
332 |
+
<?php _e( 'Any suggestions are very welcome!', $text ); ?>
|
333 |
+
<?php
|
334 |
+
printf(
|
335 |
+
__( 'Please visit our %s contact page %s.', $text ),
|
336 |
+
'<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
|
337 |
+
'</a>'
|
338 |
+
);
|
339 |
+
?>
|
340 |
+
<?php _e( 'Please do not forget to specify the name of the plugin.', $text ); ?>
|
341 |
+
<?php _e( 'Thank you!', $text ); ?>
|
342 |
+
</div>
|
343 |
+
|
344 |
+
<div class="question-<?php echo $i; ?>">
|
345 |
+
<?php _e( 'I love this plugin!', $text ); ?>
|
346 |
+
<?php _e( 'Can I help somehow?', $text ); ?>
|
347 |
+
</div>
|
348 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
349 |
+
<?php _e( 'Yes, any contributions are very welcome!', $text ); ?>
|
350 |
+
<?php
|
351 |
+
printf(
|
352 |
+
__( 'Please visit our %s Support Us %s page.', $text ),
|
353 |
+
'<a href="https://www.spacexchimp.com/donate.html" target="_blank">',
|
354 |
+
'</a>'
|
355 |
+
);
|
356 |
+
?>
|
357 |
+
<?php _e( 'Thank you!', $text ); ?>
|
358 |
+
</div>
|
359 |
+
|
360 |
+
<div class="question-<?php echo $i; ?>">
|
361 |
+
<?php _e( 'Where can I find information about your licenses, payment process and refunds?', $text ); ?>
|
362 |
+
</div>
|
363 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
364 |
+
<?php
|
365 |
+
printf(
|
366 |
+
__( 'Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page.', $text ),
|
367 |
+
'<a href="https://www.spacexchimp.com/faq.html" target="_blank">',
|
368 |
+
'</a>'
|
369 |
+
);
|
370 |
+
?>
|
371 |
+
</div>
|
372 |
+
|
373 |
+
<div class="question-<?php echo $i; ?>">
|
374 |
+
<?php _e( 'Where can I find information about your customer support?', $text ); ?>
|
375 |
+
</div>
|
376 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
377 |
+
<?php
|
378 |
+
printf(
|
379 |
+
__( 'Answers to common questions about our customer support can be found on our %s Common Questions %s page.', $text ),
|
380 |
+
'<a href="https://www.spacexchimp.com/faq.html" target="_blank">',
|
381 |
+
'</a>'
|
382 |
+
);
|
383 |
+
?>
|
384 |
+
</div>
|
385 |
+
|
386 |
+
<div class="question-<?php echo $i; ?>">
|
387 |
+
<?php _e( 'Where can I find information about your affiliate program?', $text ); ?>
|
388 |
+
</div>
|
389 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
390 |
+
<?php
|
391 |
+
printf(
|
392 |
+
__( 'Answers to common questions about our affiliate program can be found on our %s Common Questions %s page.', $text ),
|
393 |
+
'<a href="https://www.spacexchimp.com/faq.html" target="_blank">',
|
394 |
+
'</a>'
|
395 |
+
);
|
396 |
+
?>
|
397 |
+
</div>
|
398 |
+
|
399 |
+
<div class="question-<?php echo $i; ?>">
|
400 |
+
<?php _e( 'My question wasn\'t answered here.', $text ); ?>
|
401 |
+
</div>
|
402 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
403 |
+
<?php
|
404 |
+
printf(
|
405 |
+
__( 'You can ask your question on %s this page %s.', $text ),
|
406 |
+
'<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
|
407 |
+
'</a>'
|
408 |
+
);
|
409 |
+
?>
|
410 |
+
<?php _e( '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.', $text ); ?>
|
411 |
+
</div>
|
412 |
|
413 |
</div>
|
414 |
</div>
|
423 |
<span class="image-with-button pull-left">
|
424 |
<img src="<?php echo SPACEXCHIMP_P004_URL . 'inc/img/thanks.png'; ?>" alt="Thanks!">
|
425 |
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="btn btn-default button-labeled">
|
426 |
+
<span class="btn-label">
|
427 |
+
<img src="<?php echo SPACEXCHIMP_P004_URL . 'inc/img/paypal.svg'; ?>" alt="PayPal">
|
428 |
+
</span>
|
429 |
+
<?php _e( 'Donate with PayPal', $text ); ?>
|
430 |
</a>
|
431 |
</span>
|
432 |
+
<p>
|
433 |
+
<?php _e( 'Hello!', $text ); ?>
|
434 |
+
<?php
|
435 |
+
printf(
|
436 |
+
__( 'My name is %s Arthur %s, I\'m the founder of %s Space X-Chimp %s, which unites a small international team of young people.', $text ),
|
437 |
+
'<a href="https://www.instagram.com/arthur_gareginyan/" target="_blank">',
|
438 |
+
'</a>',
|
439 |
+
'<a href="https://www.spacexchimp.com" target="_blank">',
|
440 |
+
'</a>'
|
441 |
+
);
|
442 |
?>
|
443 |
</p>
|
444 |
+
<p>
|
445 |
+
<?php _e( 'Our intention is to create projects that will make this world a better place.', $text ); ?>
|
446 |
+
<?php _e( 'Our motto is - «Follow your dreams and don’t give up».', $text ); ?>
|
447 |
+
<?php _e( 'We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too.', $text ); ?>
|
448 |
+
</p>
|
449 |
+
<p>
|
450 |
+
<?php _e( 'We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them.', $text ); ?>
|
451 |
+
<?php _e( 'But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy.', $text ); ?>
|
452 |
+
</p>
|
453 |
+
<p>
|
454 |
+
<?php _e( 'If you appreciate our work, you can buy us a cup of coffee!', $text ); ?>
|
455 |
+
</p>
|
456 |
+
<p>
|
457 |
+
<?php _e( 'Thank you for your support!', $text ); ?>
|
458 |
+
</p>
|
459 |
</div>
|
460 |
</div>
|
461 |
</div>
|
inc/php/settings.php
CHANGED
@@ -220,11 +220,11 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
220 |
<div class="inside">
|
221 |
<p><?php _e( 'Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy.', $text ); ?></p>
|
222 |
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="btn btn-default button-labeled">
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
<p><?php _e( 'Thanks for your support!', $text ); ?></p>
|
229 |
</div>
|
230 |
</div>
|
220 |
<div class="inside">
|
221 |
<p><?php _e( 'Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy.', $text ); ?></p>
|
222 |
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="btn btn-default button-labeled">
|
223 |
+
<span class="btn-label">
|
224 |
+
<img src="<?php echo SPACEXCHIMP_P004_URL . 'inc/img/paypal.svg'; ?>" alt="PayPal">
|
225 |
+
</span>
|
226 |
+
<?php _e( 'Donate with PayPal', $text ); ?>
|
227 |
+
</a>
|
228 |
<p><?php _e( 'Thanks for your support!', $text ); ?></p>
|
229 |
</div>
|
230 |
</div>
|
inc/php/sidebar.php
CHANGED
@@ -24,7 +24,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
24 |
<div class="postbox about">
|
25 |
<h3 class="title"><?php _e( 'About', $text ); ?></h3>
|
26 |
<div class="inside">
|
27 |
-
<p><?php _e( 'This plugin
|
28 |
</div>
|
29 |
</div>
|
30 |
|
24 |
<div class="postbox about">
|
25 |
<h3 class="title"><?php _e( 'About', $text ); ?></h3>
|
26 |
<div class="inside">
|
27 |
+
<p><?php _e( 'This plugin gives you the ability to easily and safely add your custom meta tags to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor.', $text ); ?></p>
|
28 |
</div>
|
29 |
</div>
|
30 |
|
languages/Readme.txt
CHANGED
@@ -2,12 +2,6 @@
|
|
2 |
CONTRIBUTING YOUR TRANSLATION
|
3 |
|
4 |
|
5 |
-
This plugin is ready for translation and has already been translated into several languages.
|
6 |
|
7 |
-
If you want to help translate this plugin
|
8 |
-
|
9 |
-
You can also use the POT file, that is included and placed in the "languages" folder, in order to create a translation PO file. Just send the PO file to us (https://www.spacexchimp.com/contact.html) and we will include this translation within the next plugin update.
|
10 |
-
|
11 |
-
Maybe not all existed translations are up to date. You are welcome to contribute corrections!
|
12 |
-
|
13 |
-
Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!
|
2 |
CONTRIBUTING YOUR TRANSLATION
|
3 |
|
4 |
|
5 |
+
This plugin is ready for translation and has already been translated into several languages. But If your language is not available then you can make one. It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections. Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!
|
6 |
|
7 |
+
If you want to help translate this plugin, please visit the [translation page](https://translate.wordpress.org/projects/wp-plugins/all-meta-tags). You can also use the POT file that is included and placed in the "languages" folder to create a translation PO file. Just send the PO file to us (https://www.spacexchimp.com/contact.html) and we will include this translation within the next plugin update.
|
|
|
|
|
|
|
|
|
|
|
|
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-
|
7 |
-
"PO-Revision-Date: 2019-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: German\n"
|
10 |
"Language: de_DE\n"
|
@@ -20,7 +20,7 @@ msgstr ""
|
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
|
23 |
-
#: inc/php/core.php:23 inc/php/page.php:
|
24 |
msgid "Settings"
|
25 |
msgstr "Einstellungen"
|
26 |
|
@@ -32,268 +32,526 @@ msgstr "Spende"
|
|
32 |
msgid "Meta Tags Inserter"
|
33 |
msgstr "Meta Tags Inserter"
|
34 |
|
35 |
-
#: inc/php/messages.php:
|
36 |
-
msgid "Hello
|
37 |
-
msgstr "Hallo!
|
38 |
|
39 |
#: inc/php/messages.php:28
|
|
|
|
|
|
|
|
|
40 |
#, php-format
|
41 |
msgid "Thank you for installing our plugin! We hope you will love it! %s"
|
42 |
msgstr "Danke, dass Sie mein Plugin installiert haben. Ich hoffe, sie werden es mögen. %s"
|
43 |
|
44 |
-
#: inc/php/messages.php:
|
45 |
msgid "You have installed an old version of this plugin."
|
46 |
msgstr "Sie haben eine veraltete Version dieses Plugin installiert."
|
47 |
|
48 |
-
#: inc/php/messages.php:
|
49 |
msgid "Please update the plugin to the latest version, and all will be fine."
|
50 |
msgstr "Bitte installieren Sie die aktuelle Version des Plugins und alles wir gut."
|
51 |
|
52 |
-
#: inc/php/page.php:
|
53 |
#, php-format
|
54 |
msgid "by %s Space X-Chimp %s"
|
55 |
msgstr "by %s Space X-Chimp %s"
|
56 |
|
57 |
-
#: inc/php/page.php:
|
58 |
msgid "Version"
|
59 |
msgstr "Version"
|
60 |
|
61 |
-
#: inc/php/page.php:
|
62 |
msgid "Usage"
|
63 |
msgstr "Verwendung"
|
64 |
|
65 |
-
#: inc/php/page.php:
|
66 |
msgid "F.A.Q."
|
67 |
msgstr "F.A.Q."
|
68 |
|
69 |
-
#: inc/php/page.php:
|
70 |
msgid "Support"
|
71 |
-
msgstr "
|
72 |
|
73 |
-
#: inc/php/page.php:
|
74 |
msgid "Store"
|
75 |
-
msgstr "
|
76 |
|
77 |
-
#: inc/php/page.php:
|
78 |
msgid "Usage Instructions"
|
79 |
msgstr "Anleitung"
|
80 |
|
81 |
-
#: inc/php/page.php:
|
82 |
msgid "To add the meta tags to your website, simply follow these steps:"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: inc/php/page.php:
|
86 |
msgid "Go to the \"Settings\" tab on this page."
|
87 |
msgstr "Gehen Sie zum Tab \"Einstellungen\"."
|
88 |
|
89 |
-
#: inc/php/page.php:
|
90 |
msgid "Fill in the required fields."
|
91 |
msgstr "Füllen Sie die benötigten Felder aus."
|
92 |
|
93 |
-
#: inc/php/page.php:
|
94 |
msgid "Click the \"Save changes\" button."
|
95 |
msgstr "Klicken Sie den \"Änderungen speichern\" button."
|
96 |
|
97 |
-
#: inc/php/page.php:
|
98 |
msgid "Enjoy the improved SEO of your website."
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: inc/php/page.php:
|
102 |
msgid "It's that simple!"
|
103 |
msgstr "Es ist ganz einfach!"
|
104 |
|
105 |
-
#: inc/php/page.php:
|
106 |
#, php-format
|
107 |
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
108 |
msgstr "Wenn Sie mehr Optionen benötigen, %s teilen Sie uns %s dies mit und wir werden sie gerne hinzufügen."
|
109 |
|
110 |
-
#: inc/php/page.php:
|
111 |
msgid "Frequently Asked Questions"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: inc/php/page.php:
|
115 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
116 |
msgstr "Wenn Sie Fragen haben, lesen Sie bitte die F.A.Q.s und schauen Sie nach, ob Ihre Antwort dabei ist."
|
117 |
|
118 |
-
#: inc/php/page.php:
|
119 |
-
msgid "
|
120 |
-
msgstr "
|
121 |
|
122 |
-
#: inc/php/page.php:
|
123 |
-
|
124 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
125 |
|
126 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
127 |
msgid "Can I use this plugin on my language?"
|
128 |
msgstr "Kann ich das Plugin in meiner Sprache verwenden?"
|
129 |
|
130 |
-
#: inc/php/page.php:
|
131 |
-
msgid "Yes.
|
132 |
-
msgstr "Ja
|
|
|
|
|
|
|
|
|
133 |
|
134 |
-
#: inc/php/page.php:
|
135 |
-
|
136 |
-
msgid "If you want to help translate this plugin then please visit the %s. You can also use the POT file, that is included and placed in the \"languages\" folder, in order to create a translation PO file. Just send the PO file to us at the %s and we will include this translation within the next plugin update."
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: inc/php/page.php:
|
140 |
-
msgid "
|
141 |
msgstr "Vielleicht sind nicht alle vorhandenen Übersetzungen aktuell. Gerne können Sie an den Korrekturen mitwirken."
|
142 |
|
143 |
-
#: inc/php/page.php:
|
144 |
-
msgid "Many of plugin users would be delighted if you share your translation with the community.
|
145 |
-
msgstr "Viele Benutzer des Plugins freuen sich darüber, wenn Sie Ihre Übersetzung mit der Öffentlichkeit teilen.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
146 |
|
147 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
148 |
msgid "How does it work?"
|
149 |
msgstr "Wie arbeitet das Plugin?"
|
150 |
|
151 |
-
#: inc/php/page.php:
|
152 |
-
msgid "On the \"Settings\" tab, fill in the required fields and click the \"Save changes\" button.
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: inc/php/page.php:
|
156 |
msgid "How much of description I can enter in the text field?"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: inc/php/page.php:
|
160 |
msgid "We don't limit the number of characters, but most search engines use a maximum of 160 chars for the home description."
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: inc/php/page.php:
|
164 |
msgid "How much of keywords I can enter in the text field?"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: inc/php/page.php:
|
168 |
msgid "We don't limit the number of characters."
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: inc/php/page.php:
|
172 |
-
msgid "
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: inc/php/page.php:
|
176 |
-
msgid "
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: inc/php/page.php:
|
180 |
-
msgid "
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: inc/php/page.php:
|
184 |
-
msgid "
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: inc/php/page.php:
|
188 |
-
msgid "If you find a conflict between the plugins, please let us know and we will definitely release an update of
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: inc/php/page.php:
|
192 |
msgid "What about compatibility with the plugin \"Yoast SEO\"?"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: inc/php/page.php:
|
196 |
-
msgid "As far as we know, the \"All Meta Tags\" plugin is compatible with the \"Yoast SEO\" plugin.
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
200 |
msgid "Does this plugin requires any modification of the theme?"
|
201 |
msgstr "Benötigt das Plugin Veränderungen am Theme?"
|
202 |
|
203 |
-
#: inc/php/page.php:
|
204 |
-
msgid "Absolutely not.
|
205 |
-
msgstr "Absolut nicht.
|
|
|
|
|
|
|
|
|
206 |
|
207 |
-
#: inc/php/page.php:
|
208 |
msgid "Does this require any knowledge of HTML or CSS?"
|
209 |
-
msgstr "Brauche ich HTML oder
|
210 |
|
211 |
-
#: inc/php/page.php:
|
212 |
-
msgid "
|
213 |
-
msgstr "
|
214 |
|
215 |
-
#: inc/php/page.php:
|
216 |
-
msgid "It's not working.
|
217 |
-
msgstr "Es funktioniert nicht.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
218 |
|
219 |
-
#: inc/php/page.php:
|
220 |
-
msgid "
|
221 |
-
msgstr "
|
222 |
|
223 |
-
#: inc/php/page.php:
|
224 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: inc/php/page.php:
|
228 |
-
msgid "
|
229 |
-
msgstr "
|
230 |
|
231 |
-
#: inc/php/page.php:
|
232 |
-
msgid "
|
233 |
-
msgstr "
|
|
|
|
|
|
|
|
|
234 |
|
235 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
236 |
msgid "Where to report bug if found?"
|
237 |
msgstr "Wo kann ich eine Fehler melden?"
|
238 |
|
239 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
240 |
#, php-format
|
241 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
245 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
246 |
msgstr "Wo können Sie Ideen oder Vorschläge loswerden, um das Plugin besser zu machen?"
|
247 |
|
248 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
249 |
#, php-format
|
250 |
-
msgid "
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: inc/php/page.php:
|
254 |
-
msgid "I
|
255 |
-
msgstr "
|
256 |
|
257 |
-
#: inc/php/page.php:
|
258 |
#, php-format
|
259 |
-
msgid "
|
260 |
-
msgstr "
|
261 |
|
262 |
-
#: inc/php/page.php:
|
263 |
msgid "My question wasn't answered here."
|
264 |
msgstr "Meine Fragen wurden nicht beantwortet."
|
265 |
|
266 |
-
#: inc/php/page.php:
|
267 |
#, php-format
|
268 |
-
msgid "You can ask your question on %s this page %s.
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
272 |
msgid "Support Us"
|
273 |
msgstr "Unterstütze uns"
|
274 |
|
275 |
-
#: inc/php/page.php:
|
276 |
msgid "Donate with PayPal"
|
277 |
msgstr "Spende mit PayPal"
|
278 |
|
279 |
-
#: inc/php/page.php:
|
280 |
#, php-format
|
281 |
-
msgid "
|
282 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
283 |
|
284 |
-
#: inc/php/page.php:
|
285 |
-
msgid "Our
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: inc/php/page.php:
|
289 |
-
msgid "We
|
290 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
291 |
|
292 |
-
#: inc/php/page.php:
|
293 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
294 |
-
msgstr "Wenn Ihnen
|
295 |
|
296 |
-
#: inc/php/page.php:
|
297 |
msgid "Thank you for your support!"
|
298 |
msgstr "Danke für Ihre Unterstützung!"
|
299 |
|
@@ -467,14 +725,14 @@ msgstr "Danke für Ihre Unterstützung!"
|
|
467 |
|
468 |
#: inc/php/sidebar.php:16
|
469 |
msgid "We are «Space X-Chimp»"
|
470 |
-
msgstr ""
|
471 |
|
472 |
#: inc/php/sidebar.php:25
|
473 |
msgid "About"
|
474 |
msgstr "Über"
|
475 |
|
476 |
#: inc/php/sidebar.php:27
|
477 |
-
msgid "This plugin
|
478 |
msgstr ""
|
479 |
|
480 |
#: inc/php/sidebar.php:32
|
@@ -504,12 +762,3 @@ msgstr "Space X-Chimp"
|
|
504 |
#. Author URI of the plugin/theme
|
505 |
msgid "https://www.spacexchimp.com"
|
506 |
msgstr "https://www.spacexchimp.com"
|
507 |
-
|
508 |
-
#~ msgid "Note!"
|
509 |
-
#~ msgstr "Achtung!"
|
510 |
-
|
511 |
-
#~ msgid "Select the desired settings."
|
512 |
-
#~ msgstr "Wählen Sie die gewünschten Einstellungen aus."
|
513 |
-
|
514 |
-
#~ msgid "Hello! My name is %s Arthur %s and I'm the founder of %s Space X-Chimp %s."
|
515 |
-
#~ msgstr "Hallo! Meine name ist %s Arthur %s und ich bin der Gründer von %s Space X-Chimp %s."
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: All Meta Tags\n"
|
6 |
+
"POT-Creation-Date: 2019-02-20 23:15+0300\n"
|
7 |
+
"PO-Revision-Date: 2019-02-20 23:15+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: German\n"
|
10 |
"Language: de_DE\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
|
23 |
+
#: inc/php/core.php:23 inc/php/page.php:44
|
24 |
msgid "Settings"
|
25 |
msgstr "Einstellungen"
|
26 |
|
32 |
msgid "Meta Tags Inserter"
|
33 |
msgstr "Meta Tags Inserter"
|
34 |
|
35 |
+
#: inc/php/messages.php:27 inc/php/page.php:433
|
36 |
+
msgid "Hello!"
|
37 |
+
msgstr "Hallo!"
|
38 |
|
39 |
#: inc/php/messages.php:28
|
40 |
+
msgid "We are the team of Space X-Chimp."
|
41 |
+
msgstr "Wir sind das Team von Space X-Chimp."
|
42 |
+
|
43 |
+
#: inc/php/messages.php:33
|
44 |
#, php-format
|
45 |
msgid "Thank you for installing our plugin! We hope you will love it! %s"
|
46 |
msgstr "Danke, dass Sie mein Plugin installiert haben. Ich hoffe, sie werden es mögen. %s"
|
47 |
|
48 |
+
#: inc/php/messages.php:74
|
49 |
msgid "You have installed an old version of this plugin."
|
50 |
msgstr "Sie haben eine veraltete Version dieses Plugin installiert."
|
51 |
|
52 |
+
#: inc/php/messages.php:75
|
53 |
msgid "Please update the plugin to the latest version, and all will be fine."
|
54 |
msgstr "Bitte installieren Sie die aktuelle Version des Plugins und alles wir gut."
|
55 |
|
56 |
+
#: inc/php/page.php:31
|
57 |
#, php-format
|
58 |
msgid "by %s Space X-Chimp %s"
|
59 |
msgstr "by %s Space X-Chimp %s"
|
60 |
|
61 |
+
#: inc/php/page.php:37
|
62 |
msgid "Version"
|
63 |
msgstr "Version"
|
64 |
|
65 |
+
#: inc/php/page.php:45
|
66 |
msgid "Usage"
|
67 |
msgstr "Verwendung"
|
68 |
|
69 |
+
#: inc/php/page.php:46
|
70 |
msgid "F.A.Q."
|
71 |
msgstr "F.A.Q."
|
72 |
|
73 |
+
#: inc/php/page.php:47 inc/php/settings.php:219 inc/php/sidebar.php:39
|
74 |
msgid "Support"
|
75 |
+
msgstr "Unterstützung"
|
76 |
|
77 |
+
#: inc/php/page.php:48
|
78 |
msgid "Store"
|
79 |
+
msgstr "Geschäft"
|
80 |
|
81 |
+
#: inc/php/page.php:64
|
82 |
msgid "Usage Instructions"
|
83 |
msgstr "Anleitung"
|
84 |
|
85 |
+
#: inc/php/page.php:66
|
86 |
msgid "To add the meta tags to your website, simply follow these steps:"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: inc/php/page.php:68
|
90 |
msgid "Go to the \"Settings\" tab on this page."
|
91 |
msgstr "Gehen Sie zum Tab \"Einstellungen\"."
|
92 |
|
93 |
+
#: inc/php/page.php:69
|
94 |
msgid "Fill in the required fields."
|
95 |
msgstr "Füllen Sie die benötigten Felder aus."
|
96 |
|
97 |
+
#: inc/php/page.php:70
|
98 |
msgid "Click the \"Save changes\" button."
|
99 |
msgstr "Klicken Sie den \"Änderungen speichern\" button."
|
100 |
|
101 |
+
#: inc/php/page.php:71 inc/php/page.php:202
|
102 |
msgid "Enjoy the improved SEO of your website."
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: inc/php/page.php:71 inc/php/page.php:203
|
106 |
msgid "It's that simple!"
|
107 |
msgstr "Es ist ganz einfach!"
|
108 |
|
109 |
+
#: inc/php/page.php:76
|
110 |
#, php-format
|
111 |
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
112 |
msgstr "Wenn Sie mehr Optionen benötigen, %s teilen Sie uns %s dies mit und wir werden sie gerne hinzufügen."
|
113 |
|
114 |
+
#: inc/php/page.php:90
|
115 |
msgid "Frequently Asked Questions"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: inc/php/page.php:94
|
119 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
120 |
msgstr "Wenn Sie Fragen haben, lesen Sie bitte die F.A.Q.s und schauen Sie nach, ob Ihre Antwort dabei ist."
|
121 |
|
122 |
+
#: inc/php/page.php:119
|
123 |
+
msgid "Where can I find a documentation for this plugin?"
|
124 |
+
msgstr ""
|
125 |
|
126 |
+
#: inc/php/page.php:124
|
127 |
+
#, php-format
|
128 |
+
msgid "Please visit our %s Documentation site %s to view documentation."
|
129 |
+
msgstr ""
|
130 |
+
|
131 |
+
#: inc/php/page.php:132
|
132 |
+
msgid "Will this plugin work on my wordpress.COM website?"
|
133 |
+
msgstr "Funktioniert dieses Plugin auf meiner wordpress.COM Webseite?"
|
134 |
+
|
135 |
+
#: inc/php/page.php:135
|
136 |
+
msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
|
137 |
+
msgstr "Leider nicht. Dieses Plugin ist nur verfügbar auf self-hosted (wordpress.ORG) Webseiten."
|
138 |
+
|
139 |
+
#: inc/php/page.php:137
|
140 |
+
msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
|
141 |
+
msgstr ""
|
142 |
+
|
143 |
+
#: inc/php/page.php:138
|
144 |
+
msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
|
145 |
+
msgstr ""
|
146 |
+
|
147 |
+
#: inc/php/page.php:141
|
148 |
+
#, php-format
|
149 |
+
msgid "You can learn more about the difference here: %s ."
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: inc/php/page.php:148
|
153 |
+
msgid "Will this plugin work/compatible with the theme I use?"
|
154 |
+
msgstr ""
|
155 |
+
|
156 |
+
#: inc/php/page.php:151
|
157 |
+
msgid "This plugin is compatible with most themes."
|
158 |
+
msgstr ""
|
159 |
+
|
160 |
+
#: inc/php/page.php:152
|
161 |
+
msgid "But, unfortunately, we cannot check it with all third-party themes (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party theme."
|
162 |
+
msgstr ""
|
163 |
+
|
164 |
+
#: inc/php/page.php:153
|
165 |
+
msgid "We constantly check this plugin for compatibility with third-party themes."
|
166 |
+
msgstr ""
|
167 |
+
|
168 |
+
#: inc/php/page.php:154
|
169 |
+
msgid "If we find that this plugin is incompatible with a third-party theme, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
170 |
+
msgstr ""
|
171 |
|
172 |
+
#: inc/php/page.php:156
|
173 |
+
msgid "If you find a conflict between our plugin and a third-party theme, please let us know and we will definitely release an update of our plugin to fix the problem."
|
174 |
+
msgstr ""
|
175 |
+
|
176 |
+
#: inc/php/page.php:160
|
177 |
+
msgid "Will this plugin work/compatible with other plugins that I use?"
|
178 |
+
msgstr ""
|
179 |
+
|
180 |
+
#: inc/php/page.php:163
|
181 |
+
msgid "This plugin is compatible with most plugins."
|
182 |
+
msgstr ""
|
183 |
+
|
184 |
+
#: inc/php/page.php:164
|
185 |
+
msgid "But, unfortunately, we cannot check it with all third-party plugins (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party plugin."
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: inc/php/page.php:165
|
189 |
+
msgid "We constantly check this plugin for compatibility with third-party plugins."
|
190 |
+
msgstr ""
|
191 |
+
|
192 |
+
#: inc/php/page.php:166
|
193 |
+
msgid "If we find that this plugin is incompatible with a third-party plugin, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
194 |
+
msgstr ""
|
195 |
+
|
196 |
+
#: inc/php/page.php:168
|
197 |
+
msgid "If you find a conflict between our plugin and a third-party plugin, please let us know and we will definitely release an update of our plugin to fix the problem."
|
198 |
+
msgstr ""
|
199 |
+
|
200 |
+
#: inc/php/page.php:172
|
201 |
msgid "Can I use this plugin on my language?"
|
202 |
msgstr "Kann ich das Plugin in meiner Sprache verwenden?"
|
203 |
|
204 |
+
#: inc/php/page.php:175
|
205 |
+
msgid "Yes."
|
206 |
+
msgstr "Ja."
|
207 |
+
|
208 |
+
#: inc/php/page.php:176
|
209 |
+
msgid "This plugin is ready for translation and has already been translated into several languages."
|
210 |
+
msgstr "Dieses Plugin übersetzbar und bereits in mehreren Sprachen verfügbar."
|
211 |
|
212 |
+
#: inc/php/page.php:177
|
213 |
+
msgid "But If your language is not available then you can make one."
|
|
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: inc/php/page.php:178
|
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 "Vielleicht sind nicht alle vorhandenen Übersetzungen aktuell. Gerne können Sie an den Korrekturen mitwirken."
|
219 |
|
220 |
+
#: inc/php/page.php:179
|
221 |
+
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
222 |
+
msgstr "Viele Benutzer des Plugins freuen sich darüber, wenn Sie Ihre Übersetzung mit der Öffentlichkeit teilen."
|
223 |
+
|
224 |
+
#: inc/php/page.php:180
|
225 |
+
msgid "Thanks for your contribution!"
|
226 |
+
msgstr "Danke für Ihre Mithilfe!"
|
227 |
+
|
228 |
+
#: inc/php/page.php:184
|
229 |
+
#, php-format
|
230 |
+
msgid "If you want to help translate this plugin, please visit the %s."
|
231 |
+
msgstr "Wenn Sie bei der Übersetzung dieses Plugins helfen wollen, bitte besuchen Sie %s."
|
232 |
+
|
233 |
+
#: inc/php/page.php:188
|
234 |
+
msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
|
235 |
+
msgstr "Sie können auch die POT Datei, die Sie im “languages” Ordner finden, verwenden, um eine PO Übersetzungsdatei zu erstellen."
|
236 |
|
237 |
+
#: inc/php/page.php:191
|
238 |
+
#, php-format
|
239 |
+
msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
|
240 |
+
msgstr "Senden Sie die übersetzte PO Datei an uns ( %s ) und wir werde die Übersetzung beim nächsten Plugin Update hinzufügen."
|
241 |
+
|
242 |
+
#: inc/php/page.php:198
|
243 |
msgid "How does it work?"
|
244 |
msgstr "Wie arbeitet das Plugin?"
|
245 |
|
246 |
+
#: inc/php/page.php:201
|
247 |
+
msgid "On the \"Settings\" tab, fill in the required fields and click the \"Save changes\" button."
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: inc/php/page.php:207
|
251 |
msgid "How much of description I can enter in the text field?"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: inc/php/page.php:210
|
255 |
msgid "We don't limit the number of characters, but most search engines use a maximum of 160 chars for the home description."
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: inc/php/page.php:214
|
259 |
msgid "How much of keywords I can enter in the text field?"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: inc/php/page.php:217
|
263 |
msgid "We don't limit the number of characters."
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: inc/php/page.php:221
|
267 |
+
msgid "What about compatibility with the plugin \"All in One SEO Pack\"?"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: inc/php/page.php:224
|
271 |
+
msgid "As far as we know, the \"All Meta Tags\" plugin is compatible with the \"All in One SEO Pack\" plugin."
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: inc/php/page.php:225 inc/php/page.php:242
|
275 |
+
msgid "But to make sure that these plugins do not conflict with each other, you need to follow one simple rule: do not fill the same field in both plugins at once."
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: inc/php/page.php:226
|
279 |
+
msgid "Otherwise both plugins fulfill their work and you will get a duplicate actions, for example:"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: inc/php/page.php:234 inc/php/page.php:245
|
283 |
+
msgid "If you find a conflict between the plugins, please let us know and we will definitely release an update of our plugin to fix the problem."
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: inc/php/page.php:238
|
287 |
msgid "What about compatibility with the plugin \"Yoast SEO\"?"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: inc/php/page.php:241
|
291 |
+
msgid "As far as we know, the \"All Meta Tags\" plugin is compatible with the \"Yoast SEO\" plugin."
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: inc/php/page.php:243
|
295 |
+
msgid "Otherwise both plugins fulfill their work and you will get a duplicate actions."
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: inc/php/page.php:249
|
299 |
msgid "Does this plugin requires any modification of the theme?"
|
300 |
msgstr "Benötigt das Plugin Veränderungen am Theme?"
|
301 |
|
302 |
+
#: inc/php/page.php:252 inc/php/page.php:260
|
303 |
+
msgid "Absolutely not."
|
304 |
+
msgstr "Absolut nicht."
|
305 |
+
|
306 |
+
#: inc/php/page.php:253
|
307 |
+
msgid "This plugin is configurable entirely from the plugin settings page."
|
308 |
+
msgstr "Alle Konfigurationen des Plugins finden Sie auf Einstellungsseite des Plugins."
|
309 |
|
310 |
+
#: inc/php/page.php:257
|
311 |
msgid "Does this require any knowledge of HTML or CSS?"
|
312 |
+
msgstr "Brauche ich HTML oder CSS Kenntnisse?"
|
313 |
|
314 |
+
#: inc/php/page.php:261
|
315 |
+
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
316 |
+
msgstr "Dieses Plugin kann ohne Kenntnisse von HTML oder CSS konfiguriert werden, using an easy-to-use plugin settings page."
|
317 |
|
318 |
+
#: inc/php/page.php:265
|
319 |
+
msgid "It's not working."
|
320 |
+
msgstr "Es funktioniert nicht."
|
321 |
+
|
322 |
+
#: inc/php/page.php:266
|
323 |
+
msgid "What could be wrong?"
|
324 |
+
msgstr "Was könnte falsch sein?"
|
325 |
+
|
326 |
+
#: inc/php/page.php:269
|
327 |
+
msgid "As with every plugin, it's possible that things don't work."
|
328 |
+
msgstr "Wie bei jedem Plugin ist es möglich, dass nicht alles funktioniert."
|
329 |
+
|
330 |
+
#: inc/php/page.php:270
|
331 |
+
msgid "It's impossible to tell what could be wrong exactly."
|
332 |
+
msgstr "Es ist unmöglich genau festzustellen was falsch ist."
|
333 |
+
|
334 |
+
#: inc/php/page.php:271
|
335 |
+
msgid "The most common reason for this is a web browser's cache."
|
336 |
+
msgstr "Der häufigste Grund dafür ist der Cache Ihres Webbrowsers."
|
337 |
+
|
338 |
+
#: inc/php/page.php:272
|
339 |
+
msgid "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load."
|
340 |
+
msgstr "Jeder Webbrowser speichert den Cache der besuchten Webseite (Seiten, Bilder, usw.) um die Bandbreite zu reduzieren."
|
341 |
|
342 |
+
#: inc/php/page.php:273
|
343 |
+
msgid "This is called the browser's cache."
|
344 |
+
msgstr "Das nennt man den Browser Cache."
|
345 |
|
346 |
+
#: inc/php/page.php:274
|
347 |
+
msgid "Clearing your browser's cache may solve the problem."
|
348 |
+
msgstr "Wenn Sie den Cache Ihres Browsers löschen, könnte das Problem behoben sein."
|
349 |
+
|
350 |
+
#: inc/php/page.php:276
|
351 |
+
msgid "If you post a support request in the plugin's support forum on WordPress.org, we'd be happy to give it a look and try to help out."
|
352 |
+
msgstr "Wenn Sie jedoch eine Support Anfrage im Plugins Support Forum von wordpress.ORG stellen, helfe wir Ihnen gerne."
|
353 |
+
|
354 |
+
#: inc/php/page.php:277 inc/php/page.php:315
|
355 |
+
msgid "Please include as much information as possible, including a link to your website where the problem can be seen."
|
356 |
+
msgstr "Bitte fügen Sie so viele Informationen wie möglich und einen Link zu der Webseite hinzu, wo das Problem auftritt."
|
357 |
+
|
358 |
+
#: inc/php/page.php:281
|
359 |
+
msgid "I can't get verify my website."
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: inc/php/page.php:282
|
363 |
+
msgid "What am I doing wrong?"
|
364 |
+
msgstr ""
|
365 |
|
366 |
+
#: inc/php/page.php:285
|
367 |
+
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>)."
|
368 |
+
msgstr ""
|
369 |
+
|
370 |
+
#: inc/php/page.php:286
|
371 |
+
msgid "So just paste that into the relevant field and you will see “Success” message appear within a few seconds."
|
372 |
+
msgstr ""
|
373 |
|
374 |
+
#: inc/php/page.php:290
|
375 |
+
msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
|
376 |
+
msgstr "Das letzte WordPress-Update hindert mich daran, meine Webseite, die dieses Plugin verwendet, zu bearbeiten."
|
377 |
+
|
378 |
+
#: inc/php/page.php:291
|
379 |
+
msgid "Why is this?"
|
380 |
+
msgstr "Warum ist das so?"
|
381 |
+
|
382 |
+
#: inc/php/page.php:294
|
383 |
+
msgid "This plugin can not cause such problem."
|
384 |
+
msgstr "Dieses Plugin kann ein solches Problem nicht verursachen."
|
385 |
+
|
386 |
+
#: inc/php/page.php:295
|
387 |
+
msgid "More likely, the problem are related to the settings of the website."
|
388 |
+
msgstr "Wahrscheinlich hängt das Problem mit den Einstellungen der Webseite zusammen."
|
389 |
+
|
390 |
+
#: inc/php/page.php:296
|
391 |
+
msgid "It could just be a cache, so please try to clear your website's cache (may be you using a caching plugin, or some web service such as the CloudFlare) and then the cache of your web browser."
|
392 |
+
msgstr "Es könnte einfach nur ein Cache sein. Versuchen Sie daher, den Cache Ihrer Webseite zu löschen (möglicherweise verwenden Sie ein Caching-Plugin oder einen Webservice wie CloudFlare) und danach den Cache Ihres Webbrowsers."
|
393 |
+
|
394 |
+
#: inc/php/page.php:297
|
395 |
+
msgid "Also please try to re-login to the website, this too can help."
|
396 |
+
msgstr "Versuchen Sie auch, sich erneut auf der Webseite anzumelden, auch dies kann helfen."
|
397 |
+
|
398 |
+
#: inc/php/page.php:301
|
399 |
msgid "Where to report bug if found?"
|
400 |
msgstr "Wo kann ich eine Fehler melden?"
|
401 |
|
402 |
+
#: inc/php/page.php:304
|
403 |
+
msgid "Bug reports are very welcome!"
|
404 |
+
msgstr ""
|
405 |
+
|
406 |
+
#: inc/php/page.php:307
|
407 |
#, php-format
|
408 |
+
msgid "Please visit our %s contact page %s and report."
|
409 |
+
msgstr "Bitte besuchen Sie unsere %s Kontaktseite %s und berichten Sie."
|
410 |
+
|
411 |
+
#: inc/php/page.php:312 inc/php/page.php:340
|
412 |
+
msgid "Please do not forget to specify the name of the plugin."
|
413 |
+
msgstr "Bitte vergiss nicht den Namen des Plugins anzugeben."
|
414 |
+
|
415 |
+
#: inc/php/page.php:313 inc/php/page.php:341 inc/php/page.php:357
|
416 |
+
msgid "Thank you!"
|
417 |
+
msgstr "Danke!"
|
418 |
+
|
419 |
+
#: inc/php/page.php:316
|
420 |
+
msgid "Describe in more detail what exactly you are seeing."
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: inc/php/page.php:317
|
424 |
+
msgid "Here are some examples:"
|
425 |
+
msgstr ""
|
426 |
+
|
427 |
+
#: inc/php/page.php:320
|
428 |
+
msgid "Elements of the plugin settings page are not working."
|
429 |
+
msgstr ""
|
430 |
+
|
431 |
+
#: inc/php/page.php:321
|
432 |
+
msgid "An error message is displayed on the plugin settings page."
|
433 |
+
msgstr ""
|
434 |
+
|
435 |
+
#: inc/php/page.php:322
|
436 |
+
msgid "An error message is displayed on the front end of website."
|
437 |
+
msgstr ""
|
438 |
+
|
439 |
+
#: inc/php/page.php:323
|
440 |
+
msgid "An error message is displayed on the back end of website."
|
441 |
+
msgstr ""
|
442 |
+
|
443 |
+
#: inc/php/page.php:324
|
444 |
+
msgid "Website is crashed."
|
445 |
+
msgstr ""
|
446 |
+
|
447 |
+
#: inc/php/page.php:329
|
448 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
449 |
msgstr "Wo können Sie Ideen oder Vorschläge loswerden, um das Plugin besser zu machen?"
|
450 |
|
451 |
+
#: inc/php/page.php:332
|
452 |
+
msgid "Any suggestions are very welcome!"
|
453 |
+
msgstr "Irgendwelche Vorschläge sind sehr willkommen!"
|
454 |
+
|
455 |
+
#: inc/php/page.php:335
|
456 |
+
#, php-format
|
457 |
+
msgid "Please visit our %s contact page %s."
|
458 |
+
msgstr "Bitte besuchen Sie unsere %s Kontaktseite %s."
|
459 |
+
|
460 |
+
#: inc/php/page.php:345
|
461 |
+
msgid "I love this plugin!"
|
462 |
+
msgstr "Ich liebe dieses Plugin!"
|
463 |
+
|
464 |
+
#: inc/php/page.php:346
|
465 |
+
msgid "Can I help somehow?"
|
466 |
+
msgstr "Kann ich Irgendwie helfen?"
|
467 |
+
|
468 |
+
#: inc/php/page.php:349
|
469 |
+
msgid "Yes, any contributions are very welcome!"
|
470 |
+
msgstr "Ja, jede Mithilfe ist sehr willkommen!"
|
471 |
+
|
472 |
+
#: inc/php/page.php:352
|
473 |
+
#, php-format
|
474 |
+
msgid "Please visit our %s Support Us %s page."
|
475 |
+
msgstr "Bitte besuchen Sie unsere %s Support Us %s Seite."
|
476 |
+
|
477 |
+
#: inc/php/page.php:361
|
478 |
+
msgid "Where can I find information about your licenses, payment process and refunds?"
|
479 |
+
msgstr ""
|
480 |
+
|
481 |
+
#: inc/php/page.php:366
|
482 |
+
#, php-format
|
483 |
+
msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
|
484 |
+
msgstr ""
|
485 |
+
|
486 |
+
#: inc/php/page.php:374
|
487 |
+
msgid "Where can I find information about your customer support?"
|
488 |
+
msgstr ""
|
489 |
+
|
490 |
+
#: inc/php/page.php:379
|
491 |
#, php-format
|
492 |
+
msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: inc/php/page.php:387
|
496 |
+
msgid "Where can I find information about your affiliate program?"
|
497 |
+
msgstr ""
|
498 |
|
499 |
+
#: inc/php/page.php:392
|
500 |
#, php-format
|
501 |
+
msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
|
502 |
+
msgstr ""
|
503 |
|
504 |
+
#: inc/php/page.php:400
|
505 |
msgid "My question wasn't answered here."
|
506 |
msgstr "Meine Fragen wurden nicht beantwortet."
|
507 |
|
508 |
+
#: inc/php/page.php:405
|
509 |
#, php-format
|
510 |
+
msgid "You can ask your question on %s this page %s."
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: inc/php/page.php:410
|
514 |
+
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."
|
515 |
+
msgstr "Aber bitte bedenken Sie, dass dieses Plugin kostenlos ist. Es gibt kein Support Team, deshalb habe wir keine Möglichkeit jedem zu antworten."
|
516 |
+
|
517 |
+
#: inc/php/page.php:421
|
518 |
msgid "Support Us"
|
519 |
msgstr "Unterstütze uns"
|
520 |
|
521 |
+
#: inc/php/page.php:429 inc/php/settings.php:226 inc/php/sidebar.php:46
|
522 |
msgid "Donate with PayPal"
|
523 |
msgstr "Spende mit PayPal"
|
524 |
|
525 |
+
#: inc/php/page.php:436
|
526 |
#, php-format
|
527 |
+
msgid "My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
528 |
+
msgstr "Meine name ist %s Arthur %s und ich bin der Gründer von %s Space X-Chimp %s, which unites a small international team of young people."
|
529 |
+
|
530 |
+
#: inc/php/page.php:445
|
531 |
+
msgid "Our intention is to create projects that will make this world a better place."
|
532 |
+
msgstr "Unser Absicht ist es, Projekte zu entwickeln, die diese Welt zu einem besseren Ort machen."
|
533 |
|
534 |
+
#: inc/php/page.php:446
|
535 |
+
msgid "Our motto is - «Follow your dreams and don’t give up»."
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: inc/php/page.php:447
|
539 |
+
msgid "We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
540 |
+
msgstr "Wir sind begeistert von unserer Arbeit, wir mag, was wir tue, und hoffe, dass Sie auch von unsere Projekten bereichert werden."
|
541 |
+
|
542 |
+
#: inc/php/page.php:450
|
543 |
+
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them."
|
544 |
+
msgstr "Wir haben viel Zeit und Mühe darauf verwendet sicherzustellen, dass die Themes, Plugins und andere Dinge, die wir entwickeln, nützlich sind. Der ultimative Beweis für uns ist, dass Sie sie tatsächlich verwenden."
|
545 |
+
|
546 |
+
#: inc/php/page.php:451
|
547 |
+
msgid "But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
548 |
+
msgstr ""
|
549 |
|
550 |
+
#: inc/php/page.php:454
|
551 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
552 |
+
msgstr "Wenn Ihnen unsere Arbeit gefällt, können Sie uns gerne einen Kaffee kaufen!"
|
553 |
|
554 |
+
#: inc/php/page.php:457
|
555 |
msgid "Thank you for your support!"
|
556 |
msgstr "Danke für Ihre Unterstützung!"
|
557 |
|
725 |
|
726 |
#: inc/php/sidebar.php:16
|
727 |
msgid "We are «Space X-Chimp»"
|
728 |
+
msgstr "Wir sind «Space X-Chimp»"
|
729 |
|
730 |
#: inc/php/sidebar.php:25
|
731 |
msgid "About"
|
732 |
msgstr "Über"
|
733 |
|
734 |
#: inc/php/sidebar.php:27
|
735 |
+
msgid "This plugin gives you the ability to easily and safely add your custom meta tags to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
|
736 |
msgstr ""
|
737 |
|
738 |
#: inc/php/sidebar.php:32
|
762 |
#. Author URI of the plugin/theme
|
763 |
msgid "https://www.spacexchimp.com"
|
764 |
msgstr "https://www.spacexchimp.com"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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-
|
7 |
-
"PO-Revision-Date: 2019-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Spanish\n"
|
10 |
"Language: es_ES\n"
|
@@ -20,7 +20,7 @@ msgstr ""
|
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
|
23 |
-
#: inc/php/core.php:23 inc/php/page.php:
|
24 |
msgid "Settings"
|
25 |
msgstr "Ajustes"
|
26 |
|
@@ -32,274 +32,532 @@ msgstr "Donar"
|
|
32 |
msgid "Meta Tags Inserter"
|
33 |
msgstr "Meta Tags Inserter"
|
34 |
|
35 |
-
#: inc/php/messages.php:
|
36 |
-
msgid "Hello
|
37 |
-
msgstr "Hola!
|
38 |
|
39 |
#: inc/php/messages.php:28
|
|
|
|
|
|
|
|
|
40 |
#, php-format
|
41 |
msgid "Thank you for installing our plugin! We hope you will love it! %s"
|
42 |
msgstr "Gracias por instalar este complemento! Espero que te encante! %s"
|
43 |
|
44 |
-
#: inc/php/messages.php:
|
45 |
msgid "You have installed an old version of this plugin."
|
46 |
msgstr "Has instalado una versión antigua de este complemento."
|
47 |
|
48 |
-
#: inc/php/messages.php:
|
49 |
msgid "Please update the plugin to the latest version, and all will be fine."
|
50 |
msgstr "Actualiza el complemento a la versión más reciente y todo estará bien."
|
51 |
|
52 |
-
#: inc/php/page.php:
|
53 |
#, php-format
|
54 |
msgid "by %s Space X-Chimp %s"
|
55 |
msgstr "por %s Space X-Chimp %s"
|
56 |
|
57 |
-
#: inc/php/page.php:
|
58 |
msgid "Version"
|
59 |
msgstr "Versión"
|
60 |
|
61 |
-
#: inc/php/page.php:
|
62 |
msgid "Usage"
|
63 |
msgstr "Uso"
|
64 |
|
65 |
-
#: inc/php/page.php:
|
66 |
msgid "F.A.Q."
|
67 |
msgstr "Preguntas ?"
|
68 |
|
69 |
-
#: inc/php/page.php:
|
70 |
msgid "Support"
|
71 |
msgstr "Soporte"
|
72 |
|
73 |
-
#: inc/php/page.php:
|
74 |
msgid "Store"
|
75 |
msgstr "Tienda"
|
76 |
|
77 |
-
#: inc/php/page.php:
|
78 |
msgid "Usage Instructions"
|
79 |
msgstr "Instrucciones de uso"
|
80 |
|
81 |
-
#: inc/php/page.php:
|
82 |
msgid "To add the meta tags to your website, simply follow these steps:"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: inc/php/page.php:
|
86 |
msgid "Go to the \"Settings\" tab on this page."
|
87 |
msgstr "Debes ir a la pestaña “Ajustes”."
|
88 |
|
89 |
-
#: inc/php/page.php:
|
90 |
msgid "Fill in the required fields."
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: inc/php/page.php:
|
94 |
msgid "Click the \"Save changes\" button."
|
95 |
-
msgstr "Clic en el botón \"Guardar
|
96 |
|
97 |
-
#: inc/php/page.php:
|
98 |
msgid "Enjoy the improved SEO of your website."
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: inc/php/page.php:
|
102 |
msgid "It's that simple!"
|
103 |
msgstr "¡Es así de simple!"
|
104 |
|
105 |
-
#: inc/php/page.php:
|
106 |
#, php-format
|
107 |
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
108 |
msgstr "Si quieres más opciones, %s díganos %s y estaremos encantados de añadirlo."
|
109 |
|
110 |
-
#: inc/php/page.php:
|
111 |
msgid "Frequently Asked Questions"
|
112 |
msgstr "Preguntas Frecuentes"
|
113 |
|
114 |
-
#: inc/php/page.php:
|
115 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
116 |
msgstr "Si tienes alguna pregunta, por favor lee las Preguntas Frecuentes a continuación, para ver si la respuesta está aquí."
|
117 |
|
118 |
-
#: inc/php/page.php:
|
119 |
-
msgid "
|
120 |
-
msgstr "
|
121 |
|
122 |
-
#: inc/php/page.php:
|
123 |
-
|
124 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
125 |
|
126 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
127 |
msgid "Can I use this plugin on my language?"
|
128 |
msgstr "¿Puedo usar este complemento en mi idioma?"
|
129 |
|
130 |
-
#: inc/php/page.php:
|
131 |
-
msgid "Yes.
|
132 |
-
msgstr "Sí.
|
|
|
|
|
|
|
|
|
133 |
|
134 |
-
#: inc/php/page.php:
|
135 |
-
|
136 |
-
|
137 |
-
msgstr "Si quieres ayudar a traducir este complemento, visita el %s. También puede utilizar el archivo POT, incluido y colocado en la carpeta “languages”, para crear un archivo PO de traducción. Simplemente envíeme el archivo PO en el %s e incluiremos esta traducción en la siguiente actualización del complemento."
|
138 |
|
139 |
-
#: inc/php/page.php:
|
140 |
-
msgid "
|
141 |
msgstr "Quizás no todas las traducciones existentes estén actualizadas. Le invitamos a contribuir correcciones!"
|
142 |
|
143 |
-
#: inc/php/page.php:
|
144 |
-
msgid "Many of plugin users would be delighted if you share your translation with the community.
|
145 |
-
msgstr "Muchos de los usuarios de este complemento estarían encantados si compartes tu traducción con la comunidad.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
146 |
|
147 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
148 |
msgid "How does it work?"
|
149 |
msgstr "¿Como funciona?"
|
150 |
|
151 |
-
#: inc/php/page.php:
|
152 |
-
msgid "On the \"Settings\" tab, fill in the required fields and click the \"Save changes\" button.
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: inc/php/page.php:
|
156 |
msgid "How much of description I can enter in the text field?"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: inc/php/page.php:
|
160 |
msgid "We don't limit the number of characters, but most search engines use a maximum of 160 chars for the home description."
|
161 |
-
msgstr ""
|
162 |
|
163 |
-
#: inc/php/page.php:
|
164 |
msgid "How much of keywords I can enter in the text field?"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: inc/php/page.php:
|
168 |
msgid "We don't limit the number of characters."
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: inc/php/page.php:
|
172 |
-
msgid "
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: inc/php/page.php:
|
176 |
-
msgid "
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: inc/php/page.php:
|
180 |
-
msgid "
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: inc/php/page.php:
|
184 |
-
msgid "
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: inc/php/page.php:
|
188 |
-
msgid "If you find a conflict between the plugins, please let us know and we will definitely release an update of
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: inc/php/page.php:
|
192 |
msgid "What about compatibility with the plugin \"Yoast SEO\"?"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: inc/php/page.php:
|
196 |
-
msgid "As far as we know, the \"All Meta Tags\" plugin is compatible with the \"Yoast SEO\" plugin.
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
200 |
msgid "Does this plugin requires any modification of the theme?"
|
201 |
msgstr "¿Este complemento requiere alguna modificación del tema?"
|
202 |
|
203 |
-
#: inc/php/page.php:
|
204 |
-
msgid "Absolutely not.
|
205 |
-
msgstr "Absolutamente
|
|
|
|
|
|
|
|
|
206 |
|
207 |
-
#: inc/php/page.php:
|
208 |
msgid "Does this require any knowledge of HTML or CSS?"
|
209 |
msgstr "¿Esto requiere algún conocimiento de HTML o CSS?"
|
210 |
|
211 |
-
#: inc/php/page.php:
|
212 |
-
msgid "
|
213 |
-
msgstr "
|
214 |
|
215 |
-
#: inc/php/page.php:
|
216 |
-
msgid "It's not working.
|
217 |
-
msgstr "No funciona.
|
218 |
|
219 |
-
#: inc/php/page.php:
|
220 |
-
msgid "
|
221 |
-
msgstr "
|
222 |
|
223 |
-
#: inc/php/page.php:
|
224 |
-
msgid "
|
225 |
-
msgstr "
|
226 |
|
227 |
-
#: inc/php/page.php:
|
228 |
-
msgid "
|
229 |
-
msgstr "
|
230 |
|
231 |
-
#: inc/php/page.php:
|
232 |
-
msgid "
|
233 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
234 |
|
235 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
236 |
msgid "Where to report bug if found?"
|
237 |
msgstr "¿Dónde informar el error si se encuentra?"
|
238 |
|
239 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
240 |
#, php-format
|
241 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
245 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
246 |
msgstr "¿Dónde compartir ideas o sugerencias para mejorar el complemento?"
|
247 |
|
248 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
249 |
#, php-format
|
250 |
-
msgid "
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: inc/php/page.php:
|
254 |
-
msgid "I
|
255 |
-
msgstr "
|
256 |
|
257 |
-
#: inc/php/page.php:
|
258 |
#, php-format
|
259 |
-
msgid "
|
260 |
-
msgstr "
|
261 |
|
262 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
263 |
msgid "My question wasn't answered here."
|
264 |
msgstr "Mi pregunta no fue contestada aquí."
|
265 |
|
266 |
-
#: inc/php/page.php:
|
267 |
#, php-format
|
268 |
-
msgid "You can ask your question on %s this page %s.
|
269 |
-
msgstr "Puede hacer
|
270 |
|
271 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
272 |
msgid "Support Us"
|
273 |
msgstr "¡Apoyanos!"
|
274 |
|
275 |
-
#: inc/php/page.php:
|
276 |
msgid "Donate with PayPal"
|
277 |
msgstr "Donar con PayPal"
|
278 |
|
279 |
-
#: inc/php/page.php:
|
280 |
#, php-format
|
281 |
-
msgid "
|
282 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
283 |
|
284 |
-
#: inc/php/page.php:
|
285 |
-
msgid "Our
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: inc/php/page.php:
|
289 |
-
msgid "We
|
290 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
291 |
|
292 |
-
#: inc/php/page.php:
|
293 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
294 |
msgstr "Si aprecias mi trabajo, puedes comprarme un café!"
|
295 |
|
296 |
-
#: inc/php/page.php:
|
297 |
msgid "Thank you for your support!"
|
298 |
msgstr "¡Gracias por tu apoyo!"
|
299 |
|
300 |
#: inc/php/settings.php:21 inc/php/settings.php:195
|
301 |
msgid "Save changes"
|
302 |
-
msgstr "Guardar
|
303 |
|
304 |
#: inc/php/settings.php:25
|
305 |
msgid "Web Master Tools"
|
@@ -474,8 +732,8 @@ msgid "About"
|
|
474 |
msgstr "Acerca de"
|
475 |
|
476 |
#: inc/php/sidebar.php:27
|
477 |
-
msgid "This plugin
|
478 |
-
msgstr "Este complemento
|
479 |
|
480 |
#: inc/php/sidebar.php:32
|
481 |
msgid "Help"
|
@@ -504,15 +762,3 @@ msgstr "Space X-Chimp"
|
|
504 |
#. Author URI of the plugin/theme
|
505 |
msgid "https://www.spacexchimp.com"
|
506 |
msgstr "https://www.spacexchimp.com"
|
507 |
-
|
508 |
-
#~ msgid "Note!"
|
509 |
-
#~ msgstr "¡Nota!"
|
510 |
-
|
511 |
-
#~ msgid "Select the desired settings."
|
512 |
-
#~ msgstr "Seleccione la configuración deseada."
|
513 |
-
|
514 |
-
#~ msgid "Easily and safely add your custom Meta Tags to WordPress website's header."
|
515 |
-
#~ msgstr "Añade de forma fácil y segura tus Meta Tags personalizadas en la cabecera de tu sitio web hecho en WordPress."
|
516 |
-
|
517 |
-
#~ msgid "Hello! My name is %s Arthur %s and I'm the founder of %s Space X-Chimp %s."
|
518 |
-
#~ msgstr "¡Hola! Mi nombre es %s Arthur %s y soy el fundador de %s Space X-Chimp %s."
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: All Meta Tags\n"
|
6 |
+
"POT-Creation-Date: 2019-02-20 23:15+0300\n"
|
7 |
+
"PO-Revision-Date: 2019-02-20 23:15+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Spanish\n"
|
10 |
"Language: es_ES\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
|
23 |
+
#: inc/php/core.php:23 inc/php/page.php:44
|
24 |
msgid "Settings"
|
25 |
msgstr "Ajustes"
|
26 |
|
32 |
msgid "Meta Tags Inserter"
|
33 |
msgstr "Meta Tags Inserter"
|
34 |
|
35 |
+
#: inc/php/messages.php:27 inc/php/page.php:433
|
36 |
+
msgid "Hello!"
|
37 |
+
msgstr "¡Hola!"
|
38 |
|
39 |
#: inc/php/messages.php:28
|
40 |
+
msgid "We are the team of Space X-Chimp."
|
41 |
+
msgstr "Somos el equipo de Space X-Chimp."
|
42 |
+
|
43 |
+
#: inc/php/messages.php:33
|
44 |
#, php-format
|
45 |
msgid "Thank you for installing our plugin! We hope you will love it! %s"
|
46 |
msgstr "Gracias por instalar este complemento! Espero que te encante! %s"
|
47 |
|
48 |
+
#: inc/php/messages.php:74
|
49 |
msgid "You have installed an old version of this plugin."
|
50 |
msgstr "Has instalado una versión antigua de este complemento."
|
51 |
|
52 |
+
#: inc/php/messages.php:75
|
53 |
msgid "Please update the plugin to the latest version, and all will be fine."
|
54 |
msgstr "Actualiza el complemento a la versión más reciente y todo estará bien."
|
55 |
|
56 |
+
#: inc/php/page.php:31
|
57 |
#, php-format
|
58 |
msgid "by %s Space X-Chimp %s"
|
59 |
msgstr "por %s Space X-Chimp %s"
|
60 |
|
61 |
+
#: inc/php/page.php:37
|
62 |
msgid "Version"
|
63 |
msgstr "Versión"
|
64 |
|
65 |
+
#: inc/php/page.php:45
|
66 |
msgid "Usage"
|
67 |
msgstr "Uso"
|
68 |
|
69 |
+
#: inc/php/page.php:46
|
70 |
msgid "F.A.Q."
|
71 |
msgstr "Preguntas ?"
|
72 |
|
73 |
+
#: inc/php/page.php:47 inc/php/settings.php:219 inc/php/sidebar.php:39
|
74 |
msgid "Support"
|
75 |
msgstr "Soporte"
|
76 |
|
77 |
+
#: inc/php/page.php:48
|
78 |
msgid "Store"
|
79 |
msgstr "Tienda"
|
80 |
|
81 |
+
#: inc/php/page.php:64
|
82 |
msgid "Usage Instructions"
|
83 |
msgstr "Instrucciones de uso"
|
84 |
|
85 |
+
#: inc/php/page.php:66
|
86 |
msgid "To add the meta tags to your website, simply follow these steps:"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: inc/php/page.php:68
|
90 |
msgid "Go to the \"Settings\" tab on this page."
|
91 |
msgstr "Debes ir a la pestaña “Ajustes”."
|
92 |
|
93 |
+
#: inc/php/page.php:69
|
94 |
msgid "Fill in the required fields."
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: inc/php/page.php:70
|
98 |
msgid "Click the \"Save changes\" button."
|
99 |
+
msgstr "Clic en el botón \"Guardar cambios\"."
|
100 |
|
101 |
+
#: inc/php/page.php:71 inc/php/page.php:202
|
102 |
msgid "Enjoy the improved SEO of your website."
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: inc/php/page.php:71 inc/php/page.php:203
|
106 |
msgid "It's that simple!"
|
107 |
msgstr "¡Es así de simple!"
|
108 |
|
109 |
+
#: inc/php/page.php:76
|
110 |
#, php-format
|
111 |
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
112 |
msgstr "Si quieres más opciones, %s díganos %s y estaremos encantados de añadirlo."
|
113 |
|
114 |
+
#: inc/php/page.php:90
|
115 |
msgid "Frequently Asked Questions"
|
116 |
msgstr "Preguntas Frecuentes"
|
117 |
|
118 |
+
#: inc/php/page.php:94
|
119 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
120 |
msgstr "Si tienes alguna pregunta, por favor lee las Preguntas Frecuentes a continuación, para ver si la respuesta está aquí."
|
121 |
|
122 |
+
#: inc/php/page.php:119
|
123 |
+
msgid "Where can I find a documentation for this plugin?"
|
124 |
+
msgstr ""
|
125 |
|
126 |
+
#: inc/php/page.php:124
|
127 |
+
#, php-format
|
128 |
+
msgid "Please visit our %s Documentation site %s to view documentation."
|
129 |
+
msgstr ""
|
130 |
+
|
131 |
+
#: inc/php/page.php:132
|
132 |
+
msgid "Will this plugin work on my wordpress.COM website?"
|
133 |
+
msgstr "¿Funcionará este complemento en mi sitio web wordpress.COM?"
|
134 |
+
|
135 |
+
#: inc/php/page.php:135
|
136 |
+
msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
|
137 |
+
msgstr "Lo sentimos, este complemento está disponible para su uso solo en sitios web alojados (wordpress.ORG)."
|
138 |
+
|
139 |
+
#: inc/php/page.php:137
|
140 |
+
msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
|
141 |
+
msgstr ""
|
142 |
+
|
143 |
+
#: inc/php/page.php:138
|
144 |
+
msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
|
145 |
+
msgstr ""
|
146 |
+
|
147 |
+
#: inc/php/page.php:141
|
148 |
+
#, php-format
|
149 |
+
msgid "You can learn more about the difference here: %s ."
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: inc/php/page.php:148
|
153 |
+
msgid "Will this plugin work/compatible with the theme I use?"
|
154 |
+
msgstr ""
|
155 |
+
|
156 |
+
#: inc/php/page.php:151
|
157 |
+
msgid "This plugin is compatible with most themes."
|
158 |
+
msgstr ""
|
159 |
+
|
160 |
+
#: inc/php/page.php:152
|
161 |
+
msgid "But, unfortunately, we cannot check it with all third-party themes (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party theme."
|
162 |
+
msgstr ""
|
163 |
+
|
164 |
+
#: inc/php/page.php:153
|
165 |
+
msgid "We constantly check this plugin for compatibility with third-party themes."
|
166 |
+
msgstr ""
|
167 |
+
|
168 |
+
#: inc/php/page.php:154
|
169 |
+
msgid "If we find that this plugin is incompatible with a third-party theme, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
170 |
+
msgstr ""
|
171 |
|
172 |
+
#: inc/php/page.php:156
|
173 |
+
msgid "If you find a conflict between our plugin and a third-party theme, please let us know and we will definitely release an update of our plugin to fix the problem."
|
174 |
+
msgstr ""
|
175 |
+
|
176 |
+
#: inc/php/page.php:160
|
177 |
+
msgid "Will this plugin work/compatible with other plugins that I use?"
|
178 |
+
msgstr ""
|
179 |
+
|
180 |
+
#: inc/php/page.php:163
|
181 |
+
msgid "This plugin is compatible with most plugins."
|
182 |
+
msgstr ""
|
183 |
+
|
184 |
+
#: inc/php/page.php:164
|
185 |
+
msgid "But, unfortunately, we cannot check it with all third-party plugins (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party plugin."
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: inc/php/page.php:165
|
189 |
+
msgid "We constantly check this plugin for compatibility with third-party plugins."
|
190 |
+
msgstr ""
|
191 |
+
|
192 |
+
#: inc/php/page.php:166
|
193 |
+
msgid "If we find that this plugin is incompatible with a third-party plugin, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
194 |
+
msgstr ""
|
195 |
+
|
196 |
+
#: inc/php/page.php:168
|
197 |
+
msgid "If you find a conflict between our plugin and a third-party plugin, please let us know and we will definitely release an update of our plugin to fix the problem."
|
198 |
+
msgstr ""
|
199 |
+
|
200 |
+
#: inc/php/page.php:172
|
201 |
msgid "Can I use this plugin on my language?"
|
202 |
msgstr "¿Puedo usar este complemento en mi idioma?"
|
203 |
|
204 |
+
#: inc/php/page.php:175
|
205 |
+
msgid "Yes."
|
206 |
+
msgstr "Sí."
|
207 |
+
|
208 |
+
#: inc/php/page.php:176
|
209 |
+
msgid "This plugin is ready for translation and has already been translated into several languages."
|
210 |
+
msgstr "Este complemento está listo para ser traducido y ya ha sido traducido a varios idiomas."
|
211 |
|
212 |
+
#: inc/php/page.php:177
|
213 |
+
msgid "But If your language is not available then you can make one."
|
214 |
+
msgstr ""
|
|
|
215 |
|
216 |
+
#: inc/php/page.php:178
|
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/page.php:179
|
221 |
+
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
222 |
+
msgstr "Muchos de los usuarios de este complemento estarían encantados si compartes tu traducción con la comunidad."
|
223 |
+
|
224 |
+
#: inc/php/page.php:180
|
225 |
+
msgid "Thanks for your contribution!"
|
226 |
+
msgstr "¡Gracias por tu contribución!"
|
227 |
+
|
228 |
+
#: inc/php/page.php:184
|
229 |
+
#, php-format
|
230 |
+
msgid "If you want to help translate this plugin, please visit the %s."
|
231 |
+
msgstr "Si quieres ayudar a traducir este complemento, por favor visite el %s."
|
232 |
+
|
233 |
+
#: inc/php/page.php:188
|
234 |
+
msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
|
235 |
+
msgstr "También puede utilizar el archivo POT, incluido y colocado en la carpeta “languages”, para crear un archivo PO de traducción."
|
236 |
|
237 |
+
#: inc/php/page.php:191
|
238 |
+
#, php-format
|
239 |
+
msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
|
240 |
+
msgstr "Simplemente envíenos ( %s ) el archivo PO e incluiremos esta traducción en la siguiente actualización del complemento."
|
241 |
+
|
242 |
+
#: inc/php/page.php:198
|
243 |
msgid "How does it work?"
|
244 |
msgstr "¿Como funciona?"
|
245 |
|
246 |
+
#: inc/php/page.php:201
|
247 |
+
msgid "On the \"Settings\" tab, fill in the required fields and click the \"Save changes\" button."
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: inc/php/page.php:207
|
251 |
msgid "How much of description I can enter in the text field?"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: inc/php/page.php:210
|
255 |
msgid "We don't limit the number of characters, but most search engines use a maximum of 160 chars for the home description."
|
256 |
+
msgstr "No limitamos el número de caracteres, pero la mayoría de los motores de búsqueda usa un máximo de 160 caracteres para esta descripción."
|
257 |
|
258 |
+
#: inc/php/page.php:214
|
259 |
msgid "How much of keywords I can enter in the text field?"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: inc/php/page.php:217
|
263 |
msgid "We don't limit the number of characters."
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: inc/php/page.php:221
|
267 |
+
msgid "What about compatibility with the plugin \"All in One SEO Pack\"?"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: inc/php/page.php:224
|
271 |
+
msgid "As far as we know, the \"All Meta Tags\" plugin is compatible with the \"All in One SEO Pack\" plugin."
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: inc/php/page.php:225 inc/php/page.php:242
|
275 |
+
msgid "But to make sure that these plugins do not conflict with each other, you need to follow one simple rule: do not fill the same field in both plugins at once."
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: inc/php/page.php:226
|
279 |
+
msgid "Otherwise both plugins fulfill their work and you will get a duplicate actions, for example:"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: inc/php/page.php:234 inc/php/page.php:245
|
283 |
+
msgid "If you find a conflict between the plugins, please let us know and we will definitely release an update of our plugin to fix the problem."
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: inc/php/page.php:238
|
287 |
msgid "What about compatibility with the plugin \"Yoast SEO\"?"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: inc/php/page.php:241
|
291 |
+
msgid "As far as we know, the \"All Meta Tags\" plugin is compatible with the \"Yoast SEO\" plugin."
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: inc/php/page.php:243
|
295 |
+
msgid "Otherwise both plugins fulfill their work and you will get a duplicate actions."
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: inc/php/page.php:249
|
299 |
msgid "Does this plugin requires any modification of the theme?"
|
300 |
msgstr "¿Este complemento requiere alguna modificación del tema?"
|
301 |
|
302 |
+
#: inc/php/page.php:252 inc/php/page.php:260
|
303 |
+
msgid "Absolutely not."
|
304 |
+
msgstr "Absolutamente no."
|
305 |
+
|
306 |
+
#: inc/php/page.php:253
|
307 |
+
msgid "This plugin is configurable entirely from the plugin settings page."
|
308 |
+
msgstr "Este complemento se puede configurar completamente desde su página de configuración."
|
309 |
|
310 |
+
#: inc/php/page.php:257
|
311 |
msgid "Does this require any knowledge of HTML or CSS?"
|
312 |
msgstr "¿Esto requiere algún conocimiento de HTML o CSS?"
|
313 |
|
314 |
+
#: inc/php/page.php:261
|
315 |
+
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
316 |
+
msgstr "Este complemento se puede configurar sin conocimientos de HTML o CSS, utilizando su página de configuración la cual es fácil de usar."
|
317 |
|
318 |
+
#: inc/php/page.php:265
|
319 |
+
msgid "It's not working."
|
320 |
+
msgstr "No funciona."
|
321 |
|
322 |
+
#: inc/php/page.php:266
|
323 |
+
msgid "What could be wrong?"
|
324 |
+
msgstr "¿Qué podría estar mal?"
|
325 |
|
326 |
+
#: inc/php/page.php:269
|
327 |
+
msgid "As with every plugin, it's possible that things don't work."
|
328 |
+
msgstr "Como con todos los complementos, es posible que las cosas no funcionen."
|
329 |
|
330 |
+
#: inc/php/page.php:270
|
331 |
+
msgid "It's impossible to tell what could be wrong exactly."
|
332 |
+
msgstr "Es imposible decir exactamente lo que podría estar mal."
|
333 |
|
334 |
+
#: inc/php/page.php:271
|
335 |
+
msgid "The most common reason for this is a web browser's cache."
|
336 |
+
msgstr "La razón más común para esto es la caché de un navegador web."
|
337 |
+
|
338 |
+
#: inc/php/page.php:272
|
339 |
+
msgid "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load."
|
340 |
+
msgstr "Cada navegador web almacena una caché de los sitios web que visitas (páginas, imágenes y etc.) para reducir el uso del ancho de banda y la carga del servidor."
|
341 |
+
|
342 |
+
#: inc/php/page.php:273
|
343 |
+
msgid "This is called the browser's cache."
|
344 |
+
msgstr "Esto se denomina caché del navegador."
|
345 |
+
|
346 |
+
#: inc/php/page.php:274
|
347 |
+
msgid "Clearing your browser's cache may solve the problem."
|
348 |
+
msgstr "Limpiar la caché del navegador puede resolver el problema."
|
349 |
+
|
350 |
+
#: inc/php/page.php:276
|
351 |
+
msgid "If you post a support request in the plugin's support forum on WordPress.org, we'd be happy to give it a look and try to help out."
|
352 |
+
msgstr "Si publicas una solicitud de soporte en el foro de soporte del complemento en WordPress.org, estaría encantado de darle un vistazo e intentar ayudarte."
|
353 |
+
|
354 |
+
#: inc/php/page.php:277 inc/php/page.php:315
|
355 |
+
msgid "Please include as much information as possible, including a link to your website where the problem can be seen."
|
356 |
+
msgstr "Incluye tanta información como sea posible, incluyendo un enlace a tu sitio web donde se pueda ver el problema."
|
357 |
+
|
358 |
+
#: inc/php/page.php:281
|
359 |
+
msgid "I can't get verify my website."
|
360 |
+
msgstr ""
|
361 |
+
|
362 |
+
#: inc/php/page.php:282
|
363 |
+
msgid "What am I doing wrong?"
|
364 |
+
msgstr ""
|
365 |
+
|
366 |
+
#: inc/php/page.php:285
|
367 |
+
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>)."
|
368 |
+
msgstr ""
|
369 |
|
370 |
+
#: inc/php/page.php:286
|
371 |
+
msgid "So just paste that into the relevant field and you will see “Success” message appear within a few seconds."
|
372 |
+
msgstr ""
|
373 |
+
|
374 |
+
#: inc/php/page.php:290
|
375 |
+
msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
|
376 |
+
msgstr "La última actualización de WordPress me impide editar mi sitio web que está utilizando este complemento."
|
377 |
+
|
378 |
+
#: inc/php/page.php:291
|
379 |
+
msgid "Why is this?"
|
380 |
+
msgstr "¿Porqué sucede esto?"
|
381 |
+
|
382 |
+
#: inc/php/page.php:294
|
383 |
+
msgid "This plugin can not cause such problem."
|
384 |
+
msgstr "Este complemento no puede causar este problema."
|
385 |
+
|
386 |
+
#: inc/php/page.php:295
|
387 |
+
msgid "More likely, the problem are related to the settings of the website."
|
388 |
+
msgstr "Lo más probable es que el problema esté relacionado con la configuración del sitio web."
|
389 |
+
|
390 |
+
#: inc/php/page.php:296
|
391 |
+
msgid "It could just be a cache, so please try to clear your website's cache (may be you using a caching plugin, or some web service such as the CloudFlare) and then the cache of your web browser."
|
392 |
+
msgstr "Podría ser sólo la caché, así que intenta borrar la caché de tu sitio web (puede ser que utilices un complemento de caché o algún servicio web como CloudFlare) y luego la caché de tu navegador web."
|
393 |
+
|
394 |
+
#: inc/php/page.php:297
|
395 |
+
msgid "Also please try to re-login to the website, this too can help."
|
396 |
+
msgstr "También intenta volver a conectarte al sitio web, esto también puede ayudar."
|
397 |
+
|
398 |
+
#: inc/php/page.php:301
|
399 |
msgid "Where to report bug if found?"
|
400 |
msgstr "¿Dónde informar el error si se encuentra?"
|
401 |
|
402 |
+
#: inc/php/page.php:304
|
403 |
+
msgid "Bug reports are very welcome!"
|
404 |
+
msgstr "¡Informes de errores son bienvenidos!"
|
405 |
+
|
406 |
+
#: inc/php/page.php:307
|
407 |
#, php-format
|
408 |
+
msgid "Please visit our %s contact page %s and report."
|
409 |
+
msgstr "Por favor visite nuestra %s página de contacto %s e informa."
|
410 |
+
|
411 |
+
#: inc/php/page.php:312 inc/php/page.php:340
|
412 |
+
msgid "Please do not forget to specify the name of the plugin."
|
413 |
+
msgstr "No olvides especificar el nombre del complemento."
|
414 |
+
|
415 |
+
#: inc/php/page.php:313 inc/php/page.php:341 inc/php/page.php:357
|
416 |
+
msgid "Thank you!"
|
417 |
+
msgstr "¡Gracias!"
|
418 |
+
|
419 |
+
#: inc/php/page.php:316
|
420 |
+
msgid "Describe in more detail what exactly you are seeing."
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: inc/php/page.php:317
|
424 |
+
msgid "Here are some examples:"
|
425 |
+
msgstr ""
|
426 |
+
|
427 |
+
#: inc/php/page.php:320
|
428 |
+
msgid "Elements of the plugin settings page are not working."
|
429 |
+
msgstr ""
|
430 |
+
|
431 |
+
#: inc/php/page.php:321
|
432 |
+
msgid "An error message is displayed on the plugin settings page."
|
433 |
+
msgstr ""
|
434 |
+
|
435 |
+
#: inc/php/page.php:322
|
436 |
+
msgid "An error message is displayed on the front end of website."
|
437 |
+
msgstr ""
|
438 |
+
|
439 |
+
#: inc/php/page.php:323
|
440 |
+
msgid "An error message is displayed on the back end of website."
|
441 |
+
msgstr ""
|
442 |
+
|
443 |
+
#: inc/php/page.php:324
|
444 |
+
msgid "Website is crashed."
|
445 |
+
msgstr ""
|
446 |
+
|
447 |
+
#: inc/php/page.php:329
|
448 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
449 |
msgstr "¿Dónde compartir ideas o sugerencias para mejorar el complemento?"
|
450 |
|
451 |
+
#: inc/php/page.php:332
|
452 |
+
msgid "Any suggestions are very welcome!"
|
453 |
+
msgstr "Cualquier sugerencia es muy bienvenida!"
|
454 |
+
|
455 |
+
#: inc/php/page.php:335
|
456 |
+
#, php-format
|
457 |
+
msgid "Please visit our %s contact page %s."
|
458 |
+
msgstr "Por favor visite nuestra %s página de contacto %s."
|
459 |
+
|
460 |
+
#: inc/php/page.php:345
|
461 |
+
msgid "I love this plugin!"
|
462 |
+
msgstr "Me encanta este complemento!"
|
463 |
+
|
464 |
+
#: inc/php/page.php:346
|
465 |
+
msgid "Can I help somehow?"
|
466 |
+
msgstr "¿Puedo ayudar de alguna manera?"
|
467 |
+
|
468 |
+
#: inc/php/page.php:349
|
469 |
+
msgid "Yes, any contributions are very welcome!"
|
470 |
+
msgstr "Sí, cualquier contribución es muy bienvenida!"
|
471 |
+
|
472 |
+
#: inc/php/page.php:352
|
473 |
+
#, php-format
|
474 |
+
msgid "Please visit our %s Support Us %s page."
|
475 |
+
msgstr "Por favor visite nuestra página de %s Apóyenos %s."
|
476 |
+
|
477 |
+
#: inc/php/page.php:361
|
478 |
+
msgid "Where can I find information about your licenses, payment process and refunds?"
|
479 |
+
msgstr ""
|
480 |
+
|
481 |
+
#: inc/php/page.php:366
|
482 |
#, php-format
|
483 |
+
msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: inc/php/page.php:374
|
487 |
+
msgid "Where can I find information about your customer support?"
|
488 |
+
msgstr ""
|
489 |
|
490 |
+
#: inc/php/page.php:379
|
491 |
#, php-format
|
492 |
+
msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
|
493 |
+
msgstr ""
|
494 |
|
495 |
+
#: inc/php/page.php:387
|
496 |
+
msgid "Where can I find information about your affiliate program?"
|
497 |
+
msgstr ""
|
498 |
+
|
499 |
+
#: inc/php/page.php:392
|
500 |
+
#, php-format
|
501 |
+
msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
|
502 |
+
msgstr ""
|
503 |
+
|
504 |
+
#: inc/php/page.php:400
|
505 |
msgid "My question wasn't answered here."
|
506 |
msgstr "Mi pregunta no fue contestada aquí."
|
507 |
|
508 |
+
#: inc/php/page.php:405
|
509 |
#, php-format
|
510 |
+
msgid "You can ask your question on %s this page %s."
|
511 |
+
msgstr "Puede hacer su pregunta en %s esta página %s."
|
512 |
|
513 |
+
#: inc/php/page.php:410
|
514 |
+
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."
|
515 |
+
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."
|
516 |
+
|
517 |
+
#: inc/php/page.php:421
|
518 |
msgid "Support Us"
|
519 |
msgstr "¡Apoyanos!"
|
520 |
|
521 |
+
#: inc/php/page.php:429 inc/php/settings.php:226 inc/php/sidebar.php:46
|
522 |
msgid "Donate with PayPal"
|
523 |
msgstr "Donar con PayPal"
|
524 |
|
525 |
+
#: inc/php/page.php:436
|
526 |
#, php-format
|
527 |
+
msgid "My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
528 |
+
msgstr "Mi nombre es %s Arthur %s y soy el fundador de %s Space X-Chimp %s, which unites a small international team of young people."
|
529 |
+
|
530 |
+
#: inc/php/page.php:445
|
531 |
+
msgid "Our intention is to create projects that will make this world a better place."
|
532 |
+
msgstr "Nuestra intención es crear proyectos que hagan de este mundo un lugar mejor."
|
533 |
|
534 |
+
#: inc/php/page.php:446
|
535 |
+
msgid "Our motto is - «Follow your dreams and don’t give up»."
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: inc/php/page.php:447
|
539 |
+
msgid "We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
540 |
+
msgstr "Nos realmente apasionado por nuestro trabajo, nos gusta lo que estamos haciendo y esperamos que tú también te enriquezcas con nos proyectos."
|
541 |
+
|
542 |
+
#: inc/php/page.php:450
|
543 |
+
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them."
|
544 |
+
msgstr "Gastamos mucho tiempo y esfuerzo tratando de asegurarme que los temas, complementos y otras cosas que construyamos sean útiles, y la prueba definitiva para nosotros de que son útiles, es que realmente desea utilizarlos."
|
545 |
+
|
546 |
+
#: inc/php/page.php:451
|
547 |
+
msgid "But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
548 |
+
msgstr "Pero, somos desarrolladores independientes, sin un ingreso regular, por lo que cada pequeña contribución nos ayuda a cubrir nuestros costos y nos permite dedicar más tiempo a construir cosas para que las personas como usted las disfruten."
|
549 |
|
550 |
+
#: inc/php/page.php:454
|
551 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
552 |
msgstr "Si aprecias mi trabajo, puedes comprarme un café!"
|
553 |
|
554 |
+
#: inc/php/page.php:457
|
555 |
msgid "Thank you for your support!"
|
556 |
msgstr "¡Gracias por tu apoyo!"
|
557 |
|
558 |
#: inc/php/settings.php:21 inc/php/settings.php:195
|
559 |
msgid "Save changes"
|
560 |
+
msgstr "Guardar cambios"
|
561 |
|
562 |
#: inc/php/settings.php:25
|
563 |
msgid "Web Master Tools"
|
732 |
msgstr "Acerca de"
|
733 |
|
734 |
#: inc/php/sidebar.php:27
|
735 |
+
msgid "This plugin gives you the ability to easily and safely add your custom meta tags to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
|
736 |
+
msgstr "Este complemento le brinda la posibilidad de agregar de forma fácil y segura sus meta etiquetas personalizadas a su sitio web de WordPress, directamente fuera del área de administración de WordPress, sin la necesidad de tener un editor externo."
|
737 |
|
738 |
#: inc/php/sidebar.php:32
|
739 |
msgid "Help"
|
762 |
#. Author URI of the plugin/theme
|
763 |
msgid "https://www.spacexchimp.com"
|
764 |
msgstr "https://www.spacexchimp.com"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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-
|
7 |
-
"PO-Revision-Date: 2019-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Spanish (Mexico)\n"
|
10 |
"Language: es_MX\n"
|
@@ -21,7 +21,7 @@ msgstr ""
|
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
22 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
23 |
|
24 |
-
#: inc/php/core.php:23 inc/php/page.php:
|
25 |
msgid "Settings"
|
26 |
msgstr "Ajustes"
|
27 |
|
@@ -33,268 +33,526 @@ msgstr "Donar"
|
|
33 |
msgid "Meta Tags Inserter"
|
34 |
msgstr "Meta Tags Inserter"
|
35 |
|
36 |
-
#: inc/php/messages.php:
|
37 |
-
msgid "Hello
|
38 |
-
msgstr ""
|
39 |
|
40 |
#: inc/php/messages.php:28
|
|
|
|
|
|
|
|
|
41 |
#, php-format
|
42 |
msgid "Thank you for installing our plugin! We hope you will love it! %s"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: inc/php/messages.php:
|
46 |
msgid "You have installed an old version of this plugin."
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: inc/php/messages.php:
|
50 |
msgid "Please update the plugin to the latest version, and all will be fine."
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: inc/php/page.php:
|
54 |
#, php-format
|
55 |
msgid "by %s Space X-Chimp %s"
|
56 |
msgstr "por %s Space X-Chimp %s"
|
57 |
|
58 |
-
#: inc/php/page.php:
|
59 |
msgid "Version"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: inc/php/page.php:
|
63 |
msgid "Usage"
|
64 |
msgstr "Uso"
|
65 |
|
66 |
-
#: inc/php/page.php:
|
67 |
msgid "F.A.Q."
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: inc/php/page.php:
|
71 |
msgid "Support"
|
72 |
msgstr "Soporte"
|
73 |
|
74 |
-
#: inc/php/page.php:
|
75 |
msgid "Store"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: inc/php/page.php:
|
79 |
msgid "Usage Instructions"
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: inc/php/page.php:
|
83 |
msgid "To add the meta tags to your website, simply follow these steps:"
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: inc/php/page.php:
|
87 |
msgid "Go to the \"Settings\" tab on this page."
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: inc/php/page.php:
|
91 |
msgid "Fill in the required fields."
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: inc/php/page.php:
|
95 |
msgid "Click the \"Save changes\" button."
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: inc/php/page.php:
|
99 |
msgid "Enjoy the improved SEO of your website."
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: inc/php/page.php:
|
103 |
msgid "It's that simple!"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: inc/php/page.php:
|
107 |
#, php-format
|
108 |
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: inc/php/page.php:
|
112 |
msgid "Frequently Asked Questions"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: inc/php/page.php:
|
116 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: inc/php/page.php:
|
120 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: inc/php/page.php:
|
124 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
128 |
msgid "Can I use this plugin on my language?"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: inc/php/page.php:
|
132 |
-
msgid "Yes.
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
136 |
#, php-format
|
137 |
-
msgid "If you want to help translate this plugin
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: inc/php/page.php:
|
141 |
-
msgid "
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: inc/php/page.php:
|
145 |
-
|
|
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: inc/php/page.php:
|
149 |
msgid "How does it work?"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: inc/php/page.php:
|
153 |
-
msgid "On the \"Settings\" tab, fill in the required fields and click the \"Save changes\" button.
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: inc/php/page.php:
|
157 |
msgid "How much of description I can enter in the text field?"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: inc/php/page.php:
|
161 |
msgid "We don't limit the number of characters, but most search engines use a maximum of 160 chars for the home description."
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: inc/php/page.php:
|
165 |
msgid "How much of keywords I can enter in the text field?"
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: inc/php/page.php:
|
169 |
msgid "We don't limit the number of characters."
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: inc/php/page.php:
|
173 |
-
msgid "
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: inc/php/page.php:
|
177 |
-
msgid "
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: inc/php/page.php:
|
181 |
-
msgid "
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: inc/php/page.php:
|
185 |
-
msgid "
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: inc/php/page.php:
|
189 |
-
msgid "If you find a conflict between the plugins, please let us know and we will definitely release an update of
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: inc/php/page.php:
|
193 |
msgid "What about compatibility with the plugin \"Yoast SEO\"?"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: inc/php/page.php:
|
197 |
-
msgid "As far as we know, the \"All Meta Tags\" plugin is compatible with the \"Yoast SEO\" plugin.
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
201 |
msgid "Does this plugin requires any modification of the theme?"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: inc/php/page.php:
|
205 |
-
msgid "Absolutely not.
|
|
|
|
|
|
|
|
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: inc/php/page.php:
|
209 |
msgid "Does this require any knowledge of HTML or CSS?"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: inc/php/page.php:
|
213 |
-
msgid "
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: inc/php/page.php:
|
217 |
-
msgid "It's not working.
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: inc/php/page.php:
|
221 |
-
msgid "
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: inc/php/page.php:
|
225 |
-
msgid "
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: inc/php/page.php:
|
229 |
-
msgid "
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: inc/php/page.php:
|
233 |
-
msgid "
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
237 |
msgid "Where to report bug if found?"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
241 |
#, php-format
|
242 |
-
msgid "
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
246 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
250 |
#, php-format
|
251 |
-
msgid "
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: inc/php/page.php:
|
255 |
-
msgid "I love this plugin!
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
259 |
#, php-format
|
260 |
-
msgid "
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
264 |
msgid "My question wasn't answered here."
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: inc/php/page.php:
|
268 |
#, php-format
|
269 |
-
msgid "You can ask your question on %s this page %s.
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
273 |
msgid "Support Us"
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: inc/php/page.php:
|
277 |
msgid "Donate with PayPal"
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: inc/php/page.php:
|
281 |
#, php-format
|
282 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: inc/php/page.php:
|
286 |
-
msgid "
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: inc/php/page.php:
|
290 |
-
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them.
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
294 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: inc/php/page.php:
|
298 |
msgid "Thank you for your support!"
|
299 |
msgstr ""
|
300 |
|
@@ -464,7 +722,7 @@ msgstr "Si te gusta este plugin y lo encuentras útil, por favor ayudame hacer e
|
|
464 |
|
465 |
#: inc/php/settings.php:228 inc/php/sidebar.php:48
|
466 |
msgid "Thanks for your support!"
|
467 |
-
msgstr "Gracias por su apoyo!"
|
468 |
|
469 |
#: inc/php/sidebar.php:16
|
470 |
msgid "We are «Space X-Chimp»"
|
@@ -475,7 +733,7 @@ msgid "About"
|
|
475 |
msgstr "Acerca"
|
476 |
|
477 |
#: inc/php/sidebar.php:27
|
478 |
-
msgid "This plugin
|
479 |
msgstr "Este complemento te permite agregar fácilmente Meta Tags a tu sitio web."
|
480 |
|
481 |
#: inc/php/sidebar.php:32
|
@@ -496,7 +754,7 @@ msgstr "https://github.com/ArthurGareginyan/all-meta-tags"
|
|
496 |
|
497 |
#. Description of the plugin/theme
|
498 |
msgid "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."
|
499 |
-
msgstr ""
|
500 |
|
501 |
#. Author of the plugin/theme
|
502 |
msgid "Space X-Chimp"
|
@@ -505,9 +763,3 @@ msgstr "Space X-Chimp"
|
|
505 |
#. Author URI of the plugin/theme
|
506 |
msgid "https://www.spacexchimp.com"
|
507 |
msgstr "https://www.spacexchimp.com"
|
508 |
-
|
509 |
-
#~ msgid "Easily and safely add your custom Meta Tags to WordPress website's header."
|
510 |
-
#~ msgstr "La forma más fácil y segura para agregar Meta Tags a la cabecera de tu sitio WordPress."
|
511 |
-
|
512 |
-
#~ msgid "Hello! My name is %s Arthur %s and I'm the founder of %s Space X-Chimp %s."
|
513 |
-
#~ msgstr "¡Hola! Mi nombre es %s Arthur %s y soy el fundador de %s Space X-Chimp %s."
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: All Meta Tags\n"
|
6 |
+
"POT-Creation-Date: 2019-02-20 23:15+0300\n"
|
7 |
+
"PO-Revision-Date: 2019-02-20 23:15+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Spanish (Mexico)\n"
|
10 |
"Language: es_MX\n"
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
22 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
23 |
|
24 |
+
#: inc/php/core.php:23 inc/php/page.php:44
|
25 |
msgid "Settings"
|
26 |
msgstr "Ajustes"
|
27 |
|
33 |
msgid "Meta Tags Inserter"
|
34 |
msgstr "Meta Tags Inserter"
|
35 |
|
36 |
+
#: inc/php/messages.php:27 inc/php/page.php:433
|
37 |
+
msgid "Hello!"
|
38 |
+
msgstr "¡Hola!"
|
39 |
|
40 |
#: inc/php/messages.php:28
|
41 |
+
msgid "We are the team of Space X-Chimp."
|
42 |
+
msgstr ""
|
43 |
+
|
44 |
+
#: inc/php/messages.php:33
|
45 |
#, php-format
|
46 |
msgid "Thank you for installing our plugin! We hope you will love it! %s"
|
47 |
msgstr ""
|
48 |
|
49 |
+
#: inc/php/messages.php:74
|
50 |
msgid "You have installed an old version of this plugin."
|
51 |
msgstr ""
|
52 |
|
53 |
+
#: inc/php/messages.php:75
|
54 |
msgid "Please update the plugin to the latest version, and all will be fine."
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: inc/php/page.php:31
|
58 |
#, php-format
|
59 |
msgid "by %s Space X-Chimp %s"
|
60 |
msgstr "por %s Space X-Chimp %s"
|
61 |
|
62 |
+
#: inc/php/page.php:37
|
63 |
msgid "Version"
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: inc/php/page.php:45
|
67 |
msgid "Usage"
|
68 |
msgstr "Uso"
|
69 |
|
70 |
+
#: inc/php/page.php:46
|
71 |
msgid "F.A.Q."
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: inc/php/page.php:47 inc/php/settings.php:219 inc/php/sidebar.php:39
|
75 |
msgid "Support"
|
76 |
msgstr "Soporte"
|
77 |
|
78 |
+
#: inc/php/page.php:48
|
79 |
msgid "Store"
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: inc/php/page.php:64
|
83 |
msgid "Usage Instructions"
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: inc/php/page.php:66
|
87 |
msgid "To add the meta tags to your website, simply follow these steps:"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: inc/php/page.php:68
|
91 |
msgid "Go to the \"Settings\" tab on this page."
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: inc/php/page.php:69
|
95 |
msgid "Fill in the required fields."
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: inc/php/page.php:70
|
99 |
msgid "Click the \"Save changes\" button."
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: inc/php/page.php:71 inc/php/page.php:202
|
103 |
msgid "Enjoy the improved SEO of your website."
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: inc/php/page.php:71 inc/php/page.php:203
|
107 |
msgid "It's that simple!"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: inc/php/page.php:76
|
111 |
#, php-format
|
112 |
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: inc/php/page.php:90
|
116 |
msgid "Frequently Asked Questions"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: inc/php/page.php:94
|
120 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: inc/php/page.php:119
|
124 |
+
msgid "Where can I find a documentation for this plugin?"
|
125 |
+
msgstr ""
|
126 |
+
|
127 |
+
#: inc/php/page.php:124
|
128 |
+
#, php-format
|
129 |
+
msgid "Please visit our %s Documentation site %s to view documentation."
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: inc/php/page.php:132
|
133 |
+
msgid "Will this plugin work on my wordpress.COM website?"
|
134 |
+
msgstr ""
|
135 |
+
|
136 |
+
#: inc/php/page.php:135
|
137 |
+
msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
|
138 |
+
msgstr ""
|
139 |
+
|
140 |
+
#: inc/php/page.php:137
|
141 |
+
msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: inc/php/page.php:138
|
145 |
+
msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
|
146 |
+
msgstr ""
|
147 |
+
|
148 |
+
#: inc/php/page.php:141
|
149 |
+
#, php-format
|
150 |
+
msgid "You can learn more about the difference here: %s ."
|
151 |
+
msgstr ""
|
152 |
+
|
153 |
+
#: inc/php/page.php:148
|
154 |
+
msgid "Will this plugin work/compatible with the theme I use?"
|
155 |
+
msgstr ""
|
156 |
+
|
157 |
+
#: inc/php/page.php:151
|
158 |
+
msgid "This plugin is compatible with most themes."
|
159 |
+
msgstr ""
|
160 |
+
|
161 |
+
#: inc/php/page.php:152
|
162 |
+
msgid "But, unfortunately, we cannot check it with all third-party themes (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party theme."
|
163 |
+
msgstr ""
|
164 |
+
|
165 |
+
#: inc/php/page.php:153
|
166 |
+
msgid "We constantly check this plugin for compatibility with third-party themes."
|
167 |
+
msgstr ""
|
168 |
+
|
169 |
+
#: inc/php/page.php:154
|
170 |
+
msgid "If we find that this plugin is incompatible with a third-party theme, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
171 |
+
msgstr ""
|
172 |
+
|
173 |
+
#: inc/php/page.php:156
|
174 |
+
msgid "If you find a conflict between our plugin and a third-party theme, please let us know and we will definitely release an update of our plugin to fix the problem."
|
175 |
+
msgstr ""
|
176 |
+
|
177 |
+
#: inc/php/page.php:160
|
178 |
+
msgid "Will this plugin work/compatible with other plugins that I use?"
|
179 |
+
msgstr ""
|
180 |
+
|
181 |
+
#: inc/php/page.php:163
|
182 |
+
msgid "This plugin is compatible with most plugins."
|
183 |
+
msgstr ""
|
184 |
+
|
185 |
+
#: inc/php/page.php:164
|
186 |
+
msgid "But, unfortunately, we cannot check it with all third-party plugins (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party plugin."
|
187 |
+
msgstr ""
|
188 |
+
|
189 |
+
#: inc/php/page.php:165
|
190 |
+
msgid "We constantly check this plugin for compatibility with third-party plugins."
|
191 |
+
msgstr ""
|
192 |
+
|
193 |
+
#: inc/php/page.php:166
|
194 |
+
msgid "If we find that this plugin is incompatible with a third-party plugin, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
195 |
+
msgstr ""
|
196 |
+
|
197 |
+
#: inc/php/page.php:168
|
198 |
+
msgid "If you find a conflict between our plugin and a third-party plugin, please let us know and we will definitely release an update of our plugin to fix the problem."
|
199 |
+
msgstr ""
|
200 |
+
|
201 |
+
#: inc/php/page.php:172
|
202 |
msgid "Can I use this plugin on my language?"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: inc/php/page.php:175
|
206 |
+
msgid "Yes."
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: inc/php/page.php:176
|
210 |
+
msgid "This plugin is ready for translation and has already been translated into several languages."
|
211 |
+
msgstr ""
|
212 |
+
|
213 |
+
#: inc/php/page.php:177
|
214 |
+
msgid "But If your language is not available then you can make one."
|
215 |
+
msgstr ""
|
216 |
+
|
217 |
+
#: inc/php/page.php:178
|
218 |
+
msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
|
219 |
+
msgstr ""
|
220 |
+
|
221 |
+
#: inc/php/page.php:179
|
222 |
+
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
223 |
+
msgstr ""
|
224 |
+
|
225 |
+
#: inc/php/page.php:180
|
226 |
+
msgid "Thanks for your contribution!"
|
227 |
+
msgstr "¡Gracias por su contribución!"
|
228 |
+
|
229 |
+
#: inc/php/page.php:184
|
230 |
#, php-format
|
231 |
+
msgid "If you want to help translate this plugin, please visit the %s."
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: inc/php/page.php:188
|
235 |
+
msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: inc/php/page.php:191
|
239 |
+
#, php-format
|
240 |
+
msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: inc/php/page.php:198
|
244 |
msgid "How does it work?"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: inc/php/page.php:201
|
248 |
+
msgid "On the \"Settings\" tab, fill in the required fields and click the \"Save changes\" button."
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: inc/php/page.php:207
|
252 |
msgid "How much of description I can enter in the text field?"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: inc/php/page.php:210
|
256 |
msgid "We don't limit the number of characters, but most search engines use a maximum of 160 chars for the home description."
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: inc/php/page.php:214
|
260 |
msgid "How much of keywords I can enter in the text field?"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: inc/php/page.php:217
|
264 |
msgid "We don't limit the number of characters."
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: inc/php/page.php:221
|
268 |
+
msgid "What about compatibility with the plugin \"All in One SEO Pack\"?"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: inc/php/page.php:224
|
272 |
+
msgid "As far as we know, the \"All Meta Tags\" plugin is compatible with the \"All in One SEO Pack\" plugin."
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: inc/php/page.php:225 inc/php/page.php:242
|
276 |
+
msgid "But to make sure that these plugins do not conflict with each other, you need to follow one simple rule: do not fill the same field in both plugins at once."
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: inc/php/page.php:226
|
280 |
+
msgid "Otherwise both plugins fulfill their work and you will get a duplicate actions, for example:"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: inc/php/page.php:234 inc/php/page.php:245
|
284 |
+
msgid "If you find a conflict between the plugins, please let us know and we will definitely release an update of our plugin to fix the problem."
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: inc/php/page.php:238
|
288 |
msgid "What about compatibility with the plugin \"Yoast SEO\"?"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: inc/php/page.php:241
|
292 |
+
msgid "As far as we know, the \"All Meta Tags\" plugin is compatible with the \"Yoast SEO\" plugin."
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: inc/php/page.php:243
|
296 |
+
msgid "Otherwise both plugins fulfill their work and you will get a duplicate actions."
|
297 |
+
msgstr ""
|
298 |
+
|
299 |
+
#: inc/php/page.php:249
|
300 |
msgid "Does this plugin requires any modification of the theme?"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: inc/php/page.php:252 inc/php/page.php:260
|
304 |
+
msgid "Absolutely not."
|
305 |
+
msgstr ""
|
306 |
+
|
307 |
+
#: inc/php/page.php:253
|
308 |
+
msgid "This plugin is configurable entirely from the plugin settings page."
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: inc/php/page.php:257
|
312 |
msgid "Does this require any knowledge of HTML or CSS?"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: inc/php/page.php:261
|
316 |
+
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: inc/php/page.php:265
|
320 |
+
msgid "It's not working."
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: inc/php/page.php:266
|
324 |
+
msgid "What could be wrong?"
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: inc/php/page.php:269
|
328 |
+
msgid "As with every plugin, it's possible that things don't work."
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: inc/php/page.php:270
|
332 |
+
msgid "It's impossible to tell what could be wrong exactly."
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: inc/php/page.php:271
|
336 |
+
msgid "The most common reason for this is a web browser's cache."
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: inc/php/page.php:272
|
340 |
+
msgid "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load."
|
341 |
+
msgstr ""
|
342 |
+
|
343 |
+
#: inc/php/page.php:273
|
344 |
+
msgid "This is called the browser's cache."
|
345 |
+
msgstr ""
|
346 |
+
|
347 |
+
#: inc/php/page.php:274
|
348 |
+
msgid "Clearing your browser's cache may solve the problem."
|
349 |
+
msgstr ""
|
350 |
+
|
351 |
+
#: inc/php/page.php:276
|
352 |
+
msgid "If you post a support request in the plugin's support forum on WordPress.org, we'd be happy to give it a look and try to help out."
|
353 |
+
msgstr ""
|
354 |
+
|
355 |
+
#: inc/php/page.php:277 inc/php/page.php:315
|
356 |
+
msgid "Please include as much information as possible, including a link to your website where the problem can be seen."
|
357 |
+
msgstr ""
|
358 |
+
|
359 |
+
#: inc/php/page.php:281
|
360 |
+
msgid "I can't get verify my website."
|
361 |
+
msgstr ""
|
362 |
+
|
363 |
+
#: inc/php/page.php:282
|
364 |
+
msgid "What am I doing wrong?"
|
365 |
+
msgstr ""
|
366 |
+
|
367 |
+
#: inc/php/page.php:285
|
368 |
+
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>)."
|
369 |
+
msgstr ""
|
370 |
+
|
371 |
+
#: inc/php/page.php:286
|
372 |
+
msgid "So just paste that into the relevant field and you will see “Success” message appear within a few seconds."
|
373 |
+
msgstr ""
|
374 |
+
|
375 |
+
#: inc/php/page.php:290
|
376 |
+
msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
|
377 |
+
msgstr ""
|
378 |
+
|
379 |
+
#: inc/php/page.php:291
|
380 |
+
msgid "Why is this?"
|
381 |
+
msgstr ""
|
382 |
+
|
383 |
+
#: inc/php/page.php:294
|
384 |
+
msgid "This plugin can not cause such problem."
|
385 |
+
msgstr ""
|
386 |
+
|
387 |
+
#: inc/php/page.php:295
|
388 |
+
msgid "More likely, the problem are related to the settings of the website."
|
389 |
+
msgstr ""
|
390 |
+
|
391 |
+
#: inc/php/page.php:296
|
392 |
+
msgid "It could just be a cache, so please try to clear your website's cache (may be you using a caching plugin, or some web service such as the CloudFlare) and then the cache of your web browser."
|
393 |
+
msgstr ""
|
394 |
+
|
395 |
+
#: inc/php/page.php:297
|
396 |
+
msgid "Also please try to re-login to the website, this too can help."
|
397 |
+
msgstr ""
|
398 |
+
|
399 |
+
#: inc/php/page.php:301
|
400 |
msgid "Where to report bug if found?"
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: inc/php/page.php:304
|
404 |
+
msgid "Bug reports are very welcome!"
|
405 |
+
msgstr ""
|
406 |
+
|
407 |
+
#: inc/php/page.php:307
|
408 |
#, php-format
|
409 |
+
msgid "Please visit our %s contact page %s and report."
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: inc/php/page.php:312 inc/php/page.php:340
|
413 |
+
msgid "Please do not forget to specify the name of the plugin."
|
414 |
+
msgstr ""
|
415 |
+
|
416 |
+
#: inc/php/page.php:313 inc/php/page.php:341 inc/php/page.php:357
|
417 |
+
msgid "Thank you!"
|
418 |
+
msgstr ""
|
419 |
+
|
420 |
+
#: inc/php/page.php:316
|
421 |
+
msgid "Describe in more detail what exactly you are seeing."
|
422 |
+
msgstr ""
|
423 |
+
|
424 |
+
#: inc/php/page.php:317
|
425 |
+
msgid "Here are some examples:"
|
426 |
+
msgstr ""
|
427 |
+
|
428 |
+
#: inc/php/page.php:320
|
429 |
+
msgid "Elements of the plugin settings page are not working."
|
430 |
+
msgstr ""
|
431 |
+
|
432 |
+
#: inc/php/page.php:321
|
433 |
+
msgid "An error message is displayed on the plugin settings page."
|
434 |
+
msgstr ""
|
435 |
+
|
436 |
+
#: inc/php/page.php:322
|
437 |
+
msgid "An error message is displayed on the front end of website."
|
438 |
+
msgstr ""
|
439 |
+
|
440 |
+
#: inc/php/page.php:323
|
441 |
+
msgid "An error message is displayed on the back end of website."
|
442 |
+
msgstr ""
|
443 |
+
|
444 |
+
#: inc/php/page.php:324
|
445 |
+
msgid "Website is crashed."
|
446 |
+
msgstr ""
|
447 |
+
|
448 |
+
#: inc/php/page.php:329
|
449 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: inc/php/page.php:332
|
453 |
+
msgid "Any suggestions are very welcome!"
|
454 |
+
msgstr ""
|
455 |
+
|
456 |
+
#: inc/php/page.php:335
|
457 |
#, php-format
|
458 |
+
msgid "Please visit our %s contact page %s."
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: inc/php/page.php:345
|
462 |
+
msgid "I love this plugin!"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: inc/php/page.php:346
|
466 |
+
msgid "Can I help somehow?"
|
467 |
+
msgstr ""
|
468 |
+
|
469 |
+
#: inc/php/page.php:349
|
470 |
+
msgid "Yes, any contributions are very welcome!"
|
471 |
+
msgstr ""
|
472 |
+
|
473 |
+
#: inc/php/page.php:352
|
474 |
#, php-format
|
475 |
+
msgid "Please visit our %s Support Us %s page."
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: inc/php/page.php:361
|
479 |
+
msgid "Where can I find information about your licenses, payment process and refunds?"
|
480 |
+
msgstr ""
|
481 |
+
|
482 |
+
#: inc/php/page.php:366
|
483 |
+
#, php-format
|
484 |
+
msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
|
485 |
+
msgstr ""
|
486 |
+
|
487 |
+
#: inc/php/page.php:374
|
488 |
+
msgid "Where can I find information about your customer support?"
|
489 |
+
msgstr ""
|
490 |
+
|
491 |
+
#: inc/php/page.php:379
|
492 |
+
#, php-format
|
493 |
+
msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
|
494 |
+
msgstr ""
|
495 |
+
|
496 |
+
#: inc/php/page.php:387
|
497 |
+
msgid "Where can I find information about your affiliate program?"
|
498 |
+
msgstr ""
|
499 |
+
|
500 |
+
#: inc/php/page.php:392
|
501 |
+
#, php-format
|
502 |
+
msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
|
503 |
+
msgstr ""
|
504 |
+
|
505 |
+
#: inc/php/page.php:400
|
506 |
msgid "My question wasn't answered here."
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: inc/php/page.php:405
|
510 |
#, php-format
|
511 |
+
msgid "You can ask your question on %s this page %s."
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: inc/php/page.php:410
|
515 |
+
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."
|
516 |
+
msgstr ""
|
517 |
+
|
518 |
+
#: inc/php/page.php:421
|
519 |
msgid "Support Us"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: inc/php/page.php:429 inc/php/settings.php:226 inc/php/sidebar.php:46
|
523 |
msgid "Donate with PayPal"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: inc/php/page.php:436
|
527 |
#, php-format
|
528 |
+
msgid "My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
529 |
+
msgstr "Mi nombre es %s Arthur %s y soy el fundador de %s Space X-Chimp %s, which unites a small international team of young people."
|
530 |
+
|
531 |
+
#: inc/php/page.php:445
|
532 |
+
msgid "Our intention is to create projects that will make this world a better place."
|
533 |
+
msgstr ""
|
534 |
+
|
535 |
+
#: inc/php/page.php:446
|
536 |
+
msgid "Our motto is - «Follow your dreams and don’t give up»."
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: inc/php/page.php:447
|
540 |
+
msgid "We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: inc/php/page.php:450
|
544 |
+
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them."
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: inc/php/page.php:451
|
548 |
+
msgid "But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
549 |
+
msgstr ""
|
550 |
+
|
551 |
+
#: inc/php/page.php:454
|
552 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: inc/php/page.php:457
|
556 |
msgid "Thank you for your support!"
|
557 |
msgstr ""
|
558 |
|
722 |
|
723 |
#: inc/php/settings.php:228 inc/php/sidebar.php:48
|
724 |
msgid "Thanks for your support!"
|
725 |
+
msgstr "¡Gracias por su apoyo!"
|
726 |
|
727 |
#: inc/php/sidebar.php:16
|
728 |
msgid "We are «Space X-Chimp»"
|
733 |
msgstr "Acerca"
|
734 |
|
735 |
#: inc/php/sidebar.php:27
|
736 |
+
msgid "This plugin gives you the ability to easily and safely add your custom meta tags to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
|
737 |
msgstr "Este complemento te permite agregar fácilmente Meta Tags a tu sitio web."
|
738 |
|
739 |
#: inc/php/sidebar.php:32
|
754 |
|
755 |
#. Description of the plugin/theme
|
756 |
msgid "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."
|
757 |
+
msgstr "La forma más fácil y segura para agregar Meta Tags a la cabecera de tu sitio WordPress. This is a must have tool for authors and website's owners."
|
758 |
|
759 |
#. Author of the plugin/theme
|
760 |
msgid "Space X-Chimp"
|
763 |
#. Author URI of the plugin/theme
|
764 |
msgid "https://www.spacexchimp.com"
|
765 |
msgstr "https://www.spacexchimp.com"
|
|
|
|
|
|
|
|
|
|
|
|
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-
|
7 |
-
"PO-Revision-Date: 2019-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Italian\n"
|
10 |
"Language: it_IT\n"
|
@@ -20,7 +20,7 @@ msgstr ""
|
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
|
23 |
-
#: inc/php/core.php:23 inc/php/page.php:
|
24 |
msgid "Settings"
|
25 |
msgstr "Impostazioni"
|
26 |
|
@@ -32,268 +32,526 @@ msgstr "Dona"
|
|
32 |
msgid "Meta Tags Inserter"
|
33 |
msgstr "Meta Tags Inserter"
|
34 |
|
35 |
-
#: inc/php/messages.php:
|
36 |
-
msgid "Hello
|
37 |
msgstr ""
|
38 |
|
39 |
#: inc/php/messages.php:28
|
|
|
|
|
|
|
|
|
40 |
#, php-format
|
41 |
msgid "Thank you for installing our plugin! We hope you will love it! %s"
|
42 |
msgstr ""
|
43 |
|
44 |
-
#: inc/php/messages.php:
|
45 |
msgid "You have installed an old version of this plugin."
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: inc/php/messages.php:
|
49 |
msgid "Please update the plugin to the latest version, and all will be fine."
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: inc/php/page.php:
|
53 |
#, php-format
|
54 |
msgid "by %s Space X-Chimp %s"
|
55 |
msgstr "di %s Space X-Chimp %s"
|
56 |
|
57 |
-
#: inc/php/page.php:
|
58 |
msgid "Version"
|
59 |
msgstr ""
|
60 |
|
61 |
-
#: inc/php/page.php:
|
62 |
msgid "Usage"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: inc/php/page.php:
|
66 |
msgid "F.A.Q."
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: inc/php/page.php:
|
70 |
msgid "Support"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: inc/php/page.php:
|
74 |
msgid "Store"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: inc/php/page.php:
|
78 |
msgid "Usage Instructions"
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: inc/php/page.php:
|
82 |
msgid "To add the meta tags to your website, simply follow these steps:"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: inc/php/page.php:
|
86 |
msgid "Go to the \"Settings\" tab on this page."
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: inc/php/page.php:
|
90 |
msgid "Fill in the required fields."
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: inc/php/page.php:
|
94 |
msgid "Click the \"Save changes\" button."
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: inc/php/page.php:
|
98 |
msgid "Enjoy the improved SEO of your website."
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: inc/php/page.php:
|
102 |
msgid "It's that simple!"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: inc/php/page.php:
|
106 |
#, php-format
|
107 |
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: inc/php/page.php:
|
111 |
msgid "Frequently Asked Questions"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: inc/php/page.php:
|
115 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: inc/php/page.php:
|
119 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: inc/php/page.php:
|
123 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
127 |
msgid "Can I use this plugin on my language?"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: inc/php/page.php:
|
131 |
-
msgid "Yes.
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
135 |
#, php-format
|
136 |
-
msgid "If you want to help translate this plugin
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: inc/php/page.php:
|
140 |
-
msgid "
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: inc/php/page.php:
|
144 |
-
|
|
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: inc/php/page.php:
|
148 |
msgid "How does it work?"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: inc/php/page.php:
|
152 |
-
msgid "On the \"Settings\" tab, fill in the required fields and click the \"Save changes\" button.
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: inc/php/page.php:
|
156 |
msgid "How much of description I can enter in the text field?"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: inc/php/page.php:
|
160 |
msgid "We don't limit the number of characters, but most search engines use a maximum of 160 chars for the home description."
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: inc/php/page.php:
|
164 |
msgid "How much of keywords I can enter in the text field?"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: inc/php/page.php:
|
168 |
msgid "We don't limit the number of characters."
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: inc/php/page.php:
|
172 |
-
msgid "
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: inc/php/page.php:
|
176 |
-
msgid "
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: inc/php/page.php:
|
180 |
-
msgid "
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: inc/php/page.php:
|
184 |
-
msgid "
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: inc/php/page.php:
|
188 |
-
msgid "If you find a conflict between the plugins, please let us know and we will definitely release an update of
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: inc/php/page.php:
|
192 |
msgid "What about compatibility with the plugin \"Yoast SEO\"?"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: inc/php/page.php:
|
196 |
-
msgid "As far as we know, the \"All Meta Tags\" plugin is compatible with the \"Yoast SEO\" plugin.
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
200 |
msgid "Does this plugin requires any modification of the theme?"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: inc/php/page.php:
|
204 |
-
msgid "Absolutely not.
|
|
|
|
|
|
|
|
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: inc/php/page.php:
|
208 |
msgid "Does this require any knowledge of HTML or CSS?"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: inc/php/page.php:
|
212 |
-
msgid "
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: inc/php/page.php:
|
216 |
-
msgid "It's not working.
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: inc/php/page.php:
|
220 |
-
msgid "
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: inc/php/page.php:
|
224 |
-
msgid "
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: inc/php/page.php:
|
228 |
-
msgid "
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: inc/php/page.php:
|
232 |
-
msgid "
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
236 |
msgid "Where to report bug if found?"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
240 |
#, php-format
|
241 |
-
msgid "
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
245 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
249 |
#, php-format
|
250 |
-
msgid "
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: inc/php/page.php:
|
254 |
-
msgid "I love this plugin!
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
258 |
#, php-format
|
259 |
-
msgid "
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
263 |
msgid "My question wasn't answered here."
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: inc/php/page.php:
|
267 |
#, php-format
|
268 |
-
msgid "You can ask your question on %s this page %s.
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
272 |
msgid "Support Us"
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: inc/php/page.php:
|
276 |
msgid "Donate with PayPal"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: inc/php/page.php:
|
280 |
#, php-format
|
281 |
-
msgid "
|
|
|
|
|
|
|
|
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: inc/php/page.php:
|
285 |
-
msgid "Our
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: inc/php/page.php:
|
289 |
-
msgid "We
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
293 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: inc/php/page.php:
|
297 |
msgid "Thank you for your support!"
|
298 |
msgstr ""
|
299 |
|
@@ -311,15 +569,15 @@ msgstr "Webmaster Tools ti richiede di verificare il tuo dominio. Ciò assicura
|
|
311 |
|
312 |
#: inc/php/settings.php:33
|
313 |
msgid "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>” />"
|
314 |
-
msgstr "Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di verifica
|
315 |
|
316 |
#: inc/php/settings.php:39
|
317 |
msgid "Enter your meta key “content” value from your verification code to verify your website. <br>Example: <meta name=\"msvalidate.01\" content=“<b>1234567890</b>” />"
|
318 |
-
msgstr "Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di verifica
|
319 |
|
320 |
#: inc/php/settings.php:45
|
321 |
msgid "Enter your meta key “content” value from your verification code to verify your website. <br>Example: <meta name=\"yandex-verification\" content=“<b>1234567890</b>” />"
|
322 |
-
msgstr "Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di verifica
|
323 |
|
324 |
#: inc/php/settings.php:54
|
325 |
msgid "Domain Verification"
|
@@ -331,7 +589,7 @@ msgstr "Servizi di terze parti come Alexa, Pinterest e Google+ ti richiedono di
|
|
331 |
|
332 |
#: inc/php/settings.php:62
|
333 |
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>” />"
|
334 |
-
msgstr "Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di verifica
|
335 |
|
336 |
#: inc/php/settings.php:68
|
337 |
msgid "Enter an absolute URL to the Google+ profile of the publisher. <br>Example: https://plus.google.com/+Username/"
|
@@ -347,19 +605,19 @@ msgstr "Inserisci il tuo nome utente Twitter. <br>Esempio: @AGareginyan"
|
|
347 |
|
348 |
#: inc/php/settings.php:86
|
349 |
msgid "Enter your meta key “content” value from your verification code to verify your website. <br>Example: <meta name=\"alexaVerifyID\" content=“<b>1234567890</b>” />"
|
350 |
-
msgstr "Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di verifica
|
351 |
|
352 |
#: inc/php/settings.php:92
|
353 |
msgid "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>” />"
|
354 |
-
msgstr "Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta
|
355 |
|
356 |
#: inc/php/settings.php:98
|
357 |
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>” />"
|
358 |
-
msgstr "Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta
|
359 |
|
360 |
#: inc/php/settings.php:104
|
361 |
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>” />"
|
362 |
-
msgstr "Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta
|
363 |
|
364 |
#: inc/php/settings.php:108
|
365 |
msgid "Custom Meta Tags"
|
@@ -474,7 +732,7 @@ msgid "About"
|
|
474 |
msgstr "Informazioni"
|
475 |
|
476 |
#: inc/php/sidebar.php:27
|
477 |
-
msgid "This plugin
|
478 |
msgstr "Questo plugin ti permette di aggiungere facilmente tag meta al tuo sito web."
|
479 |
|
480 |
#: inc/php/sidebar.php:32
|
@@ -495,7 +753,7 @@ msgstr "https://github.com/ArthurGareginyan/all-meta-tags"
|
|
495 |
|
496 |
#. Description of the plugin/theme
|
497 |
msgid "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."
|
498 |
-
msgstr ""
|
499 |
|
500 |
#. Author of the plugin/theme
|
501 |
msgid "Space X-Chimp"
|
@@ -504,6 +762,3 @@ msgstr "Space X-Chimp"
|
|
504 |
#. Author URI of the plugin/theme
|
505 |
msgid "https://www.spacexchimp.com"
|
506 |
msgstr "https://www.spacexchimp.com"
|
507 |
-
|
508 |
-
#~ msgid "Easily and safely add your custom Meta Tags to WordPress website's header."
|
509 |
-
#~ msgstr "Aggiungi facilmente e in modo sicuro i tuoi tag meta personalizzati all'header del tuo sito WordPress."
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: All Meta Tags\n"
|
6 |
+
"POT-Creation-Date: 2019-02-20 23:15+0300\n"
|
7 |
+
"PO-Revision-Date: 2019-02-20 23:15+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Italian\n"
|
10 |
"Language: it_IT\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
|
23 |
+
#: inc/php/core.php:23 inc/php/page.php:44
|
24 |
msgid "Settings"
|
25 |
msgstr "Impostazioni"
|
26 |
|
32 |
msgid "Meta Tags Inserter"
|
33 |
msgstr "Meta Tags Inserter"
|
34 |
|
35 |
+
#: inc/php/messages.php:27 inc/php/page.php:433
|
36 |
+
msgid "Hello!"
|
37 |
msgstr ""
|
38 |
|
39 |
#: inc/php/messages.php:28
|
40 |
+
msgid "We are the team of Space X-Chimp."
|
41 |
+
msgstr ""
|
42 |
+
|
43 |
+
#: inc/php/messages.php:33
|
44 |
#, php-format
|
45 |
msgid "Thank you for installing our plugin! We hope you will love it! %s"
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: inc/php/messages.php:74
|
49 |
msgid "You have installed an old version of this plugin."
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: inc/php/messages.php:75
|
53 |
msgid "Please update the plugin to the latest version, and all will be fine."
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: inc/php/page.php:31
|
57 |
#, php-format
|
58 |
msgid "by %s Space X-Chimp %s"
|
59 |
msgstr "di %s Space X-Chimp %s"
|
60 |
|
61 |
+
#: inc/php/page.php:37
|
62 |
msgid "Version"
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: inc/php/page.php:45
|
66 |
msgid "Usage"
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: inc/php/page.php:46
|
70 |
msgid "F.A.Q."
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: inc/php/page.php:47 inc/php/settings.php:219 inc/php/sidebar.php:39
|
74 |
msgid "Support"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: inc/php/page.php:48
|
78 |
msgid "Store"
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: inc/php/page.php:64
|
82 |
msgid "Usage Instructions"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: inc/php/page.php:66
|
86 |
msgid "To add the meta tags to your website, simply follow these steps:"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: inc/php/page.php:68
|
90 |
msgid "Go to the \"Settings\" tab on this page."
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: inc/php/page.php:69
|
94 |
msgid "Fill in the required fields."
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: inc/php/page.php:70
|
98 |
msgid "Click the \"Save changes\" button."
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: inc/php/page.php:71 inc/php/page.php:202
|
102 |
msgid "Enjoy the improved SEO of your website."
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: inc/php/page.php:71 inc/php/page.php:203
|
106 |
msgid "It's that simple!"
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: inc/php/page.php:76
|
110 |
#, php-format
|
111 |
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: inc/php/page.php:90
|
115 |
msgid "Frequently Asked Questions"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: inc/php/page.php:94
|
119 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: inc/php/page.php:119
|
123 |
+
msgid "Where can I find a documentation for this plugin?"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: inc/php/page.php:124
|
127 |
+
#, php-format
|
128 |
+
msgid "Please visit our %s Documentation site %s to view documentation."
|
129 |
+
msgstr ""
|
130 |
+
|
131 |
+
#: inc/php/page.php:132
|
132 |
+
msgid "Will this plugin work on my wordpress.COM website?"
|
133 |
+
msgstr ""
|
134 |
+
|
135 |
+
#: inc/php/page.php:135
|
136 |
+
msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
|
137 |
+
msgstr ""
|
138 |
+
|
139 |
+
#: inc/php/page.php:137
|
140 |
+
msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
|
141 |
+
msgstr ""
|
142 |
+
|
143 |
+
#: inc/php/page.php:138
|
144 |
+
msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
|
145 |
+
msgstr ""
|
146 |
+
|
147 |
+
#: inc/php/page.php:141
|
148 |
+
#, php-format
|
149 |
+
msgid "You can learn more about the difference here: %s ."
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: inc/php/page.php:148
|
153 |
+
msgid "Will this plugin work/compatible with the theme I use?"
|
154 |
+
msgstr ""
|
155 |
+
|
156 |
+
#: inc/php/page.php:151
|
157 |
+
msgid "This plugin is compatible with most themes."
|
158 |
+
msgstr ""
|
159 |
+
|
160 |
+
#: inc/php/page.php:152
|
161 |
+
msgid "But, unfortunately, we cannot check it with all third-party themes (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party theme."
|
162 |
+
msgstr ""
|
163 |
+
|
164 |
+
#: inc/php/page.php:153
|
165 |
+
msgid "We constantly check this plugin for compatibility with third-party themes."
|
166 |
+
msgstr ""
|
167 |
+
|
168 |
+
#: inc/php/page.php:154
|
169 |
+
msgid "If we find that this plugin is incompatible with a third-party theme, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
170 |
+
msgstr ""
|
171 |
+
|
172 |
+
#: inc/php/page.php:156
|
173 |
+
msgid "If you find a conflict between our plugin and a third-party theme, please let us know and we will definitely release an update of our plugin to fix the problem."
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: inc/php/page.php:160
|
177 |
+
msgid "Will this plugin work/compatible with other plugins that I use?"
|
178 |
+
msgstr ""
|
179 |
+
|
180 |
+
#: inc/php/page.php:163
|
181 |
+
msgid "This plugin is compatible with most plugins."
|
182 |
+
msgstr ""
|
183 |
+
|
184 |
+
#: inc/php/page.php:164
|
185 |
+
msgid "But, unfortunately, we cannot check it with all third-party plugins (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party plugin."
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: inc/php/page.php:165
|
189 |
+
msgid "We constantly check this plugin for compatibility with third-party plugins."
|
190 |
+
msgstr ""
|
191 |
+
|
192 |
+
#: inc/php/page.php:166
|
193 |
+
msgid "If we find that this plugin is incompatible with a third-party plugin, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: inc/php/page.php:168
|
197 |
+
msgid "If you find a conflict between our plugin and a third-party plugin, please let us know and we will definitely release an update of our plugin to fix the problem."
|
198 |
+
msgstr ""
|
199 |
+
|
200 |
+
#: inc/php/page.php:172
|
201 |
msgid "Can I use this plugin on my language?"
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: inc/php/page.php:175
|
205 |
+
msgid "Yes."
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: inc/php/page.php:176
|
209 |
+
msgid "This plugin is ready for translation and has already been translated into several languages."
|
210 |
+
msgstr ""
|
211 |
+
|
212 |
+
#: inc/php/page.php:177
|
213 |
+
msgid "But If your language is not available then you can make one."
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: inc/php/page.php:178
|
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 ""
|
219 |
+
|
220 |
+
#: inc/php/page.php:179
|
221 |
+
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
222 |
+
msgstr ""
|
223 |
+
|
224 |
+
#: inc/php/page.php:180
|
225 |
+
msgid "Thanks for your contribution!"
|
226 |
+
msgstr "Grazie per il tuo contributo!"
|
227 |
+
|
228 |
+
#: inc/php/page.php:184
|
229 |
#, php-format
|
230 |
+
msgid "If you want to help translate this plugin, please visit the %s."
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: inc/php/page.php:188
|
234 |
+
msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: inc/php/page.php:191
|
238 |
+
#, php-format
|
239 |
+
msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: inc/php/page.php:198
|
243 |
msgid "How does it work?"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: inc/php/page.php:201
|
247 |
+
msgid "On the \"Settings\" tab, fill in the required fields and click the \"Save changes\" button."
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: inc/php/page.php:207
|
251 |
msgid "How much of description I can enter in the text field?"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: inc/php/page.php:210
|
255 |
msgid "We don't limit the number of characters, but most search engines use a maximum of 160 chars for the home description."
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: inc/php/page.php:214
|
259 |
msgid "How much of keywords I can enter in the text field?"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: inc/php/page.php:217
|
263 |
msgid "We don't limit the number of characters."
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: inc/php/page.php:221
|
267 |
+
msgid "What about compatibility with the plugin \"All in One SEO Pack\"?"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: inc/php/page.php:224
|
271 |
+
msgid "As far as we know, the \"All Meta Tags\" plugin is compatible with the \"All in One SEO Pack\" plugin."
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: inc/php/page.php:225 inc/php/page.php:242
|
275 |
+
msgid "But to make sure that these plugins do not conflict with each other, you need to follow one simple rule: do not fill the same field in both plugins at once."
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: inc/php/page.php:226
|
279 |
+
msgid "Otherwise both plugins fulfill their work and you will get a duplicate actions, for example:"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: inc/php/page.php:234 inc/php/page.php:245
|
283 |
+
msgid "If you find a conflict between the plugins, please let us know and we will definitely release an update of our plugin to fix the problem."
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: inc/php/page.php:238
|
287 |
msgid "What about compatibility with the plugin \"Yoast SEO\"?"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: inc/php/page.php:241
|
291 |
+
msgid "As far as we know, the \"All Meta Tags\" plugin is compatible with the \"Yoast SEO\" plugin."
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: inc/php/page.php:243
|
295 |
+
msgid "Otherwise both plugins fulfill their work and you will get a duplicate actions."
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: inc/php/page.php:249
|
299 |
msgid "Does this plugin requires any modification of the theme?"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: inc/php/page.php:252 inc/php/page.php:260
|
303 |
+
msgid "Absolutely not."
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: inc/php/page.php:253
|
307 |
+
msgid "This plugin is configurable entirely from the plugin settings page."
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: inc/php/page.php:257
|
311 |
msgid "Does this require any knowledge of HTML or CSS?"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: inc/php/page.php:261
|
315 |
+
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: inc/php/page.php:265
|
319 |
+
msgid "It's not working."
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: inc/php/page.php:266
|
323 |
+
msgid "What could be wrong?"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: inc/php/page.php:269
|
327 |
+
msgid "As with every plugin, it's possible that things don't work."
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: inc/php/page.php:270
|
331 |
+
msgid "It's impossible to tell what could be wrong exactly."
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: inc/php/page.php:271
|
335 |
+
msgid "The most common reason for this is a web browser's cache."
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: inc/php/page.php:272
|
339 |
+
msgid "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load."
|
340 |
+
msgstr ""
|
341 |
+
|
342 |
+
#: inc/php/page.php:273
|
343 |
+
msgid "This is called the browser's cache."
|
344 |
+
msgstr ""
|
345 |
+
|
346 |
+
#: inc/php/page.php:274
|
347 |
+
msgid "Clearing your browser's cache may solve the problem."
|
348 |
+
msgstr ""
|
349 |
+
|
350 |
+
#: inc/php/page.php:276
|
351 |
+
msgid "If you post a support request in the plugin's support forum on WordPress.org, we'd be happy to give it a look and try to help out."
|
352 |
+
msgstr ""
|
353 |
+
|
354 |
+
#: inc/php/page.php:277 inc/php/page.php:315
|
355 |
+
msgid "Please include as much information as possible, including a link to your website where the problem can be seen."
|
356 |
+
msgstr ""
|
357 |
+
|
358 |
+
#: inc/php/page.php:281
|
359 |
+
msgid "I can't get verify my website."
|
360 |
+
msgstr ""
|
361 |
+
|
362 |
+
#: inc/php/page.php:282
|
363 |
+
msgid "What am I doing wrong?"
|
364 |
+
msgstr ""
|
365 |
+
|
366 |
+
#: inc/php/page.php:285
|
367 |
+
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>)."
|
368 |
+
msgstr ""
|
369 |
+
|
370 |
+
#: inc/php/page.php:286
|
371 |
+
msgid "So just paste that into the relevant field and you will see “Success” message appear within a few seconds."
|
372 |
+
msgstr ""
|
373 |
+
|
374 |
+
#: inc/php/page.php:290
|
375 |
+
msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
|
376 |
+
msgstr ""
|
377 |
+
|
378 |
+
#: inc/php/page.php:291
|
379 |
+
msgid "Why is this?"
|
380 |
+
msgstr ""
|
381 |
+
|
382 |
+
#: inc/php/page.php:294
|
383 |
+
msgid "This plugin can not cause such problem."
|
384 |
+
msgstr ""
|
385 |
+
|
386 |
+
#: inc/php/page.php:295
|
387 |
+
msgid "More likely, the problem are related to the settings of the website."
|
388 |
+
msgstr ""
|
389 |
+
|
390 |
+
#: inc/php/page.php:296
|
391 |
+
msgid "It could just be a cache, so please try to clear your website's cache (may be you using a caching plugin, or some web service such as the CloudFlare) and then the cache of your web browser."
|
392 |
+
msgstr ""
|
393 |
+
|
394 |
+
#: inc/php/page.php:297
|
395 |
+
msgid "Also please try to re-login to the website, this too can help."
|
396 |
+
msgstr ""
|
397 |
+
|
398 |
+
#: inc/php/page.php:301
|
399 |
msgid "Where to report bug if found?"
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: inc/php/page.php:304
|
403 |
+
msgid "Bug reports are very welcome!"
|
404 |
+
msgstr ""
|
405 |
+
|
406 |
+
#: inc/php/page.php:307
|
407 |
#, php-format
|
408 |
+
msgid "Please visit our %s contact page %s and report."
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: inc/php/page.php:312 inc/php/page.php:340
|
412 |
+
msgid "Please do not forget to specify the name of the plugin."
|
413 |
+
msgstr ""
|
414 |
+
|
415 |
+
#: inc/php/page.php:313 inc/php/page.php:341 inc/php/page.php:357
|
416 |
+
msgid "Thank you!"
|
417 |
+
msgstr ""
|
418 |
+
|
419 |
+
#: inc/php/page.php:316
|
420 |
+
msgid "Describe in more detail what exactly you are seeing."
|
421 |
+
msgstr ""
|
422 |
+
|
423 |
+
#: inc/php/page.php:317
|
424 |
+
msgid "Here are some examples:"
|
425 |
+
msgstr ""
|
426 |
+
|
427 |
+
#: inc/php/page.php:320
|
428 |
+
msgid "Elements of the plugin settings page are not working."
|
429 |
+
msgstr ""
|
430 |
+
|
431 |
+
#: inc/php/page.php:321
|
432 |
+
msgid "An error message is displayed on the plugin settings page."
|
433 |
+
msgstr ""
|
434 |
+
|
435 |
+
#: inc/php/page.php:322
|
436 |
+
msgid "An error message is displayed on the front end of website."
|
437 |
+
msgstr ""
|
438 |
+
|
439 |
+
#: inc/php/page.php:323
|
440 |
+
msgid "An error message is displayed on the back end of website."
|
441 |
+
msgstr ""
|
442 |
+
|
443 |
+
#: inc/php/page.php:324
|
444 |
+
msgid "Website is crashed."
|
445 |
+
msgstr ""
|
446 |
+
|
447 |
+
#: inc/php/page.php:329
|
448 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: inc/php/page.php:332
|
452 |
+
msgid "Any suggestions are very welcome!"
|
453 |
+
msgstr ""
|
454 |
+
|
455 |
+
#: inc/php/page.php:335
|
456 |
#, php-format
|
457 |
+
msgid "Please visit our %s contact page %s."
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: inc/php/page.php:345
|
461 |
+
msgid "I love this plugin!"
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: inc/php/page.php:346
|
465 |
+
msgid "Can I help somehow?"
|
466 |
+
msgstr ""
|
467 |
+
|
468 |
+
#: inc/php/page.php:349
|
469 |
+
msgid "Yes, any contributions are very welcome!"
|
470 |
+
msgstr ""
|
471 |
+
|
472 |
+
#: inc/php/page.php:352
|
473 |
#, php-format
|
474 |
+
msgid "Please visit our %s Support Us %s page."
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: inc/php/page.php:361
|
478 |
+
msgid "Where can I find information about your licenses, payment process and refunds?"
|
479 |
+
msgstr ""
|
480 |
+
|
481 |
+
#: inc/php/page.php:366
|
482 |
+
#, php-format
|
483 |
+
msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
|
484 |
+
msgstr ""
|
485 |
+
|
486 |
+
#: inc/php/page.php:374
|
487 |
+
msgid "Where can I find information about your customer support?"
|
488 |
+
msgstr ""
|
489 |
+
|
490 |
+
#: inc/php/page.php:379
|
491 |
+
#, php-format
|
492 |
+
msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
|
493 |
+
msgstr ""
|
494 |
+
|
495 |
+
#: inc/php/page.php:387
|
496 |
+
msgid "Where can I find information about your affiliate program?"
|
497 |
+
msgstr ""
|
498 |
+
|
499 |
+
#: inc/php/page.php:392
|
500 |
+
#, php-format
|
501 |
+
msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
|
502 |
+
msgstr ""
|
503 |
+
|
504 |
+
#: inc/php/page.php:400
|
505 |
msgid "My question wasn't answered here."
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: inc/php/page.php:405
|
509 |
#, php-format
|
510 |
+
msgid "You can ask your question on %s this page %s."
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: inc/php/page.php:410
|
514 |
+
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."
|
515 |
+
msgstr ""
|
516 |
+
|
517 |
+
#: inc/php/page.php:421
|
518 |
msgid "Support Us"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: inc/php/page.php:429 inc/php/settings.php:226 inc/php/sidebar.php:46
|
522 |
msgid "Donate with PayPal"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: inc/php/page.php:436
|
526 |
#, php-format
|
527 |
+
msgid "My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
528 |
+
msgstr ""
|
529 |
+
|
530 |
+
#: inc/php/page.php:445
|
531 |
+
msgid "Our intention is to create projects that will make this world a better place."
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: inc/php/page.php:446
|
535 |
+
msgid "Our motto is - «Follow your dreams and don’t give up»."
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: inc/php/page.php:447
|
539 |
+
msgid "We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: inc/php/page.php:450
|
543 |
+
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them."
|
544 |
+
msgstr ""
|
545 |
+
|
546 |
+
#: inc/php/page.php:451
|
547 |
+
msgid "But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
548 |
+
msgstr "Siamo sviluppatori indipendenti, senza un reddito stabile, quindi ogni piccolo contributo è utile a coprire i nostri costi e ci consente di impiegare più tempo nello sviluppo di strumenti per persone che come te li apprezzano."
|
549 |
+
|
550 |
+
#: inc/php/page.php:454
|
551 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: inc/php/page.php:457
|
555 |
msgid "Thank you for your support!"
|
556 |
msgstr ""
|
557 |
|
569 |
|
570 |
#: inc/php/settings.php:33
|
571 |
msgid "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>” />"
|
572 |
+
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=\"google-site-verification\" content=“<b>1234567890</b>” />"
|
573 |
|
574 |
#: inc/php/settings.php:39
|
575 |
msgid "Enter your meta key “content” value from your verification code to verify your website. <br>Example: <meta name=\"msvalidate.01\" content=“<b>1234567890</b>” />"
|
576 |
+
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=\"msvalidate.01\" content=“<b>1234567890</b>” />"
|
577 |
|
578 |
#: inc/php/settings.php:45
|
579 |
msgid "Enter your meta key “content” value from your verification code to verify your website. <br>Example: <meta name=\"yandex-verification\" content=“<b>1234567890</b>” />"
|
580 |
+
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=\"yandex-verification\" content=“<b>1234567890</b>” />"
|
581 |
|
582 |
#: inc/php/settings.php:54
|
583 |
msgid "Domain Verification"
|
589 |
|
590 |
#: inc/php/settings.php:62
|
591 |
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>” />"
|
592 |
+
msgstr "Per verificare il tuo sito web inserisci il valore “content” della tua chiave meta come da tuo codice di verifica. <br>Example: <meta name=\"p:domain_verify\" content=“<b>1234567890</b>” />"
|
593 |
|
594 |
#: inc/php/settings.php:68
|
595 |
msgid "Enter an absolute URL to the Google+ profile of the publisher. <br>Example: https://plus.google.com/+Username/"
|
605 |
|
606 |
#: inc/php/settings.php:86
|
607 |
msgid "Enter your meta key “content” value from your verification code to verify your website. <br>Example: <meta name=\"alexaVerifyID\" content=“<b>1234567890</b>” />"
|
608 |
+
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=\"alexaVerifyID\" content=“<b>1234567890</b>” />"
|
609 |
|
610 |
#: inc/php/settings.php:92
|
611 |
msgid "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>” />"
|
612 |
+
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>” />"
|
613 |
|
614 |
#: inc/php/settings.php:98
|
615 |
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>” />"
|
616 |
+
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>” />"
|
617 |
|
618 |
#: inc/php/settings.php:104
|
619 |
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>” />"
|
620 |
+
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>” />"
|
621 |
|
622 |
#: inc/php/settings.php:108
|
623 |
msgid "Custom Meta Tags"
|
732 |
msgstr "Informazioni"
|
733 |
|
734 |
#: inc/php/sidebar.php:27
|
735 |
+
msgid "This plugin gives you the ability to easily and safely add your custom meta tags to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
|
736 |
msgstr "Questo plugin ti permette di aggiungere facilmente tag meta al tuo sito web."
|
737 |
|
738 |
#: inc/php/sidebar.php:32
|
753 |
|
754 |
#. Description of the plugin/theme
|
755 |
msgid "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."
|
756 |
+
msgstr "Aggiungi facilmente e in modo sicuro i tuoi tag meta personalizzati all'header del tuo sito WordPress. This is a must have tool for authors and website's owners."
|
757 |
|
758 |
#. Author of the plugin/theme
|
759 |
msgid "Space X-Chimp"
|
762 |
#. Author URI of the plugin/theme
|
763 |
msgid "https://www.spacexchimp.com"
|
764 |
msgstr "https://www.spacexchimp.com"
|
|
|
|
|
|
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-
|
7 |
-
"PO-Revision-Date: 2019-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Dutch\n"
|
10 |
"Language: nl_NL\n"
|
@@ -20,7 +20,7 @@ msgstr ""
|
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
|
23 |
-
#: inc/php/core.php:23 inc/php/page.php:
|
24 |
msgid "Settings"
|
25 |
msgstr "Instellingen"
|
26 |
|
@@ -32,268 +32,526 @@ msgstr "Doe een gift"
|
|
32 |
msgid "Meta Tags Inserter"
|
33 |
msgstr "Meta Tags Inserter"
|
34 |
|
35 |
-
#: inc/php/messages.php:
|
36 |
-
msgid "Hello
|
37 |
-
msgstr "Hallo
|
38 |
|
39 |
#: inc/php/messages.php:28
|
|
|
|
|
|
|
|
|
40 |
#, php-format
|
41 |
msgid "Thank you for installing our plugin! We hope you will love it! %s"
|
42 |
msgstr "Bedankt voor het installeren van onze plug-in! We hopen dat je het geweldig zult vinden! %s"
|
43 |
|
44 |
-
#: inc/php/messages.php:
|
45 |
msgid "You have installed an old version of this plugin."
|
46 |
msgstr "Je hebt een oudere versie van deze plug-in geïnstalleerd."
|
47 |
|
48 |
-
#: inc/php/messages.php:
|
49 |
msgid "Please update the plugin to the latest version, and all will be fine."
|
50 |
msgstr "Update de plug-in naar de nieuwste versie en alles komt goed."
|
51 |
|
52 |
-
#: inc/php/page.php:
|
53 |
#, php-format
|
54 |
msgid "by %s Space X-Chimp %s"
|
55 |
msgstr "door %s Space X-Chimp %s"
|
56 |
|
57 |
-
#: inc/php/page.php:
|
58 |
msgid "Version"
|
59 |
msgstr "Versie"
|
60 |
|
61 |
-
#: inc/php/page.php:
|
62 |
msgid "Usage"
|
63 |
msgstr "Gebruik"
|
64 |
|
65 |
-
#: inc/php/page.php:
|
66 |
msgid "F.A.Q."
|
67 |
msgstr "F.A.Q."
|
68 |
|
69 |
-
#: inc/php/page.php:
|
70 |
msgid "Support"
|
71 |
msgstr "Ondersteuning"
|
72 |
|
73 |
-
#: inc/php/page.php:
|
74 |
msgid "Store"
|
75 |
msgstr "Winkel"
|
76 |
|
77 |
-
#: inc/php/page.php:
|
78 |
msgid "Usage Instructions"
|
79 |
msgstr "Gebruiksinstructies"
|
80 |
|
81 |
-
#: inc/php/page.php:
|
82 |
msgid "To add the meta tags to your website, simply follow these steps:"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: inc/php/page.php:
|
86 |
msgid "Go to the \"Settings\" tab on this page."
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: inc/php/page.php:
|
90 |
msgid "Fill in the required fields."
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: inc/php/page.php:
|
94 |
msgid "Click the \"Save changes\" button."
|
95 |
msgstr "Klik op de knop \"Wijzigingen opslaan\"."
|
96 |
|
97 |
-
#: inc/php/page.php:
|
98 |
msgid "Enjoy the improved SEO of your website."
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: inc/php/page.php:
|
102 |
msgid "It's that simple!"
|
103 |
msgstr "Zo eenvoudig is het!"
|
104 |
|
105 |
-
#: inc/php/page.php:
|
106 |
#, php-format
|
107 |
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
108 |
msgstr "Wilt u meer opties dan %s vertel ons %s en wij zullen graag toevoegen."
|
109 |
|
110 |
-
#: inc/php/page.php:
|
111 |
msgid "Frequently Asked Questions"
|
112 |
msgstr "Veel voorkomende vragen (FAQ)"
|
113 |
|
114 |
-
#: inc/php/page.php:
|
115 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
116 |
msgstr "Als je een vraag hebt, lees dan eerst de Veel voorkomende vragen (FAQ) hieronder. Misschien staat het antwoord ertussen."
|
117 |
|
118 |
-
#: inc/php/page.php:
|
119 |
-
msgid "
|
120 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
121 |
|
122 |
-
#: inc/php/page.php:
|
123 |
-
msgid "
|
124 |
-
msgstr "
|
125 |
|
126 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
127 |
msgid "Can I use this plugin on my language?"
|
128 |
msgstr "Kan ik deze plug-in in mijn eigen taal gebruiken?"
|
129 |
|
130 |
-
#: inc/php/page.php:
|
131 |
-
msgid "Yes.
|
132 |
-
msgstr "Ja.
|
133 |
|
134 |
-
#: inc/php/page.php:
|
135 |
-
|
136 |
-
|
137 |
-
msgstr "Als je wilt helpen deze plug-in te vertalen, bezoek dan de %s. Je kunt ook het POT-bestand gebruiken, dat is inbegrepen en in de map “languages” is geplaatst om een PO-bestand met vertalingen te maken. Stuur het PO-bestand naar ons op de %s en we zullen deze vertaling opnemen in de volgende plug-in update."
|
138 |
|
139 |
-
#: inc/php/page.php:
|
140 |
-
msgid "
|
|
|
|
|
|
|
|
|
141 |
msgstr "Misschien zijn niet alle bestaande vertalingen up-to-date of correct. Je bent van harte welkom om correcties bij te dragen!"
|
142 |
|
143 |
-
#: inc/php/page.php:
|
144 |
-
msgid "Many of plugin users would be delighted if you share your translation with the community.
|
145 |
-
msgstr "Veel plugin-gebruikers zouden blij zijn als je je vertaling met de community deelt.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
146 |
|
147 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
148 |
msgid "How does it work?"
|
149 |
msgstr "Hoe werkt het?"
|
150 |
|
151 |
-
#: inc/php/page.php:
|
152 |
-
msgid "On the \"Settings\" tab, fill in the required fields and click the \"Save changes\" button.
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: inc/php/page.php:
|
156 |
msgid "How much of description I can enter in the text field?"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: inc/php/page.php:
|
160 |
msgid "We don't limit the number of characters, but most search engines use a maximum of 160 chars for the home description."
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: inc/php/page.php:
|
164 |
msgid "How much of keywords I can enter in the text field?"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: inc/php/page.php:
|
168 |
msgid "We don't limit the number of characters."
|
169 |
msgstr "Er is geen beperking op het aantal tekens."
|
170 |
|
171 |
-
#: inc/php/page.php:
|
172 |
-
msgid "
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: inc/php/page.php:
|
176 |
-
msgid "
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: inc/php/page.php:
|
180 |
-
msgid "
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: inc/php/page.php:
|
184 |
-
msgid "
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: inc/php/page.php:
|
188 |
-
msgid "If you find a conflict between the plugins, please let us know and we will definitely release an update of
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: inc/php/page.php:
|
192 |
msgid "What about compatibility with the plugin \"Yoast SEO\"?"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: inc/php/page.php:
|
196 |
-
msgid "As far as we know, the \"All Meta Tags\" plugin is compatible with the \"Yoast SEO\" plugin.
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
200 |
msgid "Does this plugin requires any modification of the theme?"
|
201 |
msgstr "Heeft deze plug-in enige aanpassing van het thema nodig?"
|
202 |
|
203 |
-
#: inc/php/page.php:
|
204 |
-
msgid "Absolutely not.
|
205 |
-
msgstr "Absoluut niet.
|
|
|
|
|
|
|
|
|
206 |
|
207 |
-
#: inc/php/page.php:
|
208 |
msgid "Does this require any knowledge of HTML or CSS?"
|
209 |
msgstr "Vereist dit enige kennis van HTML of CSS?"
|
210 |
|
211 |
-
#: inc/php/page.php:
|
212 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: inc/php/page.php:
|
216 |
-
msgid "
|
217 |
-
msgstr "
|
218 |
|
219 |
-
#: inc/php/page.php:
|
220 |
-
msgid "
|
221 |
-
msgstr "
|
222 |
|
223 |
-
#: inc/php/page.php:
|
224 |
-
msgid "
|
225 |
-
msgstr "
|
226 |
|
227 |
-
#: inc/php/page.php:
|
228 |
-
msgid "The last WordPress update is preventing me from editing my website that is using this plugin.
|
229 |
-
msgstr "De laatste Wordpress update zorgt ervoor dat ik mijn website niet kan bewerken als ik deze plugin gebruik.
|
230 |
|
231 |
-
#: inc/php/page.php:
|
232 |
-
msgid "
|
233 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
234 |
|
235 |
-
#: inc/php/page.php:
|
236 |
msgid "Where to report bug if found?"
|
237 |
msgstr "Waar kan een bug gerapporteerd worden indien gevonden?"
|
238 |
|
239 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
240 |
#, php-format
|
241 |
-
msgid "
|
242 |
-
msgstr "
|
243 |
|
244 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
245 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
246 |
msgstr "Waar kan ik ideeën of suggesties delen om de plug-in beter te maken?"
|
247 |
|
248 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
249 |
#, php-format
|
250 |
-
msgid "
|
251 |
-
msgstr "
|
252 |
|
253 |
-
#: inc/php/page.php:
|
254 |
-
msgid "I
|
255 |
-
msgstr "
|
256 |
|
257 |
-
#: inc/php/page.php:
|
258 |
#, php-format
|
259 |
-
msgid "
|
260 |
-
msgstr "
|
261 |
|
262 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
263 |
msgid "My question wasn't answered here."
|
264 |
msgstr "Mij vraag is hier niet beantwoord."
|
265 |
|
266 |
-
#: inc/php/page.php:
|
267 |
#, php-format
|
268 |
-
msgid "You can ask your question on %s this page %s.
|
269 |
-
msgstr "Je kunt je vraag op %s deze pagina %s stellen.
|
270 |
|
271 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
272 |
msgid "Support Us"
|
273 |
msgstr "Ondersteun ons"
|
274 |
|
275 |
-
#: inc/php/page.php:
|
276 |
msgid "Donate with PayPal"
|
277 |
msgstr "Doneer via PayPal"
|
278 |
|
279 |
-
#: inc/php/page.php:
|
280 |
#, php-format
|
281 |
-
msgid "
|
282 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
283 |
|
284 |
-
#: inc/php/page.php:
|
285 |
-
msgid "Our
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: inc/php/page.php:
|
289 |
-
msgid "We
|
290 |
-
msgstr "
|
|
|
|
|
|
|
|
|
291 |
|
292 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
293 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
294 |
-
msgstr "Als je
|
295 |
|
296 |
-
#: inc/php/page.php:
|
297 |
msgid "Thank you for your support!"
|
298 |
msgstr "Bedankt voor je ondersteuning!"
|
299 |
|
@@ -459,7 +717,7 @@ msgstr ""
|
|
459 |
|
460 |
#: inc/php/settings.php:221 inc/php/sidebar.php:41
|
461 |
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."
|
462 |
-
msgstr "
|
463 |
|
464 |
#: inc/php/settings.php:228 inc/php/sidebar.php:48
|
465 |
msgid "Thanks for your support!"
|
@@ -467,19 +725,19 @@ msgstr "Bedankt voor uw steun!"
|
|
467 |
|
468 |
#: inc/php/sidebar.php:16
|
469 |
msgid "We are «Space X-Chimp»"
|
470 |
-
msgstr ""
|
471 |
|
472 |
#: inc/php/sidebar.php:25
|
473 |
msgid "About"
|
474 |
msgstr "Over"
|
475 |
|
476 |
#: inc/php/sidebar.php:27
|
477 |
-
msgid "This plugin
|
478 |
msgstr ""
|
479 |
|
480 |
#: inc/php/sidebar.php:32
|
481 |
msgid "Help"
|
482 |
-
msgstr "
|
483 |
|
484 |
#: inc/php/sidebar.php:34
|
485 |
msgid "If you have a question, please read the information in the FAQ section."
|
@@ -504,12 +762,3 @@ msgstr "Space X-Chimp"
|
|
504 |
#. Author URI of the plugin/theme
|
505 |
msgid "https://www.spacexchimp.com"
|
506 |
msgstr "https://www.spacexchimp.com"
|
507 |
-
|
508 |
-
#~ msgid "Note!"
|
509 |
-
#~ msgstr "Opmerking!"
|
510 |
-
|
511 |
-
#~ msgid "Hello! My name is %s Arthur %s and I'm the founder of %s Space X-Chimp %s."
|
512 |
-
#~ msgstr "Hallo! Mijn naam is %s Arthur %s en ik ben de oprichter van %s Space X-Chimp %s."
|
513 |
-
|
514 |
-
#~ msgid "My intention is to create projects that will make this world a better place. I'm really passionate about my work, I like what I'm doing and hope that you will be enriched by my projects too."
|
515 |
-
#~ msgstr "Het is mijn bedoeling om projecten te maken die van deze wereld een betere plek maken. Ik ben echt gepassioneerd over mijn werk, ik vind het leuk wat ik doe en hoop dat je ook verrijkt zult worden door mijn projecten."
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: All Meta Tags\n"
|
6 |
+
"POT-Creation-Date: 2019-02-20 23:15+0300\n"
|
7 |
+
"PO-Revision-Date: 2019-02-20 23:15+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Dutch\n"
|
10 |
"Language: nl_NL\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
|
23 |
+
#: inc/php/core.php:23 inc/php/page.php:44
|
24 |
msgid "Settings"
|
25 |
msgstr "Instellingen"
|
26 |
|
32 |
msgid "Meta Tags Inserter"
|
33 |
msgstr "Meta Tags Inserter"
|
34 |
|
35 |
+
#: inc/php/messages.php:27 inc/php/page.php:433
|
36 |
+
msgid "Hello!"
|
37 |
+
msgstr "Hallo!"
|
38 |
|
39 |
#: inc/php/messages.php:28
|
40 |
+
msgid "We are the team of Space X-Chimp."
|
41 |
+
msgstr "Wij zijn het team van Space X-Chimp."
|
42 |
+
|
43 |
+
#: inc/php/messages.php:33
|
44 |
#, php-format
|
45 |
msgid "Thank you for installing our plugin! We hope you will love it! %s"
|
46 |
msgstr "Bedankt voor het installeren van onze plug-in! We hopen dat je het geweldig zult vinden! %s"
|
47 |
|
48 |
+
#: inc/php/messages.php:74
|
49 |
msgid "You have installed an old version of this plugin."
|
50 |
msgstr "Je hebt een oudere versie van deze plug-in geïnstalleerd."
|
51 |
|
52 |
+
#: inc/php/messages.php:75
|
53 |
msgid "Please update the plugin to the latest version, and all will be fine."
|
54 |
msgstr "Update de plug-in naar de nieuwste versie en alles komt goed."
|
55 |
|
56 |
+
#: inc/php/page.php:31
|
57 |
#, php-format
|
58 |
msgid "by %s Space X-Chimp %s"
|
59 |
msgstr "door %s Space X-Chimp %s"
|
60 |
|
61 |
+
#: inc/php/page.php:37
|
62 |
msgid "Version"
|
63 |
msgstr "Versie"
|
64 |
|
65 |
+
#: inc/php/page.php:45
|
66 |
msgid "Usage"
|
67 |
msgstr "Gebruik"
|
68 |
|
69 |
+
#: inc/php/page.php:46
|
70 |
msgid "F.A.Q."
|
71 |
msgstr "F.A.Q."
|
72 |
|
73 |
+
#: inc/php/page.php:47 inc/php/settings.php:219 inc/php/sidebar.php:39
|
74 |
msgid "Support"
|
75 |
msgstr "Ondersteuning"
|
76 |
|
77 |
+
#: inc/php/page.php:48
|
78 |
msgid "Store"
|
79 |
msgstr "Winkel"
|
80 |
|
81 |
+
#: inc/php/page.php:64
|
82 |
msgid "Usage Instructions"
|
83 |
msgstr "Gebruiksinstructies"
|
84 |
|
85 |
+
#: inc/php/page.php:66
|
86 |
msgid "To add the meta tags to your website, simply follow these steps:"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: inc/php/page.php:68
|
90 |
msgid "Go to the \"Settings\" tab on this page."
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: inc/php/page.php:69
|
94 |
msgid "Fill in the required fields."
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: inc/php/page.php:70
|
98 |
msgid "Click the \"Save changes\" button."
|
99 |
msgstr "Klik op de knop \"Wijzigingen opslaan\"."
|
100 |
|
101 |
+
#: inc/php/page.php:71 inc/php/page.php:202
|
102 |
msgid "Enjoy the improved SEO of your website."
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: inc/php/page.php:71 inc/php/page.php:203
|
106 |
msgid "It's that simple!"
|
107 |
msgstr "Zo eenvoudig is het!"
|
108 |
|
109 |
+
#: inc/php/page.php:76
|
110 |
#, php-format
|
111 |
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
112 |
msgstr "Wilt u meer opties dan %s vertel ons %s en wij zullen graag toevoegen."
|
113 |
|
114 |
+
#: inc/php/page.php:90
|
115 |
msgid "Frequently Asked Questions"
|
116 |
msgstr "Veel voorkomende vragen (FAQ)"
|
117 |
|
118 |
+
#: inc/php/page.php:94
|
119 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
120 |
msgstr "Als je een vraag hebt, lees dan eerst de Veel voorkomende vragen (FAQ) hieronder. Misschien staat het antwoord ertussen."
|
121 |
|
122 |
+
#: inc/php/page.php:119
|
123 |
+
msgid "Where can I find a documentation for this plugin?"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: inc/php/page.php:124
|
127 |
+
#, php-format
|
128 |
+
msgid "Please visit our %s Documentation site %s to view documentation."
|
129 |
+
msgstr ""
|
130 |
+
|
131 |
+
#: inc/php/page.php:132
|
132 |
+
msgid "Will this plugin work on my wordpress.COM website?"
|
133 |
+
msgstr "Werkt deze plugin op mijn wordpress.COM website?"
|
134 |
+
|
135 |
+
#: inc/php/page.php:135
|
136 |
+
msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
|
137 |
+
msgstr "Sorry, deze plug-in is alleen beschikbaar voor gebruik op zelf-gehoste (wordpress.ORG) websites."
|
138 |
+
|
139 |
+
#: inc/php/page.php:137
|
140 |
+
msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
|
141 |
+
msgstr ""
|
142 |
+
|
143 |
+
#: inc/php/page.php:138
|
144 |
+
msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
|
145 |
+
msgstr ""
|
146 |
+
|
147 |
+
#: inc/php/page.php:141
|
148 |
+
#, php-format
|
149 |
+
msgid "You can learn more about the difference here: %s ."
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: inc/php/page.php:148
|
153 |
+
msgid "Will this plugin work/compatible with the theme I use?"
|
154 |
+
msgstr ""
|
155 |
+
|
156 |
+
#: inc/php/page.php:151
|
157 |
+
msgid "This plugin is compatible with most themes."
|
158 |
+
msgstr ""
|
159 |
+
|
160 |
+
#: inc/php/page.php:152
|
161 |
+
msgid "But, unfortunately, we cannot check it with all third-party themes (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party theme."
|
162 |
+
msgstr ""
|
163 |
+
|
164 |
+
#: inc/php/page.php:153
|
165 |
+
msgid "We constantly check this plugin for compatibility with third-party themes."
|
166 |
+
msgstr ""
|
167 |
+
|
168 |
+
#: inc/php/page.php:154
|
169 |
+
msgid "If we find that this plugin is incompatible with a third-party theme, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
170 |
+
msgstr ""
|
171 |
+
|
172 |
+
#: inc/php/page.php:156
|
173 |
+
msgid "If you find a conflict between our plugin and a third-party theme, please let us know and we will definitely release an update of our plugin to fix the problem."
|
174 |
+
msgstr ""
|
175 |
+
|
176 |
+
#: inc/php/page.php:160
|
177 |
+
msgid "Will this plugin work/compatible with other plugins that I use?"
|
178 |
+
msgstr ""
|
179 |
+
|
180 |
+
#: inc/php/page.php:163
|
181 |
+
msgid "This plugin is compatible with most plugins."
|
182 |
+
msgstr ""
|
183 |
|
184 |
+
#: inc/php/page.php:164
|
185 |
+
msgid "But, unfortunately, we cannot check it with all third-party plugins (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party plugin."
|
186 |
+
msgstr ""
|
187 |
|
188 |
+
#: inc/php/page.php:165
|
189 |
+
msgid "We constantly check this plugin for compatibility with third-party plugins."
|
190 |
+
msgstr ""
|
191 |
+
|
192 |
+
#: inc/php/page.php:166
|
193 |
+
msgid "If we find that this plugin is incompatible with a third-party plugin, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
194 |
+
msgstr ""
|
195 |
+
|
196 |
+
#: inc/php/page.php:168
|
197 |
+
msgid "If you find a conflict between our plugin and a third-party plugin, please let us know and we will definitely release an update of our plugin to fix the problem."
|
198 |
+
msgstr ""
|
199 |
+
|
200 |
+
#: inc/php/page.php:172
|
201 |
msgid "Can I use this plugin on my language?"
|
202 |
msgstr "Kan ik deze plug-in in mijn eigen taal gebruiken?"
|
203 |
|
204 |
+
#: inc/php/page.php:175
|
205 |
+
msgid "Yes."
|
206 |
+
msgstr "Ja."
|
207 |
|
208 |
+
#: inc/php/page.php:176
|
209 |
+
msgid "This plugin is ready for translation and has already been translated into several languages."
|
210 |
+
msgstr "Deze plug-in is klaar voor vertaling en is reeds in verschillende talen vertaald."
|
|
|
211 |
|
212 |
+
#: inc/php/page.php:177
|
213 |
+
msgid "But If your language is not available then you can make one."
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: inc/php/page.php:178
|
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/page.php:179
|
221 |
+
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
222 |
+
msgstr "Veel plugin-gebruikers zouden blij zijn als je je vertaling met de community deelt."
|
223 |
+
|
224 |
+
#: inc/php/page.php:180
|
225 |
+
msgid "Thanks for your contribution!"
|
226 |
+
msgstr "Bedankt voor je bijdrage!"
|
227 |
+
|
228 |
+
#: inc/php/page.php:184
|
229 |
+
#, php-format
|
230 |
+
msgid "If you want to help translate this plugin, please visit the %s."
|
231 |
+
msgstr "Als je wilt helpen deze plug-in te vertalen, bezoek dan de %s."
|
232 |
+
|
233 |
+
#: inc/php/page.php:188
|
234 |
+
msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
|
235 |
+
msgstr "Je kunt ook het POT-bestand gebruiken, dat is inbegrepen en in de map “languages” is geplaatst om een PO-bestand met vertalingen te maken."
|
236 |
|
237 |
+
#: inc/php/page.php:191
|
238 |
+
#, php-format
|
239 |
+
msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
|
240 |
+
msgstr "Stuur het PO-bestand naar ons ( %s ) en we zullen deze vertaling opnemen in de volgende plug-in update."
|
241 |
+
|
242 |
+
#: inc/php/page.php:198
|
243 |
msgid "How does it work?"
|
244 |
msgstr "Hoe werkt het?"
|
245 |
|
246 |
+
#: inc/php/page.php:201
|
247 |
+
msgid "On the \"Settings\" tab, fill in the required fields and click the \"Save changes\" button."
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: inc/php/page.php:207
|
251 |
msgid "How much of description I can enter in the text field?"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: inc/php/page.php:210
|
255 |
msgid "We don't limit the number of characters, but most search engines use a maximum of 160 chars for the home description."
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: inc/php/page.php:214
|
259 |
msgid "How much of keywords I can enter in the text field?"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: inc/php/page.php:217
|
263 |
msgid "We don't limit the number of characters."
|
264 |
msgstr "Er is geen beperking op het aantal tekens."
|
265 |
|
266 |
+
#: inc/php/page.php:221
|
267 |
+
msgid "What about compatibility with the plugin \"All in One SEO Pack\"?"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: inc/php/page.php:224
|
271 |
+
msgid "As far as we know, the \"All Meta Tags\" plugin is compatible with the \"All in One SEO Pack\" plugin."
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: inc/php/page.php:225 inc/php/page.php:242
|
275 |
+
msgid "But to make sure that these plugins do not conflict with each other, you need to follow one simple rule: do not fill the same field in both plugins at once."
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: inc/php/page.php:226
|
279 |
+
msgid "Otherwise both plugins fulfill their work and you will get a duplicate actions, for example:"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: inc/php/page.php:234 inc/php/page.php:245
|
283 |
+
msgid "If you find a conflict between the plugins, please let us know and we will definitely release an update of our plugin to fix the problem."
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: inc/php/page.php:238
|
287 |
msgid "What about compatibility with the plugin \"Yoast SEO\"?"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: inc/php/page.php:241
|
291 |
+
msgid "As far as we know, the \"All Meta Tags\" plugin is compatible with the \"Yoast SEO\" plugin."
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: inc/php/page.php:243
|
295 |
+
msgid "Otherwise both plugins fulfill their work and you will get a duplicate actions."
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: inc/php/page.php:249
|
299 |
msgid "Does this plugin requires any modification of the theme?"
|
300 |
msgstr "Heeft deze plug-in enige aanpassing van het thema nodig?"
|
301 |
|
302 |
+
#: inc/php/page.php:252 inc/php/page.php:260
|
303 |
+
msgid "Absolutely not."
|
304 |
+
msgstr "Absoluut niet."
|
305 |
+
|
306 |
+
#: inc/php/page.php:253
|
307 |
+
msgid "This plugin is configurable entirely from the plugin settings page."
|
308 |
+
msgstr "Deze plug-in kan volledig worden geconfigureerd via de pagina met plugin-instellingen."
|
309 |
|
310 |
+
#: inc/php/page.php:257
|
311 |
msgid "Does this require any knowledge of HTML or CSS?"
|
312 |
msgstr "Vereist dit enige kennis van HTML of CSS?"
|
313 |
|
314 |
+
#: inc/php/page.php:261
|
315 |
+
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
316 |
+
msgstr "Deze plug-in kan worden geconfigureerd zonder kennis van HTML of CSS, met behulp van de eenvoudig te gebruiken plugin-instellingenpagina."
|
317 |
+
|
318 |
+
#: inc/php/page.php:265
|
319 |
+
msgid "It's not working."
|
320 |
+
msgstr "Het werkt niet."
|
321 |
+
|
322 |
+
#: inc/php/page.php:266
|
323 |
+
msgid "What could be wrong?"
|
324 |
+
msgstr "Wat kan er fout zijn?"
|
325 |
+
|
326 |
+
#: inc/php/page.php:269
|
327 |
+
msgid "As with every plugin, it's possible that things don't work."
|
328 |
+
msgstr "Zoals met elke plug-in, is het mogelijk dat dingen niet werken."
|
329 |
+
|
330 |
+
#: inc/php/page.php:270
|
331 |
+
msgid "It's impossible to tell what could be wrong exactly."
|
332 |
+
msgstr "Het is onmogelijk om precies te vertellen wat er precies mis zou kunnen zijn."
|
333 |
+
|
334 |
+
#: inc/php/page.php:271
|
335 |
+
msgid "The most common reason for this is a web browser's cache."
|
336 |
+
msgstr "De meest voorkomende reden hiervoor is de cache van een webbrowser."
|
337 |
+
|
338 |
+
#: inc/php/page.php:272
|
339 |
+
msgid "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load."
|
340 |
+
msgstr "Elke webbrowser slaat een cache op van de websites die u bezoekt (pagina's, afbeeldingen en enz.) Om het bandbreedte-gebruik en de serverbelasting te verminderen."
|
341 |
+
|
342 |
+
#: inc/php/page.php:273
|
343 |
+
msgid "This is called the browser's cache."
|
344 |
+
msgstr "Dit wordt de cache van de browser genoemd."
|
345 |
+
|
346 |
+
#: inc/php/page.php:274
|
347 |
+
msgid "Clearing your browser's cache may solve the problem."
|
348 |
+
msgstr "Het wissen van de cache van uw browser kan het probleem oplossen."
|
349 |
+
|
350 |
+
#: inc/php/page.php:276
|
351 |
+
msgid "If you post a support request in the plugin's support forum on WordPress.org, we'd be happy to give it a look and try to help out."
|
352 |
+
msgstr "Als je een ondersteuningsverzoek post in het ondersteuningsforum van de plug-in op WordPress.org, willen we graag een kijkje nemen en proberen te helpen."
|
353 |
+
|
354 |
+
#: inc/php/page.php:277 inc/php/page.php:315
|
355 |
+
msgid "Please include as much information as possible, including a link to your website where the problem can be seen."
|
356 |
+
msgstr "Voeg zoveel mogelijk informatie toe, inclusief een link naar uw website waar het probleem kan worden gezien."
|
357 |
+
|
358 |
+
#: inc/php/page.php:281
|
359 |
+
msgid "I can't get verify my website."
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: inc/php/page.php:282
|
363 |
+
msgid "What am I doing wrong?"
|
364 |
+
msgstr ""
|
365 |
|
366 |
+
#: inc/php/page.php:285
|
367 |
+
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>)."
|
368 |
+
msgstr ""
|
369 |
|
370 |
+
#: inc/php/page.php:286
|
371 |
+
msgid "So just paste that into the relevant field and you will see “Success” message appear within a few seconds."
|
372 |
+
msgstr ""
|
373 |
|
374 |
+
#: inc/php/page.php:290
|
375 |
+
msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
|
376 |
+
msgstr "De laatste Wordpress update zorgt ervoor dat ik mijn website niet kan bewerken als ik deze plugin gebruik."
|
377 |
|
378 |
+
#: inc/php/page.php:291
|
379 |
+
msgid "Why is this?"
|
380 |
+
msgstr "Waarom is dit?"
|
381 |
+
|
382 |
+
#: inc/php/page.php:294
|
383 |
+
msgid "This plugin can not cause such problem."
|
384 |
+
msgstr "Deze plug-in kan zo’n probleem niet veroorzaken."
|
385 |
+
|
386 |
+
#: inc/php/page.php:295
|
387 |
+
msgid "More likely, the problem are related to the settings of the website."
|
388 |
+
msgstr "Waarschijnlijker is het probleem gerelateerd aan de instellingen van de website."
|
389 |
+
|
390 |
+
#: inc/php/page.php:296
|
391 |
+
msgid "It could just be a cache, so please try to clear your website's cache (may be you using a caching plugin, or some web service such as the CloudFlare) and then the cache of your web browser."
|
392 |
+
msgstr "Het kan gewoon een cache-probleem zijn, dus probeer de cache van je website te wissen (mogelijk gebruik je een caching-plug-in of een webservice zoals de CloudFlare) en vervolgens de cache van je webbrowser."
|
393 |
+
|
394 |
+
#: inc/php/page.php:297
|
395 |
+
msgid "Also please try to re-login to the website, this too can help."
|
396 |
+
msgstr "Probeer ook opnieuw in te loggen op de website, ook dit kan helpen."
|
397 |
|
398 |
+
#: inc/php/page.php:301
|
399 |
msgid "Where to report bug if found?"
|
400 |
msgstr "Waar kan een bug gerapporteerd worden indien gevonden?"
|
401 |
|
402 |
+
#: inc/php/page.php:304
|
403 |
+
msgid "Bug reports are very welcome!"
|
404 |
+
msgstr "Bugrapporten zijn van harte welkom!"
|
405 |
+
|
406 |
+
#: inc/php/page.php:307
|
407 |
#, php-format
|
408 |
+
msgid "Please visit our %s contact page %s and report."
|
409 |
+
msgstr "Ga naar onze %s contactpagina %s en rapporteer."
|
410 |
|
411 |
+
#: inc/php/page.php:312 inc/php/page.php:340
|
412 |
+
msgid "Please do not forget to specify the name of the plugin."
|
413 |
+
msgstr "Vergeet alsjeblieft niet om de naam van de plug-in te specificeren."
|
414 |
+
|
415 |
+
#: inc/php/page.php:313 inc/php/page.php:341 inc/php/page.php:357
|
416 |
+
msgid "Thank you!"
|
417 |
+
msgstr "Dank je!"
|
418 |
+
|
419 |
+
#: inc/php/page.php:316
|
420 |
+
msgid "Describe in more detail what exactly you are seeing."
|
421 |
+
msgstr ""
|
422 |
+
|
423 |
+
#: inc/php/page.php:317
|
424 |
+
msgid "Here are some examples:"
|
425 |
+
msgstr ""
|
426 |
+
|
427 |
+
#: inc/php/page.php:320
|
428 |
+
msgid "Elements of the plugin settings page are not working."
|
429 |
+
msgstr ""
|
430 |
+
|
431 |
+
#: inc/php/page.php:321
|
432 |
+
msgid "An error message is displayed on the plugin settings page."
|
433 |
+
msgstr ""
|
434 |
+
|
435 |
+
#: inc/php/page.php:322
|
436 |
+
msgid "An error message is displayed on the front end of website."
|
437 |
+
msgstr ""
|
438 |
+
|
439 |
+
#: inc/php/page.php:323
|
440 |
+
msgid "An error message is displayed on the back end of website."
|
441 |
+
msgstr ""
|
442 |
+
|
443 |
+
#: inc/php/page.php:324
|
444 |
+
msgid "Website is crashed."
|
445 |
+
msgstr ""
|
446 |
+
|
447 |
+
#: inc/php/page.php:329
|
448 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
449 |
msgstr "Waar kan ik ideeën of suggesties delen om de plug-in beter te maken?"
|
450 |
|
451 |
+
#: inc/php/page.php:332
|
452 |
+
msgid "Any suggestions are very welcome!"
|
453 |
+
msgstr "Alle suggesties zijn van harte welkom!"
|
454 |
+
|
455 |
+
#: inc/php/page.php:335
|
456 |
+
#, php-format
|
457 |
+
msgid "Please visit our %s contact page %s."
|
458 |
+
msgstr "Ga naar onze %s contactpagina %s."
|
459 |
+
|
460 |
+
#: inc/php/page.php:345
|
461 |
+
msgid "I love this plugin!"
|
462 |
+
msgstr "Ik ben dol op deze plug-in!"
|
463 |
+
|
464 |
+
#: inc/php/page.php:346
|
465 |
+
msgid "Can I help somehow?"
|
466 |
+
msgstr "Kan ik op de een of andere manier helpen?"
|
467 |
+
|
468 |
+
#: inc/php/page.php:349
|
469 |
+
msgid "Yes, any contributions are very welcome!"
|
470 |
+
msgstr "Ja, alle bijdragen zijn van harte welkom!"
|
471 |
+
|
472 |
+
#: inc/php/page.php:352
|
473 |
#, php-format
|
474 |
+
msgid "Please visit our %s Support Us %s page."
|
475 |
+
msgstr "Ga naar onze %s Support Us %s."
|
476 |
|
477 |
+
#: inc/php/page.php:361
|
478 |
+
msgid "Where can I find information about your licenses, payment process and refunds?"
|
479 |
+
msgstr ""
|
480 |
|
481 |
+
#: inc/php/page.php:366
|
482 |
#, php-format
|
483 |
+
msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
|
484 |
+
msgstr ""
|
485 |
|
486 |
+
#: inc/php/page.php:374
|
487 |
+
msgid "Where can I find information about your customer support?"
|
488 |
+
msgstr ""
|
489 |
+
|
490 |
+
#: inc/php/page.php:379
|
491 |
+
#, php-format
|
492 |
+
msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
|
493 |
+
msgstr ""
|
494 |
+
|
495 |
+
#: inc/php/page.php:387
|
496 |
+
msgid "Where can I find information about your affiliate program?"
|
497 |
+
msgstr ""
|
498 |
+
|
499 |
+
#: inc/php/page.php:392
|
500 |
+
#, php-format
|
501 |
+
msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
|
502 |
+
msgstr ""
|
503 |
+
|
504 |
+
#: inc/php/page.php:400
|
505 |
msgid "My question wasn't answered here."
|
506 |
msgstr "Mij vraag is hier niet beantwoord."
|
507 |
|
508 |
+
#: inc/php/page.php:405
|
509 |
#, php-format
|
510 |
+
msgid "You can ask your question on %s this page %s."
|
511 |
+
msgstr "Je kunt je vraag op %s deze pagina %s stellen."
|
512 |
|
513 |
+
#: inc/php/page.php:410
|
514 |
+
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."
|
515 |
+
msgstr "Maar houd er rekening mee dat deze plug-in gratis is en er geen speciaal ondersteuningsteam is, dus we kunnen niet iedereen antwoorden."
|
516 |
+
|
517 |
+
#: inc/php/page.php:421
|
518 |
msgid "Support Us"
|
519 |
msgstr "Ondersteun ons"
|
520 |
|
521 |
+
#: inc/php/page.php:429 inc/php/settings.php:226 inc/php/sidebar.php:46
|
522 |
msgid "Donate with PayPal"
|
523 |
msgstr "Doneer via PayPal"
|
524 |
|
525 |
+
#: inc/php/page.php:436
|
526 |
#, php-format
|
527 |
+
msgid "My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
528 |
+
msgstr "Mijn naam is %s Arthur %s en ik ben de oprichter van %s Space X-Chimp %s, which unites a small international team of young people."
|
529 |
+
|
530 |
+
#: inc/php/page.php:445
|
531 |
+
msgid "Our intention is to create projects that will make this world a better place."
|
532 |
+
msgstr "Het is onze bedoeling om projecten te maken die van deze wereld een betere plek maken."
|
533 |
|
534 |
+
#: inc/php/page.php:446
|
535 |
+
msgid "Our motto is - «Follow your dreams and don’t give up»."
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: inc/php/page.php:447
|
539 |
+
msgid "We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
540 |
+
msgstr "We zijn echt gepassioneerd over ons werk, we vind het leuk wat we doe en hoop dat je ook verrijkt zult worden door ons projecten."
|
541 |
+
|
542 |
+
#: inc/php/page.php:450
|
543 |
+
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them."
|
544 |
+
msgstr "We besteden veel tijd en moeite om ervoor te zorgen dat de thema's, plug-ins en andere dingen die we maak nuttig zijn, en het ultieme bewijs daarvan is dat je ze echt wilt gebruiken."
|
545 |
|
546 |
+
#: inc/php/page.php:451
|
547 |
+
msgid "But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
548 |
+
msgstr "We zijn een onafhankelijke ontwikkelaar, zonder een vast inkomen, dus elke kleine bijdrage helpt ons onze kosten te dekken en laat ons meer tijd spenderen aan het bouwen van dingen voor mensen zoals jij om van te genieten."
|
549 |
+
|
550 |
+
#: inc/php/page.php:454
|
551 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
552 |
+
msgstr "Als je ons werk waardeert, kun je een koffie voor ons kopen!"
|
553 |
|
554 |
+
#: inc/php/page.php:457
|
555 |
msgid "Thank you for your support!"
|
556 |
msgstr "Bedankt voor je ondersteuning!"
|
557 |
|
717 |
|
718 |
#: inc/php/settings.php:221 inc/php/sidebar.php:41
|
719 |
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."
|
720 |
+
msgstr ""
|
721 |
|
722 |
#: inc/php/settings.php:228 inc/php/sidebar.php:48
|
723 |
msgid "Thanks for your support!"
|
725 |
|
726 |
#: inc/php/sidebar.php:16
|
727 |
msgid "We are «Space X-Chimp»"
|
728 |
+
msgstr "Wij zijn «Space X-Chimp»"
|
729 |
|
730 |
#: inc/php/sidebar.php:25
|
731 |
msgid "About"
|
732 |
msgstr "Over"
|
733 |
|
734 |
#: inc/php/sidebar.php:27
|
735 |
+
msgid "This plugin gives you the ability to easily and safely add your custom meta tags to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
|
736 |
msgstr ""
|
737 |
|
738 |
#: inc/php/sidebar.php:32
|
739 |
msgid "Help"
|
740 |
+
msgstr "Helpen"
|
741 |
|
742 |
#: inc/php/sidebar.php:34
|
743 |
msgid "If you have a question, please read the information in the FAQ section."
|
762 |
#. Author URI of the plugin/theme
|
763 |
msgid "https://www.spacexchimp.com"
|
764 |
msgstr "https://www.spacexchimp.com"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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-
|
7 |
-
"PO-Revision-Date: 2019-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Russian\n"
|
10 |
"Language: ru_RU\n"
|
@@ -20,7 +20,7 @@ msgstr ""
|
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
|
23 |
-
#: inc/php/core.php:23 inc/php/page.php:
|
24 |
msgid "Settings"
|
25 |
msgstr "Настройки"
|
26 |
|
@@ -32,268 +32,526 @@ msgstr "Поддержать"
|
|
32 |
msgid "Meta Tags Inserter"
|
33 |
msgstr "Meta Tags Inserter"
|
34 |
|
35 |
-
#: inc/php/messages.php:
|
36 |
-
msgid "Hello
|
37 |
-
msgstr "Привет!
|
38 |
|
39 |
#: inc/php/messages.php:28
|
|
|
|
|
|
|
|
|
40 |
#, php-format
|
41 |
msgid "Thank you for installing our plugin! We hope you will love it! %s"
|
42 |
msgstr "Благодарим вас за установку нашего плагина! Надеемся, он вам полюбится! %s"
|
43 |
|
44 |
-
#: inc/php/messages.php:
|
45 |
msgid "You have installed an old version of this plugin."
|
46 |
msgstr "Вы установили устаревшую версию этого плагина."
|
47 |
|
48 |
-
#: inc/php/messages.php:
|
49 |
msgid "Please update the plugin to the latest version, and all will be fine."
|
50 |
msgstr "Пожалуйста, обновите плагин до последней версии и всё будет отлично."
|
51 |
|
52 |
-
#: inc/php/page.php:
|
53 |
#, php-format
|
54 |
msgid "by %s Space X-Chimp %s"
|
55 |
msgstr "от %s Space X-Chimp %s"
|
56 |
|
57 |
-
#: inc/php/page.php:
|
58 |
msgid "Version"
|
59 |
msgstr "Версия"
|
60 |
|
61 |
-
#: inc/php/page.php:
|
62 |
msgid "Usage"
|
63 |
msgstr "Применение"
|
64 |
|
65 |
-
#: inc/php/page.php:
|
66 |
msgid "F.A.Q."
|
67 |
msgstr "F.A.Q."
|
68 |
|
69 |
-
#: inc/php/page.php:
|
70 |
msgid "Support"
|
71 |
msgstr "Поддержка"
|
72 |
|
73 |
-
#: inc/php/page.php:
|
74 |
msgid "Store"
|
75 |
msgstr "Магазин"
|
76 |
|
77 |
-
#: inc/php/page.php:
|
78 |
msgid "Usage Instructions"
|
79 |
msgstr "Инструкция по использованию"
|
80 |
|
81 |
-
#: inc/php/page.php:
|
82 |
msgid "To add the meta tags to your website, simply follow these steps:"
|
83 |
msgstr "Для того чтобы добавить метатеги на ваш веб-сайт, выполните следующие действия:"
|
84 |
|
85 |
-
#: inc/php/page.php:
|
86 |
msgid "Go to the \"Settings\" tab on this page."
|
87 |
msgstr "Перейдите на вкладку «Настройки»."
|
88 |
|
89 |
-
#: inc/php/page.php:
|
90 |
msgid "Fill in the required fields."
|
91 |
msgstr "Заполните необходимые поля."
|
92 |
|
93 |
-
#: inc/php/page.php:
|
94 |
msgid "Click the \"Save changes\" button."
|
95 |
msgstr "Нажмите кнопку «Сохранить изменения»."
|
96 |
|
97 |
-
#: inc/php/page.php:
|
98 |
msgid "Enjoy the improved SEO of your website."
|
99 |
msgstr "Наслаждайтесь улучшенным SEO вашего веб-сайта."
|
100 |
|
101 |
-
#: inc/php/page.php:
|
102 |
msgid "It's that simple!"
|
103 |
-
msgstr "
|
104 |
|
105 |
-
#: inc/php/page.php:
|
106 |
#, php-format
|
107 |
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
108 |
msgstr "Если вы хотите больше вариантов, то %s сообщите нам %s и мы будем рады добавить их."
|
109 |
|
110 |
-
#: inc/php/page.php:
|
111 |
msgid "Frequently Asked Questions"
|
112 |
msgstr "Часто задаваемые вопросы"
|
113 |
|
114 |
-
#: inc/php/page.php:
|
115 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
116 |
msgstr "Если у вас есть вопрос, пожалуйста, прочтите часто задаваемые вопросы."
|
117 |
|
118 |
-
#: inc/php/page.php:
|
119 |
-
msgid "
|
120 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
121 |
|
122 |
-
#: inc/php/page.php:
|
123 |
-
msgid "
|
124 |
-
msgstr "
|
125 |
|
126 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
127 |
msgid "Can I use this plugin on my language?"
|
128 |
msgstr "Можно ли использовать этот плагин на моём языке?"
|
129 |
|
130 |
-
#: inc/php/page.php:
|
131 |
-
msgid "Yes.
|
132 |
-
msgstr "Да.
|
|
|
|
|
|
|
|
|
133 |
|
134 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
135 |
#, php-format
|
136 |
-
msgid "If you want to help translate this plugin
|
137 |
-
msgstr "Если вы хотите помочь перевести этот плагин, пожалуйста, посетите %s.
|
138 |
|
139 |
-
#: inc/php/page.php:
|
140 |
-
msgid "
|
141 |
-
msgstr "
|
142 |
|
143 |
-
#: inc/php/page.php:
|
144 |
-
|
145 |
-
|
|
|
146 |
|
147 |
-
#: inc/php/page.php:
|
148 |
msgid "How does it work?"
|
149 |
msgstr "Как это работает?"
|
150 |
|
151 |
-
#: inc/php/page.php:
|
152 |
-
msgid "On the \"Settings\" tab, fill in the required fields and click the \"Save changes\" button.
|
153 |
-
msgstr ""
|
154 |
|
155 |
-
#: inc/php/page.php:
|
156 |
msgid "How much of description I can enter in the text field?"
|
157 |
msgstr "Сколько описаний я могу ввести в текстовое поле?"
|
158 |
|
159 |
-
#: inc/php/page.php:
|
160 |
msgid "We don't limit the number of characters, but most search engines use a maximum of 160 chars for the home description."
|
161 |
-
msgstr "
|
162 |
|
163 |
-
#: inc/php/page.php:
|
164 |
msgid "How much of keywords I can enter in the text field?"
|
165 |
msgstr "Сколько ключевых слов я могу ввести в текстовое поле?"
|
166 |
|
167 |
-
#: inc/php/page.php:
|
168 |
msgid "We don't limit the number of characters."
|
169 |
-
msgstr "
|
170 |
-
|
171 |
-
#: inc/php/page.php:136
|
172 |
-
msgid "I can't get verify my website. What am I doing wrong?"
|
173 |
-
msgstr "Я не могу проверить свой сайт. Что я делаю не так?"
|
174 |
-
|
175 |
-
#: inc/php/page.php:137
|
176 |
-
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>). So just paste that into the relevant field and you will see “Success” message appear within a few seconds."
|
177 |
-
msgstr "Код тега, который даёт тебе Google (или Bing, Yandex, Pinterest, Alexa, Norton, WOT, SpecificFeeds) может запутать, поскольку вам нужно вставить только серийный ключ - число/буквы (<code>1234567890</code>) а не весь тэг (<code><meta name=\"google-site-verification\" content=“1234567890” /></code>). Так что просто вставьте серийный ключ в соответствующее поле, и вы увидите сообщение «Success» в течение нескольких секунд."
|
178 |
|
179 |
-
#: inc/php/page.php:
|
180 |
msgid "What about compatibility with the plugin \"All in One SEO Pack\"?"
|
181 |
msgstr "Что насчет совместимости с плагином \"All in One SEO Pack\"?"
|
182 |
|
183 |
-
#: inc/php/page.php:
|
184 |
-
msgid "As far as we know, the \"All Meta Tags\" plugin is compatible with the \"All in One SEO Pack\" plugin.
|
185 |
-
msgstr "
|
186 |
|
187 |
-
#: inc/php/page.php:
|
188 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: inc/php/page.php:
|
192 |
msgid "What about compatibility with the plugin \"Yoast SEO\"?"
|
193 |
msgstr "Что насчет совместимости с плагином \"All in One SEO Pack\"?"
|
194 |
|
195 |
-
#: inc/php/page.php:
|
196 |
-
msgid "As far as we know, the \"All Meta Tags\" plugin is compatible with the \"Yoast SEO\" plugin.
|
197 |
-
msgstr "
|
198 |
|
199 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
200 |
msgid "Does this plugin requires any modification of the theme?"
|
201 |
msgstr "Этот плагин требует изменения темы?"
|
202 |
|
203 |
-
#: inc/php/page.php:
|
204 |
-
msgid "Absolutely not.
|
205 |
-
msgstr "Абсолютно нет.
|
206 |
|
207 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
208 |
msgid "Does this require any knowledge of HTML or CSS?"
|
209 |
msgstr "Требуются ли какие-либо знания HTML или CSS?"
|
210 |
|
211 |
-
#: inc/php/page.php:
|
212 |
-
msgid "
|
213 |
-
msgstr "
|
214 |
|
215 |
-
#: inc/php/page.php:
|
216 |
-
msgid "It's not working.
|
217 |
-
msgstr "Оно не работает.
|
218 |
|
219 |
-
#: inc/php/page.php:
|
220 |
-
msgid "
|
221 |
-
msgstr "
|
222 |
|
223 |
-
#: inc/php/page.php:
|
224 |
-
msgid "
|
225 |
-
msgstr "
|
226 |
|
227 |
-
#: inc/php/page.php:
|
228 |
-
msgid "
|
229 |
-
msgstr "
|
230 |
|
231 |
-
#: inc/php/page.php:
|
232 |
-
msgid "
|
233 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
234 |
|
235 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
236 |
msgid "Where to report bug if found?"
|
237 |
msgstr "Где можно сообщить об ошибке?"
|
238 |
|
239 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
240 |
#, php-format
|
241 |
-
msgid "
|
242 |
-
msgstr "
|
243 |
|
244 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
245 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
246 |
msgstr "Где можно поделиться идеями или предложениями, чтобы сделать плагин лучше?"
|
247 |
|
248 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
249 |
#, php-format
|
250 |
-
msgid "
|
251 |
-
msgstr "
|
|
|
|
|
|
|
|
|
252 |
|
253 |
-
#: inc/php/page.php:
|
254 |
-
msgid "
|
255 |
-
msgstr "
|
256 |
|
257 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
258 |
#, php-format
|
259 |
-
msgid "
|
260 |
-
msgstr "
|
261 |
|
262 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
263 |
msgid "My question wasn't answered here."
|
264 |
-
msgstr "
|
265 |
|
266 |
-
#: inc/php/page.php:
|
267 |
#, php-format
|
268 |
-
msgid "You can ask your question on %s this page %s.
|
269 |
-
msgstr "Вы можете задать ваш вопрос на %s этой странице %s.
|
270 |
|
271 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
272 |
msgid "Support Us"
|
273 |
msgstr "Поддержать нас"
|
274 |
|
275 |
-
#: inc/php/page.php:
|
276 |
msgid "Donate with PayPal"
|
277 |
-
msgstr "Пожертвовать через
|
278 |
|
279 |
-
#: inc/php/page.php:
|
280 |
#, php-format
|
281 |
-
msgid "
|
|
|
|
|
|
|
|
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: inc/php/page.php:
|
285 |
-
msgid "Our
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: inc/php/page.php:
|
289 |
-
msgid "We
|
290 |
-
msgstr "
|
291 |
|
292 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
293 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
294 |
msgstr "Если вы цените мою работу, то вы можете купить мне кофе!"
|
295 |
|
296 |
-
#: inc/php/page.php:
|
297 |
msgid "Thank you for your support!"
|
298 |
msgstr "Спасибо за вашу поддержку!"
|
299 |
|
@@ -375,7 +633,7 @@ msgstr "Мета-теги только для Static Home Page"
|
|
375 |
|
376 |
#: inc/php/settings.php:120
|
377 |
msgid "You can use the options below to add meta tags such as Description and Keywords only in Static Home Page of your website."
|
378 |
-
msgstr "Вы можете использовать ниже-расположенные опции для добавления мета тегов таких как Description и Keywords только на Static Home Page страницу вашего
|
379 |
|
380 |
#: inc/php/settings.php:124
|
381 |
msgid "Home Description"
|
@@ -383,7 +641,7 @@ msgstr "Описание главной страницы"
|
|
383 |
|
384 |
#: inc/php/settings.php:126 inc/php/settings.php:147
|
385 |
msgid "Enter a short description of your website (150-250 characters). Most search engines use a maximum of 160 chars for the home description."
|
386 |
-
msgstr "Введите краткое описание для вашего
|
387 |
|
388 |
#: inc/php/settings.php:129
|
389 |
msgid "Home Keyword(s)"
|
@@ -399,7 +657,7 @@ msgstr "Мета-теги для Default Home Page и только Blog Page"
|
|
399 |
|
400 |
#: inc/php/settings.php:141
|
401 |
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."
|
402 |
-
msgstr "Вы можете использовать ниже-расположенные опции для добавления мета тегов таких как Description и Keywords только на Default Home Page и Blog Page страницы вашего
|
403 |
|
404 |
#: inc/php/settings.php:145
|
405 |
msgid "Blog Description"
|
@@ -419,7 +677,7 @@ msgstr "Мета-теги для всего веб-сайта (Глобальн
|
|
419 |
|
420 |
#: inc/php/settings.php:162
|
421 |
msgid "You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere on your website."
|
422 |
-
msgstr "Вы можете использовать ниже-расположенные опции для добавления мета тегов таких как Author, Copyright и Keywords на каждую страницу вашего
|
423 |
|
424 |
#: inc/php/settings.php:166
|
425 |
msgid "Author"
|
@@ -455,11 +713,11 @@ msgstr "Этот плагин автоматически добавляет не
|
|
455 |
|
456 |
#: inc/php/settings.php:214
|
457 |
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>."
|
458 |
-
msgstr "Проверить эти данные сгенерированные на страницах вашего
|
459 |
|
460 |
#: inc/php/settings.php:221 inc/php/sidebar.php:41
|
461 |
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."
|
462 |
-
msgstr "
|
463 |
|
464 |
#: inc/php/settings.php:228 inc/php/sidebar.php:48
|
465 |
msgid "Thanks for your support!"
|
@@ -474,8 +732,8 @@ msgid "About"
|
|
474 |
msgstr "О плагине"
|
475 |
|
476 |
#: inc/php/sidebar.php:27
|
477 |
-
msgid "This plugin
|
478 |
-
msgstr "
|
479 |
|
480 |
#: inc/php/sidebar.php:32
|
481 |
msgid "Help"
|
@@ -504,21 +762,3 @@ msgstr "Space X-Chimp"
|
|
504 |
#. Author URI of the plugin/theme
|
505 |
msgid "https://www.spacexchimp.com"
|
506 |
msgstr "https://www.spacexchimp.com"
|
507 |
-
|
508 |
-
#~ msgid "Note!"
|
509 |
-
#~ msgstr "Примечание!"
|
510 |
-
|
511 |
-
#~ msgid "In the rest, the \"All Meta Tags\" and \"All in One SEO Pack\" is compatible."
|
512 |
-
#~ msgstr "В остальном «All Meta Tags» и «All in One SEO Pack» совместимы."
|
513 |
-
|
514 |
-
#~ msgid "Select the desired settings."
|
515 |
-
#~ msgstr "Выберите нужные настройки."
|
516 |
-
|
517 |
-
#~ msgid "On the \"Settings\" tab, fill in the required fields, select the desired settings and click the \"Save changes\" button. Enjoy the improved SEO of your website. It's that simple!"
|
518 |
-
#~ msgstr "На вкладке «Настройки» заполните необходимые поля, выберите нужные настройки и нажмите кнопку «Сохранить изменения». Наслаждайтесь улучшенным SEO вашего веб-сайта. Это так просто!"
|
519 |
-
|
520 |
-
#~ msgid "Easily and safely add your custom Meta Tags to WordPress website's header."
|
521 |
-
#~ msgstr "Легко и безопасно добавлять свои собственные метатеги в заголовок веб-сайта WordPress."
|
522 |
-
|
523 |
-
#~ msgid "Hello! My name is %s Arthur %s and I'm the founder of %s Space X-Chimp %s."
|
524 |
-
#~ msgstr "Привет! Меня зовут %s Артур %s и Я основатель %s Space X-Chimp %s."
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: All Meta Tags\n"
|
6 |
+
"POT-Creation-Date: 2019-02-20 23:15+0300\n"
|
7 |
+
"PO-Revision-Date: 2019-02-20 23:15+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Russian\n"
|
10 |
"Language: ru_RU\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
|
23 |
+
#: inc/php/core.php:23 inc/php/page.php:44
|
24 |
msgid "Settings"
|
25 |
msgstr "Настройки"
|
26 |
|
32 |
msgid "Meta Tags Inserter"
|
33 |
msgstr "Meta Tags Inserter"
|
34 |
|
35 |
+
#: inc/php/messages.php:27 inc/php/page.php:433
|
36 |
+
msgid "Hello!"
|
37 |
+
msgstr "Привет!"
|
38 |
|
39 |
#: inc/php/messages.php:28
|
40 |
+
msgid "We are the team of Space X-Chimp."
|
41 |
+
msgstr "Мы - команда Space X-Chimp."
|
42 |
+
|
43 |
+
#: inc/php/messages.php:33
|
44 |
#, php-format
|
45 |
msgid "Thank you for installing our plugin! We hope you will love it! %s"
|
46 |
msgstr "Благодарим вас за установку нашего плагина! Надеемся, он вам полюбится! %s"
|
47 |
|
48 |
+
#: inc/php/messages.php:74
|
49 |
msgid "You have installed an old version of this plugin."
|
50 |
msgstr "Вы установили устаревшую версию этого плагина."
|
51 |
|
52 |
+
#: inc/php/messages.php:75
|
53 |
msgid "Please update the plugin to the latest version, and all will be fine."
|
54 |
msgstr "Пожалуйста, обновите плагин до последней версии и всё будет отлично."
|
55 |
|
56 |
+
#: inc/php/page.php:31
|
57 |
#, php-format
|
58 |
msgid "by %s Space X-Chimp %s"
|
59 |
msgstr "от %s Space X-Chimp %s"
|
60 |
|
61 |
+
#: inc/php/page.php:37
|
62 |
msgid "Version"
|
63 |
msgstr "Версия"
|
64 |
|
65 |
+
#: inc/php/page.php:45
|
66 |
msgid "Usage"
|
67 |
msgstr "Применение"
|
68 |
|
69 |
+
#: inc/php/page.php:46
|
70 |
msgid "F.A.Q."
|
71 |
msgstr "F.A.Q."
|
72 |
|
73 |
+
#: inc/php/page.php:47 inc/php/settings.php:219 inc/php/sidebar.php:39
|
74 |
msgid "Support"
|
75 |
msgstr "Поддержка"
|
76 |
|
77 |
+
#: inc/php/page.php:48
|
78 |
msgid "Store"
|
79 |
msgstr "Магазин"
|
80 |
|
81 |
+
#: inc/php/page.php:64
|
82 |
msgid "Usage Instructions"
|
83 |
msgstr "Инструкция по использованию"
|
84 |
|
85 |
+
#: inc/php/page.php:66
|
86 |
msgid "To add the meta tags to your website, simply follow these steps:"
|
87 |
msgstr "Для того чтобы добавить метатеги на ваш веб-сайт, выполните следующие действия:"
|
88 |
|
89 |
+
#: inc/php/page.php:68
|
90 |
msgid "Go to the \"Settings\" tab on this page."
|
91 |
msgstr "Перейдите на вкладку «Настройки»."
|
92 |
|
93 |
+
#: inc/php/page.php:69
|
94 |
msgid "Fill in the required fields."
|
95 |
msgstr "Заполните необходимые поля."
|
96 |
|
97 |
+
#: inc/php/page.php:70
|
98 |
msgid "Click the \"Save changes\" button."
|
99 |
msgstr "Нажмите кнопку «Сохранить изменения»."
|
100 |
|
101 |
+
#: inc/php/page.php:71 inc/php/page.php:202
|
102 |
msgid "Enjoy the improved SEO of your website."
|
103 |
msgstr "Наслаждайтесь улучшенным SEO вашего веб-сайта."
|
104 |
|
105 |
+
#: inc/php/page.php:71 inc/php/page.php:203
|
106 |
msgid "It's that simple!"
|
107 |
+
msgstr "Это так просто!"
|
108 |
|
109 |
+
#: inc/php/page.php:76
|
110 |
#, php-format
|
111 |
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
112 |
msgstr "Если вы хотите больше вариантов, то %s сообщите нам %s и мы будем рады добавить их."
|
113 |
|
114 |
+
#: inc/php/page.php:90
|
115 |
msgid "Frequently Asked Questions"
|
116 |
msgstr "Часто задаваемые вопросы"
|
117 |
|
118 |
+
#: inc/php/page.php:94
|
119 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
120 |
msgstr "Если у вас есть вопрос, пожалуйста, прочтите часто задаваемые вопросы."
|
121 |
|
122 |
+
#: inc/php/page.php:119
|
123 |
+
msgid "Where can I find a documentation for this plugin?"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: inc/php/page.php:124
|
127 |
+
#, php-format
|
128 |
+
msgid "Please visit our %s Documentation site %s to view documentation."
|
129 |
+
msgstr ""
|
130 |
+
|
131 |
+
#: inc/php/page.php:132
|
132 |
+
msgid "Will this plugin work on my wordpress.COM website?"
|
133 |
+
msgstr "Будет ли этот плагин работать на моем веб-сайте wordpress.COM?"
|
134 |
+
|
135 |
+
#: inc/php/page.php:135
|
136 |
+
msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
|
137 |
+
msgstr "К сожалению, этот плагин доступен для использования только на самостоятельно размещённых веб-сайтах (wordpress.ORG)."
|
138 |
+
|
139 |
+
#: inc/php/page.php:137
|
140 |
+
msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
|
141 |
+
msgstr ""
|
142 |
+
|
143 |
+
#: inc/php/page.php:138
|
144 |
+
msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
|
145 |
+
msgstr ""
|
146 |
+
|
147 |
+
#: inc/php/page.php:141
|
148 |
+
#, php-format
|
149 |
+
msgid "You can learn more about the difference here: %s ."
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: inc/php/page.php:148
|
153 |
+
msgid "Will this plugin work/compatible with the theme I use?"
|
154 |
+
msgstr ""
|
155 |
+
|
156 |
+
#: inc/php/page.php:151
|
157 |
+
msgid "This plugin is compatible with most themes."
|
158 |
+
msgstr ""
|
159 |
+
|
160 |
+
#: inc/php/page.php:152
|
161 |
+
msgid "But, unfortunately, we cannot check it with all third-party themes (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party theme."
|
162 |
+
msgstr ""
|
163 |
+
|
164 |
+
#: inc/php/page.php:153
|
165 |
+
msgid "We constantly check this plugin for compatibility with third-party themes."
|
166 |
+
msgstr ""
|
167 |
+
|
168 |
+
#: inc/php/page.php:154
|
169 |
+
msgid "If we find that this plugin is incompatible with a third-party theme, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
170 |
+
msgstr ""
|
171 |
+
|
172 |
+
#: inc/php/page.php:156
|
173 |
+
msgid "If you find a conflict between our plugin and a third-party theme, please let us know and we will definitely release an update of our plugin to fix the problem."
|
174 |
+
msgstr ""
|
175 |
+
|
176 |
+
#: inc/php/page.php:160
|
177 |
+
msgid "Will this plugin work/compatible with other plugins that I use?"
|
178 |
+
msgstr ""
|
179 |
+
|
180 |
+
#: inc/php/page.php:163
|
181 |
+
msgid "This plugin is compatible with most plugins."
|
182 |
+
msgstr ""
|
183 |
|
184 |
+
#: inc/php/page.php:164
|
185 |
+
msgid "But, unfortunately, we cannot check it with all third-party plugins (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party plugin."
|
186 |
+
msgstr ""
|
187 |
|
188 |
+
#: inc/php/page.php:165
|
189 |
+
msgid "We constantly check this plugin for compatibility with third-party plugins."
|
190 |
+
msgstr ""
|
191 |
+
|
192 |
+
#: inc/php/page.php:166
|
193 |
+
msgid "If we find that this plugin is incompatible with a third-party plugin, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
194 |
+
msgstr ""
|
195 |
+
|
196 |
+
#: inc/php/page.php:168
|
197 |
+
msgid "If you find a conflict between our plugin and a third-party plugin, please let us know and we will definitely release an update of our plugin to fix the problem."
|
198 |
+
msgstr ""
|
199 |
+
|
200 |
+
#: inc/php/page.php:172
|
201 |
msgid "Can I use this plugin on my language?"
|
202 |
msgstr "Можно ли использовать этот плагин на моём языке?"
|
203 |
|
204 |
+
#: inc/php/page.php:175
|
205 |
+
msgid "Yes."
|
206 |
+
msgstr "Да."
|
207 |
+
|
208 |
+
#: inc/php/page.php:176
|
209 |
+
msgid "This plugin is ready for translation and has already been translated into several languages."
|
210 |
+
msgstr "Этот плагин готов к переводу и уже переведен на несколько языков."
|
211 |
|
212 |
+
#: inc/php/page.php:177
|
213 |
+
msgid "But If your language is not available then you can make one."
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: inc/php/page.php:178
|
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 ""
|
219 |
+
|
220 |
+
#: inc/php/page.php:179
|
221 |
+
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
222 |
+
msgstr "Многие пользователи плагинов будут рады, если вы поделитесь своим переводом с сообществом."
|
223 |
+
|
224 |
+
#: inc/php/page.php:180
|
225 |
+
msgid "Thanks for your contribution!"
|
226 |
+
msgstr "Спасибо за ваш вклад!"
|
227 |
+
|
228 |
+
#: inc/php/page.php:184
|
229 |
#, php-format
|
230 |
+
msgid "If you want to help translate this plugin, please visit the %s."
|
231 |
+
msgstr "Если вы хотите помочь перевести этот плагин, пожалуйста, посетите %s."
|
232 |
|
233 |
+
#: inc/php/page.php:188
|
234 |
+
msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
|
235 |
+
msgstr "Вы также можете использовать файл POT, который включён в плагин и помещён в папку «languages», чтобы создать PO файл перевода."
|
236 |
|
237 |
+
#: inc/php/page.php:191
|
238 |
+
#, php-format
|
239 |
+
msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
|
240 |
+
msgstr "Просто отправьте нам файл PO на %s и мы включим этот перевод в следующее обновление плагина."
|
241 |
|
242 |
+
#: inc/php/page.php:198
|
243 |
msgid "How does it work?"
|
244 |
msgstr "Как это работает?"
|
245 |
|
246 |
+
#: inc/php/page.php:201
|
247 |
+
msgid "On the \"Settings\" tab, fill in the required fields and click the \"Save changes\" button."
|
248 |
+
msgstr "На вкладке «Настройки» заполните необходимые поля и нажмите кнопку «Сохранить изменения»."
|
249 |
|
250 |
+
#: inc/php/page.php:207
|
251 |
msgid "How much of description I can enter in the text field?"
|
252 |
msgstr "Сколько описаний я могу ввести в текстовое поле?"
|
253 |
|
254 |
+
#: inc/php/page.php:210
|
255 |
msgid "We don't limit the number of characters, but most search engines use a maximum of 160 chars for the home description."
|
256 |
+
msgstr "Мы не ограничиваем количество символов, но большинство поисковых систем используют максимум 160 символов для description."
|
257 |
|
258 |
+
#: inc/php/page.php:214
|
259 |
msgid "How much of keywords I can enter in the text field?"
|
260 |
msgstr "Сколько ключевых слов я могу ввести в текстовое поле?"
|
261 |
|
262 |
+
#: inc/php/page.php:217
|
263 |
msgid "We don't limit the number of characters."
|
264 |
+
msgstr "Мы не ограничиваем количество символов."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
265 |
|
266 |
+
#: inc/php/page.php:221
|
267 |
msgid "What about compatibility with the plugin \"All in One SEO Pack\"?"
|
268 |
msgstr "Что насчет совместимости с плагином \"All in One SEO Pack\"?"
|
269 |
|
270 |
+
#: inc/php/page.php:224
|
271 |
+
msgid "As far as we know, the \"All Meta Tags\" plugin is compatible with the \"All in One SEO Pack\" plugin."
|
272 |
+
msgstr "Насколько нам известно, плагин «All Meta Tags» совместим с плагином «All in One SEO Pack»."
|
273 |
|
274 |
+
#: inc/php/page.php:225 inc/php/page.php:242
|
275 |
+
msgid "But to make sure that these plugins do not conflict with each other, you need to follow one simple rule: do not fill the same field in both plugins at once."
|
276 |
+
msgstr "Но чтобы убедиться в том, что эти плагины не конфликтуют друг с другом, вам нужно следовать одному простому правилу: не заполняйте одно и то же поле в обоих плагинах одновременно."
|
277 |
+
|
278 |
+
#: inc/php/page.php:226
|
279 |
+
msgid "Otherwise both plugins fulfill their work and you will get a duplicate actions, for example:"
|
280 |
+
msgstr "В противном случае оба плагина выполнят свою работу, и вы получите дублирование действий, например:"
|
281 |
+
|
282 |
+
#: inc/php/page.php:234 inc/php/page.php:245
|
283 |
+
msgid "If you find a conflict between the plugins, please let us know and we will definitely release an update of our plugin to fix the problem."
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: inc/php/page.php:238
|
287 |
msgid "What about compatibility with the plugin \"Yoast SEO\"?"
|
288 |
msgstr "Что насчет совместимости с плагином \"All in One SEO Pack\"?"
|
289 |
|
290 |
+
#: inc/php/page.php:241
|
291 |
+
msgid "As far as we know, the \"All Meta Tags\" plugin is compatible with the \"Yoast SEO\" plugin."
|
292 |
+
msgstr ""
|
293 |
|
294 |
+
#: inc/php/page.php:243
|
295 |
+
msgid "Otherwise both plugins fulfill their work and you will get a duplicate actions."
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: inc/php/page.php:249
|
299 |
msgid "Does this plugin requires any modification of the theme?"
|
300 |
msgstr "Этот плагин требует изменения темы?"
|
301 |
|
302 |
+
#: inc/php/page.php:252 inc/php/page.php:260
|
303 |
+
msgid "Absolutely not."
|
304 |
+
msgstr "Абсолютно нет."
|
305 |
|
306 |
+
#: inc/php/page.php:253
|
307 |
+
msgid "This plugin is configurable entirely from the plugin settings page."
|
308 |
+
msgstr "Этот плагин настраивается полностью на странице настроек плагина."
|
309 |
+
|
310 |
+
#: inc/php/page.php:257
|
311 |
msgid "Does this require any knowledge of HTML or CSS?"
|
312 |
msgstr "Требуются ли какие-либо знания HTML или CSS?"
|
313 |
|
314 |
+
#: inc/php/page.php:261
|
315 |
+
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
316 |
+
msgstr "Этот плагин можно настроить без знания HTML или CSS, с помощью простой в использовании страницы настройки плагина."
|
317 |
|
318 |
+
#: inc/php/page.php:265
|
319 |
+
msgid "It's not working."
|
320 |
+
msgstr "Оно не работает."
|
321 |
|
322 |
+
#: inc/php/page.php:266
|
323 |
+
msgid "What could be wrong?"
|
324 |
+
msgstr "Что может быть не так?"
|
325 |
|
326 |
+
#: inc/php/page.php:269
|
327 |
+
msgid "As with every plugin, it's possible that things don't work."
|
328 |
+
msgstr "Как и в случае с любым другим плагином, что-то может не работать."
|
329 |
|
330 |
+
#: inc/php/page.php:270
|
331 |
+
msgid "It's impossible to tell what could be wrong exactly."
|
332 |
+
msgstr "Невозможно точно сказать, что может быть не так."
|
333 |
|
334 |
+
#: inc/php/page.php:271
|
335 |
+
msgid "The most common reason for this is a web browser's cache."
|
336 |
+
msgstr "Наиболее распространенной причиной этого является кеш веб-браузера."
|
337 |
+
|
338 |
+
#: inc/php/page.php:272
|
339 |
+
msgid "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load."
|
340 |
+
msgstr "Каждый веб-браузер хранит кеш веб-сайтов, которые вы посещаете (страницы, изображения и т. д.) для того, чтобы уменьшить использование интернет канала и нагрузку на сервер."
|
341 |
+
|
342 |
+
#: inc/php/page.php:273
|
343 |
+
msgid "This is called the browser's cache."
|
344 |
+
msgstr "Это называется кешем браузера."
|
345 |
+
|
346 |
+
#: inc/php/page.php:274
|
347 |
+
msgid "Clearing your browser's cache may solve the problem."
|
348 |
+
msgstr "Очистка кеша браузера может решить проблему."
|
349 |
+
|
350 |
+
#: inc/php/page.php:276
|
351 |
+
msgid "If you post a support request in the plugin's support forum on WordPress.org, we'd be happy to give it a look and try to help out."
|
352 |
+
msgstr "Если вы разместите запрос поддержки на форуме поддержки плагина на WordPress.org, то мы с радостью посмотрим и попытаемся помочь."
|
353 |
+
|
354 |
+
#: inc/php/page.php:277 inc/php/page.php:315
|
355 |
+
msgid "Please include as much information as possible, including a link to your website where the problem can be seen."
|
356 |
+
msgstr "Пожалуйста, укажите как можно больше информации, включая ссылку на ваш веб-сайт, на котором можно увидеть проблему."
|
357 |
+
|
358 |
+
#: inc/php/page.php:281
|
359 |
+
msgid "I can't get verify my website."
|
360 |
+
msgstr "Я не могу проверить свой веб-сайт."
|
361 |
+
|
362 |
+
#: inc/php/page.php:282
|
363 |
+
msgid "What am I doing wrong?"
|
364 |
+
msgstr "Что я делаю не так?"
|
365 |
+
|
366 |
+
#: inc/php/page.php:285
|
367 |
+
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>)."
|
368 |
+
msgstr "Код тега, который даёт тебе Google (или Bing, Yandex, Pinterest, Alexa, Norton, WOT, SpecificFeeds) может запутать, поскольку вам нужно вставить только серийный ключ - число/буквы (<code>1234567890</code>) а не весь тэг (<code><meta name=\"google-site-verification\" content=“1234567890” /></code>). "
|
369 |
+
|
370 |
+
#: inc/php/page.php:286
|
371 |
+
msgid "So just paste that into the relevant field and you will see “Success” message appear within a few seconds."
|
372 |
+
msgstr "Так что просто вставьте серийный ключ в соответствующее поле, и вы увидите сообщение «Success» в течение нескольких секунд."
|
373 |
+
|
374 |
+
#: inc/php/page.php:290
|
375 |
+
msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
|
376 |
+
msgstr "Последнее обновление WordPress не позволяет мне редактировать мой веб-сайт, на котором используется этот плагин."
|
377 |
+
|
378 |
+
#: inc/php/page.php:291
|
379 |
+
msgid "Why is this?"
|
380 |
+
msgstr "Почему так?"
|
381 |
+
|
382 |
+
#: inc/php/page.php:294
|
383 |
+
msgid "This plugin can not cause such problem."
|
384 |
+
msgstr "Этот плагин не может вызвать такую проблему."
|
385 |
|
386 |
+
#: inc/php/page.php:295
|
387 |
+
msgid "More likely, the problem are related to the settings of the website."
|
388 |
+
msgstr "Скорее всего, проблема связана с настройками веб-сайта."
|
389 |
+
|
390 |
+
#: inc/php/page.php:296
|
391 |
+
msgid "It could just be a cache, so please try to clear your website's cache (may be you using a caching plugin, or some web service such as the CloudFlare) and then the cache of your web browser."
|
392 |
+
msgstr "Это может быть кеш, поэтому попробуйте очистить кеш вашего веб-сайта (возможно, вы используете плагин для кеширования или какой-либо веб-сервис, такой как CloudFlare), а затем кеш вашего веб-браузера."
|
393 |
+
|
394 |
+
#: inc/php/page.php:297
|
395 |
+
msgid "Also please try to re-login to the website, this too can help."
|
396 |
+
msgstr "Также, пожалуйста, попробуйте повторно войти на веб-сайт, это тоже может помочь."
|
397 |
+
|
398 |
+
#: inc/php/page.php:301
|
399 |
msgid "Where to report bug if found?"
|
400 |
msgstr "Где можно сообщить об ошибке?"
|
401 |
|
402 |
+
#: inc/php/page.php:304
|
403 |
+
msgid "Bug reports are very welcome!"
|
404 |
+
msgstr ""
|
405 |
+
|
406 |
+
#: inc/php/page.php:307
|
407 |
#, php-format
|
408 |
+
msgid "Please visit our %s contact page %s and report."
|
409 |
+
msgstr ""
|
410 |
|
411 |
+
#: inc/php/page.php:312 inc/php/page.php:340
|
412 |
+
msgid "Please do not forget to specify the name of the plugin."
|
413 |
+
msgstr "Пожалуйста не забудьте указать название плагина."
|
414 |
+
|
415 |
+
#: inc/php/page.php:313 inc/php/page.php:341 inc/php/page.php:357
|
416 |
+
msgid "Thank you!"
|
417 |
+
msgstr "Спасибо!"
|
418 |
+
|
419 |
+
#: inc/php/page.php:316
|
420 |
+
msgid "Describe in more detail what exactly you are seeing."
|
421 |
+
msgstr ""
|
422 |
+
|
423 |
+
#: inc/php/page.php:317
|
424 |
+
msgid "Here are some examples:"
|
425 |
+
msgstr ""
|
426 |
+
|
427 |
+
#: inc/php/page.php:320
|
428 |
+
msgid "Elements of the plugin settings page are not working."
|
429 |
+
msgstr ""
|
430 |
+
|
431 |
+
#: inc/php/page.php:321
|
432 |
+
msgid "An error message is displayed on the plugin settings page."
|
433 |
+
msgstr ""
|
434 |
+
|
435 |
+
#: inc/php/page.php:322
|
436 |
+
msgid "An error message is displayed on the front end of website."
|
437 |
+
msgstr ""
|
438 |
+
|
439 |
+
#: inc/php/page.php:323
|
440 |
+
msgid "An error message is displayed on the back end of website."
|
441 |
+
msgstr ""
|
442 |
+
|
443 |
+
#: inc/php/page.php:324
|
444 |
+
msgid "Website is crashed."
|
445 |
+
msgstr ""
|
446 |
+
|
447 |
+
#: inc/php/page.php:329
|
448 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
449 |
msgstr "Где можно поделиться идеями или предложениями, чтобы сделать плагин лучше?"
|
450 |
|
451 |
+
#: inc/php/page.php:332
|
452 |
+
msgid "Any suggestions are very welcome!"
|
453 |
+
msgstr "Любые предложения приветствуются!"
|
454 |
+
|
455 |
+
#: inc/php/page.php:335
|
456 |
#, php-format
|
457 |
+
msgid "Please visit our %s contact page %s."
|
458 |
+
msgstr ""
|
459 |
+
|
460 |
+
#: inc/php/page.php:345
|
461 |
+
msgid "I love this plugin!"
|
462 |
+
msgstr "Мне нравится этот плагин!"
|
463 |
|
464 |
+
#: inc/php/page.php:346
|
465 |
+
msgid "Can I help somehow?"
|
466 |
+
msgstr "Могу Я чем-то помочь?"
|
467 |
|
468 |
+
#: inc/php/page.php:349
|
469 |
+
msgid "Yes, any contributions are very welcome!"
|
470 |
+
msgstr "Да, любой вклад приветствуется!"
|
471 |
+
|
472 |
+
#: inc/php/page.php:352
|
473 |
#, php-format
|
474 |
+
msgid "Please visit our %s Support Us %s page."
|
475 |
+
msgstr "Пожалуйста, посетите нашу страницу %s Поддержите нас %s ."
|
476 |
|
477 |
+
#: inc/php/page.php:361
|
478 |
+
msgid "Where can I find information about your licenses, payment process and refunds?"
|
479 |
+
msgstr ""
|
480 |
+
|
481 |
+
#: inc/php/page.php:366
|
482 |
+
#, php-format
|
483 |
+
msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
|
484 |
+
msgstr ""
|
485 |
+
|
486 |
+
#: inc/php/page.php:374
|
487 |
+
msgid "Where can I find information about your customer support?"
|
488 |
+
msgstr ""
|
489 |
+
|
490 |
+
#: inc/php/page.php:379
|
491 |
+
#, php-format
|
492 |
+
msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
|
493 |
+
msgstr ""
|
494 |
+
|
495 |
+
#: inc/php/page.php:387
|
496 |
+
msgid "Where can I find information about your affiliate program?"
|
497 |
+
msgstr ""
|
498 |
+
|
499 |
+
#: inc/php/page.php:392
|
500 |
+
#, php-format
|
501 |
+
msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
|
502 |
+
msgstr ""
|
503 |
+
|
504 |
+
#: inc/php/page.php:400
|
505 |
msgid "My question wasn't answered here."
|
506 |
+
msgstr "На мой вопрос здесь не было ответа."
|
507 |
|
508 |
+
#: inc/php/page.php:405
|
509 |
#, php-format
|
510 |
+
msgid "You can ask your question on %s this page %s."
|
511 |
+
msgstr "Вы можете задать ваш вопрос на %s этой странице %s."
|
512 |
|
513 |
+
#: inc/php/page.php:410
|
514 |
+
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."
|
515 |
+
msgstr "Но имейте в виду, что этот плагин является бесплатным и без специальной поддержки, поэтому у нас нет возможности ответить на все вопросы."
|
516 |
+
|
517 |
+
#: inc/php/page.php:421
|
518 |
msgid "Support Us"
|
519 |
msgstr "Поддержать нас"
|
520 |
|
521 |
+
#: inc/php/page.php:429 inc/php/settings.php:226 inc/php/sidebar.php:46
|
522 |
msgid "Donate with PayPal"
|
523 |
+
msgstr "Пожертвовать через PayPal"
|
524 |
|
525 |
+
#: inc/php/page.php:436
|
526 |
#, php-format
|
527 |
+
msgid "My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
528 |
+
msgstr "Меня зовут %s Артур %s и Я основатель %s Space X-Chimp %s, который объединяет небольшую международную команду молодых людей."
|
529 |
+
|
530 |
+
#: inc/php/page.php:445
|
531 |
+
msgid "Our intention is to create projects that will make this world a better place."
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: inc/php/page.php:446
|
535 |
+
msgid "Our motto is - «Follow your dreams and don’t give up»."
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: inc/php/page.php:447
|
539 |
+
msgid "We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
540 |
+
msgstr ""
|
541 |
|
542 |
+
#: inc/php/page.php:450
|
543 |
+
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them."
|
544 |
+
msgstr "Мы тратим много времени и усилий, пытаясь убедиться в том, что темы, плагины и другие вещи, которые мы создаём, полезны, и окончательное доказательство этого для нас то, что вы на самом деле хотите их использовать."
|
545 |
+
|
546 |
+
#: inc/php/page.php:451
|
547 |
+
msgid "But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
548 |
+
msgstr "Но мы независимые разработчики, без регулярного дохода, так что каждый небольшой вклад помогает покрыть наши расходы и позволяет нам тратить больше времени на создание вещей, которыми могут наслаждаться удивительные люди, такие как вы."
|
549 |
+
|
550 |
+
#: inc/php/page.php:454
|
551 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
552 |
msgstr "Если вы цените мою работу, то вы можете купить мне кофе!"
|
553 |
|
554 |
+
#: inc/php/page.php:457
|
555 |
msgid "Thank you for your support!"
|
556 |
msgstr "Спасибо за вашу поддержку!"
|
557 |
|
633 |
|
634 |
#: inc/php/settings.php:120
|
635 |
msgid "You can use the options below to add meta tags such as Description and Keywords only in Static Home Page of your website."
|
636 |
+
msgstr "Вы можете использовать ниже-расположенные опции для добавления мета тегов таких как Description и Keywords только на Static Home Page страницу вашего веб-сайта."
|
637 |
|
638 |
#: inc/php/settings.php:124
|
639 |
msgid "Home Description"
|
641 |
|
642 |
#: inc/php/settings.php:126 inc/php/settings.php:147
|
643 |
msgid "Enter a short description of your website (150-250 characters). Most search engines use a maximum of 160 chars for the home description."
|
644 |
+
msgstr "Введите краткое описание для вашего веб-сайта (150-250 символов). Большинство поисковых систем используют максимум 160 символов для описания домашней страницы."
|
645 |
|
646 |
#: inc/php/settings.php:129
|
647 |
msgid "Home Keyword(s)"
|
657 |
|
658 |
#: inc/php/settings.php:141
|
659 |
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."
|
660 |
+
msgstr "Вы можете использовать ниже-расположенные опции для добавления мета тегов таких как Description и Keywords только на Default Home Page и Blog Page страницы вашего веб-сайта."
|
661 |
|
662 |
#: inc/php/settings.php:145
|
663 |
msgid "Blog Description"
|
677 |
|
678 |
#: inc/php/settings.php:162
|
679 |
msgid "You can use the options below to add meta tags such as Author, Copyright and Keywords in everywhere on your website."
|
680 |
+
msgstr "Вы можете использовать ниже-расположенные опции для добавления мета тегов таких как Author, Copyright и Keywords на каждую страницу вашего веб-сайта."
|
681 |
|
682 |
#: inc/php/settings.php:166
|
683 |
msgid "Author"
|
713 |
|
714 |
#: inc/php/settings.php:214
|
715 |
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>."
|
716 |
+
msgstr "Проверить эти данные сгенерированные на страницах вашего веб-сайта вы можете <a href=\"https://search.google.com/structured-data/testing-tool\" target=\"_blank\">здесь</a>."
|
717 |
|
718 |
#: inc/php/settings.php:221 inc/php/sidebar.php:41
|
719 |
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."
|
720 |
+
msgstr "Каждый небольшой вклад помогает покрыть наши расходы и позволяет нам тратить больше времени на создание вещей, которыми могут наслаждаться удивительные люди, такие как вы."
|
721 |
|
722 |
#: inc/php/settings.php:228 inc/php/sidebar.php:48
|
723 |
msgid "Thanks for your support!"
|
732 |
msgstr "О плагине"
|
733 |
|
734 |
#: inc/php/sidebar.php:27
|
735 |
+
msgid "This plugin gives you the ability to easily and safely add your custom meta tags to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
|
736 |
+
msgstr ""
|
737 |
|
738 |
#: inc/php/sidebar.php:32
|
739 |
msgid "Help"
|
762 |
#. Author URI of the plugin/theme
|
763 |
msgid "https://www.spacexchimp.com"
|
764 |
msgstr "https://www.spacexchimp.com"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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-
|
7 |
"PO-Revision-Date: 2015-10-28 13:57+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
@@ -18,7 +18,7 @@ msgstr ""
|
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
20 |
|
21 |
-
#: inc/php/core.php:23 inc/php/page.php:
|
22 |
msgid "Settings"
|
23 |
msgstr ""
|
24 |
|
@@ -30,268 +30,526 @@ msgstr ""
|
|
30 |
msgid "Meta Tags Inserter"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: inc/php/messages.php:
|
34 |
-
msgid "Hello
|
35 |
msgstr ""
|
36 |
|
37 |
#: inc/php/messages.php:28
|
|
|
|
|
|
|
|
|
38 |
#, php-format
|
39 |
msgid "Thank you for installing our plugin! We hope you will love it! %s"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: inc/php/messages.php:
|
43 |
msgid "You have installed an old version of this plugin."
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: inc/php/messages.php:
|
47 |
msgid "Please update the plugin to the latest version, and all will be fine."
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: inc/php/page.php:
|
51 |
#, php-format
|
52 |
msgid "by %s Space X-Chimp %s"
|
53 |
msgstr ""
|
54 |
|
55 |
-
#: inc/php/page.php:
|
56 |
msgid "Version"
|
57 |
msgstr ""
|
58 |
|
59 |
-
#: inc/php/page.php:
|
60 |
msgid "Usage"
|
61 |
msgstr ""
|
62 |
|
63 |
-
#: inc/php/page.php:
|
64 |
msgid "F.A.Q."
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: inc/php/page.php:
|
68 |
msgid "Support"
|
69 |
msgstr ""
|
70 |
|
71 |
-
#: inc/php/page.php:
|
72 |
msgid "Store"
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: inc/php/page.php:
|
76 |
msgid "Usage Instructions"
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: inc/php/page.php:
|
80 |
msgid "To add the meta tags to your website, simply follow these steps:"
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: inc/php/page.php:
|
84 |
msgid "Go to the \"Settings\" tab on this page."
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: inc/php/page.php:
|
88 |
msgid "Fill in the required fields."
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: inc/php/page.php:
|
92 |
msgid "Click the \"Save changes\" button."
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: inc/php/page.php:
|
96 |
msgid "Enjoy the improved SEO of your website."
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: inc/php/page.php:
|
100 |
msgid "It's that simple!"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: inc/php/page.php:
|
104 |
#, php-format
|
105 |
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: inc/php/page.php:
|
109 |
msgid "Frequently Asked Questions"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: inc/php/page.php:
|
113 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: inc/php/page.php:
|
117 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: inc/php/page.php:
|
121 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
125 |
msgid "Can I use this plugin on my language?"
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: inc/php/page.php:
|
129 |
-
msgid "Yes.
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
133 |
#, php-format
|
134 |
-
msgid "If you want to help translate this plugin
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: inc/php/page.php:
|
138 |
-
msgid "
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: inc/php/page.php:
|
142 |
-
|
|
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: inc/php/page.php:
|
146 |
msgid "How does it work?"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: inc/php/page.php:
|
150 |
-
msgid "On the \"Settings\" tab, fill in the required fields and click the \"Save changes\" button.
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: inc/php/page.php:
|
154 |
msgid "How much of description I can enter in the text field?"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: inc/php/page.php:
|
158 |
msgid "We don't limit the number of characters, but most search engines use a maximum of 160 chars for the home description."
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: inc/php/page.php:
|
162 |
msgid "How much of keywords I can enter in the text field?"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: inc/php/page.php:
|
166 |
msgid "We don't limit the number of characters."
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: inc/php/page.php:
|
170 |
-
msgid "
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: inc/php/page.php:
|
174 |
-
msgid "
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: inc/php/page.php:
|
178 |
-
msgid "
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: inc/php/page.php:
|
182 |
-
msgid "
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: inc/php/page.php:
|
186 |
-
msgid "If you find a conflict between the plugins, please let us know and we will definitely release an update of
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: inc/php/page.php:
|
190 |
msgid "What about compatibility with the plugin \"Yoast SEO\"?"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: inc/php/page.php:
|
194 |
-
msgid "As far as we know, the \"All Meta Tags\" plugin is compatible with the \"Yoast SEO\" plugin.
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
198 |
msgid "Does this plugin requires any modification of the theme?"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: inc/php/page.php:
|
202 |
-
msgid "Absolutely not.
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
206 |
msgid "Does this require any knowledge of HTML or CSS?"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: inc/php/page.php:
|
210 |
-
msgid "
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: inc/php/page.php:
|
214 |
-
msgid "It's not working.
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: inc/php/page.php:
|
218 |
-
msgid "
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: inc/php/page.php:
|
222 |
-
msgid "
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: inc/php/page.php:
|
226 |
-
msgid "
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: inc/php/page.php:
|
230 |
-
msgid "
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
234 |
msgid "Where to report bug if found?"
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
238 |
#, php-format
|
239 |
-
msgid "
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
243 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
247 |
#, php-format
|
248 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: inc/php/page.php:
|
252 |
-
msgid "
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: inc/php/page.php:
|
256 |
#, php-format
|
257 |
-
msgid "
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
261 |
msgid "My question wasn't answered here."
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: inc/php/page.php:
|
265 |
#, php-format
|
266 |
-
msgid "You can ask your question on %s this page %s.
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
270 |
msgid "Support Us"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: inc/php/page.php:
|
274 |
msgid "Donate with PayPal"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: inc/php/page.php:
|
278 |
#, php-format
|
279 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: inc/php/page.php:
|
283 |
-
msgid "
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: inc/php/page.php:
|
287 |
-
msgid "
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: inc/php/page.php:
|
291 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: inc/php/page.php:
|
295 |
msgid "Thank you for your support!"
|
296 |
msgstr ""
|
297 |
|
@@ -472,7 +730,7 @@ msgid "About"
|
|
472 |
msgstr ""
|
473 |
|
474 |
#: inc/php/sidebar.php:27
|
475 |
-
msgid "This plugin
|
476 |
msgstr ""
|
477 |
|
478 |
#: inc/php/sidebar.php:32
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: All Meta Tags\n"
|
6 |
+
"POT-Creation-Date: 2019-02-20 23:15+0300\n"
|
7 |
"PO-Revision-Date: 2015-10-28 13:57+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
20 |
|
21 |
+
#: inc/php/core.php:23 inc/php/page.php:44
|
22 |
msgid "Settings"
|
23 |
msgstr ""
|
24 |
|
30 |
msgid "Meta Tags Inserter"
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: inc/php/messages.php:27 inc/php/page.php:433
|
34 |
+
msgid "Hello!"
|
35 |
msgstr ""
|
36 |
|
37 |
#: inc/php/messages.php:28
|
38 |
+
msgid "We are the team of Space X-Chimp."
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: inc/php/messages.php:33
|
42 |
#, php-format
|
43 |
msgid "Thank you for installing our plugin! We hope you will love it! %s"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: inc/php/messages.php:74
|
47 |
msgid "You have installed an old version of this plugin."
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: inc/php/messages.php:75
|
51 |
msgid "Please update the plugin to the latest version, and all will be fine."
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: inc/php/page.php:31
|
55 |
#, php-format
|
56 |
msgid "by %s Space X-Chimp %s"
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: inc/php/page.php:37
|
60 |
msgid "Version"
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: inc/php/page.php:45
|
64 |
msgid "Usage"
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: inc/php/page.php:46
|
68 |
msgid "F.A.Q."
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: inc/php/page.php:47 inc/php/settings.php:219 inc/php/sidebar.php:39
|
72 |
msgid "Support"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: inc/php/page.php:48
|
76 |
msgid "Store"
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: inc/php/page.php:64
|
80 |
msgid "Usage Instructions"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: inc/php/page.php:66
|
84 |
msgid "To add the meta tags to your website, simply follow these steps:"
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: inc/php/page.php:68
|
88 |
msgid "Go to the \"Settings\" tab on this page."
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: inc/php/page.php:69
|
92 |
msgid "Fill in the required fields."
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: inc/php/page.php:70
|
96 |
msgid "Click the \"Save changes\" button."
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: inc/php/page.php:71 inc/php/page.php:202
|
100 |
msgid "Enjoy the improved SEO of your website."
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: inc/php/page.php:71 inc/php/page.php:203
|
104 |
msgid "It's that simple!"
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: inc/php/page.php:76
|
108 |
#, php-format
|
109 |
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: inc/php/page.php:90
|
113 |
msgid "Frequently Asked Questions"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: inc/php/page.php:94
|
117 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: inc/php/page.php:119
|
121 |
+
msgid "Where can I find a documentation for this plugin?"
|
122 |
+
msgstr ""
|
123 |
+
|
124 |
+
#: inc/php/page.php:124
|
125 |
+
#, php-format
|
126 |
+
msgid "Please visit our %s Documentation site %s to view documentation."
|
127 |
+
msgstr ""
|
128 |
+
|
129 |
+
#: inc/php/page.php:132
|
130 |
+
msgid "Will this plugin work on my wordpress.COM website?"
|
131 |
+
msgstr ""
|
132 |
+
|
133 |
+
#: inc/php/page.php:135
|
134 |
+
msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
|
135 |
+
msgstr ""
|
136 |
+
|
137 |
+
#: inc/php/page.php:137
|
138 |
+
msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
|
139 |
+
msgstr ""
|
140 |
+
|
141 |
+
#: inc/php/page.php:138
|
142 |
+
msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
|
143 |
+
msgstr ""
|
144 |
+
|
145 |
+
#: inc/php/page.php:141
|
146 |
+
#, php-format
|
147 |
+
msgid "You can learn more about the difference here: %s ."
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: inc/php/page.php:148
|
151 |
+
msgid "Will this plugin work/compatible with the theme I use?"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: inc/php/page.php:151
|
155 |
+
msgid "This plugin is compatible with most themes."
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: inc/php/page.php:152
|
159 |
+
msgid "But, unfortunately, we cannot check it with all third-party themes (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party theme."
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: inc/php/page.php:153
|
163 |
+
msgid "We constantly check this plugin for compatibility with third-party themes."
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: inc/php/page.php:154
|
167 |
+
msgid "If we find that this plugin is incompatible with a third-party theme, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: inc/php/page.php:156
|
171 |
+
msgid "If you find a conflict between our plugin and a third-party theme, please let us know and we will definitely release an update of our plugin to fix the problem."
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: inc/php/page.php:160
|
175 |
+
msgid "Will this plugin work/compatible with other plugins that I use?"
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: inc/php/page.php:163
|
179 |
+
msgid "This plugin is compatible with most plugins."
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: inc/php/page.php:164
|
183 |
+
msgid "But, unfortunately, we cannot check it with all third-party plugins (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party plugin."
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: inc/php/page.php:165
|
187 |
+
msgid "We constantly check this plugin for compatibility with third-party plugins."
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: inc/php/page.php:166
|
191 |
+
msgid "If we find that this plugin is incompatible with a third-party plugin, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: inc/php/page.php:168
|
195 |
+
msgid "If you find a conflict between our plugin and a third-party plugin, please let us know and we will definitely release an update of our plugin to fix the problem."
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: inc/php/page.php:172
|
199 |
msgid "Can I use this plugin on my language?"
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: inc/php/page.php:175
|
203 |
+
msgid "Yes."
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: inc/php/page.php:176
|
207 |
+
msgid "This plugin is ready for translation and has already been translated into several languages."
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: inc/php/page.php:177
|
211 |
+
msgid "But If your language is not available then you can make one."
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: inc/php/page.php:178
|
215 |
+
msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: inc/php/page.php:179
|
219 |
+
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: inc/php/page.php:180
|
223 |
+
msgid "Thanks for your contribution!"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: inc/php/page.php:184
|
227 |
#, php-format
|
228 |
+
msgid "If you want to help translate this plugin, please visit the %s."
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: inc/php/page.php:188
|
232 |
+
msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: inc/php/page.php:191
|
236 |
+
#, php-format
|
237 |
+
msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: inc/php/page.php:198
|
241 |
msgid "How does it work?"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: inc/php/page.php:201
|
245 |
+
msgid "On the \"Settings\" tab, fill in the required fields and click the \"Save changes\" button."
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: inc/php/page.php:207
|
249 |
msgid "How much of description I can enter in the text field?"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: inc/php/page.php:210
|
253 |
msgid "We don't limit the number of characters, but most search engines use a maximum of 160 chars for the home description."
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: inc/php/page.php:214
|
257 |
msgid "How much of keywords I can enter in the text field?"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: inc/php/page.php:217
|
261 |
msgid "We don't limit the number of characters."
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: inc/php/page.php:221
|
265 |
+
msgid "What about compatibility with the plugin \"All in One SEO Pack\"?"
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: inc/php/page.php:224
|
269 |
+
msgid "As far as we know, the \"All Meta Tags\" plugin is compatible with the \"All in One SEO Pack\" plugin."
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: inc/php/page.php:225 inc/php/page.php:242
|
273 |
+
msgid "But to make sure that these plugins do not conflict with each other, you need to follow one simple rule: do not fill the same field in both plugins at once."
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: inc/php/page.php:226
|
277 |
+
msgid "Otherwise both plugins fulfill their work and you will get a duplicate actions, for example:"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: inc/php/page.php:234 inc/php/page.php:245
|
281 |
+
msgid "If you find a conflict between the plugins, please let us know and we will definitely release an update of our plugin to fix the problem."
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: inc/php/page.php:238
|
285 |
msgid "What about compatibility with the plugin \"Yoast SEO\"?"
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: inc/php/page.php:241
|
289 |
+
msgid "As far as we know, the \"All Meta Tags\" plugin is compatible with the \"Yoast SEO\" plugin."
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: inc/php/page.php:243
|
293 |
+
msgid "Otherwise both plugins fulfill their work and you will get a duplicate actions."
|
294 |
+
msgstr ""
|
295 |
+
|
296 |
+
#: inc/php/page.php:249
|
297 |
msgid "Does this plugin requires any modification of the theme?"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: inc/php/page.php:252 inc/php/page.php:260
|
301 |
+
msgid "Absolutely not."
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: inc/php/page.php:253
|
305 |
+
msgid "This plugin is configurable entirely from the plugin settings page."
|
306 |
+
msgstr ""
|
307 |
+
|
308 |
+
#: inc/php/page.php:257
|
309 |
msgid "Does this require any knowledge of HTML or CSS?"
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: inc/php/page.php:261
|
313 |
+
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: inc/php/page.php:265
|
317 |
+
msgid "It's not working."
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: inc/php/page.php:266
|
321 |
+
msgid "What could be wrong?"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: inc/php/page.php:269
|
325 |
+
msgid "As with every plugin, it's possible that things don't work."
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: inc/php/page.php:270
|
329 |
+
msgid "It's impossible to tell what could be wrong exactly."
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: inc/php/page.php:271
|
333 |
+
msgid "The most common reason for this is a web browser's cache."
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: inc/php/page.php:272
|
337 |
+
msgid "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load."
|
338 |
+
msgstr ""
|
339 |
+
|
340 |
+
#: inc/php/page.php:273
|
341 |
+
msgid "This is called the browser's cache."
|
342 |
+
msgstr ""
|
343 |
+
|
344 |
+
#: inc/php/page.php:274
|
345 |
+
msgid "Clearing your browser's cache may solve the problem."
|
346 |
+
msgstr ""
|
347 |
+
|
348 |
+
#: inc/php/page.php:276
|
349 |
+
msgid "If you post a support request in the plugin's support forum on WordPress.org, we'd be happy to give it a look and try to help out."
|
350 |
+
msgstr ""
|
351 |
+
|
352 |
+
#: inc/php/page.php:277 inc/php/page.php:315
|
353 |
+
msgid "Please include as much information as possible, including a link to your website where the problem can be seen."
|
354 |
+
msgstr ""
|
355 |
+
|
356 |
+
#: inc/php/page.php:281
|
357 |
+
msgid "I can't get verify my website."
|
358 |
+
msgstr ""
|
359 |
+
|
360 |
+
#: inc/php/page.php:282
|
361 |
+
msgid "What am I doing wrong?"
|
362 |
+
msgstr ""
|
363 |
+
|
364 |
+
#: inc/php/page.php:285
|
365 |
+
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>)."
|
366 |
+
msgstr ""
|
367 |
+
|
368 |
+
#: inc/php/page.php:286
|
369 |
+
msgid "So just paste that into the relevant field and you will see “Success” message appear within a few seconds."
|
370 |
+
msgstr ""
|
371 |
+
|
372 |
+
#: inc/php/page.php:290
|
373 |
+
msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
|
374 |
+
msgstr ""
|
375 |
+
|
376 |
+
#: inc/php/page.php:291
|
377 |
+
msgid "Why is this?"
|
378 |
+
msgstr ""
|
379 |
+
|
380 |
+
#: inc/php/page.php:294
|
381 |
+
msgid "This plugin can not cause such problem."
|
382 |
+
msgstr ""
|
383 |
+
|
384 |
+
#: inc/php/page.php:295
|
385 |
+
msgid "More likely, the problem are related to the settings of the website."
|
386 |
+
msgstr ""
|
387 |
+
|
388 |
+
#: inc/php/page.php:296
|
389 |
+
msgid "It could just be a cache, so please try to clear your website's cache (may be you using a caching plugin, or some web service such as the CloudFlare) and then the cache of your web browser."
|
390 |
+
msgstr ""
|
391 |
+
|
392 |
+
#: inc/php/page.php:297
|
393 |
+
msgid "Also please try to re-login to the website, this too can help."
|
394 |
+
msgstr ""
|
395 |
+
|
396 |
+
#: inc/php/page.php:301
|
397 |
msgid "Where to report bug if found?"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: inc/php/page.php:304
|
401 |
+
msgid "Bug reports are very welcome!"
|
402 |
+
msgstr ""
|
403 |
+
|
404 |
+
#: inc/php/page.php:307
|
405 |
#, php-format
|
406 |
+
msgid "Please visit our %s contact page %s and report."
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: inc/php/page.php:312 inc/php/page.php:340
|
410 |
+
msgid "Please do not forget to specify the name of the plugin."
|
411 |
+
msgstr ""
|
412 |
+
|
413 |
+
#: inc/php/page.php:313 inc/php/page.php:341 inc/php/page.php:357
|
414 |
+
msgid "Thank you!"
|
415 |
+
msgstr ""
|
416 |
+
|
417 |
+
#: inc/php/page.php:316
|
418 |
+
msgid "Describe in more detail what exactly you are seeing."
|
419 |
+
msgstr ""
|
420 |
+
|
421 |
+
#: inc/php/page.php:317
|
422 |
+
msgid "Here are some examples:"
|
423 |
+
msgstr ""
|
424 |
+
|
425 |
+
#: inc/php/page.php:320
|
426 |
+
msgid "Elements of the plugin settings page are not working."
|
427 |
+
msgstr ""
|
428 |
+
|
429 |
+
#: inc/php/page.php:321
|
430 |
+
msgid "An error message is displayed on the plugin settings page."
|
431 |
+
msgstr ""
|
432 |
+
|
433 |
+
#: inc/php/page.php:322
|
434 |
+
msgid "An error message is displayed on the front end of website."
|
435 |
+
msgstr ""
|
436 |
+
|
437 |
+
#: inc/php/page.php:323
|
438 |
+
msgid "An error message is displayed on the back end of website."
|
439 |
+
msgstr ""
|
440 |
+
|
441 |
+
#: inc/php/page.php:324
|
442 |
+
msgid "Website is crashed."
|
443 |
+
msgstr ""
|
444 |
+
|
445 |
+
#: inc/php/page.php:329
|
446 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: inc/php/page.php:332
|
450 |
+
msgid "Any suggestions are very welcome!"
|
451 |
+
msgstr ""
|
452 |
+
|
453 |
+
#: inc/php/page.php:335
|
454 |
#, php-format
|
455 |
+
msgid "Please visit our %s contact page %s."
|
456 |
+
msgstr ""
|
457 |
+
|
458 |
+
#: inc/php/page.php:345
|
459 |
+
msgid "I love this plugin!"
|
460 |
+
msgstr ""
|
461 |
+
|
462 |
+
#: inc/php/page.php:346
|
463 |
+
msgid "Can I help somehow?"
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: inc/php/page.php:349
|
467 |
+
msgid "Yes, any contributions are very welcome!"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: inc/php/page.php:352
|
471 |
#, php-format
|
472 |
+
msgid "Please visit our %s Support Us %s page."
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: inc/php/page.php:361
|
476 |
+
msgid "Where can I find information about your licenses, payment process and refunds?"
|
477 |
+
msgstr ""
|
478 |
+
|
479 |
+
#: inc/php/page.php:366
|
480 |
+
#, php-format
|
481 |
+
msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
|
482 |
+
msgstr ""
|
483 |
+
|
484 |
+
#: inc/php/page.php:374
|
485 |
+
msgid "Where can I find information about your customer support?"
|
486 |
+
msgstr ""
|
487 |
+
|
488 |
+
#: inc/php/page.php:379
|
489 |
+
#, php-format
|
490 |
+
msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
|
491 |
+
msgstr ""
|
492 |
+
|
493 |
+
#: inc/php/page.php:387
|
494 |
+
msgid "Where can I find information about your affiliate program?"
|
495 |
+
msgstr ""
|
496 |
+
|
497 |
+
#: inc/php/page.php:392
|
498 |
+
#, php-format
|
499 |
+
msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
|
500 |
+
msgstr ""
|
501 |
+
|
502 |
+
#: inc/php/page.php:400
|
503 |
msgid "My question wasn't answered here."
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: inc/php/page.php:405
|
507 |
#, php-format
|
508 |
+
msgid "You can ask your question on %s this page %s."
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: inc/php/page.php:410
|
512 |
+
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."
|
513 |
+
msgstr ""
|
514 |
+
|
515 |
+
#: inc/php/page.php:421
|
516 |
msgid "Support Us"
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: inc/php/page.php:429 inc/php/settings.php:226 inc/php/sidebar.php:46
|
520 |
msgid "Donate with PayPal"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: inc/php/page.php:436
|
524 |
#, php-format
|
525 |
+
msgid "My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
526 |
+
msgstr ""
|
527 |
+
|
528 |
+
#: inc/php/page.php:445
|
529 |
+
msgid "Our intention is to create projects that will make this world a better place."
|
530 |
+
msgstr ""
|
531 |
+
|
532 |
+
#: inc/php/page.php:446
|
533 |
+
msgid "Our motto is - «Follow your dreams and don’t give up»."
|
534 |
+
msgstr ""
|
535 |
+
|
536 |
+
#: inc/php/page.php:447
|
537 |
+
msgid "We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: inc/php/page.php:450
|
541 |
+
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them."
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: inc/php/page.php:451
|
545 |
+
msgid "But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: inc/php/page.php:454
|
549 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: inc/php/page.php:457
|
553 |
msgid "Thank you for your support!"
|
554 |
msgstr ""
|
555 |
|
730 |
msgstr ""
|
731 |
|
732 |
#: inc/php/sidebar.php:27
|
733 |
+
msgid "This plugin gives you the ability to easily and safely add your custom meta tags to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
|
734 |
msgstr ""
|
735 |
|
736 |
#: inc/php/sidebar.php:32
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: Arthur Gareginyan
|
|
3 |
Tags: meta, tag, tags, custom, simple, plugin, twitter, facebook, google, google plus, meta, search engine optimization, seo, social, alexa, alexa rank, pinterest, norton safe web, webmaster, webmaster tool, webmaster tools, web master tools, web master tools, bing, yandex, bing webmaster, yandex webmaster, google webmaster, web tools, open graph, publisher profile, publisher, author, authors, description, keyword, keywords, copyright, designer, admin, meta tag, pinterest, pinterest meta tag, pinterest website verification, pinterest verification, pinterest verify, plugin, verification, verify, webmaster plugin, wot, web of trust, specificfeeds, specific feeds, feed, rss feed, google shopping, google merchant center, structured data, woocommerce, schemas
|
4 |
Donate link: https://www.spacexchimp.com/donate.html
|
5 |
Requires at least: 3.9
|
6 |
-
Tested up to: 5.
|
7 |
-
Stable tag: 4.
|
8 |
License: GPL3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -67,7 +67,7 @@ If you want more options, then let us know and we will be happy to add them.
|
|
67 |
|
68 |
**Translation**
|
69 |
|
70 |
-
This plugin is ready for translation and has already been translated into several languages.
|
71 |
|
72 |
* English (default)
|
73 |
* Russian (translation by [Milena Kiseleva](https://www.instagram.com/milava_kiseleva/))
|
@@ -77,7 +77,7 @@ This plugin is ready for translation and has already been translated into severa
|
|
77 |
* Italian (translation by Stefano Tombolini)
|
78 |
* Dutch (translation by Peter Leenders)
|
79 |
|
80 |
-
If you want to help translate this plugin
|
81 |
|
82 |
**Minimum system requirements:**
|
83 |
|
@@ -124,11 +124,13 @@ After installation and activation, the "`Meta Tags Inserter`" menu item will app
|
|
124 |
|
125 |
== Frequently Asked Questions ==
|
126 |
|
127 |
-
= Q. Will this plugin work on my
|
128 |
-
A. Sorry, this plugin is available for use only on self-hosted (
|
129 |
|
130 |
= Q. Can I use this plugin on my language? =
|
131 |
-
A. Yes. This plugin is ready for translation and has already been translated into several languages. But If your language is not available then you can make one.
|
|
|
|
|
132 |
|
133 |
= Q. How does it work? =
|
134 |
A. Simply go to the plugin settings page, fill in the required fields and click the "Save changes" button. Enjoy the improved SEO of your website. It's that simple!
|
@@ -154,12 +156,12 @@ A. As far as we know, the "All Meta Tags" plugin is compatible with the "All in
|
|
154 |
...
|
155 |
</head>`
|
156 |
|
157 |
-
If you find a conflict between the plugins, please let us know and we will definitely release an update of
|
158 |
|
159 |
= Q. What about compatibility with the "Yoast SEO" plugin ? =
|
160 |
A. As far as we know, the "All Meta Tags" plugin is compatible with the "Yoast SEO" plugin. But to make sure that these plugins do not conflict with each other, you need to follow one simple rule: do not fill the same field in both plugins at once. Otherwise both plugins fulfill their work and you will get a duplicate actions.
|
161 |
|
162 |
-
If you find a conflict between the plugins, please let us know and we will definitely release an update of
|
163 |
|
164 |
= Q. Does this plugin requires any modification of the theme? =
|
165 |
A. Absolutely not. This plugin is configurable entirely from the plugin settings page that you can find in the Admin Area of your WordPress website.
|
@@ -168,9 +170,9 @@ A. Absolutely not. This plugin is configurable entirely from the plugin settings
|
|
168 |
A. Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page.
|
169 |
|
170 |
= Q. It's not working. What could be wrong? =
|
171 |
-
A. As with every plugin, it's possible that things don't work. The most common reason for this is a web browser
|
172 |
|
173 |
-
|
174 |
|
175 |
= Q. The last WordPress update is preventing me from editing my website that is using this plugin. Why is this? =
|
176 |
A. This plugin can not cause such problem. More likely, the problem are related to the settings of the website. It could just be a cache, so please try to clear your website's cache (may be you using a caching plugin, or some web service such as the CloudFlare) and then the cache of your web browser. Also please try to re-login to the website, this too can help.
|
@@ -217,6 +219,15 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
217 |
|
218 |
== Changelog ==
|
219 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
220 |
= 4.27 =
|
221 |
* Content of the "Usage" section updated.
|
222 |
* Code formatting in the "admin.js" file improved.
|
3 |
Tags: meta, tag, tags, custom, simple, plugin, twitter, facebook, google, google plus, meta, search engine optimization, seo, social, alexa, alexa rank, pinterest, norton safe web, webmaster, webmaster tool, webmaster tools, web master tools, web master tools, bing, yandex, bing webmaster, yandex webmaster, google webmaster, web tools, open graph, publisher profile, publisher, author, authors, description, keyword, keywords, copyright, designer, admin, meta tag, pinterest, pinterest meta tag, pinterest website verification, pinterest verification, pinterest verify, plugin, verification, verify, webmaster plugin, wot, web of trust, specificfeeds, specific feeds, feed, rss feed, google shopping, google merchant center, structured data, woocommerce, schemas
|
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.28
|
8 |
License: GPL3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
67 |
|
68 |
**Translation**
|
69 |
|
70 |
+
This plugin is ready for translation and has already been translated into several languages. But If your language is not available then you can make one. It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections. Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!
|
71 |
|
72 |
* English (default)
|
73 |
* Russian (translation by [Milena Kiseleva](https://www.instagram.com/milava_kiseleva/))
|
77 |
* Italian (translation by Stefano Tombolini)
|
78 |
* Dutch (translation by Peter Leenders)
|
79 |
|
80 |
+
If you want to help translate this plugin, please visit the [translation page](https://translate.wordpress.org/projects/wp-plugins/all-meta-tags).
|
81 |
|
82 |
**Minimum system requirements:**
|
83 |
|
124 |
|
125 |
== Frequently Asked Questions ==
|
126 |
|
127 |
+
= Q. Will this plugin work on my wordpress.COM website? =
|
128 |
+
A. Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites.
|
129 |
|
130 |
= Q. Can I use this plugin on my language? =
|
131 |
+
A. Yes. This plugin is ready for translation and has already been translated into several languages. But If your language is not available then you can make one. It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections. Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!
|
132 |
+
|
133 |
+
If you want to help translate this plugin, please use the POT file that is included and placed in the `languages` folder to create a translation PO file. Just [send the PO file to us](https://www.spacexchimp.com/contact.html) and we will include this translation within the next plugin update.
|
134 |
|
135 |
= Q. How does it work? =
|
136 |
A. Simply go to the plugin settings page, fill in the required fields and click the "Save changes" button. Enjoy the improved SEO of your website. It's that simple!
|
156 |
...
|
157 |
</head>`
|
158 |
|
159 |
+
If you find a conflict between the plugins, please let us know and we will definitely release an update of our plugin to fix the problem.
|
160 |
|
161 |
= Q. What about compatibility with the "Yoast SEO" plugin ? =
|
162 |
A. As far as we know, the "All Meta Tags" plugin is compatible with the "Yoast SEO" plugin. But to make sure that these plugins do not conflict with each other, you need to follow one simple rule: do not fill the same field in both plugins at once. Otherwise both plugins fulfill their work and you will get a duplicate actions.
|
163 |
|
164 |
+
If you find a conflict between the plugins, please let us know and we will definitely release an update of our plugin to fix the problem.
|
165 |
|
166 |
= Q. Does this plugin requires any modification of the theme? =
|
167 |
A. Absolutely not. This plugin is configurable entirely from the plugin settings page that you can find in the Admin Area of your WordPress website.
|
170 |
A. Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page.
|
171 |
|
172 |
= Q. It's not working. What could be wrong? =
|
173 |
+
A. As with every plugin, it's possible that things don't work. It's impossible to tell what could be wrong exactly. The most common reason for this is a web browser’s cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load. This is called the browser’s cache. Clearing your browser’s cache may solve the problem.
|
174 |
|
175 |
+
If you post a support request in the plugin's support forum on WordPress.org, we'd be happy to give it a look and try to help out. Please include as much information as possible, including a link to your website where the problem can be seen.
|
176 |
|
177 |
= Q. The last WordPress update is preventing me from editing my website that is using this plugin. Why is this? =
|
178 |
A. This plugin can not cause such problem. More likely, the problem are related to the settings of the website. It could just be a cache, so please try to clear your website's cache (may be you using a caching plugin, or some web service such as the CloudFlare) and then the cache of your web browser. Also please try to re-login to the website, this too can help.
|
219 |
|
220 |
== Changelog ==
|
221 |
|
222 |
+
= 4.28 =
|
223 |
+
* The readme "Tested up to:" value changed to 5.1 after full testing process and ensuring compatibility.
|
224 |
+
* Content of the "F.A.Q." section updated.
|
225 |
+
* Some texts are corrected or replaced with new ones.
|
226 |
+
* All translation files are updated.
|
227 |
+
* Code formatting improved.
|
228 |
+
* Added CSS class ".custom-list" for displaying a custom list, which is used on the plugin settings page.
|
229 |
+
* The human.txt file updated.
|
230 |
+
|
231 |
= 4.27 =
|
232 |
* Content of the "Usage" section updated.
|
233 |
* Code formatting in the "admin.js" file improved.
|