Version Description
- Updated the method of loading the addons of the CodeMirror library.
- Added the addon 'autorefresh.js' to the CodeMirror editor. The code for manual refreshing the CodeMirror editor is deleted.
- 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.20 |
Comparing to | |
See all releases |
Code changes from version 4.19 to 4.20
- inc/js/admin.js +2 -9
- inc/lib/codemirror/addon/display/autorefresh.js +47 -0
- inc/php/enqueue.php +8 -3
- inc/php/page.php +8 -5
- languages/my-custom-functions-de_DE.mo +0 -0
- languages/my-custom-functions-de_DE.po +36 -24
- languages/my-custom-functions-es_ES.mo +0 -0
- languages/my-custom-functions-es_ES.po +36 -24
- languages/my-custom-functions-fr_FR.mo +0 -0
- languages/my-custom-functions-fr_FR.po +36 -24
- languages/my-custom-functions-ru_RU.mo +0 -0
- languages/my-custom-functions-ru_RU.po +52 -28
- languages/my-custom-functions-zh_TW.mo +0 -0
- languages/my-custom-functions-zh_TW.po +36 -24
- languages/my-custom-functions.pot +35 -23
- my-custom-functions.php +1 -1
- readme.txt +15 -7
inc/js/admin.js
CHANGED
@@ -41,11 +41,9 @@ jQuery(document).ready(function($) {
|
|
41 |
onLabel: 'ON'
|
42 |
});
|
43 |
|
44 |
-
// Find
|
45 |
$('textarea').each(function(index, elements) {
|
46 |
-
|
47 |
-
// Change textarea to CodeMirror editor
|
48 |
-
var editor = CodeMirror.fromTextArea( elements , {
|
49 |
lineNumbers: true,
|
50 |
firstLineNumber: 1,
|
51 |
matchBrackets: true,
|
@@ -53,11 +51,6 @@ jQuery(document).ready(function($) {
|
|
53 |
mode: 'text/x-php',
|
54 |
styleActiveLine: true
|
55 |
});
|
56 |
-
|
57 |
-
// Refresh CodeMirror editor after 1 second
|
58 |
-
setTimeout(function() {
|
59 |
-
editor.refresh();
|
60 |
-
},1);
|
61 |
});
|
62 |
|
63 |
});
|
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,
|
51 |
mode: 'text/x-php',
|
52 |
styleActiveLine: true
|
53 |
});
|
|
|
|
|
|
|
|
|
|
|
54 |
});
|
55 |
|
56 |
});
|
inc/lib/codemirror/addon/display/autorefresh.js
ADDED
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
"use strict"
|
13 |
+
|
14 |
+
CodeMirror.defineOption("autoRefresh", false, function(cm, val) {
|
15 |
+
if (cm.state.autoRefresh) {
|
16 |
+
stopListening(cm, cm.state.autoRefresh)
|
17 |
+
cm.state.autoRefresh = null
|
18 |
+
}
|
19 |
+
if (val && cm.display.wrapper.offsetHeight == 0)
|
20 |
+
startListening(cm, cm.state.autoRefresh = {delay: val.delay || 250})
|
21 |
+
})
|
22 |
+
|
23 |
+
function startListening(cm, state) {
|
24 |
+
function check() {
|
25 |
+
if (cm.display.wrapper.offsetHeight) {
|
26 |
+
stopListening(cm, state)
|
27 |
+
if (cm.display.lastWrapHeight != cm.display.wrapper.clientHeight)
|
28 |
+
cm.refresh()
|
29 |
+
} else {
|
30 |
+
state.timeout = setTimeout(check, state.delay)
|
31 |
+
}
|
32 |
+
}
|
33 |
+
state.timeout = setTimeout(check, state.delay)
|
34 |
+
state.hurry = function() {
|
35 |
+
clearTimeout(state.timeout)
|
36 |
+
state.timeout = setTimeout(check, 50)
|
37 |
+
}
|
38 |
+
CodeMirror.on(window, "mouseup", state.hurry)
|
39 |
+
CodeMirror.on(window, "keyup", state.hurry)
|
40 |
+
}
|
41 |
+
|
42 |
+
function stopListening(_cm, state) {
|
43 |
+
clearTimeout(state.timeout)
|
44 |
+
CodeMirror.off(window, "mouseup", state.hurry)
|
45 |
+
CodeMirror.off(window, "keyup", state.hurry)
|
46 |
+
}
|
47 |
+
});
|
inc/php/enqueue.php
CHANGED
@@ -38,9 +38,14 @@ function spacexchimp_p001_load_scripts_admin( $hook ) {
|
|
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 |
-
|
43 |
-
|
|
|
|
|
|
|
|
|
|
|
44 |
}
|
45 |
|
46 |
// Other libraries
|
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 ) {
|
46 |
+
foreach ( $addons_group as $addon ) {
|
47 |
+
wp_enqueue_script( $prefix . '-codemirror-addon-' . $addon . '-js', $url . 'inc/lib/codemirror/addon/' . $addons_group_name . '/' . $addon . '.js', array(), $version, false );
|
48 |
+
}
|
49 |
}
|
50 |
|
51 |
// Other libraries
|
inc/php/page.php
CHANGED
@@ -173,12 +173,15 @@ function spacexchimp_p001_render_submenu_page() {
|
|
173 |
<?php _e( '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.', $text ); ?></div>
|
174 |
|
175 |
<div class="question-10 question-red"><?php _e( 'What to do if this plugin crashed the website?', $text ); ?></div>
|
176 |
-
<div class="answer-10"><?php _e( '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
|
177 |
<ol class="custom-counter">
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
|
|
|
|
|
|
182 |
</ol>
|
183 |
<?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 ); ?></div>
|
184 |
|
173 |
<?php _e( '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.', $text ); ?></div>
|
174 |
|
175 |
<div class="question-10 question-red"><?php _e( 'What to do if this plugin crashed the website?', $text ); ?></div>
|
176 |
+
<div class="answer-10"><?php _e( '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.', $text ); ?>
|
177 |
<ol class="custom-counter">
|
178 |
+
<li><?php _e( '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.', $text ); ?></li>
|
179 |
+
<li><?php _e( '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.', $text ); ?></li>
|
180 |
+
<li><?php _e( 'Rename the file <code>START</code> to <code>STOP</code>. This will stop the execution of your custom code.', $text ); ?></li>
|
181 |
+
<li><?php _e( 'Log in to Admin Area of your WordPress website.', $text ); ?></li>
|
182 |
+
<li><?php _e( 'Go to the plugin settings page <code>Settings</code> ➡ <code>PHP Inserter</code>.', $text ); ?></li>
|
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 ); ?></div>
|
187 |
|
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-
|
7 |
-
"PO-Revision-Date: 2018-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: German\n"
|
10 |
"Language: de_DE\n"
|
@@ -265,99 +265,111 @@ msgid "What to do if this plugin crashed the website?"
|
|
265 |
msgstr ""
|
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
|
269 |
msgstr ""
|
270 |
|
271 |
#: inc/php/page.php:178
|
272 |
-
msgid "
|
273 |
msgstr ""
|
274 |
|
275 |
#: inc/php/page.php:179
|
276 |
-
msgid "
|
277 |
msgstr ""
|
278 |
|
279 |
#: inc/php/page.php:180
|
280 |
-
msgid "
|
281 |
msgstr ""
|
282 |
|
283 |
#: inc/php/page.php:181
|
284 |
-
msgid "
|
|
|
|
|
|
|
|
|
285 |
msgstr ""
|
286 |
|
287 |
#: inc/php/page.php:183
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
288 |
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>."
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: inc/php/page.php:
|
292 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
|
293 |
msgstr "Das letzte WordPress-Update hindert mich daran, meine Webseite, die dieses Plugin verwendet, zu bearbeiten. Warum ist das so?"
|
294 |
|
295 |
-
#: inc/php/page.php:
|
296 |
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."
|
297 |
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."
|
298 |
|
299 |
-
#: inc/php/page.php:
|
300 |
msgid "Where to report bug if found?"
|
301 |
msgstr "Wo kann ich eine Fehler melden?"
|
302 |
|
303 |
-
#: inc/php/page.php:
|
304 |
#, php-format
|
305 |
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!"
|
306 |
msgstr "Bitte besuchen Sie %s diese Seite %s und berichten Sie. Bitte vergiss nicht den Namen des Plugins anzugeben. Vielen Dank!"
|
307 |
|
308 |
-
#: inc/php/page.php:
|
309 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
310 |
msgstr "Wo können Sie Ideen oder Vorschläge loswerden, um das Plugin besser zu machen?"
|
311 |
|
312 |
-
#: inc/php/page.php:
|
313 |
#, php-format
|
314 |
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!"
|
315 |
msgstr "Irgendwelche Vorschläge sind sehr willkommen! Kontaktieren Sie uns einfach %s hier %s. Bitte vergiss nicht den Namen des Plugins anzugeben. Vielen Dank!"
|
316 |
|
317 |
-
#: inc/php/page.php:
|
318 |
msgid "I love this plugin! Can I help somehow?"
|
319 |
msgstr "Ich liebe dieses Plugin! Kann ich Irgendwie helfen?"
|
320 |
|
321 |
-
#: inc/php/page.php:
|
322 |
#, php-format
|
323 |
msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
|
324 |
msgstr "Ja, jede finanzielle Unterstützung ist Willkommen! Besuchen Sie %s meine Webseite %s, klicken Sie auf den Spenden Button und Danke!"
|
325 |
|
326 |
-
#: inc/php/page.php:
|
327 |
msgid "My question wasn't answered here."
|
328 |
msgstr "Meine Fragen wurden nicht beantwortet."
|
329 |
|
330 |
-
#: inc/php/page.php:
|
331 |
#, php-format
|
332 |
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."
|
333 |
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."
|
334 |
|
335 |
-
#: inc/php/page.php:
|
336 |
msgid "Support Me"
|
337 |
msgstr "Unterstützen Sie mich"
|
338 |
|
339 |
-
#: inc/php/page.php:
|
340 |
msgid "Donate with PayPal"
|
341 |
msgstr "Spende mit PayPal"
|
342 |
|
343 |
-
#: inc/php/page.php:
|
344 |
#, php-format
|
345 |
msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
|
346 |
msgstr "Hallo! Meine name ist %s Arthur Gareginyan %s und ich bin der Gründer von %s Space X-Chimp %s."
|
347 |
|
348 |
-
#: inc/php/page.php:
|
349 |
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."
|
350 |
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."
|
351 |
|
352 |
-
#: inc/php/page.php:
|
353 |
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."
|
354 |
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."
|
355 |
|
356 |
-
#: inc/php/page.php:
|
357 |
msgid "If you appreciate my work, you can buy me a coffee!"
|
358 |
msgstr "Wenn Ihnen meine Arbeit gefällt, können Sie mir gerne einen Kaffee kaufen!"
|
359 |
|
360 |
-
#: inc/php/page.php:
|
361 |
msgid "Thank you for your support!"
|
362 |
msgstr "Danke für Ihre Unterstützung!"
|
363 |
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
+
"POT-Creation-Date: 2018-06-26 18:02+0300\n"
|
7 |
+
"PO-Revision-Date: 2018-06-26 18:02+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: German\n"
|
10 |
"Language: de_DE\n"
|
265 |
msgstr ""
|
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 ""
|
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 ""
|
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 ""
|
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 ""
|
282 |
|
283 |
#: inc/php/page.php:181
|
284 |
+
msgid "Log in to Admin Area of your WordPress website."
|
285 |
+
msgstr ""
|
286 |
+
|
287 |
+
#: inc/php/page.php:182
|
288 |
+
msgid "Go to the plugin settings page <code>Settings</code> ➡ <code>PHP Inserter</code>."
|
289 |
msgstr ""
|
290 |
|
291 |
#: inc/php/page.php:183
|
292 |
+
msgid "Edit/fix your custom code that you entered before the crash."
|
293 |
+
msgstr ""
|
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 ""
|
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 ""
|
302 |
|
303 |
+
#: inc/php/page.php:188
|
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: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 "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:191
|
312 |
msgid "Where to report bug if found?"
|
313 |
msgstr "Wo kann ich eine Fehler melden?"
|
314 |
|
315 |
+
#: inc/php/page.php:193
|
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:199
|
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:201
|
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:207
|
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:209
|
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:215
|
339 |
msgid "My question wasn't answered here."
|
340 |
msgstr "Meine Fragen wurden nicht beantwortet."
|
341 |
|
342 |
+
#: inc/php/page.php:217
|
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:231
|
348 |
msgid "Support Me"
|
349 |
msgstr "Unterstützen Sie mich"
|
350 |
|
351 |
+
#: inc/php/page.php:239 inc/php/settings.php:50 inc/php/sidebar.php:53
|
352 |
msgid "Donate with PayPal"
|
353 |
msgstr "Spende mit PayPal"
|
354 |
|
355 |
+
#: inc/php/page.php:244
|
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:252
|
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:253
|
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:254
|
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:255
|
373 |
msgid "Thank you for your support!"
|
374 |
msgstr "Danke für Ihre Unterstützung!"
|
375 |
|
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-
|
7 |
-
"PO-Revision-Date: 2018-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Spanish\n"
|
10 |
"Language: es_ES\n"
|
@@ -265,99 +265,111 @@ msgid "What to do if this plugin crashed the website?"
|
|
265 |
msgstr ""
|
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
|
269 |
msgstr ""
|
270 |
|
271 |
#: inc/php/page.php:178
|
272 |
-
msgid "
|
273 |
msgstr ""
|
274 |
|
275 |
#: inc/php/page.php:179
|
276 |
-
msgid "
|
277 |
msgstr ""
|
278 |
|
279 |
#: inc/php/page.php:180
|
280 |
-
msgid "
|
281 |
msgstr ""
|
282 |
|
283 |
#: inc/php/page.php:181
|
284 |
-
msgid "
|
|
|
|
|
|
|
|
|
285 |
msgstr ""
|
286 |
|
287 |
#: inc/php/page.php:183
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
288 |
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>."
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: inc/php/page.php:
|
292 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
|
293 |
msgstr "La última actualización de WordPress me impide editar mi sitio web que está utilizando este complemento. ¿Porqué sucede esto?"
|
294 |
|
295 |
-
#: inc/php/page.php:
|
296 |
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."
|
297 |
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."
|
298 |
|
299 |
-
#: inc/php/page.php:
|
300 |
msgid "Where to report bug if found?"
|
301 |
msgstr "¿Dónde informar el error si se encuentra?"
|
302 |
|
303 |
-
#: inc/php/page.php:
|
304 |
#, php-format
|
305 |
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!"
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: inc/php/page.php:
|
309 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
310 |
msgstr "¿Dónde compartir ideas o sugerencias para mejorar el complemento?"
|
311 |
|
312 |
-
#: inc/php/page.php:
|
313 |
#, php-format
|
314 |
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!"
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: inc/php/page.php:
|
318 |
msgid "I love this plugin! Can I help somehow?"
|
319 |
msgstr "Me encanta este complemento! ¿Puedo ayudar de alguna manera?"
|
320 |
|
321 |
-
#: inc/php/page.php:
|
322 |
#, php-format
|
323 |
msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
|
324 |
msgstr "Sí, cualquier contribución financiera es bienvenida! Simplemente visita %s mi sitio web %s, has clic en el botón DONAR y gracias!"
|
325 |
|
326 |
-
#: inc/php/page.php:
|
327 |
msgid "My question wasn't answered here."
|
328 |
msgstr "Mi pregunta no fue contestada aquí."
|
329 |
|
330 |
-
#: inc/php/page.php:
|
331 |
#, php-format
|
332 |
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."
|
333 |
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."
|
334 |
|
335 |
-
#: inc/php/page.php:
|
336 |
msgid "Support Me"
|
337 |
msgstr "Apoyarme!"
|
338 |
|
339 |
-
#: inc/php/page.php:
|
340 |
msgid "Donate with PayPal"
|
341 |
msgstr "Donar con PayPal"
|
342 |
|
343 |
-
#: inc/php/page.php:
|
344 |
#, php-format
|
345 |
msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
|
346 |
msgstr "¡Hola! Mi nombre es %s Arthur Gareginyan %s y soy el fundador de %s Space X-Chimp %s."
|
347 |
|
348 |
-
#: inc/php/page.php:
|
349 |
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."
|
350 |
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."
|
351 |
|
352 |
-
#: inc/php/page.php:
|
353 |
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."
|
354 |
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."
|
355 |
|
356 |
-
#: inc/php/page.php:
|
357 |
msgid "If you appreciate my work, you can buy me a coffee!"
|
358 |
msgstr "Si aprecias mi trabajo, puedes comprarme un café!"
|
359 |
|
360 |
-
#: inc/php/page.php:
|
361 |
msgid "Thank you for your support!"
|
362 |
msgstr "¡Gracias por tu apoyo!"
|
363 |
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
+
"POT-Creation-Date: 2018-06-26 18:03+0300\n"
|
7 |
+
"PO-Revision-Date: 2018-06-26 18:03+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Spanish\n"
|
10 |
"Language: es_ES\n"
|
265 |
msgstr ""
|
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 ""
|
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 ""
|
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 ""
|
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 ""
|
282 |
|
283 |
#: inc/php/page.php:181
|
284 |
+
msgid "Log in to Admin Area of your WordPress website."
|
285 |
+
msgstr ""
|
286 |
+
|
287 |
+
#: inc/php/page.php:182
|
288 |
+
msgid "Go to the plugin settings page <code>Settings</code> ➡ <code>PHP Inserter</code>."
|
289 |
msgstr ""
|
290 |
|
291 |
#: inc/php/page.php:183
|
292 |
+
msgid "Edit/fix your custom code that you entered before the crash."
|
293 |
+
msgstr ""
|
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 ""
|
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 ""
|
302 |
|
303 |
+
#: inc/php/page.php:188
|
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: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 "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:191
|
312 |
msgid "Where to report bug if found?"
|
313 |
msgstr "¿Dónde informar el error si se encuentra?"
|
314 |
|
315 |
+
#: inc/php/page.php:193
|
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:199
|
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:201
|
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:207
|
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:209
|
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:215
|
339 |
msgid "My question wasn't answered here."
|
340 |
msgstr "Mi pregunta no fue contestada aquí."
|
341 |
|
342 |
+
#: inc/php/page.php:217
|
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:231
|
348 |
msgid "Support Me"
|
349 |
msgstr "Apoyarme!"
|
350 |
|
351 |
+
#: inc/php/page.php:239 inc/php/settings.php:50 inc/php/sidebar.php:53
|
352 |
msgid "Donate with PayPal"
|
353 |
msgstr "Donar con PayPal"
|
354 |
|
355 |
+
#: inc/php/page.php:244
|
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:252
|
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:253
|
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:254
|
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:255
|
373 |
msgid "Thank you for your support!"
|
374 |
msgstr "¡Gracias por tu apoyo!"
|
375 |
|
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-
|
7 |
-
"PO-Revision-Date: 2018-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: French\n"
|
10 |
"Language: fr_FR\n"
|
@@ -265,99 +265,111 @@ msgid "What to do if this plugin crashed the website?"
|
|
265 |
msgstr ""
|
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
|
269 |
msgstr ""
|
270 |
|
271 |
#: inc/php/page.php:178
|
272 |
-
msgid "
|
273 |
msgstr ""
|
274 |
|
275 |
#: inc/php/page.php:179
|
276 |
-
msgid "
|
277 |
msgstr ""
|
278 |
|
279 |
#: inc/php/page.php:180
|
280 |
-
msgid "
|
281 |
msgstr ""
|
282 |
|
283 |
#: inc/php/page.php:181
|
284 |
-
msgid "
|
|
|
|
|
|
|
|
|
285 |
msgstr ""
|
286 |
|
287 |
#: inc/php/page.php:183
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
288 |
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>."
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: inc/php/page.php:
|
292 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: inc/php/page.php:
|
296 |
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."
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: inc/php/page.php:
|
300 |
msgid "Where to report bug if found?"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: inc/php/page.php:
|
304 |
#, php-format
|
305 |
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!"
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: inc/php/page.php:
|
309 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: inc/php/page.php:
|
313 |
#, php-format
|
314 |
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!"
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: inc/php/page.php:
|
318 |
msgid "I love this plugin! Can I help somehow?"
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: inc/php/page.php:
|
322 |
#, php-format
|
323 |
msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: inc/php/page.php:
|
327 |
msgid "My question wasn't answered here."
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: inc/php/page.php:
|
331 |
#, php-format
|
332 |
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."
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: inc/php/page.php:
|
336 |
msgid "Support Me"
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: inc/php/page.php:
|
340 |
msgid "Donate with PayPal"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: inc/php/page.php:
|
344 |
#, php-format
|
345 |
msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: inc/php/page.php:
|
349 |
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."
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: inc/php/page.php:
|
353 |
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."
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: inc/php/page.php:
|
357 |
msgid "If you appreciate my work, you can buy me a coffee!"
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: inc/php/page.php:
|
361 |
msgid "Thank you for your support!"
|
362 |
msgstr ""
|
363 |
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
+
"POT-Creation-Date: 2018-06-26 18:03+0300\n"
|
7 |
+
"PO-Revision-Date: 2018-06-26 18:03+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: French\n"
|
10 |
"Language: fr_FR\n"
|
265 |
msgstr ""
|
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 ""
|
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 ""
|
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 ""
|
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 ""
|
282 |
|
283 |
#: inc/php/page.php:181
|
284 |
+
msgid "Log in to Admin Area of your WordPress website."
|
285 |
+
msgstr ""
|
286 |
+
|
287 |
+
#: inc/php/page.php:182
|
288 |
+
msgid "Go to the plugin settings page <code>Settings</code> ➡ <code>PHP Inserter</code>."
|
289 |
msgstr ""
|
290 |
|
291 |
#: inc/php/page.php:183
|
292 |
+
msgid "Edit/fix your custom code that you entered before the crash."
|
293 |
+
msgstr ""
|
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 ""
|
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 ""
|
302 |
|
303 |
+
#: inc/php/page.php:188
|
304 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
|
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:191
|
312 |
msgid "Where to report bug if found?"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: inc/php/page.php:193
|
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:199
|
321 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: inc/php/page.php:201
|
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:207
|
330 |
msgid "I love this plugin! Can I help somehow?"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: inc/php/page.php:209
|
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:215
|
339 |
msgid "My question wasn't answered here."
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: inc/php/page.php:217
|
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:231
|
348 |
msgid "Support Me"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: inc/php/page.php:239 inc/php/settings.php:50 inc/php/sidebar.php:53
|
352 |
msgid "Donate with PayPal"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: inc/php/page.php:244
|
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:252
|
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:253
|
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:254
|
369 |
msgid "If you appreciate my work, you can buy me a coffee!"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: inc/php/page.php:255
|
373 |
msgid "Thank you for your support!"
|
374 |
msgstr ""
|
375 |
|
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-
|
7 |
-
"PO-Revision-Date: 2018-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Russian\n"
|
10 |
"Language: ru_RU\n"
|
@@ -265,99 +265,111 @@ msgid "What to do if this plugin crashed the website?"
|
|
265 |
msgstr "Что делать, если этот плагин сломал сайт?"
|
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
|
269 |
msgstr "Этот плагин имеет встроенные функции для проверки пользовательского кода на синтаксические ошибки, дублирования имён функций и т. д. Но плагин не идеален, поэтому бывают случаи, когда введенный пользовательский код вызывает ошибку и белый экран (WSOD). Это связано с тем, что ваш пользовательский код имеет синтаксическую ошибку, которую этот плагин не смог обнаружить. Когда это произойдет с вами, просто выполните следующее, и все будет в порядке."
|
270 |
|
271 |
#: inc/php/page.php:178
|
272 |
-
msgid "
|
273 |
-
msgstr "
|
274 |
|
275 |
#: inc/php/page.php:179
|
276 |
-
msgid "
|
277 |
-
msgstr "
|
278 |
|
279 |
#: inc/php/page.php:180
|
280 |
-
msgid "
|
281 |
-
msgstr "
|
282 |
|
283 |
#: inc/php/page.php:181
|
284 |
-
msgid "
|
285 |
-
msgstr "
|
|
|
|
|
|
|
|
|
286 |
|
287 |
#: inc/php/page.php:183
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
288 |
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>."
|
289 |
msgstr "Этот плагин хранит введённый код в базе данных вашего сайта. Для получения кода вы также можете перейти в <code>Database</code> ➡ Table <code>wp_options</code> ➡ Option <code>spacexchimp_p001_settings</code> ➡ <code>option_value</code>."
|
290 |
|
291 |
-
#: inc/php/page.php:
|
292 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
|
293 |
msgstr "Последнее обновление WordPress не позволяет мне редактировать мой сайт, который использует этот плагин. Почему так?"
|
294 |
|
295 |
-
#: inc/php/page.php:
|
296 |
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."
|
297 |
msgstr "Этот плагин не может вызвать такую проблему. Скорее всего, проблема связана с настройками веб-сайта. Это может быть кеш, поэтому попробуйте очистить кеш вашего сайта (возможно, вы используете плагин для кеширования или какой-либо веб-сервис, такой как CloudFlare), а затем кеш вашего веб-браузера. Также попробуйте повторно войти на сайт, это тоже может помочь."
|
298 |
|
299 |
-
#: inc/php/page.php:
|
300 |
msgid "Where to report bug if found?"
|
301 |
msgstr "Где можно сообщить об ошибке?"
|
302 |
|
303 |
-
#: inc/php/page.php:
|
304 |
#, php-format
|
305 |
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!"
|
306 |
msgstr "Посетите %s эту страницу %s и сообщите. Не забудьте указать название плагина. Спасибо!"
|
307 |
|
308 |
-
#: inc/php/page.php:
|
309 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
310 |
msgstr "Где можно поделиться идеями или предложениями, чтобы сделать плагин лучше?"
|
311 |
|
312 |
-
#: inc/php/page.php:
|
313 |
#, php-format
|
314 |
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!"
|
315 |
msgstr "Любые предложения приветствуются! Просто свяжитесь с нами %s здесь %s. Не забудьте указать название плагина. Спасибо!"
|
316 |
|
317 |
-
#: inc/php/page.php:
|
318 |
msgid "I love this plugin! Can I help somehow?"
|
319 |
msgstr "Мне нравится этот плагин! Могу Я чем-то помочь?"
|
320 |
|
321 |
-
#: inc/php/page.php:
|
322 |
#, php-format
|
323 |
msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
|
324 |
msgstr "Да, любые финансовые взносы приветствуются! Просто посетите %s мой сайт %s, нажмите на кнопку пожертвования. Спасибо!"
|
325 |
|
326 |
-
#: inc/php/page.php:
|
327 |
msgid "My question wasn't answered here."
|
328 |
msgstr "Моего вопроса здесь нет."
|
329 |
|
330 |
-
#: inc/php/page.php:
|
331 |
#, php-format
|
332 |
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."
|
333 |
msgstr "Вы можете задать ваш вопрос на %s этой странице %s. Но имейте в виду, что этот плагин является бесплатным и без специальной поддержки, поэтому у нас нет возможности ответить на все вопросы."
|
334 |
|
335 |
-
#: inc/php/page.php:
|
336 |
msgid "Support Me"
|
337 |
msgstr "Поддержать меня"
|
338 |
|
339 |
-
#: inc/php/page.php:
|
340 |
msgid "Donate with PayPal"
|
341 |
msgstr "Пожертвовать через Pay Pal"
|
342 |
|
343 |
-
#: inc/php/page.php:
|
344 |
#, php-format
|
345 |
msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
|
346 |
msgstr "Привет! Меня зовут %s Артур Гарегинян %s и Я основатель %s Space X-Chimp %s."
|
347 |
|
348 |
-
#: inc/php/page.php:
|
349 |
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."
|
350 |
msgstr "Я намерен создать проекты, которые сделают этот мир лучшим местом. Я очень увлечен своей работой, мне нравится то, что Я делаю и надеюсь, что вы тоже станете лучше благодаря моим проектам."
|
351 |
|
352 |
-
#: inc/php/page.php:
|
353 |
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."
|
354 |
msgstr "Я трачу много времени и сил, пытаясь убедиться в том, что темы, плагины и другие вещи, которые я создаю, полезны и окончательное доказательство этого для меня состоит в том, что вы на самом деле хотите их использовать. Но Я независимый разработчик, без регулярного дохода, поэтому каждый небольшой вклад помогает мне покрыть расходы и позволяет тратить больше времени на создание программ для людей как вы."
|
355 |
|
356 |
-
#: inc/php/page.php:
|
357 |
msgid "If you appreciate my work, you can buy me a coffee!"
|
358 |
msgstr "Если вы цените мою работу, то вы можете купить мне кофе!"
|
359 |
|
360 |
-
#: inc/php/page.php:
|
361 |
msgid "Thank you for your support!"
|
362 |
msgstr "Спасибо за вашу поддержку!"
|
363 |
|
@@ -412,3 +424,15 @@ msgstr "Space X-Chimp"
|
|
412 |
#. Author URI of the plugin/theme
|
413 |
msgid "https://www.spacexchimp.com"
|
414 |
msgstr "https://www.spacexchimp.com"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
+
"POT-Creation-Date: 2018-06-26 18:03+0300\n"
|
7 |
+
"PO-Revision-Date: 2018-06-26 18:03+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Russian\n"
|
10 |
"Language: ru_RU\n"
|
265 |
msgstr "Что делать, если этот плагин сломал сайт?"
|
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 "Этот плагин имеет встроенные функции для проверки пользовательского кода на синтаксические ошибки, дублирования имён функций и т. д. Но плагин не идеален, поэтому бывают случаи, когда введенный пользовательский код вызывает ошибку и белый экран (WSOD). Это связано с тем, что ваш пользовательский код имеет синтаксическую ошибку, которую этот плагин не смог обнаружить. Когда это произойдет с вами, просто выполните следующее, и все будет в порядке."
|
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 ""
|
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 ""
|
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 ""
|
282 |
|
283 |
#: inc/php/page.php:181
|
284 |
+
msgid "Log in to Admin Area of your WordPress website."
|
285 |
+
msgstr ""
|
286 |
+
|
287 |
+
#: inc/php/page.php:182
|
288 |
+
msgid "Go to the plugin settings page <code>Settings</code> ➡ <code>PHP Inserter</code>."
|
289 |
+
msgstr ""
|
290 |
|
291 |
#: inc/php/page.php:183
|
292 |
+
msgid "Edit/fix your custom code that you entered before the crash."
|
293 |
+
msgstr ""
|
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 ""
|
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 "Этот плагин хранит введённый код в базе данных вашего сайта. Для получения кода вы также можете перейти в <code>Database</code> ➡ Table <code>wp_options</code> ➡ Option <code>spacexchimp_p001_settings</code> ➡ <code>option_value</code>."
|
302 |
|
303 |
+
#: inc/php/page.php:188
|
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: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 "Этот плагин не может вызвать такую проблему. Скорее всего, проблема связана с настройками веб-сайта. Это может быть кеш, поэтому попробуйте очистить кеш вашего сайта (возможно, вы используете плагин для кеширования или какой-либо веб-сервис, такой как CloudFlare), а затем кеш вашего веб-браузера. Также попробуйте повторно войти на сайт, это тоже может помочь."
|
310 |
|
311 |
+
#: inc/php/page.php:191
|
312 |
msgid "Where to report bug if found?"
|
313 |
msgstr "Где можно сообщить об ошибке?"
|
314 |
|
315 |
+
#: inc/php/page.php:193
|
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:199
|
321 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
322 |
msgstr "Где можно поделиться идеями или предложениями, чтобы сделать плагин лучше?"
|
323 |
|
324 |
+
#: inc/php/page.php:201
|
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:207
|
330 |
msgid "I love this plugin! Can I help somehow?"
|
331 |
msgstr "Мне нравится этот плагин! Могу Я чем-то помочь?"
|
332 |
|
333 |
+
#: inc/php/page.php:209
|
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:215
|
339 |
msgid "My question wasn't answered here."
|
340 |
msgstr "Моего вопроса здесь нет."
|
341 |
|
342 |
+
#: inc/php/page.php:217
|
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:231
|
348 |
msgid "Support Me"
|
349 |
msgstr "Поддержать меня"
|
350 |
|
351 |
+
#: inc/php/page.php:239 inc/php/settings.php:50 inc/php/sidebar.php:53
|
352 |
msgid "Donate with PayPal"
|
353 |
msgstr "Пожертвовать через Pay Pal"
|
354 |
|
355 |
+
#: inc/php/page.php:244
|
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:252
|
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:253
|
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:254
|
369 |
msgid "If you appreciate my work, you can buy me a coffee!"
|
370 |
msgstr "Если вы цените мою работу, то вы можете купить мне кофе!"
|
371 |
|
372 |
+
#: inc/php/page.php:255
|
373 |
msgid "Thank you for your support!"
|
374 |
msgstr "Спасибо за вашу поддержку!"
|
375 |
|
424 |
#. Author URI of the plugin/theme
|
425 |
msgid "https://www.spacexchimp.com"
|
426 |
msgstr "https://www.spacexchimp.com"
|
427 |
+
|
428 |
+
#~ msgid "Via FTP, go to the plugin folder (in <code>wp-content/plugins/my-custom-functions/</code>)."
|
429 |
+
#~ msgstr "Через FTP, перейдите в папку плагина (в <code>wp-content/plugins/my-custom-functions/</code>)."
|
430 |
+
|
431 |
+
#~ msgid "Rename the file \\`START\\` to \\`STOP\\`. This will stop the execution of your custom code."
|
432 |
+
#~ msgstr "Переименуйте файл «START» в «STOP». Это остановит выполнение пользовательского кода."
|
433 |
+
|
434 |
+
#~ msgid "Return to the plugin settings page and edit/fix your custom code that you entered before the crash."
|
435 |
+
#~ msgstr "Вернитесь на страницу настроек плагина и отредактируйте/исправьте свой код, который вы ввели до сбоя."
|
436 |
+
|
437 |
+
#~ msgid "rename the file \\`STOP\\` to \\`START\\` and you're done!"
|
438 |
+
#~ msgstr "Переименуйте файл \"STOP\" в \"START\", и всё готово!"
|
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-
|
7 |
-
"PO-Revision-Date: 2018-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Chinese (Taiwan)\n"
|
10 |
"Language: zh_TW\n"
|
@@ -265,99 +265,111 @@ msgid "What to do if this plugin crashed the website?"
|
|
265 |
msgstr ""
|
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
|
269 |
msgstr ""
|
270 |
|
271 |
#: inc/php/page.php:178
|
272 |
-
msgid "
|
273 |
msgstr ""
|
274 |
|
275 |
#: inc/php/page.php:179
|
276 |
-
msgid "
|
277 |
msgstr ""
|
278 |
|
279 |
#: inc/php/page.php:180
|
280 |
-
msgid "
|
281 |
msgstr ""
|
282 |
|
283 |
#: inc/php/page.php:181
|
284 |
-
msgid "
|
|
|
|
|
|
|
|
|
285 |
msgstr ""
|
286 |
|
287 |
#: inc/php/page.php:183
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
288 |
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>."
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: inc/php/page.php:
|
292 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: inc/php/page.php:
|
296 |
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."
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: inc/php/page.php:
|
300 |
msgid "Where to report bug if found?"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: inc/php/page.php:
|
304 |
#, php-format
|
305 |
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!"
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: inc/php/page.php:
|
309 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: inc/php/page.php:
|
313 |
#, php-format
|
314 |
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!"
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: inc/php/page.php:
|
318 |
msgid "I love this plugin! Can I help somehow?"
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: inc/php/page.php:
|
322 |
#, php-format
|
323 |
msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: inc/php/page.php:
|
327 |
msgid "My question wasn't answered here."
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: inc/php/page.php:
|
331 |
#, php-format
|
332 |
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."
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: inc/php/page.php:
|
336 |
msgid "Support Me"
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: inc/php/page.php:
|
340 |
msgid "Donate with PayPal"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: inc/php/page.php:
|
344 |
#, php-format
|
345 |
msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: inc/php/page.php:
|
349 |
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."
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: inc/php/page.php:
|
353 |
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."
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: inc/php/page.php:
|
357 |
msgid "If you appreciate my work, you can buy me a coffee!"
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: inc/php/page.php:
|
361 |
msgid "Thank you for your support!"
|
362 |
msgstr ""
|
363 |
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
+
"POT-Creation-Date: 2018-06-26 18:03+0300\n"
|
7 |
+
"PO-Revision-Date: 2018-06-26 18:03+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Chinese (Taiwan)\n"
|
10 |
"Language: zh_TW\n"
|
265 |
msgstr ""
|
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 ""
|
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 ""
|
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 ""
|
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 ""
|
282 |
|
283 |
#: inc/php/page.php:181
|
284 |
+
msgid "Log in to Admin Area of your WordPress website."
|
285 |
+
msgstr ""
|
286 |
+
|
287 |
+
#: inc/php/page.php:182
|
288 |
+
msgid "Go to the plugin settings page <code>Settings</code> ➡ <code>PHP Inserter</code>."
|
289 |
msgstr ""
|
290 |
|
291 |
#: inc/php/page.php:183
|
292 |
+
msgid "Edit/fix your custom code that you entered before the crash."
|
293 |
+
msgstr ""
|
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 ""
|
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 ""
|
302 |
|
303 |
+
#: inc/php/page.php:188
|
304 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
|
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:191
|
312 |
msgid "Where to report bug if found?"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: inc/php/page.php:193
|
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:199
|
321 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: inc/php/page.php:201
|
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:207
|
330 |
msgid "I love this plugin! Can I help somehow?"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: inc/php/page.php:209
|
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:215
|
339 |
msgid "My question wasn't answered here."
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: inc/php/page.php:217
|
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:231
|
348 |
msgid "Support Me"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: inc/php/page.php:239 inc/php/settings.php:50 inc/php/sidebar.php:53
|
352 |
msgid "Donate with PayPal"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: inc/php/page.php:244
|
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:252
|
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:253
|
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:254
|
369 |
msgid "If you appreciate my work, you can buy me a coffee!"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: inc/php/page.php:255
|
373 |
msgid "Thank you for your support!"
|
374 |
msgstr ""
|
375 |
|
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-
|
7 |
"PO-Revision-Date: 2015-08-30 16:22+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
@@ -263,99 +263,111 @@ msgid "What to do if this plugin crashed the website?"
|
|
263 |
msgstr ""
|
264 |
|
265 |
#: inc/php/page.php:176
|
266 |
-
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
|
267 |
msgstr ""
|
268 |
|
269 |
#: inc/php/page.php:178
|
270 |
-
msgid "
|
271 |
msgstr ""
|
272 |
|
273 |
#: inc/php/page.php:179
|
274 |
-
msgid "
|
275 |
msgstr ""
|
276 |
|
277 |
#: inc/php/page.php:180
|
278 |
-
msgid "
|
279 |
msgstr ""
|
280 |
|
281 |
#: inc/php/page.php:181
|
282 |
-
msgid "
|
|
|
|
|
|
|
|
|
283 |
msgstr ""
|
284 |
|
285 |
#: inc/php/page.php:183
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
286 |
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>."
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: inc/php/page.php:
|
290 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: inc/php/page.php:
|
294 |
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."
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: inc/php/page.php:
|
298 |
msgid "Where to report bug if found?"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: inc/php/page.php:
|
302 |
#, php-format
|
303 |
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!"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: inc/php/page.php:
|
307 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: inc/php/page.php:
|
311 |
#, php-format
|
312 |
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!"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: inc/php/page.php:
|
316 |
msgid "I love this plugin! Can I help somehow?"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: inc/php/page.php:
|
320 |
#, php-format
|
321 |
msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: inc/php/page.php:
|
325 |
msgid "My question wasn't answered here."
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: inc/php/page.php:
|
329 |
#, php-format
|
330 |
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."
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: inc/php/page.php:
|
334 |
msgid "Support Me"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: inc/php/page.php:
|
338 |
msgid "Donate with PayPal"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: inc/php/page.php:
|
342 |
#, php-format
|
343 |
msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: inc/php/page.php:
|
347 |
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."
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: inc/php/page.php:
|
351 |
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."
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: inc/php/page.php:
|
355 |
msgid "If you appreciate my work, you can buy me a coffee!"
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: inc/php/page.php:
|
359 |
msgid "Thank you for your support!"
|
360 |
msgstr ""
|
361 |
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
+
"POT-Creation-Date: 2018-06-26 18:03+0300\n"
|
7 |
"PO-Revision-Date: 2015-08-30 16:22+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
263 |
msgstr ""
|
264 |
|
265 |
#: inc/php/page.php:176
|
266 |
+
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."
|
267 |
msgstr ""
|
268 |
|
269 |
#: inc/php/page.php:178
|
270 |
+
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."
|
271 |
msgstr ""
|
272 |
|
273 |
#: inc/php/page.php:179
|
274 |
+
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."
|
275 |
msgstr ""
|
276 |
|
277 |
#: inc/php/page.php:180
|
278 |
+
msgid "Rename the file <code>START</code> to <code>STOP</code>. This will stop the execution of your custom code."
|
279 |
msgstr ""
|
280 |
|
281 |
#: inc/php/page.php:181
|
282 |
+
msgid "Log in to Admin Area of your WordPress website."
|
283 |
+
msgstr ""
|
284 |
+
|
285 |
+
#: inc/php/page.php:182
|
286 |
+
msgid "Go to the plugin settings page <code>Settings</code> ➡ <code>PHP Inserter</code>."
|
287 |
msgstr ""
|
288 |
|
289 |
#: inc/php/page.php:183
|
290 |
+
msgid "Edit/fix your custom code that you entered before the crash."
|
291 |
+
msgstr ""
|
292 |
+
|
293 |
+
#: inc/php/page.php:184
|
294 |
+
msgid "Return to the plugin folder and rename the file <code>STOP</code> to <code>START</code> and you're done!"
|
295 |
+
msgstr ""
|
296 |
+
|
297 |
+
#: inc/php/page.php:186
|
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:188
|
302 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
|
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:191
|
310 |
msgid "Where to report bug if found?"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: inc/php/page.php:193
|
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:199
|
319 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: inc/php/page.php:201
|
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:207
|
328 |
msgid "I love this plugin! Can I help somehow?"
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: inc/php/page.php:209
|
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:215
|
337 |
msgid "My question wasn't answered here."
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: inc/php/page.php:217
|
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:231
|
346 |
msgid "Support Me"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: inc/php/page.php:239 inc/php/settings.php:50 inc/php/sidebar.php:53
|
350 |
msgid "Donate with PayPal"
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: inc/php/page.php:244
|
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:252
|
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:253
|
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:254
|
367 |
msgid "If you appreciate my work, you can buy me a coffee!"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: inc/php/page.php:255
|
371 |
msgid "Thank you for your support!"
|
372 |
msgstr ""
|
373 |
|
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.20
|
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 |
|
@@ -153,12 +153,15 @@ A. As with every plugin, it's possible that things don't work. The most common r
|
|
153 |
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.
|
154 |
|
155 |
= Q. What to do if this plugin crashed the website? =
|
156 |
-
A. 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
|
157 |
|
158 |
-
1.
|
159 |
-
2.
|
160 |
-
3.
|
161 |
-
4.
|
|
|
|
|
|
|
162 |
|
163 |
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`".
|
164 |
|
@@ -192,7 +195,7 @@ A. Yes, any contributions are very welcome! Please visit [our donation page](htt
|
|
192 |
**License**
|
193 |
|
194 |
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.
|
195 |
-
Commercial licensing (e.g. for projects that can’t use an open-source
|
196 |
|
197 |
**Credits**
|
198 |
|
@@ -210,6 +213,11 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
210 |
|
211 |
== Changelog ==
|
212 |
|
|
|
|
|
|
|
|
|
|
|
213 |
= 4.19 =
|
214 |
* CodeMirror library updated to the latest version v5.38.0. The directory structure is changed (files are better organized). Added a test files for the CodeMirror modes.
|
215 |
* Updated the method of loading the modes and addons of the CodeMirror library.
|
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.20
|
8 |
License: GPL3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
153 |
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.
|
154 |
|
155 |
= Q. What to do if this plugin crashed the website? =
|
156 |
+
A. 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.
|
157 |
|
158 |
+
1. 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.
|
159 |
+
2. Browse to the directory `wp-content/plugins/my-custom-functions/`. Please contact your web hosting company to get help if you can't find this folder.
|
160 |
+
3. Rename the file `START` to `STOP`. This will stop the execution of your custom code.
|
161 |
+
4. Log in to Admin Area of your WordPress website.
|
162 |
+
5. Go to the plugin settings page `Settings` -> `PHP Inserter`.
|
163 |
+
6. Edit/fix your custom code that you entered before the crash.
|
164 |
+
7. Return to the plugin folder and rename the file `STOP` to `START` and you're done!
|
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 |
|
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 licence) is available upon request.
|
199 |
|
200 |
**Credits**
|
201 |
|
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.
|
219 |
+
* Texts on the plugin settings page are updated. Translations are updated.
|
220 |
+
|
221 |
= 4.19 =
|
222 |
* CodeMirror library updated to the latest version v5.38.0. The directory structure is changed (files are better organized). Added a test files for the CodeMirror modes.
|
223 |
* Updated the method of loading the modes and addons of the CodeMirror library.
|