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 | My Custom Functions |
Version | 4.24 |
Comparing to | |
See all releases |
Code changes from version 4.23 to 4.24
- 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/my-custom-functions-de_DE.mo +0 -0
- languages/my-custom-functions-de_DE.po +30 -20
- languages/my-custom-functions-es_ES.mo +0 -0
- languages/my-custom-functions-es_ES.po +28 -18
- languages/my-custom-functions-fr_FR.mo +0 -0
- languages/my-custom-functions-fr_FR.po +20 -16
- languages/my-custom-functions-nl_NL.mo +0 -0
- languages/my-custom-functions-nl_NL.po +444 -0
- languages/my-custom-functions-ru_RU.mo +0 -0
- languages/my-custom-functions-ru_RU.po +28 -18
- languages/my-custom-functions-zh_TW.mo +0 -0
- languages/my-custom-functions-zh_TW.po +19 -15
- languages/my-custom-functions.pot +18 -14
- my-custom-functions.php +1 -1
- readme.txt +10 -1
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_p001_load_scripts_codemirror() {
|
12 |
-
|
13 |
-
// Put value of constants to variables for easier access
|
14 |
-
$prefix = SPACEXCHIMP_P001_PREFIX;
|
15 |
-
$url = SPACEXCHIMP_P001_URL;
|
16 |
-
$version = SPACEXCHIMP_P001_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' );
|
@@ -74,9 +69,6 @@ function spacexchimp_p001_load_scripts_admin( $hook ) {
|
|
74 |
// Font Awesome library
|
75 |
wp_enqueue_style( $prefix . '-font-awesome-css', $url . 'inc/lib/font-awesome/css/font-awesome.css', array(), $version, 'screen' );
|
76 |
|
77 |
-
// Call the function that enqueue the CodeMirror library
|
78 |
-
spacexchimp_p001_load_scripts_codemirror();
|
79 |
-
|
80 |
// Other libraries
|
81 |
wp_enqueue_script( $prefix . '-bootstrap-checkbox-js', $url . 'inc/lib/bootstrap-checkbox.js', array(), $version, false );
|
82 |
|
@@ -86,5 +78,8 @@ function spacexchimp_p001_load_scripts_admin( $hook ) {
|
|
86 |
// JavaScript
|
87 |
wp_enqueue_script( $prefix . '-admin-js', $url . 'inc/js/admin.js', array(), $version, true );
|
88 |
|
|
|
|
|
|
|
89 |
}
|
90 |
add_action( 'admin_enqueue_scripts', 'spacexchimp_p001_load_scripts_admin' );
|
8 |
/**
|
9 |
* Callback to enqueue the CodeMirror library
|
10 |
*/
|
11 |
+
function spacexchimp_p001_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' );
|
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 |
// Other libraries
|
73 |
wp_enqueue_script( $prefix . '-bootstrap-checkbox-js', $url . 'inc/lib/bootstrap-checkbox.js', array(), $version, false );
|
74 |
|
78 |
// JavaScript
|
79 |
wp_enqueue_script( $prefix . '-admin-js', $url . 'inc/js/admin.js', array(), $version, true );
|
80 |
|
81 |
+
// Call the function that enqueue the CodeMirror library
|
82 |
+
spacexchimp_p001_load_scripts_codemirror( $prefix, $url, $version );
|
83 |
+
|
84 |
}
|
85 |
add_action( 'admin_enqueue_scripts', 'spacexchimp_p001_load_scripts_admin' );
|
inc/php/page.php
CHANGED
@@ -229,7 +229,7 @@ function spacexchimp_p001_render_submenu_page() {
|
|
229 |
<!-- TAB 4 -->
|
230 |
<div class="tab-page fade" id="tab-support">
|
231 |
<div class="postbox">
|
232 |
-
<h3 class="title"><?php _e( 'Support
|
233 |
<div class="inside">
|
234 |
<span class="image-with-button pull-left">
|
235 |
<img src="<?php echo SPACEXCHIMP_P001_URL . 'inc/img/thanks.png'; ?>" alt="Thanks!">
|
@@ -242,17 +242,17 @@ function spacexchimp_p001_render_submenu_page() {
|
|
242 |
</span>
|
243 |
<p><?php
|
244 |
printf(
|
245 |
-
__( 'Hello! My name is %s Arthur
|
246 |
-
'<a href="https://www.
|
247 |
'</a>',
|
248 |
'<a href="https://www.spacexchimp.com" target="_blank">',
|
249 |
'</a>'
|
250 |
);
|
251 |
?>
|
252 |
</p>
|
253 |
-
<p><?php _e( '
|
254 |
-
<p><?php _e( '
|
255 |
-
<p><?php _e( 'If you appreciate
|
256 |
<p><?php _e( 'Thank you for your support!', $text ); ?></p>
|
257 |
</div>
|
258 |
</div>
|
229 |
<!-- TAB 4 -->
|
230 |
<div class="tab-page fade" id="tab-support">
|
231 |
<div class="postbox">
|
232 |
+
<h3 class="title"><?php _e( 'Support Us', $text ); ?></h3>
|
233 |
<div class="inside">
|
234 |
<span class="image-with-button pull-left">
|
235 |
<img src="<?php echo SPACEXCHIMP_P001_URL . 'inc/img/thanks.png'; ?>" alt="Thanks!">
|
242 |
</span>
|
243 |
<p><?php
|
244 |
printf(
|
245 |
+
__( '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 ),
|
246 |
+
'<a href="https://www.instagram.com/arthur_gareginyan/" target="_blank">',
|
247 |
'</a>',
|
248 |
'<a href="https://www.spacexchimp.com" target="_blank">',
|
249 |
'</a>'
|
250 |
);
|
251 |
?>
|
252 |
</p>
|
253 |
+
<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>
|
254 |
+
<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>
|
255 |
+
<p><?php _e( 'If you appreciate our work, you can buy us a cup of coffee!', $text ); ?></p>
|
256 |
<p><?php _e( 'Thank you for your support!', $text ); ?></p>
|
257 |
</div>
|
258 |
</div>
|
inc/php/settings.php
CHANGED
@@ -52,7 +52,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
52 |
<div class="postbox" id="support-addition">
|
53 |
<h3 class="title"><?php _e( 'Support', $text ); ?></h3>
|
54 |
<div class="inside">
|
55 |
-
<p><?php _e( '
|
56 |
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="btn btn-default button-labeled">
|
57 |
<span class="btn-label">
|
58 |
<img src="<?php echo SPACEXCHIMP_P001_URL . 'inc/img/paypal.svg'; ?>" alt="PayPal">
|
52 |
<div class="postbox" id="support-addition">
|
53 |
<h3 class="title"><?php _e( 'Support', $text ); ?></h3>
|
54 |
<div class="inside">
|
55 |
+
<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>
|
56 |
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="btn btn-default button-labeled">
|
57 |
<span class="btn-label">
|
58 |
<img src="<?php echo SPACEXCHIMP_P001_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">
|
@@ -34,18 +43,10 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
34 |
</div>
|
35 |
</div>
|
36 |
|
37 |
-
<div class="postbox banner">
|
38 |
-
<div class="inside">
|
39 |
-
<a href="https://www.spacexchimp.com/" target="_blank">
|
40 |
-
<img src="<?php echo SPACEXCHIMP_P001_URL . 'inc/img/banner.png'; ?>" alt="Space X-Chimp">
|
41 |
-
</a>
|
42 |
-
</div>
|
43 |
-
</div>
|
44 |
-
|
45 |
<div class="postbox support">
|
46 |
<h3 class="title"><?php _e( 'Support', $text ); ?></h3>
|
47 |
<div class="inside">
|
48 |
-
<p><?php _e( '
|
49 |
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="btn btn-default button-labeled">
|
50 |
<span class="btn-label">
|
51 |
<img src="<?php echo SPACEXCHIMP_P001_URL . 'inc/img/paypal.svg'; ?>" alt="PayPal">
|
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_P001_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">
|
43 |
</div>
|
44 |
</div>
|
45 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
<div class="postbox support">
|
47 |
<h3 class="title"><?php _e( 'Support', $text ); ?></h3>
|
48 |
<div class="inside">
|
49 |
+
<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>
|
50 |
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="btn btn-default button-labeled">
|
51 |
<span class="btn-label">
|
52 |
<img src="<?php echo SPACEXCHIMP_P001_URL . 'inc/img/paypal.svg'; ?>" alt="PayPal">
|
languages/my-custom-functions-de_DE.mo
CHANGED
Binary file
|
languages/my-custom-functions-de_DE.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\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"
|
@@ -86,7 +86,7 @@ msgstr "Verwendung"
|
|
86 |
msgid "F.A.Q."
|
87 |
msgstr "F.A.Q."
|
88 |
|
89 |
-
#: inc/php/page.php:48 inc/php/settings.php:53 inc/php/sidebar.php:
|
90 |
msgid "Support"
|
91 |
msgstr "Support"
|
92 |
|
@@ -349,28 +349,28 @@ msgid "You can ask your question on %s this page %s. But please keep in mind tha
|
|
349 |
msgstr "Sie können Ihre Frage auf %s dieser Seite stellen %s. Aber bitte bedenken Sie, dass dieses Plugin kostenlos ist. Es gibt kein Support Team, deshalb habe wir keine Möglichkeit jedem zu antworten."
|
350 |
|
351 |
#: inc/php/page.php:232
|
352 |
-
msgid "Support
|
353 |
-
msgstr "
|
354 |
|
355 |
-
#: inc/php/page.php:240 inc/php/settings.php:60 inc/php/sidebar.php:
|
356 |
msgid "Donate with PayPal"
|
357 |
msgstr "Spende mit PayPal"
|
358 |
|
359 |
#: inc/php/page.php:245
|
360 |
#, php-format
|
361 |
-
msgid "Hello! My name is %s Arthur
|
362 |
-
msgstr "
|
363 |
|
364 |
#: inc/php/page.php:253
|
365 |
-
msgid "
|
366 |
-
msgstr "
|
367 |
|
368 |
#: inc/php/page.php:254
|
369 |
-
msgid "
|
370 |
-
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
|
371 |
|
372 |
#: inc/php/page.php:255
|
373 |
-
msgid "If you appreciate
|
374 |
msgstr "Wenn Ihnen meine Arbeit gefällt, können Sie mir gerne einen Kaffee kaufen!"
|
375 |
|
376 |
#: inc/php/page.php:256
|
@@ -389,27 +389,31 @@ msgstr ""
|
|
389 |
msgid "Save changes"
|
390 |
msgstr "Änderungen speichern"
|
391 |
|
392 |
-
#: inc/php/settings.php:55 inc/php/sidebar.php:
|
393 |
-
msgid "
|
394 |
-
msgstr "
|
395 |
|
396 |
-
#: inc/php/settings.php:62 inc/php/sidebar.php:
|
397 |
msgid "Thanks for your support!"
|
398 |
msgstr "Danke für Ihre Unterstützung!"
|
399 |
|
400 |
#: inc/php/sidebar.php:16
|
|
|
|
|
|
|
|
|
401 |
msgid "About"
|
402 |
msgstr "Über"
|
403 |
|
404 |
-
#: inc/php/sidebar.php:
|
405 |
msgid "This plugin allows you to easily and safely add your custom functions (PHP code) directly out of your WordPress Admin Area, without the need to have an external editor."
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: inc/php/sidebar.php:
|
409 |
msgid "Help"
|
410 |
msgstr "Hilfe"
|
411 |
|
412 |
-
#: inc/php/sidebar.php:
|
413 |
msgid "If you have a question, please read the information in the FAQ section."
|
414 |
msgstr "Wenn Sie Fragen haben, lesen Sie bitte auch die Fragen im FAQ Bereich."
|
415 |
|
@@ -432,3 +436,9 @@ msgstr "Space X-Chimp"
|
|
432 |
#. Author URI of the plugin/theme
|
433 |
msgid "https://www.spacexchimp.com"
|
434 |
msgstr "https://www.spacexchimp.com"
|
|
|
|
|
|
|
|
|
|
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
+
"POT-Creation-Date: 2018-07-24 00:34+0300\n"
|
7 |
+
"PO-Revision-Date: 2018-07-24 00:34+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: German\n"
|
10 |
"Language: de_DE\n"
|
86 |
msgid "F.A.Q."
|
87 |
msgstr "F.A.Q."
|
88 |
|
89 |
+
#: inc/php/page.php:48 inc/php/settings.php:53 inc/php/sidebar.php:47
|
90 |
msgid "Support"
|
91 |
msgstr "Support"
|
92 |
|
349 |
msgstr "Sie können Ihre Frage auf %s dieser Seite stellen %s. Aber bitte bedenken Sie, dass dieses Plugin kostenlos ist. Es gibt kein Support Team, deshalb habe wir keine Möglichkeit jedem zu antworten."
|
350 |
|
351 |
#: inc/php/page.php:232
|
352 |
+
msgid "Support Us"
|
353 |
+
msgstr "Unterstütze uns"
|
354 |
|
355 |
+
#: inc/php/page.php:240 inc/php/settings.php:60 inc/php/sidebar.php:54
|
356 |
msgid "Donate with PayPal"
|
357 |
msgstr "Spende mit PayPal"
|
358 |
|
359 |
#: inc/php/page.php:245
|
360 |
#, php-format
|
361 |
+
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."
|
362 |
+
msgstr ""
|
363 |
|
364 |
#: inc/php/page.php:253
|
365 |
+
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."
|
366 |
+
msgstr ""
|
367 |
|
368 |
#: inc/php/page.php:254
|
369 |
+
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."
|
370 |
+
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."
|
371 |
|
372 |
#: inc/php/page.php:255
|
373 |
+
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
374 |
msgstr "Wenn Ihnen meine Arbeit gefällt, können Sie mir gerne einen Kaffee kaufen!"
|
375 |
|
376 |
#: inc/php/page.php:256
|
389 |
msgid "Save changes"
|
390 |
msgstr "Änderungen speichern"
|
391 |
|
392 |
+
#: inc/php/settings.php:55 inc/php/sidebar.php:49
|
393 |
+
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."
|
394 |
+
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."
|
395 |
|
396 |
+
#: inc/php/settings.php:62 inc/php/sidebar.php:56
|
397 |
msgid "Thanks for your support!"
|
398 |
msgstr "Danke für Ihre Unterstützung!"
|
399 |
|
400 |
#: inc/php/sidebar.php:16
|
401 |
+
msgid "We are «Space X-Chimp»"
|
402 |
+
msgstr ""
|
403 |
+
|
404 |
+
#: inc/php/sidebar.php:25
|
405 |
msgid "About"
|
406 |
msgstr "Über"
|
407 |
|
408 |
+
#: inc/php/sidebar.php:27
|
409 |
msgid "This plugin allows you to easily and safely add your custom functions (PHP code) directly out of your WordPress Admin Area, without the need to have an external editor."
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: inc/php/sidebar.php:32
|
413 |
msgid "Help"
|
414 |
msgstr "Hilfe"
|
415 |
|
416 |
+
#: inc/php/sidebar.php:34
|
417 |
msgid "If you have a question, please read the information in the FAQ section."
|
418 |
msgstr "Wenn Sie Fragen haben, lesen Sie bitte auch die Fragen im FAQ Bereich."
|
419 |
|
436 |
#. Author URI of the plugin/theme
|
437 |
msgid "https://www.spacexchimp.com"
|
438 |
msgstr "https://www.spacexchimp.com"
|
439 |
+
|
440 |
+
#~ msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
|
441 |
+
#~ msgstr "Hallo! Meine name ist %s Arthur Gareginyan %s und ich bin der Gründer von %s Space X-Chimp %s."
|
442 |
+
|
443 |
+
#~ 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."
|
444 |
+
#~ 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/my-custom-functions-es_ES.mo
CHANGED
Binary file
|
languages/my-custom-functions-es_ES.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\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"
|
@@ -86,7 +86,7 @@ msgstr "Uso"
|
|
86 |
msgid "F.A.Q."
|
87 |
msgstr "Preguntas ?"
|
88 |
|
89 |
-
#: inc/php/page.php:48 inc/php/settings.php:53 inc/php/sidebar.php:
|
90 |
msgid "Support"
|
91 |
msgstr "Soporte"
|
92 |
|
@@ -349,28 +349,28 @@ msgid "You can ask your question on %s this page %s. But please keep in mind tha
|
|
349 |
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."
|
350 |
|
351 |
#: inc/php/page.php:232
|
352 |
-
msgid "Support
|
353 |
-
msgstr "
|
354 |
|
355 |
-
#: inc/php/page.php:240 inc/php/settings.php:60 inc/php/sidebar.php:
|
356 |
msgid "Donate with PayPal"
|
357 |
msgstr "Donar con PayPal"
|
358 |
|
359 |
#: inc/php/page.php:245
|
360 |
#, php-format
|
361 |
-
msgid "Hello! My name is %s Arthur
|
362 |
-
msgstr "
|
363 |
|
364 |
#: inc/php/page.php:253
|
365 |
-
msgid "
|
366 |
-
msgstr "
|
367 |
|
368 |
#: inc/php/page.php:254
|
369 |
-
msgid "
|
370 |
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."
|
371 |
|
372 |
#: inc/php/page.php:255
|
373 |
-
msgid "If you appreciate
|
374 |
msgstr "Si aprecias mi trabajo, puedes comprarme un café!"
|
375 |
|
376 |
#: inc/php/page.php:256
|
@@ -389,27 +389,31 @@ msgstr ""
|
|
389 |
msgid "Save changes"
|
390 |
msgstr "Guardar Cambios"
|
391 |
|
392 |
-
#: inc/php/settings.php:55 inc/php/sidebar.php:
|
393 |
-
msgid "
|
394 |
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."
|
395 |
|
396 |
-
#: inc/php/settings.php:62 inc/php/sidebar.php:
|
397 |
msgid "Thanks for your support!"
|
398 |
msgstr "¡Gracias por tu apoyo!"
|
399 |
|
400 |
#: inc/php/sidebar.php:16
|
|
|
|
|
|
|
|
|
401 |
msgid "About"
|
402 |
msgstr "Acerca de"
|
403 |
|
404 |
-
#: inc/php/sidebar.php:
|
405 |
msgid "This plugin allows you to easily and safely add your custom functions (PHP code) directly out of your WordPress Admin Area, without the need to have an external editor."
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: inc/php/sidebar.php:
|
409 |
msgid "Help"
|
410 |
msgstr "Ayuda"
|
411 |
|
412 |
-
#: inc/php/sidebar.php:
|
413 |
msgid "If you have a question, please read the information in the FAQ section."
|
414 |
msgstr "Si tiene alguna pregunta, lee la información en la sección de preguntas frecuentes."
|
415 |
|
@@ -432,3 +436,9 @@ msgstr "Space X-Chimp"
|
|
432 |
#. Author URI of the plugin/theme
|
433 |
msgid "https://www.spacexchimp.com"
|
434 |
msgstr "https://www.spacexchimp.com"
|
|
|
|
|
|
|
|
|
|
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
+
"POT-Creation-Date: 2018-07-24 00:34+0300\n"
|
7 |
+
"PO-Revision-Date: 2018-07-24 00:34+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Spanish\n"
|
10 |
"Language: es_ES\n"
|
86 |
msgid "F.A.Q."
|
87 |
msgstr "Preguntas ?"
|
88 |
|
89 |
+
#: inc/php/page.php:48 inc/php/settings.php:53 inc/php/sidebar.php:47
|
90 |
msgid "Support"
|
91 |
msgstr "Soporte"
|
92 |
|
349 |
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."
|
350 |
|
351 |
#: inc/php/page.php:232
|
352 |
+
msgid "Support Us"
|
353 |
+
msgstr "¡Apoyanos!"
|
354 |
|
355 |
+
#: inc/php/page.php:240 inc/php/settings.php:60 inc/php/sidebar.php:54
|
356 |
msgid "Donate with PayPal"
|
357 |
msgstr "Donar con PayPal"
|
358 |
|
359 |
#: inc/php/page.php:245
|
360 |
#, php-format
|
361 |
+
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."
|
362 |
+
msgstr ""
|
363 |
|
364 |
#: inc/php/page.php:253
|
365 |
+
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."
|
366 |
+
msgstr ""
|
367 |
|
368 |
#: inc/php/page.php:254
|
369 |
+
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."
|
370 |
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."
|
371 |
|
372 |
#: inc/php/page.php:255
|
373 |
+
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
374 |
msgstr "Si aprecias mi trabajo, puedes comprarme un café!"
|
375 |
|
376 |
#: inc/php/page.php:256
|
389 |
msgid "Save changes"
|
390 |
msgstr "Guardar Cambios"
|
391 |
|
392 |
+
#: inc/php/settings.php:55 inc/php/sidebar.php:49
|
393 |
+
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."
|
394 |
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."
|
395 |
|
396 |
+
#: inc/php/settings.php:62 inc/php/sidebar.php:56
|
397 |
msgid "Thanks for your support!"
|
398 |
msgstr "¡Gracias por tu apoyo!"
|
399 |
|
400 |
#: inc/php/sidebar.php:16
|
401 |
+
msgid "We are «Space X-Chimp»"
|
402 |
+
msgstr ""
|
403 |
+
|
404 |
+
#: inc/php/sidebar.php:25
|
405 |
msgid "About"
|
406 |
msgstr "Acerca de"
|
407 |
|
408 |
+
#: inc/php/sidebar.php:27
|
409 |
msgid "This plugin allows you to easily and safely add your custom functions (PHP code) directly out of your WordPress Admin Area, without the need to have an external editor."
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: inc/php/sidebar.php:32
|
413 |
msgid "Help"
|
414 |
msgstr "Ayuda"
|
415 |
|
416 |
+
#: inc/php/sidebar.php:34
|
417 |
msgid "If you have a question, please read the information in the FAQ section."
|
418 |
msgstr "Si tiene alguna pregunta, lee la información en la sección de preguntas frecuentes."
|
419 |
|
436 |
#. Author URI of the plugin/theme
|
437 |
msgid "https://www.spacexchimp.com"
|
438 |
msgstr "https://www.spacexchimp.com"
|
439 |
+
|
440 |
+
#~ msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
|
441 |
+
#~ msgstr "¡Hola! Mi nombre es %s Arthur Gareginyan %s y soy el fundador de %s Space X-Chimp %s."
|
442 |
+
|
443 |
+
#~ 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."
|
444 |
+
#~ 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/my-custom-functions-fr_FR.mo
CHANGED
Binary file
|
languages/my-custom-functions-fr_FR.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
-
"POT-Creation-Date: 2018-07-
|
7 |
-
"PO-Revision-Date: 2018-07-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: French\n"
|
10 |
"Language: fr_FR\n"
|
@@ -55,7 +55,7 @@ msgstr ""
|
|
55 |
|
56 |
#: inc/php/messages.php:91
|
57 |
msgid "Custom functions updated successfully."
|
58 |
-
msgstr "Custom functions mis à jour avec succès"
|
59 |
|
60 |
#: inc/php/messages.php:107
|
61 |
msgid "Sorry, but your code causes a \"Fatal error\", so it is not applied!"
|
@@ -86,7 +86,7 @@ msgstr ""
|
|
86 |
msgid "F.A.Q."
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: inc/php/page.php:48 inc/php/settings.php:53 inc/php/sidebar.php:
|
90 |
msgid "Support"
|
91 |
msgstr ""
|
92 |
|
@@ -349,28 +349,28 @@ msgid "You can ask your question on %s this page %s. But please keep in mind tha
|
|
349 |
msgstr ""
|
350 |
|
351 |
#: inc/php/page.php:232
|
352 |
-
msgid "Support
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: inc/php/page.php:240 inc/php/settings.php:60 inc/php/sidebar.php:
|
356 |
msgid "Donate with PayPal"
|
357 |
msgstr ""
|
358 |
|
359 |
#: inc/php/page.php:245
|
360 |
#, php-format
|
361 |
-
msgid "Hello! My name is %s Arthur
|
362 |
msgstr ""
|
363 |
|
364 |
#: inc/php/page.php:253
|
365 |
-
msgid "
|
366 |
msgstr ""
|
367 |
|
368 |
#: inc/php/page.php:254
|
369 |
-
msgid "
|
370 |
msgstr ""
|
371 |
|
372 |
#: inc/php/page.php:255
|
373 |
-
msgid "If you appreciate
|
374 |
msgstr ""
|
375 |
|
376 |
#: inc/php/page.php:256
|
@@ -389,27 +389,31 @@ msgstr ""
|
|
389 |
msgid "Save changes"
|
390 |
msgstr "Enregistrer"
|
391 |
|
392 |
-
#: inc/php/settings.php:55 inc/php/sidebar.php:
|
393 |
-
msgid "
|
394 |
msgstr "Je suis un développeur indépendant, sans revenus réguliers, aussi chaque modeste contribution m'aide à couvrir les frais et me permet de consacrer plus de temps à créer des choses que vous appréciez."
|
395 |
|
396 |
-
#: inc/php/settings.php:62 inc/php/sidebar.php:
|
397 |
msgid "Thanks for your support!"
|
398 |
msgstr "Merci pour votre soutien !"
|
399 |
|
400 |
#: inc/php/sidebar.php:16
|
|
|
|
|
|
|
|
|
401 |
msgid "About"
|
402 |
msgstr "A propos"
|
403 |
|
404 |
-
#: inc/php/sidebar.php:
|
405 |
msgid "This plugin allows you to easily and safely add your custom functions (PHP code) directly out of your WordPress Admin Area, without the need to have an external editor."
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: inc/php/sidebar.php:
|
409 |
msgid "Help"
|
410 |
msgstr "Aide"
|
411 |
|
412 |
-
#: inc/php/sidebar.php:
|
413 |
msgid "If you have a question, please read the information in the FAQ section."
|
414 |
msgstr "Vous souhaitez nous contacter ? Vous avez besoin d'aide ?"
|
415 |
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
+
"POT-Creation-Date: 2018-07-24 00:34+0300\n"
|
7 |
+
"PO-Revision-Date: 2018-07-24 00:35+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: French\n"
|
10 |
"Language: fr_FR\n"
|
55 |
|
56 |
#: inc/php/messages.php:91
|
57 |
msgid "Custom functions updated successfully."
|
58 |
+
msgstr "Custom functions mis à jour avec succès."
|
59 |
|
60 |
#: inc/php/messages.php:107
|
61 |
msgid "Sorry, but your code causes a \"Fatal error\", so it is not applied!"
|
86 |
msgid "F.A.Q."
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: inc/php/page.php:48 inc/php/settings.php:53 inc/php/sidebar.php:47
|
90 |
msgid "Support"
|
91 |
msgstr ""
|
92 |
|
349 |
msgstr ""
|
350 |
|
351 |
#: inc/php/page.php:232
|
352 |
+
msgid "Support Us"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: inc/php/page.php:240 inc/php/settings.php:60 inc/php/sidebar.php:54
|
356 |
msgid "Donate with PayPal"
|
357 |
msgstr ""
|
358 |
|
359 |
#: inc/php/page.php:245
|
360 |
#, php-format
|
361 |
+
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."
|
362 |
msgstr ""
|
363 |
|
364 |
#: inc/php/page.php:253
|
365 |
+
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."
|
366 |
msgstr ""
|
367 |
|
368 |
#: inc/php/page.php:254
|
369 |
+
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."
|
370 |
msgstr ""
|
371 |
|
372 |
#: inc/php/page.php:255
|
373 |
+
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
374 |
msgstr ""
|
375 |
|
376 |
#: inc/php/page.php:256
|
389 |
msgid "Save changes"
|
390 |
msgstr "Enregistrer"
|
391 |
|
392 |
+
#: inc/php/settings.php:55 inc/php/sidebar.php:49
|
393 |
+
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."
|
394 |
msgstr "Je suis un développeur indépendant, sans revenus réguliers, aussi chaque modeste contribution m'aide à couvrir les frais et me permet de consacrer plus de temps à créer des choses que vous appréciez."
|
395 |
|
396 |
+
#: inc/php/settings.php:62 inc/php/sidebar.php:56
|
397 |
msgid "Thanks for your support!"
|
398 |
msgstr "Merci pour votre soutien !"
|
399 |
|
400 |
#: inc/php/sidebar.php:16
|
401 |
+
msgid "We are «Space X-Chimp»"
|
402 |
+
msgstr ""
|
403 |
+
|
404 |
+
#: inc/php/sidebar.php:25
|
405 |
msgid "About"
|
406 |
msgstr "A propos"
|
407 |
|
408 |
+
#: inc/php/sidebar.php:27
|
409 |
msgid "This plugin allows you to easily and safely add your custom functions (PHP code) directly out of your WordPress Admin Area, without the need to have an external editor."
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: inc/php/sidebar.php:32
|
413 |
msgid "Help"
|
414 |
msgstr "Aide"
|
415 |
|
416 |
+
#: inc/php/sidebar.php:34
|
417 |
msgid "If you have a question, please read the information in the FAQ section."
|
418 |
msgstr "Vous souhaitez nous contacter ? Vous avez besoin d'aide ?"
|
419 |
|
languages/my-custom-functions-nl_NL.mo
ADDED
Binary file
|
languages/my-custom-functions-nl_NL.po
ADDED
@@ -0,0 +1,444 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of plugin - My Custom Functions - in Dutch (Netherlands)
|
2 |
+
# This file is distributed under the same license as the plugin - My Custom Functions.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"Project-Id-Version: My Custom Functions\n"
|
6 |
+
"POT-Creation-Date: 2018-07-24 00:35+0300\n"
|
7 |
+
"PO-Revision-Date: 2018-07-24 00:35+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: my-custom-functions.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:33 inc/php/core.php:48
|
28 |
+
msgid "Upgrade to PRO"
|
29 |
+
msgstr "Upgrade naar PRO"
|
30 |
+
|
31 |
+
#: inc/php/core.php:47
|
32 |
+
msgid "Donate"
|
33 |
+
msgstr "Doe een gift"
|
34 |
+
|
35 |
+
#: inc/php/core.php:63
|
36 |
+
msgid "PHP Inserter"
|
37 |
+
msgstr "PHP Inserter"
|
38 |
+
|
39 |
+
#: inc/php/messages.php:26
|
40 |
+
msgid "Hello. We are the team of Space X-Chimp."
|
41 |
+
msgstr "Hallo. Wij zijn het team van Space X-Chimp."
|
42 |
+
|
43 |
+
#: inc/php/messages.php:28
|
44 |
+
#, php-format
|
45 |
+
msgid "Thank you for installing our plugin! We hope you will love it! %s"
|
46 |
+
msgstr "Bedankt voor het installeren van onze plug-in! We hopen dat je het geweldig zult vinden! %s"
|
47 |
+
|
48 |
+
#: inc/php/messages.php:68
|
49 |
+
msgid "You have installed an old version of this plugin."
|
50 |
+
msgstr "Je hebt een oudere versie van deze plug-in geïnstalleerd."
|
51 |
+
|
52 |
+
#: inc/php/messages.php:69
|
53 |
+
msgid "Please update the plugin to the latest version, and all will be fine."
|
54 |
+
msgstr "Update de plug-in naar de nieuwste versie en alles komt goed."
|
55 |
+
|
56 |
+
#: inc/php/messages.php:91
|
57 |
+
msgid "Custom functions updated successfully."
|
58 |
+
msgstr "Aangepaste functies zijn geüpdated."
|
59 |
+
|
60 |
+
#: inc/php/messages.php:107
|
61 |
+
msgid "Sorry, but your code causes a \"Fatal error\", so it is not applied!"
|
62 |
+
msgstr "Sorry, maar uw code veroorzaakt een \"Fatale fout\", dus deze wordt niet toegepast!"
|
63 |
+
|
64 |
+
#: inc/php/messages.php:108
|
65 |
+
msgid "Please, check the code and try again."
|
66 |
+
msgstr "Controleer de code, en probeer het opnieuw."
|
67 |
+
|
68 |
+
#: inc/php/page.php:32
|
69 |
+
#, php-format
|
70 |
+
msgid "by %s Space X-Chimp %s"
|
71 |
+
msgstr "door %s Space X-Chimp %s"
|
72 |
+
|
73 |
+
#: inc/php/page.php:38
|
74 |
+
msgid "Version"
|
75 |
+
msgstr "Versie"
|
76 |
+
|
77 |
+
#: inc/php/page.php:45
|
78 |
+
msgid "Main"
|
79 |
+
msgstr "Hoofd"
|
80 |
+
|
81 |
+
#: inc/php/page.php:46
|
82 |
+
msgid "Usage"
|
83 |
+
msgstr "Gebruik"
|
84 |
+
|
85 |
+
#: inc/php/page.php:47
|
86 |
+
msgid "F.A.Q."
|
87 |
+
msgstr "F.A.Q."
|
88 |
+
|
89 |
+
#: inc/php/page.php:48 inc/php/settings.php:53 inc/php/sidebar.php:47
|
90 |
+
msgid "Support"
|
91 |
+
msgstr "Ondersteuning"
|
92 |
+
|
93 |
+
#: inc/php/page.php:49
|
94 |
+
msgid "Store"
|
95 |
+
msgstr "Winkel"
|
96 |
+
|
97 |
+
#: inc/php/page.php:65
|
98 |
+
msgid "Usage Instructions"
|
99 |
+
msgstr "Gebruiksinstructies"
|
100 |
+
|
101 |
+
#: inc/php/page.php:67
|
102 |
+
msgid "To add your custom functions (the PHP code) to your website, simply follow these steps:"
|
103 |
+
msgstr "Om je eigen aangepaste functies (de PHP code) aan je website toe te voegen, volg deze simpele stappen:"
|
104 |
+
|
105 |
+
#: inc/php/page.php:69
|
106 |
+
msgid "Go to the \"Main\" tab."
|
107 |
+
msgstr "Ga naar het tabblad “Hoofd”."
|
108 |
+
|
109 |
+
#: inc/php/page.php:70
|
110 |
+
msgid "Place your PHP code in the field."
|
111 |
+
msgstr "Plaats je PHP code in het veld."
|
112 |
+
|
113 |
+
#: inc/php/page.php:71
|
114 |
+
msgid "Example of PHP code:"
|
115 |
+
msgstr "Voorbeeld van PHP code:"
|
116 |
+
|
117 |
+
#: inc/php/page.php:77 inc/php/page.php:78 inc/php/page.php:84
|
118 |
+
msgid "Note!"
|
119 |
+
msgstr "Opmerking!"
|
120 |
+
|
121 |
+
#: inc/php/page.php:77
|
122 |
+
msgid "Please do not wrap your PHP code in the <code><?php</code>...<code>?></code> HTML tags."
|
123 |
+
msgstr "Plaat a.u.b. je code niet tussen <code><?php</code>…<code>?></code> HTML tags."
|
124 |
+
|
125 |
+
#: inc/php/page.php:78
|
126 |
+
msgid "Before use, please read the instructions on the F.A.Q. tab on what to do in case of a website crash."
|
127 |
+
msgstr "Lees voor gebruik de instructies op de F.A.Q. Bekijk wat te doen in het geval van een website-crash."
|
128 |
+
|
129 |
+
#: inc/php/page.php:80
|
130 |
+
msgid "Switch the toggle to the \"ON\" position."
|
131 |
+
msgstr "Druk de AAN / UIT-schakelaar naar de stand AAN."
|
132 |
+
|
133 |
+
#: inc/php/page.php:81
|
134 |
+
msgid "Click the \"Save changes\" button."
|
135 |
+
msgstr "Klik op de knop \"Wijzigingen opslaan\"."
|
136 |
+
|
137 |
+
#: inc/php/page.php:82
|
138 |
+
msgid "Enjoy the result of applying your PHP code."
|
139 |
+
msgstr "Geniet van het resultaat door uw PHP-code toe te passen."
|
140 |
+
|
141 |
+
#: inc/php/page.php:82
|
142 |
+
msgid "It's that simple!"
|
143 |
+
msgstr "Zo eenvoudig is het!"
|
144 |
+
|
145 |
+
#: inc/php/page.php:85
|
146 |
+
#, php-format
|
147 |
+
msgid "If you want more options then %s tell us %s and we will be happy to add it."
|
148 |
+
msgstr "Wilt u meer opties dan %s vertel ons %s en wij zullen graag toevoegen."
|
149 |
+
|
150 |
+
#: inc/php/page.php:99
|
151 |
+
msgid "Frequently Asked Questions"
|
152 |
+
msgstr "Veel voorkomende vragen (FAQ)"
|
153 |
+
|
154 |
+
#: inc/php/page.php:103
|
155 |
+
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
156 |
+
msgstr "Als je een vraag hebt, lees dan eerst de Veel voorkomende vragen (FAQ) hieronder. Misschien staat het antwoord ertussen."
|
157 |
+
|
158 |
+
#: inc/php/page.php:125
|
159 |
+
msgid "Will this plugin work on my WordPress.COM website?"
|
160 |
+
msgstr "Werkt deze plugin op mijn WordPress.COM website?"
|
161 |
+
|
162 |
+
#: inc/php/page.php:126
|
163 |
+
msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
|
164 |
+
msgstr "Sorry, deze plug-in is alleen beschikbaar voor gebruik op zelf-gehoste (WordPress.ORG) websites."
|
165 |
+
|
166 |
+
#: inc/php/page.php:128
|
167 |
+
msgid "Can I use this plugin on my language?"
|
168 |
+
msgstr "Kan ik deze plug-in in mijn eigen taal gebruiken?"
|
169 |
+
|
170 |
+
#: inc/php/page.php:129
|
171 |
+
msgid "Yes. This plugin is ready for translation and has already been translated into several languages."
|
172 |
+
msgstr "Ja. Deze plug-in is klaar voor vertaling en is reeds in verschillende talen vertaald."
|
173 |
+
|
174 |
+
#: inc/php/page.php:131
|
175 |
+
#, php-format
|
176 |
+
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."
|
177 |
+
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."
|
178 |
+
|
179 |
+
#: inc/php/page.php:136
|
180 |
+
msgid "Maybe not all existed translations are up to date. You are welcome to contribute corrections!"
|
181 |
+
msgstr "Misschien zijn niet alle bestaande vertalingen up-to-date of correct. Je bent van harte welkom om correcties bij te dragen!"
|
182 |
+
|
183 |
+
#: inc/php/page.php:137
|
184 |
+
msgid "Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!"
|
185 |
+
msgstr "Veel plugin-gebruikers zouden blij zijn als je je vertaling met de community deelt. Bedankt voor je bijdrage!"
|
186 |
+
|
187 |
+
#: inc/php/page.php:139
|
188 |
+
msgid "How does it work?"
|
189 |
+
msgstr "Hoe werkt het?"
|
190 |
+
|
191 |
+
#: inc/php/page.php:140
|
192 |
+
msgid "On the \"Main\" tab, place your PHP code in the field, switch the toggle to the \"ON\" position and click the \"Save changes\" button. Enjoy the result of applying your PHP code. It's that simple!"
|
193 |
+
msgstr "Plaats op het tabblad “Hoofd” uw PHP-code in het veld, zet de schakelaar in de positie “AAN” en klik op de knop “Wijzigingen opslaan”. Geniet van het resultaat van het toepassen van je PHP-code. Het is zo simpel!"
|
194 |
+
|
195 |
+
#: inc/php/page.php:142
|
196 |
+
msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
|
197 |
+
msgstr "Kan ik HTML/CSS/JS code geïntegreerd in PHP-code gebruiken?"
|
198 |
+
|
199 |
+
#: inc/php/page.php:143
|
200 |
+
msgid "Yes. But you need to do it properly, like this:"
|
201 |
+
msgstr "Ja. Maar je moet het goed doen, zoals dit:"
|
202 |
+
|
203 |
+
#: inc/php/page.php:153
|
204 |
+
msgid "How much of PHP code (characters) I can enter in the text field?"
|
205 |
+
msgstr "Hoe veel PHP code (tekens) kan ik invoeren?"
|
206 |
+
|
207 |
+
#: inc/php/page.php:154
|
208 |
+
msgid "We don't limit the number of characters."
|
209 |
+
msgstr "Er is geen beperking op het aantal tekens."
|
210 |
+
|
211 |
+
#: inc/php/page.php:156
|
212 |
+
msgid "On the plugin settings page, an error message appears. What could be wrong?"
|
213 |
+
msgstr "Op de plug-in instellingen pagina verschijnt een fout-melding. Wat kan er fout zijn?"
|
214 |
+
|
215 |
+
#: inc/php/page.php:157
|
216 |
+
msgid "Here are a few of the most likely causes of the error message:"
|
217 |
+
msgstr "Hier zijn enkele van de meest waarschijnlijke oorzaken van de foutmelding:"
|
218 |
+
|
219 |
+
#: inc/php/page.php:159
|
220 |
+
msgid "You make a syntax error in the code that you have entered. Check the syntax of your code and try again."
|
221 |
+
msgstr "Je maakt een syntaxisfout in de code die je hebt ingevoerd. Controleer de syntaxis van je code en probeer het opnieuw."
|
222 |
+
|
223 |
+
#: inc/php/page.php:160
|
224 |
+
msgid "You entered two functions with the same name. Use a unique names for your functions."
|
225 |
+
msgstr "U hebt twee functies met dezelfde naam ingevoerd. Gebruik een unieke naam voor uw functies."
|
226 |
+
|
227 |
+
#: inc/php/page.php:161
|
228 |
+
msgid "You have entered function with a name that is already occupied by another function. Use a unique name for your function."
|
229 |
+
msgstr "Je hebt de functie ingevoerd met een naam die al in gebruik is door een andere functie. Gebruik een unieke naam voor je functie."
|
230 |
+
|
231 |
+
#: inc/php/page.php:162
|
232 |
+
msgid "You are trying to overwrite an existing function (of WordPress, theme, or plugin). Instead, use filters and hooks."
|
233 |
+
msgstr "Je probeert een bestaande functie (van WordPress, thema of plug-in) te overschrijven. Gebruik in plaats daarvan filters en haken."
|
234 |
+
|
235 |
+
#: inc/php/page.php:165
|
236 |
+
msgid "Does this plugin requires any modification of the theme?"
|
237 |
+
msgstr "Heeft deze plug-in enige aanpassing van het thema nodig?"
|
238 |
+
|
239 |
+
#: inc/php/page.php:166
|
240 |
+
msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
|
241 |
+
msgstr "Absoluut niet. Deze plug-in kan volledig worden geconfigureerd via de pagina met plugin-instellingen."
|
242 |
+
|
243 |
+
#: inc/php/page.php:168
|
244 |
+
msgid "Does this require any knowledge of HTML or CSS?"
|
245 |
+
msgstr "Vereist dit enige kennis van HTML of CSS?"
|
246 |
+
|
247 |
+
#: inc/php/page.php:169
|
248 |
+
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."
|
249 |
+
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."
|
250 |
+
|
251 |
+
#: inc/php/page.php:171
|
252 |
+
msgid "It's not working. What could be wrong?"
|
253 |
+
msgstr "Het werkt niet. Wat kan er fout zijn?"
|
254 |
+
|
255 |
+
#: inc/php/page.php:172
|
256 |
+
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."
|
257 |
+
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."
|
258 |
+
|
259 |
+
#: inc/php/page.php:173
|
260 |
+
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."
|
261 |
+
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."
|
262 |
+
|
263 |
+
#: inc/php/page.php:175
|
264 |
+
msgid "What to do if this plugin crashed the website?"
|
265 |
+
msgstr "Wat te doen als deze plug-in de website heeft gecrasht?"
|
266 |
+
|
267 |
+
#: inc/php/page.php:176
|
268 |
+
msgid "This plugin has a built-in functions for checking the custom code for syntax errors, duplicate functions names, and etc. But plugin is not perfect, so there are times when the entered custom code causes the error and white screen (WSOD). This is due to the fact that your custom code has a syntax error that this plugin could not detect. When this happens with you, please perform the following steps."
|
269 |
+
msgstr "Deze plugin heeft ingebouwde functies voor het controleren van de aangepaste code op syntaxisfouten, dubbele functies namen en enz. Maar plugin is niet perfect, het is dus mogelijk dat de ingevoerde code een foutbericht en een wit scherm (WSOD) veroorzaakt. Dit is de wijten aan het feit dat uw aangepaste code een syntaxisfout heeft, die door deze plugin kon niet worden gevonden. Wanneer dit met gebeurt, voer dan de volgende stappen uit."
|
270 |
+
|
271 |
+
#: inc/php/page.php:178
|
272 |
+
msgid "Access your server via FTP or SFTP. If you aren't sure how usually your web hosting provider will have instructions somewhere on their website."
|
273 |
+
msgstr "Benader je server via FTP of SFTP. Als u niet zeker bent hoe, vaak heeft je webhostingprovider ergens op hun website instructies staan."
|
274 |
+
|
275 |
+
#: inc/php/page.php:179
|
276 |
+
msgid "Browse to the directory <code>wp-content/plugins/my-custom-functions/</code>. Please contact your web hosting company to get help if you can't find this folder."
|
277 |
+
msgstr "Blader naar de map <code>wp-content/plugins/my-custom-functions/</code> . Neem contact op met je web hosting bedrijf om hulp te krijgen als je deze map niet kunt vinden."
|
278 |
+
|
279 |
+
#: inc/php/page.php:180
|
280 |
+
msgid "Rename the file <code>START</code> to <code>STOP</code>. This will stop the execution of your custom code."
|
281 |
+
msgstr "Hernoem het bestand <code>START</code> naar <code>STOP</code>. Hiermee stopt u het uitvoeren van uw aangepaste code."
|
282 |
+
|
283 |
+
#: inc/php/page.php:181
|
284 |
+
msgid "Log in to Admin Area of your WordPress website."
|
285 |
+
msgstr "Log in op het Admin-gedeelte van uw WordPress-website."
|
286 |
+
|
287 |
+
#: inc/php/page.php:182
|
288 |
+
msgid "Go to the plugin settings page <code>Settings</code> ➡ <code>PHP Inserter</code>."
|
289 |
+
msgstr "Ga naar de plug-in instellingen pagina <code>Instellingen</code> ➡ <code>PHP Inserter</code>."
|
290 |
+
|
291 |
+
#: inc/php/page.php:183
|
292 |
+
msgid "Edit/fix your custom code that you entered before the crash."
|
293 |
+
msgstr "Edit/repareer je custos code welke je hebt ingevoerd voor de crash."
|
294 |
+
|
295 |
+
#: inc/php/page.php:184
|
296 |
+
msgid "Return to the plugin folder and rename the file <code>STOP</code> to <code>START</code> and you're done!"
|
297 |
+
msgstr "Keer terug naar de plug-in directorie en verander de naam van het bestand <code>STOP</code> naar <code>START</code> en je bent klaar!"
|
298 |
+
|
299 |
+
#: inc/php/page.php:186
|
300 |
+
msgid "This plugin stored you entered code in the database of your website. For getting your code, you also can go to the <code>Database</code> ➡ Table <code>wp_options</code> ➡ Option <code>spacexchimp_p001_settings</code> ➡ <code>option_value</code>."
|
301 |
+
msgstr "Deze plug-in heeft de door jouw ingevoerde code opgeslagen in de database van je website. Om je code te verkrijgen, kun je ook naar <code>Database</code> ➡ Table <code>wp_options</code> ➡ Option <code>spacexchimp_p001_settings</code> ➡ <code>option_value</code> gaan."
|
302 |
+
|
303 |
+
#: inc/php/page.php:187
|
304 |
+
msgid "We are already working on a feature to automatically stop the execution of users custom PHP code for cases when this plugin could not detect the error, and this caused the inaccessibility of the website."
|
305 |
+
msgstr "We zijn bezig met het maken van een optie om de uitvoering van PHP-code automatisch te stoppen, als de plugin geen fout kon detecteren en de PHP-code wel een onbereikbare website veroorzaakt."
|
306 |
+
|
307 |
+
#: inc/php/page.php:189
|
308 |
+
msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
|
309 |
+
msgstr "De laatste Wordpress update zorgt ervoor dat ik mijn website niet kan bewerken als ik deze plugin gebruik. Waarom is dit?"
|
310 |
+
|
311 |
+
#: inc/php/page.php:190
|
312 |
+
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."
|
313 |
+
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."
|
314 |
+
|
315 |
+
#: inc/php/page.php:192
|
316 |
+
msgid "Where to report bug if found?"
|
317 |
+
msgstr "Waar kan een bug gerapporteerd worden indien gevonden?"
|
318 |
+
|
319 |
+
#: inc/php/page.php:194
|
320 |
+
#, php-format
|
321 |
+
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!"
|
322 |
+
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!"
|
323 |
+
|
324 |
+
#: inc/php/page.php:200
|
325 |
+
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
326 |
+
msgstr "Waar kan ik ideeën of suggesties delen om de plug-in beter te maken?"
|
327 |
+
|
328 |
+
#: inc/php/page.php:202
|
329 |
+
#, php-format
|
330 |
+
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!"
|
331 |
+
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!"
|
332 |
+
|
333 |
+
#: inc/php/page.php:208
|
334 |
+
msgid "I love this plugin! Can I help somehow?"
|
335 |
+
msgstr "Ik ben dol op deze plug-in! Kan ik op de een of andere manier helpen?"
|
336 |
+
|
337 |
+
#: inc/php/page.php:210
|
338 |
+
#, php-format
|
339 |
+
msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
|
340 |
+
msgstr "Ja, alle bijdragen zijn van harte welkom! Ga naar %s onze donatiepagina %s. Dank je!"
|
341 |
+
|
342 |
+
#: inc/php/page.php:216
|
343 |
+
msgid "My question wasn't answered here."
|
344 |
+
msgstr "Mij vraag is hier niet beantwoord."
|
345 |
+
|
346 |
+
#: inc/php/page.php:218
|
347 |
+
#, php-format
|
348 |
+
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."
|
349 |
+
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."
|
350 |
+
|
351 |
+
#: inc/php/page.php:232
|
352 |
+
msgid "Support Us"
|
353 |
+
msgstr "Ondersteun ons"
|
354 |
+
|
355 |
+
#: inc/php/page.php:240 inc/php/settings.php:60 inc/php/sidebar.php:54
|
356 |
+
msgid "Donate with PayPal"
|
357 |
+
msgstr "Doneer via PayPal"
|
358 |
+
|
359 |
+
#: inc/php/page.php:245
|
360 |
+
#, php-format
|
361 |
+
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."
|
362 |
+
msgstr ""
|
363 |
+
|
364 |
+
#: inc/php/page.php:253
|
365 |
+
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."
|
366 |
+
msgstr ""
|
367 |
+
|
368 |
+
#: inc/php/page.php:254
|
369 |
+
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."
|
370 |
+
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."
|
371 |
+
|
372 |
+
#: inc/php/page.php:255
|
373 |
+
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
374 |
+
msgstr "Als je mijn werk waardeert, kun je een koffie voor me kopen!"
|
375 |
+
|
376 |
+
#: inc/php/page.php:256
|
377 |
+
msgid "Thank you for your support!"
|
378 |
+
msgstr "Bedankt voor je ondersteuning!"
|
379 |
+
|
380 |
+
#: inc/php/settings.php:30
|
381 |
+
msgid "Functions (PHP code)"
|
382 |
+
msgstr "Functies (PHP code)"
|
383 |
+
|
384 |
+
#: inc/php/settings.php:45
|
385 |
+
msgid "Enter your PHP functions here"
|
386 |
+
msgstr "Voer hier uw PHP-functies in"
|
387 |
+
|
388 |
+
#: inc/php/settings.php:50
|
389 |
+
msgid "Save changes"
|
390 |
+
msgstr "Wijzigingen opslaan"
|
391 |
+
|
392 |
+
#: inc/php/settings.php:55 inc/php/sidebar.php:49
|
393 |
+
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."
|
394 |
+
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."
|
395 |
+
|
396 |
+
#: inc/php/settings.php:62 inc/php/sidebar.php:56
|
397 |
+
msgid "Thanks for your support!"
|
398 |
+
msgstr "Bedankt voor uw steun!"
|
399 |
+
|
400 |
+
#: inc/php/sidebar.php:16
|
401 |
+
msgid "We are «Space X-Chimp»"
|
402 |
+
msgstr ""
|
403 |
+
|
404 |
+
#: inc/php/sidebar.php:25
|
405 |
+
msgid "About"
|
406 |
+
msgstr "Over"
|
407 |
+
|
408 |
+
#: inc/php/sidebar.php:27
|
409 |
+
msgid "This plugin allows you to easily and safely add your custom functions (PHP code) directly out of your WordPress Admin Area, without the need to have an external editor."
|
410 |
+
msgstr "Met deze plug-in kunt u eenvoudig en veilig uw aangepaste functies (PHP-code) rechtstreeks toevoegen via uw WordPress-Admin, zonder dat u een externe editor nodig hebt."
|
411 |
+
|
412 |
+
#: inc/php/sidebar.php:32
|
413 |
+
msgid "Help"
|
414 |
+
msgstr "Help"
|
415 |
+
|
416 |
+
#: inc/php/sidebar.php:34
|
417 |
+
msgid "If you have a question, please read the information in the FAQ section."
|
418 |
+
msgstr "Als je een vraag hebt, lees dan de informatie in de FAQ-sectie."
|
419 |
+
|
420 |
+
#. Plugin Name of the plugin/theme
|
421 |
+
msgid "My Custom Functions"
|
422 |
+
msgstr "Mijn Persoonlijke Functies"
|
423 |
+
|
424 |
+
#. Plugin URI of the plugin/theme
|
425 |
+
msgid "https://github.com/ArthurGareginyan/my-custom-functions"
|
426 |
+
msgstr "https://github.com/ArthurGareginyan/my-custom-functions"
|
427 |
+
|
428 |
+
#. Description of the plugin/theme
|
429 |
+
msgid "Easily and safely add your custom functions (PHP code) directly out of your WordPress Admin Area, without the need to have an external editor."
|
430 |
+
msgstr "Voeg eenvoudig en veilig uw aangepaste functies (PHP-code) rechtstreeks toe via uw WordPress-Admin, zonder dat u een externe editor nodig hebt."
|
431 |
+
|
432 |
+
#. Author of the plugin/theme
|
433 |
+
msgid "Space X-Chimp"
|
434 |
+
msgstr "Space X-Chimp"
|
435 |
+
|
436 |
+
#. Author URI of the plugin/theme
|
437 |
+
msgid "https://www.spacexchimp.com"
|
438 |
+
msgstr "https://www.spacexchimp.com"
|
439 |
+
|
440 |
+
#~ msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
|
441 |
+
#~ msgstr "Hallo! Mijn naam is %s Arthur Gareginyan %s en ik ben de oprichter van %s Space X-Chimp %s."
|
442 |
+
|
443 |
+
#~ 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."
|
444 |
+
#~ 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/my-custom-functions-ru_RU.mo
CHANGED
Binary file
|
languages/my-custom-functions-ru_RU.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\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"
|
@@ -86,7 +86,7 @@ msgstr "Применение"
|
|
86 |
msgid "F.A.Q."
|
87 |
msgstr "F.A.Q."
|
88 |
|
89 |
-
#: inc/php/page.php:48 inc/php/settings.php:53 inc/php/sidebar.php:
|
90 |
msgid "Support"
|
91 |
msgstr "Поддержка"
|
92 |
|
@@ -349,28 +349,28 @@ msgid "You can ask your question on %s this page %s. But please keep in mind tha
|
|
349 |
msgstr "Вы можете задать ваш вопрос на %s этой странице %s. Но имейте в виду, что этот плагин является бесплатным и без специальной поддержки, поэтому у нас нет возможности ответить на все вопросы."
|
350 |
|
351 |
#: inc/php/page.php:232
|
352 |
-
msgid "Support
|
353 |
-
msgstr "Поддержать
|
354 |
|
355 |
-
#: inc/php/page.php:240 inc/php/settings.php:60 inc/php/sidebar.php:
|
356 |
msgid "Donate with PayPal"
|
357 |
msgstr "Пожертвовать через Pay Pal"
|
358 |
|
359 |
#: inc/php/page.php:245
|
360 |
#, php-format
|
361 |
-
msgid "Hello! My name is %s Arthur
|
362 |
-
msgstr "
|
363 |
|
364 |
#: inc/php/page.php:253
|
365 |
-
msgid "
|
366 |
-
msgstr "
|
367 |
|
368 |
#: inc/php/page.php:254
|
369 |
-
msgid "
|
370 |
msgstr "Я трачу много времени и сил, пытаясь убедиться в том, что темы, плагины и другие вещи, которые я создаю, полезны и окончательное доказательство этого для меня состоит в том, что вы на самом деле хотите их использовать. Но Я независимый разработчик, без регулярного дохода, поэтому каждый небольшой вклад помогает мне покрыть расходы и позволяет тратить больше времени на создание программ для людей как вы."
|
371 |
|
372 |
#: inc/php/page.php:255
|
373 |
-
msgid "If you appreciate
|
374 |
msgstr "Если вы цените мою работу, то вы можете купить мне кофе!"
|
375 |
|
376 |
#: inc/php/page.php:256
|
@@ -389,27 +389,31 @@ msgstr ""
|
|
389 |
msgid "Save changes"
|
390 |
msgstr "Сохранить изменения"
|
391 |
|
392 |
-
#: inc/php/settings.php:55 inc/php/sidebar.php:
|
393 |
-
msgid "
|
394 |
msgstr "Я независимый разработчик, без регулярного дохода, так что каждый маленький вклад помогает мне покрыть затраты и позволяет тратить больше времени на создание программ для людей как вы."
|
395 |
|
396 |
-
#: inc/php/settings.php:62 inc/php/sidebar.php:
|
397 |
msgid "Thanks for your support!"
|
398 |
msgstr "Спасибо за вашу поддержку!"
|
399 |
|
400 |
#: inc/php/sidebar.php:16
|
|
|
|
|
|
|
|
|
401 |
msgid "About"
|
402 |
msgstr "О плагине"
|
403 |
|
404 |
-
#: inc/php/sidebar.php:
|
405 |
msgid "This plugin allows you to easily and safely add your custom functions (PHP code) directly out of your WordPress Admin Area, without the need to have an external editor."
|
406 |
msgstr "Это плагин даёт вам возможность легко и безопасно добавлять ваши пользовательские функции (код PHP) непосредственно из области администрирования WordPress без необходимости иметь внешний редактор."
|
407 |
|
408 |
-
#: inc/php/sidebar.php:
|
409 |
msgid "Help"
|
410 |
msgstr "Помощь"
|
411 |
|
412 |
-
#: inc/php/sidebar.php:
|
413 |
msgid "If you have a question, please read the information in the FAQ section."
|
414 |
msgstr "Если у вас есть вопрос, пожалуйста ознакомьтесь с информацией в разделе FAQ."
|
415 |
|
@@ -433,6 +437,12 @@ msgstr "Space X-Chimp"
|
|
433 |
msgid "https://www.spacexchimp.com"
|
434 |
msgstr "https://www.spacexchimp.com"
|
435 |
|
|
|
|
|
|
|
|
|
|
|
|
|
436 |
#~ msgid "Via FTP, go to the plugin folder (in <code>wp-content/plugins/my-custom-functions/</code>)."
|
437 |
#~ msgstr "Через FTP, перейдите в папку плагина (в <code>wp-content/plugins/my-custom-functions/</code>)."
|
438 |
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
+
"POT-Creation-Date: 2018-07-24 00:35+0300\n"
|
7 |
+
"PO-Revision-Date: 2018-07-24 00:35+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Russian\n"
|
10 |
"Language: ru_RU\n"
|
86 |
msgid "F.A.Q."
|
87 |
msgstr "F.A.Q."
|
88 |
|
89 |
+
#: inc/php/page.php:48 inc/php/settings.php:53 inc/php/sidebar.php:47
|
90 |
msgid "Support"
|
91 |
msgstr "Поддержка"
|
92 |
|
349 |
msgstr "Вы можете задать ваш вопрос на %s этой странице %s. Но имейте в виду, что этот плагин является бесплатным и без специальной поддержки, поэтому у нас нет возможности ответить на все вопросы."
|
350 |
|
351 |
#: inc/php/page.php:232
|
352 |
+
msgid "Support Us"
|
353 |
+
msgstr "Поддержать нас"
|
354 |
|
355 |
+
#: inc/php/page.php:240 inc/php/settings.php:60 inc/php/sidebar.php:54
|
356 |
msgid "Donate with PayPal"
|
357 |
msgstr "Пожертвовать через Pay Pal"
|
358 |
|
359 |
#: inc/php/page.php:245
|
360 |
#, php-format
|
361 |
+
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."
|
362 |
+
msgstr ""
|
363 |
|
364 |
#: inc/php/page.php:253
|
365 |
+
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."
|
366 |
+
msgstr ""
|
367 |
|
368 |
#: inc/php/page.php:254
|
369 |
+
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."
|
370 |
msgstr "Я трачу много времени и сил, пытаясь убедиться в том, что темы, плагины и другие вещи, которые я создаю, полезны и окончательное доказательство этого для меня состоит в том, что вы на самом деле хотите их использовать. Но Я независимый разработчик, без регулярного дохода, поэтому каждый небольшой вклад помогает мне покрыть расходы и позволяет тратить больше времени на создание программ для людей как вы."
|
371 |
|
372 |
#: inc/php/page.php:255
|
373 |
+
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
374 |
msgstr "Если вы цените мою работу, то вы можете купить мне кофе!"
|
375 |
|
376 |
#: inc/php/page.php:256
|
389 |
msgid "Save changes"
|
390 |
msgstr "Сохранить изменения"
|
391 |
|
392 |
+
#: inc/php/settings.php:55 inc/php/sidebar.php:49
|
393 |
+
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."
|
394 |
msgstr "Я независимый разработчик, без регулярного дохода, так что каждый маленький вклад помогает мне покрыть затраты и позволяет тратить больше времени на создание программ для людей как вы."
|
395 |
|
396 |
+
#: inc/php/settings.php:62 inc/php/sidebar.php:56
|
397 |
msgid "Thanks for your support!"
|
398 |
msgstr "Спасибо за вашу поддержку!"
|
399 |
|
400 |
#: inc/php/sidebar.php:16
|
401 |
+
msgid "We are «Space X-Chimp»"
|
402 |
+
msgstr ""
|
403 |
+
|
404 |
+
#: inc/php/sidebar.php:25
|
405 |
msgid "About"
|
406 |
msgstr "О плагине"
|
407 |
|
408 |
+
#: inc/php/sidebar.php:27
|
409 |
msgid "This plugin allows you to easily and safely add your custom functions (PHP code) directly out of your WordPress Admin Area, without the need to have an external editor."
|
410 |
msgstr "Это плагин даёт вам возможность легко и безопасно добавлять ваши пользовательские функции (код PHP) непосредственно из области администрирования WordPress без необходимости иметь внешний редактор."
|
411 |
|
412 |
+
#: inc/php/sidebar.php:32
|
413 |
msgid "Help"
|
414 |
msgstr "Помощь"
|
415 |
|
416 |
+
#: inc/php/sidebar.php:34
|
417 |
msgid "If you have a question, please read the information in the FAQ section."
|
418 |
msgstr "Если у вас есть вопрос, пожалуйста ознакомьтесь с информацией в разделе FAQ."
|
419 |
|
437 |
msgid "https://www.spacexchimp.com"
|
438 |
msgstr "https://www.spacexchimp.com"
|
439 |
|
440 |
+
#~ msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
|
441 |
+
#~ msgstr "Привет! Меня зовут %s Артур Гарегинян %s и Я основатель %s Space X-Chimp %s."
|
442 |
+
|
443 |
+
#~ 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."
|
444 |
+
#~ msgstr "Я намерен создать проекты, которые сделают этот мир лучшим местом. Я очень увлечен своей работой, мне нравится то, что Я делаю и надеюсь, что вы тоже станете лучше благодаря моим проектам."
|
445 |
+
|
446 |
#~ msgid "Via FTP, go to the plugin folder (in <code>wp-content/plugins/my-custom-functions/</code>)."
|
447 |
#~ msgstr "Через FTP, перейдите в папку плагина (в <code>wp-content/plugins/my-custom-functions/</code>)."
|
448 |
|
languages/my-custom-functions-zh_TW.mo
CHANGED
Binary file
|
languages/my-custom-functions-zh_TW.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
-
"POT-Creation-Date: 2018-07-
|
7 |
-
"PO-Revision-Date: 2018-07-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Chinese (Taiwan)\n"
|
10 |
"Language: zh_TW\n"
|
@@ -86,7 +86,7 @@ msgstr ""
|
|
86 |
msgid "F.A.Q."
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: inc/php/page.php:48 inc/php/settings.php:53 inc/php/sidebar.php:
|
90 |
msgid "Support"
|
91 |
msgstr ""
|
92 |
|
@@ -349,28 +349,28 @@ msgid "You can ask your question on %s this page %s. But please keep in mind tha
|
|
349 |
msgstr ""
|
350 |
|
351 |
#: inc/php/page.php:232
|
352 |
-
msgid "Support
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: inc/php/page.php:240 inc/php/settings.php:60 inc/php/sidebar.php:
|
356 |
msgid "Donate with PayPal"
|
357 |
msgstr ""
|
358 |
|
359 |
#: inc/php/page.php:245
|
360 |
#, php-format
|
361 |
-
msgid "Hello! My name is %s Arthur
|
362 |
msgstr ""
|
363 |
|
364 |
#: inc/php/page.php:253
|
365 |
-
msgid "
|
366 |
msgstr ""
|
367 |
|
368 |
#: inc/php/page.php:254
|
369 |
-
msgid "
|
370 |
msgstr ""
|
371 |
|
372 |
#: inc/php/page.php:255
|
373 |
-
msgid "If you appreciate
|
374 |
msgstr ""
|
375 |
|
376 |
#: inc/php/page.php:256
|
@@ -389,27 +389,31 @@ msgstr ""
|
|
389 |
msgid "Save changes"
|
390 |
msgstr "儲存變更"
|
391 |
|
392 |
-
#: inc/php/settings.php:55 inc/php/sidebar.php:
|
393 |
-
msgid "
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: inc/php/settings.php:62 inc/php/sidebar.php:
|
397 |
msgid "Thanks for your support!"
|
398 |
msgstr "謝謝您的贊助!"
|
399 |
|
400 |
#: inc/php/sidebar.php:16
|
|
|
|
|
|
|
|
|
401 |
msgid "About"
|
402 |
msgstr "關於"
|
403 |
|
404 |
-
#: inc/php/sidebar.php:
|
405 |
msgid "This plugin allows you to easily and safely add your custom functions (PHP code) directly out of your WordPress Admin Area, without the need to have an external editor."
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: inc/php/sidebar.php:
|
409 |
msgid "Help"
|
410 |
msgstr "幫助"
|
411 |
|
412 |
-
#: inc/php/sidebar.php:
|
413 |
msgid "If you have a question, please read the information in the FAQ section."
|
414 |
msgstr ""
|
415 |
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
+
"POT-Creation-Date: 2018-07-24 00:35+0300\n"
|
7 |
+
"PO-Revision-Date: 2018-07-24 00:35+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Chinese (Taiwan)\n"
|
10 |
"Language: zh_TW\n"
|
86 |
msgid "F.A.Q."
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: inc/php/page.php:48 inc/php/settings.php:53 inc/php/sidebar.php:47
|
90 |
msgid "Support"
|
91 |
msgstr ""
|
92 |
|
349 |
msgstr ""
|
350 |
|
351 |
#: inc/php/page.php:232
|
352 |
+
msgid "Support Us"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: inc/php/page.php:240 inc/php/settings.php:60 inc/php/sidebar.php:54
|
356 |
msgid "Donate with PayPal"
|
357 |
msgstr ""
|
358 |
|
359 |
#: inc/php/page.php:245
|
360 |
#, php-format
|
361 |
+
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."
|
362 |
msgstr ""
|
363 |
|
364 |
#: inc/php/page.php:253
|
365 |
+
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."
|
366 |
msgstr ""
|
367 |
|
368 |
#: inc/php/page.php:254
|
369 |
+
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."
|
370 |
msgstr ""
|
371 |
|
372 |
#: inc/php/page.php:255
|
373 |
+
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
374 |
msgstr ""
|
375 |
|
376 |
#: inc/php/page.php:256
|
389 |
msgid "Save changes"
|
390 |
msgstr "儲存變更"
|
391 |
|
392 |
+
#: inc/php/settings.php:55 inc/php/sidebar.php:49
|
393 |
+
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."
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: inc/php/settings.php:62 inc/php/sidebar.php:56
|
397 |
msgid "Thanks for your support!"
|
398 |
msgstr "謝謝您的贊助!"
|
399 |
|
400 |
#: inc/php/sidebar.php:16
|
401 |
+
msgid "We are «Space X-Chimp»"
|
402 |
+
msgstr ""
|
403 |
+
|
404 |
+
#: inc/php/sidebar.php:25
|
405 |
msgid "About"
|
406 |
msgstr "關於"
|
407 |
|
408 |
+
#: inc/php/sidebar.php:27
|
409 |
msgid "This plugin allows you to easily and safely add your custom functions (PHP code) directly out of your WordPress Admin Area, without the need to have an external editor."
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: inc/php/sidebar.php:32
|
413 |
msgid "Help"
|
414 |
msgstr "幫助"
|
415 |
|
416 |
+
#: inc/php/sidebar.php:34
|
417 |
msgid "If you have a question, please read the information in the FAQ section."
|
418 |
msgstr ""
|
419 |
|
languages/my-custom-functions.pot
CHANGED
@@ -3,7 +3,7 @@ msgid ""
|
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
-
"POT-Creation-Date: 2018-07-
|
7 |
"PO-Revision-Date: 2015-08-30 16:22+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
@@ -84,7 +84,7 @@ msgstr ""
|
|
84 |
msgid "F.A.Q."
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: inc/php/page.php:48 inc/php/settings.php:53 inc/php/sidebar.php:
|
88 |
msgid "Support"
|
89 |
msgstr ""
|
90 |
|
@@ -347,28 +347,28 @@ msgid "You can ask your question on %s this page %s. But please keep in mind tha
|
|
347 |
msgstr ""
|
348 |
|
349 |
#: inc/php/page.php:232
|
350 |
-
msgid "Support
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: inc/php/page.php:240 inc/php/settings.php:60 inc/php/sidebar.php:
|
354 |
msgid "Donate with PayPal"
|
355 |
msgstr ""
|
356 |
|
357 |
#: inc/php/page.php:245
|
358 |
#, php-format
|
359 |
-
msgid "Hello! My name is %s Arthur
|
360 |
msgstr ""
|
361 |
|
362 |
#: inc/php/page.php:253
|
363 |
-
msgid "
|
364 |
msgstr ""
|
365 |
|
366 |
#: inc/php/page.php:254
|
367 |
-
msgid "
|
368 |
msgstr ""
|
369 |
|
370 |
#: inc/php/page.php:255
|
371 |
-
msgid "If you appreciate
|
372 |
msgstr ""
|
373 |
|
374 |
#: inc/php/page.php:256
|
@@ -387,27 +387,31 @@ msgstr ""
|
|
387 |
msgid "Save changes"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: inc/php/settings.php:55 inc/php/sidebar.php:
|
391 |
-
msgid "
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: inc/php/settings.php:62 inc/php/sidebar.php:
|
395 |
msgid "Thanks for your support!"
|
396 |
msgstr ""
|
397 |
|
398 |
#: inc/php/sidebar.php:16
|
|
|
|
|
|
|
|
|
399 |
msgid "About"
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: inc/php/sidebar.php:
|
403 |
msgid "This plugin allows you to easily and safely add your custom functions (PHP code) directly out of your WordPress Admin Area, without the need to have an external editor."
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: inc/php/sidebar.php:
|
407 |
msgid "Help"
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: inc/php/sidebar.php:
|
411 |
msgid "If you have a question, please read the information in the FAQ section."
|
412 |
msgstr ""
|
413 |
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
+
"POT-Creation-Date: 2018-07-24 00:35+0300\n"
|
7 |
"PO-Revision-Date: 2015-08-30 16:22+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
84 |
msgid "F.A.Q."
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: inc/php/page.php:48 inc/php/settings.php:53 inc/php/sidebar.php:47
|
88 |
msgid "Support"
|
89 |
msgstr ""
|
90 |
|
347 |
msgstr ""
|
348 |
|
349 |
#: inc/php/page.php:232
|
350 |
+
msgid "Support Us"
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: inc/php/page.php:240 inc/php/settings.php:60 inc/php/sidebar.php:54
|
354 |
msgid "Donate with PayPal"
|
355 |
msgstr ""
|
356 |
|
357 |
#: inc/php/page.php:245
|
358 |
#, php-format
|
359 |
+
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."
|
360 |
msgstr ""
|
361 |
|
362 |
#: inc/php/page.php:253
|
363 |
+
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."
|
364 |
msgstr ""
|
365 |
|
366 |
#: inc/php/page.php:254
|
367 |
+
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."
|
368 |
msgstr ""
|
369 |
|
370 |
#: inc/php/page.php:255
|
371 |
+
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
372 |
msgstr ""
|
373 |
|
374 |
#: inc/php/page.php:256
|
387 |
msgid "Save changes"
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: inc/php/settings.php:55 inc/php/sidebar.php:49
|
391 |
+
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."
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: inc/php/settings.php:62 inc/php/sidebar.php:56
|
395 |
msgid "Thanks for your support!"
|
396 |
msgstr ""
|
397 |
|
398 |
#: inc/php/sidebar.php:16
|
399 |
+
msgid "We are «Space X-Chimp»"
|
400 |
+
msgstr ""
|
401 |
+
|
402 |
+
#: inc/php/sidebar.php:25
|
403 |
msgid "About"
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: inc/php/sidebar.php:27
|
407 |
msgid "This plugin allows you to easily and safely add your custom functions (PHP code) directly out of your WordPress Admin Area, without the need to have an external editor."
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: inc/php/sidebar.php:32
|
411 |
msgid "Help"
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: inc/php/sidebar.php:34
|
415 |
msgid "If you have a question, please read the information in the FAQ section."
|
416 |
msgstr ""
|
417 |
|
my-custom-functions.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: Easily and safely add your custom functions (PHP code) directly out of your WordPress Admin Area, without the need to have an external editor.
|
6 |
* Author: Space X-Chimp
|
7 |
* Author URI: https://www.spacexchimp.com
|
8 |
-
* Version: 4.
|
9 |
* License: GPL3
|
10 |
* Text Domain: my-custom-functions
|
11 |
* Domain Path: /languages/
|
5 |
* Description: Easily and safely add your custom functions (PHP code) directly out of your WordPress Admin Area, without the need to have an external editor.
|
6 |
* Author: Space X-Chimp
|
7 |
* Author URI: https://www.spacexchimp.com
|
8 |
+
* Version: 4.24
|
9 |
* License: GPL3
|
10 |
* Text Domain: my-custom-functions
|
11 |
* Domain Path: /languages/
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: code, php, function, snippet, custom, execute, edit, editing, editor, func
|
|
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 |
|
@@ -61,6 +61,7 @@ This plugin is ready for translation and has already been translated into severa
|
|
61 |
* Chinese-Taiwan (translation by Gordon Yu)
|
62 |
* Spanish (translation by Ramiro Garcés and Patricio Toledo)
|
63 |
* French (translation by Theophil Bethel)
|
|
|
64 |
|
65 |
If you want to help translate this plugin then please visit the [translation page](https://translate.wordpress.org/projects/wp-plugins/my-custom-functions).
|
66 |
|
@@ -215,6 +216,14 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
215 |
|
216 |
== Changelog ==
|
217 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
218 |
= 4.23 =
|
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.
|
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.24
|
8 |
License: GPL3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
61 |
* Chinese-Taiwan (translation by Gordon Yu)
|
62 |
* Spanish (translation by Ramiro Garcés and Patricio Toledo)
|
63 |
* French (translation by Theophil Bethel)
|
64 |
+
* Dutch (translation by Peter Leenders)
|
65 |
|
66 |
If you want to help translate this plugin then please visit the [translation page](https://translate.wordpress.org/projects/wp-plugins/my-custom-functions).
|
67 |
|
216 |
|
217 |
== Changelog ==
|
218 |
|
219 |
+
= 4.24 =
|
220 |
+
* Dutch translation added. (Thanks to Peter Leenders)
|
221 |
+
* The function '_load_scripts_codemirror' is improved. Removed an unnecessary call of constants.
|
222 |
+
* The function '_load_scripts_admin' is improved.
|
223 |
+
* The banner of Space X-Chimp, located on the settings page of the plugin, is updated. The image 'banner.png' is deleted.
|
224 |
+
* Some texts are updated.
|
225 |
+
* All translation files are updated.
|
226 |
+
|
227 |
= 4.23 =
|
228 |
* The code block that enqueue the CodeMirror library files is moved to a separate function '_load_scripts_codemirror' within the 'enqueue.php' file.
|
229 |
* Enqueue of the CodeMirror addons is moved to the beginning of the queue, before enqueuing the CodeMirror mods.
|