Version Description
- Fixed localization of the word "licence". (Thanks to Garrett Hyder @garrett-eclipse)
- Settings for the CodeMirror editor are moved to a separate file 'codemirror-settings.js'.
- Added the addon 'placeholder.js' to the CodeMirror editor. Added a placeholder for code field.
- Texts on the plugin settings page are updated. Translations are updated.
Download this release
Release Info
Developer | Arthur Gareginyan |
Plugin | My Custom Functions |
Version | 4.21 |
Comparing to | |
See all releases |
Code changes from version 4.20 to 4.21
- inc/css/admin.css +3 -0
- inc/js/admin.js +0 -12
- inc/js/codemirror-settings.js +27 -0
- inc/lib/codemirror/addon/display/placeholder.js +63 -0
- inc/php/enqueue.php +2 -1
- inc/php/page.php +2 -1
- inc/php/settings.php +14 -4
- languages/my-custom-functions-de_DE.mo +0 -0
- languages/my-custom-functions-de_DE.po +31 -23
- languages/my-custom-functions-es_ES.mo +0 -0
- languages/my-custom-functions-es_ES.po +31 -23
- languages/my-custom-functions-fr_FR.mo +0 -0
- languages/my-custom-functions-fr_FR.po +31 -23
- languages/my-custom-functions-ru_RU.mo +0 -0
- languages/my-custom-functions-ru_RU.po +31 -23
- languages/my-custom-functions-zh_TW.mo +0 -0
- languages/my-custom-functions-zh_TW.po +31 -23
- languages/my-custom-functions.pot +30 -22
- my-custom-functions.php +1 -1
- readme.txt +10 -2
inc/css/admin.css
CHANGED
@@ -543,6 +543,9 @@ td.help-text {
|
|
543 |
margin-left: 5px;
|
544 |
margin-right: 5px;
|
545 |
}
|
|
|
|
|
|
|
546 |
|
547 |
/* Messages */
|
548 |
#setting-error-settings_updated {
|
543 |
margin-left: 5px;
|
544 |
margin-right: 5px;
|
545 |
}
|
546 |
+
.CodeMirror pre.CodeMirror-placeholder {
|
547 |
+
color: #999;
|
548 |
+
}
|
549 |
|
550 |
/* Messages */
|
551 |
#setting-error-settings_updated {
|
inc/js/admin.js
CHANGED
@@ -41,16 +41,4 @@ jQuery(document).ready(function($) {
|
|
41 |
onLabel: 'ON'
|
42 |
});
|
43 |
|
44 |
-
// Find textareas on page and replace them with the CodeMirror editor
|
45 |
-
$('textarea').each(function(index, elements) {
|
46 |
-
var editor = CodeMirror.fromTextArea( elements, {
|
47 |
-
lineNumbers: true,
|
48 |
-
firstLineNumber: 1,
|
49 |
-
matchBrackets: true,
|
50 |
-
indentUnit: 4,
|
51 |
-
mode: 'text/x-php',
|
52 |
-
styleActiveLine: true
|
53 |
-
});
|
54 |
-
});
|
55 |
-
|
56 |
});
|
41 |
onLabel: 'ON'
|
42 |
});
|
43 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
});
|
inc/js/codemirror-settings.js
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
* CodeMirror editor settings
|
3 |
+
*
|
4 |
+
* @package My Custom Functions
|
5 |
+
* @author Arthur Gareginyan
|
6 |
+
* @link https://www.spacexchimp.com
|
7 |
+
* @copyright Copyright (c) 2016-2018 Space X-Chimp. All Rights Reserved.
|
8 |
+
*/
|
9 |
+
|
10 |
+
|
11 |
+
jQuery(document).ready(function($) {
|
12 |
+
|
13 |
+
"use strict";
|
14 |
+
|
15 |
+
// Find textareas on page and replace them with the CodeMirror editor
|
16 |
+
$('textarea').each(function(index, element){
|
17 |
+
var editor = CodeMirror.fromTextArea(element, {
|
18 |
+
lineNumbers: true,
|
19 |
+
firstLineNumber: 1,
|
20 |
+
matchBrackets: true,
|
21 |
+
indentUnit: 4,
|
22 |
+
mode: 'text/x-php',
|
23 |
+
styleActiveLine: true
|
24 |
+
});
|
25 |
+
});
|
26 |
+
|
27 |
+
});
|
inc/lib/codemirror/addon/display/placeholder.js
ADDED
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
2 |
+
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
3 |
+
|
4 |
+
(function(mod) {
|
5 |
+
if (typeof exports == "object" && typeof module == "object") // CommonJS
|
6 |
+
mod(require("../../lib/codemirror"));
|
7 |
+
else if (typeof define == "function" && define.amd) // AMD
|
8 |
+
define(["../../lib/codemirror"], mod);
|
9 |
+
else // Plain browser env
|
10 |
+
mod(CodeMirror);
|
11 |
+
})(function(CodeMirror) {
|
12 |
+
CodeMirror.defineOption("placeholder", "", function(cm, val, old) {
|
13 |
+
var prev = old && old != CodeMirror.Init;
|
14 |
+
if (val && !prev) {
|
15 |
+
cm.on("blur", onBlur);
|
16 |
+
cm.on("change", onChange);
|
17 |
+
cm.on("swapDoc", onChange);
|
18 |
+
onChange(cm);
|
19 |
+
} else if (!val && prev) {
|
20 |
+
cm.off("blur", onBlur);
|
21 |
+
cm.off("change", onChange);
|
22 |
+
cm.off("swapDoc", onChange);
|
23 |
+
clearPlaceholder(cm);
|
24 |
+
var wrapper = cm.getWrapperElement();
|
25 |
+
wrapper.className = wrapper.className.replace(" CodeMirror-empty", "");
|
26 |
+
}
|
27 |
+
|
28 |
+
if (val && !cm.hasFocus()) onBlur(cm);
|
29 |
+
});
|
30 |
+
|
31 |
+
function clearPlaceholder(cm) {
|
32 |
+
if (cm.state.placeholder) {
|
33 |
+
cm.state.placeholder.parentNode.removeChild(cm.state.placeholder);
|
34 |
+
cm.state.placeholder = null;
|
35 |
+
}
|
36 |
+
}
|
37 |
+
function setPlaceholder(cm) {
|
38 |
+
clearPlaceholder(cm);
|
39 |
+
var elt = cm.state.placeholder = document.createElement("pre");
|
40 |
+
elt.style.cssText = "height: 0; overflow: visible";
|
41 |
+
elt.style.direction = cm.getOption("direction");
|
42 |
+
elt.className = "CodeMirror-placeholder";
|
43 |
+
var placeHolder = cm.getOption("placeholder")
|
44 |
+
if (typeof placeHolder == "string") placeHolder = document.createTextNode(placeHolder)
|
45 |
+
elt.appendChild(placeHolder)
|
46 |
+
cm.display.lineSpace.insertBefore(elt, cm.display.lineSpace.firstChild);
|
47 |
+
}
|
48 |
+
|
49 |
+
function onBlur(cm) {
|
50 |
+
if (isEmpty(cm)) setPlaceholder(cm);
|
51 |
+
}
|
52 |
+
function onChange(cm) {
|
53 |
+
var wrapper = cm.getWrapperElement(), empty = isEmpty(cm);
|
54 |
+
wrapper.className = wrapper.className.replace(" CodeMirror-empty", "") + (empty ? " CodeMirror-empty" : "");
|
55 |
+
|
56 |
+
if (empty) setPlaceholder(cm);
|
57 |
+
else clearPlaceholder(cm);
|
58 |
+
}
|
59 |
+
|
60 |
+
function isEmpty(cm) {
|
61 |
+
return (cm.lineCount() === 1) && (cm.getLine(0) === "");
|
62 |
+
}
|
63 |
+
});
|
inc/php/enqueue.php
CHANGED
@@ -34,12 +34,13 @@ function spacexchimp_p001_load_scripts_admin( $hook ) {
|
|
34 |
// CodeMirror library
|
35 |
wp_enqueue_style( $prefix . '-codemirror-css', $url . 'inc/lib/codemirror/lib/codemirror.css', array(), $version, 'all' );
|
36 |
wp_enqueue_script( $prefix . '-codemirror-js', $url . 'inc/lib/codemirror/lib/codemirror.js', array(), $version, false );
|
|
|
37 |
$modes = array( 'clike', 'css', 'htmlmixed', 'javascript', 'php', 'xml' );
|
38 |
foreach ( $modes as $mode ) {
|
39 |
wp_enqueue_script( $prefix . '-codemirror-mode-' . $mode . '-js', $url . 'inc/lib/codemirror/mode/' . $mode . '/' . $mode . '.js', array(), $version, true );
|
40 |
}
|
41 |
$addons = array(
|
42 |
-
'display' => array( 'autorefresh' ),
|
43 |
'selection' => array( 'active-line' )
|
44 |
);
|
45 |
foreach ( $addons as $addons_group_name => $addons_group ) {
|
34 |
// CodeMirror library
|
35 |
wp_enqueue_style( $prefix . '-codemirror-css', $url . 'inc/lib/codemirror/lib/codemirror.css', array(), $version, 'all' );
|
36 |
wp_enqueue_script( $prefix . '-codemirror-js', $url . 'inc/lib/codemirror/lib/codemirror.js', array(), $version, false );
|
37 |
+
wp_enqueue_script( $prefix . '-codemirror-settings-js', $url . 'inc/js/codemirror-settings.js', array(), $version, true );
|
38 |
$modes = array( 'clike', 'css', 'htmlmixed', 'javascript', 'php', 'xml' );
|
39 |
foreach ( $modes as $mode ) {
|
40 |
wp_enqueue_script( $prefix . '-codemirror-mode-' . $mode . '-js', $url . 'inc/lib/codemirror/mode/' . $mode . '/' . $mode . '.js', array(), $version, true );
|
41 |
}
|
42 |
$addons = array(
|
43 |
+
'display' => array( 'autorefresh', 'placeholder' ),
|
44 |
'selection' => array( 'active-line' )
|
45 |
);
|
46 |
foreach ( $addons as $addons_group_name => $addons_group ) {
|
inc/php/page.php
CHANGED
@@ -183,7 +183,8 @@ function spacexchimp_p001_render_submenu_page() {
|
|
183 |
<li><?php _e( 'Edit/fix your custom code that you entered before the crash.', $text ); ?></li>
|
184 |
<li><?php _e( 'Return to the plugin folder and rename the file <code>STOP</code> to <code>START</code> and you\'re done!', $text ); ?></li>
|
185 |
</ol>
|
186 |
-
<?php _e( '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>.', $text );
|
|
|
187 |
|
188 |
<div class="question-11 question-red"><?php _e( 'The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?', $text ); ?></div>
|
189 |
<div class="answer-11"><?php _e( '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.', $text ); ?></div>
|
183 |
<li><?php _e( 'Edit/fix your custom code that you entered before the crash.', $text ); ?></li>
|
184 |
<li><?php _e( 'Return to the plugin folder and rename the file <code>STOP</code> to <code>START</code> and you\'re done!', $text ); ?></li>
|
185 |
</ol>
|
186 |
+
<?php _e( '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>.', $text ); ?><br><br>
|
187 |
+
<?php _e( '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.', $text ); ?></div>
|
188 |
|
189 |
<div class="question-11 question-red"><?php _e( 'The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?', $text ); ?></div>
|
190 |
<div class="answer-11"><?php _e( '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.', $text ); ?></div>
|
inc/php/settings.php
CHANGED
@@ -21,19 +21,29 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
21 |
$options = get_option( SPACEXCHIMP_P001_SETTINGS . '_settings' );
|
22 |
|
23 |
// Set default value if option is empty
|
24 |
-
$
|
25 |
-
$
|
26 |
?>
|
27 |
|
28 |
<div class="postbox">
|
29 |
<h3 class="title">
|
30 |
<label for="spacexchimp_p001_settings[snippets]" ><?php _e( 'Functions (PHP code)', $text ); ?></label>
|
31 |
<div class="pull-right">
|
32 |
-
<input
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
</div>
|
34 |
</h3>
|
35 |
<div class="inside">
|
36 |
-
<textarea
|
|
|
|
|
|
|
|
|
37 |
</div>
|
38 |
</div>
|
39 |
|
21 |
$options = get_option( SPACEXCHIMP_P001_SETTINGS . '_settings' );
|
22 |
|
23 |
// Set default value if option is empty
|
24 |
+
$snippets = !empty( $options['snippets'] ) ? $options['snippets'] : '';
|
25 |
+
$checked = ( !empty( $options['enable'] ) && $options['enable'] == "on" ) ? 'checked' : '';
|
26 |
?>
|
27 |
|
28 |
<div class="postbox">
|
29 |
<h3 class="title">
|
30 |
<label for="spacexchimp_p001_settings[snippets]" ><?php _e( 'Functions (PHP code)', $text ); ?></label>
|
31 |
<div class="pull-right">
|
32 |
+
<input
|
33 |
+
type="checkbox"
|
34 |
+
name="spacexchimp_p001_settings[enable]"
|
35 |
+
id="spacexchimp_p001_settings[enable]"
|
36 |
+
<?php echo $checked; ?>
|
37 |
+
class="control-switch-onoff"
|
38 |
+
>
|
39 |
</div>
|
40 |
</h3>
|
41 |
<div class="inside">
|
42 |
+
<textarea
|
43 |
+
name="spacexchimp_p001_settings[snippets]"
|
44 |
+
id="spacexchimp_p001_settings[snippets]"
|
45 |
+
placeholder="<?php _e( 'Enter your PHP functions here', $text ); ?>"
|
46 |
+
><?php echo htmlentities( $snippets ); ?></textarea>
|
47 |
</div>
|
48 |
</div>
|
49 |
|
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-06-
|
7 |
-
"PO-Revision-Date: 2018-06-
|
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:
|
90 |
msgid "Support"
|
91 |
msgstr "Support"
|
92 |
|
@@ -300,76 +300,80 @@ msgstr ""
|
|
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 ""
|
302 |
|
303 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
304 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
|
305 |
msgstr "Das letzte WordPress-Update hindert mich daran, meine Webseite, die dieses Plugin verwendet, zu bearbeiten. Warum ist das so?"
|
306 |
|
307 |
-
#: inc/php/page.php:
|
308 |
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."
|
309 |
msgstr "Dieses Plugin kann ein solches Problem nicht verursachen. Wahrscheinlich hängt das Problem mit den Einstellungen der Webseite zusammen. Es könnte einfach nur ein Cache sein. Versuchen Sie daher, den Cache Ihrer Webseite zu löschen (möglicherweise verwenden Sie ein Caching-Plugin oder einen Webservice wie CloudFlare) und danach den Cache Ihres Webbrowsers. Versuchen Sie auch, sich erneut auf der Webseite anzumelden, auch dies kann helfen."
|
310 |
|
311 |
-
#: inc/php/page.php:
|
312 |
msgid "Where to report bug if found?"
|
313 |
msgstr "Wo kann ich eine Fehler melden?"
|
314 |
|
315 |
-
#: inc/php/page.php:
|
316 |
#, php-format
|
317 |
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!"
|
318 |
msgstr "Bitte besuchen Sie %s diese Seite %s und berichten Sie. Bitte vergiss nicht den Namen des Plugins anzugeben. Vielen Dank!"
|
319 |
|
320 |
-
#: inc/php/page.php:
|
321 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
322 |
msgstr "Wo können Sie Ideen oder Vorschläge loswerden, um das Plugin besser zu machen?"
|
323 |
|
324 |
-
#: inc/php/page.php:
|
325 |
#, php-format
|
326 |
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!"
|
327 |
msgstr "Irgendwelche Vorschläge sind sehr willkommen! Kontaktieren Sie uns einfach %s hier %s. Bitte vergiss nicht den Namen des Plugins anzugeben. Vielen Dank!"
|
328 |
|
329 |
-
#: inc/php/page.php:
|
330 |
msgid "I love this plugin! Can I help somehow?"
|
331 |
msgstr "Ich liebe dieses Plugin! Kann ich Irgendwie helfen?"
|
332 |
|
333 |
-
#: inc/php/page.php:
|
334 |
#, php-format
|
335 |
msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
|
336 |
msgstr "Ja, jede finanzielle Unterstützung ist Willkommen! Besuchen Sie %s meine Webseite %s, klicken Sie auf den Spenden Button und Danke!"
|
337 |
|
338 |
-
#: inc/php/page.php:
|
339 |
msgid "My question wasn't answered here."
|
340 |
msgstr "Meine Fragen wurden nicht beantwortet."
|
341 |
|
342 |
-
#: inc/php/page.php:
|
343 |
#, php-format
|
344 |
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."
|
345 |
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."
|
346 |
|
347 |
-
#: inc/php/page.php:
|
348 |
msgid "Support Me"
|
349 |
msgstr "Unterstützen Sie mich"
|
350 |
|
351 |
-
#: inc/php/page.php:
|
352 |
msgid "Donate with PayPal"
|
353 |
msgstr "Spende mit PayPal"
|
354 |
|
355 |
-
#: inc/php/page.php:
|
356 |
#, php-format
|
357 |
msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
|
358 |
msgstr "Hallo! Meine name ist %s Arthur Gareginyan %s und ich bin der Gründer von %s Space X-Chimp %s."
|
359 |
|
360 |
-
#: inc/php/page.php:
|
361 |
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."
|
362 |
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."
|
363 |
|
364 |
-
#: inc/php/page.php:
|
365 |
msgid "I spend a lot of time and effort trying to make sure that the themes, plugins and other things I build are useful, and the ultimate proof of that for me is that you actually want to use them. But, I’m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
|
366 |
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 ich bin ein unabhängiger Entwickler ohne regelmäßiges Einkommen. 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."
|
367 |
|
368 |
-
#: inc/php/page.php:
|
369 |
msgid "If you appreciate my work, you can buy me a coffee!"
|
370 |
msgstr "Wenn Ihnen meine Arbeit gefällt, können Sie mir gerne einen Kaffee kaufen!"
|
371 |
|
372 |
-
#: inc/php/page.php:
|
373 |
msgid "Thank you for your support!"
|
374 |
msgstr "Danke für Ihre Unterstützung!"
|
375 |
|
@@ -377,15 +381,19 @@ msgstr "Danke für Ihre Unterstützung!"
|
|
377 |
msgid "Functions (PHP code)"
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: inc/php/settings.php:
|
|
|
|
|
|
|
|
|
381 |
msgid "Save changes"
|
382 |
msgstr "Änderungen speichern"
|
383 |
|
384 |
-
#: inc/php/settings.php:
|
385 |
msgid "I'm an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
|
386 |
msgstr "Ich bin ein unabhängiger Entwickler ohne regelmäßiges Einkommen. Jeder kleine Beitrag trägt dazu bei, meine Kosten zu decken und ich kann mehr Zeit damit verbringen, Dinge für Leute wie Sie zu entwickeln."
|
387 |
|
388 |
-
#: inc/php/settings.php:
|
389 |
msgid "Thanks for your support!"
|
390 |
msgstr "Danke für Ihre Unterstützung!"
|
391 |
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
+
"POT-Creation-Date: 2018-06-30 20:01+0300\n"
|
7 |
+
"PO-Revision-Date: 2018-06-30 20:01+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:46
|
90 |
msgid "Support"
|
91 |
msgstr "Support"
|
92 |
|
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 ""
|
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 ""
|
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 "Das letzte WordPress-Update hindert mich daran, meine Webseite, die dieses Plugin verwendet, zu bearbeiten. Warum ist das so?"
|
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 "Dieses Plugin kann ein solches Problem nicht verursachen. Wahrscheinlich hängt das Problem mit den Einstellungen der Webseite zusammen. Es könnte einfach nur ein Cache sein. Versuchen Sie daher, den Cache Ihrer Webseite zu löschen (möglicherweise verwenden Sie ein Caching-Plugin oder einen Webservice wie CloudFlare) und danach den Cache Ihres Webbrowsers. Versuchen Sie auch, sich erneut auf der Webseite anzumelden, auch dies kann helfen."
|
314 |
|
315 |
+
#: inc/php/page.php:192
|
316 |
msgid "Where to report bug if found?"
|
317 |
msgstr "Wo kann ich eine Fehler melden?"
|
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 "Bitte besuchen Sie %s diese Seite %s und berichten Sie. Bitte vergiss nicht den Namen des Plugins anzugeben. Vielen Dank!"
|
323 |
|
324 |
+
#: inc/php/page.php:200
|
325 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
326 |
msgstr "Wo können Sie Ideen oder Vorschläge loswerden, um das Plugin besser zu machen?"
|
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 "Irgendwelche Vorschläge sind sehr willkommen! Kontaktieren Sie uns einfach %s hier %s. Bitte vergiss nicht den Namen des Plugins anzugeben. Vielen Dank!"
|
332 |
|
333 |
+
#: inc/php/page.php:208
|
334 |
msgid "I love this plugin! Can I help somehow?"
|
335 |
msgstr "Ich liebe dieses Plugin! Kann ich Irgendwie helfen?"
|
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, jede finanzielle Unterstützung ist Willkommen! Besuchen Sie %s meine Webseite %s, klicken Sie auf den Spenden Button und Danke!"
|
341 |
|
342 |
+
#: inc/php/page.php:216
|
343 |
msgid "My question wasn't answered here."
|
344 |
msgstr "Meine Fragen wurden nicht beantwortet."
|
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 "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 Me"
|
353 |
msgstr "Unterstützen Sie mich"
|
354 |
|
355 |
+
#: inc/php/page.php:240 inc/php/settings.php:60 inc/php/sidebar.php:53
|
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 Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
|
362 |
msgstr "Hallo! Meine name ist %s Arthur Gareginyan %s und ich bin der Gründer von %s Space X-Chimp %s."
|
363 |
|
364 |
+
#: inc/php/page.php:253
|
365 |
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."
|
366 |
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."
|
367 |
|
368 |
+
#: inc/php/page.php:254
|
369 |
msgid "I spend a lot of time and effort trying to make sure that the themes, plugins and other things I build are useful, and the ultimate proof of that for me is that you actually want to use them. But, I’m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for 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 ich bin ein unabhängiger Entwickler ohne regelmäßiges Einkommen. 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 my work, you can buy me a coffee!"
|
374 |
msgstr "Wenn Ihnen meine Arbeit gefällt, können Sie mir gerne einen Kaffee kaufen!"
|
375 |
|
376 |
+
#: inc/php/page.php:256
|
377 |
msgid "Thank you for your support!"
|
378 |
msgstr "Danke für Ihre Unterstützung!"
|
379 |
|
381 |
msgid "Functions (PHP code)"
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: inc/php/settings.php:45
|
385 |
+
msgid "Enter your PHP functions here"
|
386 |
+
msgstr ""
|
387 |
+
|
388 |
+
#: inc/php/settings.php:50
|
389 |
msgid "Save changes"
|
390 |
msgstr "Änderungen speichern"
|
391 |
|
392 |
+
#: inc/php/settings.php:55 inc/php/sidebar.php:48
|
393 |
msgid "I'm an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
|
394 |
msgstr "Ich bin ein unabhängiger Entwickler ohne regelmäßiges Einkommen. Jeder kleine Beitrag trägt dazu bei, meine Kosten zu decken und ich kann mehr Zeit damit verbringen, Dinge für Leute wie Sie zu entwickeln."
|
395 |
|
396 |
+
#: inc/php/settings.php:62 inc/php/sidebar.php:55
|
397 |
msgid "Thanks for your support!"
|
398 |
msgstr "Danke für Ihre Unterstützung!"
|
399 |
|
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-06-
|
7 |
-
"PO-Revision-Date: 2018-06-
|
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:
|
90 |
msgid "Support"
|
91 |
msgstr "Soporte"
|
92 |
|
@@ -300,76 +300,80 @@ msgstr ""
|
|
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 ""
|
302 |
|
303 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
304 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
|
305 |
msgstr "La última actualización de WordPress me impide editar mi sitio web que está utilizando este complemento. ¿Porqué sucede esto?"
|
306 |
|
307 |
-
#: inc/php/page.php:
|
308 |
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."
|
309 |
msgstr "Este complemento no puede causar este problema. Lo más probable es que el problema esté relacionado con la configuración del sitio web. Podría ser sólo la caché, así que intenta borrar la caché de tu sitio web (puede ser que utilices un complemento de caché o algún servicio web como CloudFlare) y luego la caché de tu navegador web. También intenta volver a conectarte al sitio web, esto también puede ayudar."
|
310 |
|
311 |
-
#: inc/php/page.php:
|
312 |
msgid "Where to report bug if found?"
|
313 |
msgstr "¿Dónde informar el error si se encuentra?"
|
314 |
|
315 |
-
#: inc/php/page.php:
|
316 |
#, php-format
|
317 |
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!"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: inc/php/page.php:
|
321 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
322 |
msgstr "¿Dónde compartir ideas o sugerencias para mejorar el complemento?"
|
323 |
|
324 |
-
#: inc/php/page.php:
|
325 |
#, php-format
|
326 |
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!"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: inc/php/page.php:
|
330 |
msgid "I love this plugin! Can I help somehow?"
|
331 |
msgstr "Me encanta este complemento! ¿Puedo ayudar de alguna manera?"
|
332 |
|
333 |
-
#: inc/php/page.php:
|
334 |
#, php-format
|
335 |
msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
|
336 |
msgstr "Sí, cualquier contribución financiera es bienvenida! Simplemente visita %s mi sitio web %s, has clic en el botón DONAR y gracias!"
|
337 |
|
338 |
-
#: inc/php/page.php:
|
339 |
msgid "My question wasn't answered here."
|
340 |
msgstr "Mi pregunta no fue contestada aquí."
|
341 |
|
342 |
-
#: inc/php/page.php:
|
343 |
#, php-format
|
344 |
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."
|
345 |
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."
|
346 |
|
347 |
-
#: inc/php/page.php:
|
348 |
msgid "Support Me"
|
349 |
msgstr "Apoyarme!"
|
350 |
|
351 |
-
#: inc/php/page.php:
|
352 |
msgid "Donate with PayPal"
|
353 |
msgstr "Donar con PayPal"
|
354 |
|
355 |
-
#: inc/php/page.php:
|
356 |
#, php-format
|
357 |
msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
|
358 |
msgstr "¡Hola! Mi nombre es %s Arthur Gareginyan %s y soy el fundador de %s Space X-Chimp %s."
|
359 |
|
360 |
-
#: inc/php/page.php:
|
361 |
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."
|
362 |
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."
|
363 |
|
364 |
-
#: inc/php/page.php:
|
365 |
msgid "I spend a lot of time and effort trying to make sure that the themes, plugins and other things I build are useful, and the ultimate proof of that for me is that you actually want to use them. But, I’m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
|
366 |
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."
|
367 |
|
368 |
-
#: inc/php/page.php:
|
369 |
msgid "If you appreciate my work, you can buy me a coffee!"
|
370 |
msgstr "Si aprecias mi trabajo, puedes comprarme un café!"
|
371 |
|
372 |
-
#: inc/php/page.php:
|
373 |
msgid "Thank you for your support!"
|
374 |
msgstr "¡Gracias por tu apoyo!"
|
375 |
|
@@ -377,15 +381,19 @@ msgstr "¡Gracias por tu apoyo!"
|
|
377 |
msgid "Functions (PHP code)"
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: inc/php/settings.php:
|
|
|
|
|
|
|
|
|
381 |
msgid "Save changes"
|
382 |
msgstr "Guardar Cambios"
|
383 |
|
384 |
-
#: inc/php/settings.php:
|
385 |
msgid "I'm an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
|
386 |
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."
|
387 |
|
388 |
-
#: inc/php/settings.php:
|
389 |
msgid "Thanks for your support!"
|
390 |
msgstr "¡Gracias por tu apoyo!"
|
391 |
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
+
"POT-Creation-Date: 2018-06-30 20:01+0300\n"
|
7 |
+
"PO-Revision-Date: 2018-06-30 20:01+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:46
|
90 |
msgid "Support"
|
91 |
msgstr "Soporte"
|
92 |
|
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 ""
|
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 ""
|
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 "La última actualización de WordPress me impide editar mi sitio web que está utilizando este complemento. ¿Porqué sucede esto?"
|
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 "Este complemento no puede causar este problema. Lo más probable es que el problema esté relacionado con la configuración del sitio web. Podría ser sólo la caché, así que intenta borrar la caché de tu sitio web (puede ser que utilices un complemento de caché o algún servicio web como CloudFlare) y luego la caché de tu navegador web. También intenta volver a conectarte al sitio web, esto también puede ayudar."
|
314 |
|
315 |
+
#: inc/php/page.php:192
|
316 |
msgid "Where to report bug if found?"
|
317 |
msgstr "¿Dónde informar el error si se encuentra?"
|
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 ""
|
323 |
|
324 |
+
#: inc/php/page.php:200
|
325 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
326 |
msgstr "¿Dónde compartir ideas o sugerencias para mejorar el complemento?"
|
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 ""
|
332 |
|
333 |
+
#: inc/php/page.php:208
|
334 |
msgid "I love this plugin! Can I help somehow?"
|
335 |
msgstr "Me encanta este complemento! ¿Puedo ayudar de alguna manera?"
|
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 "Sí, cualquier contribución financiera es bienvenida! Simplemente visita %s mi sitio web %s, has clic en el botón DONAR y gracias!"
|
341 |
|
342 |
+
#: inc/php/page.php:216
|
343 |
msgid "My question wasn't answered here."
|
344 |
msgstr "Mi pregunta no fue contestada aquí."
|
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 "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 Me"
|
353 |
msgstr "Apoyarme!"
|
354 |
|
355 |
+
#: inc/php/page.php:240 inc/php/settings.php:60 inc/php/sidebar.php:53
|
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 Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
|
362 |
msgstr "¡Hola! Mi nombre es %s Arthur Gareginyan %s y soy el fundador de %s Space X-Chimp %s."
|
363 |
|
364 |
+
#: inc/php/page.php:253
|
365 |
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."
|
366 |
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."
|
367 |
|
368 |
+
#: inc/php/page.php:254
|
369 |
msgid "I spend a lot of time and effort trying to make sure that the themes, plugins and other things I build are useful, and the ultimate proof of that for me is that you actually want to use them. But, I’m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for 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 my work, you can buy me a coffee!"
|
374 |
msgstr "Si aprecias mi trabajo, puedes comprarme un café!"
|
375 |
|
376 |
+
#: inc/php/page.php:256
|
377 |
msgid "Thank you for your support!"
|
378 |
msgstr "¡Gracias por tu apoyo!"
|
379 |
|
381 |
msgid "Functions (PHP code)"
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: inc/php/settings.php:45
|
385 |
+
msgid "Enter your PHP functions here"
|
386 |
+
msgstr ""
|
387 |
+
|
388 |
+
#: inc/php/settings.php:50
|
389 |
msgid "Save changes"
|
390 |
msgstr "Guardar Cambios"
|
391 |
|
392 |
+
#: inc/php/settings.php:55 inc/php/sidebar.php:48
|
393 |
msgid "I'm an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for 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:55
|
397 |
msgid "Thanks for your support!"
|
398 |
msgstr "¡Gracias por tu apoyo!"
|
399 |
|
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-06-
|
7 |
-
"PO-Revision-Date: 2018-06-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: French\n"
|
10 |
"Language: fr_FR\n"
|
@@ -86,7 +86,7 @@ msgstr ""
|
|
86 |
msgid "F.A.Q."
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: inc/php/page.php:48 inc/php/settings.php:
|
90 |
msgid "Support"
|
91 |
msgstr ""
|
92 |
|
@@ -300,76 +300,80 @@ msgstr ""
|
|
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 ""
|
302 |
|
303 |
-
#: inc/php/page.php:
|
304 |
-
msgid "
|
305 |
msgstr ""
|
306 |
|
307 |
#: inc/php/page.php:189
|
|
|
|
|
|
|
|
|
308 |
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."
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: inc/php/page.php:
|
312 |
msgid "Where to report bug if found?"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: inc/php/page.php:
|
316 |
#, php-format
|
317 |
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!"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: inc/php/page.php:
|
321 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: inc/php/page.php:
|
325 |
#, php-format
|
326 |
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!"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: inc/php/page.php:
|
330 |
msgid "I love this plugin! Can I help somehow?"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: inc/php/page.php:
|
334 |
#, php-format
|
335 |
msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: inc/php/page.php:
|
339 |
msgid "My question wasn't answered here."
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: inc/php/page.php:
|
343 |
#, php-format
|
344 |
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."
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: inc/php/page.php:
|
348 |
msgid "Support Me"
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: inc/php/page.php:
|
352 |
msgid "Donate with PayPal"
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: inc/php/page.php:
|
356 |
#, php-format
|
357 |
msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: inc/php/page.php:
|
361 |
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."
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: inc/php/page.php:
|
365 |
msgid "I spend a lot of time and effort trying to make sure that the themes, plugins and other things I build are useful, and the ultimate proof of that for me is that you actually want to use them. But, I’m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: inc/php/page.php:
|
369 |
msgid "If you appreciate my work, you can buy me a coffee!"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: inc/php/page.php:
|
373 |
msgid "Thank you for your support!"
|
374 |
msgstr ""
|
375 |
|
@@ -377,15 +381,19 @@ msgstr ""
|
|
377 |
msgid "Functions (PHP code)"
|
378 |
msgstr "Fonctions (code PHP)"
|
379 |
|
380 |
-
#: inc/php/settings.php:
|
|
|
|
|
|
|
|
|
381 |
msgid "Save changes"
|
382 |
msgstr "Enregistrer"
|
383 |
|
384 |
-
#: inc/php/settings.php:
|
385 |
msgid "I'm an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
|
386 |
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."
|
387 |
|
388 |
-
#: inc/php/settings.php:
|
389 |
msgid "Thanks for your support!"
|
390 |
msgstr "Merci pour votre soutien !"
|
391 |
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
+
"POT-Creation-Date: 2018-06-30 20:01+0300\n"
|
7 |
+
"PO-Revision-Date: 2018-06-30 20:01+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: French\n"
|
10 |
"Language: fr_FR\n"
|
86 |
msgid "F.A.Q."
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: inc/php/page.php:48 inc/php/settings.php:53 inc/php/sidebar.php:46
|
90 |
msgid "Support"
|
91 |
msgstr ""
|
92 |
|
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 ""
|
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 ""
|
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 ""
|
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 ""
|
314 |
|
315 |
+
#: inc/php/page.php:192
|
316 |
msgid "Where to report bug if found?"
|
317 |
msgstr ""
|
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 ""
|
323 |
|
324 |
+
#: inc/php/page.php:200
|
325 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
326 |
msgstr ""
|
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 ""
|
332 |
|
333 |
+
#: inc/php/page.php:208
|
334 |
msgid "I love this plugin! Can I help somehow?"
|
335 |
msgstr ""
|
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 ""
|
341 |
|
342 |
+
#: inc/php/page.php:216
|
343 |
msgid "My question wasn't answered here."
|
344 |
msgstr ""
|
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 ""
|
350 |
|
351 |
+
#: inc/php/page.php:232
|
352 |
msgid "Support Me"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: inc/php/page.php:240 inc/php/settings.php:60 inc/php/sidebar.php:53
|
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 Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: inc/php/page.php:253
|
365 |
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."
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: inc/php/page.php:254
|
369 |
msgid "I spend a lot of time and effort trying to make sure that the themes, plugins and other things I build are useful, and the ultimate proof of that for me is that you actually want to use them. But, I’m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: inc/php/page.php:255
|
373 |
msgid "If you appreciate my work, you can buy me a coffee!"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: inc/php/page.php:256
|
377 |
msgid "Thank you for your support!"
|
378 |
msgstr ""
|
379 |
|
381 |
msgid "Functions (PHP code)"
|
382 |
msgstr "Fonctions (code PHP)"
|
383 |
|
384 |
+
#: inc/php/settings.php:45
|
385 |
+
msgid "Enter your PHP functions here"
|
386 |
+
msgstr ""
|
387 |
+
|
388 |
+
#: inc/php/settings.php:50
|
389 |
msgid "Save changes"
|
390 |
msgstr "Enregistrer"
|
391 |
|
392 |
+
#: inc/php/settings.php:55 inc/php/sidebar.php:48
|
393 |
msgid "I'm an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for 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:55
|
397 |
msgid "Thanks for your support!"
|
398 |
msgstr "Merci pour votre soutien !"
|
399 |
|
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-06-
|
7 |
-
"PO-Revision-Date: 2018-06-
|
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:
|
90 |
msgid "Support"
|
91 |
msgstr "Поддержка"
|
92 |
|
@@ -300,76 +300,80 @@ msgstr ""
|
|
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 "Этот плагин хранит введённый код в базе данных вашего сайта. Для получения кода вы также можете перейти в <code>Database</code> ➡ Table <code>wp_options</code> ➡ Option <code>spacexchimp_p001_settings</code> ➡ <code>option_value</code>."
|
302 |
|
303 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
304 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
|
305 |
msgstr "Последнее обновление WordPress не позволяет мне редактировать мой сайт, который использует этот плагин. Почему так?"
|
306 |
|
307 |
-
#: inc/php/page.php:
|
308 |
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."
|
309 |
msgstr "Этот плагин не может вызвать такую проблему. Скорее всего, проблема связана с настройками веб-сайта. Это может быть кеш, поэтому попробуйте очистить кеш вашего сайта (возможно, вы используете плагин для кеширования или какой-либо веб-сервис, такой как CloudFlare), а затем кеш вашего веб-браузера. Также попробуйте повторно войти на сайт, это тоже может помочь."
|
310 |
|
311 |
-
#: inc/php/page.php:
|
312 |
msgid "Where to report bug if found?"
|
313 |
msgstr "Где можно сообщить об ошибке?"
|
314 |
|
315 |
-
#: inc/php/page.php:
|
316 |
#, php-format
|
317 |
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!"
|
318 |
msgstr "Посетите %s эту страницу %s и сообщите. Не забудьте указать название плагина. Спасибо!"
|
319 |
|
320 |
-
#: inc/php/page.php:
|
321 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
322 |
msgstr "Где можно поделиться идеями или предложениями, чтобы сделать плагин лучше?"
|
323 |
|
324 |
-
#: inc/php/page.php:
|
325 |
#, php-format
|
326 |
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!"
|
327 |
msgstr "Любые предложения приветствуются! Просто свяжитесь с нами %s здесь %s. Не забудьте указать название плагина. Спасибо!"
|
328 |
|
329 |
-
#: inc/php/page.php:
|
330 |
msgid "I love this plugin! Can I help somehow?"
|
331 |
msgstr "Мне нравится этот плагин! Могу Я чем-то помочь?"
|
332 |
|
333 |
-
#: inc/php/page.php:
|
334 |
#, php-format
|
335 |
msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
|
336 |
msgstr "Да, любые финансовые взносы приветствуются! Просто посетите %s мой сайт %s, нажмите на кнопку пожертвования. Спасибо!"
|
337 |
|
338 |
-
#: inc/php/page.php:
|
339 |
msgid "My question wasn't answered here."
|
340 |
msgstr "Моего вопроса здесь нет."
|
341 |
|
342 |
-
#: inc/php/page.php:
|
343 |
#, php-format
|
344 |
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."
|
345 |
msgstr "Вы можете задать ваш вопрос на %s этой странице %s. Но имейте в виду, что этот плагин является бесплатным и без специальной поддержки, поэтому у нас нет возможности ответить на все вопросы."
|
346 |
|
347 |
-
#: inc/php/page.php:
|
348 |
msgid "Support Me"
|
349 |
msgstr "Поддержать меня"
|
350 |
|
351 |
-
#: inc/php/page.php:
|
352 |
msgid "Donate with PayPal"
|
353 |
msgstr "Пожертвовать через Pay Pal"
|
354 |
|
355 |
-
#: inc/php/page.php:
|
356 |
#, php-format
|
357 |
msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
|
358 |
msgstr "Привет! Меня зовут %s Артур Гарегинян %s и Я основатель %s Space X-Chimp %s."
|
359 |
|
360 |
-
#: inc/php/page.php:
|
361 |
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."
|
362 |
msgstr "Я намерен создать проекты, которые сделают этот мир лучшим местом. Я очень увлечен своей работой, мне нравится то, что Я делаю и надеюсь, что вы тоже станете лучше благодаря моим проектам."
|
363 |
|
364 |
-
#: inc/php/page.php:
|
365 |
msgid "I spend a lot of time and effort trying to make sure that the themes, plugins and other things I build are useful, and the ultimate proof of that for me is that you actually want to use them. But, I’m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
|
366 |
msgstr "Я трачу много времени и сил, пытаясь убедиться в том, что темы, плагины и другие вещи, которые я создаю, полезны и окончательное доказательство этого для меня состоит в том, что вы на самом деле хотите их использовать. Но Я независимый разработчик, без регулярного дохода, поэтому каждый небольшой вклад помогает мне покрыть расходы и позволяет тратить больше времени на создание программ для людей как вы."
|
367 |
|
368 |
-
#: inc/php/page.php:
|
369 |
msgid "If you appreciate my work, you can buy me a coffee!"
|
370 |
msgstr "Если вы цените мою работу, то вы можете купить мне кофе!"
|
371 |
|
372 |
-
#: inc/php/page.php:
|
373 |
msgid "Thank you for your support!"
|
374 |
msgstr "Спасибо за вашу поддержку!"
|
375 |
|
@@ -377,15 +381,19 @@ msgstr "Спасибо за вашу поддержку!"
|
|
377 |
msgid "Functions (PHP code)"
|
378 |
msgstr "Функции (PHP код)"
|
379 |
|
380 |
-
#: inc/php/settings.php:
|
|
|
|
|
|
|
|
|
381 |
msgid "Save changes"
|
382 |
msgstr "Сохранить изменения"
|
383 |
|
384 |
-
#: inc/php/settings.php:
|
385 |
msgid "I'm an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
|
386 |
msgstr "Я независимый разработчик, без регулярного дохода, так что каждый маленький вклад помогает мне покрыть затраты и позволяет тратить больше времени на создание программ для людей как вы."
|
387 |
|
388 |
-
#: inc/php/settings.php:
|
389 |
msgid "Thanks for your support!"
|
390 |
msgstr "Спасибо за вашу поддержку!"
|
391 |
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
+
"POT-Creation-Date: 2018-06-30 20:01+0300\n"
|
7 |
+
"PO-Revision-Date: 2018-06-30 20:01+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:46
|
90 |
msgid "Support"
|
91 |
msgstr "Поддержка"
|
92 |
|
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 "Этот плагин хранит введённый код в базе данных вашего сайта. Для получения кода вы также можете перейти в <code>Database</code> ➡ Table <code>wp_options</code> ➡ Option <code>spacexchimp_p001_settings</code> ➡ <code>option_value</code>."
|
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 ""
|
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 "Последнее обновление WordPress не позволяет мне редактировать мой сайт, который использует этот плагин. Почему так?"
|
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 "Этот плагин не может вызвать такую проблему. Скорее всего, проблема связана с настройками веб-сайта. Это может быть кеш, поэтому попробуйте очистить кеш вашего сайта (возможно, вы используете плагин для кеширования или какой-либо веб-сервис, такой как CloudFlare), а затем кеш вашего веб-браузера. Также попробуйте повторно войти на сайт, это тоже может помочь."
|
314 |
|
315 |
+
#: inc/php/page.php:192
|
316 |
msgid "Where to report bug if found?"
|
317 |
msgstr "Где можно сообщить об ошибке?"
|
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 "Посетите %s эту страницу %s и сообщите. Не забудьте указать название плагина. Спасибо!"
|
323 |
|
324 |
+
#: inc/php/page.php:200
|
325 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
326 |
msgstr "Где можно поделиться идеями или предложениями, чтобы сделать плагин лучше?"
|
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 "Любые предложения приветствуются! Просто свяжитесь с нами %s здесь %s. Не забудьте указать название плагина. Спасибо!"
|
332 |
|
333 |
+
#: inc/php/page.php:208
|
334 |
msgid "I love this plugin! Can I help somehow?"
|
335 |
msgstr "Мне нравится этот плагин! Могу Я чем-то помочь?"
|
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 "Да, любые финансовые взносы приветствуются! Просто посетите %s мой сайт %s, нажмите на кнопку пожертвования. Спасибо!"
|
341 |
|
342 |
+
#: inc/php/page.php:216
|
343 |
msgid "My question wasn't answered here."
|
344 |
msgstr "Моего вопроса здесь нет."
|
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 "Вы можете задать ваш вопрос на %s этой странице %s. Но имейте в виду, что этот плагин является бесплатным и без специальной поддержки, поэтому у нас нет возможности ответить на все вопросы."
|
350 |
|
351 |
+
#: inc/php/page.php:232
|
352 |
msgid "Support Me"
|
353 |
msgstr "Поддержать меня"
|
354 |
|
355 |
+
#: inc/php/page.php:240 inc/php/settings.php:60 inc/php/sidebar.php:53
|
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 Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
|
362 |
msgstr "Привет! Меня зовут %s Артур Гарегинян %s и Я основатель %s Space X-Chimp %s."
|
363 |
|
364 |
+
#: inc/php/page.php:253
|
365 |
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."
|
366 |
msgstr "Я намерен создать проекты, которые сделают этот мир лучшим местом. Я очень увлечен своей работой, мне нравится то, что Я делаю и надеюсь, что вы тоже станете лучше благодаря моим проектам."
|
367 |
|
368 |
+
#: inc/php/page.php:254
|
369 |
msgid "I spend a lot of time and effort trying to make sure that the themes, plugins and other things I build are useful, and the ultimate proof of that for me is that you actually want to use them. But, I’m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
|
370 |
msgstr "Я трачу много времени и сил, пытаясь убедиться в том, что темы, плагины и другие вещи, которые я создаю, полезны и окончательное доказательство этого для меня состоит в том, что вы на самом деле хотите их использовать. Но Я независимый разработчик, без регулярного дохода, поэтому каждый небольшой вклад помогает мне покрыть расходы и позволяет тратить больше времени на создание программ для людей как вы."
|
371 |
|
372 |
+
#: inc/php/page.php:255
|
373 |
msgid "If you appreciate my work, you can buy me a coffee!"
|
374 |
msgstr "Если вы цените мою работу, то вы можете купить мне кофе!"
|
375 |
|
376 |
+
#: inc/php/page.php:256
|
377 |
msgid "Thank you for your support!"
|
378 |
msgstr "Спасибо за вашу поддержку!"
|
379 |
|
381 |
msgid "Functions (PHP code)"
|
382 |
msgstr "Функции (PHP код)"
|
383 |
|
384 |
+
#: inc/php/settings.php:45
|
385 |
+
msgid "Enter your PHP functions here"
|
386 |
+
msgstr ""
|
387 |
+
|
388 |
+
#: inc/php/settings.php:50
|
389 |
msgid "Save changes"
|
390 |
msgstr "Сохранить изменения"
|
391 |
|
392 |
+
#: inc/php/settings.php:55 inc/php/sidebar.php:48
|
393 |
msgid "I'm an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
|
394 |
msgstr "Я независимый разработчик, без регулярного дохода, так что каждый маленький вклад помогает мне покрыть затраты и позволяет тратить больше времени на создание программ для людей как вы."
|
395 |
|
396 |
+
#: inc/php/settings.php:62 inc/php/sidebar.php:55
|
397 |
msgid "Thanks for your support!"
|
398 |
msgstr "Спасибо за вашу поддержку!"
|
399 |
|
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-06-
|
7 |
-
"PO-Revision-Date: 2018-06-
|
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:
|
90 |
msgid "Support"
|
91 |
msgstr ""
|
92 |
|
@@ -300,76 +300,80 @@ msgstr ""
|
|
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 ""
|
302 |
|
303 |
-
#: inc/php/page.php:
|
304 |
-
msgid "
|
305 |
msgstr ""
|
306 |
|
307 |
#: inc/php/page.php:189
|
|
|
|
|
|
|
|
|
308 |
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."
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: inc/php/page.php:
|
312 |
msgid "Where to report bug if found?"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: inc/php/page.php:
|
316 |
#, php-format
|
317 |
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!"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: inc/php/page.php:
|
321 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: inc/php/page.php:
|
325 |
#, php-format
|
326 |
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!"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: inc/php/page.php:
|
330 |
msgid "I love this plugin! Can I help somehow?"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: inc/php/page.php:
|
334 |
#, php-format
|
335 |
msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: inc/php/page.php:
|
339 |
msgid "My question wasn't answered here."
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: inc/php/page.php:
|
343 |
#, php-format
|
344 |
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."
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: inc/php/page.php:
|
348 |
msgid "Support Me"
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: inc/php/page.php:
|
352 |
msgid "Donate with PayPal"
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: inc/php/page.php:
|
356 |
#, php-format
|
357 |
msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: inc/php/page.php:
|
361 |
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."
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: inc/php/page.php:
|
365 |
msgid "I spend a lot of time and effort trying to make sure that the themes, plugins and other things I build are useful, and the ultimate proof of that for me is that you actually want to use them. But, I’m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: inc/php/page.php:
|
369 |
msgid "If you appreciate my work, you can buy me a coffee!"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: inc/php/page.php:
|
373 |
msgid "Thank you for your support!"
|
374 |
msgstr ""
|
375 |
|
@@ -377,15 +381,19 @@ msgstr ""
|
|
377 |
msgid "Functions (PHP code)"
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: inc/php/settings.php:
|
|
|
|
|
|
|
|
|
381 |
msgid "Save changes"
|
382 |
msgstr "儲存變更"
|
383 |
|
384 |
-
#: inc/php/settings.php:
|
385 |
msgid "I'm an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: inc/php/settings.php:
|
389 |
msgid "Thanks for your support!"
|
390 |
msgstr "謝謝您的贊助!"
|
391 |
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
+
"POT-Creation-Date: 2018-06-30 20:01+0300\n"
|
7 |
+
"PO-Revision-Date: 2018-06-30 20:01+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:46
|
90 |
msgid "Support"
|
91 |
msgstr ""
|
92 |
|
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 ""
|
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 ""
|
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 ""
|
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 ""
|
314 |
|
315 |
+
#: inc/php/page.php:192
|
316 |
msgid "Where to report bug if found?"
|
317 |
msgstr ""
|
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 ""
|
323 |
|
324 |
+
#: inc/php/page.php:200
|
325 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
326 |
msgstr ""
|
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 ""
|
332 |
|
333 |
+
#: inc/php/page.php:208
|
334 |
msgid "I love this plugin! Can I help somehow?"
|
335 |
msgstr ""
|
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 ""
|
341 |
|
342 |
+
#: inc/php/page.php:216
|
343 |
msgid "My question wasn't answered here."
|
344 |
msgstr ""
|
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 ""
|
350 |
|
351 |
+
#: inc/php/page.php:232
|
352 |
msgid "Support Me"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: inc/php/page.php:240 inc/php/settings.php:60 inc/php/sidebar.php:53
|
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 Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: inc/php/page.php:253
|
365 |
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."
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: inc/php/page.php:254
|
369 |
msgid "I spend a lot of time and effort trying to make sure that the themes, plugins and other things I build are useful, and the ultimate proof of that for me is that you actually want to use them. But, I’m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: inc/php/page.php:255
|
373 |
msgid "If you appreciate my work, you can buy me a coffee!"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: inc/php/page.php:256
|
377 |
msgid "Thank you for your support!"
|
378 |
msgstr ""
|
379 |
|
381 |
msgid "Functions (PHP code)"
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: inc/php/settings.php:45
|
385 |
+
msgid "Enter your PHP functions here"
|
386 |
+
msgstr ""
|
387 |
+
|
388 |
+
#: inc/php/settings.php:50
|
389 |
msgid "Save changes"
|
390 |
msgstr "儲存變更"
|
391 |
|
392 |
+
#: inc/php/settings.php:55 inc/php/sidebar.php:48
|
393 |
msgid "I'm an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: inc/php/settings.php:62 inc/php/sidebar.php:55
|
397 |
msgid "Thanks for your support!"
|
398 |
msgstr "謝謝您的贊助!"
|
399 |
|
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-06-
|
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:
|
88 |
msgid "Support"
|
89 |
msgstr ""
|
90 |
|
@@ -298,76 +298,80 @@ msgstr ""
|
|
298 |
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>."
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: inc/php/page.php:
|
302 |
-
msgid "
|
303 |
msgstr ""
|
304 |
|
305 |
#: inc/php/page.php:189
|
|
|
|
|
|
|
|
|
306 |
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."
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: inc/php/page.php:
|
310 |
msgid "Where to report bug if found?"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: inc/php/page.php:
|
314 |
#, php-format
|
315 |
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!"
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: inc/php/page.php:
|
319 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: inc/php/page.php:
|
323 |
#, php-format
|
324 |
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!"
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: inc/php/page.php:
|
328 |
msgid "I love this plugin! Can I help somehow?"
|
329 |
msgstr ""
|
330 |
|
331 |
-
#: inc/php/page.php:
|
332 |
#, php-format
|
333 |
msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: inc/php/page.php:
|
337 |
msgid "My question wasn't answered here."
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: inc/php/page.php:
|
341 |
#, php-format
|
342 |
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."
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: inc/php/page.php:
|
346 |
msgid "Support Me"
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: inc/php/page.php:
|
350 |
msgid "Donate with PayPal"
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: inc/php/page.php:
|
354 |
#, php-format
|
355 |
msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: inc/php/page.php:
|
359 |
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."
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: inc/php/page.php:
|
363 |
msgid "I spend a lot of time and effort trying to make sure that the themes, plugins and other things I build are useful, and the ultimate proof of that for me is that you actually want to use them. But, I’m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: inc/php/page.php:
|
367 |
msgid "If you appreciate my work, you can buy me a coffee!"
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: inc/php/page.php:
|
371 |
msgid "Thank you for your support!"
|
372 |
msgstr ""
|
373 |
|
@@ -375,15 +379,19 @@ msgstr ""
|
|
375 |
msgid "Functions (PHP code)"
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: inc/php/settings.php:
|
|
|
|
|
|
|
|
|
379 |
msgid "Save changes"
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: inc/php/settings.php:
|
383 |
msgid "I'm an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: inc/php/settings.php:
|
387 |
msgid "Thanks for your support!"
|
388 |
msgstr ""
|
389 |
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
+
"POT-Creation-Date: 2018-06-30 20:01+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:46
|
88 |
msgid "Support"
|
89 |
msgstr ""
|
90 |
|
298 |
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>."
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: inc/php/page.php:187
|
302 |
+
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."
|
303 |
msgstr ""
|
304 |
|
305 |
#: inc/php/page.php:189
|
306 |
+
msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
|
307 |
+
msgstr ""
|
308 |
+
|
309 |
+
#: inc/php/page.php:190
|
310 |
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."
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: inc/php/page.php:192
|
314 |
msgid "Where to report bug if found?"
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: inc/php/page.php:194
|
318 |
#, php-format
|
319 |
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!"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: inc/php/page.php:200
|
323 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: inc/php/page.php:202
|
327 |
#, php-format
|
328 |
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!"
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: inc/php/page.php:208
|
332 |
msgid "I love this plugin! Can I help somehow?"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: inc/php/page.php:210
|
336 |
#, php-format
|
337 |
msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: inc/php/page.php:216
|
341 |
msgid "My question wasn't answered here."
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: inc/php/page.php:218
|
345 |
#, php-format
|
346 |
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."
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: inc/php/page.php:232
|
350 |
msgid "Support Me"
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: inc/php/page.php:240 inc/php/settings.php:60 inc/php/sidebar.php:53
|
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 Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: inc/php/page.php:253
|
363 |
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."
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: inc/php/page.php:254
|
367 |
msgid "I spend a lot of time and effort trying to make sure that the themes, plugins and other things I build are useful, and the ultimate proof of that for me is that you actually want to use them. But, I’m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: inc/php/page.php:255
|
371 |
msgid "If you appreciate my work, you can buy me a coffee!"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: inc/php/page.php:256
|
375 |
msgid "Thank you for your support!"
|
376 |
msgstr ""
|
377 |
|
379 |
msgid "Functions (PHP code)"
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: inc/php/settings.php:45
|
383 |
+
msgid "Enter your PHP functions here"
|
384 |
+
msgstr ""
|
385 |
+
|
386 |
+
#: inc/php/settings.php:50
|
387 |
msgid "Save changes"
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: inc/php/settings.php:55 inc/php/sidebar.php:48
|
391 |
msgid "I'm an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: inc/php/settings.php:62 inc/php/sidebar.php:55
|
395 |
msgid "Thanks for your support!"
|
396 |
msgstr ""
|
397 |
|
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.21
|
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 |
|
@@ -165,6 +165,8 @@ A. This plugin has a built-in functions for checking the custom code for syntax
|
|
165 |
|
166 |
This plugin stored you entered code in the database of your website. For getting your code, you also can go to the `Database` -> Table "`wp_options`" -> Option "`spacexchimp_p001_settings`" -> "`option_value`".
|
167 |
|
|
|
|
|
168 |
= Q. The last WordPress update is preventing me from editing my website that is using this plugin. Why is this? =
|
169 |
A. This plugin can not cause such problem. More likely, the problem are related to the settings of the website. It could just be a cache, so please try to clear your website's cache (may be you using a caching plugin, or some web service such as the CloudFlare) and then the cache of your web browser. Also please try to re-login to the website, this too can help.
|
170 |
|
@@ -195,7 +197,7 @@ A. Yes, any contributions are very welcome! Please visit [our donation page](htt
|
|
195 |
**License**
|
196 |
|
197 |
This plugin is licensed under the [GNU General Public License, version 3 (GPLv3)](http://www.gnu.org/licenses/gpl-3.0.html) and is distributed free of charge.
|
198 |
-
Commercial licensing (e.g. for projects that can’t use an open-source
|
199 |
|
200 |
**Credits**
|
201 |
|
@@ -213,6 +215,12 @@ Commercial licensing (e.g. for projects that can’t use an open-source licence)
|
|
213 |
|
214 |
== Changelog ==
|
215 |
|
|
|
|
|
|
|
|
|
|
|
|
|
216 |
= 4.20 =
|
217 |
* Updated the method of loading the addons of the CodeMirror library.
|
218 |
* Added the addon 'autorefresh.js' to the CodeMirror editor. The code for manual refreshing the CodeMirror editor is deleted.
|
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.21
|
8 |
License: GPL3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
165 |
|
166 |
This plugin stored you entered code in the database of your website. For getting your code, you also can go to the `Database` -> Table "`wp_options`" -> Option "`spacexchimp_p001_settings`" -> "`option_value`".
|
167 |
|
168 |
+
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.
|
169 |
+
|
170 |
= Q. The last WordPress update is preventing me from editing my website that is using this plugin. Why is this? =
|
171 |
A. This plugin can not cause such problem. More likely, the problem are related to the settings of the website. It could just be a cache, so please try to clear your website's cache (may be you using a caching plugin, or some web service such as the CloudFlare) and then the cache of your web browser. Also please try to re-login to the website, this too can help.
|
172 |
|
197 |
**License**
|
198 |
|
199 |
This plugin is licensed under the [GNU General Public License, version 3 (GPLv3)](http://www.gnu.org/licenses/gpl-3.0.html) and is distributed free of charge.
|
200 |
+
Commercial licensing (e.g. for projects that can’t use an open-source license) is available upon request.
|
201 |
|
202 |
**Credits**
|
203 |
|
215 |
|
216 |
== Changelog ==
|
217 |
|
218 |
+
= 4.21 =
|
219 |
+
* Fixed localization of the word "licence". (Thanks to Garrett Hyder @garrett-eclipse)
|
220 |
+
* Settings for the CodeMirror editor are moved to a separate file 'codemirror-settings.js'.
|
221 |
+
* Added the addon 'placeholder.js' to the CodeMirror editor. Added a placeholder for code field.
|
222 |
+
* Texts on the plugin settings page are updated. Translations are updated.
|
223 |
+
|
224 |
= 4.20 =
|
225 |
* Updated the method of loading the addons of the CodeMirror library.
|
226 |
* Added the addon 'autorefresh.js' to the CodeMirror editor. The code for manual refreshing the CodeMirror editor is deleted.
|