Version Description
- Dutch translation added. (Thanks to Peter Leenders)
- The function '_load_scripts_codemirror' is improved. Removed an unnecessary call of constants.
- The function '_load_scripts_admin' is improved.
- 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 | Head and Footer Scripts Inserter |
Version | 4.26 |
Comparing to | |
See all releases |
Code changes from version 4.25 to 4.26
- header-and-footer-scripts-inserter.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/header-and-footer-scripts-inserter-de_DE.mo +0 -0
- languages/header-and-footer-scripts-inserter-de_DE.po +30 -20
- languages/header-and-footer-scripts-inserter-es_ES.mo +0 -0
- languages/header-and-footer-scripts-inserter-es_ES.po +28 -18
- languages/header-and-footer-scripts-inserter-nl_NL.mo +0 -0
- languages/header-and-footer-scripts-inserter-nl_NL.po +386 -0
- languages/header-and-footer-scripts-inserter-pl_PL.mo +0 -0
- languages/header-and-footer-scripts-inserter-pl_PL.po +19 -15
- languages/header-and-footer-scripts-inserter-ru_RU.mo +0 -0
- languages/header-and-footer-scripts-inserter-ru_RU.po +28 -18
- languages/header-and-footer-scripts-inserter.pot +18 -14
- readme.txt +10 -1
header-and-footer-scripts-inserter.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: Easily add your scripts to the WordPress website's head and footer sections. 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: header-and-footer-scripts-inserter
|
11 |
* Domain Path: /languages/
|
5 |
* Description: Easily add your scripts to the WordPress website's head and footer sections. 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.26
|
9 |
* License: GPL3
|
10 |
* Text Domain: header-and-footer-scripts-inserter
|
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_p006_load_scripts_codemirror() {
|
12 |
-
|
13 |
-
// Put value of constants to variables for easier access
|
14 |
-
$prefix = SPACEXCHIMP_P006_PREFIX;
|
15 |
-
$url = SPACEXCHIMP_P006_URL;
|
16 |
-
$version = SPACEXCHIMP_P006_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' );
|
@@ -72,14 +67,14 @@ function spacexchimp_p006_load_scripts_admin( $hook ) {
|
|
72 |
// Font Awesome library
|
73 |
wp_enqueue_style( $prefix . '-font-awesome-css', $url . 'inc/lib/font-awesome/css/font-awesome.css', array(), $version, 'screen' );
|
74 |
|
75 |
-
// Call the function that enqueue the CodeMirror library
|
76 |
-
spacexchimp_p006_load_scripts_codemirror();
|
77 |
-
|
78 |
// Style sheet
|
79 |
wp_enqueue_style( $prefix . '-admin-css', $url . 'inc/css/admin.css', array(), $version, 'all' );
|
80 |
|
81 |
// JavaScript
|
82 |
wp_enqueue_script( $prefix . '-admin-js', $url . 'inc/js/admin.js', array(), $version, true );
|
83 |
|
|
|
|
|
|
|
84 |
}
|
85 |
add_action( 'admin_enqueue_scripts', 'spacexchimp_p006_load_scripts_admin' );
|
8 |
/**
|
9 |
* Callback to enqueue the CodeMirror library
|
10 |
*/
|
11 |
+
function spacexchimp_p006_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' );
|
67 |
// Font Awesome library
|
68 |
wp_enqueue_style( $prefix . '-font-awesome-css', $url . 'inc/lib/font-awesome/css/font-awesome.css', array(), $version, 'screen' );
|
69 |
|
|
|
|
|
|
|
70 |
// Style sheet
|
71 |
wp_enqueue_style( $prefix . '-admin-css', $url . 'inc/css/admin.css', array(), $version, 'all' );
|
72 |
|
73 |
// JavaScript
|
74 |
wp_enqueue_script( $prefix . '-admin-js', $url . 'inc/js/admin.js', array(), $version, true );
|
75 |
|
76 |
+
// Call the function that enqueue the CodeMirror library
|
77 |
+
spacexchimp_p006_load_scripts_codemirror( $prefix, $url, $version );
|
78 |
+
|
79 |
}
|
80 |
add_action( 'admin_enqueue_scripts', 'spacexchimp_p006_load_scripts_admin' );
|
inc/php/page.php
CHANGED
@@ -217,7 +217,7 @@ add_action( 'wp_head', 'my_custom_script' );</code></pre>
|
|
217 |
<!-- TAB 4 -->
|
218 |
<div class="tab-page fade" id="tab-support">
|
219 |
<div class="postbox">
|
220 |
-
<h3 class="title"><?php _e( 'Support
|
221 |
<div class="inside">
|
222 |
<span class="image-with-button pull-left">
|
223 |
<img src="<?php echo SPACEXCHIMP_P006_URL . 'inc/img/thanks.png'; ?>" alt="Thanks!">
|
@@ -230,17 +230,17 @@ add_action( 'wp_head', 'my_custom_script' );</code></pre>
|
|
230 |
</span>
|
231 |
<p><?php
|
232 |
printf(
|
233 |
-
__( 'Hello! My name is %s Arthur
|
234 |
-
'<a href="https://www.
|
235 |
'</a>',
|
236 |
'<a href="https://www.spacexchimp.com" target="_blank">',
|
237 |
'</a>'
|
238 |
);
|
239 |
?>
|
240 |
</p>
|
241 |
-
<p><?php _e( '
|
242 |
-
<p><?php _e( '
|
243 |
-
<p><?php _e( 'If you appreciate
|
244 |
<p><?php _e( 'Thank you for your support!', $text ); ?></p>
|
245 |
</div>
|
246 |
</div>
|
217 |
<!-- TAB 4 -->
|
218 |
<div class="tab-page fade" id="tab-support">
|
219 |
<div class="postbox">
|
220 |
+
<h3 class="title"><?php _e( 'Support Us', $text ); ?></h3>
|
221 |
<div class="inside">
|
222 |
<span class="image-with-button pull-left">
|
223 |
<img src="<?php echo SPACEXCHIMP_P006_URL . 'inc/img/thanks.png'; ?>" alt="Thanks!">
|
230 |
</span>
|
231 |
<p><?php
|
232 |
printf(
|
233 |
+
__( '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 ),
|
234 |
+
'<a href="https://www.instagram.com/arthur_gareginyan/" target="_blank">',
|
235 |
'</a>',
|
236 |
'<a href="https://www.spacexchimp.com" target="_blank">',
|
237 |
'</a>'
|
238 |
);
|
239 |
?>
|
240 |
</p>
|
241 |
+
<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>
|
242 |
+
<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>
|
243 |
+
<p><?php _e( 'If you appreciate our work, you can buy us a cup of coffee!', $text ); ?></p>
|
244 |
<p><?php _e( 'Thank you for your support!', $text ); ?></p>
|
245 |
</div>
|
246 |
</div>
|
inc/php/settings.php
CHANGED
@@ -76,7 +76,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
76 |
<div class="postbox" id="support-addition">
|
77 |
<h3 class="title"><?php _e( 'Support', $text ); ?></h3>
|
78 |
<div class="inside">
|
79 |
-
<p><?php _e( '
|
80 |
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="btn btn-default button-labeled">
|
81 |
<span class="btn-label">
|
82 |
<img src="<?php echo SPACEXCHIMP_P006_URL . 'inc/img/paypal.svg'; ?>" alt="PayPal">
|
76 |
<div class="postbox" id="support-addition">
|
77 |
<h3 class="title"><?php _e( 'Support', $text ); ?></h3>
|
78 |
<div class="inside">
|
79 |
+
<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>
|
80 |
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="btn btn-default button-labeled">
|
81 |
<span class="btn-label">
|
82 |
<img src="<?php echo SPACEXCHIMP_P006_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_P006_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_P006_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_P006_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_P006_URL . 'inc/img/paypal.svg'; ?>" alt="PayPal">
|
49 |
</div>
|
50 |
</div>
|
51 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
</div>
|
53 |
</div>
|
54 |
<?php
|
languages/header-and-footer-scripts-inserter-de_DE.mo
CHANGED
Binary file
|
languages/header-and-footer-scripts-inserter-de_DE.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Head and Footer Scripts Inserter\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"
|
@@ -74,7 +74,7 @@ msgstr "Verwendung"
|
|
74 |
msgid "F.A.Q."
|
75 |
msgstr "F.A.Q."
|
76 |
|
77 |
-
#: inc/php/page.php:47 inc/php/settings.php:77 inc/php/sidebar.php:
|
78 |
msgid "Support"
|
79 |
msgstr "Support"
|
80 |
|
@@ -262,28 +262,28 @@ msgid "You can ask your question on %s this page %s. But please keep in mind tha
|
|
262 |
msgstr ""
|
263 |
|
264 |
#: inc/php/page.php:220
|
265 |
-
msgid "Support
|
266 |
-
msgstr "
|
267 |
|
268 |
-
#: inc/php/page.php:228 inc/php/settings.php:84 inc/php/sidebar.php:
|
269 |
msgid "Donate with PayPal"
|
270 |
msgstr "Spende mit PayPal"
|
271 |
|
272 |
#: inc/php/page.php:233
|
273 |
#, php-format
|
274 |
-
msgid "Hello! My name is %s Arthur
|
275 |
-
msgstr "
|
276 |
|
277 |
#: inc/php/page.php:241
|
278 |
-
msgid "
|
279 |
-
msgstr "
|
280 |
|
281 |
#: inc/php/page.php:242
|
282 |
-
msgid "
|
283 |
-
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
|
284 |
|
285 |
#: inc/php/page.php:243
|
286 |
-
msgid "If you appreciate
|
287 |
msgstr "Wenn Ihnen meine Arbeit gefällt, können Sie mir gerne einen Kaffee kaufen!"
|
288 |
|
289 |
#: inc/php/page.php:244
|
@@ -331,27 +331,31 @@ msgstr ""
|
|
331 |
msgid "Scripts from this field will be printed after all footers scripts. Do not place plain text in this!"
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: inc/php/settings.php:79 inc/php/sidebar.php:
|
335 |
-
msgid "
|
336 |
-
msgstr "
|
337 |
|
338 |
-
#: inc/php/settings.php:86 inc/php/sidebar.php:
|
339 |
msgid "Thanks for your support!"
|
340 |
msgstr "Danke für Ihre Unterstützung!"
|
341 |
|
342 |
#: inc/php/sidebar.php:16
|
|
|
|
|
|
|
|
|
343 |
msgid "About"
|
344 |
msgstr "Über"
|
345 |
|
346 |
-
#: inc/php/sidebar.php:
|
347 |
msgid "This plugin allows you to easily insert your custom scripts in your website."
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: inc/php/sidebar.php:
|
351 |
msgid "Help"
|
352 |
msgstr "Hilfe"
|
353 |
|
354 |
-
#: inc/php/sidebar.php:
|
355 |
msgid "If you have a question, please read the information in the FAQ section."
|
356 |
msgstr "Wenn Sie Fragen haben, lesen Sie bitte auch die Fragen im FAQ Bereich."
|
357 |
|
@@ -374,3 +378,9 @@ msgstr "Space X-Chimp"
|
|
374 |
#. Author URI of the plugin/theme
|
375 |
msgid "https://www.spacexchimp.com"
|
376 |
msgstr "https://www.spacexchimp.com"
|
|
|
|
|
|
|
|
|
|
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Head and Footer Scripts Inserter\n"
|
6 |
+
"POT-Creation-Date: 2018-07-24 00:33+0300\n"
|
7 |
+
"PO-Revision-Date: 2018-07-24 00:33+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: German\n"
|
10 |
"Language: de_DE\n"
|
74 |
msgid "F.A.Q."
|
75 |
msgstr "F.A.Q."
|
76 |
|
77 |
+
#: inc/php/page.php:47 inc/php/settings.php:77 inc/php/sidebar.php:39
|
78 |
msgid "Support"
|
79 |
msgstr "Support"
|
80 |
|
262 |
msgstr ""
|
263 |
|
264 |
#: inc/php/page.php:220
|
265 |
+
msgid "Support Us"
|
266 |
+
msgstr "Unterstütze uns"
|
267 |
|
268 |
+
#: inc/php/page.php:228 inc/php/settings.php:84 inc/php/sidebar.php:46
|
269 |
msgid "Donate with PayPal"
|
270 |
msgstr "Spende mit PayPal"
|
271 |
|
272 |
#: inc/php/page.php:233
|
273 |
#, php-format
|
274 |
+
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."
|
275 |
+
msgstr ""
|
276 |
|
277 |
#: inc/php/page.php:241
|
278 |
+
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."
|
279 |
+
msgstr ""
|
280 |
|
281 |
#: inc/php/page.php:242
|
282 |
+
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."
|
283 |
+
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."
|
284 |
|
285 |
#: inc/php/page.php:243
|
286 |
+
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
287 |
msgstr "Wenn Ihnen meine Arbeit gefällt, können Sie mir gerne einen Kaffee kaufen!"
|
288 |
|
289 |
#: inc/php/page.php:244
|
331 |
msgid "Scripts from this field will be printed after all footers scripts. Do not place plain text in this!"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: inc/php/settings.php:79 inc/php/sidebar.php:41
|
335 |
+
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."
|
336 |
+
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."
|
337 |
|
338 |
+
#: inc/php/settings.php:86 inc/php/sidebar.php:48
|
339 |
msgid "Thanks for your support!"
|
340 |
msgstr "Danke für Ihre Unterstützung!"
|
341 |
|
342 |
#: inc/php/sidebar.php:16
|
343 |
+
msgid "We are «Space X-Chimp»"
|
344 |
+
msgstr ""
|
345 |
+
|
346 |
+
#: inc/php/sidebar.php:25
|
347 |
msgid "About"
|
348 |
msgstr "Über"
|
349 |
|
350 |
+
#: inc/php/sidebar.php:27
|
351 |
msgid "This plugin allows you to easily insert your custom scripts in your website."
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: inc/php/sidebar.php:32
|
355 |
msgid "Help"
|
356 |
msgstr "Hilfe"
|
357 |
|
358 |
+
#: inc/php/sidebar.php:34
|
359 |
msgid "If you have a question, please read the information in the FAQ section."
|
360 |
msgstr "Wenn Sie Fragen haben, lesen Sie bitte auch die Fragen im FAQ Bereich."
|
361 |
|
378 |
#. Author URI of the plugin/theme
|
379 |
msgid "https://www.spacexchimp.com"
|
380 |
msgstr "https://www.spacexchimp.com"
|
381 |
+
|
382 |
+
#~ msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
|
383 |
+
#~ msgstr "Hallo! Meine name ist %s Arthur Gareginyan %s und ich bin der Gründer von %s Space X-Chimp %s."
|
384 |
+
|
385 |
+
#~ 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."
|
386 |
+
#~ 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/header-and-footer-scripts-inserter-es_ES.mo
CHANGED
Binary file
|
languages/header-and-footer-scripts-inserter-es_ES.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Head and Footer Scripts Inserter\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"
|
@@ -74,7 +74,7 @@ msgstr "Uso"
|
|
74 |
msgid "F.A.Q."
|
75 |
msgstr "Preguntas ?"
|
76 |
|
77 |
-
#: inc/php/page.php:47 inc/php/settings.php:77 inc/php/sidebar.php:
|
78 |
msgid "Support"
|
79 |
msgstr "Soporte"
|
80 |
|
@@ -262,28 +262,28 @@ msgid "You can ask your question on %s this page %s. But please keep in mind tha
|
|
262 |
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."
|
263 |
|
264 |
#: inc/php/page.php:220
|
265 |
-
msgid "Support
|
266 |
-
msgstr "
|
267 |
|
268 |
-
#: inc/php/page.php:228 inc/php/settings.php:84 inc/php/sidebar.php:
|
269 |
msgid "Donate with PayPal"
|
270 |
msgstr "Donar con PayPal"
|
271 |
|
272 |
#: inc/php/page.php:233
|
273 |
#, php-format
|
274 |
-
msgid "Hello! My name is %s Arthur
|
275 |
-
msgstr "
|
276 |
|
277 |
#: inc/php/page.php:241
|
278 |
-
msgid "
|
279 |
-
msgstr "
|
280 |
|
281 |
#: inc/php/page.php:242
|
282 |
-
msgid "
|
283 |
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."
|
284 |
|
285 |
#: inc/php/page.php:243
|
286 |
-
msgid "If you appreciate
|
287 |
msgstr "Si aprecias mi trabajo, puedes comprarme un café!"
|
288 |
|
289 |
#: inc/php/page.php:244
|
@@ -331,27 +331,31 @@ msgstr ""
|
|
331 |
msgid "Scripts from this field will be printed after all footers scripts. Do not place plain text in this!"
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: inc/php/settings.php:79 inc/php/sidebar.php:
|
335 |
-
msgid "
|
336 |
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."
|
337 |
|
338 |
-
#: inc/php/settings.php:86 inc/php/sidebar.php:
|
339 |
msgid "Thanks for your support!"
|
340 |
msgstr "¡Gracias por tu apoyo!"
|
341 |
|
342 |
#: inc/php/sidebar.php:16
|
|
|
|
|
|
|
|
|
343 |
msgid "About"
|
344 |
msgstr "Acerca de"
|
345 |
|
346 |
-
#: inc/php/sidebar.php:
|
347 |
msgid "This plugin allows you to easily insert your custom scripts in your website."
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: inc/php/sidebar.php:
|
351 |
msgid "Help"
|
352 |
msgstr "Ayuda"
|
353 |
|
354 |
-
#: inc/php/sidebar.php:
|
355 |
msgid "If you have a question, please read the information in the FAQ section."
|
356 |
msgstr "Si tiene alguna pregunta, lee la información en la sección de preguntas frecuentes."
|
357 |
|
@@ -374,3 +378,9 @@ msgstr "Space X-Chimp"
|
|
374 |
#. Author URI of the plugin/theme
|
375 |
msgid "https://www.spacexchimp.com"
|
376 |
msgstr "https://www.spacexchimp.com"
|
|
|
|
|
|
|
|
|
|
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Head and Footer Scripts Inserter\n"
|
6 |
+
"POT-Creation-Date: 2018-07-24 00:33+0300\n"
|
7 |
+
"PO-Revision-Date: 2018-07-24 00:33+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Spanish\n"
|
10 |
"Language: es_ES\n"
|
74 |
msgid "F.A.Q."
|
75 |
msgstr "Preguntas ?"
|
76 |
|
77 |
+
#: inc/php/page.php:47 inc/php/settings.php:77 inc/php/sidebar.php:39
|
78 |
msgid "Support"
|
79 |
msgstr "Soporte"
|
80 |
|
262 |
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."
|
263 |
|
264 |
#: inc/php/page.php:220
|
265 |
+
msgid "Support Us"
|
266 |
+
msgstr "¡Apoyanos!"
|
267 |
|
268 |
+
#: inc/php/page.php:228 inc/php/settings.php:84 inc/php/sidebar.php:46
|
269 |
msgid "Donate with PayPal"
|
270 |
msgstr "Donar con PayPal"
|
271 |
|
272 |
#: inc/php/page.php:233
|
273 |
#, php-format
|
274 |
+
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."
|
275 |
+
msgstr ""
|
276 |
|
277 |
#: inc/php/page.php:241
|
278 |
+
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."
|
279 |
+
msgstr ""
|
280 |
|
281 |
#: inc/php/page.php:242
|
282 |
+
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."
|
283 |
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."
|
284 |
|
285 |
#: inc/php/page.php:243
|
286 |
+
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
287 |
msgstr "Si aprecias mi trabajo, puedes comprarme un café!"
|
288 |
|
289 |
#: inc/php/page.php:244
|
331 |
msgid "Scripts from this field will be printed after all footers scripts. Do not place plain text in this!"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: inc/php/settings.php:79 inc/php/sidebar.php:41
|
335 |
+
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."
|
336 |
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."
|
337 |
|
338 |
+
#: inc/php/settings.php:86 inc/php/sidebar.php:48
|
339 |
msgid "Thanks for your support!"
|
340 |
msgstr "¡Gracias por tu apoyo!"
|
341 |
|
342 |
#: inc/php/sidebar.php:16
|
343 |
+
msgid "We are «Space X-Chimp»"
|
344 |
+
msgstr ""
|
345 |
+
|
346 |
+
#: inc/php/sidebar.php:25
|
347 |
msgid "About"
|
348 |
msgstr "Acerca de"
|
349 |
|
350 |
+
#: inc/php/sidebar.php:27
|
351 |
msgid "This plugin allows you to easily insert your custom scripts in your website."
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: inc/php/sidebar.php:32
|
355 |
msgid "Help"
|
356 |
msgstr "Ayuda"
|
357 |
|
358 |
+
#: inc/php/sidebar.php:34
|
359 |
msgid "If you have a question, please read the information in the FAQ section."
|
360 |
msgstr "Si tiene alguna pregunta, lee la información en la sección de preguntas frecuentes."
|
361 |
|
378 |
#. Author URI of the plugin/theme
|
379 |
msgid "https://www.spacexchimp.com"
|
380 |
msgstr "https://www.spacexchimp.com"
|
381 |
+
|
382 |
+
#~ msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
|
383 |
+
#~ msgstr "¡Hola! Mi nombre es %s Arthur Gareginyan %s y soy el fundador de %s Space X-Chimp %s."
|
384 |
+
|
385 |
+
#~ 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."
|
386 |
+
#~ 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/header-and-footer-scripts-inserter-nl_NL.mo
ADDED
Binary file
|
languages/header-and-footer-scripts-inserter-nl_NL.po
ADDED
@@ -0,0 +1,386 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of plugin - Head and Footer Scripts Inserter - in Dutch (Netherlands)
|
2 |
+
# This file is distributed under the same license as the plugin - Head and Footer Scripts Inserter.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"Project-Id-Version: Head and Footer Scripts Inserter\n"
|
6 |
+
"POT-Creation-Date: 2018-07-24 00:33+0300\n"
|
7 |
+
"PO-Revision-Date: 2018-07-24 00:33+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: header-and-footer-scripts-inserter.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
|
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 "Scripts 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/messages.php:91
|
53 |
+
msgid "Scripts updated successfully."
|
54 |
+
msgstr ""
|
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:44
|
66 |
+
msgid "Main"
|
67 |
+
msgstr "Hoofd"
|
68 |
+
|
69 |
+
#: inc/php/page.php:45
|
70 |
+
msgid "Usage"
|
71 |
+
msgstr "Gebruik"
|
72 |
+
|
73 |
+
#: inc/php/page.php:46
|
74 |
+
msgid "F.A.Q."
|
75 |
+
msgstr "F.A.Q."
|
76 |
+
|
77 |
+
#: inc/php/page.php:47 inc/php/settings.php:77 inc/php/sidebar.php:39
|
78 |
+
msgid "Support"
|
79 |
+
msgstr "Ondersteuning"
|
80 |
+
|
81 |
+
#: inc/php/page.php:48
|
82 |
+
msgid "Store"
|
83 |
+
msgstr "Winkel"
|
84 |
+
|
85 |
+
#: inc/php/page.php:64
|
86 |
+
msgid "Usage Instructions"
|
87 |
+
msgstr "Gebruiksinstructies"
|
88 |
+
|
89 |
+
#: inc/php/page.php:66
|
90 |
+
msgid "To add the script to your website, simply follow these steps:"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: inc/php/page.php:68
|
94 |
+
msgid "Go to the \"Main\" tab."
|
95 |
+
msgstr "Ga naar het tabblad “Hoofd”."
|
96 |
+
|
97 |
+
#: inc/php/page.php:69
|
98 |
+
msgid "Place your scripts in the field."
|
99 |
+
msgstr ""
|
100 |
+
|
101 |
+
#: inc/php/page.php:70
|
102 |
+
msgid "Note that the fields are for inserting HTML code, so JavaScript and CSS code must be wrapped in the corresponding HTML tag. For JavaScript code use the <code><script></code> tag, and for CSS code use the <code><style></code> tag. Example:"
|
103 |
+
msgstr ""
|
104 |
+
|
105 |
+
#: inc/php/page.php:84
|
106 |
+
msgid "Click the \"Save changes\" button."
|
107 |
+
msgstr "Klik op de knop \"Wijzigingen opslaan\"."
|
108 |
+
|
109 |
+
#: inc/php/page.php:85
|
110 |
+
msgid "Enjoy the result of applying your scripts."
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#: inc/php/page.php:85
|
114 |
+
msgid "It's that simple!"
|
115 |
+
msgstr "Zo eenvoudig is het!"
|
116 |
+
|
117 |
+
#: inc/php/page.php:87
|
118 |
+
msgid "Note!"
|
119 |
+
msgstr "Opmerking!"
|
120 |
+
|
121 |
+
#: inc/php/page.php:88
|
122 |
+
#, php-format
|
123 |
+
msgid "If you want more options then %s tell us %s and we will be happy to add it."
|
124 |
+
msgstr "Wilt u meer opties dan %s vertel ons %s en wij zullen graag toevoegen."
|
125 |
+
|
126 |
+
#: inc/php/page.php:102
|
127 |
+
msgid "Frequently Asked Questions"
|
128 |
+
msgstr "Veel voorkomende vragen (FAQ)"
|
129 |
+
|
130 |
+
#: inc/php/page.php:106
|
131 |
+
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
132 |
+
msgstr "Als je een vraag hebt, lees dan eerst de Veel voorkomende vragen (FAQ) hieronder. Misschien staat het antwoord ertussen."
|
133 |
+
|
134 |
+
#: inc/php/page.php:128
|
135 |
+
msgid "Will this plugin work on my WordPress.COM website?"
|
136 |
+
msgstr "Werkt deze plugin op mijn WordPress.COM website?"
|
137 |
+
|
138 |
+
#: inc/php/page.php:129
|
139 |
+
msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
|
140 |
+
msgstr "Sorry, deze plug-in is alleen beschikbaar voor gebruik op zelf-gehoste (WordPress.ORG) websites."
|
141 |
+
|
142 |
+
#: inc/php/page.php:131
|
143 |
+
msgid "Can I use this plugin on my language?"
|
144 |
+
msgstr "Kan ik deze plug-in in mijn eigen taal gebruiken?"
|
145 |
+
|
146 |
+
#: inc/php/page.php:132
|
147 |
+
msgid "Yes. This plugin is ready for translation and has already been translated into several languages."
|
148 |
+
msgstr "Ja. Deze plug-in is klaar voor vertaling en is reeds in verschillende talen vertaald."
|
149 |
+
|
150 |
+
#: inc/php/page.php:134
|
151 |
+
#, php-format
|
152 |
+
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."
|
153 |
+
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."
|
154 |
+
|
155 |
+
#: inc/php/page.php:139
|
156 |
+
msgid "Maybe not all existed translations are up to date. You are welcome to contribute corrections!"
|
157 |
+
msgstr "Misschien zijn niet alle bestaande vertalingen up-to-date of correct. Je bent van harte welkom om correcties bij te dragen!"
|
158 |
+
|
159 |
+
#: inc/php/page.php:140
|
160 |
+
msgid "Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!"
|
161 |
+
msgstr "Veel plugin-gebruikers zouden blij zijn als je je vertaling met de community deelt. Bedankt voor je bijdrage!"
|
162 |
+
|
163 |
+
#: inc/php/page.php:142
|
164 |
+
msgid "How does it work?"
|
165 |
+
msgstr "Hoe werkt het?"
|
166 |
+
|
167 |
+
#: inc/php/page.php:143
|
168 |
+
msgid "On the \"Settings\" tab, place your scripts in the field and click the \"Save changes\" button. Enjoy the result of applying your scripts. It's that simple!"
|
169 |
+
msgstr ""
|
170 |
+
|
171 |
+
#: inc/php/page.php:145
|
172 |
+
msgid "How much of scripts I can enter in the field?"
|
173 |
+
msgstr ""
|
174 |
+
|
175 |
+
#: inc/php/page.php:146
|
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:148
|
180 |
+
msgid "Does this plugin requires any modification of the theme?"
|
181 |
+
msgstr "Heeft deze plug-in enige aanpassing van het thema nodig?"
|
182 |
+
|
183 |
+
#: inc/php/page.php:149
|
184 |
+
msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
|
185 |
+
msgstr "Absoluut niet. Deze plug-in kan volledig worden geconfigureerd via de pagina met plugin-instellingen."
|
186 |
+
|
187 |
+
#: inc/php/page.php:151
|
188 |
+
msgid "Does this require any knowledge of HTML or CSS?"
|
189 |
+
msgstr "Vereist dit enige kennis van HTML of CSS?"
|
190 |
+
|
191 |
+
#: inc/php/page.php:152
|
192 |
+
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page. But you need to know the HTML or CSS in order to add/remove/modify the HTML or CSS code by using this plugin."
|
193 |
+
msgstr "Deze plug-in kan worden geconfigureerd zonder kennis van HTML of CSS, met behulp van de eenvoudig te gebruiken plugin-instellingenpagina. Maar u moet de HTML of CSS kennen om de HTML- of CSS-code toe te voegen / te verwijderen / wijzigen met behulp van deze plug-in."
|
194 |
+
|
195 |
+
#: inc/php/page.php:154
|
196 |
+
msgid "Can I add my script to a specific page of my website?"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: inc/php/page.php:155
|
200 |
+
msgid "For now, this plugin does not have an option to apply the custom scripts only on specific pages. We plan to add this feature soon. But for now in order to apply your script only on specific pages of your website, you need to wrap your script in a PHP code that will determine the page you want. You need something like this:"
|
201 |
+
msgstr ""
|
202 |
+
|
203 |
+
#: inc/php/page.php:168
|
204 |
+
#, php-format
|
205 |
+
msgid "To apply the PHP code on a website, we can recommend you to use another our plugin called %s."
|
206 |
+
msgstr ""
|
207 |
+
|
208 |
+
#: inc/php/page.php:173
|
209 |
+
msgid "It's not working. What could be wrong?"
|
210 |
+
msgstr "Het werkt niet. Wat kan er fout zijn?"
|
211 |
+
|
212 |
+
#: inc/php/page.php:174
|
213 |
+
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."
|
214 |
+
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."
|
215 |
+
|
216 |
+
#: inc/php/page.php:175
|
217 |
+
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."
|
218 |
+
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."
|
219 |
+
|
220 |
+
#: inc/php/page.php:177
|
221 |
+
msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
|
222 |
+
msgstr "De laatste Wordpress update zorgt ervoor dat ik mijn website niet kan bewerken als ik deze plugin gebruik. Waarom is dit?"
|
223 |
+
|
224 |
+
#: inc/php/page.php:178
|
225 |
+
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."
|
226 |
+
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."
|
227 |
+
|
228 |
+
#: inc/php/page.php:180
|
229 |
+
msgid "Where to report bug if found?"
|
230 |
+
msgstr "Waar kan een bug gerapporteerd worden indien gevonden?"
|
231 |
+
|
232 |
+
#: inc/php/page.php:182
|
233 |
+
#, php-format
|
234 |
+
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!"
|
235 |
+
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!"
|
236 |
+
|
237 |
+
#: inc/php/page.php:188
|
238 |
+
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
239 |
+
msgstr "Waar kan ik ideeën of suggesties delen om de plug-in beter te maken?"
|
240 |
+
|
241 |
+
#: inc/php/page.php:190
|
242 |
+
#, php-format
|
243 |
+
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!"
|
244 |
+
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!"
|
245 |
+
|
246 |
+
#: inc/php/page.php:196
|
247 |
+
msgid "I love this plugin! Can I help somehow?"
|
248 |
+
msgstr "Ik ben dol op deze plug-in! Kan ik op de een of andere manier helpen?"
|
249 |
+
|
250 |
+
#: inc/php/page.php:198
|
251 |
+
#, php-format
|
252 |
+
msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
|
253 |
+
msgstr "Ja, alle bijdragen zijn van harte welkom! Ga naar %s onze donatiepagina %s. Dank je!"
|
254 |
+
|
255 |
+
#: inc/php/page.php:204
|
256 |
+
msgid "My question wasn't answered here."
|
257 |
+
msgstr "Mij vraag is hier niet beantwoord."
|
258 |
+
|
259 |
+
#: inc/php/page.php:206
|
260 |
+
#, php-format
|
261 |
+
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."
|
262 |
+
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."
|
263 |
+
|
264 |
+
#: inc/php/page.php:220
|
265 |
+
msgid "Support Us"
|
266 |
+
msgstr "Ondersteun ons"
|
267 |
+
|
268 |
+
#: inc/php/page.php:228 inc/php/settings.php:84 inc/php/sidebar.php:46
|
269 |
+
msgid "Donate with PayPal"
|
270 |
+
msgstr "Doneer via PayPal"
|
271 |
+
|
272 |
+
#: inc/php/page.php:233
|
273 |
+
#, php-format
|
274 |
+
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."
|
275 |
+
msgstr ""
|
276 |
+
|
277 |
+
#: inc/php/page.php:241
|
278 |
+
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."
|
279 |
+
msgstr ""
|
280 |
+
|
281 |
+
#: inc/php/page.php:242
|
282 |
+
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."
|
283 |
+
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."
|
284 |
+
|
285 |
+
#: inc/php/page.php:243
|
286 |
+
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
287 |
+
msgstr "Als je mijn werk waardeert, kun je een koffie voor me kopen!"
|
288 |
+
|
289 |
+
#: inc/php/page.php:244
|
290 |
+
msgid "Thank you for your support!"
|
291 |
+
msgstr "Bedankt voor je ondersteuning!"
|
292 |
+
|
293 |
+
#: inc/php/settings.php:31
|
294 |
+
msgid "Head Section"
|
295 |
+
msgstr ""
|
296 |
+
|
297 |
+
#: inc/php/settings.php:33
|
298 |
+
msgid "You can use the fields below to add your custom scripts to HEAD section of your website."
|
299 |
+
msgstr ""
|
300 |
+
|
301 |
+
#: inc/php/settings.php:35
|
302 |
+
msgid "Scripts from this field will be printed in the beginning of HEAD section. Do not place plain text in this!"
|
303 |
+
msgstr ""
|
304 |
+
|
305 |
+
#: inc/php/settings.php:39 inc/php/settings.php:46 inc/php/settings.php:62
|
306 |
+
#: inc/php/settings.php:69
|
307 |
+
msgid "Enter your custom scripts here"
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: inc/php/settings.php:42
|
311 |
+
msgid "Scripts from this field will be printed in the end of HEAD section. Do not place plain text in this!"
|
312 |
+
msgstr ""
|
313 |
+
|
314 |
+
#: inc/php/settings.php:49 inc/php/settings.php:72
|
315 |
+
msgid "Save changes"
|
316 |
+
msgstr "Wijzigingen opslaan"
|
317 |
+
|
318 |
+
#: inc/php/settings.php:54
|
319 |
+
msgid "Footer Section"
|
320 |
+
msgstr ""
|
321 |
+
|
322 |
+
#: inc/php/settings.php:56
|
323 |
+
msgid "You can use the fields below to add your custom scripts to FOOTER section of your website."
|
324 |
+
msgstr ""
|
325 |
+
|
326 |
+
#: inc/php/settings.php:58
|
327 |
+
msgid "Scripts from this field will be printed before a footer scripts. Do not place plain text in this!"
|
328 |
+
msgstr ""
|
329 |
+
|
330 |
+
#: inc/php/settings.php:65
|
331 |
+
msgid "Scripts from this field will be printed after all footers scripts. Do not place plain text in this!"
|
332 |
+
msgstr ""
|
333 |
+
|
334 |
+
#: inc/php/settings.php:79 inc/php/sidebar.php:41
|
335 |
+
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."
|
336 |
+
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."
|
337 |
+
|
338 |
+
#: inc/php/settings.php:86 inc/php/sidebar.php:48
|
339 |
+
msgid "Thanks for your support!"
|
340 |
+
msgstr "Bedankt voor uw steun!"
|
341 |
+
|
342 |
+
#: inc/php/sidebar.php:16
|
343 |
+
msgid "We are «Space X-Chimp»"
|
344 |
+
msgstr ""
|
345 |
+
|
346 |
+
#: inc/php/sidebar.php:25
|
347 |
+
msgid "About"
|
348 |
+
msgstr "Over"
|
349 |
+
|
350 |
+
#: inc/php/sidebar.php:27
|
351 |
+
msgid "This plugin allows you to easily insert your custom scripts in your website."
|
352 |
+
msgstr ""
|
353 |
+
|
354 |
+
#: inc/php/sidebar.php:32
|
355 |
+
msgid "Help"
|
356 |
+
msgstr "Help"
|
357 |
+
|
358 |
+
#: inc/php/sidebar.php:34
|
359 |
+
msgid "If you have a question, please read the information in the FAQ section."
|
360 |
+
msgstr "Als je een vraag hebt, lees dan de informatie in de FAQ-sectie."
|
361 |
+
|
362 |
+
#. Plugin Name of the plugin/theme
|
363 |
+
msgid "Head and Footer Scripts Inserter"
|
364 |
+
msgstr "Mijn Persoonlijke Functies"
|
365 |
+
|
366 |
+
#. Plugin URI of the plugin/theme
|
367 |
+
msgid "https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter"
|
368 |
+
msgstr "https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter"
|
369 |
+
|
370 |
+
#. Description of the plugin/theme
|
371 |
+
msgid "Easily add your scripts to the WordPress website's head and footer sections. This is a must have tool for authors and website's owners."
|
372 |
+
msgstr ""
|
373 |
+
|
374 |
+
#. Author of the plugin/theme
|
375 |
+
msgid "Space X-Chimp"
|
376 |
+
msgstr "Space X-Chimp"
|
377 |
+
|
378 |
+
#. Author URI of the plugin/theme
|
379 |
+
msgid "https://www.spacexchimp.com"
|
380 |
+
msgstr "https://www.spacexchimp.com"
|
381 |
+
|
382 |
+
#~ msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
|
383 |
+
#~ msgstr "Hallo! Mijn naam is %s Arthur Gareginyan %s en ik ben de oprichter van %s Space X-Chimp %s."
|
384 |
+
|
385 |
+
#~ 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."
|
386 |
+
#~ 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/header-and-footer-scripts-inserter-pl_PL.mo
CHANGED
Binary file
|
languages/header-and-footer-scripts-inserter-pl_PL.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Header and Footer Scripts Inserter\n"
|
6 |
-
"POT-Creation-Date: 2018-07-
|
7 |
-
"PO-Revision-Date: 2018-07-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Polish\n"
|
10 |
"Language: pl_PL\n"
|
@@ -75,7 +75,7 @@ msgstr "Wykorzystanie"
|
|
75 |
msgid "F.A.Q."
|
76 |
msgstr "FAQ"
|
77 |
|
78 |
-
#: inc/php/page.php:47 inc/php/settings.php:77 inc/php/sidebar.php:
|
79 |
msgid "Support"
|
80 |
msgstr ""
|
81 |
|
@@ -263,28 +263,28 @@ msgid "You can ask your question on %s this page %s. But please keep in mind tha
|
|
263 |
msgstr ""
|
264 |
|
265 |
#: inc/php/page.php:220
|
266 |
-
msgid "Support
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: inc/php/page.php:228 inc/php/settings.php:84 inc/php/sidebar.php:
|
270 |
msgid "Donate with PayPal"
|
271 |
msgstr ""
|
272 |
|
273 |
#: inc/php/page.php:233
|
274 |
#, php-format
|
275 |
-
msgid "Hello! My name is %s Arthur
|
276 |
msgstr ""
|
277 |
|
278 |
#: inc/php/page.php:241
|
279 |
-
msgid "
|
280 |
msgstr ""
|
281 |
|
282 |
#: inc/php/page.php:242
|
283 |
-
msgid "
|
284 |
msgstr ""
|
285 |
|
286 |
#: inc/php/page.php:243
|
287 |
-
msgid "If you appreciate
|
288 |
msgstr ""
|
289 |
|
290 |
#: inc/php/page.php:244
|
@@ -332,27 +332,31 @@ msgstr "Skrypty z tego pola zostaną dodane przed skryptami ze stopki. Nie nale
|
|
332 |
msgid "Scripts from this field will be printed after all footers scripts. Do not place plain text in this!"
|
333 |
msgstr "Skrypty z tego pola zostaną dodane za skryptami ze stopki. Nie należy tu umieszczać zwykłego tekstu!"
|
334 |
|
335 |
-
#: inc/php/settings.php:79 inc/php/sidebar.php:
|
336 |
-
msgid "
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: inc/php/settings.php:86 inc/php/sidebar.php:
|
340 |
msgid "Thanks for your support!"
|
341 |
msgstr "Dziękujemy za wsparcie!"
|
342 |
|
343 |
#: inc/php/sidebar.php:16
|
|
|
|
|
|
|
|
|
344 |
msgid "About"
|
345 |
msgstr "O wtyczce"
|
346 |
|
347 |
-
#: inc/php/sidebar.php:
|
348 |
msgid "This plugin allows you to easily insert your custom scripts in your website."
|
349 |
msgstr "Ta wtyczka pozwala łatwo wstawić kod skryptów na stronę www."
|
350 |
|
351 |
-
#: inc/php/sidebar.php:
|
352 |
msgid "Help"
|
353 |
msgstr "Pomoc"
|
354 |
|
355 |
-
#: inc/php/sidebar.php:
|
356 |
msgid "If you have a question, please read the information in the FAQ section."
|
357 |
msgstr "Masz coś do powiedzenia? Potrzebujesz pomocy?"
|
358 |
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Header and Footer Scripts Inserter\n"
|
6 |
+
"POT-Creation-Date: 2018-07-24 00:33+0300\n"
|
7 |
+
"PO-Revision-Date: 2018-07-24 00:33+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Polish\n"
|
10 |
"Language: pl_PL\n"
|
75 |
msgid "F.A.Q."
|
76 |
msgstr "FAQ"
|
77 |
|
78 |
+
#: inc/php/page.php:47 inc/php/settings.php:77 inc/php/sidebar.php:39
|
79 |
msgid "Support"
|
80 |
msgstr ""
|
81 |
|
263 |
msgstr ""
|
264 |
|
265 |
#: inc/php/page.php:220
|
266 |
+
msgid "Support Us"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: inc/php/page.php:228 inc/php/settings.php:84 inc/php/sidebar.php:46
|
270 |
msgid "Donate with PayPal"
|
271 |
msgstr ""
|
272 |
|
273 |
#: inc/php/page.php:233
|
274 |
#, php-format
|
275 |
+
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."
|
276 |
msgstr ""
|
277 |
|
278 |
#: inc/php/page.php:241
|
279 |
+
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."
|
280 |
msgstr ""
|
281 |
|
282 |
#: inc/php/page.php:242
|
283 |
+
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."
|
284 |
msgstr ""
|
285 |
|
286 |
#: inc/php/page.php:243
|
287 |
+
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
288 |
msgstr ""
|
289 |
|
290 |
#: inc/php/page.php:244
|
332 |
msgid "Scripts from this field will be printed after all footers scripts. Do not place plain text in this!"
|
333 |
msgstr "Skrypty z tego pola zostaną dodane za skryptami ze stopki. Nie należy tu umieszczać zwykłego tekstu!"
|
334 |
|
335 |
+
#: inc/php/settings.php:79 inc/php/sidebar.php:41
|
336 |
+
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."
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: inc/php/settings.php:86 inc/php/sidebar.php:48
|
340 |
msgid "Thanks for your support!"
|
341 |
msgstr "Dziękujemy za wsparcie!"
|
342 |
|
343 |
#: inc/php/sidebar.php:16
|
344 |
+
msgid "We are «Space X-Chimp»"
|
345 |
+
msgstr ""
|
346 |
+
|
347 |
+
#: inc/php/sidebar.php:25
|
348 |
msgid "About"
|
349 |
msgstr "O wtyczce"
|
350 |
|
351 |
+
#: inc/php/sidebar.php:27
|
352 |
msgid "This plugin allows you to easily insert your custom scripts in your website."
|
353 |
msgstr "Ta wtyczka pozwala łatwo wstawić kod skryptów na stronę www."
|
354 |
|
355 |
+
#: inc/php/sidebar.php:32
|
356 |
msgid "Help"
|
357 |
msgstr "Pomoc"
|
358 |
|
359 |
+
#: inc/php/sidebar.php:34
|
360 |
msgid "If you have a question, please read the information in the FAQ section."
|
361 |
msgstr "Masz coś do powiedzenia? Potrzebujesz pomocy?"
|
362 |
|
languages/header-and-footer-scripts-inserter-ru_RU.mo
CHANGED
Binary file
|
languages/header-and-footer-scripts-inserter-ru_RU.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Header and Footer Scripts Inserter\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"
|
@@ -74,7 +74,7 @@ msgstr "Применение"
|
|
74 |
msgid "F.A.Q."
|
75 |
msgstr "F.A.Q."
|
76 |
|
77 |
-
#: inc/php/page.php:47 inc/php/settings.php:77 inc/php/sidebar.php:
|
78 |
msgid "Support"
|
79 |
msgstr "Поддержка"
|
80 |
|
@@ -262,28 +262,28 @@ msgid "You can ask your question on %s this page %s. But please keep in mind tha
|
|
262 |
msgstr "Вы можете задать ваш вопрос на %s этой странице %s. Но имейте в виду, что этот плагин является бесплатным и без специальной поддержки, поэтому у нас нет возможности ответить на все вопросы."
|
263 |
|
264 |
#: inc/php/page.php:220
|
265 |
-
msgid "Support
|
266 |
-
msgstr "Поддержать
|
267 |
|
268 |
-
#: inc/php/page.php:228 inc/php/settings.php:84 inc/php/sidebar.php:
|
269 |
msgid "Donate with PayPal"
|
270 |
msgstr "Пожертвовать через PayPal"
|
271 |
|
272 |
#: inc/php/page.php:233
|
273 |
#, php-format
|
274 |
-
msgid "Hello! My name is %s Arthur
|
275 |
-
msgstr "
|
276 |
|
277 |
#: inc/php/page.php:241
|
278 |
-
msgid "
|
279 |
-
msgstr "
|
280 |
|
281 |
#: inc/php/page.php:242
|
282 |
-
msgid "
|
283 |
msgstr "Я трачу много времени и сил, пытаясь убедиться в том, что темы, плагины и другие вещи, которые я создаю, полезны и окончательное доказательство этого для меня состоит в том, что вы на самом деле хотите их использовать. Но Я независимый разработчик, без регулярного дохода, поэтому каждый небольшой вклад помогает мне покрыть расходы и позволяет тратить больше времени на создание программ для людей как вы."
|
284 |
|
285 |
#: inc/php/page.php:243
|
286 |
-
msgid "If you appreciate
|
287 |
msgstr "Если вы цените мою работу, то вы можете купить мне кофе!"
|
288 |
|
289 |
#: inc/php/page.php:244
|
@@ -331,27 +331,31 @@ msgstr "Скрипты из этой области будут напечата
|
|
331 |
msgid "Scripts from this field will be printed after all footers scripts. Do not place plain text in this!"
|
332 |
msgstr "Скрипты из этой области будут напечатаны в конце нижнего колонтитула. Не помещайте сюда обычный текст!"
|
333 |
|
334 |
-
#: inc/php/settings.php:79 inc/php/sidebar.php:
|
335 |
-
msgid "
|
336 |
msgstr "Я независимый разработчик, без регулярного дохода, так что каждый маленький вклад помогает мне покрыть затраты и позволяет тратить больше времени на создание программ для людей как вы."
|
337 |
|
338 |
-
#: inc/php/settings.php:86 inc/php/sidebar.php:
|
339 |
msgid "Thanks for your support!"
|
340 |
msgstr "Спасибо за вашу поддержку!"
|
341 |
|
342 |
#: inc/php/sidebar.php:16
|
|
|
|
|
|
|
|
|
343 |
msgid "About"
|
344 |
msgstr "О плагине"
|
345 |
|
346 |
-
#: inc/php/sidebar.php:
|
347 |
msgid "This plugin allows you to easily insert your custom scripts in your website."
|
348 |
msgstr "Этот плагин позволяет легко вставлять скрипты в ваш веб-сайте."
|
349 |
|
350 |
-
#: inc/php/sidebar.php:
|
351 |
msgid "Help"
|
352 |
msgstr "Помощь"
|
353 |
|
354 |
-
#: inc/php/sidebar.php:
|
355 |
msgid "If you have a question, please read the information in the FAQ section."
|
356 |
msgstr "Если у вас есть вопрос, пожалуйста ознакомьтесь с информацией в разделе FAQ."
|
357 |
|
@@ -374,3 +378,9 @@ msgstr "Space X-Chimp"
|
|
374 |
#. Author URI of the plugin/theme
|
375 |
msgid "https://www.spacexchimp.com"
|
376 |
msgstr "https://www.spacexchimp.com"
|
|
|
|
|
|
|
|
|
|
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Header and Footer Scripts Inserter\n"
|
6 |
+
"POT-Creation-Date: 2018-07-24 00:33+0300\n"
|
7 |
+
"PO-Revision-Date: 2018-07-24 00:33+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Russian\n"
|
10 |
"Language: ru_RU\n"
|
74 |
msgid "F.A.Q."
|
75 |
msgstr "F.A.Q."
|
76 |
|
77 |
+
#: inc/php/page.php:47 inc/php/settings.php:77 inc/php/sidebar.php:39
|
78 |
msgid "Support"
|
79 |
msgstr "Поддержка"
|
80 |
|
262 |
msgstr "Вы можете задать ваш вопрос на %s этой странице %s. Но имейте в виду, что этот плагин является бесплатным и без специальной поддержки, поэтому у нас нет возможности ответить на все вопросы."
|
263 |
|
264 |
#: inc/php/page.php:220
|
265 |
+
msgid "Support Us"
|
266 |
+
msgstr "Поддержать нас"
|
267 |
|
268 |
+
#: inc/php/page.php:228 inc/php/settings.php:84 inc/php/sidebar.php:46
|
269 |
msgid "Donate with PayPal"
|
270 |
msgstr "Пожертвовать через PayPal"
|
271 |
|
272 |
#: inc/php/page.php:233
|
273 |
#, php-format
|
274 |
+
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."
|
275 |
+
msgstr ""
|
276 |
|
277 |
#: inc/php/page.php:241
|
278 |
+
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."
|
279 |
+
msgstr ""
|
280 |
|
281 |
#: inc/php/page.php:242
|
282 |
+
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."
|
283 |
msgstr "Я трачу много времени и сил, пытаясь убедиться в том, что темы, плагины и другие вещи, которые я создаю, полезны и окончательное доказательство этого для меня состоит в том, что вы на самом деле хотите их использовать. Но Я независимый разработчик, без регулярного дохода, поэтому каждый небольшой вклад помогает мне покрыть расходы и позволяет тратить больше времени на создание программ для людей как вы."
|
284 |
|
285 |
#: inc/php/page.php:243
|
286 |
+
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
287 |
msgstr "Если вы цените мою работу, то вы можете купить мне кофе!"
|
288 |
|
289 |
#: inc/php/page.php:244
|
331 |
msgid "Scripts from this field will be printed after all footers scripts. Do not place plain text in this!"
|
332 |
msgstr "Скрипты из этой области будут напечатаны в конце нижнего колонтитула. Не помещайте сюда обычный текст!"
|
333 |
|
334 |
+
#: inc/php/settings.php:79 inc/php/sidebar.php:41
|
335 |
+
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."
|
336 |
msgstr "Я независимый разработчик, без регулярного дохода, так что каждый маленький вклад помогает мне покрыть затраты и позволяет тратить больше времени на создание программ для людей как вы."
|
337 |
|
338 |
+
#: inc/php/settings.php:86 inc/php/sidebar.php:48
|
339 |
msgid "Thanks for your support!"
|
340 |
msgstr "Спасибо за вашу поддержку!"
|
341 |
|
342 |
#: inc/php/sidebar.php:16
|
343 |
+
msgid "We are «Space X-Chimp»"
|
344 |
+
msgstr ""
|
345 |
+
|
346 |
+
#: inc/php/sidebar.php:25
|
347 |
msgid "About"
|
348 |
msgstr "О плагине"
|
349 |
|
350 |
+
#: inc/php/sidebar.php:27
|
351 |
msgid "This plugin allows you to easily insert your custom scripts in your website."
|
352 |
msgstr "Этот плагин позволяет легко вставлять скрипты в ваш веб-сайте."
|
353 |
|
354 |
+
#: inc/php/sidebar.php:32
|
355 |
msgid "Help"
|
356 |
msgstr "Помощь"
|
357 |
|
358 |
+
#: inc/php/sidebar.php:34
|
359 |
msgid "If you have a question, please read the information in the FAQ section."
|
360 |
msgstr "Если у вас есть вопрос, пожалуйста ознакомьтесь с информацией в разделе FAQ."
|
361 |
|
378 |
#. Author URI of the plugin/theme
|
379 |
msgid "https://www.spacexchimp.com"
|
380 |
msgstr "https://www.spacexchimp.com"
|
381 |
+
|
382 |
+
#~ msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
|
383 |
+
#~ msgstr "Привет! Меня зовут %s Артур Гарегинян %s и Я основатель %s Space X-Chimp %s."
|
384 |
+
|
385 |
+
#~ 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."
|
386 |
+
#~ msgstr "Я намерен создать проекты, которые сделают этот мир лучшим местом. Я очень увлечен своей работой, мне нравится то, что Я делаю и надеюсь, что вы тоже станете лучше благодаря моим проектам."
|
languages/header-and-footer-scripts-inserter.pot
CHANGED
@@ -3,7 +3,7 @@ msgid ""
|
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: Header and Footer Scripts Inserter\n"
|
6 |
-
"POT-Creation-Date: 2018-07-
|
7 |
"PO-Revision-Date: 2016-01-30 11:39+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
@@ -72,7 +72,7 @@ msgstr ""
|
|
72 |
msgid "F.A.Q."
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: inc/php/page.php:47 inc/php/settings.php:77 inc/php/sidebar.php:
|
76 |
msgid "Support"
|
77 |
msgstr ""
|
78 |
|
@@ -260,28 +260,28 @@ msgid "You can ask your question on %s this page %s. But please keep in mind tha
|
|
260 |
msgstr ""
|
261 |
|
262 |
#: inc/php/page.php:220
|
263 |
-
msgid "Support
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: inc/php/page.php:228 inc/php/settings.php:84 inc/php/sidebar.php:
|
267 |
msgid "Donate with PayPal"
|
268 |
msgstr ""
|
269 |
|
270 |
#: inc/php/page.php:233
|
271 |
#, php-format
|
272 |
-
msgid "Hello! My name is %s Arthur
|
273 |
msgstr ""
|
274 |
|
275 |
#: inc/php/page.php:241
|
276 |
-
msgid "
|
277 |
msgstr ""
|
278 |
|
279 |
#: inc/php/page.php:242
|
280 |
-
msgid "
|
281 |
msgstr ""
|
282 |
|
283 |
#: inc/php/page.php:243
|
284 |
-
msgid "If you appreciate
|
285 |
msgstr ""
|
286 |
|
287 |
#: inc/php/page.php:244
|
@@ -329,27 +329,31 @@ msgstr ""
|
|
329 |
msgid "Scripts from this field will be printed after all footers scripts. Do not place plain text in this!"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: inc/php/settings.php:79 inc/php/sidebar.php:
|
333 |
-
msgid "
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: inc/php/settings.php:86 inc/php/sidebar.php:
|
337 |
msgid "Thanks for your support!"
|
338 |
msgstr ""
|
339 |
|
340 |
#: inc/php/sidebar.php:16
|
|
|
|
|
|
|
|
|
341 |
msgid "About"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: inc/php/sidebar.php:
|
345 |
msgid "This plugin allows you to easily insert your custom scripts in your website."
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: inc/php/sidebar.php:
|
349 |
msgid "Help"
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: inc/php/sidebar.php:
|
353 |
msgid "If you have a question, please read the information in the FAQ section."
|
354 |
msgstr ""
|
355 |
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: Header and Footer Scripts Inserter\n"
|
6 |
+
"POT-Creation-Date: 2018-07-24 00:33+0300\n"
|
7 |
"PO-Revision-Date: 2016-01-30 11:39+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
72 |
msgid "F.A.Q."
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: inc/php/page.php:47 inc/php/settings.php:77 inc/php/sidebar.php:39
|
76 |
msgid "Support"
|
77 |
msgstr ""
|
78 |
|
260 |
msgstr ""
|
261 |
|
262 |
#: inc/php/page.php:220
|
263 |
+
msgid "Support Us"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: inc/php/page.php:228 inc/php/settings.php:84 inc/php/sidebar.php:46
|
267 |
msgid "Donate with PayPal"
|
268 |
msgstr ""
|
269 |
|
270 |
#: inc/php/page.php:233
|
271 |
#, php-format
|
272 |
+
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."
|
273 |
msgstr ""
|
274 |
|
275 |
#: inc/php/page.php:241
|
276 |
+
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."
|
277 |
msgstr ""
|
278 |
|
279 |
#: inc/php/page.php:242
|
280 |
+
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."
|
281 |
msgstr ""
|
282 |
|
283 |
#: inc/php/page.php:243
|
284 |
+
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
285 |
msgstr ""
|
286 |
|
287 |
#: inc/php/page.php:244
|
329 |
msgid "Scripts from this field will be printed after all footers scripts. Do not place plain text in this!"
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: inc/php/settings.php:79 inc/php/sidebar.php:41
|
333 |
+
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."
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: inc/php/settings.php:86 inc/php/sidebar.php:48
|
337 |
msgid "Thanks for your support!"
|
338 |
msgstr ""
|
339 |
|
340 |
#: inc/php/sidebar.php:16
|
341 |
+
msgid "We are «Space X-Chimp»"
|
342 |
+
msgstr ""
|
343 |
+
|
344 |
+
#: inc/php/sidebar.php:25
|
345 |
msgid "About"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: inc/php/sidebar.php:27
|
349 |
msgid "This plugin allows you to easily insert your custom scripts in your website."
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: inc/php/sidebar.php:32
|
353 |
msgid "Help"
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: inc/php/sidebar.php:34
|
357 |
msgid "If you have a question, please read the information in the FAQ section."
|
358 |
msgstr ""
|
359 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: inject, insert, insert scripts, insert javascript, insert js, insert html,
|
|
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 |
|
@@ -46,6 +46,7 @@ This plugin is ready for translation and has already been translated into severa
|
|
46 |
* German (translation by Michael)
|
47 |
* Polish
|
48 |
* Spanish (translation by Patricio Toledo)
|
|
|
49 |
|
50 |
If you want to help translate this plugin then please visit the [translation page](https://translate.wordpress.org/projects/wp-plugins/header-and-footer-scripts-inserter).
|
51 |
|
@@ -187,6 +188,14 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
187 |
|
188 |
== Changelog ==
|
189 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
190 |
= 4.25 =
|
191 |
* The code block that enqueue the CodeMirror library files is moved to a separate function '_load_scripts_codemirror' within the 'enqueue.php' file.
|
192 |
* 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.26
|
8 |
License: GPL3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
46 |
* German (translation by Michael)
|
47 |
* Polish
|
48 |
* Spanish (translation by Patricio Toledo)
|
49 |
+
* Dutch (translation by Peter Leenders)
|
50 |
|
51 |
If you want to help translate this plugin then please visit the [translation page](https://translate.wordpress.org/projects/wp-plugins/header-and-footer-scripts-inserter).
|
52 |
|
188 |
|
189 |
== Changelog ==
|
190 |
|
191 |
+
= 4.26 =
|
192 |
+
* Dutch translation added. (Thanks to Peter Leenders)
|
193 |
+
* The function '_load_scripts_codemirror' is improved. Removed an unnecessary call of constants.
|
194 |
+
* The function '_load_scripts_admin' is improved.
|
195 |
+
* The banner of Space X-Chimp, located on the settings page of the plugin, is updated. The image 'banner.png' is deleted.
|
196 |
+
* Some texts are updated.
|
197 |
+
* All translation files are updated.
|
198 |
+
|
199 |
= 4.25 =
|
200 |
* The code block that enqueue the CodeMirror library files is moved to a separate function '_load_scripts_codemirror' within the 'enqueue.php' file.
|
201 |
* Enqueue of the CodeMirror addons is moved to the beginning of the queue, before enqueuing the CodeMirror mods.
|