Version Description
- Content of the "Usage" section updated.
- Content of the "FAQ" section updated.
- Code formatting in the "admin.js" file improved.
- Code commenting improved.
- The copyright date updated.
- Translation files are updated.
Download this release
Release Info
Developer | Arthur Gareginyan |
Plugin | My Custom Functions |
Version | 4.32 |
Comparing to | |
See all releases |
Code changes from version 4.31 to 4.32
- inc/css/admin.css +1 -1
- inc/js/admin.js +9 -9
- inc/js/codemirror-settings.js +1 -1
- inc/php/functional.php +1 -1
- inc/php/page.php +49 -41
- inc/php/settings.php +1 -1
- languages/my-custom-functions-de_DE.mo +0 -0
- languages/my-custom-functions-de_DE.po +76 -55
- languages/my-custom-functions-es_ES.mo +0 -0
- languages/my-custom-functions-es_ES.po +76 -55
- languages/my-custom-functions-fr_FR.mo +0 -0
- languages/my-custom-functions-fr_FR.po +73 -53
- languages/my-custom-functions-nl_NL.mo +0 -0
- languages/my-custom-functions-nl_NL.po +79 -56
- languages/my-custom-functions-ru_RU.mo +0 -0
- languages/my-custom-functions-ru_RU.po +79 -56
- languages/my-custom-functions-zh_TW.mo +0 -0
- languages/my-custom-functions-zh_TW.po +73 -53
- languages/my-custom-functions.pot +72 -52
- my-custom-functions.php +2 -2
- readme.txt +25 -10
inc/css/admin.css
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* @package My Custom Functions
|
5 |
* @author Arthur Gareginyan
|
6 |
* @link https://www.spacexchimp.com
|
7 |
-
* @copyright Copyright (c) 2016-
|
8 |
*/
|
9 |
|
10 |
|
4 |
* @package My Custom Functions
|
5 |
* @author Arthur Gareginyan
|
6 |
* @link https://www.spacexchimp.com
|
7 |
+
* @copyright Copyright (c) 2016-2019 Space X-Chimp. All Rights Reserved.
|
8 |
*/
|
9 |
|
10 |
|
inc/js/admin.js
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* @package My Custom Functions
|
5 |
* @author Arthur Gareginyan
|
6 |
* @link https://www.spacexchimp.com
|
7 |
-
* @copyright Copyright (c) 2016-
|
8 |
*/
|
9 |
|
10 |
|
@@ -24,14 +24,14 @@ jQuery(document).ready(function($) {
|
|
24 |
|
25 |
// Add questions and answers into spoilers and color them in different colors
|
26 |
$('.panel-group .panel').each(function(i) {
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
});
|
36 |
|
37 |
// Enable switches
|
4 |
* @package My Custom Functions
|
5 |
* @author Arthur Gareginyan
|
6 |
* @link https://www.spacexchimp.com
|
7 |
+
* @copyright Copyright (c) 2016-2019 Space X-Chimp. All Rights Reserved.
|
8 |
*/
|
9 |
|
10 |
|
24 |
|
25 |
// Add questions and answers into spoilers and color them in different colors
|
26 |
$('.panel-group .panel').each(function(i) {
|
27 |
+
$('.question-' + (i+1) ).appendTo( $('h4', this) );
|
28 |
+
$('.answer-' + (i+1) ).appendTo( $('.panel-body', this) );
|
29 |
+
|
30 |
+
if ( $(this).find('h4 div').hasClass('question-red') ) {
|
31 |
+
$(this).addClass('panel-danger');
|
32 |
+
} else {
|
33 |
+
$(this).addClass('panel-info');
|
34 |
+
}
|
35 |
});
|
36 |
|
37 |
// Enable switches
|
inc/js/codemirror-settings.js
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* @package My Custom Functions
|
5 |
* @author Arthur Gareginyan
|
6 |
* @link https://www.spacexchimp.com
|
7 |
-
* @copyright Copyright (c) 2016-
|
8 |
*/
|
9 |
|
10 |
|
4 |
* @package My Custom Functions
|
5 |
* @author Arthur Gareginyan
|
6 |
* @link https://www.spacexchimp.com
|
7 |
+
* @copyright Copyright (c) 2016-2019 Space X-Chimp. All Rights Reserved.
|
8 |
*/
|
9 |
|
10 |
|
inc/php/functional.php
CHANGED
@@ -10,7 +10,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
10 |
*/
|
11 |
function spacexchimp_p001_prepare() {
|
12 |
|
13 |
-
//
|
14 |
$options = get_option( SPACEXCHIMP_P001_SETTINGS . '_settings' );
|
15 |
$data = !empty( $options['snippets'] ) ? $options['snippets'] : '';
|
16 |
$enable = !empty( $options['enable'] ) ? $options['enable'] : '';
|
10 |
*/
|
11 |
function spacexchimp_p001_prepare() {
|
12 |
|
13 |
+
// Retrieve options from database and declare variables
|
14 |
$options = get_option( SPACEXCHIMP_P001_SETTINGS . '_settings' );
|
15 |
$data = !empty( $options['snippets'] ) ? $options['snippets'] : '';
|
16 |
$enable = !empty( $options['enable'] ) ? $options['enable'] : '';
|
inc/php/page.php
CHANGED
@@ -81,12 +81,12 @@ function spacexchimp_p001_render_submenu_page() {
|
|
81 |
<li><?php _e( 'Click the "Save changes" button.', $text ); ?></li>
|
82 |
<li><?php _e( 'Enjoy the result of applying your custom PHP code.', $text ); ?> <?php _e( 'It\'s that simple!', $text ); ?></li>
|
83 |
</ol>
|
84 |
-
<p class="note"
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
</p>
|
91 |
</div>
|
92 |
</div>
|
@@ -105,7 +105,7 @@ function spacexchimp_p001_render_submenu_page() {
|
|
105 |
|
106 |
<div class="panel-group" id="collapse-group">
|
107 |
<?php
|
108 |
-
$loopvalue = '
|
109 |
for ( $i = 1; $i <= $loopvalue; $i++ ) {
|
110 |
echo '<div class="panel panel-default">
|
111 |
<div class="panel-heading">
|
@@ -153,23 +153,14 @@ add_action( 'wp_head', 'my_custom_html_code' );</code></pre>
|
|
153 |
<div class="question-5"><?php _e( 'How much of PHP code (characters) I can enter in the code editor?', $text ); ?></div>
|
154 |
<div class="answer-5"><?php _e( 'We don\'t limit the number of characters.', $text ); ?></div>
|
155 |
|
156 |
-
<div class="question-6
|
157 |
-
<div class="answer-6"><?php _e( '
|
158 |
-
<ol class="custom-counter">
|
159 |
-
<li><?php _e( 'You make a syntax error in the code that you have entered. Check the syntax of your code and try again.', $text ); ?></li>
|
160 |
-
<li><?php _e( 'You entered two functions with the same name. Use a unique names for your functions.', $text ); ?></li>
|
161 |
-
<li><?php _e( 'You have entered function with a name that is already occupied by another function. Use a unique name for your function.', $text ); ?></li>
|
162 |
-
<li><?php _e( 'You are trying to overwrite an existing function (of WordPress, theme, or plugin). Instead, use filters and hooks.', $text ); ?></li>
|
163 |
-
</ol></div>
|
164 |
-
|
165 |
-
<div class="question-7"><?php _e( 'Does this plugin requires any modification of the theme?', $text ); ?></div>
|
166 |
-
<div class="answer-7"><?php _e( 'Absolutely not. This plugin is configurable entirely from the plugin settings page.', $text ); ?></div>
|
167 |
|
168 |
-
<div class="question-
|
169 |
-
<div class="answer-
|
170 |
|
171 |
-
<div class="question-
|
172 |
-
<div class="answer-
|
173 |
<pre><code>function my_custom_php_code() {
|
174 |
|
175 |
// Stop the function if this is not the Home page of website
|
@@ -183,13 +174,30 @@ add_action( 'wp_head', 'my_custom_html_code' );</code></pre>
|
|
183 |
my_custom_php_code();</code></pre>
|
184 |
</div>
|
185 |
|
186 |
-
<div class="question-
|
187 |
-
<div class="answer-
|
188 |
-
<?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>
|
189 |
-
|
190 |
-
<div class="question-11 question-red"><?php _e( 'What to do if this plugin crashed the website?', $text ); ?></div>
|
191 |
-
<div class="answer-11"><?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 ); ?>
|
192 |
<ol class="custom-counter">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
193 |
<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>
|
194 |
<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>
|
195 |
<li><?php _e( 'Rename the file <code>START</code> to <code>STOP</code>. This will stop the execution of your custom code.', $text ); ?></li>
|
@@ -197,39 +205,39 @@ my_custom_php_code();</code></pre>
|
|
197 |
<li><?php _e( 'Go to the plugin settings page <code>Settings</code> ➡ <code>PHP Inserter</code>.', $text ); ?></li>
|
198 |
<li><?php _e( 'Edit/fix your custom PHP code that you entered before the crash.', $text ); ?></li>
|
199 |
<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>
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
|
204 |
-
<div class="question-
|
205 |
-
<div class="answer-
|
206 |
|
207 |
-
<div class="question-
|
208 |
-
<div class="answer-
|
209 |
__( '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!', $text ),
|
210 |
'<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
|
211 |
'</a>'
|
212 |
);
|
213 |
?></div>
|
214 |
|
215 |
-
<div class="question-
|
216 |
-
<div class="answer-
|
217 |
__( '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!', $text ),
|
218 |
'<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
|
219 |
'</a>'
|
220 |
);
|
221 |
?></div>
|
222 |
|
223 |
-
<div class="question-
|
224 |
-
<div class="answer-
|
225 |
__( 'Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!', $text ),
|
226 |
'<a href="https://www.spacexchimp.com/donate.html" target="_blank">',
|
227 |
'</a>'
|
228 |
);
|
229 |
?></div>
|
230 |
|
231 |
-
<div class="question-
|
232 |
-
<div class="answer-
|
233 |
__( '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.', $text ),
|
234 |
'<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
|
235 |
'</a>'
|
81 |
<li><?php _e( 'Click the "Save changes" button.', $text ); ?></li>
|
82 |
<li><?php _e( 'Enjoy the result of applying your custom PHP code.', $text ); ?> <?php _e( 'It\'s that simple!', $text ); ?></li>
|
83 |
</ol>
|
84 |
+
<p class="note"><?php printf(
|
85 |
+
__( 'If you want more options, then %s let us know %s and we will be happy to add them.', $text ),
|
86 |
+
'<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
|
87 |
+
'</a>'
|
88 |
+
);
|
89 |
+
?>
|
90 |
</p>
|
91 |
</div>
|
92 |
</div>
|
105 |
|
106 |
<div class="panel-group" id="collapse-group">
|
107 |
<?php
|
108 |
+
$loopvalue = '17';
|
109 |
for ( $i = 1; $i <= $loopvalue; $i++ ) {
|
110 |
echo '<div class="panel panel-default">
|
111 |
<div class="panel-heading">
|
153 |
<div class="question-5"><?php _e( 'How much of PHP code (characters) I can enter in the code editor?', $text ); ?></div>
|
154 |
<div class="answer-5"><?php _e( 'We don\'t limit the number of characters.', $text ); ?></div>
|
155 |
|
156 |
+
<div class="question-6"><?php _e( 'Does this plugin requires any modification of the theme?', $text ); ?></div>
|
157 |
+
<div class="answer-6"><?php _e( 'Absolutely not. This plugin is configurable entirely from the plugin settings page.', $text ); ?></div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
158 |
|
159 |
+
<div class="question-7"><?php _e( 'Does this require any knowledge of HTML or CSS?', $text ); ?></div>
|
160 |
+
<div class="answer-7"><?php _e( 'This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page. But you need to know the HTML or CSS in order to add/remove/modify the HTML or CSS code by using this plugin.', $text ); ?></div>
|
161 |
|
162 |
+
<div class="question-8"><?php _e( 'Can I add my custom PHP code to a specific page of my website?', $text ); ?></div>
|
163 |
+
<div class="answer-8"><?php _e( 'For now, this plugin does not have an option to apply the custom PHP code only on specific pages. We plan to add this feature soon. But for now in order to apply your custom PHP code only on specific pages of your website, you need to wrap your custom PHP code in a PHP function that will determine the page you want. You need something like this:', $text ); ?><br><br>
|
164 |
<pre><code>function my_custom_php_code() {
|
165 |
|
166 |
// Stop the function if this is not the Home page of website
|
174 |
my_custom_php_code();</code></pre>
|
175 |
</div>
|
176 |
|
177 |
+
<div class="question-9 question-red"><?php _e( 'On the plugin settings page, an error message appears. What could be wrong?', $text ); ?></div>
|
178 |
+
<div class="answer-9"><?php _e( 'Here are a few of the most likely causes of the error message:', $text ); ?>
|
|
|
|
|
|
|
|
|
179 |
<ol class="custom-counter">
|
180 |
+
<li><?php _e( 'You make a syntax error in the code that you have entered. Check the syntax of your code and try again.', $text ); ?></li>
|
181 |
+
<li><?php _e( 'You entered two functions with the same name. Use a unique names for your functions.', $text ); ?></li>
|
182 |
+
<li><?php _e( 'You have entered function with a name that is already occupied by another function. Use a unique name for your function.', $text ); ?></li>
|
183 |
+
<li><?php _e( 'You are trying to overwrite an existing function (of WordPress, theme, or plugin). Instead, use filters and hooks.', $text ); ?></li>
|
184 |
+
</ol></div>
|
185 |
+
|
186 |
+
<div class="question-10 question-red"><?php _e( 'My custom PHP code is not working. What could be wrong?', $text ); ?></div>
|
187 |
+
<div class="answer-10"><?php _e( 'It happens that your custom PHP code that you insert on the plugin page does not work, even if an error message does not appear. Here are a few of the most likely causes of the issue:', $text ); ?>
|
188 |
+
<ol class="custom-counter">
|
189 |
+
<li><?php _e( 'You have a typo during the insertion of your custom PHP code.', $text ); ?></li>
|
190 |
+
<li><?php _e( 'Your custom PHP code has a syntax error.', $text ); ?></li>
|
191 |
+
<li><?php _e( 'Your custom PHP code is incorrect and may not work.', $text ); ?></li>
|
192 |
+
</ol></div>
|
193 |
+
|
194 |
+
<div class="question-11 question-red"><?php _e( 'It\'s not working. What could be wrong?', $text ); ?></div>
|
195 |
+
<div class="answer-11"><?php _e( 'As with every plugin, it\'s possible that things don\'t work. The most common reason for this is a web browser\'s cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load. This is called the browser\'s cache. Clearing your browser\'s cache may solve the problem.', $text ); ?><br><br>
|
196 |
+
<?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>
|
197 |
+
|
198 |
+
<div class="question-12 question-red"><?php _e( 'What to do if this plugin crashed the website?', $text ); ?></div>
|
199 |
+
<div class="answer-12"><?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 ); ?>
|
200 |
+
<ol class="custom-counter">
|
201 |
<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>
|
202 |
<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>
|
203 |
<li><?php _e( 'Rename the file <code>START</code> to <code>STOP</code>. This will stop the execution of your custom code.', $text ); ?></li>
|
205 |
<li><?php _e( 'Go to the plugin settings page <code>Settings</code> ➡ <code>PHP Inserter</code>.', $text ); ?></li>
|
206 |
<li><?php _e( 'Edit/fix your custom PHP code that you entered before the crash.', $text ); ?></li>
|
207 |
<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>
|
208 |
+
</ol>
|
209 |
+
<?php _e( 'This plugin stored you entered code in the database of your website. For getting your code, you also can go to the <code>Database</code> ➡ Table <code>wp_options</code> ➡ Option <code>spacexchimp_p001_settings</code> ➡ <code>option_value</code>.', $text ); ?><br><br>
|
210 |
+
<?php _e( 'We are already working on a feature to automatically stop the execution of users custom PHP code for cases when this plugin could not detect the error, and this caused the inaccessibility of the website.', $text ); ?></div>
|
211 |
|
212 |
+
<div class="question-13 question-red"><?php _e( 'The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?', $text ); ?></div>
|
213 |
+
<div class="answer-13"><?php _e( 'This plugin can not cause such problem. More likely, the problem are related to the settings of the website. It could just be a cache, so please try to clear your website\'s cache (may be you using a caching plugin, or some web service such as the CloudFlare) and then the cache of your web browser. Also please try to re-login to the website, this too can help.', $text ); ?></div>
|
214 |
|
215 |
+
<div class="question-14 question-red"><?php _e( 'Where to report bug if found?', $text ); ?></div>
|
216 |
+
<div class="answer-14"><?php printf(
|
217 |
__( '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!', $text ),
|
218 |
'<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
|
219 |
'</a>'
|
220 |
);
|
221 |
?></div>
|
222 |
|
223 |
+
<div class="question-15"><?php _e( 'Where to share any ideas or suggestions to make the plugin better?', $text ); ?></div>
|
224 |
+
<div class="answer-15"><?php printf(
|
225 |
__( '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!', $text ),
|
226 |
'<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
|
227 |
'</a>'
|
228 |
);
|
229 |
?></div>
|
230 |
|
231 |
+
<div class="question-16"><?php _e( 'I love this plugin! Can I help somehow?', $text ); ?></div>
|
232 |
+
<div class="answer-16"><?php printf(
|
233 |
__( 'Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!', $text ),
|
234 |
'<a href="https://www.spacexchimp.com/donate.html" target="_blank">',
|
235 |
'</a>'
|
236 |
);
|
237 |
?></div>
|
238 |
|
239 |
+
<div class="question-17"><?php _e( 'My question wasn\'t answered here.', $text ); ?></div>
|
240 |
+
<div class="answer-17"><?php printf(
|
241 |
__( '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.', $text ),
|
242 |
'<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
|
243 |
'</a>'
|
inc/php/settings.php
CHANGED
@@ -17,7 +17,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
17 |
<?php settings_fields( SPACEXCHIMP_P001_SETTINGS . '_settings_group' ); ?>
|
18 |
|
19 |
<?php
|
20 |
-
//
|
21 |
$options = get_option( SPACEXCHIMP_P001_SETTINGS . '_settings' );
|
22 |
|
23 |
// Set default value if option is empty
|
17 |
<?php settings_fields( SPACEXCHIMP_P001_SETTINGS . '_settings_group' ); ?>
|
18 |
|
19 |
<?php
|
20 |
+
// Retrieve options from database
|
21 |
$options = get_option( SPACEXCHIMP_P001_SETTINGS . '_settings' );
|
22 |
|
23 |
// Set default value if option is empty
|
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:
|
7 |
-
"PO-Revision-Date:
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: German\n"
|
10 |
"Language: de_DE\n"
|
@@ -110,7 +110,7 @@ msgstr ""
|
|
110 |
msgid "Place your custom PHP code in the code editor field."
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: inc/php/page.php:71 inc/php/page.php:72
|
114 |
msgid "Note!"
|
115 |
msgstr "Achtung!"
|
116 |
|
@@ -206,179 +206,200 @@ msgid "We don't limit the number of characters."
|
|
206 |
msgstr ""
|
207 |
|
208 |
#: inc/php/page.php:156
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
209 |
msgid "On the plugin settings page, an error message appears. What could be wrong?"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: inc/php/page.php:
|
213 |
msgid "Here are a few of the most likely causes of the error message:"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: inc/php/page.php:
|
217 |
msgid "You make a syntax error in the code that you have entered. Check the syntax of your code and try again."
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: inc/php/page.php:
|
221 |
msgid "You entered two functions with the same name. Use a unique names for your functions."
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: inc/php/page.php:
|
225 |
msgid "You have entered function with a name that is already occupied by another function. Use a unique name for your function."
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: inc/php/page.php:
|
229 |
msgid "You are trying to overwrite an existing function (of WordPress, theme, or plugin). Instead, use filters and hooks."
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: inc/php/page.php:
|
233 |
-
msgid "
|
234 |
-
|
235 |
-
|
236 |
-
#: inc/php/page.php:166
|
237 |
-
msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
|
238 |
-
msgstr "Absolut nicht. Alle Konfigurationen des Plugins finden Sie auf Einstellungsseite des Plugins."
|
239 |
|
240 |
-
#: inc/php/page.php:
|
241 |
-
msgid "
|
242 |
-
msgstr "
|
243 |
|
244 |
-
#: inc/php/page.php:
|
245 |
-
msgid "
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: inc/php/page.php:
|
249 |
-
msgid "
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: inc/php/page.php:
|
253 |
-
msgid "
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: inc/php/page.php:
|
257 |
msgid "It's not working. What could be wrong?"
|
258 |
msgstr "Es funktioniert nicht. Was könnte falsch sein?"
|
259 |
|
260 |
-
#: inc/php/page.php:
|
261 |
msgid "As with every plugin, it's possible that things don't work. The most common reason for this is a web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load. This is called the browser's cache. Clearing your browser's cache may solve the problem."
|
262 |
msgstr "Wie bei jedem Plugin ist es möglich, dass nicht alles funktioniert. Der häufigste Grund dafür ist der Cache Ihres Webbrowsers. Jeder Webbrowser speichert den Cache der besuchten Webseite (Seiten, Bilder, usw.) um die Bandbreite zu reduzieren. Das nennt man den Browser Cache. Wenn Sie den Cache Ihres Browsers löschen, könnte das Problem behoben sein."
|
263 |
|
264 |
-
#: inc/php/page.php:
|
265 |
msgid "It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's support forum on WordPress.org, we'd be happy to give it a look and try to help out. Please include as much information as possible, including a link to your website where the problem can be seen."
|
266 |
msgstr "Es ist unmöglich genau festzustellen was falsch ist. Wenn Sie jedoch eine Support Anfrage im Plugins Support Forum von WordPress.ORG stellen, helfe wir Ihnen gerne. Bitte fügen Sie so viele Informationen wie möglich und einen Link zu der Webseite hinzu, wo das Problem auftritt."
|
267 |
|
268 |
-
#: inc/php/page.php:
|
269 |
msgid "What to do if this plugin crashed the website?"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: inc/php/page.php:
|
273 |
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."
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: inc/php/page.php:
|
277 |
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."
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: inc/php/page.php:
|
281 |
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."
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: inc/php/page.php:
|
285 |
msgid "Rename the file <code>START</code> to <code>STOP</code>. This will stop the execution of your custom code."
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: inc/php/page.php:
|
289 |
msgid "Log in to Admin Area of your WordPress website."
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: inc/php/page.php:
|
293 |
msgid "Go to the plugin settings page <code>Settings</code> ➡ <code>PHP Inserter</code>."
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: inc/php/page.php:
|
297 |
msgid "Edit/fix your custom PHP code that you entered before the crash."
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: inc/php/page.php:
|
301 |
msgid "Return to the plugin folder and rename the file <code>STOP</code> to <code>START</code> and you're done!"
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: inc/php/page.php:
|
305 |
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>."
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: inc/php/page.php:
|
309 |
msgid "We are already working on a feature to automatically stop the execution of users custom PHP code for cases when this plugin could not detect the error, and this caused the inaccessibility of the website."
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: inc/php/page.php:
|
313 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
|
314 |
msgstr "Das letzte WordPress-Update hindert mich daran, meine Webseite, die dieses Plugin verwendet, zu bearbeiten. Warum ist das so?"
|
315 |
|
316 |
-
#: inc/php/page.php:
|
317 |
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."
|
318 |
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."
|
319 |
|
320 |
-
#: inc/php/page.php:
|
321 |
msgid "Where to report bug if found?"
|
322 |
msgstr "Wo kann ich eine Fehler melden?"
|
323 |
|
324 |
-
#: inc/php/page.php:
|
325 |
#, php-format
|
326 |
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!"
|
327 |
msgstr "Bitte besuchen Sie %s diese Seite %s und berichten Sie. Bitte vergiss nicht den Namen des Plugins anzugeben. Vielen Dank!"
|
328 |
|
329 |
-
#: inc/php/page.php:
|
330 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
331 |
msgstr "Wo können Sie Ideen oder Vorschläge loswerden, um das Plugin besser zu machen?"
|
332 |
|
333 |
-
#: inc/php/page.php:
|
334 |
#, php-format
|
335 |
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!"
|
336 |
msgstr "Irgendwelche Vorschläge sind sehr willkommen! Kontaktieren Sie uns einfach %s hier %s. Bitte vergiss nicht den Namen des Plugins anzugeben. Vielen Dank!"
|
337 |
|
338 |
-
#: inc/php/page.php:
|
339 |
msgid "I love this plugin! Can I help somehow?"
|
340 |
msgstr "Ich liebe dieses Plugin! Kann ich Irgendwie helfen?"
|
341 |
|
342 |
-
#: inc/php/page.php:
|
343 |
#, php-format
|
344 |
msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
|
345 |
msgstr "Ja, jede finanzielle Unterstützung ist Willkommen! Besuchen Sie %s meine Webseite %s, klicken Sie auf den Spenden Button und Danke!"
|
346 |
|
347 |
-
#: inc/php/page.php:
|
348 |
msgid "My question wasn't answered here."
|
349 |
msgstr "Meine Fragen wurden nicht beantwortet."
|
350 |
|
351 |
-
#: inc/php/page.php:
|
352 |
#, php-format
|
353 |
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."
|
354 |
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."
|
355 |
|
356 |
-
#: inc/php/page.php:
|
357 |
msgid "Support Us"
|
358 |
msgstr "Unterstütze uns"
|
359 |
|
360 |
-
#: inc/php/page.php:
|
361 |
msgid "Donate with PayPal"
|
362 |
msgstr "Spende mit PayPal"
|
363 |
|
364 |
-
#: inc/php/page.php:
|
365 |
#, php-format
|
366 |
msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: inc/php/page.php:
|
370 |
msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: inc/php/page.php:
|
374 |
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
375 |
msgstr "Ich habe viel Zeit und Mühe darauf verwendet sicherzustellen, dass die Themes, Plugins und andere Dinge, die ich entwickle, nützlich sind. Der ultimative Beweis für mich ist, dass Sie sie tatsächlich verwenden. Aber Jeder kleine Beitrag trägt dazu bei, meine Kosten zu decken und schenkt mir mehr Zeit damit zu verbringen, Dinge für Leute wie Sie zu gestalten."
|
376 |
|
377 |
-
#: inc/php/page.php:
|
378 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
379 |
msgstr "Wenn Ihnen meine Arbeit gefällt, können Sie mir gerne einen Kaffee kaufen!"
|
380 |
|
381 |
-
#: inc/php/page.php:
|
382 |
msgid "Thank you for your support!"
|
383 |
msgstr "Danke für Ihre Unterstützung!"
|
384 |
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
+
"POT-Creation-Date: 2019-01-11 20:36+0200\n"
|
7 |
+
"PO-Revision-Date: 2019-01-11 20:36+0200\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: German\n"
|
10 |
"Language: de_DE\n"
|
110 |
msgid "Place your custom PHP code in the code editor field."
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: inc/php/page.php:71 inc/php/page.php:72
|
114 |
msgid "Note!"
|
115 |
msgstr "Achtung!"
|
116 |
|
206 |
msgstr ""
|
207 |
|
208 |
#: inc/php/page.php:156
|
209 |
+
msgid "Does this plugin requires any modification of the theme?"
|
210 |
+
msgstr "Benötigt das Plugin Veränderungen am Theme?"
|
211 |
+
|
212 |
+
#: inc/php/page.php:157
|
213 |
+
msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
|
214 |
+
msgstr "Absolut nicht. Alle Konfigurationen des Plugins finden Sie auf Einstellungsseite des Plugins."
|
215 |
+
|
216 |
+
#: inc/php/page.php:159
|
217 |
+
msgid "Does this require any knowledge of HTML or CSS?"
|
218 |
+
msgstr "Brauche ich HTML oder CCS Kenntnisse?"
|
219 |
+
|
220 |
+
#: inc/php/page.php:160
|
221 |
+
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page. But you need to know the HTML or CSS in order to add/remove/modify the HTML or CSS code by using this plugin."
|
222 |
+
msgstr ""
|
223 |
+
|
224 |
+
#: inc/php/page.php:162
|
225 |
+
msgid "Can I add my custom PHP code to a specific page of my website?"
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
#: inc/php/page.php:163
|
229 |
+
msgid "For now, this plugin does not have an option to apply the custom PHP code only on specific pages. We plan to add this feature soon. But for now in order to apply your custom PHP code only on specific pages of your website, you need to wrap your custom PHP code in a PHP function that will determine the page you want. You need something like this:"
|
230 |
+
msgstr ""
|
231 |
+
|
232 |
+
#: inc/php/page.php:177
|
233 |
msgid "On the plugin settings page, an error message appears. What could be wrong?"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: inc/php/page.php:178
|
237 |
msgid "Here are a few of the most likely causes of the error message:"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: inc/php/page.php:180
|
241 |
msgid "You make a syntax error in the code that you have entered. Check the syntax of your code and try again."
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: inc/php/page.php:181
|
245 |
msgid "You entered two functions with the same name. Use a unique names for your functions."
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: inc/php/page.php:182
|
249 |
msgid "You have entered function with a name that is already occupied by another function. Use a unique name for your function."
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: inc/php/page.php:183
|
253 |
msgid "You are trying to overwrite an existing function (of WordPress, theme, or plugin). Instead, use filters and hooks."
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: inc/php/page.php:186
|
257 |
+
#| msgid "It's not working. What could be wrong?"
|
258 |
+
msgid "My custom PHP code is not working. What could be wrong?"
|
259 |
+
msgstr ""
|
|
|
|
|
|
|
260 |
|
261 |
+
#: inc/php/page.php:187
|
262 |
+
msgid "It happens that your custom PHP code that you insert on the plugin page does not work, even if an error message does not appear. Here are a few of the most likely causes of the issue:"
|
263 |
+
msgstr ""
|
264 |
|
265 |
+
#: inc/php/page.php:189
|
266 |
+
msgid "You have a typo during the insertion of your custom PHP code."
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: inc/php/page.php:190
|
270 |
+
msgid "Your custom PHP code has a syntax error."
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: inc/php/page.php:191
|
274 |
+
msgid "Your custom PHP code is incorrect and may not work."
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: inc/php/page.php:194
|
278 |
msgid "It's not working. What could be wrong?"
|
279 |
msgstr "Es funktioniert nicht. Was könnte falsch sein?"
|
280 |
|
281 |
+
#: inc/php/page.php:195
|
282 |
msgid "As with every plugin, it's possible that things don't work. The most common reason for this is a web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load. This is called the browser's cache. Clearing your browser's cache may solve the problem."
|
283 |
msgstr "Wie bei jedem Plugin ist es möglich, dass nicht alles funktioniert. Der häufigste Grund dafür ist der Cache Ihres Webbrowsers. Jeder Webbrowser speichert den Cache der besuchten Webseite (Seiten, Bilder, usw.) um die Bandbreite zu reduzieren. Das nennt man den Browser Cache. Wenn Sie den Cache Ihres Browsers löschen, könnte das Problem behoben sein."
|
284 |
|
285 |
+
#: inc/php/page.php:196
|
286 |
msgid "It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's support forum on WordPress.org, we'd be happy to give it a look and try to help out. Please include as much information as possible, including a link to your website where the problem can be seen."
|
287 |
msgstr "Es ist unmöglich genau festzustellen was falsch ist. Wenn Sie jedoch eine Support Anfrage im Plugins Support Forum von WordPress.ORG stellen, helfe wir Ihnen gerne. Bitte fügen Sie so viele Informationen wie möglich und einen Link zu der Webseite hinzu, wo das Problem auftritt."
|
288 |
|
289 |
+
#: inc/php/page.php:198
|
290 |
msgid "What to do if this plugin crashed the website?"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: inc/php/page.php:199
|
294 |
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."
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: inc/php/page.php:201
|
298 |
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."
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: inc/php/page.php:202
|
302 |
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."
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: inc/php/page.php:203
|
306 |
msgid "Rename the file <code>START</code> to <code>STOP</code>. This will stop the execution of your custom code."
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: inc/php/page.php:204
|
310 |
msgid "Log in to Admin Area of your WordPress website."
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: inc/php/page.php:205
|
314 |
msgid "Go to the plugin settings page <code>Settings</code> ➡ <code>PHP Inserter</code>."
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: inc/php/page.php:206
|
318 |
msgid "Edit/fix your custom PHP code that you entered before the crash."
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: inc/php/page.php:207
|
322 |
msgid "Return to the plugin folder and rename the file <code>STOP</code> to <code>START</code> and you're done!"
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: inc/php/page.php:209
|
326 |
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>."
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: inc/php/page.php:210
|
330 |
msgid "We are already working on a feature to automatically stop the execution of users custom PHP code for cases when this plugin could not detect the error, and this caused the inaccessibility of the website."
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: inc/php/page.php:212
|
334 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
|
335 |
msgstr "Das letzte WordPress-Update hindert mich daran, meine Webseite, die dieses Plugin verwendet, zu bearbeiten. Warum ist das so?"
|
336 |
|
337 |
+
#: inc/php/page.php:213
|
338 |
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."
|
339 |
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."
|
340 |
|
341 |
+
#: inc/php/page.php:215
|
342 |
msgid "Where to report bug if found?"
|
343 |
msgstr "Wo kann ich eine Fehler melden?"
|
344 |
|
345 |
+
#: inc/php/page.php:217
|
346 |
#, php-format
|
347 |
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!"
|
348 |
msgstr "Bitte besuchen Sie %s diese Seite %s und berichten Sie. Bitte vergiss nicht den Namen des Plugins anzugeben. Vielen Dank!"
|
349 |
|
350 |
+
#: inc/php/page.php:223
|
351 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
352 |
msgstr "Wo können Sie Ideen oder Vorschläge loswerden, um das Plugin besser zu machen?"
|
353 |
|
354 |
+
#: inc/php/page.php:225
|
355 |
#, php-format
|
356 |
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!"
|
357 |
msgstr "Irgendwelche Vorschläge sind sehr willkommen! Kontaktieren Sie uns einfach %s hier %s. Bitte vergiss nicht den Namen des Plugins anzugeben. Vielen Dank!"
|
358 |
|
359 |
+
#: inc/php/page.php:231
|
360 |
msgid "I love this plugin! Can I help somehow?"
|
361 |
msgstr "Ich liebe dieses Plugin! Kann ich Irgendwie helfen?"
|
362 |
|
363 |
+
#: inc/php/page.php:233
|
364 |
#, php-format
|
365 |
msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
|
366 |
msgstr "Ja, jede finanzielle Unterstützung ist Willkommen! Besuchen Sie %s meine Webseite %s, klicken Sie auf den Spenden Button und Danke!"
|
367 |
|
368 |
+
#: inc/php/page.php:239
|
369 |
msgid "My question wasn't answered here."
|
370 |
msgstr "Meine Fragen wurden nicht beantwortet."
|
371 |
|
372 |
+
#: inc/php/page.php:241
|
373 |
#, php-format
|
374 |
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."
|
375 |
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."
|
376 |
|
377 |
+
#: inc/php/page.php:255
|
378 |
msgid "Support Us"
|
379 |
msgstr "Unterstütze uns"
|
380 |
|
381 |
+
#: inc/php/page.php:263 inc/php/settings.php:61 inc/php/sidebar.php:54
|
382 |
msgid "Donate with PayPal"
|
383 |
msgstr "Spende mit PayPal"
|
384 |
|
385 |
+
#: inc/php/page.php:268
|
386 |
#, php-format
|
387 |
msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: inc/php/page.php:276
|
391 |
msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: inc/php/page.php:277
|
395 |
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
396 |
msgstr "Ich habe viel Zeit und Mühe darauf verwendet sicherzustellen, dass die Themes, Plugins und andere Dinge, die ich entwickle, nützlich sind. Der ultimative Beweis für mich ist, dass Sie sie tatsächlich verwenden. Aber Jeder kleine Beitrag trägt dazu bei, meine Kosten zu decken und schenkt mir mehr Zeit damit zu verbringen, Dinge für Leute wie Sie zu gestalten."
|
397 |
|
398 |
+
#: inc/php/page.php:278
|
399 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
400 |
msgstr "Wenn Ihnen meine Arbeit gefällt, können Sie mir gerne einen Kaffee kaufen!"
|
401 |
|
402 |
+
#: inc/php/page.php:279
|
403 |
msgid "Thank you for your support!"
|
404 |
msgstr "Danke für Ihre Unterstützung!"
|
405 |
|
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:
|
7 |
-
"PO-Revision-Date:
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Spanish\n"
|
10 |
"Language: es_ES\n"
|
@@ -110,7 +110,7 @@ msgstr "Debes ir a la pestaña “Principal”."
|
|
110 |
msgid "Place your custom PHP code in the code editor field."
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: inc/php/page.php:71 inc/php/page.php:72
|
114 |
msgid "Note!"
|
115 |
msgstr "¡Nota!"
|
116 |
|
@@ -206,179 +206,200 @@ msgid "We don't limit the number of characters."
|
|
206 |
msgstr ""
|
207 |
|
208 |
#: inc/php/page.php:156
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
209 |
msgid "On the plugin settings page, an error message appears. What could be wrong?"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: inc/php/page.php:
|
213 |
msgid "Here are a few of the most likely causes of the error message:"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: inc/php/page.php:
|
217 |
msgid "You make a syntax error in the code that you have entered. Check the syntax of your code and try again."
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: inc/php/page.php:
|
221 |
msgid "You entered two functions with the same name. Use a unique names for your functions."
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: inc/php/page.php:
|
225 |
msgid "You have entered function with a name that is already occupied by another function. Use a unique name for your function."
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: inc/php/page.php:
|
229 |
msgid "You are trying to overwrite an existing function (of WordPress, theme, or plugin). Instead, use filters and hooks."
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: inc/php/page.php:
|
233 |
-
msgid "
|
234 |
-
|
235 |
-
|
236 |
-
#: inc/php/page.php:166
|
237 |
-
msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
|
238 |
-
msgstr "Absolutamente NO. Este complemento se puede configurar completamente desde su página de configuración."
|
239 |
|
240 |
-
#: inc/php/page.php:
|
241 |
-
msgid "
|
242 |
-
msgstr "
|
243 |
|
244 |
-
#: inc/php/page.php:
|
245 |
-
msgid "
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: inc/php/page.php:
|
249 |
-
msgid "
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: inc/php/page.php:
|
253 |
-
msgid "
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: inc/php/page.php:
|
257 |
msgid "It's not working. What could be wrong?"
|
258 |
msgstr "No funciona. ¿Qué podría estar mal?"
|
259 |
|
260 |
-
#: inc/php/page.php:
|
261 |
msgid "As with every plugin, it's possible that things don't work. The most common reason for this is a web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load. This is called the browser's cache. Clearing your browser's cache may solve the problem."
|
262 |
msgstr "Como con todos los complementos, es posible que las cosas no funcionen. La razón más común para esto es la caché de un navegador web. Cada navegador web almacena una caché de los sitios web que visitas (páginas, imágenes y etc.) para reducir el uso del ancho de banda y la carga del servidor. Esto se denomina caché del navegador. Limpiar la caché del navegador puede resolver el problema."
|
263 |
|
264 |
-
#: inc/php/page.php:
|
265 |
msgid "It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's support forum on WordPress.org, we'd be happy to give it a look and try to help out. Please include as much information as possible, including a link to your website where the problem can be seen."
|
266 |
msgstr "Es imposible decir exactamente lo que podría estar mal, pero si publicas una solicitud de soporte en el foro de soporte del complemento en WordPress.org, estaría encantado de darle un vistazo e intentar ayudarte. Incluye tanta información como sea posible, incluyendo un enlace a tu sitio web donde se pueda ver el problema."
|
267 |
|
268 |
-
#: inc/php/page.php:
|
269 |
msgid "What to do if this plugin crashed the website?"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: inc/php/page.php:
|
273 |
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."
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: inc/php/page.php:
|
277 |
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."
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: inc/php/page.php:
|
281 |
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."
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: inc/php/page.php:
|
285 |
msgid "Rename the file <code>START</code> to <code>STOP</code>. This will stop the execution of your custom code."
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: inc/php/page.php:
|
289 |
msgid "Log in to Admin Area of your WordPress website."
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: inc/php/page.php:
|
293 |
msgid "Go to the plugin settings page <code>Settings</code> ➡ <code>PHP Inserter</code>."
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: inc/php/page.php:
|
297 |
msgid "Edit/fix your custom PHP code that you entered before the crash."
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: inc/php/page.php:
|
301 |
msgid "Return to the plugin folder and rename the file <code>STOP</code> to <code>START</code> and you're done!"
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: inc/php/page.php:
|
305 |
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>."
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: inc/php/page.php:
|
309 |
msgid "We are already working on a feature to automatically stop the execution of users custom PHP code for cases when this plugin could not detect the error, and this caused the inaccessibility of the website."
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: inc/php/page.php:
|
313 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
|
314 |
msgstr "La última actualización de WordPress me impide editar mi sitio web que está utilizando este complemento. ¿Porqué sucede esto?"
|
315 |
|
316 |
-
#: inc/php/page.php:
|
317 |
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."
|
318 |
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."
|
319 |
|
320 |
-
#: inc/php/page.php:
|
321 |
msgid "Where to report bug if found?"
|
322 |
msgstr "¿Dónde informar el error si se encuentra?"
|
323 |
|
324 |
-
#: inc/php/page.php:
|
325 |
#, php-format
|
326 |
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!"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: inc/php/page.php:
|
330 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
331 |
msgstr "¿Dónde compartir ideas o sugerencias para mejorar el complemento?"
|
332 |
|
333 |
-
#: inc/php/page.php:
|
334 |
#, php-format
|
335 |
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!"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: inc/php/page.php:
|
339 |
msgid "I love this plugin! Can I help somehow?"
|
340 |
msgstr "Me encanta este complemento! ¿Puedo ayudar de alguna manera?"
|
341 |
|
342 |
-
#: inc/php/page.php:
|
343 |
#, php-format
|
344 |
msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
|
345 |
msgstr "Sí, cualquier contribución financiera es bienvenida! Simplemente visita %s mi sitio web %s, has clic en el botón DONAR y gracias!"
|
346 |
|
347 |
-
#: inc/php/page.php:
|
348 |
msgid "My question wasn't answered here."
|
349 |
msgstr "Mi pregunta no fue contestada aquí."
|
350 |
|
351 |
-
#: inc/php/page.php:
|
352 |
#, php-format
|
353 |
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."
|
354 |
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."
|
355 |
|
356 |
-
#: inc/php/page.php:
|
357 |
msgid "Support Us"
|
358 |
msgstr "¡Apoyanos!"
|
359 |
|
360 |
-
#: inc/php/page.php:
|
361 |
msgid "Donate with PayPal"
|
362 |
msgstr "Donar con PayPal"
|
363 |
|
364 |
-
#: inc/php/page.php:
|
365 |
#, php-format
|
366 |
msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: inc/php/page.php:
|
370 |
msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: inc/php/page.php:
|
374 |
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
375 |
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."
|
376 |
|
377 |
-
#: inc/php/page.php:
|
378 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
379 |
msgstr "Si aprecias mi trabajo, puedes comprarme un café!"
|
380 |
|
381 |
-
#: inc/php/page.php:
|
382 |
msgid "Thank you for your support!"
|
383 |
msgstr "¡Gracias por tu apoyo!"
|
384 |
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
+
"POT-Creation-Date: 2019-01-11 20:36+0200\n"
|
7 |
+
"PO-Revision-Date: 2019-01-11 20:37+0200\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Spanish\n"
|
10 |
"Language: es_ES\n"
|
110 |
msgid "Place your custom PHP code in the code editor field."
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: inc/php/page.php:71 inc/php/page.php:72
|
114 |
msgid "Note!"
|
115 |
msgstr "¡Nota!"
|
116 |
|
206 |
msgstr ""
|
207 |
|
208 |
#: inc/php/page.php:156
|
209 |
+
msgid "Does this plugin requires any modification of the theme?"
|
210 |
+
msgstr "¿Este complemento requiere alguna modificación del tema?"
|
211 |
+
|
212 |
+
#: inc/php/page.php:157
|
213 |
+
msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
|
214 |
+
msgstr "Absolutamente NO. Este complemento se puede configurar completamente desde su página de configuración."
|
215 |
+
|
216 |
+
#: inc/php/page.php:159
|
217 |
+
msgid "Does this require any knowledge of HTML or CSS?"
|
218 |
+
msgstr "¿Esto requiere algún conocimiento de HTML o CSS?"
|
219 |
+
|
220 |
+
#: inc/php/page.php:160
|
221 |
+
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page. But you need to know the HTML or CSS in order to add/remove/modify the HTML or CSS code by using this plugin."
|
222 |
+
msgstr ""
|
223 |
+
|
224 |
+
#: inc/php/page.php:162
|
225 |
+
msgid "Can I add my custom PHP code to a specific page of my website?"
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
#: inc/php/page.php:163
|
229 |
+
msgid "For now, this plugin does not have an option to apply the custom PHP code only on specific pages. We plan to add this feature soon. But for now in order to apply your custom PHP code only on specific pages of your website, you need to wrap your custom PHP code in a PHP function that will determine the page you want. You need something like this:"
|
230 |
+
msgstr ""
|
231 |
+
|
232 |
+
#: inc/php/page.php:177
|
233 |
msgid "On the plugin settings page, an error message appears. What could be wrong?"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: inc/php/page.php:178
|
237 |
msgid "Here are a few of the most likely causes of the error message:"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: inc/php/page.php:180
|
241 |
msgid "You make a syntax error in the code that you have entered. Check the syntax of your code and try again."
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: inc/php/page.php:181
|
245 |
msgid "You entered two functions with the same name. Use a unique names for your functions."
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: inc/php/page.php:182
|
249 |
msgid "You have entered function with a name that is already occupied by another function. Use a unique name for your function."
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: inc/php/page.php:183
|
253 |
msgid "You are trying to overwrite an existing function (of WordPress, theme, or plugin). Instead, use filters and hooks."
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: inc/php/page.php:186
|
257 |
+
#| msgid "It's not working. What could be wrong?"
|
258 |
+
msgid "My custom PHP code is not working. What could be wrong?"
|
259 |
+
msgstr ""
|
|
|
|
|
|
|
260 |
|
261 |
+
#: inc/php/page.php:187
|
262 |
+
msgid "It happens that your custom PHP code that you insert on the plugin page does not work, even if an error message does not appear. Here are a few of the most likely causes of the issue:"
|
263 |
+
msgstr ""
|
264 |
|
265 |
+
#: inc/php/page.php:189
|
266 |
+
msgid "You have a typo during the insertion of your custom PHP code."
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: inc/php/page.php:190
|
270 |
+
msgid "Your custom PHP code has a syntax error."
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: inc/php/page.php:191
|
274 |
+
msgid "Your custom PHP code is incorrect and may not work."
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: inc/php/page.php:194
|
278 |
msgid "It's not working. What could be wrong?"
|
279 |
msgstr "No funciona. ¿Qué podría estar mal?"
|
280 |
|
281 |
+
#: inc/php/page.php:195
|
282 |
msgid "As with every plugin, it's possible that things don't work. The most common reason for this is a web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load. This is called the browser's cache. Clearing your browser's cache may solve the problem."
|
283 |
msgstr "Como con todos los complementos, es posible que las cosas no funcionen. La razón más común para esto es la caché de un navegador web. Cada navegador web almacena una caché de los sitios web que visitas (páginas, imágenes y etc.) para reducir el uso del ancho de banda y la carga del servidor. Esto se denomina caché del navegador. Limpiar la caché del navegador puede resolver el problema."
|
284 |
|
285 |
+
#: inc/php/page.php:196
|
286 |
msgid "It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's support forum on WordPress.org, we'd be happy to give it a look and try to help out. Please include as much information as possible, including a link to your website where the problem can be seen."
|
287 |
msgstr "Es imposible decir exactamente lo que podría estar mal, pero si publicas una solicitud de soporte en el foro de soporte del complemento en WordPress.org, estaría encantado de darle un vistazo e intentar ayudarte. Incluye tanta información como sea posible, incluyendo un enlace a tu sitio web donde se pueda ver el problema."
|
288 |
|
289 |
+
#: inc/php/page.php:198
|
290 |
msgid "What to do if this plugin crashed the website?"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: inc/php/page.php:199
|
294 |
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."
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: inc/php/page.php:201
|
298 |
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."
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: inc/php/page.php:202
|
302 |
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."
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: inc/php/page.php:203
|
306 |
msgid "Rename the file <code>START</code> to <code>STOP</code>. This will stop the execution of your custom code."
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: inc/php/page.php:204
|
310 |
msgid "Log in to Admin Area of your WordPress website."
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: inc/php/page.php:205
|
314 |
msgid "Go to the plugin settings page <code>Settings</code> ➡ <code>PHP Inserter</code>."
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: inc/php/page.php:206
|
318 |
msgid "Edit/fix your custom PHP code that you entered before the crash."
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: inc/php/page.php:207
|
322 |
msgid "Return to the plugin folder and rename the file <code>STOP</code> to <code>START</code> and you're done!"
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: inc/php/page.php:209
|
326 |
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>."
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: inc/php/page.php:210
|
330 |
msgid "We are already working on a feature to automatically stop the execution of users custom PHP code for cases when this plugin could not detect the error, and this caused the inaccessibility of the website."
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: inc/php/page.php:212
|
334 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
|
335 |
msgstr "La última actualización de WordPress me impide editar mi sitio web que está utilizando este complemento. ¿Porqué sucede esto?"
|
336 |
|
337 |
+
#: inc/php/page.php:213
|
338 |
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."
|
339 |
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."
|
340 |
|
341 |
+
#: inc/php/page.php:215
|
342 |
msgid "Where to report bug if found?"
|
343 |
msgstr "¿Dónde informar el error si se encuentra?"
|
344 |
|
345 |
+
#: inc/php/page.php:217
|
346 |
#, php-format
|
347 |
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!"
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: inc/php/page.php:223
|
351 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
352 |
msgstr "¿Dónde compartir ideas o sugerencias para mejorar el complemento?"
|
353 |
|
354 |
+
#: inc/php/page.php:225
|
355 |
#, php-format
|
356 |
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!"
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: inc/php/page.php:231
|
360 |
msgid "I love this plugin! Can I help somehow?"
|
361 |
msgstr "Me encanta este complemento! ¿Puedo ayudar de alguna manera?"
|
362 |
|
363 |
+
#: inc/php/page.php:233
|
364 |
#, php-format
|
365 |
msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
|
366 |
msgstr "Sí, cualquier contribución financiera es bienvenida! Simplemente visita %s mi sitio web %s, has clic en el botón DONAR y gracias!"
|
367 |
|
368 |
+
#: inc/php/page.php:239
|
369 |
msgid "My question wasn't answered here."
|
370 |
msgstr "Mi pregunta no fue contestada aquí."
|
371 |
|
372 |
+
#: inc/php/page.php:241
|
373 |
#, php-format
|
374 |
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."
|
375 |
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."
|
376 |
|
377 |
+
#: inc/php/page.php:255
|
378 |
msgid "Support Us"
|
379 |
msgstr "¡Apoyanos!"
|
380 |
|
381 |
+
#: inc/php/page.php:263 inc/php/settings.php:61 inc/php/sidebar.php:54
|
382 |
msgid "Donate with PayPal"
|
383 |
msgstr "Donar con PayPal"
|
384 |
|
385 |
+
#: inc/php/page.php:268
|
386 |
#, php-format
|
387 |
msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: inc/php/page.php:276
|
391 |
msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: inc/php/page.php:277
|
395 |
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
396 |
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."
|
397 |
|
398 |
+
#: inc/php/page.php:278
|
399 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
400 |
msgstr "Si aprecias mi trabajo, puedes comprarme un café!"
|
401 |
|
402 |
+
#: inc/php/page.php:279
|
403 |
msgid "Thank you for your support!"
|
404 |
msgstr "¡Gracias por tu apoyo!"
|
405 |
|
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:
|
7 |
-
"PO-Revision-Date:
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: French\n"
|
10 |
"Language: fr_FR\n"
|
@@ -110,7 +110,7 @@ msgstr ""
|
|
110 |
msgid "Place your custom PHP code in the code editor field."
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: inc/php/page.php:71 inc/php/page.php:72
|
114 |
msgid "Note!"
|
115 |
msgstr ""
|
116 |
|
@@ -206,179 +206,199 @@ msgid "We don't limit the number of characters."
|
|
206 |
msgstr ""
|
207 |
|
208 |
#: inc/php/page.php:156
|
209 |
-
msgid "
|
210 |
msgstr ""
|
211 |
|
212 |
#: inc/php/page.php:157
|
213 |
-
msgid "
|
214 |
msgstr ""
|
215 |
|
216 |
#: inc/php/page.php:159
|
217 |
-
msgid "
|
218 |
msgstr ""
|
219 |
|
220 |
#: inc/php/page.php:160
|
221 |
-
msgid "
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: inc/php/page.php:
|
225 |
-
msgid "
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: inc/php/page.php:
|
229 |
-
msgid "
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: inc/php/page.php:
|
233 |
-
msgid "
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: inc/php/page.php:
|
237 |
-
msgid "
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: inc/php/page.php:
|
241 |
-
msgid "
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: inc/php/page.php:
|
245 |
-
msgid "
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: inc/php/page.php:
|
249 |
-
msgid "
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: inc/php/page.php:
|
253 |
-
msgid "
|
254 |
msgstr ""
|
255 |
|
256 |
#: inc/php/page.php:186
|
257 |
-
msgid "
|
258 |
msgstr ""
|
259 |
|
260 |
#: inc/php/page.php:187
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
261 |
msgid "As with every plugin, it's possible that things don't work. The most common reason for this is a web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load. This is called the browser's cache. Clearing your browser's cache may solve the problem."
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: inc/php/page.php:
|
265 |
msgid "It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's support forum on WordPress.org, we'd be happy to give it a look and try to help out. Please include as much information as possible, including a link to your website where the problem can be seen."
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: inc/php/page.php:
|
269 |
msgid "What to do if this plugin crashed the website?"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: inc/php/page.php:
|
273 |
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."
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: inc/php/page.php:
|
277 |
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."
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: inc/php/page.php:
|
281 |
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."
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: inc/php/page.php:
|
285 |
msgid "Rename the file <code>START</code> to <code>STOP</code>. This will stop the execution of your custom code."
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: inc/php/page.php:
|
289 |
msgid "Log in to Admin Area of your WordPress website."
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: inc/php/page.php:
|
293 |
msgid "Go to the plugin settings page <code>Settings</code> ➡ <code>PHP Inserter</code>."
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: inc/php/page.php:
|
297 |
msgid "Edit/fix your custom PHP code that you entered before the crash."
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: inc/php/page.php:
|
301 |
msgid "Return to the plugin folder and rename the file <code>STOP</code> to <code>START</code> and you're done!"
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: inc/php/page.php:
|
305 |
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>."
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: inc/php/page.php:
|
309 |
msgid "We are already working on a feature to automatically stop the execution of users custom PHP code for cases when this plugin could not detect the error, and this caused the inaccessibility of the website."
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: inc/php/page.php:
|
313 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: inc/php/page.php:
|
317 |
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."
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: inc/php/page.php:
|
321 |
msgid "Where to report bug if found?"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: inc/php/page.php:
|
325 |
#, php-format
|
326 |
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!"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: inc/php/page.php:
|
330 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: inc/php/page.php:
|
334 |
#, php-format
|
335 |
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!"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: inc/php/page.php:
|
339 |
msgid "I love this plugin! Can I help somehow?"
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: inc/php/page.php:
|
343 |
#, php-format
|
344 |
msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: inc/php/page.php:
|
348 |
msgid "My question wasn't answered here."
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: inc/php/page.php:
|
352 |
#, php-format
|
353 |
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."
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: inc/php/page.php:
|
357 |
msgid "Support Us"
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: inc/php/page.php:
|
361 |
msgid "Donate with PayPal"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: inc/php/page.php:
|
365 |
#, php-format
|
366 |
msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: inc/php/page.php:
|
370 |
msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: inc/php/page.php:
|
374 |
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: inc/php/page.php:
|
378 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: inc/php/page.php:
|
382 |
msgid "Thank you for your support!"
|
383 |
msgstr ""
|
384 |
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
+
"POT-Creation-Date: 2019-01-11 20:37+0200\n"
|
7 |
+
"PO-Revision-Date: 2019-01-11 20:37+0200\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: French\n"
|
10 |
"Language: fr_FR\n"
|
110 |
msgid "Place your custom PHP code in the code editor field."
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: inc/php/page.php:71 inc/php/page.php:72
|
114 |
msgid "Note!"
|
115 |
msgstr ""
|
116 |
|
206 |
msgstr ""
|
207 |
|
208 |
#: inc/php/page.php:156
|
209 |
+
msgid "Does this plugin requires any modification of the theme?"
|
210 |
msgstr ""
|
211 |
|
212 |
#: inc/php/page.php:157
|
213 |
+
msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
|
214 |
msgstr ""
|
215 |
|
216 |
#: inc/php/page.php:159
|
217 |
+
msgid "Does this require any knowledge of HTML or CSS?"
|
218 |
msgstr ""
|
219 |
|
220 |
#: inc/php/page.php:160
|
221 |
+
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page. But you need to know the HTML or CSS in order to add/remove/modify the HTML or CSS code by using this plugin."
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: inc/php/page.php:162
|
225 |
+
msgid "Can I add my custom PHP code to a specific page of my website?"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: inc/php/page.php:163
|
229 |
+
msgid "For now, this plugin does not have an option to apply the custom PHP code only on specific pages. We plan to add this feature soon. But for now in order to apply your custom PHP code only on specific pages of your website, you need to wrap your custom PHP code in a PHP function that will determine the page you want. You need something like this:"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: inc/php/page.php:177
|
233 |
+
msgid "On the plugin settings page, an error message appears. What could be wrong?"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: inc/php/page.php:178
|
237 |
+
msgid "Here are a few of the most likely causes of the error message:"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: inc/php/page.php:180
|
241 |
+
msgid "You make a syntax error in the code that you have entered. Check the syntax of your code and try again."
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: inc/php/page.php:181
|
245 |
+
msgid "You entered two functions with the same name. Use a unique names for your functions."
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: inc/php/page.php:182
|
249 |
+
msgid "You have entered function with a name that is already occupied by another function. Use a unique name for your function."
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: inc/php/page.php:183
|
253 |
+
msgid "You are trying to overwrite an existing function (of WordPress, theme, or plugin). Instead, use filters and hooks."
|
254 |
msgstr ""
|
255 |
|
256 |
#: inc/php/page.php:186
|
257 |
+
msgid "My custom PHP code is not working. What could be wrong?"
|
258 |
msgstr ""
|
259 |
|
260 |
#: inc/php/page.php:187
|
261 |
+
msgid "It happens that your custom PHP code that you insert on the plugin page does not work, even if an error message does not appear. Here are a few of the most likely causes of the issue:"
|
262 |
+
msgstr ""
|
263 |
+
|
264 |
+
#: inc/php/page.php:189
|
265 |
+
msgid "You have a typo during the insertion of your custom PHP code."
|
266 |
+
msgstr ""
|
267 |
+
|
268 |
+
#: inc/php/page.php:190
|
269 |
+
msgid "Your custom PHP code has a syntax error."
|
270 |
+
msgstr ""
|
271 |
+
|
272 |
+
#: inc/php/page.php:191
|
273 |
+
msgid "Your custom PHP code is incorrect and may not work."
|
274 |
+
msgstr ""
|
275 |
+
|
276 |
+
#: inc/php/page.php:194
|
277 |
+
msgid "It's not working. What could be wrong?"
|
278 |
+
msgstr ""
|
279 |
+
|
280 |
+
#: inc/php/page.php:195
|
281 |
msgid "As with every plugin, it's possible that things don't work. The most common reason for this is a web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load. This is called the browser's cache. Clearing your browser's cache may solve the problem."
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: inc/php/page.php:196
|
285 |
msgid "It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's support forum on WordPress.org, we'd be happy to give it a look and try to help out. Please include as much information as possible, including a link to your website where the problem can be seen."
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: inc/php/page.php:198
|
289 |
msgid "What to do if this plugin crashed the website?"
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: inc/php/page.php:199
|
293 |
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."
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: inc/php/page.php:201
|
297 |
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."
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: inc/php/page.php:202
|
301 |
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."
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: inc/php/page.php:203
|
305 |
msgid "Rename the file <code>START</code> to <code>STOP</code>. This will stop the execution of your custom code."
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: inc/php/page.php:204
|
309 |
msgid "Log in to Admin Area of your WordPress website."
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: inc/php/page.php:205
|
313 |
msgid "Go to the plugin settings page <code>Settings</code> ➡ <code>PHP Inserter</code>."
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: inc/php/page.php:206
|
317 |
msgid "Edit/fix your custom PHP code that you entered before the crash."
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: inc/php/page.php:207
|
321 |
msgid "Return to the plugin folder and rename the file <code>STOP</code> to <code>START</code> and you're done!"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: inc/php/page.php:209
|
325 |
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>."
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: inc/php/page.php:210
|
329 |
msgid "We are already working on a feature to automatically stop the execution of users custom PHP code for cases when this plugin could not detect the error, and this caused the inaccessibility of the website."
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: inc/php/page.php:212
|
333 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: inc/php/page.php:213
|
337 |
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."
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: inc/php/page.php:215
|
341 |
msgid "Where to report bug if found?"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: inc/php/page.php:217
|
345 |
#, php-format
|
346 |
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!"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: inc/php/page.php:223
|
350 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: inc/php/page.php:225
|
354 |
#, php-format
|
355 |
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!"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: inc/php/page.php:231
|
359 |
msgid "I love this plugin! Can I help somehow?"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: inc/php/page.php:233
|
363 |
#, php-format
|
364 |
msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: inc/php/page.php:239
|
368 |
msgid "My question wasn't answered here."
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: inc/php/page.php:241
|
372 |
#, php-format
|
373 |
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."
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: inc/php/page.php:255
|
377 |
msgid "Support Us"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: inc/php/page.php:263 inc/php/settings.php:61 inc/php/sidebar.php:54
|
381 |
msgid "Donate with PayPal"
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: inc/php/page.php:268
|
385 |
#, php-format
|
386 |
msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: inc/php/page.php:276
|
390 |
msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: inc/php/page.php:277
|
394 |
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: inc/php/page.php:278
|
398 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: inc/php/page.php:279
|
402 |
msgid "Thank you for your support!"
|
403 |
msgstr ""
|
404 |
|
languages/my-custom-functions-nl_NL.mo
CHANGED
Binary file
|
languages/my-custom-functions-nl_NL.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
-
"POT-Creation-Date:
|
7 |
-
"PO-Revision-Date:
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Dutch\n"
|
10 |
"Language: nl_NL\n"
|
@@ -110,7 +110,7 @@ msgstr "Ga naar het tabblad “Hoofd”."
|
|
110 |
msgid "Place your custom PHP code in the code editor field."
|
111 |
msgstr "Plaats je PHP code in het veld."
|
112 |
|
113 |
-
#: inc/php/page.php:71 inc/php/page.php:72
|
114 |
msgid "Note!"
|
115 |
msgstr "Opmerking!"
|
116 |
|
@@ -206,179 +206,202 @@ msgid "We don't limit the number of characters."
|
|
206 |
msgstr "Er is geen beperking op het aantal tekens."
|
207 |
|
208 |
#: inc/php/page.php:156
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
209 |
msgid "On the plugin settings page, an error message appears. What could be wrong?"
|
210 |
msgstr "Op de plug-in instellingen pagina verschijnt een fout-melding. Wat kan er fout zijn?"
|
211 |
|
212 |
-
#: inc/php/page.php:
|
213 |
msgid "Here are a few of the most likely causes of the error message:"
|
214 |
msgstr "Hier zijn enkele van de meest waarschijnlijke oorzaken van de foutmelding:"
|
215 |
|
216 |
-
#: inc/php/page.php:
|
217 |
msgid "You make a syntax error in the code that you have entered. Check the syntax of your code and try again."
|
218 |
msgstr "Je maakt een syntaxisfout in de code die je hebt ingevoerd. Controleer de syntaxis van je code en probeer het opnieuw."
|
219 |
|
220 |
-
#: inc/php/page.php:
|
221 |
msgid "You entered two functions with the same name. Use a unique names for your functions."
|
222 |
msgstr "U hebt twee functies met dezelfde naam ingevoerd. Gebruik een unieke naam voor uw functies."
|
223 |
|
224 |
-
#: inc/php/page.php:
|
225 |
msgid "You have entered function with a name that is already occupied by another function. Use a unique name for your function."
|
226 |
msgstr "Je hebt de functie ingevoerd met een naam die al in gebruik is door een andere functie. Gebruik een unieke naam voor je functie."
|
227 |
|
228 |
-
#: inc/php/page.php:
|
229 |
msgid "You are trying to overwrite an existing function (of WordPress, theme, or plugin). Instead, use filters and hooks."
|
230 |
msgstr "Je probeert een bestaande functie (van WordPress, thema of plug-in) te overschrijven. Gebruik in plaats daarvan filters en haken."
|
231 |
|
232 |
-
#: inc/php/page.php:
|
233 |
-
msgid "
|
234 |
-
|
235 |
-
|
236 |
-
#: inc/php/page.php:166
|
237 |
-
msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
|
238 |
-
msgstr "Absoluut niet. Deze plug-in kan volledig worden geconfigureerd via de pagina met plugin-instellingen."
|
239 |
|
240 |
-
#: inc/php/page.php:
|
241 |
-
msgid "
|
242 |
-
msgstr "
|
243 |
|
244 |
-
#: inc/php/page.php:
|
245 |
-
msgid "
|
246 |
-
|
|
|
247 |
|
248 |
-
#: inc/php/page.php:
|
249 |
-
msgid "
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: inc/php/page.php:
|
253 |
-
msgid "
|
|
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: inc/php/page.php:
|
257 |
msgid "It's not working. What could be wrong?"
|
258 |
msgstr "Het werkt niet. Wat kan er fout zijn?"
|
259 |
|
260 |
-
#: inc/php/page.php:
|
261 |
msgid "As with every plugin, it's possible that things don't work. The most common reason for this is a web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load. This is called the browser's cache. Clearing your browser's cache may solve the problem."
|
262 |
msgstr "Zoals met elke plug-in, is het mogelijk dat dingen niet werken. De meest voorkomende reden hiervoor is de cache van een webbrowser. Elke webbrowser slaat een cache op van de websites die u bezoekt (pagina's, afbeeldingen en enz.) Om het bandbreedte-gebruik en de serverbelasting te verminderen. Dit wordt de cache van de browser genoemd. Het wissen van de cache van uw browser kan het probleem oplossen."
|
263 |
|
264 |
-
#: inc/php/page.php:
|
265 |
msgid "It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's support forum on WordPress.org, we'd be happy to give it a look and try to help out. Please include as much information as possible, including a link to your website where the problem can be seen."
|
266 |
msgstr "Het is onmogelijk om precies te vertellen wat er precies mis zou kunnen zijn, maar als je een ondersteuningsverzoek post in het ondersteuningsforum van de plug-in op WordPress.org, willen we graag een kijkje nemen en proberen te helpen. Voeg zoveel mogelijk informatie toe, inclusief een link naar uw website waar het probleem kan worden gezien."
|
267 |
|
268 |
-
#: inc/php/page.php:
|
269 |
msgid "What to do if this plugin crashed the website?"
|
270 |
msgstr "Wat te doen als deze plug-in de website heeft gecrasht?"
|
271 |
|
272 |
-
#: inc/php/page.php:
|
273 |
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."
|
274 |
msgstr "Deze plugin heeft ingebouwde functies voor het controleren van de aangepaste code op syntaxisfouten, dubbele functies namen en enz. Maar plugin is niet perfect, het is dus mogelijk dat de ingevoerde code een foutbericht en een wit scherm (WSOD) veroorzaakt. Dit is de wijten aan het feit dat uw aangepaste code een syntaxisfout heeft, die door deze plugin kon niet worden gevonden. Wanneer dit met gebeurt, voer dan de volgende stappen uit."
|
275 |
|
276 |
-
#: inc/php/page.php:
|
277 |
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."
|
278 |
msgstr "Benader je server via FTP of SFTP. Als u niet zeker bent hoe, vaak heeft je webhostingprovider ergens op hun website instructies staan."
|
279 |
|
280 |
-
#: inc/php/page.php:
|
281 |
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."
|
282 |
msgstr "Blader naar de map <code>wp-content/plugins/my-custom-functions/</code> . Neem contact op met je web hosting bedrijf om hulp te krijgen als je deze map niet kunt vinden."
|
283 |
|
284 |
-
#: inc/php/page.php:
|
285 |
msgid "Rename the file <code>START</code> to <code>STOP</code>. This will stop the execution of your custom code."
|
286 |
msgstr "Hernoem het bestand <code>START</code> naar <code>STOP</code>. Hiermee stopt u het uitvoeren van uw aangepaste code."
|
287 |
|
288 |
-
#: inc/php/page.php:
|
289 |
msgid "Log in to Admin Area of your WordPress website."
|
290 |
msgstr "Log in op het Admin-gedeelte van uw WordPress-website."
|
291 |
|
292 |
-
#: inc/php/page.php:
|
293 |
msgid "Go to the plugin settings page <code>Settings</code> ➡ <code>PHP Inserter</code>."
|
294 |
msgstr "Ga naar de plug-in instellingen pagina <code>Instellingen</code> ➡ <code>PHP Inserter</code>."
|
295 |
|
296 |
-
#: inc/php/page.php:
|
297 |
msgid "Edit/fix your custom PHP code that you entered before the crash."
|
298 |
msgstr "Edit/repareer je custos code welke je hebt ingevoerd voor de crash."
|
299 |
|
300 |
-
#: inc/php/page.php:
|
301 |
msgid "Return to the plugin folder and rename the file <code>STOP</code> to <code>START</code> and you're done!"
|
302 |
msgstr "Keer terug naar de plug-in directorie en verander de naam van het bestand <code>STOP</code> naar <code>START</code> en je bent klaar!"
|
303 |
|
304 |
-
#: inc/php/page.php:
|
305 |
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>."
|
306 |
msgstr "Deze plug-in heeft de door jouw ingevoerde code opgeslagen in de database van je website. Om je code te verkrijgen, kun je ook naar <code>Database</code> ➡ Table <code>wp_options</code> ➡ Option <code>spacexchimp_p001_settings</code> ➡ <code>option_value</code> gaan."
|
307 |
|
308 |
-
#: inc/php/page.php:
|
309 |
msgid "We are already working on a feature to automatically stop the execution of users custom PHP code for cases when this plugin could not detect the error, and this caused the inaccessibility of the website."
|
310 |
msgstr "We zijn bezig met het maken van een optie om de uitvoering van PHP-code automatisch te stoppen, als de plugin geen fout kon detecteren en de PHP-code wel een onbereikbare website veroorzaakt."
|
311 |
|
312 |
-
#: inc/php/page.php:
|
313 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
|
314 |
msgstr "De laatste Wordpress update zorgt ervoor dat ik mijn website niet kan bewerken als ik deze plugin gebruik. Waarom is dit?"
|
315 |
|
316 |
-
#: inc/php/page.php:
|
317 |
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."
|
318 |
msgstr "Deze plug-in kan zo’n probleem niet veroorzaken. Waarschijnlijker is het probleem gerelateerd aan de instellingen van de website. Het kan gewoon een cache-probleem zijn, dus probeer de cache van je website te wissen (mogelijk gebruik je een caching-plug-in of een webservice zoals de CloudFlare) en vervolgens de cache van je webbrowser. Probeer ook opnieuw in te loggen op de website, ook dit kan helpen."
|
319 |
|
320 |
-
#: inc/php/page.php:
|
321 |
msgid "Where to report bug if found?"
|
322 |
msgstr "Waar kan een bug gerapporteerd worden indien gevonden?"
|
323 |
|
324 |
-
#: inc/php/page.php:
|
325 |
#, php-format
|
326 |
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!"
|
327 |
msgstr "Bugrapporten zijn van harte welkom! Ga naar %s onze contactpagina %s en rapporteer. Vergeet alsjeblieft niet om de naam van de plug-in te specificeren. Dank je!"
|
328 |
|
329 |
-
#: inc/php/page.php:
|
330 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
331 |
msgstr "Waar kan ik ideeën of suggesties delen om de plug-in beter te maken?"
|
332 |
|
333 |
-
#: inc/php/page.php:
|
334 |
#, php-format
|
335 |
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!"
|
336 |
msgstr "Alle suggesties zijn van harte welkom! Ga naar %s onze contactpagina %s. Vergeet alsjeblieft niet om de naam van de plug-in te specificeren. Dank je!"
|
337 |
|
338 |
-
#: inc/php/page.php:
|
339 |
msgid "I love this plugin! Can I help somehow?"
|
340 |
msgstr "Ik ben dol op deze plug-in! Kan ik op de een of andere manier helpen?"
|
341 |
|
342 |
-
#: inc/php/page.php:
|
343 |
#, php-format
|
344 |
msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
|
345 |
msgstr "Ja, alle bijdragen zijn van harte welkom! Ga naar %s onze donatiepagina %s. Dank je!"
|
346 |
|
347 |
-
#: inc/php/page.php:
|
348 |
msgid "My question wasn't answered here."
|
349 |
msgstr "Mij vraag is hier niet beantwoord."
|
350 |
|
351 |
-
#: inc/php/page.php:
|
352 |
#, php-format
|
353 |
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."
|
354 |
msgstr "Je kunt je vraag op %s deze pagina %s stellen. Maar houd er rekening mee dat deze plug-in gratis is en er geen speciaal ondersteuningsteam is, dus we kunnen niet iedereen antwoorden."
|
355 |
|
356 |
-
#: inc/php/page.php:
|
357 |
msgid "Support Us"
|
358 |
msgstr "Ondersteun ons"
|
359 |
|
360 |
-
#: inc/php/page.php:
|
361 |
msgid "Donate with PayPal"
|
362 |
msgstr "Doneer via PayPal"
|
363 |
|
364 |
-
#: inc/php/page.php:
|
365 |
#, php-format
|
366 |
msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: inc/php/page.php:
|
370 |
msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: inc/php/page.php:
|
374 |
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
375 |
msgstr "Ik besteed veel tijd en moeite om ervoor te zorgen dat de thema’s, plug-ins en andere dingen die ik maak nuttig zijn, en het ultieme bewijs daarvan is dat je ze echt wilt gebruiken. Maar ik ben een onafhankelijke ontwikkelaar, zonder een vast inkomen, dus elke kleine bijdrage helpt mij mijn kosten te dekken en laat me meer tijd besteden aan het bouwen van dingen voor mensen zoals jij om van te genieten."
|
376 |
|
377 |
-
#: inc/php/page.php:
|
378 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
379 |
msgstr "Als je mijn werk waardeert, kun je een koffie voor me kopen!"
|
380 |
|
381 |
-
#: inc/php/page.php:
|
382 |
msgid "Thank you for your support!"
|
383 |
msgstr "Bedankt voor je ondersteuning!"
|
384 |
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
+
"POT-Creation-Date: 2019-01-11 20:37+0200\n"
|
7 |
+
"PO-Revision-Date: 2019-01-11 20:38+0200\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Dutch\n"
|
10 |
"Language: nl_NL\n"
|
110 |
msgid "Place your custom PHP code in the code editor field."
|
111 |
msgstr "Plaats je PHP code in het veld."
|
112 |
|
113 |
+
#: inc/php/page.php:71 inc/php/page.php:72
|
114 |
msgid "Note!"
|
115 |
msgstr "Opmerking!"
|
116 |
|
206 |
msgstr "Er is geen beperking op het aantal tekens."
|
207 |
|
208 |
#: inc/php/page.php:156
|
209 |
+
msgid "Does this plugin requires any modification of the theme?"
|
210 |
+
msgstr "Heeft deze plug-in enige aanpassing van het thema nodig?"
|
211 |
+
|
212 |
+
#: inc/php/page.php:157
|
213 |
+
msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
|
214 |
+
msgstr "Absoluut niet. Deze plug-in kan volledig worden geconfigureerd via de pagina met plugin-instellingen."
|
215 |
+
|
216 |
+
#: inc/php/page.php:159
|
217 |
+
msgid "Does this require any knowledge of HTML or CSS?"
|
218 |
+
msgstr "Vereist dit enige kennis van HTML of CSS?"
|
219 |
+
|
220 |
+
#: inc/php/page.php:160
|
221 |
+
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page. But you need to know the HTML or CSS in order to add/remove/modify the HTML or CSS code by using this plugin."
|
222 |
+
msgstr "Deze plug-in kan worden geconfigureerd zonder kennis van HTML of CSS, met behulp van de eenvoudig te gebruiken plugin-instellingenpagina. Maar u moet de HTML of CSS kennen om de HTML- of CSS-code toe te voegen / te verwijderen / wijzigen met behulp van deze plug-in."
|
223 |
+
|
224 |
+
#: inc/php/page.php:162
|
225 |
+
msgid "Can I add my custom PHP code to a specific page of my website?"
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
#: inc/php/page.php:163
|
229 |
+
msgid "For now, this plugin does not have an option to apply the custom PHP code only on specific pages. We plan to add this feature soon. But for now in order to apply your custom PHP code only on specific pages of your website, you need to wrap your custom PHP code in a PHP function that will determine the page you want. You need something like this:"
|
230 |
+
msgstr ""
|
231 |
+
|
232 |
+
#: inc/php/page.php:177
|
233 |
msgid "On the plugin settings page, an error message appears. What could be wrong?"
|
234 |
msgstr "Op de plug-in instellingen pagina verschijnt een fout-melding. Wat kan er fout zijn?"
|
235 |
|
236 |
+
#: inc/php/page.php:178
|
237 |
msgid "Here are a few of the most likely causes of the error message:"
|
238 |
msgstr "Hier zijn enkele van de meest waarschijnlijke oorzaken van de foutmelding:"
|
239 |
|
240 |
+
#: inc/php/page.php:180
|
241 |
msgid "You make a syntax error in the code that you have entered. Check the syntax of your code and try again."
|
242 |
msgstr "Je maakt een syntaxisfout in de code die je hebt ingevoerd. Controleer de syntaxis van je code en probeer het opnieuw."
|
243 |
|
244 |
+
#: inc/php/page.php:181
|
245 |
msgid "You entered two functions with the same name. Use a unique names for your functions."
|
246 |
msgstr "U hebt twee functies met dezelfde naam ingevoerd. Gebruik een unieke naam voor uw functies."
|
247 |
|
248 |
+
#: inc/php/page.php:182
|
249 |
msgid "You have entered function with a name that is already occupied by another function. Use a unique name for your function."
|
250 |
msgstr "Je hebt de functie ingevoerd met een naam die al in gebruik is door een andere functie. Gebruik een unieke naam voor je functie."
|
251 |
|
252 |
+
#: inc/php/page.php:183
|
253 |
msgid "You are trying to overwrite an existing function (of WordPress, theme, or plugin). Instead, use filters and hooks."
|
254 |
msgstr "Je probeert een bestaande functie (van WordPress, thema of plug-in) te overschrijven. Gebruik in plaats daarvan filters en haken."
|
255 |
|
256 |
+
#: inc/php/page.php:186
|
257 |
+
#| msgid "It's not working. What could be wrong?"
|
258 |
+
msgid "My custom PHP code is not working. What could be wrong?"
|
259 |
+
msgstr ""
|
|
|
|
|
|
|
260 |
|
261 |
+
#: inc/php/page.php:187
|
262 |
+
msgid "It happens that your custom PHP code that you insert on the plugin page does not work, even if an error message does not appear. Here are a few of the most likely causes of the issue:"
|
263 |
+
msgstr ""
|
264 |
|
265 |
+
#: inc/php/page.php:189
|
266 |
+
#| msgid "Enjoy the result of applying your custom PHP code."
|
267 |
+
msgid "You have a typo during the insertion of your custom PHP code."
|
268 |
+
msgstr ""
|
269 |
|
270 |
+
#: inc/php/page.php:190
|
271 |
+
msgid "Your custom PHP code has a syntax error."
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: inc/php/page.php:191
|
275 |
+
#| msgid "Place your custom PHP code in the code editor field."
|
276 |
+
msgid "Your custom PHP code is incorrect and may not work."
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: inc/php/page.php:194
|
280 |
msgid "It's not working. What could be wrong?"
|
281 |
msgstr "Het werkt niet. Wat kan er fout zijn?"
|
282 |
|
283 |
+
#: inc/php/page.php:195
|
284 |
msgid "As with every plugin, it's possible that things don't work. The most common reason for this is a web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load. This is called the browser's cache. Clearing your browser's cache may solve the problem."
|
285 |
msgstr "Zoals met elke plug-in, is het mogelijk dat dingen niet werken. De meest voorkomende reden hiervoor is de cache van een webbrowser. Elke webbrowser slaat een cache op van de websites die u bezoekt (pagina's, afbeeldingen en enz.) Om het bandbreedte-gebruik en de serverbelasting te verminderen. Dit wordt de cache van de browser genoemd. Het wissen van de cache van uw browser kan het probleem oplossen."
|
286 |
|
287 |
+
#: inc/php/page.php:196
|
288 |
msgid "It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's support forum on WordPress.org, we'd be happy to give it a look and try to help out. Please include as much information as possible, including a link to your website where the problem can be seen."
|
289 |
msgstr "Het is onmogelijk om precies te vertellen wat er precies mis zou kunnen zijn, maar als je een ondersteuningsverzoek post in het ondersteuningsforum van de plug-in op WordPress.org, willen we graag een kijkje nemen en proberen te helpen. Voeg zoveel mogelijk informatie toe, inclusief een link naar uw website waar het probleem kan worden gezien."
|
290 |
|
291 |
+
#: inc/php/page.php:198
|
292 |
msgid "What to do if this plugin crashed the website?"
|
293 |
msgstr "Wat te doen als deze plug-in de website heeft gecrasht?"
|
294 |
|
295 |
+
#: inc/php/page.php:199
|
296 |
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."
|
297 |
msgstr "Deze plugin heeft ingebouwde functies voor het controleren van de aangepaste code op syntaxisfouten, dubbele functies namen en enz. Maar plugin is niet perfect, het is dus mogelijk dat de ingevoerde code een foutbericht en een wit scherm (WSOD) veroorzaakt. Dit is de wijten aan het feit dat uw aangepaste code een syntaxisfout heeft, die door deze plugin kon niet worden gevonden. Wanneer dit met gebeurt, voer dan de volgende stappen uit."
|
298 |
|
299 |
+
#: inc/php/page.php:201
|
300 |
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."
|
301 |
msgstr "Benader je server via FTP of SFTP. Als u niet zeker bent hoe, vaak heeft je webhostingprovider ergens op hun website instructies staan."
|
302 |
|
303 |
+
#: inc/php/page.php:202
|
304 |
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."
|
305 |
msgstr "Blader naar de map <code>wp-content/plugins/my-custom-functions/</code> . Neem contact op met je web hosting bedrijf om hulp te krijgen als je deze map niet kunt vinden."
|
306 |
|
307 |
+
#: inc/php/page.php:203
|
308 |
msgid "Rename the file <code>START</code> to <code>STOP</code>. This will stop the execution of your custom code."
|
309 |
msgstr "Hernoem het bestand <code>START</code> naar <code>STOP</code>. Hiermee stopt u het uitvoeren van uw aangepaste code."
|
310 |
|
311 |
+
#: inc/php/page.php:204
|
312 |
msgid "Log in to Admin Area of your WordPress website."
|
313 |
msgstr "Log in op het Admin-gedeelte van uw WordPress-website."
|
314 |
|
315 |
+
#: inc/php/page.php:205
|
316 |
msgid "Go to the plugin settings page <code>Settings</code> ➡ <code>PHP Inserter</code>."
|
317 |
msgstr "Ga naar de plug-in instellingen pagina <code>Instellingen</code> ➡ <code>PHP Inserter</code>."
|
318 |
|
319 |
+
#: inc/php/page.php:206
|
320 |
msgid "Edit/fix your custom PHP code that you entered before the crash."
|
321 |
msgstr "Edit/repareer je custos code welke je hebt ingevoerd voor de crash."
|
322 |
|
323 |
+
#: inc/php/page.php:207
|
324 |
msgid "Return to the plugin folder and rename the file <code>STOP</code> to <code>START</code> and you're done!"
|
325 |
msgstr "Keer terug naar de plug-in directorie en verander de naam van het bestand <code>STOP</code> naar <code>START</code> en je bent klaar!"
|
326 |
|
327 |
+
#: inc/php/page.php:209
|
328 |
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>."
|
329 |
msgstr "Deze plug-in heeft de door jouw ingevoerde code opgeslagen in de database van je website. Om je code te verkrijgen, kun je ook naar <code>Database</code> ➡ Table <code>wp_options</code> ➡ Option <code>spacexchimp_p001_settings</code> ➡ <code>option_value</code> gaan."
|
330 |
|
331 |
+
#: inc/php/page.php:210
|
332 |
msgid "We are already working on a feature to automatically stop the execution of users custom PHP code for cases when this plugin could not detect the error, and this caused the inaccessibility of the website."
|
333 |
msgstr "We zijn bezig met het maken van een optie om de uitvoering van PHP-code automatisch te stoppen, als de plugin geen fout kon detecteren en de PHP-code wel een onbereikbare website veroorzaakt."
|
334 |
|
335 |
+
#: inc/php/page.php:212
|
336 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
|
337 |
msgstr "De laatste Wordpress update zorgt ervoor dat ik mijn website niet kan bewerken als ik deze plugin gebruik. Waarom is dit?"
|
338 |
|
339 |
+
#: inc/php/page.php:213
|
340 |
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."
|
341 |
msgstr "Deze plug-in kan zo’n probleem niet veroorzaken. Waarschijnlijker is het probleem gerelateerd aan de instellingen van de website. Het kan gewoon een cache-probleem zijn, dus probeer de cache van je website te wissen (mogelijk gebruik je een caching-plug-in of een webservice zoals de CloudFlare) en vervolgens de cache van je webbrowser. Probeer ook opnieuw in te loggen op de website, ook dit kan helpen."
|
342 |
|
343 |
+
#: inc/php/page.php:215
|
344 |
msgid "Where to report bug if found?"
|
345 |
msgstr "Waar kan een bug gerapporteerd worden indien gevonden?"
|
346 |
|
347 |
+
#: inc/php/page.php:217
|
348 |
#, php-format
|
349 |
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!"
|
350 |
msgstr "Bugrapporten zijn van harte welkom! Ga naar %s onze contactpagina %s en rapporteer. Vergeet alsjeblieft niet om de naam van de plug-in te specificeren. Dank je!"
|
351 |
|
352 |
+
#: inc/php/page.php:223
|
353 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
354 |
msgstr "Waar kan ik ideeën of suggesties delen om de plug-in beter te maken?"
|
355 |
|
356 |
+
#: inc/php/page.php:225
|
357 |
#, php-format
|
358 |
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!"
|
359 |
msgstr "Alle suggesties zijn van harte welkom! Ga naar %s onze contactpagina %s. Vergeet alsjeblieft niet om de naam van de plug-in te specificeren. Dank je!"
|
360 |
|
361 |
+
#: inc/php/page.php:231
|
362 |
msgid "I love this plugin! Can I help somehow?"
|
363 |
msgstr "Ik ben dol op deze plug-in! Kan ik op de een of andere manier helpen?"
|
364 |
|
365 |
+
#: inc/php/page.php:233
|
366 |
#, php-format
|
367 |
msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
|
368 |
msgstr "Ja, alle bijdragen zijn van harte welkom! Ga naar %s onze donatiepagina %s. Dank je!"
|
369 |
|
370 |
+
#: inc/php/page.php:239
|
371 |
msgid "My question wasn't answered here."
|
372 |
msgstr "Mij vraag is hier niet beantwoord."
|
373 |
|
374 |
+
#: inc/php/page.php:241
|
375 |
#, php-format
|
376 |
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."
|
377 |
msgstr "Je kunt je vraag op %s deze pagina %s stellen. Maar houd er rekening mee dat deze plug-in gratis is en er geen speciaal ondersteuningsteam is, dus we kunnen niet iedereen antwoorden."
|
378 |
|
379 |
+
#: inc/php/page.php:255
|
380 |
msgid "Support Us"
|
381 |
msgstr "Ondersteun ons"
|
382 |
|
383 |
+
#: inc/php/page.php:263 inc/php/settings.php:61 inc/php/sidebar.php:54
|
384 |
msgid "Donate with PayPal"
|
385 |
msgstr "Doneer via PayPal"
|
386 |
|
387 |
+
#: inc/php/page.php:268
|
388 |
#, php-format
|
389 |
msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: inc/php/page.php:276
|
393 |
msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: inc/php/page.php:277
|
397 |
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
398 |
msgstr "Ik besteed veel tijd en moeite om ervoor te zorgen dat de thema’s, plug-ins en andere dingen die ik maak nuttig zijn, en het ultieme bewijs daarvan is dat je ze echt wilt gebruiken. Maar ik ben een onafhankelijke ontwikkelaar, zonder een vast inkomen, dus elke kleine bijdrage helpt mij mijn kosten te dekken en laat me meer tijd besteden aan het bouwen van dingen voor mensen zoals jij om van te genieten."
|
399 |
|
400 |
+
#: inc/php/page.php:278
|
401 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
402 |
msgstr "Als je mijn werk waardeert, kun je een koffie voor me kopen!"
|
403 |
|
404 |
+
#: inc/php/page.php:279
|
405 |
msgid "Thank you for your support!"
|
406 |
msgstr "Bedankt voor je ondersteuning!"
|
407 |
|
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:
|
7 |
-
"PO-Revision-Date:
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Russian\n"
|
10 |
"Language: ru_RU\n"
|
@@ -110,7 +110,7 @@ msgstr "Перейдите на вкладку «Главная»."
|
|
110 |
msgid "Place your custom PHP code in the code editor field."
|
111 |
msgstr "Поместите ваш PHP-код в поле."
|
112 |
|
113 |
-
#: inc/php/page.php:71 inc/php/page.php:72
|
114 |
msgid "Note!"
|
115 |
msgstr "Примечание!"
|
116 |
|
@@ -206,179 +206,202 @@ msgid "We don't limit the number of characters."
|
|
206 |
msgstr "Я не ограничиваю количество символов."
|
207 |
|
208 |
#: inc/php/page.php:156
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
209 |
msgid "On the plugin settings page, an error message appears. What could be wrong?"
|
210 |
msgstr "На странице настроек плагина появляется сообщение об ошибке. Что может быть не так?"
|
211 |
|
212 |
-
#: inc/php/page.php:
|
213 |
msgid "Here are a few of the most likely causes of the error message:"
|
214 |
msgstr "Вот некоторые из наиболее вероятных причин появления сообщение об ошибке:"
|
215 |
|
216 |
-
#: inc/php/page.php:
|
217 |
msgid "You make a syntax error in the code that you have entered. Check the syntax of your code and try again."
|
218 |
msgstr "Вы сделали синтаксическую ошибку в коде, который ввели. Проверьте синтаксис кода и повторите попытку."
|
219 |
|
220 |
-
#: inc/php/page.php:
|
221 |
msgid "You entered two functions with the same name. Use a unique names for your functions."
|
222 |
msgstr "Вы ввели несколько функций с одинаковым именем. Используйте уникальные имена для ваших функций."
|
223 |
|
224 |
-
#: inc/php/page.php:
|
225 |
msgid "You have entered function with a name that is already occupied by another function. Use a unique name for your function."
|
226 |
msgstr "Вы ввели функцию с именем, которое уже занята другой функцией. Используйте уникальное имя для вашей функции."
|
227 |
|
228 |
-
#: inc/php/page.php:
|
229 |
msgid "You are trying to overwrite an existing function (of WordPress, theme, or plugin). Instead, use filters and hooks."
|
230 |
msgstr "Вы пытаетесь перезаписать существующую функцию (из WordPress, темы или плагина). Вместо этого используйте фильтры и хуки."
|
231 |
|
232 |
-
#: inc/php/page.php:
|
233 |
-
msgid "
|
234 |
-
|
235 |
-
|
236 |
-
#: inc/php/page.php:166
|
237 |
-
msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
|
238 |
-
msgstr "Абсолютно нет. Этот плагин настраивается полностью на странице настроек плагина."
|
239 |
|
240 |
-
#: inc/php/page.php:
|
241 |
-
msgid "
|
242 |
-
msgstr "
|
243 |
|
244 |
-
#: inc/php/page.php:
|
245 |
-
msgid "
|
246 |
-
|
|
|
247 |
|
248 |
-
#: inc/php/page.php:
|
249 |
-
msgid "
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: inc/php/page.php:
|
253 |
-
msgid "
|
|
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: inc/php/page.php:
|
257 |
msgid "It's not working. What could be wrong?"
|
258 |
msgstr "Оно не работает. Что может быть не так?"
|
259 |
|
260 |
-
#: inc/php/page.php:
|
261 |
msgid "As with every plugin, it's possible that things don't work. The most common reason for this is a web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load. This is called the browser's cache. Clearing your browser's cache may solve the problem."
|
262 |
msgstr "Как и в случае с любым другим плагином, что-то может не работать. Наиболее распространенной причиной этого является кеш веб-браузера. Каждый веб-браузер хранит кеш веб-сайтов, которые вы посещаете (страницы, изображения и т. д.) для того, чтобы уменьшить использование интернет канала и нагрузку на сервер. Это называется кешем браузера. Очистка кеша браузера может решить проблему."
|
263 |
|
264 |
-
#: inc/php/page.php:
|
265 |
msgid "It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's support forum on WordPress.org, we'd be happy to give it a look and try to help out. Please include as much information as possible, including a link to your website where the problem can be seen."
|
266 |
msgstr "Невозможно точно сказать, что может быть неправильно, но если вы разместите запрос поддержки на форуме поддержки плагина на WordPress.org, то мы с радостью посмотрим и попытаемся помочь. Пожалуйста, укажите как можно больше информации, включая ссылку на ваш сайт, на котором можно увидеть проблему."
|
267 |
|
268 |
-
#: inc/php/page.php:
|
269 |
msgid "What to do if this plugin crashed the website?"
|
270 |
msgstr "Что делать, если этот плагин сломал сайт?"
|
271 |
|
272 |
-
#: inc/php/page.php:
|
273 |
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."
|
274 |
msgstr "Этот плагин имеет встроенные функции для проверки пользовательского кода на синтаксические ошибки, дублирования имён функций и т. д. Но плагин не идеален, поэтому бывают случаи, когда введенный пользовательский код вызывает ошибку и белый экран (WSOD). Это связано с тем, что ваш пользовательский код имеет синтаксическую ошибку, которую этот плагин не смог обнаружить. Когда это произойдет с вами, просто выполните следующее, и все будет в порядке."
|
275 |
|
276 |
-
#: inc/php/page.php:
|
277 |
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."
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: inc/php/page.php:
|
281 |
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."
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: inc/php/page.php:
|
285 |
msgid "Rename the file <code>START</code> to <code>STOP</code>. This will stop the execution of your custom code."
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: inc/php/page.php:
|
289 |
msgid "Log in to Admin Area of your WordPress website."
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: inc/php/page.php:
|
293 |
msgid "Go to the plugin settings page <code>Settings</code> ➡ <code>PHP Inserter</code>."
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: inc/php/page.php:
|
297 |
msgid "Edit/fix your custom PHP code that you entered before the crash."
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: inc/php/page.php:
|
301 |
msgid "Return to the plugin folder and rename the file <code>STOP</code> to <code>START</code> and you're done!"
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: inc/php/page.php:
|
305 |
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>."
|
306 |
msgstr "Этот плагин хранит введённый код в базе данных вашего сайта. Для получения кода вы также можете перейти в <code>Database</code> ➡ Table <code>wp_options</code> ➡ Option <code>spacexchimp_p001_settings</code> ➡ <code>option_value</code>."
|
307 |
|
308 |
-
#: inc/php/page.php:
|
309 |
msgid "We are already working on a feature to automatically stop the execution of users custom PHP code for cases when this plugin could not detect the error, and this caused the inaccessibility of the website."
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: inc/php/page.php:
|
313 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
|
314 |
msgstr "Последнее обновление WordPress не позволяет мне редактировать мой сайт, который использует этот плагин. Почему так?"
|
315 |
|
316 |
-
#: inc/php/page.php:
|
317 |
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."
|
318 |
msgstr "Этот плагин не может вызвать такую проблему. Скорее всего, проблема связана с настройками веб-сайта. Это может быть кеш, поэтому попробуйте очистить кеш вашего сайта (возможно, вы используете плагин для кеширования или какой-либо веб-сервис, такой как CloudFlare), а затем кеш вашего веб-браузера. Также попробуйте повторно войти на сайт, это тоже может помочь."
|
319 |
|
320 |
-
#: inc/php/page.php:
|
321 |
msgid "Where to report bug if found?"
|
322 |
msgstr "Где можно сообщить об ошибке?"
|
323 |
|
324 |
-
#: inc/php/page.php:
|
325 |
#, php-format
|
326 |
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!"
|
327 |
msgstr "Посетите %s эту страницу %s и сообщите. Не забудьте указать название плагина. Спасибо!"
|
328 |
|
329 |
-
#: inc/php/page.php:
|
330 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
331 |
msgstr "Где можно поделиться идеями или предложениями, чтобы сделать плагин лучше?"
|
332 |
|
333 |
-
#: inc/php/page.php:
|
334 |
#, php-format
|
335 |
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!"
|
336 |
msgstr "Любые предложения приветствуются! Просто свяжитесь с нами %s здесь %s. Не забудьте указать название плагина. Спасибо!"
|
337 |
|
338 |
-
#: inc/php/page.php:
|
339 |
msgid "I love this plugin! Can I help somehow?"
|
340 |
msgstr "Мне нравится этот плагин! Могу Я чем-то помочь?"
|
341 |
|
342 |
-
#: inc/php/page.php:
|
343 |
#, php-format
|
344 |
msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
|
345 |
msgstr "Да, любые финансовые взносы приветствуются! Просто посетите %s мой сайт %s, нажмите на кнопку пожертвования. Спасибо!"
|
346 |
|
347 |
-
#: inc/php/page.php:
|
348 |
msgid "My question wasn't answered here."
|
349 |
msgstr "Моего вопроса здесь нет."
|
350 |
|
351 |
-
#: inc/php/page.php:
|
352 |
#, php-format
|
353 |
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."
|
354 |
msgstr "Вы можете задать ваш вопрос на %s этой странице %s. Но имейте в виду, что этот плагин является бесплатным и без специальной поддержки, поэтому у нас нет возможности ответить на все вопросы."
|
355 |
|
356 |
-
#: inc/php/page.php:
|
357 |
msgid "Support Us"
|
358 |
msgstr "Поддержать нас"
|
359 |
|
360 |
-
#: inc/php/page.php:
|
361 |
msgid "Donate with PayPal"
|
362 |
msgstr "Пожертвовать через Pay Pal"
|
363 |
|
364 |
-
#: inc/php/page.php:
|
365 |
#, php-format
|
366 |
msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: inc/php/page.php:
|
370 |
msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: inc/php/page.php:
|
374 |
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
375 |
msgstr "Мы тратим много времени и усилий, пытаясь убедиться в том, что темы, плагины и другие вещи, которые мы создаём, полезны, и окончательное доказательство этого для нас то, что вы на самом деле хотите их использовать. Но мы независимые разработчики, без регулярного дохода, поэтому каждый небольшой вклад помогает покрыть наши расходы и позволяет нам тратить больше времени на создание вещей для таких замечательных людей, как вы."
|
376 |
|
377 |
-
#: inc/php/page.php:
|
378 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
379 |
msgstr "Если вы цените мою работу, то вы можете купить мне кофе!"
|
380 |
|
381 |
-
#: inc/php/page.php:
|
382 |
msgid "Thank you for your support!"
|
383 |
msgstr "Спасибо за вашу поддержку!"
|
384 |
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
+
"POT-Creation-Date: 2019-01-11 20:38+0200\n"
|
7 |
+
"PO-Revision-Date: 2019-01-11 20:39+0200\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Russian\n"
|
10 |
"Language: ru_RU\n"
|
110 |
msgid "Place your custom PHP code in the code editor field."
|
111 |
msgstr "Поместите ваш PHP-код в поле."
|
112 |
|
113 |
+
#: inc/php/page.php:71 inc/php/page.php:72
|
114 |
msgid "Note!"
|
115 |
msgstr "Примечание!"
|
116 |
|
206 |
msgstr "Я не ограничиваю количество символов."
|
207 |
|
208 |
#: inc/php/page.php:156
|
209 |
+
msgid "Does this plugin requires any modification of the theme?"
|
210 |
+
msgstr "Этот плагин требует изменения темы?"
|
211 |
+
|
212 |
+
#: inc/php/page.php:157
|
213 |
+
msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
|
214 |
+
msgstr "Абсолютно нет. Этот плагин настраивается полностью на странице настроек плагина."
|
215 |
+
|
216 |
+
#: inc/php/page.php:159
|
217 |
+
msgid "Does this require any knowledge of HTML or CSS?"
|
218 |
+
msgstr "Требуются ли какие-либо знания HTML или CSS?"
|
219 |
+
|
220 |
+
#: inc/php/page.php:160
|
221 |
+
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page. But you need to know the HTML or CSS in order to add/remove/modify the HTML or CSS code by using this plugin."
|
222 |
+
msgstr "Этот плагин можно настроить без знания HTML или CSS, с помощью простой в использовании страницы настройки плагина. Но вам нужно знать HTML или CSS для того, чтобы добавить/удалить/изменить код HTML или CSS, используя этот плагин."
|
223 |
+
|
224 |
+
#: inc/php/page.php:162
|
225 |
+
msgid "Can I add my custom PHP code to a specific page of my website?"
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
#: inc/php/page.php:163
|
229 |
+
msgid "For now, this plugin does not have an option to apply the custom PHP code only on specific pages. We plan to add this feature soon. But for now in order to apply your custom PHP code only on specific pages of your website, you need to wrap your custom PHP code in a PHP function that will determine the page you want. You need something like this:"
|
230 |
+
msgstr ""
|
231 |
+
|
232 |
+
#: inc/php/page.php:177
|
233 |
msgid "On the plugin settings page, an error message appears. What could be wrong?"
|
234 |
msgstr "На странице настроек плагина появляется сообщение об ошибке. Что может быть не так?"
|
235 |
|
236 |
+
#: inc/php/page.php:178
|
237 |
msgid "Here are a few of the most likely causes of the error message:"
|
238 |
msgstr "Вот некоторые из наиболее вероятных причин появления сообщение об ошибке:"
|
239 |
|
240 |
+
#: inc/php/page.php:180
|
241 |
msgid "You make a syntax error in the code that you have entered. Check the syntax of your code and try again."
|
242 |
msgstr "Вы сделали синтаксическую ошибку в коде, который ввели. Проверьте синтаксис кода и повторите попытку."
|
243 |
|
244 |
+
#: inc/php/page.php:181
|
245 |
msgid "You entered two functions with the same name. Use a unique names for your functions."
|
246 |
msgstr "Вы ввели несколько функций с одинаковым именем. Используйте уникальные имена для ваших функций."
|
247 |
|
248 |
+
#: inc/php/page.php:182
|
249 |
msgid "You have entered function with a name that is already occupied by another function. Use a unique name for your function."
|
250 |
msgstr "Вы ввели функцию с именем, которое уже занята другой функцией. Используйте уникальное имя для вашей функции."
|
251 |
|
252 |
+
#: inc/php/page.php:183
|
253 |
msgid "You are trying to overwrite an existing function (of WordPress, theme, or plugin). Instead, use filters and hooks."
|
254 |
msgstr "Вы пытаетесь перезаписать существующую функцию (из WordPress, темы или плагина). Вместо этого используйте фильтры и хуки."
|
255 |
|
256 |
+
#: inc/php/page.php:186
|
257 |
+
#| msgid "It's not working. What could be wrong?"
|
258 |
+
msgid "My custom PHP code is not working. What could be wrong?"
|
259 |
+
msgstr ""
|
|
|
|
|
|
|
260 |
|
261 |
+
#: inc/php/page.php:187
|
262 |
+
msgid "It happens that your custom PHP code that you insert on the plugin page does not work, even if an error message does not appear. Here are a few of the most likely causes of the issue:"
|
263 |
+
msgstr ""
|
264 |
|
265 |
+
#: inc/php/page.php:189
|
266 |
+
#| msgid "Enjoy the result of applying your custom PHP code."
|
267 |
+
msgid "You have a typo during the insertion of your custom PHP code."
|
268 |
+
msgstr ""
|
269 |
|
270 |
+
#: inc/php/page.php:190
|
271 |
+
msgid "Your custom PHP code has a syntax error."
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: inc/php/page.php:191
|
275 |
+
#| msgid "Place your custom PHP code in the code editor field."
|
276 |
+
msgid "Your custom PHP code is incorrect and may not work."
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: inc/php/page.php:194
|
280 |
msgid "It's not working. What could be wrong?"
|
281 |
msgstr "Оно не работает. Что может быть не так?"
|
282 |
|
283 |
+
#: inc/php/page.php:195
|
284 |
msgid "As with every plugin, it's possible that things don't work. The most common reason for this is a web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load. This is called the browser's cache. Clearing your browser's cache may solve the problem."
|
285 |
msgstr "Как и в случае с любым другим плагином, что-то может не работать. Наиболее распространенной причиной этого является кеш веб-браузера. Каждый веб-браузер хранит кеш веб-сайтов, которые вы посещаете (страницы, изображения и т. д.) для того, чтобы уменьшить использование интернет канала и нагрузку на сервер. Это называется кешем браузера. Очистка кеша браузера может решить проблему."
|
286 |
|
287 |
+
#: inc/php/page.php:196
|
288 |
msgid "It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's support forum on WordPress.org, we'd be happy to give it a look and try to help out. Please include as much information as possible, including a link to your website where the problem can be seen."
|
289 |
msgstr "Невозможно точно сказать, что может быть неправильно, но если вы разместите запрос поддержки на форуме поддержки плагина на WordPress.org, то мы с радостью посмотрим и попытаемся помочь. Пожалуйста, укажите как можно больше информации, включая ссылку на ваш сайт, на котором можно увидеть проблему."
|
290 |
|
291 |
+
#: inc/php/page.php:198
|
292 |
msgid "What to do if this plugin crashed the website?"
|
293 |
msgstr "Что делать, если этот плагин сломал сайт?"
|
294 |
|
295 |
+
#: inc/php/page.php:199
|
296 |
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."
|
297 |
msgstr "Этот плагин имеет встроенные функции для проверки пользовательского кода на синтаксические ошибки, дублирования имён функций и т. д. Но плагин не идеален, поэтому бывают случаи, когда введенный пользовательский код вызывает ошибку и белый экран (WSOD). Это связано с тем, что ваш пользовательский код имеет синтаксическую ошибку, которую этот плагин не смог обнаружить. Когда это произойдет с вами, просто выполните следующее, и все будет в порядке."
|
298 |
|
299 |
+
#: inc/php/page.php:201
|
300 |
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."
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: inc/php/page.php:202
|
304 |
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."
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: inc/php/page.php:203
|
308 |
msgid "Rename the file <code>START</code> to <code>STOP</code>. This will stop the execution of your custom code."
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: inc/php/page.php:204
|
312 |
msgid "Log in to Admin Area of your WordPress website."
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: inc/php/page.php:205
|
316 |
msgid "Go to the plugin settings page <code>Settings</code> ➡ <code>PHP Inserter</code>."
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: inc/php/page.php:206
|
320 |
msgid "Edit/fix your custom PHP code that you entered before the crash."
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: inc/php/page.php:207
|
324 |
msgid "Return to the plugin folder and rename the file <code>STOP</code> to <code>START</code> and you're done!"
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: inc/php/page.php:209
|
328 |
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>."
|
329 |
msgstr "Этот плагин хранит введённый код в базе данных вашего сайта. Для получения кода вы также можете перейти в <code>Database</code> ➡ Table <code>wp_options</code> ➡ Option <code>spacexchimp_p001_settings</code> ➡ <code>option_value</code>."
|
330 |
|
331 |
+
#: inc/php/page.php:210
|
332 |
msgid "We are already working on a feature to automatically stop the execution of users custom PHP code for cases when this plugin could not detect the error, and this caused the inaccessibility of the website."
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: inc/php/page.php:212
|
336 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
|
337 |
msgstr "Последнее обновление WordPress не позволяет мне редактировать мой сайт, который использует этот плагин. Почему так?"
|
338 |
|
339 |
+
#: inc/php/page.php:213
|
340 |
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."
|
341 |
msgstr "Этот плагин не может вызвать такую проблему. Скорее всего, проблема связана с настройками веб-сайта. Это может быть кеш, поэтому попробуйте очистить кеш вашего сайта (возможно, вы используете плагин для кеширования или какой-либо веб-сервис, такой как CloudFlare), а затем кеш вашего веб-браузера. Также попробуйте повторно войти на сайт, это тоже может помочь."
|
342 |
|
343 |
+
#: inc/php/page.php:215
|
344 |
msgid "Where to report bug if found?"
|
345 |
msgstr "Где можно сообщить об ошибке?"
|
346 |
|
347 |
+
#: inc/php/page.php:217
|
348 |
#, php-format
|
349 |
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!"
|
350 |
msgstr "Посетите %s эту страницу %s и сообщите. Не забудьте указать название плагина. Спасибо!"
|
351 |
|
352 |
+
#: inc/php/page.php:223
|
353 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
354 |
msgstr "Где можно поделиться идеями или предложениями, чтобы сделать плагин лучше?"
|
355 |
|
356 |
+
#: inc/php/page.php:225
|
357 |
#, php-format
|
358 |
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!"
|
359 |
msgstr "Любые предложения приветствуются! Просто свяжитесь с нами %s здесь %s. Не забудьте указать название плагина. Спасибо!"
|
360 |
|
361 |
+
#: inc/php/page.php:231
|
362 |
msgid "I love this plugin! Can I help somehow?"
|
363 |
msgstr "Мне нравится этот плагин! Могу Я чем-то помочь?"
|
364 |
|
365 |
+
#: inc/php/page.php:233
|
366 |
#, php-format
|
367 |
msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
|
368 |
msgstr "Да, любые финансовые взносы приветствуются! Просто посетите %s мой сайт %s, нажмите на кнопку пожертвования. Спасибо!"
|
369 |
|
370 |
+
#: inc/php/page.php:239
|
371 |
msgid "My question wasn't answered here."
|
372 |
msgstr "Моего вопроса здесь нет."
|
373 |
|
374 |
+
#: inc/php/page.php:241
|
375 |
#, php-format
|
376 |
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."
|
377 |
msgstr "Вы можете задать ваш вопрос на %s этой странице %s. Но имейте в виду, что этот плагин является бесплатным и без специальной поддержки, поэтому у нас нет возможности ответить на все вопросы."
|
378 |
|
379 |
+
#: inc/php/page.php:255
|
380 |
msgid "Support Us"
|
381 |
msgstr "Поддержать нас"
|
382 |
|
383 |
+
#: inc/php/page.php:263 inc/php/settings.php:61 inc/php/sidebar.php:54
|
384 |
msgid "Donate with PayPal"
|
385 |
msgstr "Пожертвовать через Pay Pal"
|
386 |
|
387 |
+
#: inc/php/page.php:268
|
388 |
#, php-format
|
389 |
msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: inc/php/page.php:276
|
393 |
msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: inc/php/page.php:277
|
397 |
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
398 |
msgstr "Мы тратим много времени и усилий, пытаясь убедиться в том, что темы, плагины и другие вещи, которые мы создаём, полезны, и окончательное доказательство этого для нас то, что вы на самом деле хотите их использовать. Но мы независимые разработчики, без регулярного дохода, поэтому каждый небольшой вклад помогает покрыть наши расходы и позволяет нам тратить больше времени на создание вещей для таких замечательных людей, как вы."
|
399 |
|
400 |
+
#: inc/php/page.php:278
|
401 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
402 |
msgstr "Если вы цените мою работу, то вы можете купить мне кофе!"
|
403 |
|
404 |
+
#: inc/php/page.php:279
|
405 |
msgid "Thank you for your support!"
|
406 |
msgstr "Спасибо за вашу поддержку!"
|
407 |
|
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:
|
7 |
-
"PO-Revision-Date:
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Chinese (Taiwan)\n"
|
10 |
"Language: zh_TW\n"
|
@@ -110,7 +110,7 @@ msgstr ""
|
|
110 |
msgid "Place your custom PHP code in the code editor field."
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: inc/php/page.php:71 inc/php/page.php:72
|
114 |
msgid "Note!"
|
115 |
msgstr ""
|
116 |
|
@@ -206,179 +206,199 @@ msgid "We don't limit the number of characters."
|
|
206 |
msgstr ""
|
207 |
|
208 |
#: inc/php/page.php:156
|
209 |
-
msgid "
|
210 |
msgstr ""
|
211 |
|
212 |
#: inc/php/page.php:157
|
213 |
-
msgid "
|
214 |
msgstr ""
|
215 |
|
216 |
#: inc/php/page.php:159
|
217 |
-
msgid "
|
218 |
msgstr ""
|
219 |
|
220 |
#: inc/php/page.php:160
|
221 |
-
msgid "
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: inc/php/page.php:
|
225 |
-
msgid "
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: inc/php/page.php:
|
229 |
-
msgid "
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: inc/php/page.php:
|
233 |
-
msgid "
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: inc/php/page.php:
|
237 |
-
msgid "
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: inc/php/page.php:
|
241 |
-
msgid "
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: inc/php/page.php:
|
245 |
-
msgid "
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: inc/php/page.php:
|
249 |
-
msgid "
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: inc/php/page.php:
|
253 |
-
msgid "
|
254 |
msgstr ""
|
255 |
|
256 |
#: inc/php/page.php:186
|
257 |
-
msgid "
|
258 |
msgstr ""
|
259 |
|
260 |
#: inc/php/page.php:187
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
261 |
msgid "As with every plugin, it's possible that things don't work. The most common reason for this is a web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load. This is called the browser's cache. Clearing your browser's cache may solve the problem."
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: inc/php/page.php:
|
265 |
msgid "It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's support forum on WordPress.org, we'd be happy to give it a look and try to help out. Please include as much information as possible, including a link to your website where the problem can be seen."
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: inc/php/page.php:
|
269 |
msgid "What to do if this plugin crashed the website?"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: inc/php/page.php:
|
273 |
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."
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: inc/php/page.php:
|
277 |
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."
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: inc/php/page.php:
|
281 |
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."
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: inc/php/page.php:
|
285 |
msgid "Rename the file <code>START</code> to <code>STOP</code>. This will stop the execution of your custom code."
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: inc/php/page.php:
|
289 |
msgid "Log in to Admin Area of your WordPress website."
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: inc/php/page.php:
|
293 |
msgid "Go to the plugin settings page <code>Settings</code> ➡ <code>PHP Inserter</code>."
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: inc/php/page.php:
|
297 |
msgid "Edit/fix your custom PHP code that you entered before the crash."
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: inc/php/page.php:
|
301 |
msgid "Return to the plugin folder and rename the file <code>STOP</code> to <code>START</code> and you're done!"
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: inc/php/page.php:
|
305 |
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>."
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: inc/php/page.php:
|
309 |
msgid "We are already working on a feature to automatically stop the execution of users custom PHP code for cases when this plugin could not detect the error, and this caused the inaccessibility of the website."
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: inc/php/page.php:
|
313 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: inc/php/page.php:
|
317 |
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."
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: inc/php/page.php:
|
321 |
msgid "Where to report bug if found?"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: inc/php/page.php:
|
325 |
#, php-format
|
326 |
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!"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: inc/php/page.php:
|
330 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: inc/php/page.php:
|
334 |
#, php-format
|
335 |
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!"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: inc/php/page.php:
|
339 |
msgid "I love this plugin! Can I help somehow?"
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: inc/php/page.php:
|
343 |
#, php-format
|
344 |
msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: inc/php/page.php:
|
348 |
msgid "My question wasn't answered here."
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: inc/php/page.php:
|
352 |
#, php-format
|
353 |
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."
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: inc/php/page.php:
|
357 |
msgid "Support Us"
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: inc/php/page.php:
|
361 |
msgid "Donate with PayPal"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: inc/php/page.php:
|
365 |
#, php-format
|
366 |
msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: inc/php/page.php:
|
370 |
msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: inc/php/page.php:
|
374 |
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: inc/php/page.php:
|
378 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: inc/php/page.php:
|
382 |
msgid "Thank you for your support!"
|
383 |
msgstr ""
|
384 |
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
+
"POT-Creation-Date: 2019-01-11 20:39+0200\n"
|
7 |
+
"PO-Revision-Date: 2019-01-11 20:39+0200\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Chinese (Taiwan)\n"
|
10 |
"Language: zh_TW\n"
|
110 |
msgid "Place your custom PHP code in the code editor field."
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: inc/php/page.php:71 inc/php/page.php:72
|
114 |
msgid "Note!"
|
115 |
msgstr ""
|
116 |
|
206 |
msgstr ""
|
207 |
|
208 |
#: inc/php/page.php:156
|
209 |
+
msgid "Does this plugin requires any modification of the theme?"
|
210 |
msgstr ""
|
211 |
|
212 |
#: inc/php/page.php:157
|
213 |
+
msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
|
214 |
msgstr ""
|
215 |
|
216 |
#: inc/php/page.php:159
|
217 |
+
msgid "Does this require any knowledge of HTML or CSS?"
|
218 |
msgstr ""
|
219 |
|
220 |
#: inc/php/page.php:160
|
221 |
+
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page. But you need to know the HTML or CSS in order to add/remove/modify the HTML or CSS code by using this plugin."
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: inc/php/page.php:162
|
225 |
+
msgid "Can I add my custom PHP code to a specific page of my website?"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: inc/php/page.php:163
|
229 |
+
msgid "For now, this plugin does not have an option to apply the custom PHP code only on specific pages. We plan to add this feature soon. But for now in order to apply your custom PHP code only on specific pages of your website, you need to wrap your custom PHP code in a PHP function that will determine the page you want. You need something like this:"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: inc/php/page.php:177
|
233 |
+
msgid "On the plugin settings page, an error message appears. What could be wrong?"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: inc/php/page.php:178
|
237 |
+
msgid "Here are a few of the most likely causes of the error message:"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: inc/php/page.php:180
|
241 |
+
msgid "You make a syntax error in the code that you have entered. Check the syntax of your code and try again."
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: inc/php/page.php:181
|
245 |
+
msgid "You entered two functions with the same name. Use a unique names for your functions."
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: inc/php/page.php:182
|
249 |
+
msgid "You have entered function with a name that is already occupied by another function. Use a unique name for your function."
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: inc/php/page.php:183
|
253 |
+
msgid "You are trying to overwrite an existing function (of WordPress, theme, or plugin). Instead, use filters and hooks."
|
254 |
msgstr ""
|
255 |
|
256 |
#: inc/php/page.php:186
|
257 |
+
msgid "My custom PHP code is not working. What could be wrong?"
|
258 |
msgstr ""
|
259 |
|
260 |
#: inc/php/page.php:187
|
261 |
+
msgid "It happens that your custom PHP code that you insert on the plugin page does not work, even if an error message does not appear. Here are a few of the most likely causes of the issue:"
|
262 |
+
msgstr ""
|
263 |
+
|
264 |
+
#: inc/php/page.php:189
|
265 |
+
msgid "You have a typo during the insertion of your custom PHP code."
|
266 |
+
msgstr ""
|
267 |
+
|
268 |
+
#: inc/php/page.php:190
|
269 |
+
msgid "Your custom PHP code has a syntax error."
|
270 |
+
msgstr ""
|
271 |
+
|
272 |
+
#: inc/php/page.php:191
|
273 |
+
msgid "Your custom PHP code is incorrect and may not work."
|
274 |
+
msgstr ""
|
275 |
+
|
276 |
+
#: inc/php/page.php:194
|
277 |
+
msgid "It's not working. What could be wrong?"
|
278 |
+
msgstr ""
|
279 |
+
|
280 |
+
#: inc/php/page.php:195
|
281 |
msgid "As with every plugin, it's possible that things don't work. The most common reason for this is a web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load. This is called the browser's cache. Clearing your browser's cache may solve the problem."
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: inc/php/page.php:196
|
285 |
msgid "It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's support forum on WordPress.org, we'd be happy to give it a look and try to help out. Please include as much information as possible, including a link to your website where the problem can be seen."
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: inc/php/page.php:198
|
289 |
msgid "What to do if this plugin crashed the website?"
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: inc/php/page.php:199
|
293 |
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."
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: inc/php/page.php:201
|
297 |
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."
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: inc/php/page.php:202
|
301 |
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."
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: inc/php/page.php:203
|
305 |
msgid "Rename the file <code>START</code> to <code>STOP</code>. This will stop the execution of your custom code."
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: inc/php/page.php:204
|
309 |
msgid "Log in to Admin Area of your WordPress website."
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: inc/php/page.php:205
|
313 |
msgid "Go to the plugin settings page <code>Settings</code> ➡ <code>PHP Inserter</code>."
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: inc/php/page.php:206
|
317 |
msgid "Edit/fix your custom PHP code that you entered before the crash."
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: inc/php/page.php:207
|
321 |
msgid "Return to the plugin folder and rename the file <code>STOP</code> to <code>START</code> and you're done!"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: inc/php/page.php:209
|
325 |
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>."
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: inc/php/page.php:210
|
329 |
msgid "We are already working on a feature to automatically stop the execution of users custom PHP code for cases when this plugin could not detect the error, and this caused the inaccessibility of the website."
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: inc/php/page.php:212
|
333 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: inc/php/page.php:213
|
337 |
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."
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: inc/php/page.php:215
|
341 |
msgid "Where to report bug if found?"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: inc/php/page.php:217
|
345 |
#, php-format
|
346 |
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!"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: inc/php/page.php:223
|
350 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: inc/php/page.php:225
|
354 |
#, php-format
|
355 |
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!"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: inc/php/page.php:231
|
359 |
msgid "I love this plugin! Can I help somehow?"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: inc/php/page.php:233
|
363 |
#, php-format
|
364 |
msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: inc/php/page.php:239
|
368 |
msgid "My question wasn't answered here."
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: inc/php/page.php:241
|
372 |
#, php-format
|
373 |
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."
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: inc/php/page.php:255
|
377 |
msgid "Support Us"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: inc/php/page.php:263 inc/php/settings.php:61 inc/php/sidebar.php:54
|
381 |
msgid "Donate with PayPal"
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: inc/php/page.php:268
|
385 |
#, php-format
|
386 |
msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: inc/php/page.php:276
|
390 |
msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: inc/php/page.php:277
|
394 |
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: inc/php/page.php:278
|
398 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: inc/php/page.php:279
|
402 |
msgid "Thank you for your support!"
|
403 |
msgstr ""
|
404 |
|
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:
|
7 |
"PO-Revision-Date: 2015-08-30 16:22+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
@@ -108,7 +108,7 @@ msgstr ""
|
|
108 |
msgid "Place your custom PHP code in the code editor field."
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: inc/php/page.php:71 inc/php/page.php:72
|
112 |
msgid "Note!"
|
113 |
msgstr ""
|
114 |
|
@@ -204,179 +204,199 @@ msgid "We don't limit the number of characters."
|
|
204 |
msgstr ""
|
205 |
|
206 |
#: inc/php/page.php:156
|
207 |
-
msgid "
|
208 |
msgstr ""
|
209 |
|
210 |
#: inc/php/page.php:157
|
211 |
-
msgid "
|
212 |
msgstr ""
|
213 |
|
214 |
#: inc/php/page.php:159
|
215 |
-
msgid "
|
216 |
msgstr ""
|
217 |
|
218 |
#: inc/php/page.php:160
|
219 |
-
msgid "
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: inc/php/page.php:
|
223 |
-
msgid "
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: inc/php/page.php:
|
227 |
-
msgid "
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: inc/php/page.php:
|
231 |
-
msgid "
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: inc/php/page.php:
|
235 |
-
msgid "
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: inc/php/page.php:
|
239 |
-
msgid "
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: inc/php/page.php:
|
243 |
-
msgid "
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: inc/php/page.php:
|
247 |
-
msgid "
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: inc/php/page.php:
|
251 |
-
msgid "
|
252 |
msgstr ""
|
253 |
|
254 |
#: inc/php/page.php:186
|
255 |
-
msgid "
|
256 |
msgstr ""
|
257 |
|
258 |
#: inc/php/page.php:187
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
259 |
msgid "As with every plugin, it's possible that things don't work. The most common reason for this is a web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load. This is called the browser's cache. Clearing your browser's cache may solve the problem."
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: inc/php/page.php:
|
263 |
msgid "It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's support forum on WordPress.org, we'd be happy to give it a look and try to help out. Please include as much information as possible, including a link to your website where the problem can be seen."
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: inc/php/page.php:
|
267 |
msgid "What to do if this plugin crashed the website?"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: inc/php/page.php:
|
271 |
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."
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: inc/php/page.php:
|
275 |
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."
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: inc/php/page.php:
|
279 |
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."
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: inc/php/page.php:
|
283 |
msgid "Rename the file <code>START</code> to <code>STOP</code>. This will stop the execution of your custom code."
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: inc/php/page.php:
|
287 |
msgid "Log in to Admin Area of your WordPress website."
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: inc/php/page.php:
|
291 |
msgid "Go to the plugin settings page <code>Settings</code> ➡ <code>PHP Inserter</code>."
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: inc/php/page.php:
|
295 |
msgid "Edit/fix your custom PHP code that you entered before the crash."
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: inc/php/page.php:
|
299 |
msgid "Return to the plugin folder and rename the file <code>STOP</code> to <code>START</code> and you're done!"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: inc/php/page.php:
|
303 |
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>."
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: inc/php/page.php:
|
307 |
msgid "We are already working on a feature to automatically stop the execution of users custom PHP code for cases when this plugin could not detect the error, and this caused the inaccessibility of the website."
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: inc/php/page.php:
|
311 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: inc/php/page.php:
|
315 |
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."
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: inc/php/page.php:
|
319 |
msgid "Where to report bug if found?"
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: inc/php/page.php:
|
323 |
#, php-format
|
324 |
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!"
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: inc/php/page.php:
|
328 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
329 |
msgstr ""
|
330 |
|
331 |
-
#: inc/php/page.php:
|
332 |
#, php-format
|
333 |
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!"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: inc/php/page.php:
|
337 |
msgid "I love this plugin! Can I help somehow?"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: inc/php/page.php:
|
341 |
#, php-format
|
342 |
msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: inc/php/page.php:
|
346 |
msgid "My question wasn't answered here."
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: inc/php/page.php:
|
350 |
#, php-format
|
351 |
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."
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: inc/php/page.php:
|
355 |
msgid "Support Us"
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: inc/php/page.php:
|
359 |
msgid "Donate with PayPal"
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: inc/php/page.php:
|
363 |
#, php-format
|
364 |
msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: inc/php/page.php:
|
368 |
msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: inc/php/page.php:
|
372 |
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: inc/php/page.php:
|
376 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: inc/php/page.php:
|
380 |
msgid "Thank you for your support!"
|
381 |
msgstr ""
|
382 |
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
+
"POT-Creation-Date: 2019-01-11 20:40+0200\n"
|
7 |
"PO-Revision-Date: 2015-08-30 16:22+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
108 |
msgid "Place your custom PHP code in the code editor field."
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: inc/php/page.php:71 inc/php/page.php:72
|
112 |
msgid "Note!"
|
113 |
msgstr ""
|
114 |
|
204 |
msgstr ""
|
205 |
|
206 |
#: inc/php/page.php:156
|
207 |
+
msgid "Does this plugin requires any modification of the theme?"
|
208 |
msgstr ""
|
209 |
|
210 |
#: inc/php/page.php:157
|
211 |
+
msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
|
212 |
msgstr ""
|
213 |
|
214 |
#: inc/php/page.php:159
|
215 |
+
msgid "Does this require any knowledge of HTML or CSS?"
|
216 |
msgstr ""
|
217 |
|
218 |
#: inc/php/page.php:160
|
219 |
+
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page. But you need to know the HTML or CSS in order to add/remove/modify the HTML or CSS code by using this plugin."
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: inc/php/page.php:162
|
223 |
+
msgid "Can I add my custom PHP code to a specific page of my website?"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: inc/php/page.php:163
|
227 |
+
msgid "For now, this plugin does not have an option to apply the custom PHP code only on specific pages. We plan to add this feature soon. But for now in order to apply your custom PHP code only on specific pages of your website, you need to wrap your custom PHP code in a PHP function that will determine the page you want. You need something like this:"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: inc/php/page.php:177
|
231 |
+
msgid "On the plugin settings page, an error message appears. What could be wrong?"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: inc/php/page.php:178
|
235 |
+
msgid "Here are a few of the most likely causes of the error message:"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: inc/php/page.php:180
|
239 |
+
msgid "You make a syntax error in the code that you have entered. Check the syntax of your code and try again."
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: inc/php/page.php:181
|
243 |
+
msgid "You entered two functions with the same name. Use a unique names for your functions."
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: inc/php/page.php:182
|
247 |
+
msgid "You have entered function with a name that is already occupied by another function. Use a unique name for your function."
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: inc/php/page.php:183
|
251 |
+
msgid "You are trying to overwrite an existing function (of WordPress, theme, or plugin). Instead, use filters and hooks."
|
252 |
msgstr ""
|
253 |
|
254 |
#: inc/php/page.php:186
|
255 |
+
msgid "My custom PHP code is not working. What could be wrong?"
|
256 |
msgstr ""
|
257 |
|
258 |
#: inc/php/page.php:187
|
259 |
+
msgid "It happens that your custom PHP code that you insert on the plugin page does not work, even if an error message does not appear. Here are a few of the most likely causes of the issue:"
|
260 |
+
msgstr ""
|
261 |
+
|
262 |
+
#: inc/php/page.php:189
|
263 |
+
msgid "You have a typo during the insertion of your custom PHP code."
|
264 |
+
msgstr ""
|
265 |
+
|
266 |
+
#: inc/php/page.php:190
|
267 |
+
msgid "Your custom PHP code has a syntax error."
|
268 |
+
msgstr ""
|
269 |
+
|
270 |
+
#: inc/php/page.php:191
|
271 |
+
msgid "Your custom PHP code is incorrect and may not work."
|
272 |
+
msgstr ""
|
273 |
+
|
274 |
+
#: inc/php/page.php:194
|
275 |
+
msgid "It's not working. What could be wrong?"
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
+
#: inc/php/page.php:195
|
279 |
msgid "As with every plugin, it's possible that things don't work. The most common reason for this is a web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load. This is called the browser's cache. Clearing your browser's cache may solve the problem."
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: inc/php/page.php:196
|
283 |
msgid "It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's support forum on WordPress.org, we'd be happy to give it a look and try to help out. Please include as much information as possible, including a link to your website where the problem can be seen."
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: inc/php/page.php:198
|
287 |
msgid "What to do if this plugin crashed the website?"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: inc/php/page.php:199
|
291 |
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."
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: inc/php/page.php:201
|
295 |
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."
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: inc/php/page.php:202
|
299 |
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."
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: inc/php/page.php:203
|
303 |
msgid "Rename the file <code>START</code> to <code>STOP</code>. This will stop the execution of your custom code."
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: inc/php/page.php:204
|
307 |
msgid "Log in to Admin Area of your WordPress website."
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: inc/php/page.php:205
|
311 |
msgid "Go to the plugin settings page <code>Settings</code> ➡ <code>PHP Inserter</code>."
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: inc/php/page.php:206
|
315 |
msgid "Edit/fix your custom PHP code that you entered before the crash."
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: inc/php/page.php:207
|
319 |
msgid "Return to the plugin folder and rename the file <code>STOP</code> to <code>START</code> and you're done!"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: inc/php/page.php:209
|
323 |
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>."
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: inc/php/page.php:210
|
327 |
msgid "We are already working on a feature to automatically stop the execution of users custom PHP code for cases when this plugin could not detect the error, and this caused the inaccessibility of the website."
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: inc/php/page.php:212
|
331 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: inc/php/page.php:213
|
335 |
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."
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: inc/php/page.php:215
|
339 |
msgid "Where to report bug if found?"
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: inc/php/page.php:217
|
343 |
#, php-format
|
344 |
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!"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: inc/php/page.php:223
|
348 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: inc/php/page.php:225
|
352 |
#, php-format
|
353 |
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!"
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: inc/php/page.php:231
|
357 |
msgid "I love this plugin! Can I help somehow?"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: inc/php/page.php:233
|
361 |
#, php-format
|
362 |
msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: inc/php/page.php:239
|
366 |
msgid "My question wasn't answered here."
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: inc/php/page.php:241
|
370 |
#, php-format
|
371 |
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."
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: inc/php/page.php:255
|
375 |
msgid "Support Us"
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: inc/php/page.php:263 inc/php/settings.php:61 inc/php/sidebar.php:54
|
379 |
msgid "Donate with PayPal"
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: inc/php/page.php:268
|
383 |
#, php-format
|
384 |
msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: inc/php/page.php:276
|
388 |
msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: inc/php/page.php:277
|
392 |
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: inc/php/page.php:278
|
396 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: inc/php/page.php:279
|
400 |
msgid "Thank you for your support!"
|
401 |
msgstr ""
|
402 |
|
my-custom-functions.php
CHANGED
@@ -5,12 +5,12 @@
|
|
5 |
* Description: Easily and safely add your custom PHP code to your WordPress website, directly out of the 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/
|
12 |
*
|
13 |
-
* Copyright 2014-
|
14 |
*
|
15 |
* This plugin is free software: you can redistribute it and/or modify
|
16 |
* it under the terms of the GNU General Public License as published by
|
5 |
* Description: Easily and safely add your custom PHP code to your WordPress website, directly out of the 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.32
|
9 |
* License: GPL3
|
10 |
* Text Domain: my-custom-functions
|
11 |
* Domain Path: /languages/
|
12 |
*
|
13 |
+
* Copyright 2014-2019 Space X-Chimp ( website : https://www.spacexchimp.com )
|
14 |
*
|
15 |
* This plugin is free software: you can redistribute it and/or modify
|
16 |
* it under the terms of the GNU General Public License as published by
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: Arthur Gareginyan
|
|
3 |
Tags: inject code, inject function, inject snippet, inject php, insert code, insert function, insert snippet, insert php, execute code, execute function, execute snippet, execute php, inject custom code, inject custom function, inject custom snippet, inject custom php, insert custom code, insert custom function, insert custom snippet, insert custom php, execute custom code, execute custom function, execute custom snippet, execute custom php, code, function, snippet, php, functionality plugin
|
4 |
Donate link: https://www.spacexchimp.com/donate.html
|
5 |
Requires at least: 3.9
|
6 |
-
Tested up to:
|
7 |
-
Stable tag: 4.
|
8 |
License: GPL3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -144,14 +144,6 @@ add_action( 'wp_head', 'my_custom_html_code' );`
|
|
144 |
= Q. How much of PHP code (characters) I can enter in the code editor? =
|
145 |
A. We don't limit the number of characters.
|
146 |
|
147 |
-
= Q. On the plugin settings page, an error message appears. What could be wrong? =
|
148 |
-
A. Here are a few of the most likely causes of the error message:
|
149 |
-
|
150 |
-
1. You make a syntax error in the code that you have entered. Check the syntax of your code and try again.
|
151 |
-
2. You entered two functions with the same name. Use a unique names for your functions.
|
152 |
-
3. You have entered function with a name that is already occupied by another function. Use a unique name for your function.
|
153 |
-
4. You are trying to overwrite an existing function (of WordPress, theme, or plugin). Instead, use filters and hooks.
|
154 |
-
|
155 |
= Q. Does this plugin requires any modification of the theme? =
|
156 |
A. Absolutely not. This plugin is configurable entirely from the plugin settings page that you can find in the Admin Area of your WordPress website.
|
157 |
|
@@ -173,6 +165,21 @@ A. For now, this plugin does not have an option to apply the custom PHP code onl
|
|
173 |
}
|
174 |
my_custom_php_code();`
|
175 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
176 |
= Q. It's not working. What could be wrong? =
|
177 |
A. As with every plugin, it's possible that things don't work. The most common reason for this is a web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load. This is called the browser's cache. Clearing your browser's cache may solve the problem.
|
178 |
|
@@ -243,6 +250,14 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
243 |
|
244 |
== Changelog ==
|
245 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
246 |
= 4.31 =
|
247 |
* Improvement: Design of the plugin settings page is improved.
|
248 |
|
3 |
Tags: inject code, inject function, inject snippet, inject php, insert code, insert function, insert snippet, insert php, execute code, execute function, execute snippet, execute php, inject custom code, inject custom function, inject custom snippet, inject custom php, insert custom code, insert custom function, insert custom snippet, insert custom php, execute custom code, execute custom function, execute custom snippet, execute custom php, code, function, snippet, php, functionality plugin
|
4 |
Donate link: https://www.spacexchimp.com/donate.html
|
5 |
Requires at least: 3.9
|
6 |
+
Tested up to: 5.0
|
7 |
+
Stable tag: 4.32
|
8 |
License: GPL3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
144 |
= Q. How much of PHP code (characters) I can enter in the code editor? =
|
145 |
A. We don't limit the number of characters.
|
146 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
147 |
= Q. Does this plugin requires any modification of the theme? =
|
148 |
A. Absolutely not. This plugin is configurable entirely from the plugin settings page that you can find in the Admin Area of your WordPress website.
|
149 |
|
165 |
}
|
166 |
my_custom_php_code();`
|
167 |
|
168 |
+
= Q. On the plugin settings page, an error message appears. What could be wrong? =
|
169 |
+
A. Here are a few of the most likely causes of the error message:
|
170 |
+
|
171 |
+
1. You make a syntax error in the code that you have entered. Check the syntax of your code and try again.
|
172 |
+
2. You entered two functions with the same name. Use a unique names for your functions.
|
173 |
+
3. You have entered function with a name that is already occupied by another function. Use a unique name for your function.
|
174 |
+
4. You are trying to overwrite an existing function (of WordPress, theme, or plugin). Instead, use filters and hooks.
|
175 |
+
|
176 |
+
= Q. My custom PHP code is not working. What could be wrong? =
|
177 |
+
A. It happens that your custom PHP code that you insert on the plugin page does not work, even if an error message does not appear. Here are a few of the most likely causes of the issue:
|
178 |
+
|
179 |
+
1. You have a typo during the insertion of your custom PHP code.
|
180 |
+
2. Your custom PHP code has a syntax error.
|
181 |
+
3. Your custom PHP code is incorrect and may not work.
|
182 |
+
|
183 |
= Q. It's not working. What could be wrong? =
|
184 |
A. As with every plugin, it's possible that things don't work. The most common reason for this is a web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load. This is called the browser's cache. Clearing your browser's cache may solve the problem.
|
185 |
|
250 |
|
251 |
== Changelog ==
|
252 |
|
253 |
+
= 4.32 =
|
254 |
+
* Content of the "Usage" section updated.
|
255 |
+
* Content of the "FAQ" section updated.
|
256 |
+
* Code formatting in the "admin.js" file improved.
|
257 |
+
* Code commenting improved.
|
258 |
+
* The copyright date updated.
|
259 |
+
* Translation files are updated.
|
260 |
+
|
261 |
= 4.31 =
|
262 |
* Improvement: Design of the plugin settings page is improved.
|
263 |
|