Version Description
- Dutch translation added. (Thanks to Peter Leenders)
- The function '_load_scripts_codemirror' is improved. Removed an unnecessary call of constants.
- The banner of Space X-Chimp, located on the settings page of the plugin, is updated. The image 'banner.png' is deleted.
- Some texts are updated.
- All translation files are updated.
Download this release
Release Info
Developer | Arthur Gareginyan |
Plugin | All Meta Tags |
Version | 4.22 |
Comparing to | |
See all releases |
Code changes from version 4.21 to 4.22
- all-meta-tags.php +1 -1
- inc/css/admin.css +5 -0
- inc/img/banner.png +0 -0
- inc/php/enqueue.php +4 -9
- inc/php/page.php +6 -6
- inc/php/settings.php +1 -1
- inc/php/sidebar.php +10 -9
- languages/all-meta-tags-de_DE.mo +0 -0
- languages/all-meta-tags-de_DE.po +30 -20
- languages/all-meta-tags-es_ES.mo +0 -0
- languages/all-meta-tags-es_ES.po +28 -18
- languages/all-meta-tags-es_MX.mo +0 -0
- languages/all-meta-tags-es_MX.po +23 -16
- languages/all-meta-tags-it_IT.mo +0 -0
- languages/all-meta-tags-it_IT.po +19 -15
- languages/all-meta-tags-nl_NL.mo +0 -0
- languages/all-meta-tags-nl_NL.po +512 -0
- languages/all-meta-tags-ru_RU.mo +0 -0
- languages/all-meta-tags-ru_RU.po +28 -18
- languages/all-meta-tags.pot +18 -14
- readme.txt +9 -1
all-meta-tags.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: Easily and safely add your custom Meta Tags to WordPress website's header.
|
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 WordPress website's header.
|
6 |
* Author: Space X-Chimp
|
7 |
* Author URI: https://www.spacexchimp.com
|
8 |
+
* Version: 4.22
|
9 |
* License: GPL3
|
10 |
* Text Domain: all-meta-tags
|
11 |
* Domain Path: /languages/
|
inc/css/admin.css
CHANGED
@@ -99,6 +99,11 @@ h2 .version {
|
|
99 |
#side-sortables .banner img {
|
100 |
width: 265px;
|
101 |
}
|
|
|
|
|
|
|
|
|
|
|
102 |
|
103 |
/* Support - Tab and Addition section
|
104 |
-------------------------------------------------------------- */
|
99 |
#side-sortables .banner img {
|
100 |
width: 265px;
|
101 |
}
|
102 |
+
#side-sortables .banner .btn {
|
103 |
+
width: 95%;
|
104 |
+
height: 40px;
|
105 |
+
margin-bottom: 0;
|
106 |
+
}
|
107 |
|
108 |
/* Support - Tab and Addition section
|
109 |
-------------------------------------------------------------- */
|
inc/img/banner.png
DELETED
Binary file
|
inc/php/enqueue.php
CHANGED
@@ -8,12 +8,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
8 |
/**
|
9 |
* Callback to enqueue the CodeMirror library
|
10 |
*/
|
11 |
-
function spacexchimp_p004_load_scripts_codemirror() {
|
12 |
-
|
13 |
-
// Put value of constants to variables for easier access
|
14 |
-
$prefix = SPACEXCHIMP_P004_PREFIX;
|
15 |
-
$url = SPACEXCHIMP_P004_URL;
|
16 |
-
$version = SPACEXCHIMP_P004_VERSION;
|
17 |
|
18 |
// Enqueue main files of the CodeMirror library
|
19 |
wp_enqueue_style( $prefix . '-codemirror-css', $url . 'inc/lib/codemirror/lib/codemirror.css', array(), $version, 'all' );
|
@@ -69,14 +64,14 @@ function spacexchimp_p004_load_scripts_admin( $hook ) {
|
|
69 |
// Font Awesome library
|
70 |
wp_enqueue_style( $prefix . '-font-awesome-css', $url . 'inc/lib/font-awesome/css/font-awesome.css', array(), $version, 'screen' );
|
71 |
|
72 |
-
// Call the function that enqueue the CodeMirror library
|
73 |
-
spacexchimp_p004_load_scripts_codemirror();
|
74 |
-
|
75 |
// Style sheet
|
76 |
wp_enqueue_style( $prefix . '-admin-css', $url . 'inc/css/admin.css', array(), $version, 'all' );
|
77 |
|
78 |
// JavaScript
|
79 |
wp_enqueue_script( $prefix . '-admin-js', $url . 'inc/js/admin.js', array(), $version, true );
|
80 |
|
|
|
|
|
|
|
81 |
}
|
82 |
add_action( 'admin_enqueue_scripts', 'spacexchimp_p004_load_scripts_admin' );
|
8 |
/**
|
9 |
* Callback to enqueue the CodeMirror library
|
10 |
*/
|
11 |
+
function spacexchimp_p004_load_scripts_codemirror( $prefix, $url, $version ) {
|
|
|
|
|
|
|
|
|
|
|
12 |
|
13 |
// Enqueue main files of the CodeMirror library
|
14 |
wp_enqueue_style( $prefix . '-codemirror-css', $url . 'inc/lib/codemirror/lib/codemirror.css', array(), $version, 'all' );
|
64 |
// Font Awesome library
|
65 |
wp_enqueue_style( $prefix . '-font-awesome-css', $url . 'inc/lib/font-awesome/css/font-awesome.css', array(), $version, 'screen' );
|
66 |
|
|
|
|
|
|
|
67 |
// Style sheet
|
68 |
wp_enqueue_style( $prefix . '-admin-css', $url . 'inc/css/admin.css', array(), $version, 'all' );
|
69 |
|
70 |
// JavaScript
|
71 |
wp_enqueue_script( $prefix . '-admin-js', $url . 'inc/js/admin.js', array(), $version, true );
|
72 |
|
73 |
+
// Call the function that enqueue the CodeMirror library
|
74 |
+
spacexchimp_p004_load_scripts_codemirror( $prefix, $url, $version );
|
75 |
+
|
76 |
}
|
77 |
add_action( 'admin_enqueue_scripts', 'spacexchimp_p004_load_scripts_admin' );
|
inc/php/page.php
CHANGED
@@ -201,7 +201,7 @@ function spacexchimp_p004_render_submenu_page() {
|
|
201 |
<!-- TAB 4 -->
|
202 |
<div class="tab-page fade" id="tab-support">
|
203 |
<div class="postbox">
|
204 |
-
<h3 class="title"><?php _e( 'Support
|
205 |
<div class="inside">
|
206 |
<span class="image-with-button pull-left">
|
207 |
<img src="<?php echo SPACEXCHIMP_P004_URL . 'inc/img/thanks.png'; ?>" alt="Thanks!">
|
@@ -214,17 +214,17 @@ function spacexchimp_p004_render_submenu_page() {
|
|
214 |
</span>
|
215 |
<p><?php
|
216 |
printf(
|
217 |
-
__( 'Hello! My name is %s Arthur
|
218 |
-
'<a href="https://www.
|
219 |
'</a>',
|
220 |
'<a href="https://www.spacexchimp.com" target="_blank">',
|
221 |
'</a>'
|
222 |
);
|
223 |
?>
|
224 |
</p>
|
225 |
-
<p><?php _e( '
|
226 |
-
<p><?php _e( '
|
227 |
-
<p><?php _e( 'If you appreciate
|
228 |
<p><?php _e( 'Thank you for your support!', $text ); ?></p>
|
229 |
</div>
|
230 |
</div>
|
201 |
<!-- TAB 4 -->
|
202 |
<div class="tab-page fade" id="tab-support">
|
203 |
<div class="postbox">
|
204 |
+
<h3 class="title"><?php _e( 'Support Us', $text ); ?></h3>
|
205 |
<div class="inside">
|
206 |
<span class="image-with-button pull-left">
|
207 |
<img src="<?php echo SPACEXCHIMP_P004_URL . 'inc/img/thanks.png'; ?>" alt="Thanks!">
|
214 |
</span>
|
215 |
<p><?php
|
216 |
printf(
|
217 |
+
__( 'Hello! 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 ),
|
218 |
+
'<a href="https://www.instagram.com/arthur_gareginyan/" target="_blank">',
|
219 |
'</a>',
|
220 |
'<a href="https://www.spacexchimp.com" target="_blank">',
|
221 |
'</a>'
|
222 |
);
|
223 |
?>
|
224 |
</p>
|
225 |
+
<p><?php _e( 'Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». 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 ); ?></p>
|
226 |
+
<p><?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. 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 ); ?></p>
|
227 |
+
<p><?php _e( 'If you appreciate our work, you can buy us a cup of coffee!', $text ); ?></p>
|
228 |
<p><?php _e( 'Thank you for your support!', $text ); ?></p>
|
229 |
</div>
|
230 |
</div>
|
inc/php/settings.php
CHANGED
@@ -218,7 +218,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
218 |
<div class="postbox" id="support-addition">
|
219 |
<h3 class="title"><?php _e( 'Support', $text ); ?></h3>
|
220 |
<div class="inside">
|
221 |
-
<p><?php _e( '
|
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">
|
218 |
<div class="postbox" id="support-addition">
|
219 |
<h3 class="title"><?php _e( 'Support', $text ); ?></h3>
|
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">
|
inc/php/sidebar.php
CHANGED
@@ -12,6 +12,15 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
12 |
<div class="inner-sidebar">
|
13 |
<div id="side-sortables" class="meta-box-sortabless ui-sortable">
|
14 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
<div class="postbox about">
|
16 |
<h3 class="title"><?php _e( 'About', $text ); ?></h3>
|
17 |
<div class="inside">
|
@@ -29,7 +38,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
29 |
<div class="postbox support">
|
30 |
<h3 class="title"><?php _e( 'Support', $text ); ?></h3>
|
31 |
<div class="inside">
|
32 |
-
<p><?php _e( '
|
33 |
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="btn btn-default button-labeled">
|
34 |
<span class="btn-label">
|
35 |
<img src="<?php echo SPACEXCHIMP_P004_URL . 'inc/img/paypal.svg'; ?>" alt="PayPal">
|
@@ -40,14 +49,6 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
40 |
</div>
|
41 |
</div>
|
42 |
|
43 |
-
<div class="postbox banner">
|
44 |
-
<div class="inside">
|
45 |
-
<a href="https://www.spacexchimp.com/" target="_blank">
|
46 |
-
<img src="<?php echo SPACEXCHIMP_P004_URL . 'inc/img/banner.png'; ?>" alt="Space X-Chimp">
|
47 |
-
</a>
|
48 |
-
</div>
|
49 |
-
</div>
|
50 |
-
|
51 |
</div>
|
52 |
</div>
|
53 |
<?php
|
12 |
<div class="inner-sidebar">
|
13 |
<div id="side-sortables" class="meta-box-sortabless ui-sortable">
|
14 |
|
15 |
+
<div class="postbox banner">
|
16 |
+
<h3 class="title"><?php _e( 'We are «Space X-Chimp»', $text ); ?></h3>
|
17 |
+
<div class="inside">
|
18 |
+
<a href="https://www.spacexchimp.com/" target="_blank">
|
19 |
+
<img src="<?php echo SPACEXCHIMP_P004_URL . 'inc/img/spacexchimp-logo.png'; ?>" alt="Space X-Chimp">
|
20 |
+
</a>
|
21 |
+
</div>
|
22 |
+
</div>
|
23 |
+
|
24 |
<div class="postbox about">
|
25 |
<h3 class="title"><?php _e( 'About', $text ); ?></h3>
|
26 |
<div class="inside">
|
38 |
<div class="postbox support">
|
39 |
<h3 class="title"><?php _e( 'Support', $text ); ?></h3>
|
40 |
<div class="inside">
|
41 |
+
<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>
|
42 |
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="btn btn-default button-labeled">
|
43 |
<span class="btn-label">
|
44 |
<img src="<?php echo SPACEXCHIMP_P004_URL . 'inc/img/paypal.svg'; ?>" alt="PayPal">
|
49 |
</div>
|
50 |
</div>
|
51 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
</div>
|
53 |
</div>
|
54 |
<?php
|
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: 2018-07-
|
7 |
-
"PO-Revision-Date: 2018-07-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: German\n"
|
10 |
"Language: de_DE\n"
|
@@ -66,7 +66,7 @@ msgstr "Verwendung"
|
|
66 |
msgid "F.A.Q."
|
67 |
msgstr "F.A.Q."
|
68 |
|
69 |
-
#: inc/php/page.php:46 inc/php/settings.php:219 inc/php/sidebar.php:
|
70 |
msgid "Support"
|
71 |
msgstr "Support"
|
72 |
|
@@ -269,28 +269,28 @@ msgid "You can ask your question on %s this page %s. But please keep in mind tha
|
|
269 |
msgstr ""
|
270 |
|
271 |
#: inc/php/page.php:204
|
272 |
-
msgid "Support
|
273 |
-
msgstr "
|
274 |
|
275 |
-
#: inc/php/page.php:212 inc/php/settings.php:226 inc/php/sidebar.php:
|
276 |
msgid "Donate with PayPal"
|
277 |
msgstr "Spende mit PayPal"
|
278 |
|
279 |
#: inc/php/page.php:217
|
280 |
#, php-format
|
281 |
-
msgid "Hello! My name is %s Arthur
|
282 |
-
msgstr "
|
283 |
|
284 |
#: inc/php/page.php:225
|
285 |
-
msgid "
|
286 |
-
msgstr "
|
287 |
|
288 |
#: inc/php/page.php:226
|
289 |
-
msgid "
|
290 |
-
msgstr "Ich habe viel Zeit und Mühe darauf verwendet sicherzustellen, dass die Themes, Plugins und andere Dinge, die ich entwickle, nützlich sind. Der ultimative Beweis für mich ist, dass Sie sie tatsächlich verwenden. Aber
|
291 |
|
292 |
#: inc/php/page.php:227
|
293 |
-
msgid "If you appreciate
|
294 |
msgstr "Wenn Ihnen meine Arbeit gefällt, können Sie mir gerne einen Kaffee kaufen!"
|
295 |
|
296 |
#: inc/php/page.php:228
|
@@ -457,27 +457,31 @@ msgstr ""
|
|
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:
|
461 |
-
msgid "
|
462 |
-
msgstr "
|
463 |
|
464 |
-
#: inc/php/settings.php:228 inc/php/sidebar.php:
|
465 |
msgid "Thanks for your support!"
|
466 |
msgstr "Danke für Ihre Unterstützung!"
|
467 |
|
468 |
#: inc/php/sidebar.php:16
|
|
|
|
|
|
|
|
|
469 |
msgid "About"
|
470 |
msgstr "Über"
|
471 |
|
472 |
-
#: inc/php/sidebar.php:
|
473 |
msgid "This plugin allows you to easily add Meta Tags to your website."
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: inc/php/sidebar.php:
|
477 |
msgid "Help"
|
478 |
msgstr "Hilfe"
|
479 |
|
480 |
-
#: inc/php/sidebar.php:
|
481 |
msgid "If you have a question, please read the information in the FAQ section."
|
482 |
msgstr "Wenn Sie Fragen haben, lesen Sie bitte auch die Fragen im FAQ Bereich."
|
483 |
|
@@ -500,3 +504,9 @@ msgstr "Space X-Chimp"
|
|
500 |
#. Author URI of the plugin/theme
|
501 |
msgid "https://www.spacexchimp.com"
|
502 |
msgstr "https://www.spacexchimp.com"
|
|
|
|
|
|
|
|
|
|
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: All Meta Tags\n"
|
6 |
+
"POT-Creation-Date: 2018-07-24 00:31+0300\n"
|
7 |
+
"PO-Revision-Date: 2018-07-24 00:31+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: German\n"
|
10 |
"Language: de_DE\n"
|
66 |
msgid "F.A.Q."
|
67 |
msgstr "F.A.Q."
|
68 |
|
69 |
+
#: inc/php/page.php:46 inc/php/settings.php:219 inc/php/sidebar.php:39
|
70 |
msgid "Support"
|
71 |
msgstr "Support"
|
72 |
|
269 |
msgstr ""
|
270 |
|
271 |
#: inc/php/page.php:204
|
272 |
+
msgid "Support Us"
|
273 |
+
msgstr "Unterstütze uns"
|
274 |
|
275 |
+
#: inc/php/page.php:212 inc/php/settings.php:226 inc/php/sidebar.php:46
|
276 |
msgid "Donate with PayPal"
|
277 |
msgstr "Spende mit PayPal"
|
278 |
|
279 |
#: inc/php/page.php:217
|
280 |
#, php-format
|
281 |
+
msgid "Hello! 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."
|
282 |
+
msgstr ""
|
283 |
|
284 |
#: inc/php/page.php:225
|
285 |
+
msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
286 |
+
msgstr ""
|
287 |
|
288 |
#: inc/php/page.php:226
|
289 |
+
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. 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."
|
290 |
+
msgstr "Ich habe viel Zeit und Mühe darauf verwendet sicherzustellen, dass die Themes, Plugins und andere Dinge, die ich entwickle, nützlich sind. Der ultimative Beweis für mich ist, dass Sie sie tatsächlich verwenden. Aber Jeder kleine Beitrag trägt dazu bei, meine Kosten zu decken und schenkt mir mehr Zeit damit zu verbringen, Dinge für Leute wie Sie zu gestalten."
|
291 |
|
292 |
#: inc/php/page.php:227
|
293 |
+
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
294 |
msgstr "Wenn Ihnen meine Arbeit gefällt, können Sie mir gerne einen Kaffee kaufen!"
|
295 |
|
296 |
#: inc/php/page.php:228
|
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 "Jeder kleine Beitrag trägt dazu bei, unsere Kosten zu decken und wir kann mehr Zeit damit verbringen, Dinge für Leute wie Sie zu entwickeln."
|
463 |
|
464 |
+
#: inc/php/settings.php:228 inc/php/sidebar.php:48
|
465 |
msgid "Thanks for your support!"
|
466 |
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 allows you to easily add Meta Tags to your website."
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: inc/php/sidebar.php:32
|
481 |
msgid "Help"
|
482 |
msgstr "Hilfe"
|
483 |
|
484 |
+
#: inc/php/sidebar.php:34
|
485 |
msgid "If you have a question, please read the information in the FAQ section."
|
486 |
msgstr "Wenn Sie Fragen haben, lesen Sie bitte auch die Fragen im FAQ Bereich."
|
487 |
|
504 |
#. Author URI of the plugin/theme
|
505 |
msgid "https://www.spacexchimp.com"
|
506 |
msgstr "https://www.spacexchimp.com"
|
507 |
+
|
508 |
+
#~ msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
|
509 |
+
#~ msgstr "Hallo! Meine name ist %s Arthur Gareginyan %s und ich bin der Gründer von %s Space X-Chimp %s."
|
510 |
+
|
511 |
+
#~ 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."
|
512 |
+
#~ msgstr "Meine Absicht ist es, Projekte zu entwickeln, die diese Welt zu einem besseren Ort machen. Ich bin begeistert von meiner Arbeit, ich mag, was ich tue, und hoffe, dass Sie auch von meinen Projekten bereichert werden."
|
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: 2018-07-
|
7 |
-
"PO-Revision-Date: 2018-07-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Spanish\n"
|
10 |
"Language: es_ES\n"
|
@@ -66,7 +66,7 @@ msgstr "Uso"
|
|
66 |
msgid "F.A.Q."
|
67 |
msgstr "Preguntas ?"
|
68 |
|
69 |
-
#: inc/php/page.php:46 inc/php/settings.php:219 inc/php/sidebar.php:
|
70 |
msgid "Support"
|
71 |
msgstr "Soporte"
|
72 |
|
@@ -269,28 +269,28 @@ msgid "You can ask your question on %s this page %s. But please keep in mind tha
|
|
269 |
msgstr "Puede hacer tu pregunta en %s la página de soporte del complementos %s. Pero ten en cuenta que este complemento es gratuito, y no hay un equipo de soporte especial, así que no tengo forma de responder a todos."
|
270 |
|
271 |
#: inc/php/page.php:204
|
272 |
-
msgid "Support
|
273 |
-
msgstr "
|
274 |
|
275 |
-
#: inc/php/page.php:212 inc/php/settings.php:226 inc/php/sidebar.php:
|
276 |
msgid "Donate with PayPal"
|
277 |
msgstr "Donar con PayPal"
|
278 |
|
279 |
#: inc/php/page.php:217
|
280 |
#, php-format
|
281 |
-
msgid "Hello! My name is %s Arthur
|
282 |
-
msgstr "
|
283 |
|
284 |
#: inc/php/page.php:225
|
285 |
-
msgid "
|
286 |
-
msgstr "
|
287 |
|
288 |
#: inc/php/page.php:226
|
289 |
-
msgid "
|
290 |
msgstr "Paso mucho tiempo y esfuerzo tratando de asegurarme que los temas, complementos y otras cosas que construyo sean útiles, y la prueba definitiva para mí de que son útiles, es que realmente desea utilizarlos. Pero, soy un desarrollador independiente, sin un ingreso regular, por lo que cada pequeña contribución me ayuda a cubrir mis costos y me deja pasar más tiempo construyendo cosas para que la gente como tú lo disfrute."
|
291 |
|
292 |
#: inc/php/page.php:227
|
293 |
-
msgid "If you appreciate
|
294 |
msgstr "Si aprecias mi trabajo, puedes comprarme un café!"
|
295 |
|
296 |
#: inc/php/page.php:228
|
@@ -457,27 +457,31 @@ msgstr "Este plugin añade automáticamente los datos estructurados de Google Sh
|
|
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 "Puedes revisar los datos generados para las páginas de tu sitio web <a href=\"https://search.google.com/structured-data/testing-tool\" target=\"_blank\">aquí</a>."
|
459 |
|
460 |
-
#: inc/php/settings.php:221 inc/php/sidebar.php:
|
461 |
-
msgid "
|
462 |
msgstr "Soy un desarrollador independiente, sin un ingreso regular, por lo que cada pequeña contribución ayuda a cubrir mis costos y me deja pasar más tiempo construyendo cosas para que personas como tú las disfruten."
|
463 |
|
464 |
-
#: inc/php/settings.php:228 inc/php/sidebar.php:
|
465 |
msgid "Thanks for your support!"
|
466 |
msgstr "¡Gracias por tu apoyo!"
|
467 |
|
468 |
#: inc/php/sidebar.php:16
|
|
|
|
|
|
|
|
|
469 |
msgid "About"
|
470 |
msgstr "Acerca de"
|
471 |
|
472 |
-
#: inc/php/sidebar.php:
|
473 |
msgid "This plugin allows you to easily add Meta Tags to your website."
|
474 |
msgstr "Este complemento te permite añadir fácilmente Meta Etiquetas personalizadas a tu sitio web."
|
475 |
|
476 |
-
#: inc/php/sidebar.php:
|
477 |
msgid "Help"
|
478 |
msgstr "Ayuda"
|
479 |
|
480 |
-
#: inc/php/sidebar.php:
|
481 |
msgid "If you have a question, please read the information in the FAQ section."
|
482 |
msgstr "Si tiene alguna pregunta, lee la información en la sección de preguntas frecuentes."
|
483 |
|
@@ -500,3 +504,9 @@ msgstr "Space X-Chimp"
|
|
500 |
#. Author URI of the plugin/theme
|
501 |
msgid "https://www.spacexchimp.com"
|
502 |
msgstr "https://www.spacexchimp.com"
|
|
|
|
|
|
|
|
|
|
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: All Meta Tags\n"
|
6 |
+
"POT-Creation-Date: 2018-07-24 00:31+0300\n"
|
7 |
+
"PO-Revision-Date: 2018-07-24 00:31+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Spanish\n"
|
10 |
"Language: es_ES\n"
|
66 |
msgid "F.A.Q."
|
67 |
msgstr "Preguntas ?"
|
68 |
|
69 |
+
#: inc/php/page.php:46 inc/php/settings.php:219 inc/php/sidebar.php:39
|
70 |
msgid "Support"
|
71 |
msgstr "Soporte"
|
72 |
|
269 |
msgstr "Puede hacer tu pregunta en %s la página de soporte del complementos %s. Pero ten en cuenta que este complemento es gratuito, y no hay un equipo de soporte especial, así que no tengo forma de responder a todos."
|
270 |
|
271 |
#: inc/php/page.php:204
|
272 |
+
msgid "Support Us"
|
273 |
+
msgstr "¡Apoyanos!"
|
274 |
|
275 |
+
#: inc/php/page.php:212 inc/php/settings.php:226 inc/php/sidebar.php:46
|
276 |
msgid "Donate with PayPal"
|
277 |
msgstr "Donar con PayPal"
|
278 |
|
279 |
#: inc/php/page.php:217
|
280 |
#, php-format
|
281 |
+
msgid "Hello! 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."
|
282 |
+
msgstr ""
|
283 |
|
284 |
#: inc/php/page.php:225
|
285 |
+
msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
286 |
+
msgstr ""
|
287 |
|
288 |
#: inc/php/page.php:226
|
289 |
+
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. 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."
|
290 |
msgstr "Paso mucho tiempo y esfuerzo tratando de asegurarme que los temas, complementos y otras cosas que construyo sean útiles, y la prueba definitiva para mí de que son útiles, es que realmente desea utilizarlos. Pero, soy un desarrollador independiente, sin un ingreso regular, por lo que cada pequeña contribución me ayuda a cubrir mis costos y me deja pasar más tiempo construyendo cosas para que la gente como tú lo disfrute."
|
291 |
|
292 |
#: inc/php/page.php:227
|
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:228
|
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 "Puedes revisar los datos generados para las páginas de tu sitio web <a href=\"https://search.google.com/structured-data/testing-tool\" target=\"_blank\">aquí</a>."
|
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 "Soy un desarrollador independiente, sin un ingreso regular, por lo que cada pequeña contribución ayuda a cubrir mis costos y me deja pasar más tiempo construyendo cosas para que personas como tú las disfruten."
|
463 |
|
464 |
+
#: inc/php/settings.php:228 inc/php/sidebar.php:48
|
465 |
msgid "Thanks for your support!"
|
466 |
msgstr "¡Gracias por tu apoyo!"
|
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 "Acerca de"
|
475 |
|
476 |
+
#: inc/php/sidebar.php:27
|
477 |
msgid "This plugin allows you to easily add Meta Tags to your website."
|
478 |
msgstr "Este complemento te permite añadir fácilmente Meta Etiquetas personalizadas a tu sitio web."
|
479 |
|
480 |
+
#: inc/php/sidebar.php:32
|
481 |
msgid "Help"
|
482 |
msgstr "Ayuda"
|
483 |
|
484 |
+
#: inc/php/sidebar.php:34
|
485 |
msgid "If you have a question, please read the information in the FAQ section."
|
486 |
msgstr "Si tiene alguna pregunta, lee la información en la sección de preguntas frecuentes."
|
487 |
|
504 |
#. Author URI of the plugin/theme
|
505 |
msgid "https://www.spacexchimp.com"
|
506 |
msgstr "https://www.spacexchimp.com"
|
507 |
+
|
508 |
+
#~ msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
|
509 |
+
#~ msgstr "¡Hola! Mi nombre es %s Arthur Gareginyan %s y soy el fundador de %s Space X-Chimp %s."
|
510 |
+
|
511 |
+
#~ 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."
|
512 |
+
#~ msgstr "Mi intención es crear proyectos que hagan de este mundo un lugar mejor. Soy realmente apasionado por mi trabajo, me gusta lo que estoy haciendo y espero que tú también te enriquezcas con mis proyectos."
|
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: 2018-07-
|
7 |
-
"PO-Revision-Date: 2018-07-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Spanish (Mexico)\n"
|
10 |
"Language: es_MX\n"
|
@@ -67,7 +67,7 @@ msgstr "Uso"
|
|
67 |
msgid "F.A.Q."
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: inc/php/page.php:46 inc/php/settings.php:219 inc/php/sidebar.php:
|
71 |
msgid "Support"
|
72 |
msgstr "Soporte"
|
73 |
|
@@ -270,28 +270,28 @@ msgid "You can ask your question on %s this page %s. But please keep in mind tha
|
|
270 |
msgstr ""
|
271 |
|
272 |
#: inc/php/page.php:204
|
273 |
-
msgid "Support
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: inc/php/page.php:212 inc/php/settings.php:226 inc/php/sidebar.php:
|
277 |
msgid "Donate with PayPal"
|
278 |
msgstr ""
|
279 |
|
280 |
#: inc/php/page.php:217
|
281 |
#, php-format
|
282 |
-
msgid "Hello! My name is %s Arthur
|
283 |
-
msgstr "
|
284 |
|
285 |
#: inc/php/page.php:225
|
286 |
-
msgid "
|
287 |
msgstr ""
|
288 |
|
289 |
#: inc/php/page.php:226
|
290 |
-
msgid "
|
291 |
msgstr ""
|
292 |
|
293 |
#: inc/php/page.php:227
|
294 |
-
msgid "If you appreciate
|
295 |
msgstr ""
|
296 |
|
297 |
#: inc/php/page.php:228
|
@@ -458,27 +458,31 @@ msgstr ""
|
|
458 |
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>."
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: inc/php/settings.php:221 inc/php/sidebar.php:
|
462 |
-
msgid "
|
463 |
msgstr "Si te gusta este plugin y lo encuentras útil, por favor ayudame hacer este plugin aún mejor y tenerlo actualizado."
|
464 |
|
465 |
-
#: inc/php/settings.php:228 inc/php/sidebar.php:
|
466 |
msgid "Thanks for your support!"
|
467 |
msgstr "Gracias por su apoyo!"
|
468 |
|
469 |
#: inc/php/sidebar.php:16
|
|
|
|
|
|
|
|
|
470 |
msgid "About"
|
471 |
msgstr "Acerca"
|
472 |
|
473 |
-
#: inc/php/sidebar.php:
|
474 |
msgid "This plugin allows you to easily add Meta Tags to your website."
|
475 |
msgstr "Este complemento te permite agregar fácilmente Meta Tags a tu sitio web."
|
476 |
|
477 |
-
#: inc/php/sidebar.php:
|
478 |
msgid "Help"
|
479 |
msgstr "Ayuda"
|
480 |
|
481 |
-
#: inc/php/sidebar.php:
|
482 |
msgid "If you have a question, please read the information in the FAQ section."
|
483 |
msgstr "Tiene algo que decir? Necesitas ayuda?"
|
484 |
|
@@ -501,3 +505,6 @@ msgstr "Space X-Chimp"
|
|
501 |
#. Author URI of the plugin/theme
|
502 |
msgid "https://www.spacexchimp.com"
|
503 |
msgstr "https://www.spacexchimp.com"
|
|
|
|
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: All Meta Tags\n"
|
6 |
+
"POT-Creation-Date: 2018-07-24 00:32+0300\n"
|
7 |
+
"PO-Revision-Date: 2018-07-24 00:32+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Spanish (Mexico)\n"
|
10 |
"Language: es_MX\n"
|
67 |
msgid "F.A.Q."
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: inc/php/page.php:46 inc/php/settings.php:219 inc/php/sidebar.php:39
|
71 |
msgid "Support"
|
72 |
msgstr "Soporte"
|
73 |
|
270 |
msgstr ""
|
271 |
|
272 |
#: inc/php/page.php:204
|
273 |
+
msgid "Support Us"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: inc/php/page.php:212 inc/php/settings.php:226 inc/php/sidebar.php:46
|
277 |
msgid "Donate with PayPal"
|
278 |
msgstr ""
|
279 |
|
280 |
#: inc/php/page.php:217
|
281 |
#, php-format
|
282 |
+
msgid "Hello! 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."
|
283 |
+
msgstr ""
|
284 |
|
285 |
#: inc/php/page.php:225
|
286 |
+
msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
287 |
msgstr ""
|
288 |
|
289 |
#: inc/php/page.php:226
|
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. 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."
|
291 |
msgstr ""
|
292 |
|
293 |
#: inc/php/page.php:227
|
294 |
+
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
295 |
msgstr ""
|
296 |
|
297 |
#: inc/php/page.php:228
|
458 |
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>."
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: inc/php/settings.php:221 inc/php/sidebar.php:41
|
462 |
+
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."
|
463 |
msgstr "Si te gusta este plugin y lo encuentras útil, por favor ayudame hacer este plugin aún mejor y tenerlo actualizado."
|
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»"
|
471 |
+
msgstr ""
|
472 |
+
|
473 |
+
#: inc/php/sidebar.php:25
|
474 |
msgid "About"
|
475 |
msgstr "Acerca"
|
476 |
|
477 |
+
#: inc/php/sidebar.php:27
|
478 |
msgid "This plugin allows you to easily add Meta Tags to your website."
|
479 |
msgstr "Este complemento te permite agregar fácilmente Meta Tags a tu sitio web."
|
480 |
|
481 |
+
#: inc/php/sidebar.php:32
|
482 |
msgid "Help"
|
483 |
msgstr "Ayuda"
|
484 |
|
485 |
+
#: inc/php/sidebar.php:34
|
486 |
msgid "If you have a question, please read the information in the FAQ section."
|
487 |
msgstr "Tiene algo que decir? Necesitas ayuda?"
|
488 |
|
505 |
#. Author URI of the plugin/theme
|
506 |
msgid "https://www.spacexchimp.com"
|
507 |
msgstr "https://www.spacexchimp.com"
|
508 |
+
|
509 |
+
#~ msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
|
510 |
+
#~ msgstr "¡Hola! Mi nombre es %s Arthur Gareginyan %s y soy el fundador de %s Space X-Chimp %s."
|
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: 2018-07-
|
7 |
-
"PO-Revision-Date: 2018-07-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Italian\n"
|
10 |
"Language: it_IT\n"
|
@@ -66,7 +66,7 @@ msgstr ""
|
|
66 |
msgid "F.A.Q."
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: inc/php/page.php:46 inc/php/settings.php:219 inc/php/sidebar.php:
|
70 |
msgid "Support"
|
71 |
msgstr ""
|
72 |
|
@@ -269,28 +269,28 @@ msgid "You can ask your question on %s this page %s. But please keep in mind tha
|
|
269 |
msgstr ""
|
270 |
|
271 |
#: inc/php/page.php:204
|
272 |
-
msgid "Support
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: inc/php/page.php:212 inc/php/settings.php:226 inc/php/sidebar.php:
|
276 |
msgid "Donate with PayPal"
|
277 |
msgstr ""
|
278 |
|
279 |
#: inc/php/page.php:217
|
280 |
#, php-format
|
281 |
-
msgid "Hello! My name is %s Arthur
|
282 |
msgstr ""
|
283 |
|
284 |
#: inc/php/page.php:225
|
285 |
-
msgid "
|
286 |
msgstr ""
|
287 |
|
288 |
#: inc/php/page.php:226
|
289 |
-
msgid "
|
290 |
msgstr ""
|
291 |
|
292 |
#: inc/php/page.php:227
|
293 |
-
msgid "If you appreciate
|
294 |
msgstr ""
|
295 |
|
296 |
#: inc/php/page.php:228
|
@@ -457,27 +457,31 @@ msgstr "Questo plugin aggiunge automaticamente i dati strutturati necessari a Go
|
|
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 "Puoi controllare <a href=\"https://search.google.com/structured-data/testing-tool\" target=\"_blank\">qui</a> tali dati generati sulle pagine del tuo sito web."
|
459 |
|
460 |
-
#: inc/php/settings.php:221 inc/php/sidebar.php:
|
461 |
-
msgid "
|
462 |
msgstr "Sono uno sviluppatore indipendente, senza un reddito stabile, quindi ogni piccolo contributo è utile a coprire i miei costi e mi consente di impiegare più tempo nello sviluppo di strumenti per persone che come te li apprezzano."
|
463 |
|
464 |
-
#: inc/php/settings.php:228 inc/php/sidebar.php:
|
465 |
msgid "Thanks for your support!"
|
466 |
msgstr "Grazie per il tuo supporto!"
|
467 |
|
468 |
#: inc/php/sidebar.php:16
|
|
|
|
|
|
|
|
|
469 |
msgid "About"
|
470 |
msgstr "Informazioni"
|
471 |
|
472 |
-
#: inc/php/sidebar.php:
|
473 |
msgid "This plugin allows you to easily add Meta Tags to your website."
|
474 |
msgstr "Questo plugin ti permette di aggiungere facilmente tag meta al tuo sito web."
|
475 |
|
476 |
-
#: inc/php/sidebar.php:
|
477 |
msgid "Help"
|
478 |
msgstr "Aiuto"
|
479 |
|
480 |
-
#: inc/php/sidebar.php:
|
481 |
msgid "If you have a question, please read the information in the FAQ section."
|
482 |
msgstr "Hai qualcosa da dirmi? Hai bisogno di aiuto?"
|
483 |
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: All Meta Tags\n"
|
6 |
+
"POT-Creation-Date: 2018-07-24 00:32+0300\n"
|
7 |
+
"PO-Revision-Date: 2018-07-24 00:32+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Italian\n"
|
10 |
"Language: it_IT\n"
|
66 |
msgid "F.A.Q."
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: inc/php/page.php:46 inc/php/settings.php:219 inc/php/sidebar.php:39
|
70 |
msgid "Support"
|
71 |
msgstr ""
|
72 |
|
269 |
msgstr ""
|
270 |
|
271 |
#: inc/php/page.php:204
|
272 |
+
msgid "Support Us"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: inc/php/page.php:212 inc/php/settings.php:226 inc/php/sidebar.php:46
|
276 |
msgid "Donate with PayPal"
|
277 |
msgstr ""
|
278 |
|
279 |
#: inc/php/page.php:217
|
280 |
#, php-format
|
281 |
+
msgid "Hello! 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."
|
282 |
msgstr ""
|
283 |
|
284 |
#: inc/php/page.php:225
|
285 |
+
msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
286 |
msgstr ""
|
287 |
|
288 |
#: inc/php/page.php:226
|
289 |
+
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. 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."
|
290 |
msgstr ""
|
291 |
|
292 |
#: inc/php/page.php:227
|
293 |
+
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
294 |
msgstr ""
|
295 |
|
296 |
#: inc/php/page.php:228
|
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 "Puoi controllare <a href=\"https://search.google.com/structured-data/testing-tool\" target=\"_blank\">qui</a> tali dati generati sulle pagine del tuo sito web."
|
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 "Sono uno sviluppatore indipendente, senza un reddito stabile, quindi ogni piccolo contributo è utile a coprire i miei costi e mi consente di impiegare più tempo nello sviluppo di strumenti per persone che come te li apprezzano."
|
463 |
|
464 |
+
#: inc/php/settings.php:228 inc/php/sidebar.php:48
|
465 |
msgid "Thanks for your support!"
|
466 |
msgstr "Grazie per il tuo supporto!"
|
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 "Informazioni"
|
475 |
|
476 |
+
#: inc/php/sidebar.php:27
|
477 |
msgid "This plugin allows you to easily add Meta Tags to your website."
|
478 |
msgstr "Questo plugin ti permette di aggiungere facilmente tag meta al tuo sito web."
|
479 |
|
480 |
+
#: inc/php/sidebar.php:32
|
481 |
msgid "Help"
|
482 |
msgstr "Aiuto"
|
483 |
|
484 |
+
#: inc/php/sidebar.php:34
|
485 |
msgid "If you have a question, please read the information in the FAQ section."
|
486 |
msgstr "Hai qualcosa da dirmi? Hai bisogno di aiuto?"
|
487 |
|
languages/all-meta-tags-nl_NL.mo
ADDED
Binary file
|
languages/all-meta-tags-nl_NL.po
ADDED
@@ -0,0 +1,512 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of plugin - All Meta Tags - in Dutch (Netherlands)
|
2 |
+
# This file is distributed under the same license as the plugin - All Meta Tags.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"Project-Id-Version: All Meta Tags\n"
|
6 |
+
"POT-Creation-Date: 2018-07-24 00:32+0300\n"
|
7 |
+
"PO-Revision-Date: 2018-07-24 00:32+0300\n"
|
8 |
+
"Last-Translator: Arthur Gareginyan\n"
|
9 |
+
"Language-Team: Dutch\n"
|
10 |
+
"Language: nl_NL\n"
|
11 |
+
"MIME-Version: 1.0\n"
|
12 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
+
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
+
"X-Generator: Poedit 2.0.6\n"
|
16 |
+
"X-Poedit-Basepath: ..\n"
|
17 |
+
"X-Poedit-WPHeader: all-meta-tags.php\n"
|
18 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
19 |
+
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\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:43
|
24 |
+
msgid "Settings"
|
25 |
+
msgstr "Instellingen"
|
26 |
+
|
27 |
+
#: inc/php/core.php:37
|
28 |
+
msgid "Donate"
|
29 |
+
msgstr "Doe een gift"
|
30 |
+
|
31 |
+
#: inc/php/core.php:52
|
32 |
+
msgid "Meta Tags Inserter"
|
33 |
+
msgstr ""
|
34 |
+
|
35 |
+
#: inc/php/messages.php:26
|
36 |
+
msgid "Hello. We are the team of Space X-Chimp."
|
37 |
+
msgstr "Hallo. Wij zijn het team van Space X-Chimp."
|
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:68
|
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:69
|
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:30
|
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:36
|
58 |
+
msgid "Version"
|
59 |
+
msgstr "Versie"
|
60 |
+
|
61 |
+
#: inc/php/page.php:44
|
62 |
+
msgid "Usage"
|
63 |
+
msgstr "Gebruik"
|
64 |
+
|
65 |
+
#: inc/php/page.php:45
|
66 |
+
msgid "F.A.Q."
|
67 |
+
msgstr "F.A.Q."
|
68 |
+
|
69 |
+
#: inc/php/page.php:46 inc/php/settings.php:219 inc/php/sidebar.php:39
|
70 |
+
msgid "Support"
|
71 |
+
msgstr "Ondersteuning"
|
72 |
+
|
73 |
+
#: inc/php/page.php:47
|
74 |
+
msgid "Store"
|
75 |
+
msgstr "Winkel"
|
76 |
+
|
77 |
+
#: inc/php/page.php:63
|
78 |
+
msgid "Usage Instructions"
|
79 |
+
msgstr "Gebruiksinstructies"
|
80 |
+
|
81 |
+
#: inc/php/page.php:65
|
82 |
+
msgid "To add the meta tags to your website, simply follow these steps:"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: inc/php/page.php:67
|
86 |
+
msgid "Go to the \"Settings\" tab."
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: inc/php/page.php:68
|
90 |
+
msgid "Fill in the required fields."
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: inc/php/page.php:69
|
94 |
+
msgid "Select the desired settings."
|
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
|
102 |
+
msgid "Enjoy the improved SEO of your website."
|
103 |
+
msgstr ""
|
104 |
+
|
105 |
+
#: inc/php/page.php:71
|
106 |
+
msgid "It's that simple!"
|
107 |
+
msgstr "Zo eenvoudig is het!"
|
108 |
+
|
109 |
+
#: inc/php/page.php:73
|
110 |
+
msgid "Note!"
|
111 |
+
msgstr "Opmerking!"
|
112 |
+
|
113 |
+
#: inc/php/page.php:74
|
114 |
+
#, php-format
|
115 |
+
msgid "If you want more options then %s tell us %s and we will be happy to add it."
|
116 |
+
msgstr "Wilt u meer opties dan %s vertel ons %s en wij zullen graag toevoegen."
|
117 |
+
|
118 |
+
#: inc/php/page.php:88
|
119 |
+
msgid "Frequently Asked Questions"
|
120 |
+
msgstr "Veel voorkomende vragen (FAQ)"
|
121 |
+
|
122 |
+
#: inc/php/page.php:92
|
123 |
+
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
124 |
+
msgstr "Als je een vraag hebt, lees dan eerst de Veel voorkomende vragen (FAQ) hieronder. Misschien staat het antwoord ertussen."
|
125 |
+
|
126 |
+
#: inc/php/page.php:114
|
127 |
+
msgid "Will this plugin work on my WordPress.COM website?"
|
128 |
+
msgstr "Werkt deze plugin op mijn WordPress.COM website?"
|
129 |
+
|
130 |
+
#: inc/php/page.php:115
|
131 |
+
msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
|
132 |
+
msgstr "Sorry, deze plug-in is alleen beschikbaar voor gebruik op zelf-gehoste (WordPress.ORG) websites."
|
133 |
+
|
134 |
+
#: inc/php/page.php:117
|
135 |
+
msgid "Can I use this plugin on my language?"
|
136 |
+
msgstr "Kan ik deze plug-in in mijn eigen taal gebruiken?"
|
137 |
+
|
138 |
+
#: inc/php/page.php:118
|
139 |
+
msgid "Yes. This plugin is ready for translation and has already been translated into several languages."
|
140 |
+
msgstr "Ja. Deze plug-in is klaar voor vertaling en is reeds in verschillende talen vertaald."
|
141 |
+
|
142 |
+
#: inc/php/page.php:120
|
143 |
+
#, php-format
|
144 |
+
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."
|
145 |
+
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."
|
146 |
+
|
147 |
+
#: inc/php/page.php:125
|
148 |
+
msgid "Maybe not all existed translations are up to date. You are welcome to contribute corrections!"
|
149 |
+
msgstr "Misschien zijn niet alle bestaande vertalingen up-to-date of correct. Je bent van harte welkom om correcties bij te dragen!"
|
150 |
+
|
151 |
+
#: inc/php/page.php:126
|
152 |
+
msgid "Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!"
|
153 |
+
msgstr "Veel plugin-gebruikers zouden blij zijn als je je vertaling met de community deelt. Bedankt voor je bijdrage!"
|
154 |
+
|
155 |
+
#: inc/php/page.php:128
|
156 |
+
msgid "How does it work?"
|
157 |
+
msgstr "Hoe werkt het?"
|
158 |
+
|
159 |
+
#: inc/php/page.php:129
|
160 |
+
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!"
|
161 |
+
msgstr ""
|
162 |
+
|
163 |
+
#: inc/php/page.php:131
|
164 |
+
msgid "How much of description I can enter in the text field?"
|
165 |
+
msgstr ""
|
166 |
+
|
167 |
+
#: inc/php/page.php:132
|
168 |
+
msgid "We don't limit the number of characters, but most search engines use a maximum of 160 chars for the home description."
|
169 |
+
msgstr ""
|
170 |
+
|
171 |
+
#: inc/php/page.php:134
|
172 |
+
msgid "How much of keywords I can enter in the text field?"
|
173 |
+
msgstr ""
|
174 |
+
|
175 |
+
#: inc/php/page.php:135
|
176 |
+
msgid "We don't limit the number of characters."
|
177 |
+
msgstr "Er is geen beperking op het aantal tekens."
|
178 |
+
|
179 |
+
#: inc/php/page.php:137
|
180 |
+
msgid "I can't get verify my website. What am I doing wrong?"
|
181 |
+
msgstr ""
|
182 |
+
|
183 |
+
#: inc/php/page.php:138
|
184 |
+
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."
|
185 |
+
msgstr ""
|
186 |
+
|
187 |
+
#: inc/php/page.php:140
|
188 |
+
msgid "What about compatibility with plugin \"All in One SEO Pack\"?"
|
189 |
+
msgstr ""
|
190 |
+
|
191 |
+
#: inc/php/page.php:141
|
192 |
+
msgid "To make these plugins compatible you need to stick to 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, for example:"
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: inc/php/page.php:149
|
196 |
+
msgid "In the rest, the \"All Meta Tags\" and \"All in One SEO Pack\" is compatible."
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: inc/php/page.php:151
|
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:152
|
204 |
+
msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
|
205 |
+
msgstr "Absoluut niet. Deze plug-in kan volledig worden geconfigureerd via de pagina met plugin-instellingen."
|
206 |
+
|
207 |
+
#: inc/php/page.php:154
|
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:155
|
212 |
+
msgid "Absolutely not. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
#: inc/php/page.php:157
|
216 |
+
msgid "It's not working. What could be wrong?"
|
217 |
+
msgstr "Het werkt niet. Wat kan er fout zijn?"
|
218 |
+
|
219 |
+
#: inc/php/page.php:158
|
220 |
+
msgid "As with every plugin, it's possible that things don't work. 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."
|
221 |
+
msgstr "Zoals met elke plug-in, is het mogelijk dat dingen niet werken. De meest voorkomende reden hiervoor is de cache van een webbrowser. 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. Dit wordt de cache van de browser genoemd. Het wissen van de cache van uw browser kan het probleem oplossen."
|
222 |
+
|
223 |
+
#: inc/php/page.php:159
|
224 |
+
msgid "It's impossible to tell what could be wrong exactly, but 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."
|
225 |
+
msgstr "Het is onmogelijk om precies te vertellen wat er precies mis zou kunnen zijn, maar 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. Voeg zoveel mogelijk informatie toe, inclusief een link naar uw website waar het probleem kan worden gezien."
|
226 |
+
|
227 |
+
#: inc/php/page.php:161
|
228 |
+
msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
|
229 |
+
msgstr "De laatste Wordpress update zorgt ervoor dat ik mijn website niet kan bewerken als ik deze plugin gebruik. Waarom is dit?"
|
230 |
+
|
231 |
+
#: inc/php/page.php:162
|
232 |
+
msgid "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."
|
233 |
+
msgstr "Deze plug-in kan zo’n probleem niet veroorzaken. Waarschijnlijker is het probleem gerelateerd aan de instellingen van de website. 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. Probeer ook opnieuw in te loggen op de website, ook dit kan helpen."
|
234 |
+
|
235 |
+
#: inc/php/page.php:164
|
236 |
+
msgid "Where to report bug if found?"
|
237 |
+
msgstr "Waar kan een bug gerapporteerd worden indien gevonden?"
|
238 |
+
|
239 |
+
#: inc/php/page.php:166
|
240 |
+
#, php-format
|
241 |
+
msgid "Bug reports are very welcome! Please visit %s our contact page %s and report. Please do not forget to specify the name of the plugin. Thank you!"
|
242 |
+
msgstr "Bugrapporten zijn van harte welkom! Ga naar %s onze contactpagina %s en rapporteer. Vergeet alsjeblieft niet om de naam van de plug-in te specificeren. Dank je!"
|
243 |
+
|
244 |
+
#: inc/php/page.php:172
|
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:174
|
249 |
+
#, php-format
|
250 |
+
msgid "Any suggestions are very welcome! Please visit %s our contact page %s. Please do not forget to specify the name of the plugin. Thank you!"
|
251 |
+
msgstr "Alle suggesties zijn van harte welkom! Ga naar %s onze contactpagina %s. Vergeet alsjeblieft niet om de naam van de plug-in te specificeren. Dank je!"
|
252 |
+
|
253 |
+
#: inc/php/page.php:180
|
254 |
+
msgid "I love this plugin! Can I help somehow?"
|
255 |
+
msgstr "Ik ben dol op deze plug-in! Kan ik op de een of andere manier helpen?"
|
256 |
+
|
257 |
+
#: inc/php/page.php:182
|
258 |
+
#, php-format
|
259 |
+
msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
|
260 |
+
msgstr "Ja, alle bijdragen zijn van harte welkom! Ga naar %s onze donatiepagina %s. Dank je!"
|
261 |
+
|
262 |
+
#: inc/php/page.php:188
|
263 |
+
msgid "My question wasn't answered here."
|
264 |
+
msgstr "Mij vraag is hier niet beantwoord."
|
265 |
+
|
266 |
+
#: inc/php/page.php:190
|
267 |
+
#, php-format
|
268 |
+
msgid "You can ask your question on %s this page %s. 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."
|
269 |
+
msgstr "Je kunt je vraag op %s deze pagina %s stellen. Maar houd er rekening mee dat deze plug-in gratis is en er geen speciaal ondersteuningsteam is, dus we kunnen niet iedereen antwoorden."
|
270 |
+
|
271 |
+
#: inc/php/page.php:204
|
272 |
+
msgid "Support Us"
|
273 |
+
msgstr "Ondersteun ons"
|
274 |
+
|
275 |
+
#: inc/php/page.php:212 inc/php/settings.php:226 inc/php/sidebar.php:46
|
276 |
+
msgid "Donate with PayPal"
|
277 |
+
msgstr "Doneer via PayPal"
|
278 |
+
|
279 |
+
#: inc/php/page.php:217
|
280 |
+
#, php-format
|
281 |
+
msgid "Hello! 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."
|
282 |
+
msgstr ""
|
283 |
+
|
284 |
+
#: inc/php/page.php:225
|
285 |
+
msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
286 |
+
msgstr ""
|
287 |
+
|
288 |
+
#: inc/php/page.php:226
|
289 |
+
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. 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."
|
290 |
+
msgstr "Ik besteed veel tijd en moeite om ervoor te zorgen dat de thema’s, plug-ins en andere dingen die ik maak nuttig zijn, en het ultieme bewijs daarvan is dat je ze echt wilt gebruiken. Maar ik ben een onafhankelijke ontwikkelaar, zonder een vast inkomen, dus elke kleine bijdrage helpt mij mijn kosten te dekken en laat me meer tijd besteden aan het bouwen van dingen voor mensen zoals jij om van te genieten."
|
291 |
+
|
292 |
+
#: inc/php/page.php:227
|
293 |
+
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
294 |
+
msgstr "Als je mijn werk waardeert, kun je een koffie voor me kopen!"
|
295 |
+
|
296 |
+
#: inc/php/page.php:228
|
297 |
+
msgid "Thank you for your support!"
|
298 |
+
msgstr "Bedankt voor je ondersteuning!"
|
299 |
+
|
300 |
+
#: inc/php/settings.php:21 inc/php/settings.php:195
|
301 |
+
msgid "Save changes"
|
302 |
+
msgstr "Wijzigingen opslaan"
|
303 |
+
|
304 |
+
#: inc/php/settings.php:25
|
305 |
+
msgid "Web Master Tools"
|
306 |
+
msgstr ""
|
307 |
+
|
308 |
+
#: inc/php/settings.php:27
|
309 |
+
msgid "Webmaster Tools require you to verify your domain. This makes sure that you are the correct owner of your blog or store before they provide their services to you. You can use the options below to verify your domain. If your domain is already verified, you can just forget about these."
|
310 |
+
msgstr ""
|
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 ""
|
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 ""
|
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 ""
|
323 |
+
|
324 |
+
#: inc/php/settings.php:54
|
325 |
+
msgid "Domain Verification"
|
326 |
+
msgstr ""
|
327 |
+
|
328 |
+
#: inc/php/settings.php:56
|
329 |
+
msgid "Third-party services like Alexa, Pinterest and Google-Plus require you to verify your domain. This makes sure that you are the correct owner of your blog or store before they provide their services to you. You can use the options below to verify your domain. If your domain is already verified, you can just forget about these."
|
330 |
+
msgstr ""
|
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 ""
|
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/+ArthurGareginyan/"
|
338 |
+
msgstr ""
|
339 |
+
|
340 |
+
#: inc/php/settings.php:74
|
341 |
+
msgid "Enter an absolute URL to the Facebook profile of the publisher. <br>Example: https://www.facebook.com/arthur.gareginyan"
|
342 |
+
msgstr ""
|
343 |
+
|
344 |
+
#: inc/php/settings.php:80
|
345 |
+
msgid "Enter the Twitter username of the publisher. <br>Example: @AGareginyan"
|
346 |
+
msgstr ""
|
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 ""
|
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 ""
|
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 ""
|
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 ""
|
363 |
+
|
364 |
+
#: inc/php/settings.php:108
|
365 |
+
msgid "Custom Meta Tags"
|
366 |
+
msgstr ""
|
367 |
+
|
368 |
+
#: inc/php/settings.php:110
|
369 |
+
msgid "If you can't find a field to enter your required meta tag then you can add it here. In this field you can add multiple meta tags."
|
370 |
+
msgstr ""
|
371 |
+
|
372 |
+
#: inc/php/settings.php:118
|
373 |
+
msgid "Meta Tags for Static Home Page only"
|
374 |
+
msgstr ""
|
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 ""
|
379 |
+
|
380 |
+
#: inc/php/settings.php:124
|
381 |
+
msgid "Home Description"
|
382 |
+
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)"
|
390 |
+
msgstr ""
|
391 |
+
|
392 |
+
#: inc/php/settings.php:131
|
393 |
+
msgid "Enter a comma-delimited list of keywords for only Static Home Page of your website."
|
394 |
+
msgstr ""
|
395 |
+
|
396 |
+
#: inc/php/settings.php:139
|
397 |
+
msgid "Meta Tags for Default Home Page and Blog Page only"
|
398 |
+
msgstr ""
|
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 ""
|
403 |
+
|
404 |
+
#: inc/php/settings.php:145
|
405 |
+
msgid "Blog Description"
|
406 |
+
msgstr ""
|
407 |
+
|
408 |
+
#: inc/php/settings.php:150
|
409 |
+
msgid "Blog Keyword(s)"
|
410 |
+
msgstr ""
|
411 |
+
|
412 |
+
#: inc/php/settings.php:152
|
413 |
+
msgid "Enter a comma-delimited list of keywords for only Blog Page of your website."
|
414 |
+
msgstr ""
|
415 |
+
|
416 |
+
#: inc/php/settings.php:160
|
417 |
+
msgid "Meta Tags for all website (Global)"
|
418 |
+
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 ""
|
423 |
+
|
424 |
+
#: inc/php/settings.php:166
|
425 |
+
msgid "Author"
|
426 |
+
msgstr ""
|
427 |
+
|
428 |
+
#: inc/php/settings.php:171
|
429 |
+
msgid "Designer"
|
430 |
+
msgstr ""
|
431 |
+
|
432 |
+
#: inc/php/settings.php:176
|
433 |
+
msgid "Contact"
|
434 |
+
msgstr ""
|
435 |
+
|
436 |
+
#: inc/php/settings.php:181
|
437 |
+
msgid "Copyright"
|
438 |
+
msgstr ""
|
439 |
+
|
440 |
+
#: inc/php/settings.php:186
|
441 |
+
msgid "Keyword(s)"
|
442 |
+
msgstr ""
|
443 |
+
|
444 |
+
#: inc/php/settings.php:188
|
445 |
+
msgid "Enter a comma-delimited list of global keywords for your website."
|
446 |
+
msgstr ""
|
447 |
+
|
448 |
+
#: inc/php/settings.php:198
|
449 |
+
msgid "WooCommerce & Google Shopping"
|
450 |
+
msgstr ""
|
451 |
+
|
452 |
+
#: inc/php/settings.php:200
|
453 |
+
msgid "This plugin automatically adds the necessary Google Shopping (Merchant Center) structured data on all WooCommerce product pages on your website. Here is the markup for women's T-shirt that sells for 16 dollars and 80 cents of US."
|
454 |
+
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 "Ik ben een onafhankelijke ontwikkelaar, zonder een vast inkomen, dus elke kleine bijdrage helpt mij mijn kosten te dekken en laat me meer tijd spenderen aan het bouwen van dingen voor mensen zoals jij om van te genieten."
|
463 |
+
|
464 |
+
#: inc/php/settings.php:228 inc/php/sidebar.php:48
|
465 |
+
msgid "Thanks for your support!"
|
466 |
+
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 allows you to easily add Meta Tags to your website."
|
478 |
+
msgstr ""
|
479 |
+
|
480 |
+
#: inc/php/sidebar.php:32
|
481 |
+
msgid "Help"
|
482 |
+
msgstr "Help"
|
483 |
+
|
484 |
+
#: inc/php/sidebar.php:34
|
485 |
+
msgid "If you have a question, please read the information in the FAQ section."
|
486 |
+
msgstr "Als je een vraag hebt, lees dan de informatie in de FAQ-sectie."
|
487 |
+
|
488 |
+
#. Plugin Name of the plugin/theme
|
489 |
+
msgid "All Meta Tags"
|
490 |
+
msgstr "Mijn Persoonlijke Functies"
|
491 |
+
|
492 |
+
#. Plugin URI of the plugin/theme
|
493 |
+
msgid "https://github.com/ArthurGareginyan/all-meta-tags"
|
494 |
+
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 WordPress website's header."
|
498 |
+
msgstr ""
|
499 |
+
|
500 |
+
#. Author of the plugin/theme
|
501 |
+
msgid "Space X-Chimp"
|
502 |
+
msgstr "Space X-Chimp"
|
503 |
+
|
504 |
+
#. Author URI of the plugin/theme
|
505 |
+
msgid "https://www.spacexchimp.com"
|
506 |
+
msgstr "https://www.spacexchimp.com"
|
507 |
+
|
508 |
+
#~ msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
|
509 |
+
#~ msgstr "Hallo! Mijn naam is %s Arthur Gareginyan %s en ik ben de oprichter van %s Space X-Chimp %s."
|
510 |
+
|
511 |
+
#~ 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."
|
512 |
+
#~ 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."
|
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: 2018-07-
|
7 |
-
"PO-Revision-Date: 2018-07-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Russian\n"
|
10 |
"Language: ru_RU\n"
|
@@ -66,7 +66,7 @@ msgstr "Применение"
|
|
66 |
msgid "F.A.Q."
|
67 |
msgstr "F.A.Q."
|
68 |
|
69 |
-
#: inc/php/page.php:46 inc/php/settings.php:219 inc/php/sidebar.php:
|
70 |
msgid "Support"
|
71 |
msgstr "Поддержка"
|
72 |
|
@@ -269,28 +269,28 @@ msgid "You can ask your question on %s this page %s. But please keep in mind tha
|
|
269 |
msgstr "Вы можете задать ваш вопрос на %s этой странице %s. Но имейте в виду, что этот плагин является бесплатным и без специальной поддержки, поэтому у нас нет возможности ответить на все вопросы."
|
270 |
|
271 |
#: inc/php/page.php:204
|
272 |
-
msgid "Support
|
273 |
-
msgstr "Поддержать
|
274 |
|
275 |
-
#: inc/php/page.php:212 inc/php/settings.php:226 inc/php/sidebar.php:
|
276 |
msgid "Donate with PayPal"
|
277 |
msgstr "Пожертвовать через Pay Pal"
|
278 |
|
279 |
#: inc/php/page.php:217
|
280 |
#, php-format
|
281 |
-
msgid "Hello! My name is %s Arthur
|
282 |
-
msgstr "
|
283 |
|
284 |
#: inc/php/page.php:225
|
285 |
-
msgid "
|
286 |
-
msgstr "
|
287 |
|
288 |
#: inc/php/page.php:226
|
289 |
-
msgid "
|
290 |
msgstr "Я трачу много времени и сил, пытаясь убедиться в том, что темы, плагины и другие вещи, которые я создаю, полезны и окончательное доказательство этого для меня состоит в том, что вы на самом деле хотите их использовать. Но Я независимый разработчик, без регулярного дохода, поэтому каждый небольшой вклад помогает мне покрыть расходы и позволяет тратить больше времени на создание программ для людей как вы."
|
291 |
|
292 |
#: inc/php/page.php:227
|
293 |
-
msgid "If you appreciate
|
294 |
msgstr "Если вы цените мою работу, то вы можете купить мне кофе!"
|
295 |
|
296 |
#: inc/php/page.php:228
|
@@ -457,27 +457,31 @@ msgstr "Этот плагин автоматически добавляет не
|
|
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 "Проверить эти данные сгенерированные на страницах вашего вебсайта вы можете <a href=\"https://search.google.com/structured-data/testing-tool\" target=\"_blank\">здесь</a>."
|
459 |
|
460 |
-
#: inc/php/settings.php:221 inc/php/sidebar.php:
|
461 |
-
msgid "
|
462 |
msgstr "Я независимый разработчик, без регулярного дохода, так что каждый маленький вклад помогает мне покрыть затраты и позволяет тратить больше времени на создание программ для людей как вы."
|
463 |
|
464 |
-
#: inc/php/settings.php:228 inc/php/sidebar.php:
|
465 |
msgid "Thanks for your support!"
|
466 |
msgstr "Спасибо за вашу поддержку!"
|
467 |
|
468 |
#: inc/php/sidebar.php:16
|
|
|
|
|
|
|
|
|
469 |
msgid "About"
|
470 |
msgstr "О плагине"
|
471 |
|
472 |
-
#: inc/php/sidebar.php:
|
473 |
msgid "This plugin allows you to easily add Meta Tags to your website."
|
474 |
msgstr "Этот плагин позволяет легко добавлять Мета-Теги на ваш веб-сайт."
|
475 |
|
476 |
-
#: inc/php/sidebar.php:
|
477 |
msgid "Help"
|
478 |
msgstr "Помощь"
|
479 |
|
480 |
-
#: inc/php/sidebar.php:
|
481 |
msgid "If you have a question, please read the information in the FAQ section."
|
482 |
msgstr "Если у вас есть вопрос, пожалуйста ознакомьтесь с информацией в разделе FAQ."
|
483 |
|
@@ -500,3 +504,9 @@ msgstr "Space X-Chimp"
|
|
500 |
#. Author URI of the plugin/theme
|
501 |
msgid "https://www.spacexchimp.com"
|
502 |
msgstr "https://www.spacexchimp.com"
|
|
|
|
|
|
|
|
|
|
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: All Meta Tags\n"
|
6 |
+
"POT-Creation-Date: 2018-07-24 00:32+0300\n"
|
7 |
+
"PO-Revision-Date: 2018-07-24 00:32+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Russian\n"
|
10 |
"Language: ru_RU\n"
|
66 |
msgid "F.A.Q."
|
67 |
msgstr "F.A.Q."
|
68 |
|
69 |
+
#: inc/php/page.php:46 inc/php/settings.php:219 inc/php/sidebar.php:39
|
70 |
msgid "Support"
|
71 |
msgstr "Поддержка"
|
72 |
|
269 |
msgstr "Вы можете задать ваш вопрос на %s этой странице %s. Но имейте в виду, что этот плагин является бесплатным и без специальной поддержки, поэтому у нас нет возможности ответить на все вопросы."
|
270 |
|
271 |
#: inc/php/page.php:204
|
272 |
+
msgid "Support Us"
|
273 |
+
msgstr "Поддержать нас"
|
274 |
|
275 |
+
#: inc/php/page.php:212 inc/php/settings.php:226 inc/php/sidebar.php:46
|
276 |
msgid "Donate with PayPal"
|
277 |
msgstr "Пожертвовать через Pay Pal"
|
278 |
|
279 |
#: inc/php/page.php:217
|
280 |
#, php-format
|
281 |
+
msgid "Hello! 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."
|
282 |
+
msgstr ""
|
283 |
|
284 |
#: inc/php/page.php:225
|
285 |
+
msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
286 |
+
msgstr ""
|
287 |
|
288 |
#: inc/php/page.php:226
|
289 |
+
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. 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."
|
290 |
msgstr "Я трачу много времени и сил, пытаясь убедиться в том, что темы, плагины и другие вещи, которые я создаю, полезны и окончательное доказательство этого для меня состоит в том, что вы на самом деле хотите их использовать. Но Я независимый разработчик, без регулярного дохода, поэтому каждый небольшой вклад помогает мне покрыть расходы и позволяет тратить больше времени на создание программ для людей как вы."
|
291 |
|
292 |
#: inc/php/page.php:227
|
293 |
+
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
294 |
msgstr "Если вы цените мою работу, то вы можете купить мне кофе!"
|
295 |
|
296 |
#: inc/php/page.php:228
|
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 "Проверить эти данные сгенерированные на страницах вашего вебсайта вы можете <a href=\"https://search.google.com/structured-data/testing-tool\" target=\"_blank\">здесь</a>."
|
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!"
|
466 |
msgstr "Спасибо за вашу поддержку!"
|
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 "О плагине"
|
475 |
|
476 |
+
#: inc/php/sidebar.php:27
|
477 |
msgid "This plugin allows you to easily add Meta Tags to your website."
|
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."
|
486 |
msgstr "Если у вас есть вопрос, пожалуйста ознакомьтесь с информацией в разделе FAQ."
|
487 |
|
504 |
#. Author URI of the plugin/theme
|
505 |
msgid "https://www.spacexchimp.com"
|
506 |
msgstr "https://www.spacexchimp.com"
|
507 |
+
|
508 |
+
#~ msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
|
509 |
+
#~ msgstr "Привет! Меня зовут %s Артур Гарегинян %s и Я основатель %s Space X-Chimp %s."
|
510 |
+
|
511 |
+
#~ 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."
|
512 |
+
#~ msgstr "Я намерен создать проекты, которые сделают этот мир лучшим местом. Я очень увлечен своей работой, мне нравится то, что Я делаю и надеюсь, что вы тоже станете лучше благодаря моим проектам."
|
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: 2018-07-
|
7 |
"PO-Revision-Date: 2015-10-28 13:57+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
@@ -64,7 +64,7 @@ msgstr ""
|
|
64 |
msgid "F.A.Q."
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: inc/php/page.php:46 inc/php/settings.php:219 inc/php/sidebar.php:
|
68 |
msgid "Support"
|
69 |
msgstr ""
|
70 |
|
@@ -267,28 +267,28 @@ msgid "You can ask your question on %s this page %s. But please keep in mind tha
|
|
267 |
msgstr ""
|
268 |
|
269 |
#: inc/php/page.php:204
|
270 |
-
msgid "Support
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: inc/php/page.php:212 inc/php/settings.php:226 inc/php/sidebar.php:
|
274 |
msgid "Donate with PayPal"
|
275 |
msgstr ""
|
276 |
|
277 |
#: inc/php/page.php:217
|
278 |
#, php-format
|
279 |
-
msgid "Hello! My name is %s Arthur
|
280 |
msgstr ""
|
281 |
|
282 |
#: inc/php/page.php:225
|
283 |
-
msgid "
|
284 |
msgstr ""
|
285 |
|
286 |
#: inc/php/page.php:226
|
287 |
-
msgid "
|
288 |
msgstr ""
|
289 |
|
290 |
#: inc/php/page.php:227
|
291 |
-
msgid "If you appreciate
|
292 |
msgstr ""
|
293 |
|
294 |
#: inc/php/page.php:228
|
@@ -455,27 +455,31 @@ msgstr ""
|
|
455 |
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>."
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: inc/php/settings.php:221 inc/php/sidebar.php:
|
459 |
-
msgid "
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: inc/php/settings.php:228 inc/php/sidebar.php:
|
463 |
msgid "Thanks for your support!"
|
464 |
msgstr ""
|
465 |
|
466 |
#: inc/php/sidebar.php:16
|
|
|
|
|
|
|
|
|
467 |
msgid "About"
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: inc/php/sidebar.php:
|
471 |
msgid "This plugin allows you to easily add Meta Tags to your website."
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: inc/php/sidebar.php:
|
475 |
msgid "Help"
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: inc/php/sidebar.php:
|
479 |
msgid "If you have a question, please read the information in the FAQ section."
|
480 |
msgstr ""
|
481 |
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: All Meta Tags\n"
|
6 |
+
"POT-Creation-Date: 2018-07-24 00:32+0300\n"
|
7 |
"PO-Revision-Date: 2015-10-28 13:57+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
64 |
msgid "F.A.Q."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: inc/php/page.php:46 inc/php/settings.php:219 inc/php/sidebar.php:39
|
68 |
msgid "Support"
|
69 |
msgstr ""
|
70 |
|
267 |
msgstr ""
|
268 |
|
269 |
#: inc/php/page.php:204
|
270 |
+
msgid "Support Us"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: inc/php/page.php:212 inc/php/settings.php:226 inc/php/sidebar.php:46
|
274 |
msgid "Donate with PayPal"
|
275 |
msgstr ""
|
276 |
|
277 |
#: inc/php/page.php:217
|
278 |
#, php-format
|
279 |
+
msgid "Hello! 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."
|
280 |
msgstr ""
|
281 |
|
282 |
#: inc/php/page.php:225
|
283 |
+
msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
284 |
msgstr ""
|
285 |
|
286 |
#: inc/php/page.php:226
|
287 |
+
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. 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."
|
288 |
msgstr ""
|
289 |
|
290 |
#: inc/php/page.php:227
|
291 |
+
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
292 |
msgstr ""
|
293 |
|
294 |
#: inc/php/page.php:228
|
455 |
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>."
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: inc/php/settings.php:221 inc/php/sidebar.php:41
|
459 |
+
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."
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: inc/php/settings.php:228 inc/php/sidebar.php:48
|
463 |
msgid "Thanks for your support!"
|
464 |
msgstr ""
|
465 |
|
466 |
#: inc/php/sidebar.php:16
|
467 |
+
msgid "We are «Space X-Chimp»"
|
468 |
+
msgstr ""
|
469 |
+
|
470 |
+
#: inc/php/sidebar.php:25
|
471 |
msgid "About"
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: inc/php/sidebar.php:27
|
475 |
msgid "This plugin allows you to easily add Meta Tags to your website."
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: inc/php/sidebar.php:32
|
479 |
msgid "Help"
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: inc/php/sidebar.php:34
|
483 |
msgid "If you have a question, please read the information in the FAQ section."
|
484 |
msgstr ""
|
485 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: meta, tag, tags, custom, simple, plugin, twitter, facebook, google, google
|
|
4 |
Donate link: https://www.spacexchimp.com/donate.html
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 4.9
|
7 |
-
Stable tag: 4.
|
8 |
License: GPL3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -73,6 +73,7 @@ This plugin is ready for translation and has already been translated into severa
|
|
73 |
* Spanish - Mexico (translation by Sergio Yeyo Troncoso)
|
74 |
* Spanish (translation by Ramiro Garcés and Patricio Toledo)
|
75 |
* Italian (translation by Stefano Tombolini)
|
|
|
76 |
|
77 |
If you want to help translate this plugin then please visit the [translation page](https://translate.wordpress.org/projects/wp-plugins/all-meta-tags).
|
78 |
|
@@ -207,6 +208,13 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
207 |
|
208 |
== Changelog ==
|
209 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
210 |
= 4.21 =
|
211 |
* The code block that enqueue the CodeMirror library files is moved to a separate function '_load_scripts_codemirror' within the 'enqueue.php' file.
|
212 |
* Enqueue of the CodeMirror addons is moved to the beginning of the queue, before enqueuing the CodeMirror mods.
|
4 |
Donate link: https://www.spacexchimp.com/donate.html
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 4.9
|
7 |
+
Stable tag: 4.22
|
8 |
License: GPL3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
73 |
* Spanish - Mexico (translation by Sergio Yeyo Troncoso)
|
74 |
* Spanish (translation by Ramiro Garcés and Patricio Toledo)
|
75 |
* Italian (translation by Stefano Tombolini)
|
76 |
+
* Dutch (translation by Peter Leenders)
|
77 |
|
78 |
If you want to help translate this plugin then please visit the [translation page](https://translate.wordpress.org/projects/wp-plugins/all-meta-tags).
|
79 |
|
208 |
|
209 |
== Changelog ==
|
210 |
|
211 |
+
= 4.22 =
|
212 |
+
* Dutch translation added. (Thanks to Peter Leenders)
|
213 |
+
* The function '_load_scripts_codemirror' is improved. Removed an unnecessary call of constants.
|
214 |
+
* The banner of Space X-Chimp, located on the settings page of the plugin, is updated. The image 'banner.png' is deleted.
|
215 |
+
* Some texts are updated.
|
216 |
+
* All translation files are updated.
|
217 |
+
|
218 |
= 4.21 =
|
219 |
* The code block that enqueue the CodeMirror library files is moved to a separate function '_load_scripts_codemirror' within the 'enqueue.php' file.
|
220 |
* Enqueue of the CodeMirror addons is moved to the beginning of the queue, before enqueuing the CodeMirror mods.
|