My Custom Functions - Version 4.33

Version Description

  • The readme "Tested up to:" value changed to 5.1 after full testing process and ensuring compatibility.
  • Content of the "F.A.Q." section updated.
  • Some texts are corrected or replaced with new ones.
  • All translation files are updated.
  • Code formatting improved.
  • Code commenting improved.
  • The function 'duplicates' is renamed to "preparation_duplicates".
  • Added CSS class ".custom-list" for displaying a custom list, which is used on the plugin settings page.
  • The human.txt file updated.
Download this release

Release Info

Developer Arthur Gareginyan
Plugin Icon 128x128 My Custom Functions
Version 4.33
Comparing to
See all releases

Code changes from version 4.32 to 4.33

humans.txt CHANGED
@@ -19,12 +19,14 @@
19
 
20
  Name: Arthur Gareginyan
21
  Title: Founder and CTO
22
- Site: www.arthurgareginyan.com
23
  Instagram: arthur_gareginyan
24
 
25
 
26
  /* THANKS */
27
-
 
 
 
28
 
29
  /* META */
30
  Last update: 2018/04/14
19
 
20
  Name: Arthur Gareginyan
21
  Title: Founder and CTO
 
22
  Instagram: arthur_gareginyan
23
 
24
 
25
  /* THANKS */
26
+ Isabella M.
27
+ Bożena L.
28
+ Thomas T.
29
+ Monica K.
30
 
31
  /* META */
32
  Last update: 2018/04/14
inc/css/admin.css CHANGED
@@ -441,6 +441,33 @@ p {
441
  overflow: hidden;
442
  }
443
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
444
  /* Custom List Numbers
445
  -------------------------------------------------------------- */
446
  .custom-counter {
441
  overflow: hidden;
442
  }
443
 
444
+ /* Custom List
445
+ -------------------------------------------------------------- */
446
+ .custom-list {
447
+ margin-top: 15px;
448
+ margin-left: 50px;
449
+ margin-bottom: 30px;
450
+ list-style-type: none;
451
+ }
452
+ .custom-list li {
453
+ counter-increment: step-counter;
454
+ margin-bottom: 15px;
455
+ font-family: Verdana, Geneva, sans-serif;
456
+ }
457
+ .custom-list li::before {
458
+ content: '+';
459
+ margin-left: -30px;
460
+ margin-right: 8px;
461
+ padding: 4px 7px;
462
+ font-size: 90%;
463
+ font-weight: bold;
464
+ background-color: #00c8c8;
465
+ color: white;
466
+ -webkit-border-radius: 50%;
467
+ -moz-border-radius: 50%;
468
+ border-radius: 50%;
469
+ }
470
+
471
  /* Custom List Numbers
472
  -------------------------------------------------------------- */
473
  .custom-counter {
inc/php/functional.php CHANGED
@@ -39,9 +39,9 @@ function spacexchimp_p001_prepare() {
39
  }
40
 
41
  /**
42
- * Check the custom code for duplicate names of functions
43
  */
44
- function spacexchimp_p001_duplicates( $data ) {
45
 
46
  // Find names of user entered snippets and check for duplicates
47
  preg_match_all('/function[\s\n]+(\S+)[\s\n]*\(/i', $data, $user_func_names);
@@ -85,7 +85,7 @@ function spacexchimp_p001_exec() {
85
  }
86
 
87
  // If the duplicates snippets finded...
88
- $duplicates = spacexchimp_p001_duplicates( $data );
89
  if ( $duplicates != 0 ) {
90
  return; // EXIT
91
  }
@@ -100,6 +100,6 @@ function spacexchimp_p001_exec() {
100
  }
101
 
102
  /**
103
- * Execute the custom code
104
  */
105
  spacexchimp_p001_exec();
39
  }
40
 
41
  /**
42
+ * Preparation of the custom code: Check the custom code for duplicate names of functions
43
  */
44
+ function spacexchimp_p001_preparation_duplicates( $data ) {
45
 
46
  // Find names of user entered snippets and check for duplicates
47
  preg_match_all('/function[\s\n]+(\S+)[\s\n]*\(/i', $data, $user_func_names);
85
  }
86
 
87
  // If the duplicates snippets finded...
88
+ $duplicates = spacexchimp_p001_preparation_duplicates( $data );
89
  if ( $duplicates != 0 ) {
90
  return; // EXIT
91
  }
100
  }
101
 
102
  /**
103
+ * Inject the custom code into the website's backend and frontend
104
  */
105
  spacexchimp_p001_exec();
inc/php/messages.php CHANGED
@@ -23,12 +23,18 @@ function spacexchimp_p001_hello_message() {
23
  <div class="modal-body">
24
  <img src="<?php echo SPACEXCHIMP_P001_URL . 'inc/img/spacexchimp-logo.png'; ?>">
25
  <button type="button" class="close" data-dismiss="modal">&times;</button>
26
- <p><?php _e( 'Hello. We are the team of Space X-Chimp.', SPACEXCHIMP_P001_TEXT ); ?></p>
27
- <p><?php printf(
28
- __( 'Thank you for installing our plugin! We hope you will love it! %s', SPACEXCHIMP_P001_TEXT ),
29
- '&#x1F603;'
30
- );
31
- ?></p>
 
 
 
 
 
 
32
  </div>
33
  </div>
34
  </div>
@@ -88,7 +94,10 @@ function spacexchimp_p001_successfull_message() {
88
  if ( isset( $_GET['settings-updated'] ) ) {
89
  ?>
90
  <div id="message" class="updated">
91
- <p><i class="fa fa-check" aria-hidden="true"></i> <?php _e( 'Custom code updated successfully.', SPACEXCHIMP_P001_TEXT ); ?></p>
 
 
 
92
  </div>
93
  <?php
94
  }
23
  <div class="modal-body">
24
  <img src="<?php echo SPACEXCHIMP_P001_URL . 'inc/img/spacexchimp-logo.png'; ?>">
25
  <button type="button" class="close" data-dismiss="modal">&times;</button>
26
+ <p>
27
+ <?php _e( 'Hello!', SPACEXCHIMP_P001_TEXT ); ?>
28
+ <?php _e( 'We are the team of Space X-Chimp.', SPACEXCHIMP_P001_TEXT ); ?>
29
+ </p>
30
+ <p>
31
+ <?php
32
+ printf(
33
+ __( 'Thank you for installing our plugin! We hope you will love it! %s', SPACEXCHIMP_P001_TEXT ),
34
+ '&#x1F603;'
35
+ );
36
+ ?>
37
+ </p>
38
  </div>
39
  </div>
40
  </div>
94
  if ( isset( $_GET['settings-updated'] ) ) {
95
  ?>
96
  <div id="message" class="updated">
97
+ <p>
98
+ <i class="fa fa-check" aria-hidden="true"></i>
99
+ <?php _e( 'Custom code updated successfully.', SPACEXCHIMP_P001_TEXT ); ?>
100
+ </p>
101
  </div>
102
  <?php
103
  }
inc/php/page.php CHANGED
@@ -28,11 +28,12 @@ function spacexchimp_p001_render_submenu_page() {
28
  <h2 class="sxc-header">
29
  <?php echo $name; ?>
30
  <span>
31
- <?php printf(
32
- __( 'by %s Space X-Chimp %s', $text ),
33
- '<a href="https://www.spacexchimp.com" target="_blank">',
34
- '</a>'
35
- );
 
36
  ?>
37
  </span>
38
  <p class="version"><?php _e( 'Version', $text ); ?> <?php echo $version; ?></p>
@@ -67,26 +68,36 @@ function spacexchimp_p001_render_submenu_page() {
67
  <p><?php _e( 'To add your custom PHP code to your website, simply follow these steps:', $text ); ?></p>
68
  <ol class="custom-counter">
69
  <li><?php _e( 'Go to the "Main" tab on this page.', $text ); ?></li>
70
- <li><?php _e( 'Place your custom PHP code in the code editor field.', $text ); ?><br><br>
71
- <p class="note"><b><?php _e( 'Note!', $text ); ?></b> <?php _e( 'Do not wrap your custom PHP code in HTML tags, such as <code>&lt;?php</code>...<code>?&gt;</code>.', $text ); ?></p>
72
- <p class="note"><b><?php _e( 'Note!', $text ); ?></b> <?php printf(
73
- __( 'Before use, please read the %s instructions %s in our Blog on what to do in case of a website crash.', $text ),
74
- '<a href="https://mycyberuniverse.com/my-custom-functions-plugin-causes-site-failure.html" target="_blank">',
75
- '</a>'
76
- );
77
- ?>
 
 
 
 
 
 
 
 
78
  </p>
79
  </li>
80
  <li><?php _e( 'Switch the toggle to the "ON" position.', $text ); ?></li>
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,7 +116,7 @@ function spacexchimp_p001_render_submenu_page() {
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">
@@ -122,25 +133,103 @@ function spacexchimp_p001_render_submenu_page() {
122
  ?>
123
  </div>
124
 
125
- <div class="question-1"><?php _e( 'Will this plugin work on my WordPress.COM website?', $text ); ?></div>
126
- <div class="answer-1"><?php _e( 'Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites.', $text ); ?></div>
127
 
128
- <div class="question-2"><?php _e( 'Can I use this plugin on my language?', $text ); ?></div>
129
- <div class="answer-2"><?php _e( 'Yes. This plugin is ready for translation and has already been translated into several languages.', $text ); ?><br><br>
130
- <?php printf(
131
- __( 'If you want to help translate this plugin then please visit the %s. You can also use the POT file, that is included and placed in the "languages" folder, in order to create a translation PO file. Just send the PO file to us at the %s and we will include this translation within the next plugin update.', $text ),
132
- '<a href="https://translate.wordpress.org/projects/wp-plugins/' . $slug . '" target="_blank">translation page</a>',
133
- '<a href="mailto:support@spacexchimp.com?subject=New translation of the ' . $name . ' plugin">support@spacexchimp.com</a>'
134
- );
135
- ?><br><br>
136
- <?php _e( 'Maybe not all existed translations are up to date. You are welcome to contribute corrections!', $text ); ?><br><br>
137
- <?php _e( 'Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!', $text ); ?></div>
 
 
138
 
139
- <div class="question-3"><?php _e( 'How does it work?', $text ); ?></div>
140
- <div class="answer-3"><?php _e( 'On the "Main" tab, place your custom PHP code in the code editor field, switch the toggle to the "ON" position and click the "Save changes" button. Enjoy the result of applying your custom PHP code. It\'s that simple!', $text ); ?></div>
 
 
 
 
 
 
 
 
 
 
 
 
 
141
 
142
- <div class="question-4"><?php _e( 'Can I use HTML/CSS/JS code integrated in PHP code?', $text ); ?></div>
143
- <div class="answer-4"><?php _e( 'Yes. But you need to do it properly, like this:', $text ); ?><br><br>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
144
  <pre><code>function my_custom_html_code() {
145
 
146
  // Print the custom HTML code
@@ -150,17 +239,38 @@ function spacexchimp_p001_render_submenu_page() {
150
  add_action( 'wp_head', 'my_custom_html_code' );</code></pre>
151
  </div>
152
 
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,75 +284,218 @@ add_action( 'wp_head', 'my_custom_html_code' );</code></pre>
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>
204
- <li><?php _e( 'Log in to Admin Area of your WordPress website.', $text ); ?></li>
205
- <li><?php _e( 'Go to the plugin settings page <code>Settings</code> &#10145; <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> &#10145; Table <code>wp_options</code> &#10145; Option <code>spacexchimp_p001_settings</code> &#10145; <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>'
244
- );
245
- ?></div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
246
 
247
  </div>
248
  </div>
@@ -257,26 +510,39 @@ my_custom_php_code();</code></pre>
257
  <span class="image-with-button pull-left">
258
  <img src="<?php echo SPACEXCHIMP_P001_URL . 'inc/img/thanks.png'; ?>" alt="Thanks!">
259
  <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="btn btn-default button-labeled">
260
- <span class="btn-label">
261
- <img src="<?php echo SPACEXCHIMP_P001_URL . 'inc/img/paypal.svg'; ?>" alt="PayPal">
262
- </span>
263
- <?php _e( 'Donate with PayPal', $text ); ?>
264
  </a>
265
  </span>
266
- <p><?php
267
- printf(
268
- __( 'Hello! My name is %s Arthur %s, I\'m the founder of %s Space X-Chimp %s, which unites a small international team of young people.', $text ),
269
- '<a href="https://www.instagram.com/arthur_gareginyan/" target="_blank">',
270
- '</a>',
271
- '<a href="https://www.spacexchimp.com" target="_blank">',
272
- '</a>'
273
- );
 
 
274
  ?>
275
  </p>
276
- <p><?php _e( 'Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too.', $text ); ?></p>
277
- <p><?php _e( 'We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy.', $text ); ?></p>
278
- <p><?php _e( 'If you appreciate our work, you can buy us a cup of coffee!', $text ); ?></p>
279
- <p><?php _e( 'Thank you for your support!', $text ); ?></p>
 
 
 
 
 
 
 
 
 
 
 
280
  </div>
281
  </div>
282
  </div>
28
  <h2 class="sxc-header">
29
  <?php echo $name; ?>
30
  <span>
31
+ <?php
32
+ printf(
33
+ __( 'by %s Space X-Chimp %s', $text ),
34
+ '<a href="https://www.spacexchimp.com" target="_blank">',
35
+ '</a>'
36
+ );
37
  ?>
38
  </span>
39
  <p class="version"><?php _e( 'Version', $text ); ?> <?php echo $version; ?></p>
68
  <p><?php _e( 'To add your custom PHP code to your website, simply follow these steps:', $text ); ?></p>
69
  <ol class="custom-counter">
70
  <li><?php _e( 'Go to the "Main" tab on this page.', $text ); ?></li>
71
+ <li>
72
+ <?php _e( 'Place your custom PHP code in the code editor field.', $text ); ?>
73
+ <br><br>
74
+ <p class="note">
75
+ <b><?php _e( 'Note!', $text ); ?></b>
76
+ <?php _e( 'Do not wrap your custom PHP code in HTML tags, such as <code>&lt;?php</code>...<code>?&gt;</code>.', $text ); ?>
77
+ </p>
78
+ <p class="note">
79
+ <b><?php _e( 'Note!', $text ); ?></b>
80
+ <?php
81
+ printf(
82
+ __( 'Before use, please read the %s instructions %s in our Blog on what to do in case of a website crash.', $text ),
83
+ '<a href="https://mycyberuniverse.com/my-custom-functions-plugin-causes-site-failure.html" target="_blank">',
84
+ '</a>'
85
+ );
86
+ ?>
87
  </p>
88
  </li>
89
  <li><?php _e( 'Switch the toggle to the "ON" position.', $text ); ?></li>
90
  <li><?php _e( 'Click the "Save changes" button.', $text ); ?></li>
91
  <li><?php _e( 'Enjoy the result of applying your custom PHP code.', $text ); ?> <?php _e( 'It\'s that simple!', $text ); ?></li>
92
  </ol>
93
+ <p class="note">
94
+ <?php
95
+ printf(
96
+ __( 'If you want more options, then %s let us know %s and we will be happy to add them.', $text ),
97
+ '<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
98
+ '</a>'
99
+ );
100
+ ?>
101
  </p>
102
  </div>
103
  </div>
116
 
117
  <div class="panel-group" id="collapse-group">
118
  <?php
119
+ $loopvalue = '23';
120
  for ( $i = 1; $i <= $loopvalue; $i++ ) {
121
  echo '<div class="panel panel-default">
122
  <div class="panel-heading">
133
  ?>
134
  </div>
135
 
136
+ <?php $i = 1; ?>
 
137
 
138
+ <div class="question-<?php echo $i; ?>">
139
+ <?php _e( 'Where can I find a documentation for this plugin?', $text ); ?>
140
+ </div>
141
+ <div class="answer-<?php echo $i; $i++ ?>">
142
+ <?php
143
+ printf(
144
+ __( 'Please visit our %s Documentation site %s to view documentation.', $text ),
145
+ '<a href="https://docs.spacexchimp.com" target="_blank">',
146
+ '</a>'
147
+ );
148
+ ?>
149
+ </div>
150
 
151
+ <div class="question-<?php echo $i; ?>">
152
+ <?php _e( 'Will this plugin work on my wordpress.COM website?', $text ); ?>
153
+ </div>
154
+ <div class="answer-<?php echo $i; $i++ ?>">
155
+ <?php _e( 'Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites.', $text ); ?>
156
+ <br><br>
157
+ <?php _e( 'Please note that there is a difference between wordpress.COM and wordpress.ORG.', $text ); ?>
158
+ <?php _e( 'The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software.', $text ); ?>
159
+ <?php
160
+ printf(
161
+ __( 'You can learn more about the difference here: %s .', $text ),
162
+ '<a href="https://en.support.wordpress.com/com-vs-org/" target="_blank">https://en.support.wordpress.com/com-vs-org/</a>'
163
+ );
164
+ ?>
165
+ </div>
166
 
167
+ <div class="question-<?php echo $i; ?>">
168
+ <?php _e( 'Will this plugin work/compatible with the theme I use?', $text ); ?>
169
+ </div>
170
+ <div class="answer-<?php echo $i; $i++ ?>">
171
+ <?php _e( 'This plugin is compatible with most themes.', $text ); ?>
172
+ <?php _e( 'But, unfortunately, we cannot check it with all third-party themes (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party theme.', $text ); ?>
173
+ <?php _e( 'We constantly check this plugin for compatibility with third-party themes.', $text ); ?>
174
+ <?php _e( 'If we find that this plugin is incompatible with a third-party theme, and if we can fix it on our part, we release an update of our plugin to fix the problem.', $text ); ?>
175
+ <br><br>
176
+ <?php _e( 'If you find a conflict between our plugin and a third-party theme, please let us know and we will definitely release an update of our plugin to fix the problem.', $text ); ?>
177
+ </div>
178
+
179
+ <div class="question-<?php echo $i; ?>">
180
+ <?php _e( 'Will this plugin work/compatible with other plugins that I use?', $text ); ?>
181
+ </div>
182
+ <div class="answer-<?php echo $i; $i++ ?>">
183
+ <?php _e( 'This plugin is compatible with most plugins.', $text ); ?>
184
+ <?php _e( 'But, unfortunately, we cannot check it with all third-party plugins (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party plugin.', $text ); ?>
185
+ <?php _e( 'We constantly check this plugin for compatibility with third-party plugins.', $text ); ?>
186
+ <?php _e( 'If we find that this plugin is incompatible with a third-party plugin, and if we can fix it on our part, we release an update of our plugin to fix the problem.', $text ); ?>
187
+ <br><br>
188
+ <?php _e( 'If you find a conflict between our plugin and a third-party plugin, please let us know and we will definitely release an update of our plugin to fix the problem.', $text ); ?>
189
+ </div>
190
+
191
+ <div class="question-<?php echo $i; ?>">
192
+ <?php _e( 'Can I use this plugin on my language?', $text ); ?>
193
+ </div>
194
+ <div class="answer-<?php echo $i; $i++ ?>">
195
+ <?php _e( 'Yes.', $text ); ?>
196
+ <?php _e( 'This plugin is ready for translation and has already been translated into several languages.', $text ); ?>
197
+ <?php _e( 'But If your language is not available then you can make one.', $text ); ?>
198
+ <?php _e( 'It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections.', $text ); ?>
199
+ <?php _e( 'Many of plugin users would be delighted if you share your translation with the community.', $text ); ?>
200
+ <?php _e( 'Thanks for your contribution!', $text ); ?>
201
+ <br><br>
202
+ <?php
203
+ printf(
204
+ __( 'If you want to help translate this plugin, please visit the %s.', $text ),
205
+ '<a href="https://translate.wordpress.org/projects/wp-plugins/' . $slug . '" target="_blank">translation page</a>'
206
+ );
207
+ ?>
208
+ <?php _e( 'You can also use the POT file that is included and placed in the "languages" folder to create a translation PO file.', $text ); ?>
209
+ <?php
210
+ printf(
211
+ __( 'Just send the PO file to us ( %s ) and we will include this translation within the next plugin update.', $text ),
212
+ '<a href="mailto:support@spacexchimp.com?subject=New translation of the ' . $name . ' plugin">support@spacexchimp.com</a>'
213
+ );
214
+ ?>
215
+ </div>
216
+
217
+ <div class="question-<?php echo $i; ?>">
218
+ <?php _e( 'How does it work?', $text ); ?>
219
+ </div>
220
+ <div class="answer-<?php echo $i; $i++ ?>">
221
+ <?php _e( 'On the "Main" tab, place your custom PHP code in the code editor field, switch the toggle to the "ON" position and click the "Save changes" button.', $text ); ?>
222
+ <?php _e( 'Enjoy the result of applying your custom PHP code.', $text ); ?>
223
+ <?php _e( 'It\'s that simple!', $text ); ?>
224
+ </div>
225
+
226
+ <div class="question-<?php echo $i; ?>">
227
+ <?php _e( 'Can I use HTML/CSS/JS code integrated in PHP code?', $text ); ?>
228
+ </div>
229
+ <div class="answer-<?php echo $i; $i++ ?>">
230
+ <?php _e( 'Yes.', $text ); ?>
231
+ <?php _e( 'But you need to do it properly, like this:', $text ); ?>
232
+ <br><br>
233
  <pre><code>function my_custom_html_code() {
234
 
235
  // Print the custom HTML code
239
  add_action( 'wp_head', 'my_custom_html_code' );</code></pre>
240
  </div>
241
 
242
+ <div class="question-<?php echo $i; ?>">
243
+ <?php _e( 'How much of PHP code (characters) I can enter in the code editor?', $text ); ?>
244
+ </div>
245
+ <div class="answer-<?php echo $i; $i++ ?>">
246
+ <?php _e( 'We don\'t limit the number of characters.', $text ); ?>
247
+ </div>
248
 
249
+ <div class="question-<?php echo $i; ?>">
250
+ <?php _e( 'Does this plugin requires any modification of the theme?', $text ); ?>
251
+ </div>
252
+ <div class="answer-<?php echo $i; $i++ ?>">
253
+ <?php _e( 'Absolutely not.', $text ); ?>
254
+ <?php _e( 'This plugin is configurable entirely from the plugin settings page.', $text ); ?>
255
+ </div>
256
 
257
+ <div class="question-<?php echo $i; ?>">
258
+ <?php _e( 'Does this require any knowledge of HTML or CSS?', $text ); ?>
259
+ </div>
260
+ <div class="answer-<?php echo $i; $i++ ?>">
261
+ <?php _e( 'Absolutely not.', $text ); ?>
262
+ <?php _e( 'This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page.', $text ); ?>
263
+ </div>
264
 
265
+ <div class="question-<?php echo $i; ?>">
266
+ <?php _e( 'Can I add my custom PHP code to a specific page of my website?', $text ); ?>
267
+ </div>
268
+ <div class="answer-<?php echo $i; $i++ ?>">
269
+ <?php _e( 'For now, this plugin does not have an option to apply the custom PHP code only on specific pages.', $text ); ?>
270
+ <?php _e( 'We plan to add this feature soon.', $text ); ?>
271
+ <?php _e( '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.', $text ); ?>
272
+ <?php _e( 'You need something like this:', $text ); ?>
273
+ <br><br>
274
  <pre><code>function my_custom_php_code() {
275
 
276
  // Stop the function if this is not the Home page of website
284
  my_custom_php_code();</code></pre>
285
  </div>
286
 
287
+ <div class="question-<?php echo $i; ?> question-red">
288
+ <?php _e( 'It\'s not working.', $text ); ?>
289
+ <?php _e( 'What could be wrong?', $text ); ?>
290
+ </div>
291
+ <div class="answer-<?php echo $i; $i++ ?>">
292
+ <?php _e( 'As with every plugin, it\'s possible that things don\'t work.', $text ); ?>
293
+ <?php _e( 'It\'s impossible to tell what could be wrong exactly.', $text ); ?>
294
+ <?php _e( 'The most common reason for this is a web browser\'s cache.', $text ); ?>
295
+ <?php _e( 'Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load.', $text ); ?>
296
+ <?php _e( 'This is called the browser\'s cache.', $text ); ?>
297
+ <?php _e( 'Clearing your browser\'s cache may solve the problem.', $text ); ?>
298
+ <br><br>
299
+ <?php _e( '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.', $text ); ?>
300
+ <?php _e( 'Please include as much information as possible, including a link to your website where the problem can be seen.', $text ); ?>
301
+ </div>
302
+
303
+ <div class="question-<?php echo $i; ?> question-red">
304
+ <?php _e( 'On the plugin settings page, an error message appears.', $text ); ?>
305
+ <?php _e( 'What could be wrong?', $text ); ?>
306
+ </div>
307
+ <div class="answer-<?php echo $i; $i++ ?>">
308
+ <?php _e( 'Here are a few of the most likely causes of the error message:', $text ); ?>
309
+ <ol class="custom-list">
310
+ <li>
311
+ <?php _e( 'You make a syntax error in the code that you have entered.', $text ); ?>
312
+ <?php _e( 'Check the syntax of your code and try again.', $text ); ?>
313
+ </li>
314
+ <li>
315
+ <?php _e( 'You entered two functions with the same name.', $text ); ?>
316
+ <?php _e( 'Use a unique names for your functions.', $text ); ?>
317
+ </li>
318
+ <li>
319
+ <?php _e( 'You have entered function with a name that is already occupied by another function.', $text ); ?>
320
+ <?php _e( 'Use a unique name for your function.', $text ); ?>
321
+ </li>
322
+ <li>
323
+ <?php _e( 'You are trying to overwrite an existing function (of WordPress, theme, or plugin).', $text ); ?>
324
+ <?php _e( 'Instead, use filters and hooks.', $text ); ?>
325
+ </li>
326
+ </ol>
327
+ </div>
328
+
329
+ <div class="question-<?php echo $i; ?> question-red">
330
+ <?php _e( 'My custom PHP code is not working.', $text ); ?>
331
+ <?php _e( 'What could be wrong?', $text ); ?>
332
+ </div>
333
+ <div class="answer-<?php echo $i; $i++ ?>">
334
+ <?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.', $text ); ?>
335
+ <?php _e( 'Here are a few of the most likely causes of the issue:', $text ); ?>
336
+ <ol class="custom-list">
337
+ <li><?php _e( 'You have a typo during the insertion of your custom PHP code.', $text ); ?></li>
338
+ <li><?php _e( 'Your custom PHP code has a syntax error.', $text ); ?></li>
339
+ <li><?php _e( 'Your custom PHP code is incorrect and may not work.', $text ); ?></li>
340
+ </ol>
341
+ </div>
342
+
343
+ <div class="question-<?php echo $i; ?> question-red">
344
+ <?php _e( 'What to do if this plugin crashed the website?', $text ); ?>
345
+ </div>
346
+ <div class="answer-<?php echo $i; $i++ ?>">
347
+ <?php _e( 'This plugin has a built-in functions for checking the custom code for syntax errors, duplicate functions names, and etc.', $text ); ?>
348
+ <?php _e( 'But plugin is not perfect, so there are times when the entered custom code causes the error and white screen (WSOD).', $text ); ?>
349
+ <?php _e( 'This is due to the fact that your custom code has a syntax error that this plugin could not detect.', $text ); ?>
350
+ <?php _e( 'When this happens with you, please perform the following steps.', $text ); ?>
351
+ <ol class="custom-counter">
352
+ <li>
353
+ <?php _e( 'Access your server via FTP or SFTP.', $text ); ?>
354
+ <?php _e( 'If you aren\'t sure how usually your web hosting provider will have instructions somewhere on their website.', $text ); ?>
355
+ </li>
356
+ <li>
357
+ <?php _e( 'Browse to the directory <code>wp-content/plugins/my-custom-functions/</code>.', $text ); ?>
358
+ <?php _e( 'Please contact your web hosting company to get help if you can\'t find this folder.', $text ); ?>
359
+ </li>
360
+ <li>
361
+ <?php _e( 'Rename the file <code>START</code> to <code>STOP</code>.', $text ); ?>
362
+ <?php _e( 'This will stop the execution of your custom code.', $text ); ?>
363
+ </li>
364
+ <li><?php _e( 'Log in to Admin Area of your WordPress website.', $text ); ?></li>
365
+ <li><?php _e( 'Go to the plugin settings page <code>Settings</code> &#10145; <code>PHP Inserter</code>.', $text ); ?></li>
366
+ <li><?php _e( 'Edit/fix your custom PHP code that you entered before the crash.', $text ); ?></li>
367
+ <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>
368
+ </ol>
369
+ <?php _e( 'This plugin stored you entered code in the database of your website.', $text ); ?>
370
+ <?php _e( 'For getting your code, you also can go to the <code>Database</code> &#10145; Table <code>wp_options</code> &#10145; Option <code>spacexchimp_p001_settings</code> &#10145; <code>option_value</code>.', $text ); ?>
371
+ <br><br>
372
+ <?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 ); ?>
373
+ </div>
374
+
375
+ <div class="question-<?php echo $i; ?> question-red">
376
+ <?php _e( 'The last WordPress update is preventing me from editing my website that is using this plugin.', $text ); ?>
377
+ <?php _e( 'Why is this?', $text ); ?>
378
+ </div>
379
+ <div class="answer-<?php echo $i; $i++ ?>">
380
+ <?php _e( 'This plugin can not cause such problem.', $text ); ?>
381
+ <?php _e( 'More likely, the problem are related to the settings of the website.', $text ); ?>
382
+ <?php _e( '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.', $text ); ?>
383
+ <?php _e( 'Also please try to re-login to the website, this too can help.', $text ); ?>
384
+ </div>
385
+
386
+ <div class="question-<?php echo $i; ?> question-red">
387
+ <?php _e( 'Where to report bug if found?', $text ); ?>
388
+ </div>
389
+ <div class="answer-<?php echo $i; $i++ ?>">
390
+ <?php _e( 'Bug reports are very welcome!', $text ); ?>
391
+ <?php
392
+ printf(
393
+ __( 'Please visit our %s contact page %s and report.', $text ),
394
+ '<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
395
+ '</a>'
396
+ );
397
+ ?>
398
+ <?php _e( 'Please do not forget to specify the name of the plugin.', $text ); ?>
399
+ <?php _e( 'Thank you!', $text ); ?>
400
+ <br><br>
401
+ <?php _e( 'Please include as much information as possible, including a link to your website where the problem can be seen.', $text ); ?>
402
+ <?php _e( 'Describe in more detail what exactly you are seeing.', $text ); ?>
403
+ <?php _e( 'Here are some examples:', $text ); ?>
404
+ <br><br>
405
+ <ul class="custom-list">
406
+ <li><?php _e( 'Elements of the plugin settings page are not working.', $text ); ?></li>
407
+ <li><?php _e( 'An error message is displayed on the plugin settings page.', $text ); ?></li>
408
+ <li><?php _e( 'An error message is displayed on the front end of website.', $text ); ?></li>
409
+ <li><?php _e( 'An error message is displayed on the back end of website.', $text ); ?></li>
410
+ <li><?php _e( 'Custom code is inserted on the plugin settings page, but it is not applied on the website.', $text ); ?></li>
411
+ <li><?php _e( 'Website is crashed.', $text ); ?></li>
412
+ </ul>
413
+ </div>
414
+
415
+ <div class="question-<?php echo $i; ?>">
416
+ <?php _e( 'Where to share any ideas or suggestions to make the plugin better?', $text ); ?>
417
+ </div>
418
+ <div class="answer-<?php echo $i; $i++ ?>">
419
+ <?php _e( 'Any suggestions are very welcome!', $text ); ?>
420
+ <?php
421
+ printf(
422
+ __( 'Please visit our %s contact page %s.', $text ),
423
+ '<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
424
+ '</a>'
425
+ );
426
+ ?>
427
+ <?php _e( 'Please do not forget to specify the name of the plugin.', $text ); ?>
428
+ <?php _e( 'Thank you!', $text ); ?>
429
+ </div>
430
+
431
+ <div class="question-<?php echo $i; ?>">
432
+ <?php _e( 'I love this plugin!', $text ); ?>
433
+ <?php _e( 'Can I help somehow?', $text ); ?>
434
+ </div>
435
+ <div class="answer-<?php echo $i; $i++ ?>">
436
+ <?php _e( 'Yes, any contributions are very welcome!', $text ); ?>
437
+ <?php
438
+ printf(
439
+ __( 'Please visit our %s Support Us %s page.', $text ),
440
+ '<a href="https://www.spacexchimp.com/donate.html" target="_blank">',
441
+ '</a>'
442
+ );
443
+ ?>
444
+ <?php _e( 'Thank you!', $text ); ?>
445
+ </div>
446
+
447
+ <div class="question-<?php echo $i; ?>">
448
+ <?php _e( 'Where can I find information about your licenses, payment process and refunds?', $text ); ?>
449
+ </div>
450
+ <div class="answer-<?php echo $i; $i++ ?>">
451
+ <?php
452
+ printf(
453
+ __( 'Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page.', $text ),
454
+ '<a href="https://www.spacexchimp.com/faq.html" target="_blank">',
455
+ '</a>'
456
+ );
457
+ ?>
458
+ </div>
459
+
460
+ <div class="question-<?php echo $i; ?>">
461
+ <?php _e( 'Where can I find information about your customer support?', $text ); ?>
462
+ </div>
463
+ <div class="answer-<?php echo $i; $i++ ?>">
464
+ <?php
465
+ printf(
466
+ __( 'Answers to common questions about our customer support can be found on our %s Common Questions %s page.', $text ),
467
+ '<a href="https://www.spacexchimp.com/faq.html" target="_blank">',
468
+ '</a>'
469
+ );
470
+ ?>
471
+ </div>
472
+
473
+ <div class="question-<?php echo $i; ?>">
474
+ <?php _e( 'Where can I find information about your affiliate program?', $text ); ?>
475
+ </div>
476
+ <div class="answer-<?php echo $i; $i++ ?>">
477
+ <?php
478
+ printf(
479
+ __( 'Answers to common questions about our affiliate program can be found on our %s Common Questions %s page.', $text ),
480
+ '<a href="https://www.spacexchimp.com/faq.html" target="_blank">',
481
+ '</a>'
482
+ );
483
+ ?>
484
+ </div>
485
+
486
+ <div class="question-<?php echo $i; ?>">
487
+ <?php _e( 'My question wasn\'t answered here.', $text ); ?>
488
+ </div>
489
+ <div class="answer-<?php echo $i; $i++ ?>">
490
+ <?php
491
+ printf(
492
+ __( 'You can ask your question on %s this page %s.', $text ),
493
+ '<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
494
+ '</a>'
495
+ );
496
+ ?>
497
+ <?php _e( '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 ); ?>
498
+ </div>
499
 
500
  </div>
501
  </div>
510
  <span class="image-with-button pull-left">
511
  <img src="<?php echo SPACEXCHIMP_P001_URL . 'inc/img/thanks.png'; ?>" alt="Thanks!">
512
  <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="btn btn-default button-labeled">
513
+ <span class="btn-label">
514
+ <img src="<?php echo SPACEXCHIMP_P001_URL . 'inc/img/paypal.svg'; ?>" alt="PayPal">
515
+ </span>
516
+ <?php _e( 'Donate with PayPal', $text ); ?>
517
  </a>
518
  </span>
519
+ <p>
520
+ <?php _e( 'Hello!', $text ); ?>
521
+ <?php
522
+ printf(
523
+ __( 'My name is %s Arthur %s, I\'m the founder of %s Space X-Chimp %s, which unites a small international team of young people.', $text ),
524
+ '<a href="https://www.instagram.com/arthur_gareginyan/" target="_blank">',
525
+ '</a>',
526
+ '<a href="https://www.spacexchimp.com" target="_blank">',
527
+ '</a>'
528
+ );
529
  ?>
530
  </p>
531
+ <p>
532
+ <?php _e( 'Our intention is to create projects that will make this world a better place.', $text ); ?>
533
+ <?php _e( 'Our motto is - «Follow your dreams and don’t give up».', $text ); ?>
534
+ <?php _e( 'We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too.', $text ); ?>
535
+ </p>
536
+ <p>
537
+ <?php _e( 'We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them.', $text ); ?>
538
+ <?php _e( 'But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy.', $text ); ?>
539
+ </p>
540
+ <p>
541
+ <?php _e( 'If you appreciate our work, you can buy us a cup of coffee!', $text ); ?>
542
+ </p>
543
+ <p>
544
+ <?php _e( 'Thank you for your support!', $text ); ?>
545
+ </p>
546
  </div>
547
  </div>
548
  </div>
inc/php/settings.php CHANGED
@@ -55,11 +55,11 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
55
  <div class="inside">
56
  <p><?php _e( 'Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy.', $text ); ?></p>
57
  <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="btn btn-default button-labeled">
58
- <span class="btn-label">
59
- <img src="<?php echo SPACEXCHIMP_P001_URL . 'inc/img/paypal.svg'; ?>" alt="PayPal">
60
- </span>
61
- <?php _e( 'Donate with PayPal', $text ); ?>
62
- </a>
63
  <p><?php _e( 'Thanks for your support!', $text ); ?></p>
64
  </div>
65
  </div>
55
  <div class="inside">
56
  <p><?php _e( 'Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy.', $text ); ?></p>
57
  <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="btn btn-default button-labeled">
58
+ <span class="btn-label">
59
+ <img src="<?php echo SPACEXCHIMP_P001_URL . 'inc/img/paypal.svg'; ?>" alt="PayPal">
60
+ </span>
61
+ <?php _e( 'Donate with PayPal', $text ); ?>
62
+ </a>
63
  <p><?php _e( 'Thanks for your support!', $text ); ?></p>
64
  </div>
65
  </div>
inc/php/sidebar.php CHANGED
@@ -32,7 +32,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
32
  <div class="postbox about">
33
  <h3 class="title"><?php _e( 'About', $text ); ?></h3>
34
  <div class="inside">
35
- <p><?php _e( 'This plugin allows you to 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.', $text ); ?></p>
36
  </div>
37
  </div>
38
 
32
  <div class="postbox about">
33
  <h3 class="title"><?php _e( 'About', $text ); ?></h3>
34
  <div class="inside">
35
+ <p><?php _e( 'This plugin gives you the ability to 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.', $text ); ?></p>
36
  </div>
37
  </div>
38
 
languages/Readme.txt CHANGED
@@ -2,12 +2,6 @@
2
  CONTRIBUTING YOUR TRANSLATION
3
 
4
 
5
- This plugin is ready for translation and has already been translated into several languages.
6
 
7
- If you want to help translate this plugin then please visit the [translation page](https://translate.wordpress.org/projects/wp-plugins/my-custom-functions).
8
-
9
- You can also use the POT file, that is included and placed in the "languages" folder, in order to create a translation PO file. Just send the PO file to us (https://www.spacexchimp.com/contact.html) and we will include this translation within the next plugin update.
10
-
11
- Maybe not all existed translations are up to date. You are welcome to contribute corrections!
12
-
13
- Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!
2
  CONTRIBUTING YOUR TRANSLATION
3
 
4
 
5
+ This plugin is ready for translation and has already been translated into several languages. But If your language is not available then you can make one. It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections. Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!
6
 
7
+ If you want to help translate this plugin, please visit the [translation page](https://translate.wordpress.org/projects/wp-plugins/my-custom-functions). You can also use the POT file that is included and placed in the "languages" folder to create a translation PO file. Just send the PO file to us (https://www.spacexchimp.com/contact.html) and we will include this translation within the next plugin update.
 
 
 
 
 
 
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: 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"
@@ -36,370 +36,671 @@ msgstr "Spende"
36
  msgid "PHP Inserter"
37
  msgstr "PHP Inserter"
38
 
39
- #: inc/php/messages.php:26
40
- msgid "Hello. We are the team of Space X-Chimp."
41
- msgstr "Hallo! Wir sind das Team von Space X-Chimp."
42
 
43
  #: inc/php/messages.php:28
 
 
 
 
44
  #, php-format
45
  msgid "Thank you for installing our plugin! We hope you will love it! %s"
46
  msgstr "Danke, dass Sie mein Plugin installiert haben. Ich hoffe, sie werden es mögen. %s"
47
 
48
- #: inc/php/messages.php:68
49
  msgid "You have installed an old version of this plugin."
50
  msgstr "Sie haben eine veraltete Version dieses Plugin installiert."
51
 
52
- #: inc/php/messages.php:69
53
  msgid "Please update the plugin to the latest version, and all will be fine."
54
  msgstr "Bitte installieren Sie die aktuelle Version des Plugins und alles wir gut."
55
 
56
- #: inc/php/messages.php:91
57
  msgid "Custom code updated successfully."
58
  msgstr ""
59
 
60
- #: inc/php/messages.php:110
61
  msgid "Sorry, but your code causes a \"Fatal error\", so it is not applied!"
62
  msgstr ""
63
 
64
- #: inc/php/messages.php:111
65
  msgid "Please, check the code and try again."
66
  msgstr ""
67
 
68
- #: inc/php/page.php:32
69
  #, php-format
70
  msgid "by %s Space X-Chimp %s"
71
  msgstr "by %s Space X-Chimp %s"
72
 
73
- #: inc/php/page.php:38
74
  msgid "Version"
75
  msgstr "Version"
76
 
77
- #: inc/php/page.php:45
78
  msgid "Main"
79
  msgstr ""
80
 
81
- #: inc/php/page.php:46
82
  msgid "Usage"
83
  msgstr "Verwendung"
84
 
85
- #: inc/php/page.php:47
86
  msgid "F.A.Q."
87
  msgstr "F.A.Q."
88
 
89
- #: inc/php/page.php:48 inc/php/settings.php:54 inc/php/sidebar.php:47
90
  msgid "Support"
91
- msgstr "Support"
92
 
93
- #: inc/php/page.php:49
94
  msgid "Store"
95
- msgstr "Store"
96
 
97
- #: inc/php/page.php:65
98
  msgid "Usage Instructions"
99
  msgstr "Anleitung"
100
 
101
- #: inc/php/page.php:67
102
  msgid "To add your custom PHP code to your website, simply follow these steps:"
103
  msgstr ""
104
 
105
- #: inc/php/page.php:69
106
  msgid "Go to the \"Main\" tab on this page."
107
  msgstr ""
108
 
109
- #: inc/php/page.php:70
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
 
117
- #: inc/php/page.php:71
118
  msgid "Do not wrap your custom PHP code in HTML tags, such as <code>&lt;?php</code>...<code>?&gt;</code>."
119
  msgstr ""
120
 
121
- #: inc/php/page.php:73
122
  #, php-format
123
  msgid "Before use, please read the %s instructions %s in our Blog on what to do in case of a website crash."
124
  msgstr ""
125
 
126
- #: inc/php/page.php:80
127
  msgid "Switch the toggle to the \"ON\" position."
128
  msgstr ""
129
 
130
- #: inc/php/page.php:81
131
  msgid "Click the \"Save changes\" button."
132
  msgstr "Klicken Sie den \"Änderungen speichern\" button."
133
 
134
- #: inc/php/page.php:82
135
  msgid "Enjoy the result of applying your custom PHP code."
136
  msgstr ""
137
 
138
- #: inc/php/page.php:82
139
  msgid "It's that simple!"
140
  msgstr "Es ist ganz einfach!"
141
 
142
- #: inc/php/page.php:85
143
  #, php-format
144
  msgid "If you want more options, then %s let us know %s and we will be happy to add them."
145
  msgstr "Wenn Sie mehr Optionen benötigen, %s teilen Sie uns %s dies mit und wir werden sie gerne hinzufügen."
146
 
147
- #: inc/php/page.php:99
148
  msgid "Frequently Asked Questions"
149
  msgstr ""
150
 
151
- #: inc/php/page.php:103
152
  msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
153
  msgstr "Wenn Sie Fragen haben, lesen Sie bitte die F.A.Q.s und schauen Sie nach, ob Ihre Antwort dabei ist."
154
 
155
- #: inc/php/page.php:125
156
- msgid "Will this plugin work on my WordPress.COM website?"
157
- msgstr "Funktioniert dieses Plugin auf meiner WordPress.COM Webseite?"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
158
 
159
- #: inc/php/page.php:126
160
- msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
161
- msgstr "Leider nicht. Dieses Plugin ist nur verfügbar auf self-hosted (WordPress.ORG) Webseiten."
162
 
163
- #: inc/php/page.php:128
 
 
 
 
 
 
 
 
164
  msgid "Can I use this plugin on my language?"
165
  msgstr "Kann ich das Plugin in meiner Sprache verwenden?"
166
 
167
- #: inc/php/page.php:129
168
- msgid "Yes. This plugin is ready for translation and has already been translated into several languages."
169
- msgstr "Ja, dieses Plugin übersetzbar und bereits in mehreren Sprachen verfügbar."
170
 
171
- #: inc/php/page.php:131
172
- #, php-format
173
- msgid "If you want to help translate this plugin then please visit the %s. You can also use the POT file, that is included and placed in the \"languages\" folder, in order to create a translation PO file. Just send the PO file to us at the %s and we will include this translation within the next plugin update."
174
- msgstr "Wenn Sie bei der Übersetzung dieses Plugins helfen wollen, besuchen Sie die Seite %s. Sie können auch die POT Datei, die Sie im “languages” Ordner finden, verwenden, um eine PO Übersetzungsdatei zu erstellen. Senden Sie die übersetzte PO Datei direkt an %s und wir werde die Übersetzung beim nächsten Plugin Update hinzufügen."
175
 
176
- #: inc/php/page.php:136
177
- msgid "Maybe not all existed translations are up to date. You are welcome to contribute corrections!"
 
 
 
 
178
  msgstr "Vielleicht sind nicht alle vorhandenen Übersetzungen aktuell. Gerne können Sie an den Korrekturen mitwirken."
179
 
180
- #: inc/php/page.php:137
181
- msgid "Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!"
182
- msgstr "Viele Benutzer des Plugins freuen sich darüber, wenn Sie Ihre Übersetzung mit der Öffentlichkeit teilen. Danke für Ihre Mithilfe!"
183
 
184
- #: inc/php/page.php:139
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
185
  msgid "How does it work?"
186
  msgstr "Wie arbeitet das Plugin?"
187
 
188
- #: inc/php/page.php:140
189
- msgid "On the \"Main\" tab, place your custom PHP code in the code editor field, switch the toggle to the \"ON\" position and click the \"Save changes\" button. Enjoy the result of applying your custom PHP code. It's that simple!"
190
  msgstr ""
191
 
192
- #: inc/php/page.php:142
193
  msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
194
  msgstr ""
195
 
196
- #: inc/php/page.php:143
197
- msgid "Yes. But you need to do it properly, like this:"
198
  msgstr ""
199
 
200
- #: inc/php/page.php:153
201
  msgid "How much of PHP code (characters) I can enter in the code editor?"
202
  msgstr ""
203
 
204
- #: inc/php/page.php:154
205
  msgid "We don't limit the number of characters."
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> &#10145; <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> &#10145; Table <code>wp_options</code> &#10145; Option <code>spacexchimp_p001_settings</code> &#10145; <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
 
@@ -429,14 +730,14 @@ msgstr "Danke für Ihre Unterstützung!"
429
 
430
  #: inc/php/sidebar.php:16
431
  msgid "We are «Space X-Chimp»"
432
- msgstr ""
433
 
434
  #: inc/php/sidebar.php:33
435
  msgid "About"
436
  msgstr "Über"
437
 
438
  #: inc/php/sidebar.php:35
439
- msgid "This plugin allows you to 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."
440
  msgstr ""
441
 
442
  #: inc/php/sidebar.php:40
@@ -466,9 +767,3 @@ msgstr "Space X-Chimp"
466
  #. Author URI of the plugin/theme
467
  msgid "https://www.spacexchimp.com"
468
  msgstr "https://www.spacexchimp.com"
469
-
470
- #~ msgid "Hello! My name is %s Arthur %s and I'm the founder of %s Space X-Chimp %s."
471
- #~ msgstr "Hallo! Meine name ist %s Arthur %s und ich bin der Gründer von %s Space X-Chimp %s."
472
-
473
- #~ msgid "My intention is to create projects that will make this world a better place. I'm really passionate about my work, I like what I'm doing and hope that you will be enriched by my projects too."
474
- #~ msgstr "Meine Absicht ist es, Projekte zu entwickeln, die diese Welt zu einem besseren Ort machen. Ich bin begeistert von meiner Arbeit, ich mag, was ich tue, und hoffe, dass Sie auch von meinen Projekten bereichert werden."
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: My Custom Functions\n"
6
+ "POT-Creation-Date: 2019-02-20 23:18+0300\n"
7
+ "PO-Revision-Date: 2019-02-20 23:18+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: German\n"
10
  "Language: de_DE\n"
36
  msgid "PHP Inserter"
37
  msgstr "PHP Inserter"
38
 
39
+ #: inc/php/messages.php:27 inc/php/page.php:520
40
+ msgid "Hello!"
41
+ msgstr "Hallo!"
42
 
43
  #: inc/php/messages.php:28
44
+ msgid "We are the team of Space X-Chimp."
45
+ msgstr "Wir sind das Team von Space X-Chimp."
46
+
47
+ #: inc/php/messages.php:33
48
  #, php-format
49
  msgid "Thank you for installing our plugin! We hope you will love it! %s"
50
  msgstr "Danke, dass Sie mein Plugin installiert haben. Ich hoffe, sie werden es mögen. %s"
51
 
52
+ #: inc/php/messages.php:74
53
  msgid "You have installed an old version of this plugin."
54
  msgstr "Sie haben eine veraltete Version dieses Plugin installiert."
55
 
56
+ #: inc/php/messages.php:75
57
  msgid "Please update the plugin to the latest version, and all will be fine."
58
  msgstr "Bitte installieren Sie die aktuelle Version des Plugins und alles wir gut."
59
 
60
+ #: inc/php/messages.php:99
61
  msgid "Custom code updated successfully."
62
  msgstr ""
63
 
64
+ #: inc/php/messages.php:119
65
  msgid "Sorry, but your code causes a \"Fatal error\", so it is not applied!"
66
  msgstr ""
67
 
68
+ #: inc/php/messages.php:120
69
  msgid "Please, check the code and try again."
70
  msgstr ""
71
 
72
+ #: inc/php/page.php:33
73
  #, php-format
74
  msgid "by %s Space X-Chimp %s"
75
  msgstr "by %s Space X-Chimp %s"
76
 
77
+ #: inc/php/page.php:39
78
  msgid "Version"
79
  msgstr "Version"
80
 
81
+ #: inc/php/page.php:46
82
  msgid "Main"
83
  msgstr ""
84
 
85
+ #: inc/php/page.php:47
86
  msgid "Usage"
87
  msgstr "Verwendung"
88
 
89
+ #: inc/php/page.php:48
90
  msgid "F.A.Q."
91
  msgstr "F.A.Q."
92
 
93
+ #: inc/php/page.php:49 inc/php/settings.php:54 inc/php/sidebar.php:47
94
  msgid "Support"
95
+ msgstr "Unterstützung"
96
 
97
+ #: inc/php/page.php:50
98
  msgid "Store"
99
+ msgstr "Geschäft"
100
 
101
+ #: inc/php/page.php:66
102
  msgid "Usage Instructions"
103
  msgstr "Anleitung"
104
 
105
+ #: inc/php/page.php:68
106
  msgid "To add your custom PHP code to your website, simply follow these steps:"
107
  msgstr ""
108
 
109
+ #: inc/php/page.php:70
110
  msgid "Go to the \"Main\" tab on this page."
111
  msgstr ""
112
 
113
+ #: inc/php/page.php:72
114
  msgid "Place your custom PHP code in the code editor field."
115
  msgstr ""
116
 
117
+ #: inc/php/page.php:75 inc/php/page.php:79
118
  msgid "Note!"
119
  msgstr "Achtung!"
120
 
121
+ #: inc/php/page.php:76
122
  msgid "Do not wrap your custom PHP code in HTML tags, such as <code>&lt;?php</code>...<code>?&gt;</code>."
123
  msgstr ""
124
 
125
+ #: inc/php/page.php:82
126
  #, php-format
127
  msgid "Before use, please read the %s instructions %s in our Blog on what to do in case of a website crash."
128
  msgstr ""
129
 
130
+ #: inc/php/page.php:89
131
  msgid "Switch the toggle to the \"ON\" position."
132
  msgstr ""
133
 
134
+ #: inc/php/page.php:90
135
  msgid "Click the \"Save changes\" button."
136
  msgstr "Klicken Sie den \"Änderungen speichern\" button."
137
 
138
+ #: inc/php/page.php:91 inc/php/page.php:222
139
  msgid "Enjoy the result of applying your custom PHP code."
140
  msgstr ""
141
 
142
+ #: inc/php/page.php:91 inc/php/page.php:223
143
  msgid "It's that simple!"
144
  msgstr "Es ist ganz einfach!"
145
 
146
+ #: inc/php/page.php:96
147
  #, php-format
148
  msgid "If you want more options, then %s let us know %s and we will be happy to add them."
149
  msgstr "Wenn Sie mehr Optionen benötigen, %s teilen Sie uns %s dies mit und wir werden sie gerne hinzufügen."
150
 
151
+ #: inc/php/page.php:110
152
  msgid "Frequently Asked Questions"
153
  msgstr ""
154
 
155
+ #: inc/php/page.php:114
156
  msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
157
  msgstr "Wenn Sie Fragen haben, lesen Sie bitte die F.A.Q.s und schauen Sie nach, ob Ihre Antwort dabei ist."
158
 
159
+ #: inc/php/page.php:139
160
+ msgid "Where can I find a documentation for this plugin?"
161
+ msgstr ""
162
+
163
+ #: inc/php/page.php:144
164
+ #, php-format
165
+ msgid "Please visit our %s Documentation site %s to view documentation."
166
+ msgstr ""
167
+
168
+ #: inc/php/page.php:152
169
+ msgid "Will this plugin work on my wordpress.COM website?"
170
+ msgstr "Funktioniert dieses Plugin auf meiner wordpress.COM Webseite?"
171
+
172
+ #: inc/php/page.php:155
173
+ msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
174
+ msgstr "Leider nicht. Dieses Plugin ist nur verfügbar auf self-hosted (wordpress.ORG) Webseiten."
175
+
176
+ #: inc/php/page.php:157
177
+ msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
178
+ msgstr ""
179
+
180
+ #: inc/php/page.php:158
181
+ msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
182
+ msgstr ""
183
+
184
+ #: inc/php/page.php:161
185
+ #, php-format
186
+ msgid "You can learn more about the difference here: %s ."
187
+ msgstr ""
188
+
189
+ #: inc/php/page.php:168
190
+ msgid "Will this plugin work/compatible with the theme I use?"
191
+ msgstr ""
192
+
193
+ #: inc/php/page.php:171
194
+ msgid "This plugin is compatible with most themes."
195
+ msgstr ""
196
+
197
+ #: inc/php/page.php:172
198
+ msgid "But, unfortunately, we cannot check it with all third-party themes (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party theme."
199
+ msgstr ""
200
+
201
+ #: inc/php/page.php:173
202
+ msgid "We constantly check this plugin for compatibility with third-party themes."
203
+ msgstr ""
204
+
205
+ #: inc/php/page.php:174
206
+ msgid "If we find that this plugin is incompatible with a third-party theme, and if we can fix it on our part, we release an update of our plugin to fix the problem."
207
+ msgstr ""
208
+
209
+ #: inc/php/page.php:176
210
+ msgid "If you find a conflict between our plugin and a third-party theme, please let us know and we will definitely release an update of our plugin to fix the problem."
211
+ msgstr ""
212
+
213
+ #: inc/php/page.php:180
214
+ msgid "Will this plugin work/compatible with other plugins that I use?"
215
+ msgstr ""
216
+
217
+ #: inc/php/page.php:183
218
+ msgid "This plugin is compatible with most plugins."
219
+ msgstr ""
220
+
221
+ #: inc/php/page.php:184
222
+ msgid "But, unfortunately, we cannot check it with all third-party plugins (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party plugin."
223
+ msgstr ""
224
 
225
+ #: inc/php/page.php:185
226
+ msgid "We constantly check this plugin for compatibility with third-party plugins."
227
+ msgstr ""
228
 
229
+ #: inc/php/page.php:186
230
+ msgid "If we find that this plugin is incompatible with a third-party plugin, and if we can fix it on our part, we release an update of our plugin to fix the problem."
231
+ msgstr ""
232
+
233
+ #: inc/php/page.php:188
234
+ msgid "If you find a conflict between our plugin and a third-party plugin, please let us know and we will definitely release an update of our plugin to fix the problem."
235
+ msgstr ""
236
+
237
+ #: inc/php/page.php:192
238
  msgid "Can I use this plugin on my language?"
239
  msgstr "Kann ich das Plugin in meiner Sprache verwenden?"
240
 
241
+ #: inc/php/page.php:195 inc/php/page.php:230
242
+ msgid "Yes."
243
+ msgstr "Ja."
244
 
245
+ #: inc/php/page.php:196
246
+ msgid "This plugin is ready for translation and has already been translated into several languages."
247
+ msgstr "Dieses Plugin übersetzbar und bereits in mehreren Sprachen verfügbar."
 
248
 
249
+ #: inc/php/page.php:197
250
+ msgid "But If your language is not available then you can make one."
251
+ msgstr ""
252
+
253
+ #: inc/php/page.php:198
254
+ msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
255
  msgstr "Vielleicht sind nicht alle vorhandenen Übersetzungen aktuell. Gerne können Sie an den Korrekturen mitwirken."
256
 
257
+ #: inc/php/page.php:199
258
+ msgid "Many of plugin users would be delighted if you share your translation with the community."
259
+ msgstr "Viele Benutzer des Plugins freuen sich darüber, wenn Sie Ihre Übersetzung mit der Öffentlichkeit teilen."
260
 
261
+ #: inc/php/page.php:200
262
+ msgid "Thanks for your contribution!"
263
+ msgstr "Danke für Ihre Mithilfe!"
264
+
265
+ #: inc/php/page.php:204
266
+ #, php-format
267
+ msgid "If you want to help translate this plugin, please visit the %s."
268
+ msgstr "Wenn Sie bei der Übersetzung dieses Plugins helfen wollen, bitte besuchen Sie %s."
269
+
270
+ #: inc/php/page.php:208
271
+ msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
272
+ msgstr "Sie können auch die POT Datei, die Sie im “languages” Ordner finden, verwenden, um eine PO Übersetzungsdatei zu erstellen."
273
+
274
+ #: inc/php/page.php:211
275
+ #, php-format
276
+ msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
277
+ msgstr "Senden Sie die übersetzte PO Datei an uns ( %s ) und wir werde die Übersetzung beim nächsten Plugin Update hinzufügen."
278
+
279
+ #: inc/php/page.php:218
280
  msgid "How does it work?"
281
  msgstr "Wie arbeitet das Plugin?"
282
 
283
+ #: inc/php/page.php:221
284
+ msgid "On the \"Main\" tab, place your custom PHP code in the code editor field, switch the toggle to the \"ON\" position and click the \"Save changes\" button."
285
  msgstr ""
286
 
287
+ #: inc/php/page.php:227
288
  msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
289
  msgstr ""
290
 
291
+ #: inc/php/page.php:231
292
+ msgid "But you need to do it properly, like this:"
293
  msgstr ""
294
 
295
+ #: inc/php/page.php:243
296
  msgid "How much of PHP code (characters) I can enter in the code editor?"
297
  msgstr ""
298
 
299
+ #: inc/php/page.php:246
300
  msgid "We don't limit the number of characters."
301
  msgstr ""
302
 
303
+ #: inc/php/page.php:250
304
  msgid "Does this plugin requires any modification of the theme?"
305
  msgstr "Benötigt das Plugin Veränderungen am Theme?"
306
 
307
+ #: inc/php/page.php:253 inc/php/page.php:261
308
+ msgid "Absolutely not."
309
+ msgstr "Absolut nicht."
310
+
311
+ #: inc/php/page.php:254
312
+ msgid "This plugin is configurable entirely from the plugin settings page."
313
+ msgstr "Alle Konfigurationen des Plugins finden Sie auf Einstellungsseite des Plugins."
314
 
315
+ #: inc/php/page.php:258
316
  msgid "Does this require any knowledge of HTML or CSS?"
317
+ msgstr "Brauche ich HTML oder CSS Kenntnisse?"
318
 
319
+ #: inc/php/page.php:262
320
+ msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
321
  msgstr ""
322
 
323
+ #: inc/php/page.php:266
324
  msgid "Can I add my custom PHP code to a specific page of my website?"
325
  msgstr ""
326
 
327
+ #: inc/php/page.php:269
328
+ msgid "For now, this plugin does not have an option to apply the custom PHP code only on specific pages."
329
+ msgstr ""
330
+
331
+ #: inc/php/page.php:270
332
+ msgid "We plan to add this feature soon."
333
+ msgstr ""
334
+
335
+ #: inc/php/page.php:271
336
+ msgid "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."
337
+ msgstr ""
338
+
339
+ #: inc/php/page.php:272
340
+ msgid "You need something like this:"
341
  msgstr ""
342
 
343
+ #: inc/php/page.php:288
344
+ msgid "It's not working."
345
+ msgstr "Es funktioniert nicht."
346
+
347
+ #: inc/php/page.php:289 inc/php/page.php:305 inc/php/page.php:331
348
+ msgid "What could be wrong?"
349
+ msgstr "Was könnte falsch sein?"
350
+
351
+ #: inc/php/page.php:292
352
+ msgid "As with every plugin, it's possible that things don't work."
353
+ msgstr "Wie bei jedem Plugin ist es möglich, dass nicht alles funktioniert."
354
+
355
+ #: inc/php/page.php:293
356
+ msgid "It's impossible to tell what could be wrong exactly."
357
+ msgstr "Es ist unmöglich genau festzustellen was falsch ist."
358
+
359
+ #: inc/php/page.php:294
360
+ msgid "The most common reason for this is a web browser's cache."
361
+ msgstr "Der häufigste Grund dafür ist der Cache Ihres Webbrowsers."
362
+
363
+ #: inc/php/page.php:295
364
+ msgid "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load."
365
+ msgstr "Jeder Webbrowser speichert den Cache der besuchten Webseite (Seiten, Bilder, usw.) um die Bandbreite zu reduzieren."
366
+
367
+ #: inc/php/page.php:296
368
+ msgid "This is called the browser's cache."
369
+ msgstr "Das nennt man den Browser Cache."
370
+
371
+ #: inc/php/page.php:297
372
+ msgid "Clearing your browser's cache may solve the problem."
373
+ msgstr "Wenn Sie den Cache Ihres Browsers löschen, könnte das Problem behoben sein."
374
+
375
+ #: inc/php/page.php:299
376
+ msgid "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."
377
+ msgstr "Wenn Sie jedoch eine Support Anfrage im Plugins Support Forum von wordpress.ORG stellen, helfe wir Ihnen gerne."
378
+
379
+ #: inc/php/page.php:300 inc/php/page.php:401
380
+ msgid "Please include as much information as possible, including a link to your website where the problem can be seen."
381
+ msgstr "Bitte fügen Sie so viele Informationen wie möglich und einen Link zu der Webseite hinzu, wo das Problem auftritt."
382
+
383
+ #: inc/php/page.php:304
384
+ msgid "On the plugin settings page, an error message appears."
385
  msgstr ""
386
 
387
+ #: inc/php/page.php:308
388
  msgid "Here are a few of the most likely causes of the error message:"
389
  msgstr ""
390
 
391
+ #: inc/php/page.php:311
392
+ msgid "You make a syntax error in the code that you have entered."
393
  msgstr ""
394
 
395
+ #: inc/php/page.php:312
396
+ msgid "Check the syntax of your code and try again."
397
  msgstr ""
398
 
399
+ #: inc/php/page.php:315
400
+ msgid "You entered two functions with the same name."
401
  msgstr ""
402
 
403
+ #: inc/php/page.php:316
404
+ msgid "Use a unique names for your functions."
405
  msgstr ""
406
 
407
+ #: inc/php/page.php:319
408
+ msgid "You have entered function with a name that is already occupied by another function."
409
+ msgstr ""
410
+
411
+ #: inc/php/page.php:320
412
+ msgid "Use a unique name for your function."
413
+ msgstr ""
414
+
415
+ #: inc/php/page.php:323
416
+ msgid "You are trying to overwrite an existing function (of WordPress, theme, or plugin)."
417
+ msgstr ""
418
+
419
+ #: inc/php/page.php:324
420
+ msgid "Instead, use filters and hooks."
421
+ msgstr ""
422
+
423
+ #: inc/php/page.php:330
424
+ msgid "My custom PHP code is not working."
425
  msgstr ""
426
 
427
+ #: inc/php/page.php:334
428
+ 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."
429
  msgstr ""
430
 
431
+ #: inc/php/page.php:335
432
+ msgid "Here are a few of the most likely causes of the issue:"
433
+ msgstr ""
434
+
435
+ #: inc/php/page.php:337
436
  msgid "You have a typo during the insertion of your custom PHP code."
437
  msgstr ""
438
 
439
+ #: inc/php/page.php:338
440
  msgid "Your custom PHP code has a syntax error."
441
  msgstr ""
442
 
443
+ #: inc/php/page.php:339
444
  msgid "Your custom PHP code is incorrect and may not work."
445
  msgstr ""
446
 
447
+ #: inc/php/page.php:344
448
+ msgid "What to do if this plugin crashed the website?"
449
+ msgstr ""
450
 
451
+ #: inc/php/page.php:347
452
+ msgid "This plugin has a built-in functions for checking the custom code for syntax errors, duplicate functions names, and etc."
453
+ msgstr ""
454
 
455
+ #: inc/php/page.php:348
456
+ msgid "But plugin is not perfect, so there are times when the entered custom code causes the error and white screen (WSOD)."
457
+ msgstr ""
458
 
459
+ #: inc/php/page.php:349
460
+ msgid "This is due to the fact that your custom code has a syntax error that this plugin could not detect."
461
  msgstr ""
462
 
463
+ #: inc/php/page.php:350
464
+ msgid "When this happens with you, please perform the following steps."
465
  msgstr ""
466
 
467
+ #: inc/php/page.php:353
468
+ msgid "Access your server via FTP or SFTP."
469
  msgstr ""
470
 
471
+ #: inc/php/page.php:354
472
+ msgid "If you aren't sure how usually your web hosting provider will have instructions somewhere on their website."
473
  msgstr ""
474
 
475
+ #: inc/php/page.php:357
476
+ msgid "Browse to the directory <code>wp-content/plugins/my-custom-functions/</code>."
477
  msgstr ""
478
 
479
+ #: inc/php/page.php:358
480
+ msgid "Please contact your web hosting company to get help if you can't find this folder."
481
+ msgstr ""
482
+
483
+ #: inc/php/page.php:361
484
+ msgid "Rename the file <code>START</code> to <code>STOP</code>."
485
+ msgstr ""
486
+
487
+ #: inc/php/page.php:362
488
+ msgid "This will stop the execution of your custom code."
489
+ msgstr ""
490
+
491
+ #: inc/php/page.php:364
492
  msgid "Log in to Admin Area of your WordPress website."
493
  msgstr ""
494
 
495
+ #: inc/php/page.php:365
496
  msgid "Go to the plugin settings page <code>Settings</code> &#10145; <code>PHP Inserter</code>."
497
  msgstr ""
498
 
499
+ #: inc/php/page.php:366
500
  msgid "Edit/fix your custom PHP code that you entered before the crash."
501
  msgstr ""
502
 
503
+ #: inc/php/page.php:367
504
  msgid "Return to the plugin folder and rename the file <code>STOP</code> to <code>START</code> and you're done!"
505
  msgstr ""
506
 
507
+ #: inc/php/page.php:369
508
+ msgid "This plugin stored you entered code in the database of your website."
509
+ msgstr ""
510
+
511
+ #: inc/php/page.php:370
512
+ msgid "For getting your code, you also can go to the <code>Database</code> &#10145; Table <code>wp_options</code> &#10145; Option <code>spacexchimp_p001_settings</code> &#10145; <code>option_value</code>."
513
  msgstr ""
514
 
515
+ #: inc/php/page.php:372
516
  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."
517
  msgstr ""
518
 
519
+ #: inc/php/page.php:376
520
+ msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
521
+ msgstr "Das letzte WordPress-Update hindert mich daran, meine Webseite, die dieses Plugin verwendet, zu bearbeiten."
522
+
523
+ #: inc/php/page.php:377
524
+ msgid "Why is this?"
525
+ msgstr "Warum ist das so?"
526
+
527
+ #: inc/php/page.php:380
528
+ msgid "This plugin can not cause such problem."
529
+ msgstr "Dieses Plugin kann ein solches Problem nicht verursachen."
530
 
531
+ #: inc/php/page.php:381
532
+ msgid "More likely, the problem are related to the settings of the website."
533
+ msgstr "Wahrscheinlich hängt das Problem mit den Einstellungen der Webseite zusammen."
534
 
535
+ #: inc/php/page.php:382
536
+ msgid "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."
537
+ msgstr "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."
538
+
539
+ #: inc/php/page.php:383
540
+ msgid "Also please try to re-login to the website, this too can help."
541
+ msgstr "Versuchen Sie auch, sich erneut auf der Webseite anzumelden, auch dies kann helfen."
542
+
543
+ #: inc/php/page.php:387
544
  msgid "Where to report bug if found?"
545
  msgstr "Wo kann ich eine Fehler melden?"
546
 
547
+ #: inc/php/page.php:390
548
+ msgid "Bug reports are very welcome!"
549
+ msgstr ""
550
+
551
+ #: inc/php/page.php:393
552
  #, php-format
553
+ msgid "Please visit our %s contact page %s and report."
554
+ msgstr "Bitte besuchen Sie unsere %s Kontaktseite %s und berichten Sie."
555
+
556
+ #: inc/php/page.php:398 inc/php/page.php:427
557
+ msgid "Please do not forget to specify the name of the plugin."
558
+ msgstr "Bitte vergiss nicht den Namen des Plugins anzugeben."
559
+
560
+ #: inc/php/page.php:399 inc/php/page.php:428 inc/php/page.php:444
561
+ msgid "Thank you!"
562
+ msgstr "Danke!"
563
+
564
+ #: inc/php/page.php:402
565
+ msgid "Describe in more detail what exactly you are seeing."
566
+ msgstr ""
567
+
568
+ #: inc/php/page.php:403
569
+ msgid "Here are some examples:"
570
+ msgstr ""
571
 
572
+ #: inc/php/page.php:406
573
+ msgid "Elements of the plugin settings page are not working."
574
+ msgstr ""
575
+
576
+ #: inc/php/page.php:407
577
+ msgid "An error message is displayed on the plugin settings page."
578
+ msgstr ""
579
+
580
+ #: inc/php/page.php:408
581
+ msgid "An error message is displayed on the front end of website."
582
+ msgstr ""
583
+
584
+ #: inc/php/page.php:409
585
+ msgid "An error message is displayed on the back end of website."
586
+ msgstr ""
587
+
588
+ #: inc/php/page.php:410
589
+ msgid "Custom code is inserted on the plugin settings page, but it is not applied on the website."
590
+ msgstr ""
591
+
592
+ #: inc/php/page.php:411
593
+ msgid "Website is crashed."
594
+ msgstr ""
595
+
596
+ #: inc/php/page.php:416
597
  msgid "Where to share any ideas or suggestions to make the plugin better?"
598
  msgstr "Wo können Sie Ideen oder Vorschläge loswerden, um das Plugin besser zu machen?"
599
 
600
+ #: inc/php/page.php:419
601
+ msgid "Any suggestions are very welcome!"
602
+ msgstr "Irgendwelche Vorschläge sind sehr willkommen!"
603
+
604
+ #: inc/php/page.php:422
605
  #, php-format
606
+ msgid "Please visit our %s contact page %s."
607
+ msgstr "Bitte besuchen Sie unsere %s Kontaktseite %s."
608
 
609
+ #: inc/php/page.php:432
610
+ msgid "I love this plugin!"
611
+ msgstr "Ich liebe dieses Plugin!"
612
+
613
+ #: inc/php/page.php:433
614
+ msgid "Can I help somehow?"
615
+ msgstr "Kann ich Irgendwie helfen?"
616
+
617
+ #: inc/php/page.php:436
618
+ msgid "Yes, any contributions are very welcome!"
619
+ msgstr "Ja, jede Mithilfe ist sehr willkommen!"
620
 
621
+ #: inc/php/page.php:439
622
  #, php-format
623
+ msgid "Please visit our %s Support Us %s page."
624
+ msgstr "Bitte besuchen Sie unsere %s Support Us %s Seite."
625
+
626
+ #: inc/php/page.php:448
627
+ msgid "Where can I find information about your licenses, payment process and refunds?"
628
+ msgstr ""
629
+
630
+ #: inc/php/page.php:453
631
+ #, php-format
632
+ msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
633
+ msgstr ""
634
 
635
+ #: inc/php/page.php:461
636
+ msgid "Where can I find information about your customer support?"
637
+ msgstr ""
638
+
639
+ #: inc/php/page.php:466
640
+ #, php-format
641
+ msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
642
+ msgstr ""
643
+
644
+ #: inc/php/page.php:474
645
+ msgid "Where can I find information about your affiliate program?"
646
+ msgstr ""
647
+
648
+ #: inc/php/page.php:479
649
+ #, php-format
650
+ msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
651
+ msgstr ""
652
+
653
+ #: inc/php/page.php:487
654
  msgid "My question wasn't answered here."
655
  msgstr "Meine Fragen wurden nicht beantwortet."
656
 
657
+ #: inc/php/page.php:492
658
  #, php-format
659
+ msgid "You can ask your question on %s this page %s."
660
+ msgstr ""
661
+
662
+ #: inc/php/page.php:497
663
+ msgid "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."
664
+ msgstr "Aber bitte bedenken Sie, dass dieses Plugin kostenlos ist. Es gibt kein Support Team, deshalb habe wir keine Möglichkeit jedem zu antworten."
665
 
666
+ #: inc/php/page.php:508
667
  msgid "Support Us"
668
  msgstr "Unterstütze uns"
669
 
670
+ #: inc/php/page.php:516 inc/php/settings.php:61 inc/php/sidebar.php:54
671
  msgid "Donate with PayPal"
672
  msgstr "Spende mit PayPal"
673
 
674
+ #: inc/php/page.php:523
675
  #, php-format
676
+ msgid "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."
677
+ msgstr "Meine name ist %s Arthur %s und ich bin der Gründer von %s Space X-Chimp %s, which unites a small international team of young people."
678
 
679
+ #: inc/php/page.php:532
680
+ msgid "Our intention is to create projects that will make this world a better place."
681
+ msgstr "Unser Absicht ist es, Projekte zu entwickeln, die diese Welt zu einem besseren Ort machen."
682
+
683
+ #: inc/php/page.php:533
684
+ msgid "Our motto is - «Follow your dreams and don’t give up»."
685
  msgstr ""
686
 
687
+ #: inc/php/page.php:534
688
+ msgid "We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
689
+ msgstr "Wir sind begeistert von unserer Arbeit, wir mag, was wir tue, und hoffe, dass Sie auch von unsere Projekten bereichert werden."
690
+
691
+ #: inc/php/page.php:537
692
+ 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."
693
+ msgstr "Wir haben viel Zeit und Mühe darauf verwendet sicherzustellen, dass die Themes, Plugins und andere Dinge, die wir entwickeln, nützlich sind. Der ultimative Beweis für uns ist, dass Sie sie tatsächlich verwenden."
694
 
695
+ #: inc/php/page.php:538
696
+ msgid "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."
697
+ msgstr ""
698
+
699
+ #: inc/php/page.php:541
700
  msgid "If you appreciate our work, you can buy us a cup of coffee!"
701
+ msgstr "Wenn Ihnen unsere Arbeit gefällt, können Sie uns gerne einen Kaffee kaufen!"
702
 
703
+ #: inc/php/page.php:544
704
  msgid "Thank you for your support!"
705
  msgstr "Danke für Ihre Unterstützung!"
706
 
730
 
731
  #: inc/php/sidebar.php:16
732
  msgid "We are «Space X-Chimp»"
733
+ msgstr "Wir sind «Space X-Chimp»"
734
 
735
  #: inc/php/sidebar.php:33
736
  msgid "About"
737
  msgstr "Über"
738
 
739
  #: inc/php/sidebar.php:35
740
+ msgid "This plugin gives you the ability to 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."
741
  msgstr ""
742
 
743
  #: inc/php/sidebar.php:40
767
  #. Author URI of the plugin/theme
768
  msgid "https://www.spacexchimp.com"
769
  msgstr "https://www.spacexchimp.com"
 
 
 
 
 
 
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: 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"
@@ -36,370 +36,671 @@ msgstr "Donar"
36
  msgid "PHP Inserter"
37
  msgstr "PHP Inserter"
38
 
39
- #: inc/php/messages.php:26
40
- msgid "Hello. We are the team of Space X-Chimp."
41
- msgstr "Hola! Yo soy Space X-Chimp, el autor de este complemento."
42
 
43
  #: inc/php/messages.php:28
 
 
 
 
44
  #, php-format
45
  msgid "Thank you for installing our plugin! We hope you will love it! %s"
46
  msgstr "Gracias por instalar este complemento! Espero que te encante! %s"
47
 
48
- #: inc/php/messages.php:68
49
  msgid "You have installed an old version of this plugin."
50
  msgstr "Has instalado una versión antigua de este complemento."
51
 
52
- #: inc/php/messages.php:69
53
  msgid "Please update the plugin to the latest version, and all will be fine."
54
  msgstr "Actualiza el complemento a la versión más reciente y todo estará bien."
55
 
56
- #: inc/php/messages.php:91
57
  msgid "Custom code updated successfully."
58
  msgstr ""
59
 
60
- #: inc/php/messages.php:110
61
  msgid "Sorry, but your code causes a \"Fatal error\", so it is not applied!"
62
  msgstr ""
63
 
64
- #: inc/php/messages.php:111
65
  msgid "Please, check the code and try again."
66
  msgstr ""
67
 
68
- #: inc/php/page.php:32
69
  #, php-format
70
  msgid "by %s Space X-Chimp %s"
71
  msgstr "por %s Space X-Chimp %s"
72
 
73
- #: inc/php/page.php:38
74
  msgid "Version"
75
  msgstr "Versión"
76
 
77
- #: inc/php/page.php:45
78
  msgid "Main"
79
  msgstr "Principal"
80
 
81
- #: inc/php/page.php:46
82
  msgid "Usage"
83
  msgstr "Uso"
84
 
85
- #: inc/php/page.php:47
86
  msgid "F.A.Q."
87
  msgstr "Preguntas ?"
88
 
89
- #: inc/php/page.php:48 inc/php/settings.php:54 inc/php/sidebar.php:47
90
  msgid "Support"
91
  msgstr "Soporte"
92
 
93
- #: inc/php/page.php:49
94
  msgid "Store"
95
  msgstr "Tienda"
96
 
97
- #: inc/php/page.php:65
98
  msgid "Usage Instructions"
99
  msgstr "Instrucciones de uso"
100
 
101
- #: inc/php/page.php:67
102
  msgid "To add your custom PHP code to your website, simply follow these steps:"
103
  msgstr ""
104
 
105
- #: inc/php/page.php:69
106
  msgid "Go to the \"Main\" tab on this page."
107
  msgstr "Debes ir a la pestaña “Principal”."
108
 
109
- #: inc/php/page.php:70
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
 
117
- #: inc/php/page.php:71
118
  msgid "Do not wrap your custom PHP code in HTML tags, such as <code>&lt;?php</code>...<code>?&gt;</code>."
119
  msgstr ""
120
 
121
- #: inc/php/page.php:73
122
  #, php-format
123
  msgid "Before use, please read the %s instructions %s in our Blog on what to do in case of a website crash."
124
  msgstr ""
125
 
126
- #: inc/php/page.php:80
127
  msgid "Switch the toggle to the \"ON\" position."
128
  msgstr ""
129
 
130
- #: inc/php/page.php:81
131
  msgid "Click the \"Save changes\" button."
132
- msgstr "Clic en el botón \"Guardar Cambios\"."
133
 
134
- #: inc/php/page.php:82
135
  msgid "Enjoy the result of applying your custom PHP code."
136
  msgstr ""
137
 
138
- #: inc/php/page.php:82
139
  msgid "It's that simple!"
140
  msgstr "¡Es así de simple!"
141
 
142
- #: inc/php/page.php:85
143
  #, php-format
144
  msgid "If you want more options, then %s let us know %s and we will be happy to add them."
145
  msgstr "Si quieres más opciones, %s díganos %s y estaremos encantados de añadirlo."
146
 
147
- #: inc/php/page.php:99
148
  msgid "Frequently Asked Questions"
149
  msgstr "Preguntas Frecuentes"
150
 
151
- #: inc/php/page.php:103
152
  msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
153
  msgstr "Si tienes alguna pregunta, por favor lee las Preguntas Frecuentes a continuación, para ver si la respuesta está aquí."
154
 
155
- #: inc/php/page.php:125
156
- msgid "Will this plugin work on my WordPress.COM website?"
157
- msgstr "¿Funcionará este complemento en mi sitio web WordPress.COM?"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
158
 
159
- #: inc/php/page.php:126
160
- msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
161
- msgstr "Lo sentimos, este complemento está disponible para su uso solo en sitios web alojados (WordPress.ORG)."
162
 
163
- #: inc/php/page.php:128
 
 
 
 
 
 
 
 
164
  msgid "Can I use this plugin on my language?"
165
  msgstr "¿Puedo usar este complemento en mi idioma?"
166
 
167
- #: inc/php/page.php:129
168
- msgid "Yes. This plugin is ready for translation and has already been translated into several languages."
169
- msgstr "Sí. Este complemento está listo para ser traducido y ya ha sido traducido a varios idiomas."
170
 
171
- #: inc/php/page.php:131
172
- #, php-format
173
- msgid "If you want to help translate this plugin then please visit the %s. You can also use the POT file, that is included and placed in the \"languages\" folder, in order to create a translation PO file. Just send the PO file to us at the %s and we will include this translation within the next plugin update."
174
- msgstr "Si quieres ayudar a traducir este complemento, visita el %s. También puede utilizar el archivo POT, incluido y colocado en la carpeta “languages”, para crear un archivo PO de traducción. Simplemente envíeme el archivo PO en el %s e incluiremos esta traducción en la siguiente actualización del complemento."
 
 
 
175
 
176
- #: inc/php/page.php:136
177
- msgid "Maybe not all existed translations are up to date. You are welcome to contribute corrections!"
178
  msgstr "Quizás no todas las traducciones existentes estén actualizadas. Le invitamos a contribuir correcciones!"
179
 
180
- #: inc/php/page.php:137
181
- msgid "Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!"
182
- msgstr "Muchos de los usuarios de este complemento estarían encantados si compartes tu traducción con la comunidad. ¡Gracias por tu contribución!"
 
 
 
 
183
 
184
- #: inc/php/page.php:139
 
 
 
 
 
 
 
 
 
 
 
 
 
 
185
  msgid "How does it work?"
186
  msgstr "¿Como funciona?"
187
 
188
- #: inc/php/page.php:140
189
- msgid "On the \"Main\" tab, place your custom PHP code in the code editor field, switch the toggle to the \"ON\" position and click the \"Save changes\" button. Enjoy the result of applying your custom PHP code. It's that simple!"
190
  msgstr ""
191
 
192
- #: inc/php/page.php:142
193
  msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
194
  msgstr ""
195
 
196
- #: inc/php/page.php:143
197
- msgid "Yes. But you need to do it properly, like this:"
198
  msgstr ""
199
 
200
- #: inc/php/page.php:153
201
  msgid "How much of PHP code (characters) I can enter in the code editor?"
202
  msgstr ""
203
 
204
- #: inc/php/page.php:154
205
  msgid "We don't limit the number of characters."
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> &#10145; <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> &#10145; Table <code>wp_options</code> &#10145; Option <code>spacexchimp_p001_settings</code> &#10145; <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
 
@@ -417,7 +718,7 @@ msgstr ""
417
 
418
  #: inc/php/settings.php:51
419
  msgid "Save changes"
420
- msgstr "Guardar Cambios"
421
 
422
  #: inc/php/settings.php:56 inc/php/sidebar.php:49
423
  msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
@@ -436,8 +737,8 @@ msgid "About"
436
  msgstr "Acerca de"
437
 
438
  #: inc/php/sidebar.php:35
439
- msgid "This plugin allows you to 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."
440
- msgstr ""
441
 
442
  #: inc/php/sidebar.php:40
443
  msgid "Help"
@@ -466,9 +767,3 @@ msgstr "Space X-Chimp"
466
  #. Author URI of the plugin/theme
467
  msgid "https://www.spacexchimp.com"
468
  msgstr "https://www.spacexchimp.com"
469
-
470
- #~ msgid "Hello! My name is %s Arthur %s and I'm the founder of %s Space X-Chimp %s."
471
- #~ msgstr "¡Hola! Mi nombre es %s Arthur %s y soy el fundador de %s Space X-Chimp %s."
472
-
473
- #~ msgid "My intention is to create projects that will make this world a better place. I'm really passionate about my work, I like what I'm doing and hope that you will be enriched by my projects too."
474
- #~ msgstr "Mi intención es crear proyectos que hagan de este mundo un lugar mejor. Soy realmente apasionado por mi trabajo, me gusta lo que estoy haciendo y espero que tú también te enriquezcas con mis proyectos."
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: My Custom Functions\n"
6
+ "POT-Creation-Date: 2019-02-20 23:19+0300\n"
7
+ "PO-Revision-Date: 2019-02-20 23:19+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Spanish\n"
10
  "Language: es_ES\n"
36
  msgid "PHP Inserter"
37
  msgstr "PHP Inserter"
38
 
39
+ #: inc/php/messages.php:27 inc/php/page.php:520
40
+ msgid "Hello!"
41
+ msgstr "¡Hola!"
42
 
43
  #: inc/php/messages.php:28
44
+ msgid "We are the team of Space X-Chimp."
45
+ msgstr "Somos el equipo de Space X-Chimp."
46
+
47
+ #: inc/php/messages.php:33
48
  #, php-format
49
  msgid "Thank you for installing our plugin! We hope you will love it! %s"
50
  msgstr "Gracias por instalar este complemento! Espero que te encante! %s"
51
 
52
+ #: inc/php/messages.php:74
53
  msgid "You have installed an old version of this plugin."
54
  msgstr "Has instalado una versión antigua de este complemento."
55
 
56
+ #: inc/php/messages.php:75
57
  msgid "Please update the plugin to the latest version, and all will be fine."
58
  msgstr "Actualiza el complemento a la versión más reciente y todo estará bien."
59
 
60
+ #: inc/php/messages.php:99
61
  msgid "Custom code updated successfully."
62
  msgstr ""
63
 
64
+ #: inc/php/messages.php:119
65
  msgid "Sorry, but your code causes a \"Fatal error\", so it is not applied!"
66
  msgstr ""
67
 
68
+ #: inc/php/messages.php:120
69
  msgid "Please, check the code and try again."
70
  msgstr ""
71
 
72
+ #: inc/php/page.php:33
73
  #, php-format
74
  msgid "by %s Space X-Chimp %s"
75
  msgstr "por %s Space X-Chimp %s"
76
 
77
+ #: inc/php/page.php:39
78
  msgid "Version"
79
  msgstr "Versión"
80
 
81
+ #: inc/php/page.php:46
82
  msgid "Main"
83
  msgstr "Principal"
84
 
85
+ #: inc/php/page.php:47
86
  msgid "Usage"
87
  msgstr "Uso"
88
 
89
+ #: inc/php/page.php:48
90
  msgid "F.A.Q."
91
  msgstr "Preguntas ?"
92
 
93
+ #: inc/php/page.php:49 inc/php/settings.php:54 inc/php/sidebar.php:47
94
  msgid "Support"
95
  msgstr "Soporte"
96
 
97
+ #: inc/php/page.php:50
98
  msgid "Store"
99
  msgstr "Tienda"
100
 
101
+ #: inc/php/page.php:66
102
  msgid "Usage Instructions"
103
  msgstr "Instrucciones de uso"
104
 
105
+ #: inc/php/page.php:68
106
  msgid "To add your custom PHP code to your website, simply follow these steps:"
107
  msgstr ""
108
 
109
+ #: inc/php/page.php:70
110
  msgid "Go to the \"Main\" tab on this page."
111
  msgstr "Debes ir a la pestaña “Principal”."
112
 
113
+ #: inc/php/page.php:72
114
  msgid "Place your custom PHP code in the code editor field."
115
  msgstr ""
116
 
117
+ #: inc/php/page.php:75 inc/php/page.php:79
118
  msgid "Note!"
119
  msgstr "¡Nota!"
120
 
121
+ #: inc/php/page.php:76
122
  msgid "Do not wrap your custom PHP code in HTML tags, such as <code>&lt;?php</code>...<code>?&gt;</code>."
123
  msgstr ""
124
 
125
+ #: inc/php/page.php:82
126
  #, php-format
127
  msgid "Before use, please read the %s instructions %s in our Blog on what to do in case of a website crash."
128
  msgstr ""
129
 
130
+ #: inc/php/page.php:89
131
  msgid "Switch the toggle to the \"ON\" position."
132
  msgstr ""
133
 
134
+ #: inc/php/page.php:90
135
  msgid "Click the \"Save changes\" button."
136
+ msgstr "Clic en el botón \"Guardar cambios\"."
137
 
138
+ #: inc/php/page.php:91 inc/php/page.php:222
139
  msgid "Enjoy the result of applying your custom PHP code."
140
  msgstr ""
141
 
142
+ #: inc/php/page.php:91 inc/php/page.php:223
143
  msgid "It's that simple!"
144
  msgstr "¡Es así de simple!"
145
 
146
+ #: inc/php/page.php:96
147
  #, php-format
148
  msgid "If you want more options, then %s let us know %s and we will be happy to add them."
149
  msgstr "Si quieres más opciones, %s díganos %s y estaremos encantados de añadirlo."
150
 
151
+ #: inc/php/page.php:110
152
  msgid "Frequently Asked Questions"
153
  msgstr "Preguntas Frecuentes"
154
 
155
+ #: inc/php/page.php:114
156
  msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
157
  msgstr "Si tienes alguna pregunta, por favor lee las Preguntas Frecuentes a continuación, para ver si la respuesta está aquí."
158
 
159
+ #: inc/php/page.php:139
160
+ msgid "Where can I find a documentation for this plugin?"
161
+ msgstr ""
162
+
163
+ #: inc/php/page.php:144
164
+ #, php-format
165
+ msgid "Please visit our %s Documentation site %s to view documentation."
166
+ msgstr ""
167
+
168
+ #: inc/php/page.php:152
169
+ msgid "Will this plugin work on my wordpress.COM website?"
170
+ msgstr "¿Funcionará este complemento en mi sitio web wordpress.COM?"
171
+
172
+ #: inc/php/page.php:155
173
+ msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
174
+ msgstr "Lo sentimos, este complemento está disponible para su uso solo en sitios web alojados (wordpress.ORG)."
175
+
176
+ #: inc/php/page.php:157
177
+ msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
178
+ msgstr ""
179
+
180
+ #: inc/php/page.php:158
181
+ msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
182
+ msgstr ""
183
+
184
+ #: inc/php/page.php:161
185
+ #, php-format
186
+ msgid "You can learn more about the difference here: %s ."
187
+ msgstr ""
188
+
189
+ #: inc/php/page.php:168
190
+ msgid "Will this plugin work/compatible with the theme I use?"
191
+ msgstr ""
192
+
193
+ #: inc/php/page.php:171
194
+ msgid "This plugin is compatible with most themes."
195
+ msgstr ""
196
+
197
+ #: inc/php/page.php:172
198
+ msgid "But, unfortunately, we cannot check it with all third-party themes (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party theme."
199
+ msgstr ""
200
+
201
+ #: inc/php/page.php:173
202
+ msgid "We constantly check this plugin for compatibility with third-party themes."
203
+ msgstr ""
204
+
205
+ #: inc/php/page.php:174
206
+ msgid "If we find that this plugin is incompatible with a third-party theme, and if we can fix it on our part, we release an update of our plugin to fix the problem."
207
+ msgstr ""
208
+
209
+ #: inc/php/page.php:176
210
+ msgid "If you find a conflict between our plugin and a third-party theme, please let us know and we will definitely release an update of our plugin to fix the problem."
211
+ msgstr ""
212
+
213
+ #: inc/php/page.php:180
214
+ msgid "Will this plugin work/compatible with other plugins that I use?"
215
+ msgstr ""
216
+
217
+ #: inc/php/page.php:183
218
+ msgid "This plugin is compatible with most plugins."
219
+ msgstr ""
220
+
221
+ #: inc/php/page.php:184
222
+ msgid "But, unfortunately, we cannot check it with all third-party plugins (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party plugin."
223
+ msgstr ""
224
 
225
+ #: inc/php/page.php:185
226
+ msgid "We constantly check this plugin for compatibility with third-party plugins."
227
+ msgstr ""
228
 
229
+ #: inc/php/page.php:186
230
+ msgid "If we find that this plugin is incompatible with a third-party plugin, and if we can fix it on our part, we release an update of our plugin to fix the problem."
231
+ msgstr ""
232
+
233
+ #: inc/php/page.php:188
234
+ msgid "If you find a conflict between our plugin and a third-party plugin, please let us know and we will definitely release an update of our plugin to fix the problem."
235
+ msgstr ""
236
+
237
+ #: inc/php/page.php:192
238
  msgid "Can I use this plugin on my language?"
239
  msgstr "¿Puedo usar este complemento en mi idioma?"
240
 
241
+ #: inc/php/page.php:195 inc/php/page.php:230
242
+ msgid "Yes."
243
+ msgstr "Sí."
244
 
245
+ #: inc/php/page.php:196
246
+ msgid "This plugin is ready for translation and has already been translated into several languages."
247
+ msgstr "Este complemento está listo para ser traducido y ya ha sido traducido a varios idiomas."
248
+
249
+ #: inc/php/page.php:197
250
+ msgid "But If your language is not available then you can make one."
251
+ msgstr ""
252
 
253
+ #: inc/php/page.php:198
254
+ msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
255
  msgstr "Quizás no todas las traducciones existentes estén actualizadas. Le invitamos a contribuir correcciones!"
256
 
257
+ #: inc/php/page.php:199
258
+ msgid "Many of plugin users would be delighted if you share your translation with the community."
259
+ msgstr "Muchos de los usuarios de este complemento estarían encantados si compartes tu traducción con la comunidad."
260
+
261
+ #: inc/php/page.php:200
262
+ msgid "Thanks for your contribution!"
263
+ msgstr "¡Gracias por tu contribución!"
264
 
265
+ #: inc/php/page.php:204
266
+ #, php-format
267
+ msgid "If you want to help translate this plugin, please visit the %s."
268
+ msgstr "Si quieres ayudar a traducir este complemento, por favor visite el %s."
269
+
270
+ #: inc/php/page.php:208
271
+ msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
272
+ msgstr "También puede utilizar el archivo POT, incluido y colocado en la carpeta “languages”, para crear un archivo PO de traducción."
273
+
274
+ #: inc/php/page.php:211
275
+ #, php-format
276
+ msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
277
+ msgstr "Simplemente envíenos ( %s ) el archivo PO e incluiremos esta traducción en la siguiente actualización del complemento."
278
+
279
+ #: inc/php/page.php:218
280
  msgid "How does it work?"
281
  msgstr "¿Como funciona?"
282
 
283
+ #: inc/php/page.php:221
284
+ msgid "On the \"Main\" tab, place your custom PHP code in the code editor field, switch the toggle to the \"ON\" position and click the \"Save changes\" button."
285
  msgstr ""
286
 
287
+ #: inc/php/page.php:227
288
  msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
289
  msgstr ""
290
 
291
+ #: inc/php/page.php:231
292
+ msgid "But you need to do it properly, like this:"
293
  msgstr ""
294
 
295
+ #: inc/php/page.php:243
296
  msgid "How much of PHP code (characters) I can enter in the code editor?"
297
  msgstr ""
298
 
299
+ #: inc/php/page.php:246
300
  msgid "We don't limit the number of characters."
301
  msgstr ""
302
 
303
+ #: inc/php/page.php:250
304
  msgid "Does this plugin requires any modification of the theme?"
305
  msgstr "¿Este complemento requiere alguna modificación del tema?"
306
 
307
+ #: inc/php/page.php:253 inc/php/page.php:261
308
+ msgid "Absolutely not."
309
+ msgstr "Absolutamente no."
310
 
311
+ #: inc/php/page.php:254
312
+ msgid "This plugin is configurable entirely from the plugin settings page."
313
+ msgstr "Este complemento se puede configurar completamente desde su página de configuración."
314
+
315
+ #: inc/php/page.php:258
316
  msgid "Does this require any knowledge of HTML or CSS?"
317
  msgstr "¿Esto requiere algún conocimiento de HTML o CSS?"
318
 
319
+ #: inc/php/page.php:262
320
+ msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
321
+ msgstr "Este complemento se puede configurar sin conocimientos de HTML o CSS, utilizando su página de configuración la cual es fácil de usar."
322
 
323
+ #: inc/php/page.php:266
324
  msgid "Can I add my custom PHP code to a specific page of my website?"
325
  msgstr ""
326
 
327
+ #: inc/php/page.php:269
328
+ msgid "For now, this plugin does not have an option to apply the custom PHP code only on specific pages."
329
+ msgstr ""
330
+
331
+ #: inc/php/page.php:270
332
+ msgid "We plan to add this feature soon."
333
+ msgstr ""
334
+
335
+ #: inc/php/page.php:271
336
+ msgid "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."
337
  msgstr ""
338
 
339
+ #: inc/php/page.php:272
340
+ msgid "You need something like this:"
341
  msgstr ""
342
 
343
+ #: inc/php/page.php:288
344
+ msgid "It's not working."
345
+ msgstr "No funciona."
346
+
347
+ #: inc/php/page.php:289 inc/php/page.php:305 inc/php/page.php:331
348
+ msgid "What could be wrong?"
349
+ msgstr "¿Qué podría estar mal?"
350
+
351
+ #: inc/php/page.php:292
352
+ msgid "As with every plugin, it's possible that things don't work."
353
+ msgstr "Como con todos los complementos, es posible que las cosas no funcionen."
354
+
355
+ #: inc/php/page.php:293
356
+ msgid "It's impossible to tell what could be wrong exactly."
357
+ msgstr "Es imposible decir exactamente lo que podría estar mal."
358
+
359
+ #: inc/php/page.php:294
360
+ msgid "The most common reason for this is a web browser's cache."
361
+ msgstr "La razón más común para esto es la caché de un navegador web."
362
+
363
+ #: inc/php/page.php:295
364
+ msgid "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load."
365
+ msgstr "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."
366
+
367
+ #: inc/php/page.php:296
368
+ msgid "This is called the browser's cache."
369
+ msgstr "Esto se denomina caché del navegador."
370
+
371
+ #: inc/php/page.php:297
372
+ msgid "Clearing your browser's cache may solve the problem."
373
+ msgstr "Limpiar la caché del navegador puede resolver el problema."
374
+
375
+ #: inc/php/page.php:299
376
+ msgid "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."
377
+ msgstr "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."
378
+
379
+ #: inc/php/page.php:300 inc/php/page.php:401
380
+ msgid "Please include as much information as possible, including a link to your website where the problem can be seen."
381
+ msgstr "Incluye tanta información como sea posible, incluyendo un enlace a tu sitio web donde se pueda ver el problema."
382
+
383
+ #: inc/php/page.php:304
384
+ msgid "On the plugin settings page, an error message appears."
385
+ msgstr ""
386
+
387
+ #: inc/php/page.php:308
388
  msgid "Here are a few of the most likely causes of the error message:"
389
  msgstr ""
390
 
391
+ #: inc/php/page.php:311
392
+ msgid "You make a syntax error in the code that you have entered."
393
  msgstr ""
394
 
395
+ #: inc/php/page.php:312
396
+ msgid "Check the syntax of your code and try again."
397
  msgstr ""
398
 
399
+ #: inc/php/page.php:315
400
+ msgid "You entered two functions with the same name."
401
  msgstr ""
402
 
403
+ #: inc/php/page.php:316
404
+ msgid "Use a unique names for your functions."
405
  msgstr ""
406
 
407
+ #: inc/php/page.php:319
408
+ msgid "You have entered function with a name that is already occupied by another function."
 
409
  msgstr ""
410
 
411
+ #: inc/php/page.php:320
412
+ msgid "Use a unique name for your function."
413
  msgstr ""
414
 
415
+ #: inc/php/page.php:323
416
+ msgid "You are trying to overwrite an existing function (of WordPress, theme, or plugin)."
417
+ msgstr ""
418
+
419
+ #: inc/php/page.php:324
420
+ msgid "Instead, use filters and hooks."
421
+ msgstr ""
422
+
423
+ #: inc/php/page.php:330
424
+ msgid "My custom PHP code is not working."
425
+ msgstr ""
426
+
427
+ #: inc/php/page.php:334
428
+ 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."
429
+ msgstr ""
430
+
431
+ #: inc/php/page.php:335
432
+ msgid "Here are a few of the most likely causes of the issue:"
433
+ msgstr ""
434
+
435
+ #: inc/php/page.php:337
436
  msgid "You have a typo during the insertion of your custom PHP code."
437
  msgstr ""
438
 
439
+ #: inc/php/page.php:338
440
  msgid "Your custom PHP code has a syntax error."
441
  msgstr ""
442
 
443
+ #: inc/php/page.php:339
444
  msgid "Your custom PHP code is incorrect and may not work."
445
  msgstr ""
446
 
447
+ #: inc/php/page.php:344
448
+ msgid "What to do if this plugin crashed the website?"
449
+ msgstr ""
450
 
451
+ #: inc/php/page.php:347
452
+ msgid "This plugin has a built-in functions for checking the custom code for syntax errors, duplicate functions names, and etc."
453
+ msgstr ""
454
 
455
+ #: inc/php/page.php:348
456
+ msgid "But plugin is not perfect, so there are times when the entered custom code causes the error and white screen (WSOD)."
457
+ msgstr ""
458
 
459
+ #: inc/php/page.php:349
460
+ msgid "This is due to the fact that your custom code has a syntax error that this plugin could not detect."
461
  msgstr ""
462
 
463
+ #: inc/php/page.php:350
464
+ msgid "When this happens with you, please perform the following steps."
465
  msgstr ""
466
 
467
+ #: inc/php/page.php:353
468
+ msgid "Access your server via FTP or SFTP."
469
  msgstr ""
470
 
471
+ #: inc/php/page.php:354
472
+ msgid "If you aren't sure how usually your web hosting provider will have instructions somewhere on their website."
473
  msgstr ""
474
 
475
+ #: inc/php/page.php:357
476
+ msgid "Browse to the directory <code>wp-content/plugins/my-custom-functions/</code>."
477
  msgstr ""
478
 
479
+ #: inc/php/page.php:358
480
+ msgid "Please contact your web hosting company to get help if you can't find this folder."
481
+ msgstr ""
482
+
483
+ #: inc/php/page.php:361
484
+ msgid "Rename the file <code>START</code> to <code>STOP</code>."
485
+ msgstr ""
486
+
487
+ #: inc/php/page.php:362
488
+ msgid "This will stop the execution of your custom code."
489
+ msgstr ""
490
+
491
+ #: inc/php/page.php:364
492
  msgid "Log in to Admin Area of your WordPress website."
493
  msgstr ""
494
 
495
+ #: inc/php/page.php:365
496
  msgid "Go to the plugin settings page <code>Settings</code> &#10145; <code>PHP Inserter</code>."
497
  msgstr ""
498
 
499
+ #: inc/php/page.php:366
500
  msgid "Edit/fix your custom PHP code that you entered before the crash."
501
  msgstr ""
502
 
503
+ #: inc/php/page.php:367
504
  msgid "Return to the plugin folder and rename the file <code>STOP</code> to <code>START</code> and you're done!"
505
  msgstr ""
506
 
507
+ #: inc/php/page.php:369
508
+ msgid "This plugin stored you entered code in the database of your website."
509
  msgstr ""
510
 
511
+ #: inc/php/page.php:370
512
+ msgid "For getting your code, you also can go to the <code>Database</code> &#10145; Table <code>wp_options</code> &#10145; Option <code>spacexchimp_p001_settings</code> &#10145; <code>option_value</code>."
513
+ msgstr ""
514
+
515
+ #: inc/php/page.php:372
516
  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."
517
  msgstr ""
518
 
519
+ #: inc/php/page.php:376
520
+ msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
521
+ msgstr "La última actualización de WordPress me impide editar mi sitio web que está utilizando este complemento."
522
+
523
+ #: inc/php/page.php:377
524
+ msgid "Why is this?"
525
+ msgstr "¿Porqué sucede esto?"
526
+
527
+ #: inc/php/page.php:380
528
+ msgid "This plugin can not cause such problem."
529
+ msgstr "Este complemento no puede causar este problema."
530
+
531
+ #: inc/php/page.php:381
532
+ msgid "More likely, the problem are related to the settings of the website."
533
+ msgstr "Lo más probable es que el problema esté relacionado con la configuración del sitio web."
534
 
535
+ #: inc/php/page.php:382
536
+ msgid "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."
537
+ msgstr "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."
538
 
539
+ #: inc/php/page.php:383
540
+ msgid "Also please try to re-login to the website, this too can help."
541
+ msgstr "También intenta volver a conectarte al sitio web, esto también puede ayudar."
542
+
543
+ #: inc/php/page.php:387
544
  msgid "Where to report bug if found?"
545
  msgstr "¿Dónde informar el error si se encuentra?"
546
 
547
+ #: inc/php/page.php:390
548
+ msgid "Bug reports are very welcome!"
549
+ msgstr "¡Informes de errores son bienvenidos!"
550
+
551
+ #: inc/php/page.php:393
552
  #, php-format
553
+ msgid "Please visit our %s contact page %s and report."
554
+ msgstr "Por favor visite nuestra %s página de contacto %s e informa."
555
+
556
+ #: inc/php/page.php:398 inc/php/page.php:427
557
+ msgid "Please do not forget to specify the name of the plugin."
558
+ msgstr "No olvides especificar el nombre del complemento."
559
+
560
+ #: inc/php/page.php:399 inc/php/page.php:428 inc/php/page.php:444
561
+ msgid "Thank you!"
562
+ msgstr "¡Gracias!"
563
+
564
+ #: inc/php/page.php:402
565
+ msgid "Describe in more detail what exactly you are seeing."
566
  msgstr ""
567
 
568
+ #: inc/php/page.php:403
569
+ msgid "Here are some examples:"
570
+ msgstr ""
571
+
572
+ #: inc/php/page.php:406
573
+ msgid "Elements of the plugin settings page are not working."
574
+ msgstr ""
575
+
576
+ #: inc/php/page.php:407
577
+ msgid "An error message is displayed on the plugin settings page."
578
+ msgstr ""
579
+
580
+ #: inc/php/page.php:408
581
+ msgid "An error message is displayed on the front end of website."
582
+ msgstr ""
583
+
584
+ #: inc/php/page.php:409
585
+ msgid "An error message is displayed on the back end of website."
586
+ msgstr ""
587
+
588
+ #: inc/php/page.php:410
589
+ msgid "Custom code is inserted on the plugin settings page, but it is not applied on the website."
590
+ msgstr ""
591
+
592
+ #: inc/php/page.php:411
593
+ msgid "Website is crashed."
594
+ msgstr ""
595
+
596
+ #: inc/php/page.php:416
597
  msgid "Where to share any ideas or suggestions to make the plugin better?"
598
  msgstr "¿Dónde compartir ideas o sugerencias para mejorar el complemento?"
599
 
600
+ #: inc/php/page.php:419
601
+ msgid "Any suggestions are very welcome!"
602
+ msgstr "Cualquier sugerencia es muy bienvenida!"
603
+
604
+ #: inc/php/page.php:422
605
+ #, php-format
606
+ msgid "Please visit our %s contact page %s."
607
+ msgstr "Por favor visite nuestra %s página de contacto %s."
608
+
609
+ #: inc/php/page.php:432
610
+ msgid "I love this plugin!"
611
+ msgstr "Me encanta este complemento!"
612
+
613
+ #: inc/php/page.php:433
614
+ msgid "Can I help somehow?"
615
+ msgstr "¿Puedo ayudar de alguna manera?"
616
+
617
+ #: inc/php/page.php:436
618
+ msgid "Yes, any contributions are very welcome!"
619
+ msgstr "Sí, cualquier contribución es muy bienvenida!"
620
+
621
+ #: inc/php/page.php:439
622
  #, php-format
623
+ msgid "Please visit our %s Support Us %s page."
624
+ msgstr "Por favor visite nuestra página de %s Apóyenos %s."
625
+
626
+ #: inc/php/page.php:448
627
+ msgid "Where can I find information about your licenses, payment process and refunds?"
628
  msgstr ""
629
 
630
+ #: inc/php/page.php:453
631
+ #, php-format
632
+ msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
633
+ msgstr ""
634
+
635
+ #: inc/php/page.php:461
636
+ msgid "Where can I find information about your customer support?"
637
+ msgstr ""
638
+
639
+ #: inc/php/page.php:466
640
+ #, php-format
641
+ msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
642
+ msgstr ""
643
+
644
+ #: inc/php/page.php:474
645
+ msgid "Where can I find information about your affiliate program?"
646
+ msgstr ""
647
 
648
+ #: inc/php/page.php:479
649
  #, php-format
650
+ msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
651
+ msgstr ""
652
 
653
+ #: inc/php/page.php:487
654
  msgid "My question wasn't answered here."
655
  msgstr "Mi pregunta no fue contestada aquí."
656
 
657
+ #: inc/php/page.php:492
658
  #, php-format
659
+ msgid "You can ask your question on %s this page %s."
660
+ msgstr "Puede hacer su pregunta en %s esta página %s."
661
+
662
+ #: inc/php/page.php:497
663
+ msgid "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."
664
+ msgstr "Pero ten en cuenta que este complemento es gratuito, y no hay un equipo de soporte especial, así que no tenemos forma de responder a todos."
665
 
666
+ #: inc/php/page.php:508
667
  msgid "Support Us"
668
  msgstr "¡Apoyanos!"
669
 
670
+ #: inc/php/page.php:516 inc/php/settings.php:61 inc/php/sidebar.php:54
671
  msgid "Donate with PayPal"
672
  msgstr "Donar con PayPal"
673
 
674
+ #: inc/php/page.php:523
675
  #, php-format
676
+ msgid "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."
677
+ msgstr "Mi nombre es %s Arthur %s y soy el fundador de %s Space X-Chimp %s, which unites a small international team of young people."
678
+
679
+ #: inc/php/page.php:532
680
+ msgid "Our intention is to create projects that will make this world a better place."
681
+ msgstr "Nuestra intención es crear proyectos que hagan de este mundo un lugar mejor."
682
 
683
+ #: inc/php/page.php:533
684
+ msgid "Our motto is - «Follow your dreams and don’t give up»."
685
  msgstr ""
686
 
687
+ #: inc/php/page.php:534
688
+ msgid "We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
689
+ msgstr "Nos realmente apasionado por nuestro trabajo, nos gusta lo que estamos haciendo y esperamos que también te enriquezcas con nos proyectos."
690
 
691
+ #: inc/php/page.php:537
692
+ 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."
693
+ msgstr "Gastamos mucho tiempo y esfuerzo tratando de asegurarme que los temas, complementos y otras cosas que construyamos sean útiles, y la prueba definitiva para nosotros de que son útiles, es que realmente desea utilizarlos."
694
+
695
+ #: inc/php/page.php:538
696
+ msgid "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."
697
+ msgstr "Pero, somos desarrolladores independientes, sin un ingreso regular, por lo que cada pequeña contribución nos ayuda a cubrir nuestros costos y nos permite dedicar más tiempo a construir cosas para que las personas como usted las disfruten."
698
+
699
+ #: inc/php/page.php:541
700
  msgid "If you appreciate our work, you can buy us a cup of coffee!"
701
  msgstr "Si aprecias mi trabajo, puedes comprarme un café!"
702
 
703
+ #: inc/php/page.php:544
704
  msgid "Thank you for your support!"
705
  msgstr "¡Gracias por tu apoyo!"
706
 
718
 
719
  #: inc/php/settings.php:51
720
  msgid "Save changes"
721
+ msgstr "Guardar cambios"
722
 
723
  #: inc/php/settings.php:56 inc/php/sidebar.php:49
724
  msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
737
  msgstr "Acerca de"
738
 
739
  #: inc/php/sidebar.php:35
740
+ msgid "This plugin gives you the ability to 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."
741
+ msgstr "Este complemento le brinda la posibilidad de agregar de forma fácil y segura sus código PHP personalizado a su sitio web de WordPress, directamente fuera del área de administración de WordPress, sin la necesidad de tener un editor externo."
742
 
743
  #: inc/php/sidebar.php:40
744
  msgid "Help"
767
  #. Author URI of the plugin/theme
768
  msgid "https://www.spacexchimp.com"
769
  msgstr "https://www.spacexchimp.com"
 
 
 
 
 
 
languages/my-custom-functions-fr_FR.mo DELETED
Binary file
languages/my-custom-functions-fr_FR.po DELETED
@@ -1,470 +0,0 @@
1
- # Translation of plugin - My Custom Functions - in French (France)
2
- # This file is distributed under the same license as the plugin - My Custom Functions.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: My Custom Functions\n"
6
- "POT-Creation-Date: 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"
11
- "MIME-Version: 1.0\n"
12
- "Content-Type: text/plain; charset=UTF-8\n"
13
- "Content-Transfer-Encoding: 8bit\n"
14
- "Plural-Forms: nplurals=2; plural=(n > 1);\n"
15
- "X-Generator: Poedit 2.2\n"
16
- "X-Poedit-Basepath: ..\n"
17
- "X-Poedit-WPHeader: my-custom-functions.php\n"
18
- "X-Poedit-SourceCharset: UTF-8\n"
19
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
20
- "X-Poedit-SearchPath-0: .\n"
21
- "X-Poedit-SearchPathExcluded-0: *.js\n"
22
-
23
- #: inc/php/core.php:23
24
- msgid "Settings"
25
- msgstr "Réglages"
26
-
27
- #: inc/php/core.php:33 inc/php/core.php:48
28
- msgid "Upgrade to PRO"
29
- msgstr ""
30
-
31
- #: inc/php/core.php:47
32
- msgid "Donate"
33
- msgstr "Faire un don"
34
-
35
- #: inc/php/core.php:63
36
- msgid "PHP Inserter"
37
- msgstr "PHP Inserter"
38
-
39
- #: inc/php/messages.php:26
40
- msgid "Hello. We are the team of Space X-Chimp."
41
- msgstr ""
42
-
43
- #: inc/php/messages.php:28
44
- #, php-format
45
- msgid "Thank you for installing our plugin! We hope you will love it! %s"
46
- msgstr ""
47
-
48
- #: inc/php/messages.php:68
49
- msgid "You have installed an old version of this plugin."
50
- msgstr ""
51
-
52
- #: inc/php/messages.php:69
53
- msgid "Please update the plugin to the latest version, and all will be fine."
54
- msgstr ""
55
-
56
- #: inc/php/messages.php:91
57
- msgid "Custom code updated successfully."
58
- msgstr "Custom functions mis à jour avec succès."
59
-
60
- #: inc/php/messages.php:110
61
- msgid "Sorry, but your code causes a \"Fatal error\", so it is not applied!"
62
- msgstr "Désolé, mais votre code provoque une \"erreur fatale\" ; il n'est donc pas appliqué."
63
-
64
- #: inc/php/messages.php:111
65
- msgid "Please, check the code and try again."
66
- msgstr "Svp, vérifiez le code et réessayez."
67
-
68
- #: inc/php/page.php:32
69
- #, php-format
70
- msgid "by %s Space X-Chimp %s"
71
- msgstr ""
72
-
73
- #: inc/php/page.php:38
74
- msgid "Version"
75
- msgstr ""
76
-
77
- #: inc/php/page.php:45
78
- msgid "Main"
79
- msgstr ""
80
-
81
- #: inc/php/page.php:46
82
- msgid "Usage"
83
- msgstr ""
84
-
85
- #: inc/php/page.php:47
86
- msgid "F.A.Q."
87
- msgstr ""
88
-
89
- #: inc/php/page.php:48 inc/php/settings.php:54 inc/php/sidebar.php:47
90
- msgid "Support"
91
- msgstr ""
92
-
93
- #: inc/php/page.php:49
94
- msgid "Store"
95
- msgstr ""
96
-
97
- #: inc/php/page.php:65
98
- msgid "Usage Instructions"
99
- msgstr ""
100
-
101
- #: inc/php/page.php:67
102
- msgid "To add your custom PHP code to your website, simply follow these steps:"
103
- msgstr ""
104
-
105
- #: inc/php/page.php:69
106
- msgid "Go to the \"Main\" tab on this page."
107
- msgstr ""
108
-
109
- #: inc/php/page.php:70
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
-
117
- #: inc/php/page.php:71
118
- msgid "Do not wrap your custom PHP code in HTML tags, such as <code>&lt;?php</code>...<code>?&gt;</code>."
119
- msgstr ""
120
-
121
- #: inc/php/page.php:73
122
- #, php-format
123
- msgid "Before use, please read the %s instructions %s in our Blog on what to do in case of a website crash."
124
- msgstr ""
125
-
126
- #: inc/php/page.php:80
127
- msgid "Switch the toggle to the \"ON\" position."
128
- msgstr ""
129
-
130
- #: inc/php/page.php:81
131
- msgid "Click the \"Save changes\" button."
132
- msgstr ""
133
-
134
- #: inc/php/page.php:82
135
- msgid "Enjoy the result of applying your custom PHP code."
136
- msgstr ""
137
-
138
- #: inc/php/page.php:82
139
- msgid "It's that simple!"
140
- msgstr ""
141
-
142
- #: inc/php/page.php:85
143
- #, php-format
144
- msgid "If you want more options, then %s let us know %s and we will be happy to add them."
145
- msgstr ""
146
-
147
- #: inc/php/page.php:99
148
- msgid "Frequently Asked Questions"
149
- msgstr ""
150
-
151
- #: inc/php/page.php:103
152
- msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
153
- msgstr ""
154
-
155
- #: inc/php/page.php:125
156
- msgid "Will this plugin work on my WordPress.COM website?"
157
- msgstr ""
158
-
159
- #: inc/php/page.php:126
160
- msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
161
- msgstr ""
162
-
163
- #: inc/php/page.php:128
164
- msgid "Can I use this plugin on my language?"
165
- msgstr ""
166
-
167
- #: inc/php/page.php:129
168
- msgid "Yes. This plugin is ready for translation and has already been translated into several languages."
169
- msgstr ""
170
-
171
- #: inc/php/page.php:131
172
- #, php-format
173
- msgid "If you want to help translate this plugin then please visit the %s. You can also use the POT file, that is included and placed in the \"languages\" folder, in order to create a translation PO file. Just send the PO file to us at the %s and we will include this translation within the next plugin update."
174
- msgstr ""
175
-
176
- #: inc/php/page.php:136
177
- msgid "Maybe not all existed translations are up to date. You are welcome to contribute corrections!"
178
- msgstr ""
179
-
180
- #: inc/php/page.php:137
181
- msgid "Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!"
182
- msgstr ""
183
-
184
- #: inc/php/page.php:139
185
- msgid "How does it work?"
186
- msgstr ""
187
-
188
- #: inc/php/page.php:140
189
- msgid "On the \"Main\" tab, place your custom PHP code in the code editor field, switch the toggle to the \"ON\" position and click the \"Save changes\" button. Enjoy the result of applying your custom PHP code. It's that simple!"
190
- msgstr ""
191
-
192
- #: inc/php/page.php:142
193
- msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
194
- msgstr ""
195
-
196
- #: inc/php/page.php:143
197
- msgid "Yes. But you need to do it properly, like this:"
198
- msgstr ""
199
-
200
- #: inc/php/page.php:153
201
- msgid "How much of PHP code (characters) I can enter in the code editor?"
202
- msgstr ""
203
-
204
- #: inc/php/page.php:154
205
- msgid "We don't limit the number of characters."
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> &#10145; <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> &#10145; Table <code>wp_options</code> &#10145; Option <code>spacexchimp_p001_settings</code> &#10145; <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
-
405
- #: inc/php/settings.php:30
406
- msgid "Functions (PHP code)"
407
- msgstr "Fonctions (code PHP)"
408
-
409
- #: inc/php/settings.php:32
410
- msgid "NOT SAVED!"
411
- msgstr ""
412
-
413
- #: inc/php/settings.php:46
414
- msgid "Enter your PHP functions here"
415
- msgstr ""
416
-
417
- #: inc/php/settings.php:51
418
- msgid "Save changes"
419
- msgstr "Enregistrer"
420
-
421
- #: inc/php/settings.php:56 inc/php/sidebar.php:49
422
- msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
423
- msgstr "Je suis un développeur indépendant, sans revenus réguliers, aussi chaque modeste contribution m'aide à couvrir les frais et me permet de consacrer plus de temps à créer des choses que vous appréciez."
424
-
425
- #: inc/php/settings.php:63 inc/php/sidebar.php:56
426
- msgid "Thanks for your support!"
427
- msgstr "Merci pour votre soutien !"
428
-
429
- #: inc/php/sidebar.php:16
430
- msgid "We are «Space X-Chimp»"
431
- msgstr ""
432
-
433
- #: inc/php/sidebar.php:33
434
- msgid "About"
435
- msgstr "A propos"
436
-
437
- #: inc/php/sidebar.php:35
438
- msgid "This plugin allows you to 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."
439
- msgstr ""
440
-
441
- #: inc/php/sidebar.php:40
442
- msgid "Help"
443
- msgstr "Aide"
444
-
445
- #: inc/php/sidebar.php:42
446
- msgid "If you have a question, please read the information in the FAQ section."
447
- msgstr "Vous souhaitez nous contacter ? Vous avez besoin d'aide ?"
448
-
449
- #. Plugin Name of the plugin/theme
450
- msgid "My Custom Functions"
451
- msgstr "My Custom Functions"
452
-
453
- #. Plugin URI of the plugin/theme
454
- msgid "https://github.com/ArthurGareginyan/my-custom-functions"
455
- msgstr "https://github.com/ArthurGareginyan/my-custom-functions"
456
-
457
- #. Description of the plugin/theme
458
- msgid "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."
459
- msgstr "Ajoutez facilement et en toute sécurité vos fonctions personnalisées (code PHP) au fichier functions.php directement depuis votre Panneau d'Administration Wordpress, sans passer par un éditeur externe. "
460
-
461
- #. Author of the plugin/theme
462
- msgid "Space X-Chimp"
463
- msgstr "Space X-Chimp"
464
-
465
- #. Author URI of the plugin/theme
466
- msgid "https://www.spacexchimp.com"
467
- msgstr "https://www.spacexchimp.com"
468
-
469
- #~ msgid "Upgrade"
470
- #~ msgstr "Evolution"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 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"
@@ -36,372 +36,671 @@ msgstr "Doe een gift"
36
  msgid "PHP Inserter"
37
  msgstr "PHP Inserter"
38
 
39
- #: inc/php/messages.php:26
40
- msgid "Hello. We are the team of Space X-Chimp."
41
- msgstr "Hallo. Wij zijn het team van Space X-Chimp."
42
 
43
  #: inc/php/messages.php:28
 
 
 
 
44
  #, php-format
45
  msgid "Thank you for installing our plugin! We hope you will love it! %s"
46
  msgstr "Bedankt voor het installeren van onze plug-in! We hopen dat je het geweldig zult vinden! %s"
47
 
48
- #: inc/php/messages.php:68
49
  msgid "You have installed an old version of this plugin."
50
  msgstr "Je hebt een oudere versie van deze plug-in geïnstalleerd."
51
 
52
- #: inc/php/messages.php:69
53
  msgid "Please update the plugin to the latest version, and all will be fine."
54
  msgstr "Update de plug-in naar de nieuwste versie en alles komt goed."
55
 
56
- #: inc/php/messages.php:91
57
  msgid "Custom code updated successfully."
58
  msgstr "Aangepaste functies zijn geüpdated."
59
 
60
- #: inc/php/messages.php:110
61
  msgid "Sorry, but your code causes a \"Fatal error\", so it is not applied!"
62
  msgstr "Sorry, maar uw code veroorzaakt een \"Fatale fout\", dus deze wordt niet toegepast!"
63
 
64
- #: inc/php/messages.php:111
65
  msgid "Please, check the code and try again."
66
  msgstr "Controleer de code, en probeer het opnieuw."
67
 
68
- #: inc/php/page.php:32
69
  #, php-format
70
  msgid "by %s Space X-Chimp %s"
71
  msgstr "door %s Space X-Chimp %s"
72
 
73
- #: inc/php/page.php:38
74
  msgid "Version"
75
  msgstr "Versie"
76
 
77
- #: inc/php/page.php:45
78
  msgid "Main"
79
  msgstr "Hoofd"
80
 
81
- #: inc/php/page.php:46
82
  msgid "Usage"
83
  msgstr "Gebruik"
84
 
85
- #: inc/php/page.php:47
86
  msgid "F.A.Q."
87
  msgstr "F.A.Q."
88
 
89
- #: inc/php/page.php:48 inc/php/settings.php:54 inc/php/sidebar.php:47
90
  msgid "Support"
91
  msgstr "Ondersteuning"
92
 
93
- #: inc/php/page.php:49
94
  msgid "Store"
95
  msgstr "Winkel"
96
 
97
- #: inc/php/page.php:65
98
  msgid "Usage Instructions"
99
  msgstr "Gebruiksinstructies"
100
 
101
- #: inc/php/page.php:67
102
  msgid "To add your custom PHP code to your website, simply follow these steps:"
103
  msgstr "Om je eigen aangepaste functies (de PHP code) aan je website toe te voegen, volg deze simpele stappen:"
104
 
105
- #: inc/php/page.php:69
106
  msgid "Go to the \"Main\" tab on this page."
107
  msgstr "Ga naar het tabblad “Hoofd”."
108
 
109
- #: inc/php/page.php:70
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
 
117
- #: inc/php/page.php:71
118
  msgid "Do not wrap your custom PHP code in HTML tags, such as <code>&lt;?php</code>...<code>?&gt;</code>."
119
- msgstr ""
120
 
121
- #: inc/php/page.php:73
122
  #, php-format
123
  msgid "Before use, please read the %s instructions %s in our Blog on what to do in case of a website crash."
124
  msgstr ""
125
 
126
- #: inc/php/page.php:80
127
  msgid "Switch the toggle to the \"ON\" position."
128
  msgstr "Druk de AAN / UIT-schakelaar naar de stand AAN."
129
 
130
- #: inc/php/page.php:81
131
  msgid "Click the \"Save changes\" button."
132
  msgstr "Klik op de knop \"Wijzigingen opslaan\"."
133
 
134
- #: inc/php/page.php:82
135
  msgid "Enjoy the result of applying your custom PHP code."
136
- msgstr "Geniet van het resultaat door uw PHP-code toe te passen."
137
 
138
- #: inc/php/page.php:82
139
  msgid "It's that simple!"
140
  msgstr "Zo eenvoudig is het!"
141
 
142
- #: inc/php/page.php:85
143
  #, php-format
144
  msgid "If you want more options, then %s let us know %s and we will be happy to add them."
145
  msgstr "Wilt u meer opties dan %s vertel ons %s en wij zullen graag toevoegen."
146
 
147
- #: inc/php/page.php:99
148
  msgid "Frequently Asked Questions"
149
  msgstr "Veel voorkomende vragen (FAQ)"
150
 
151
- #: inc/php/page.php:103
152
  msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
153
  msgstr "Als je een vraag hebt, lees dan eerst de Veel voorkomende vragen (FAQ) hieronder. Misschien staat het antwoord ertussen."
154
 
155
- #: inc/php/page.php:125
156
- msgid "Will this plugin work on my WordPress.COM website?"
157
- msgstr "Werkt deze plugin op mijn WordPress.COM website?"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
158
 
159
- #: inc/php/page.php:126
160
- msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
161
- msgstr "Sorry, deze plug-in is alleen beschikbaar voor gebruik op zelf-gehoste (WordPress.ORG) websites."
162
 
163
- #: inc/php/page.php:128
164
  msgid "Can I use this plugin on my language?"
165
  msgstr "Kan ik deze plug-in in mijn eigen taal gebruiken?"
166
 
167
- #: inc/php/page.php:129
168
- msgid "Yes. This plugin is ready for translation and has already been translated into several languages."
169
- msgstr "Ja. Deze plug-in is klaar voor vertaling en is reeds in verschillende talen vertaald."
170
 
171
- #: inc/php/page.php:131
172
- #, php-format
173
- msgid "If you want to help translate this plugin then please visit the %s. You can also use the POT file, that is included and placed in the \"languages\" folder, in order to create a translation PO file. Just send the PO file to us at the %s and we will include this translation within the next plugin update."
174
- msgstr "Als je wilt helpen deze plug-in te vertalen, bezoek dan de %s. Je kunt ook het POT-bestand gebruiken, dat is inbegrepen en in de map “languages” is geplaatst om een PO-bestand met vertalingen te maken. Stuur het PO-bestand naar ons op de %s en we zullen deze vertaling opnemen in de volgende plug-in update."
 
 
 
175
 
176
- #: inc/php/page.php:136
177
- msgid "Maybe not all existed translations are up to date. You are welcome to contribute corrections!"
178
  msgstr "Misschien zijn niet alle bestaande vertalingen up-to-date of correct. Je bent van harte welkom om correcties bij te dragen!"
179
 
180
- #: inc/php/page.php:137
181
- msgid "Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!"
182
- msgstr "Veel plugin-gebruikers zouden blij zijn als je je vertaling met de community deelt. Bedankt voor je bijdrage!"
183
 
184
- #: inc/php/page.php:139
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
185
  msgid "How does it work?"
186
  msgstr "Hoe werkt het?"
187
 
188
- #: inc/php/page.php:140
189
- msgid "On the \"Main\" tab, place your custom PHP code in the code editor field, switch the toggle to the \"ON\" position and click the \"Save changes\" button. Enjoy the result of applying your custom PHP code. It's that simple!"
190
- msgstr "Plaats op het tabblad “Hoofd” uw PHP-code in het veld, zet de schakelaar in de positie “AAN” en klik op de knop “Wijzigingen opslaan”. Geniet van het resultaat van het toepassen van je PHP-code. Het is zo simpel!"
191
 
192
- #: inc/php/page.php:142
193
  msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
194
  msgstr "Kan ik HTML/CSS/JS code geïntegreerd in PHP-code gebruiken?"
195
 
196
- #: inc/php/page.php:143
197
- msgid "Yes. But you need to do it properly, like this:"
198
- msgstr "Ja. Maar je moet het goed doen, zoals dit:"
199
 
200
- #: inc/php/page.php:153
201
  msgid "How much of PHP code (characters) I can enter in the code editor?"
202
  msgstr "Hoe veel PHP code (tekens) kan ik invoeren?"
203
 
204
- #: inc/php/page.php:154
205
  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 "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> &#10145; <code>PHP Inserter</code>."
317
  msgstr "Ga naar de plug-in instellingen pagina <code>Instellingen</code> &#10145; <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> &#10145; Table <code>wp_options</code> &#10145; Option <code>spacexchimp_p001_settings</code> &#10145; <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> &#10145; Table <code>wp_options</code> &#10145; Option <code>spacexchimp_p001_settings</code> &#10145; <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
 
@@ -423,7 +722,7 @@ msgstr "Wijzigingen opslaan"
423
 
424
  #: inc/php/settings.php:56 inc/php/sidebar.php:49
425
  msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
426
- msgstr "Ik ben een onafhankelijke ontwikkelaar, zonder een vast inkomen, dus elke kleine bijdrage helpt mij mijn kosten te dekken en laat me meer tijd spenderen aan het bouwen van dingen voor mensen zoals jij om van te genieten."
427
 
428
  #: inc/php/settings.php:63 inc/php/sidebar.php:56
429
  msgid "Thanks for your support!"
@@ -431,19 +730,19 @@ msgstr "Bedankt voor uw steun!"
431
 
432
  #: inc/php/sidebar.php:16
433
  msgid "We are «Space X-Chimp»"
434
- msgstr ""
435
 
436
  #: inc/php/sidebar.php:33
437
  msgid "About"
438
  msgstr "Over"
439
 
440
  #: inc/php/sidebar.php:35
441
- msgid "This plugin allows you to 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."
442
  msgstr "Met deze plug-in kunt u eenvoudig en veilig uw aangepaste functies (PHP-code) rechtstreeks toevoegen via uw WordPress-Admin, zonder dat u een externe editor nodig hebt."
443
 
444
  #: inc/php/sidebar.php:40
445
  msgid "Help"
446
- msgstr "Help"
447
 
448
  #: inc/php/sidebar.php:42
449
  msgid "If you have a question, please read the information in the FAQ section."
@@ -451,7 +750,7 @@ msgstr "Als je een vraag hebt, lees dan de informatie in de FAQ-sectie."
451
 
452
  #. Plugin Name of the plugin/theme
453
  msgid "My Custom Functions"
454
- msgstr "My Custom Functions"
455
 
456
  #. Plugin URI of the plugin/theme
457
  msgid "https://github.com/ArthurGareginyan/my-custom-functions"
@@ -468,18 +767,3 @@ msgstr "Space X-Chimp"
468
  #. Author URI of the plugin/theme
469
  msgid "https://www.spacexchimp.com"
470
  msgstr "https://www.spacexchimp.com"
471
-
472
- #~ msgid "An example of PHP code:"
473
- #~ msgstr "Voorbeeld van PHP code:"
474
-
475
- #~ msgid "Please do not wrap your custom PHP code in the <code>&lt;?php</code>...<code>?&gt;</code> HTML tags."
476
- #~ msgstr "Plaat a.u.b. je code niet tussen <code>&lt;?php</code>…<code>?&gt;</code> HTML tags."
477
-
478
- #~ msgid "Before use, please read the instructions on the F.A.Q. tab on what to do in case of a website crash."
479
- #~ msgstr "Lees voor gebruik de instructies op de F.A.Q. Bekijk wat te doen in het geval van een website-crash."
480
-
481
- #~ msgid "Hello! My name is %s Arthur %s and I'm the founder of %s Space X-Chimp %s."
482
- #~ msgstr "Hallo! Mijn naam is %s Arthur %s en ik ben de oprichter van %s Space X-Chimp %s."
483
-
484
- #~ msgid "My intention is to create projects that will make this world a better place. I'm really passionate about my work, I like what I'm doing and hope that you will be enriched by my projects too."
485
- #~ msgstr "Het is mijn bedoeling om projecten te maken die van deze wereld een betere plek maken. Ik ben echt gepassioneerd over mijn werk, ik vind het leuk wat ik doe en hoop dat je ook verrijkt zult worden door mijn projecten."
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: My Custom Functions\n"
6
+ "POT-Creation-Date: 2019-02-20 23:19+0300\n"
7
+ "PO-Revision-Date: 2019-02-20 23:19+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Dutch\n"
10
  "Language: nl_NL\n"
36
  msgid "PHP Inserter"
37
  msgstr "PHP Inserter"
38
 
39
+ #: inc/php/messages.php:27 inc/php/page.php:520
40
+ msgid "Hello!"
41
+ msgstr "Hallo!"
42
 
43
  #: inc/php/messages.php:28
44
+ msgid "We are the team of Space X-Chimp."
45
+ msgstr "Wij zijn het team van Space X-Chimp."
46
+
47
+ #: inc/php/messages.php:33
48
  #, php-format
49
  msgid "Thank you for installing our plugin! We hope you will love it! %s"
50
  msgstr "Bedankt voor het installeren van onze plug-in! We hopen dat je het geweldig zult vinden! %s"
51
 
52
+ #: inc/php/messages.php:74
53
  msgid "You have installed an old version of this plugin."
54
  msgstr "Je hebt een oudere versie van deze plug-in geïnstalleerd."
55
 
56
+ #: inc/php/messages.php:75
57
  msgid "Please update the plugin to the latest version, and all will be fine."
58
  msgstr "Update de plug-in naar de nieuwste versie en alles komt goed."
59
 
60
+ #: inc/php/messages.php:99
61
  msgid "Custom code updated successfully."
62
  msgstr "Aangepaste functies zijn geüpdated."
63
 
64
+ #: inc/php/messages.php:119
65
  msgid "Sorry, but your code causes a \"Fatal error\", so it is not applied!"
66
  msgstr "Sorry, maar uw code veroorzaakt een \"Fatale fout\", dus deze wordt niet toegepast!"
67
 
68
+ #: inc/php/messages.php:120
69
  msgid "Please, check the code and try again."
70
  msgstr "Controleer de code, en probeer het opnieuw."
71
 
72
+ #: inc/php/page.php:33
73
  #, php-format
74
  msgid "by %s Space X-Chimp %s"
75
  msgstr "door %s Space X-Chimp %s"
76
 
77
+ #: inc/php/page.php:39
78
  msgid "Version"
79
  msgstr "Versie"
80
 
81
+ #: inc/php/page.php:46
82
  msgid "Main"
83
  msgstr "Hoofd"
84
 
85
+ #: inc/php/page.php:47
86
  msgid "Usage"
87
  msgstr "Gebruik"
88
 
89
+ #: inc/php/page.php:48
90
  msgid "F.A.Q."
91
  msgstr "F.A.Q."
92
 
93
+ #: inc/php/page.php:49 inc/php/settings.php:54 inc/php/sidebar.php:47
94
  msgid "Support"
95
  msgstr "Ondersteuning"
96
 
97
+ #: inc/php/page.php:50
98
  msgid "Store"
99
  msgstr "Winkel"
100
 
101
+ #: inc/php/page.php:66
102
  msgid "Usage Instructions"
103
  msgstr "Gebruiksinstructies"
104
 
105
+ #: inc/php/page.php:68
106
  msgid "To add your custom PHP code to your website, simply follow these steps:"
107
  msgstr "Om je eigen aangepaste functies (de PHP code) aan je website toe te voegen, volg deze simpele stappen:"
108
 
109
+ #: inc/php/page.php:70
110
  msgid "Go to the \"Main\" tab on this page."
111
  msgstr "Ga naar het tabblad “Hoofd”."
112
 
113
+ #: inc/php/page.php:72
114
  msgid "Place your custom PHP code in the code editor field."
115
  msgstr "Plaats je PHP code in het veld."
116
 
117
+ #: inc/php/page.php:75 inc/php/page.php:79
118
  msgid "Note!"
119
  msgstr "Opmerking!"
120
 
121
+ #: inc/php/page.php:76
122
  msgid "Do not wrap your custom PHP code in HTML tags, such as <code>&lt;?php</code>...<code>?&gt;</code>."
123
+ msgstr "Plaat a.u.b. je PHP code niet tussen <code>&lt;?php</code>...<code>?&gt;</code> HTML tags."
124
 
125
+ #: inc/php/page.php:82
126
  #, php-format
127
  msgid "Before use, please read the %s instructions %s in our Blog on what to do in case of a website crash."
128
  msgstr ""
129
 
130
+ #: inc/php/page.php:89
131
  msgid "Switch the toggle to the \"ON\" position."
132
  msgstr "Druk de AAN / UIT-schakelaar naar de stand AAN."
133
 
134
+ #: inc/php/page.php:90
135
  msgid "Click the \"Save changes\" button."
136
  msgstr "Klik op de knop \"Wijzigingen opslaan\"."
137
 
138
+ #: inc/php/page.php:91 inc/php/page.php:222
139
  msgid "Enjoy the result of applying your custom PHP code."
140
+ msgstr "Geniet van het resultaat van het toepassen van je PHP-code."
141
 
142
+ #: inc/php/page.php:91 inc/php/page.php:223
143
  msgid "It's that simple!"
144
  msgstr "Zo eenvoudig is het!"
145
 
146
+ #: inc/php/page.php:96
147
  #, php-format
148
  msgid "If you want more options, then %s let us know %s and we will be happy to add them."
149
  msgstr "Wilt u meer opties dan %s vertel ons %s en wij zullen graag toevoegen."
150
 
151
+ #: inc/php/page.php:110
152
  msgid "Frequently Asked Questions"
153
  msgstr "Veel voorkomende vragen (FAQ)"
154
 
155
+ #: inc/php/page.php:114
156
  msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
157
  msgstr "Als je een vraag hebt, lees dan eerst de Veel voorkomende vragen (FAQ) hieronder. Misschien staat het antwoord ertussen."
158
 
159
+ #: inc/php/page.php:139
160
+ msgid "Where can I find a documentation for this plugin?"
161
+ msgstr ""
162
+
163
+ #: inc/php/page.php:144
164
+ #, php-format
165
+ msgid "Please visit our %s Documentation site %s to view documentation."
166
+ msgstr ""
167
+
168
+ #: inc/php/page.php:152
169
+ msgid "Will this plugin work on my wordpress.COM website?"
170
+ msgstr "Werkt deze plugin op mijn wordpress.COM website?"
171
+
172
+ #: inc/php/page.php:155
173
+ msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
174
+ msgstr "Sorry, deze plug-in is alleen beschikbaar voor gebruik op zelf-gehoste (wordpress.ORG) websites."
175
+
176
+ #: inc/php/page.php:157
177
+ msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
178
+ msgstr ""
179
+
180
+ #: inc/php/page.php:158
181
+ msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
182
+ msgstr ""
183
+
184
+ #: inc/php/page.php:161
185
+ #, php-format
186
+ msgid "You can learn more about the difference here: %s ."
187
+ msgstr ""
188
+
189
+ #: inc/php/page.php:168
190
+ msgid "Will this plugin work/compatible with the theme I use?"
191
+ msgstr ""
192
+
193
+ #: inc/php/page.php:171
194
+ msgid "This plugin is compatible with most themes."
195
+ msgstr ""
196
+
197
+ #: inc/php/page.php:172
198
+ msgid "But, unfortunately, we cannot check it with all third-party themes (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party theme."
199
+ msgstr ""
200
+
201
+ #: inc/php/page.php:173
202
+ msgid "We constantly check this plugin for compatibility with third-party themes."
203
+ msgstr ""
204
+
205
+ #: inc/php/page.php:174
206
+ msgid "If we find that this plugin is incompatible with a third-party theme, and if we can fix it on our part, we release an update of our plugin to fix the problem."
207
+ msgstr ""
208
+
209
+ #: inc/php/page.php:176
210
+ msgid "If you find a conflict between our plugin and a third-party theme, please let us know and we will definitely release an update of our plugin to fix the problem."
211
+ msgstr ""
212
+
213
+ #: inc/php/page.php:180
214
+ msgid "Will this plugin work/compatible with other plugins that I use?"
215
+ msgstr ""
216
+
217
+ #: inc/php/page.php:183
218
+ msgid "This plugin is compatible with most plugins."
219
+ msgstr ""
220
+
221
+ #: inc/php/page.php:184
222
+ msgid "But, unfortunately, we cannot check it with all third-party plugins (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party plugin."
223
+ msgstr ""
224
+
225
+ #: inc/php/page.php:185
226
+ msgid "We constantly check this plugin for compatibility with third-party plugins."
227
+ msgstr ""
228
+
229
+ #: inc/php/page.php:186
230
+ msgid "If we find that this plugin is incompatible with a third-party plugin, and if we can fix it on our part, we release an update of our plugin to fix the problem."
231
+ msgstr ""
232
 
233
+ #: inc/php/page.php:188
234
+ msgid "If you find a conflict between our plugin and a third-party plugin, please let us know and we will definitely release an update of our plugin to fix the problem."
235
+ msgstr ""
236
 
237
+ #: inc/php/page.php:192
238
  msgid "Can I use this plugin on my language?"
239
  msgstr "Kan ik deze plug-in in mijn eigen taal gebruiken?"
240
 
241
+ #: inc/php/page.php:195 inc/php/page.php:230
242
+ msgid "Yes."
243
+ msgstr "Ja."
244
 
245
+ #: inc/php/page.php:196
246
+ msgid "This plugin is ready for translation and has already been translated into several languages."
247
+ msgstr "Deze plug-in is klaar voor vertaling en is reeds in verschillende talen vertaald."
248
+
249
+ #: inc/php/page.php:197
250
+ msgid "But If your language is not available then you can make one."
251
+ msgstr ""
252
 
253
+ #: inc/php/page.php:198
254
+ msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
255
  msgstr "Misschien zijn niet alle bestaande vertalingen up-to-date of correct. Je bent van harte welkom om correcties bij te dragen!"
256
 
257
+ #: inc/php/page.php:199
258
+ msgid "Many of plugin users would be delighted if you share your translation with the community."
259
+ msgstr "Veel plugin-gebruikers zouden blij zijn als je je vertaling met de community deelt."
260
 
261
+ #: inc/php/page.php:200
262
+ msgid "Thanks for your contribution!"
263
+ msgstr "Bedankt voor je bijdrage!"
264
+
265
+ #: inc/php/page.php:204
266
+ #, php-format
267
+ msgid "If you want to help translate this plugin, please visit the %s."
268
+ msgstr "Als je wilt helpen deze plug-in te vertalen, bezoek dan de %s."
269
+
270
+ #: inc/php/page.php:208
271
+ msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
272
+ msgstr "Je kunt ook het POT-bestand gebruiken, dat is inbegrepen en in de map “languages” is geplaatst om een PO-bestand met vertalingen te maken."
273
+
274
+ #: inc/php/page.php:211
275
+ #, php-format
276
+ msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
277
+ msgstr "Stuur het PO-bestand naar ons ( %s ) en we zullen deze vertaling opnemen in de volgende plug-in update."
278
+
279
+ #: inc/php/page.php:218
280
  msgid "How does it work?"
281
  msgstr "Hoe werkt het?"
282
 
283
+ #: inc/php/page.php:221
284
+ msgid "On the \"Main\" tab, place your custom PHP code in the code editor field, switch the toggle to the \"ON\" position and click the \"Save changes\" button."
285
+ msgstr "Plaats op het tabblad “Hoofd” uw PHP-code in het veld, zet de schakelaar in de positie “AAN” en klik op de knop “Wijzigingen opslaan”."
286
 
287
+ #: inc/php/page.php:227
288
  msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
289
  msgstr "Kan ik HTML/CSS/JS code geïntegreerd in PHP-code gebruiken?"
290
 
291
+ #: inc/php/page.php:231
292
+ msgid "But you need to do it properly, like this:"
293
+ msgstr "Maar je moet het goed doen, zoals dit:"
294
 
295
+ #: inc/php/page.php:243
296
  msgid "How much of PHP code (characters) I can enter in the code editor?"
297
  msgstr "Hoe veel PHP code (tekens) kan ik invoeren?"
298
 
299
+ #: inc/php/page.php:246
300
  msgid "We don't limit the number of characters."
301
  msgstr "Er is geen beperking op het aantal tekens."
302
 
303
+ #: inc/php/page.php:250
304
  msgid "Does this plugin requires any modification of the theme?"
305
  msgstr "Heeft deze plug-in enige aanpassing van het thema nodig?"
306
 
307
+ #: inc/php/page.php:253 inc/php/page.php:261
308
+ msgid "Absolutely not."
309
+ msgstr "Absoluut niet."
310
 
311
+ #: inc/php/page.php:254
312
+ msgid "This plugin is configurable entirely from the plugin settings page."
313
+ msgstr "Deze plug-in kan volledig worden geconfigureerd via de pagina met plugin-instellingen."
314
+
315
+ #: inc/php/page.php:258
316
  msgid "Does this require any knowledge of HTML or CSS?"
317
  msgstr "Vereist dit enige kennis van HTML of CSS?"
318
 
319
+ #: inc/php/page.php:262
320
+ msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
321
+ msgstr "Deze plug-in kan worden geconfigureerd zonder kennis van HTML of CSS, met behulp van de eenvoudig te gebruiken plugin-instellingenpagina."
322
 
323
+ #: inc/php/page.php:266
324
  msgid "Can I add my custom PHP code to a specific page of my website?"
325
  msgstr ""
326
 
327
+ #: inc/php/page.php:269
328
+ msgid "For now, this plugin does not have an option to apply the custom PHP code only on specific pages."
329
+ msgstr ""
330
+
331
+ #: inc/php/page.php:270
332
+ msgid "We plan to add this feature soon."
333
+ msgstr ""
334
+
335
+ #: inc/php/page.php:271
336
+ msgid "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."
337
+ msgstr ""
338
+
339
+ #: inc/php/page.php:272
340
+ msgid "You need something like this:"
341
  msgstr ""
342
 
343
+ #: inc/php/page.php:288
344
+ msgid "It's not working."
345
+ msgstr "Het werkt niet."
346
+
347
+ #: inc/php/page.php:289 inc/php/page.php:305 inc/php/page.php:331
348
+ msgid "What could be wrong?"
349
+ msgstr "Wat kan er fout zijn?"
350
+
351
+ #: inc/php/page.php:292
352
+ msgid "As with every plugin, it's possible that things don't work."
353
+ msgstr "Zoals met elke plug-in, is het mogelijk dat dingen niet werken."
354
+
355
+ #: inc/php/page.php:293
356
+ msgid "It's impossible to tell what could be wrong exactly."
357
+ msgstr "Het is onmogelijk om precies te vertellen wat er precies mis zou kunnen zijn."
358
+
359
+ #: inc/php/page.php:294
360
+ msgid "The most common reason for this is a web browser's cache."
361
+ msgstr "De meest voorkomende reden hiervoor is de cache van een webbrowser."
362
+
363
+ #: inc/php/page.php:295
364
+ msgid "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load."
365
+ msgstr "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."
366
 
367
+ #: inc/php/page.php:296
368
+ msgid "This is called the browser's cache."
369
+ msgstr "Dit wordt de cache van de browser genoemd."
370
+
371
+ #: inc/php/page.php:297
372
+ msgid "Clearing your browser's cache may solve the problem."
373
+ msgstr "Het wissen van de cache van uw browser kan het probleem oplossen."
374
+
375
+ #: inc/php/page.php:299
376
+ msgid "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."
377
+ msgstr "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."
378
+
379
+ #: inc/php/page.php:300 inc/php/page.php:401
380
+ msgid "Please include as much information as possible, including a link to your website where the problem can be seen."
381
+ msgstr "Voeg zoveel mogelijk informatie toe, inclusief een link naar uw website waar het probleem kan worden gezien."
382
+
383
+ #: inc/php/page.php:304
384
+ msgid "On the plugin settings page, an error message appears."
385
+ msgstr "Op de plug-in instellingen pagina verschijnt een fout-melding."
386
+
387
+ #: inc/php/page.php:308
388
  msgid "Here are a few of the most likely causes of the error message:"
389
  msgstr "Hier zijn enkele van de meest waarschijnlijke oorzaken van de foutmelding:"
390
 
391
+ #: inc/php/page.php:311
392
+ msgid "You make a syntax error in the code that you have entered."
393
+ msgstr "Je maakt een syntaxisfout in de code die je hebt ingevoerd."
394
 
395
+ #: inc/php/page.php:312
396
+ msgid "Check the syntax of your code and try again."
397
+ msgstr "Controleer de syntaxis van je code en probeer het opnieuw."
398
 
399
+ #: inc/php/page.php:315
400
+ msgid "You entered two functions with the same name."
401
+ msgstr "U hebt twee functies met dezelfde naam ingevoerd."
402
 
403
+ #: inc/php/page.php:316
404
+ msgid "Use a unique names for your functions."
405
+ msgstr "Gebruik een unieke naam voor uw functies."
406
 
407
+ #: inc/php/page.php:319
408
+ msgid "You have entered function with a name that is already occupied by another function."
409
+ msgstr "Je hebt de functie ingevoerd met een naam die al in gebruik is door een andere functie."
410
+
411
+ #: inc/php/page.php:320
412
+ msgid "Use a unique name for your function."
413
+ msgstr "Gebruik een unieke naam voor uw functies."
414
+
415
+ #: inc/php/page.php:323
416
+ msgid "You are trying to overwrite an existing function (of WordPress, theme, or plugin)."
417
+ msgstr "Je probeert een bestaande functie (van WordPress, thema of plug-in) te overschrijven."
418
+
419
+ #: inc/php/page.php:324
420
+ msgid "Instead, use filters and hooks."
421
+ msgstr "Gebruik in plaats daarvan filters en haken."
422
+
423
+ #: inc/php/page.php:330
424
+ msgid "My custom PHP code is not working."
425
  msgstr ""
426
 
427
+ #: inc/php/page.php:334
428
+ 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."
429
  msgstr ""
430
 
431
+ #: inc/php/page.php:335
432
+ msgid "Here are a few of the most likely causes of the issue:"
433
+ msgstr "Hier zijn enkele van de meest waarschijnlijke oorzaken van de foutmelding:"
434
+
435
+ #: inc/php/page.php:337
436
  msgid "You have a typo during the insertion of your custom PHP code."
437
  msgstr ""
438
 
439
+ #: inc/php/page.php:338
440
  msgid "Your custom PHP code has a syntax error."
441
  msgstr ""
442
 
443
+ #: inc/php/page.php:339
 
444
  msgid "Your custom PHP code is incorrect and may not work."
445
  msgstr ""
446
 
447
+ #: inc/php/page.php:344
448
+ msgid "What to do if this plugin crashed the website?"
449
+ msgstr "Wat te doen als deze plug-in de website heeft gecrasht?"
450
 
451
+ #: inc/php/page.php:347
452
+ msgid "This plugin has a built-in functions for checking the custom code for syntax errors, duplicate functions names, and etc."
453
+ msgstr "Deze plugin heeft ingebouwde functies voor het controleren van de aangepaste code op syntaxisfouten, dubbele functies namen en enz."
454
 
455
+ #: inc/php/page.php:348
456
+ msgid "But plugin is not perfect, so there are times when the entered custom code causes the error and white screen (WSOD)."
457
+ msgstr "Maar plugin is niet perfect, het is dus mogelijk dat de ingevoerde code een foutbericht en een wit scherm (WSOD) veroorzaakt."
458
 
459
+ #: inc/php/page.php:349
460
+ msgid "This is due to the fact that your custom code has a syntax error that this plugin could not detect."
461
+ msgstr "Dit is de wijten aan het feit dat uw aangepaste code een syntaxisfout heeft, die door deze plugin kon niet worden gevonden."
462
 
463
+ #: inc/php/page.php:350
464
+ msgid "When this happens with you, please perform the following steps."
465
+ msgstr "Wanneer dit met gebeurt, voer dan de volgende stappen uit."
466
 
467
+ #: inc/php/page.php:353
468
+ msgid "Access your server via FTP or SFTP."
469
+ msgstr "Benader je server via FTP of SFTP."
470
 
471
+ #: inc/php/page.php:354
472
+ msgid "If you aren't sure how usually your web hosting provider will have instructions somewhere on their website."
473
+ msgstr "Als u niet zeker bent hoe, vaak heeft je webhostingprovider ergens op hun website instructies staan."
474
 
475
+ #: inc/php/page.php:357
476
+ msgid "Browse to the directory <code>wp-content/plugins/my-custom-functions/</code>."
477
+ msgstr "Blader naar de map <code>wp-content/plugins/my-custom-functions/</code> ."
478
 
479
+ #: inc/php/page.php:358
480
+ msgid "Please contact your web hosting company to get help if you can't find this folder."
481
+ msgstr "Neem contact op met je web hosting bedrijf om hulp te krijgen als je deze map niet kunt vinden."
482
+
483
+ #: inc/php/page.php:361
484
+ msgid "Rename the file <code>START</code> to <code>STOP</code>."
485
+ msgstr "Hernoem het bestand <code>START</code> naar <code>STOP</code>."
486
+
487
+ #: inc/php/page.php:362
488
+ msgid "This will stop the execution of your custom code."
489
+ msgstr "Hiermee stopt u het uitvoeren van uw aangepaste code."
490
+
491
+ #: inc/php/page.php:364
492
  msgid "Log in to Admin Area of your WordPress website."
493
  msgstr "Log in op het Admin-gedeelte van uw WordPress-website."
494
 
495
+ #: inc/php/page.php:365
496
  msgid "Go to the plugin settings page <code>Settings</code> &#10145; <code>PHP Inserter</code>."
497
  msgstr "Ga naar de plug-in instellingen pagina <code>Instellingen</code> &#10145; <code>PHP Inserter</code>."
498
 
499
+ #: inc/php/page.php:366
500
  msgid "Edit/fix your custom PHP code that you entered before the crash."
501
  msgstr "Edit/repareer je custos code welke je hebt ingevoerd voor de crash."
502
 
503
+ #: inc/php/page.php:367
504
  msgid "Return to the plugin folder and rename the file <code>STOP</code> to <code>START</code> and you're done!"
505
  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!"
506
 
507
+ #: inc/php/page.php:369
508
+ msgid "This plugin stored you entered code in the database of your website."
509
+ msgstr "Deze plug-in heeft de door jouw ingevoerde code opgeslagen in de database van je website."
510
 
511
+ #: inc/php/page.php:370
512
+ msgid "For getting your code, you also can go to the <code>Database</code> &#10145; Table <code>wp_options</code> &#10145; Option <code>spacexchimp_p001_settings</code> &#10145; <code>option_value</code>."
513
+ msgstr "Om je code te verkrijgen, kun je ook naar <code>Database</code> &#10145; Table <code>wp_options</code> &#10145; Option <code>spacexchimp_p001_settings</code> &#10145; <code>option_value</code> gaan."
514
+
515
+ #: inc/php/page.php:372
516
  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."
517
  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."
518
 
519
+ #: inc/php/page.php:376
520
+ msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
521
+ msgstr "De laatste Wordpress update zorgt ervoor dat ik mijn website niet kan bewerken als ik deze plugin gebruik."
522
+
523
+ #: inc/php/page.php:377
524
+ msgid "Why is this?"
525
+ msgstr "Waarom is dit?"
526
+
527
+ #: inc/php/page.php:380
528
+ msgid "This plugin can not cause such problem."
529
+ msgstr "Deze plug-in kan zo’n probleem niet veroorzaken."
530
+
531
+ #: inc/php/page.php:381
532
+ msgid "More likely, the problem are related to the settings of the website."
533
+ msgstr "Waarschijnlijker is het probleem gerelateerd aan de instellingen van de website."
534
+
535
+ #: inc/php/page.php:382
536
+ msgid "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."
537
+ msgstr "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."
538
 
539
+ #: inc/php/page.php:383
540
+ msgid "Also please try to re-login to the website, this too can help."
541
+ msgstr "Probeer ook opnieuw in te loggen op de website, ook dit kan helpen."
542
 
543
+ #: inc/php/page.php:387
544
  msgid "Where to report bug if found?"
545
  msgstr "Waar kan een bug gerapporteerd worden indien gevonden?"
546
 
547
+ #: inc/php/page.php:390
548
+ msgid "Bug reports are very welcome!"
549
+ msgstr "Bugrapporten zijn van harte welkom!"
550
+
551
+ #: inc/php/page.php:393
552
  #, php-format
553
+ msgid "Please visit our %s contact page %s and report."
554
+ msgstr "Ga naar onze %s contactpagina %s en rapporteer."
555
+
556
+ #: inc/php/page.php:398 inc/php/page.php:427
557
+ msgid "Please do not forget to specify the name of the plugin."
558
+ msgstr "Vergeet alsjeblieft niet om de naam van de plug-in te specificeren."
559
+
560
+ #: inc/php/page.php:399 inc/php/page.php:428 inc/php/page.php:444
561
+ msgid "Thank you!"
562
+ msgstr "Dank je!"
563
+
564
+ #: inc/php/page.php:402
565
+ msgid "Describe in more detail what exactly you are seeing."
566
+ msgstr ""
567
+
568
+ #: inc/php/page.php:403
569
+ msgid "Here are some examples:"
570
+ msgstr ""
571
+
572
+ #: inc/php/page.php:406
573
+ msgid "Elements of the plugin settings page are not working."
574
+ msgstr ""
575
+
576
+ #: inc/php/page.php:407
577
+ msgid "An error message is displayed on the plugin settings page."
578
+ msgstr ""
579
+
580
+ #: inc/php/page.php:408
581
+ msgid "An error message is displayed on the front end of website."
582
+ msgstr ""
583
+
584
+ #: inc/php/page.php:409
585
+ msgid "An error message is displayed on the back end of website."
586
+ msgstr ""
587
 
588
+ #: inc/php/page.php:410
589
+ msgid "Custom code is inserted on the plugin settings page, but it is not applied on the website."
590
+ msgstr ""
591
+
592
+ #: inc/php/page.php:411
593
+ msgid "Website is crashed."
594
+ msgstr ""
595
+
596
+ #: inc/php/page.php:416
597
  msgid "Where to share any ideas or suggestions to make the plugin better?"
598
  msgstr "Waar kan ik ideeën of suggesties delen om de plug-in beter te maken?"
599
 
600
+ #: inc/php/page.php:419
601
+ msgid "Any suggestions are very welcome!"
602
+ msgstr "Alle suggesties zijn van harte welkom!"
603
+
604
+ #: inc/php/page.php:422
605
  #, php-format
606
+ msgid "Please visit our %s contact page %s."
607
+ msgstr "Ga naar onze %s contactpagina %s."
608
 
609
+ #: inc/php/page.php:432
610
+ msgid "I love this plugin!"
611
+ msgstr "Ik ben dol op deze plug-in!"
612
+
613
+ #: inc/php/page.php:433
614
+ msgid "Can I help somehow?"
615
+ msgstr "Kan ik op de een of andere manier helpen?"
616
+
617
+ #: inc/php/page.php:436
618
+ msgid "Yes, any contributions are very welcome!"
619
+ msgstr "Ja, alle bijdragen zijn van harte welkom!"
620
+
621
+ #: inc/php/page.php:439
622
+ #, php-format
623
+ msgid "Please visit our %s Support Us %s page."
624
+ msgstr "Ga naar onze %s Support Us %s."
625
+
626
+ #: inc/php/page.php:448
627
+ msgid "Where can I find information about your licenses, payment process and refunds?"
628
+ msgstr ""
629
+
630
+ #: inc/php/page.php:453
631
+ #, php-format
632
+ msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
633
+ msgstr ""
634
 
635
+ #: inc/php/page.php:461
636
+ msgid "Where can I find information about your customer support?"
637
+ msgstr ""
638
+
639
+ #: inc/php/page.php:466
640
+ #, php-format
641
+ msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
642
+ msgstr ""
643
+
644
+ #: inc/php/page.php:474
645
+ msgid "Where can I find information about your affiliate program?"
646
+ msgstr ""
647
+
648
+ #: inc/php/page.php:479
649
  #, php-format
650
+ msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
651
+ msgstr ""
652
 
653
+ #: inc/php/page.php:487
654
  msgid "My question wasn't answered here."
655
  msgstr "Mij vraag is hier niet beantwoord."
656
 
657
+ #: inc/php/page.php:492
658
  #, php-format
659
+ msgid "You can ask your question on %s this page %s."
660
+ msgstr "Je kunt je vraag op %s deze pagina %s stellen."
661
 
662
+ #: inc/php/page.php:497
663
+ msgid "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."
664
+ msgstr "Maar houd er rekening mee dat deze plug-in gratis is en er geen speciaal ondersteuningsteam is, dus we kunnen niet iedereen antwoorden."
665
+
666
+ #: inc/php/page.php:508
667
  msgid "Support Us"
668
  msgstr "Ondersteun ons"
669
 
670
+ #: inc/php/page.php:516 inc/php/settings.php:61 inc/php/sidebar.php:54
671
  msgid "Donate with PayPal"
672
  msgstr "Doneer via PayPal"
673
 
674
+ #: inc/php/page.php:523
675
  #, php-format
676
+ msgid "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."
677
+ msgstr "Mijn naam is %s Arthur %s en ik ben de oprichter van %s Space X-Chimp %s, which unites a small international team of young people."
678
 
679
+ #: inc/php/page.php:532
680
+ msgid "Our intention is to create projects that will make this world a better place."
681
+ msgstr "Het is onze bedoeling om projecten te maken die van deze wereld een betere plek maken."
682
+
683
+ #: inc/php/page.php:533
684
+ msgid "Our motto is - «Follow your dreams and don’t give up»."
685
  msgstr ""
686
 
687
+ #: inc/php/page.php:534
688
+ msgid "We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
689
+ msgstr "We zijn echt gepassioneerd over ons werk, we vind het leuk wat we doe en hoop dat je ook verrijkt zult worden door ons projecten."
690
+
691
+ #: inc/php/page.php:537
692
+ 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."
693
+ msgstr "We besteden veel tijd en moeite om ervoor te zorgen dat de thema's, plug-ins en andere dingen die we maak nuttig zijn, en het ultieme bewijs daarvan is dat je ze echt wilt gebruiken."
694
+
695
+ #: inc/php/page.php:538
696
+ msgid "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."
697
+ msgstr "We zijn een onafhankelijke ontwikkelaar, zonder een vast inkomen, dus elke kleine bijdrage helpt ons onze kosten te dekken en laat ons meer tijd spenderen aan het bouwen van dingen voor mensen zoals jij om van te genieten."
698
 
699
+ #: inc/php/page.php:541
700
  msgid "If you appreciate our work, you can buy us a cup of coffee!"
701
+ msgstr "Als je ons werk waardeert, kun je een koffie voor ons kopen!"
702
 
703
+ #: inc/php/page.php:544
704
  msgid "Thank you for your support!"
705
  msgstr "Bedankt voor je ondersteuning!"
706
 
722
 
723
  #: inc/php/settings.php:56 inc/php/sidebar.php:49
724
  msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
725
+ msgstr ""
726
 
727
  #: inc/php/settings.php:63 inc/php/sidebar.php:56
728
  msgid "Thanks for your support!"
730
 
731
  #: inc/php/sidebar.php:16
732
  msgid "We are «Space X-Chimp»"
733
+ msgstr "Wij zijn «Space X-Chimp»"
734
 
735
  #: inc/php/sidebar.php:33
736
  msgid "About"
737
  msgstr "Over"
738
 
739
  #: inc/php/sidebar.php:35
740
+ msgid "This plugin gives you the ability to 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."
741
  msgstr "Met deze plug-in kunt u eenvoudig en veilig uw aangepaste functies (PHP-code) rechtstreeks toevoegen via uw WordPress-Admin, zonder dat u een externe editor nodig hebt."
742
 
743
  #: inc/php/sidebar.php:40
744
  msgid "Help"
745
+ msgstr "Helpen"
746
 
747
  #: inc/php/sidebar.php:42
748
  msgid "If you have a question, please read the information in the FAQ section."
750
 
751
  #. Plugin Name of the plugin/theme
752
  msgid "My Custom Functions"
753
+ msgstr "Mijn Persoonlijke Functies"
754
 
755
  #. Plugin URI of the plugin/theme
756
  msgid "https://github.com/ArthurGareginyan/my-custom-functions"
767
  #. Author URI of the plugin/theme
768
  msgid "https://www.spacexchimp.com"
769
  msgstr "https://www.spacexchimp.com"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 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"
@@ -22,7 +22,7 @@ msgstr ""
22
 
23
  #: inc/php/core.php:23
24
  msgid "Settings"
25
- msgstr "Параметры"
26
 
27
  #: inc/php/core.php:33 inc/php/core.php:48
28
  msgid "Upgrade to PRO"
@@ -30,378 +30,677 @@ msgstr "Обновить до PRO"
30
 
31
  #: inc/php/core.php:47
32
  msgid "Donate"
33
- msgstr "Пожертвовать"
34
 
35
  #: inc/php/core.php:63
36
  msgid "PHP Inserter"
37
  msgstr "PHP Inserter"
38
 
39
- #: inc/php/messages.php:26
40
- msgid "Hello. We are the team of Space X-Chimp."
41
- msgstr "Привет! Мы - команда Space X-Chimp."
42
 
43
  #: inc/php/messages.php:28
 
 
 
 
44
  #, php-format
45
  msgid "Thank you for installing our plugin! We hope you will love it! %s"
46
  msgstr "Благодарим вас за установку нашего плагина! Надеемся, он вам полюбится! %s"
47
 
48
- #: inc/php/messages.php:68
49
  msgid "You have installed an old version of this plugin."
50
  msgstr "Вы установили устаревшую версию этого плагина."
51
 
52
- #: inc/php/messages.php:69
53
  msgid "Please update the plugin to the latest version, and all will be fine."
54
  msgstr "Пожалуйста, обновите плагин до последней версии и всё будет отлично."
55
 
56
- #: inc/php/messages.php:91
57
  msgid "Custom code updated successfully."
58
  msgstr "Пользовательский код успешно обновлён."
59
 
60
- #: inc/php/messages.php:110
61
  msgid "Sorry, but your code causes a \"Fatal error\", so it is not applied!"
62
  msgstr "Извините, но ваш код вызывает \"Fatal error\", так что он не будет применён!"
63
 
64
- #: inc/php/messages.php:111
65
  msgid "Please, check the code and try again."
66
  msgstr "Пожалуйста, проверьте код и попробуйте ещё раз."
67
 
68
- #: inc/php/page.php:32
69
  #, php-format
70
  msgid "by %s Space X-Chimp %s"
71
  msgstr "от %s Space X-Chimp %s"
72
 
73
- #: inc/php/page.php:38
74
  msgid "Version"
75
  msgstr "Версия"
76
 
77
- #: inc/php/page.php:45
78
  msgid "Main"
79
  msgstr "Главная"
80
 
81
- #: inc/php/page.php:46
82
  msgid "Usage"
83
  msgstr "Применение"
84
 
85
- #: inc/php/page.php:47
86
  msgid "F.A.Q."
87
  msgstr "F.A.Q."
88
 
89
- #: inc/php/page.php:48 inc/php/settings.php:54 inc/php/sidebar.php:47
90
  msgid "Support"
91
  msgstr "Поддержка"
92
 
93
- #: inc/php/page.php:49
94
  msgid "Store"
95
  msgstr "Магазин"
96
 
97
- #: inc/php/page.php:65
98
  msgid "Usage Instructions"
99
  msgstr "Инструкция по использованию"
100
 
101
- #: inc/php/page.php:67
102
  msgid "To add your custom PHP code to your website, simply follow these steps:"
103
- msgstr "Чтобы добавить свои пользовательские функции (код PHP) на свой сайт, просто выполните следующие действия:"
104
 
105
- #: inc/php/page.php:69
106
  msgid "Go to the \"Main\" tab on this page."
107
  msgstr "Перейдите на вкладку «Главная»."
108
 
109
- #: inc/php/page.php:70
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
 
117
- #: inc/php/page.php:71
118
  msgid "Do not wrap your custom PHP code in HTML tags, such as <code>&lt;?php</code>...<code>?&gt;</code>."
119
  msgstr ""
120
 
121
- #: inc/php/page.php:73
122
  #, php-format
123
  msgid "Before use, please read the %s instructions %s in our Blog on what to do in case of a website crash."
124
  msgstr ""
125
 
126
- #: inc/php/page.php:80
127
  msgid "Switch the toggle to the \"ON\" position."
128
  msgstr "Переключите переключатель в положение «ON»."
129
 
130
- #: inc/php/page.php:81
131
  msgid "Click the \"Save changes\" button."
132
  msgstr "Нажмите кнопку «Сохранить изменения»."
133
 
134
- #: inc/php/page.php:82
135
  msgid "Enjoy the result of applying your custom PHP code."
136
- msgstr "Наслаждайтесь результатом применения вашего PHP-кода."
137
 
138
- #: inc/php/page.php:82
139
  msgid "It's that simple!"
140
  msgstr "Это так просто!"
141
 
142
- #: inc/php/page.php:85
143
  #, php-format
144
  msgid "If you want more options, then %s let us know %s and we will be happy to add them."
145
  msgstr "Если вы хотите больше вариантов, то %s сообщите нам %s и мы будем рады добавить их."
146
 
147
- #: inc/php/page.php:99
148
  msgid "Frequently Asked Questions"
149
  msgstr "Часто задаваемые вопросы"
150
 
151
- #: inc/php/page.php:103
152
  msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
153
  msgstr "Если у вас есть вопрос, пожалуйста, прочтите часто задаваемые вопросы."
154
 
155
- #: inc/php/page.php:125
156
- msgid "Will this plugin work on my WordPress.COM website?"
157
- msgstr "Будет ли этот плагин работать на моем веб-сайте WordPress.COM?"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
158
 
159
- #: inc/php/page.php:126
160
- msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
161
- msgstr "К сожалению, этот плагин доступен для использования только на самостоятельно размещённых веб-сайтах (WordPress.ORG)."
162
 
163
- #: inc/php/page.php:128
 
 
 
 
 
 
 
 
164
  msgid "Can I use this plugin on my language?"
165
  msgstr "Можно ли использовать этот плагин на моём языке?"
166
 
167
- #: inc/php/page.php:129
168
- msgid "Yes. This plugin is ready for translation and has already been translated into several languages."
169
- msgstr "Да. Этот плагин готов к переводу и уже переведен на несколько языков."
170
 
171
- #: inc/php/page.php:131
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
172
  #, php-format
173
- msgid "If you want to help translate this plugin then please visit the %s. You can also use the POT file, that is included and placed in the \"languages\" folder, in order to create a translation PO file. Just send the PO file to us at the %s and we will include this translation within the next plugin update."
174
- msgstr "Если вы хотите помочь перевести этот плагин, пожалуйста, посетите %s. Вы также можете использовать файл POT, который включён в плагин и помещён в папку «languages», чтобы создать PO файл перевода. Просто отправьте нам файл PO на %s и мы включим этот перевод в следующее обновление плагина."
175
 
176
- #: inc/php/page.php:136
177
- msgid "Maybe not all existed translations are up to date. You are welcome to contribute corrections!"
178
- msgstr "Может быть, не все переводы обновлены. Вы можете внести исправления!"
179
 
180
- #: inc/php/page.php:137
181
- msgid "Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!"
182
- msgstr "Многие пользователи плагинов будут рады, если вы поделитесь своим переводом с сообществом. Спасибо за ваш вклад!"
 
183
 
184
- #: inc/php/page.php:139
185
  msgid "How does it work?"
186
  msgstr "Как это работает?"
187
 
188
- #: inc/php/page.php:140
189
- msgid "On the \"Main\" tab, place your custom PHP code in the code editor field, switch the toggle to the \"ON\" position and click the \"Save changes\" button. Enjoy the result of applying your custom PHP code. It's that simple!"
190
- msgstr "На вкладке «Основные» поместите ваш PHP код в поле, переключите переключатель в положение «ON» и нажмите кнопку «Сохранить изменения». Наслаждайтесь результатом применения вашего PHP кода. Это так просто!"
191
 
192
- #: inc/php/page.php:142
193
  msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
194
- msgstr "Можно ли использовать HTML/CSS/JS код, встроенный в PHP-код?"
195
 
196
- #: inc/php/page.php:143
197
- msgid "Yes. But you need to do it properly, like this:"
198
- msgstr "Да. Но вам нужно сделать это правильно, например так:"
199
 
200
- #: inc/php/page.php:153
201
  msgid "How much of PHP code (characters) I can enter in the code editor?"
202
- msgstr "Сколько PHP-кода (символов) можно ввести в текстовом поле?"
203
 
204
- #: inc/php/page.php:154
205
  msgid "We don't limit the number of characters."
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> &#10145; <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> &#10145; Table <code>wp_options</code> &#10145; Option <code>spacexchimp_p001_settings</code> &#10145; <code>option_value</code>."
329
- msgstr "Этот плагин хранит введённый код в базе данных вашего сайта. Для получения кода вы также можете перейти в <code>Database</code> &#10145; Table <code>wp_options</code> &#10145; Option <code>spacexchimp_p001_settings</code> &#10145; <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
 
@@ -423,7 +722,7 @@ msgstr "Сохранить изменения"
423
 
424
  #: inc/php/settings.php:56 inc/php/sidebar.php:49
425
  msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
426
- msgstr "Я независимый разработчик, без регулярного дохода, так что каждый маленький вклад помогает мне покрыть затраты и позволяет тратить больше времени на создание программ для людей как вы."
427
 
428
  #: inc/php/settings.php:63 inc/php/sidebar.php:56
429
  msgid "Thanks for your support!"
@@ -431,15 +730,15 @@ msgstr "Спасибо за вашу поддержку!"
431
 
432
  #: inc/php/sidebar.php:16
433
  msgid "We are «Space X-Chimp»"
434
- msgstr ""
435
 
436
  #: inc/php/sidebar.php:33
437
  msgid "About"
438
  msgstr "О плагине"
439
 
440
  #: inc/php/sidebar.php:35
441
- msgid "This plugin allows you to 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."
442
- msgstr "Это плагин даёт вам возможность легко и безопасно добавлять ваши пользовательские функции (код PHP) непосредственно из области администрирования WordPress без необходимости иметь внешний редактор."
443
 
444
  #: inc/php/sidebar.php:40
445
  msgid "Help"
@@ -459,7 +758,7 @@ msgstr "https://github.com/ArthurGareginyan/my-custom-functions"
459
 
460
  #. Description of the plugin/theme
461
  msgid "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."
462
- msgstr "Легко и безопасно добавляйте ваши пользовательские функции (код PHP) непосредственно из области администрирования WordPress без необходимости иметь внешний редактор."
463
 
464
  #. Author of the plugin/theme
465
  msgid "Space X-Chimp"
@@ -468,30 +767,3 @@ msgstr "Space X-Chimp"
468
  #. Author URI of the plugin/theme
469
  msgid "https://www.spacexchimp.com"
470
  msgstr "https://www.spacexchimp.com"
471
-
472
- #~ msgid "An example of PHP code:"
473
- #~ msgstr "Пример кода PHP:"
474
-
475
- #~ msgid "Please do not wrap your custom PHP code in the <code>&lt;?php</code>...<code>?&gt;</code> HTML tags."
476
- #~ msgstr "Пожалуйста, не помещайте свой PHP-код в <code>&lt;?php</code>...<code>?&gt;</code> HTML теги."
477
-
478
- #~ msgid "Before use, please read the instructions on the F.A.Q. tab on what to do in case of a website crash."
479
- #~ msgstr "Перед использованием пожалуйста, прочитайте инструкции на вкладке F.A.Q. что делать в случае сбоя веб-сайта."
480
-
481
- #~ msgid "Hello! My name is %s Arthur %s and I'm the founder of %s Space X-Chimp %s."
482
- #~ msgstr "Привет! Меня зовут %s Артур %s и Я основатель %s Space X-Chimp %s."
483
-
484
- #~ msgid "My intention is to create projects that will make this world a better place. I'm really passionate about my work, I like what I'm doing and hope that you will be enriched by my projects too."
485
- #~ msgstr "Я намерен создать проекты, которые сделают этот мир лучшим местом. Я очень увлечен своей работой, мне нравится то, что Я делаю и надеюсь, что вы тоже станете лучше благодаря моим проектам."
486
-
487
- #~ msgid "Via FTP, go to the plugin folder (in <code>wp-content/plugins/my-custom-functions/</code>)."
488
- #~ msgstr "Через FTP, перейдите в папку плагина (в <code>wp-content/plugins/my-custom-functions/</code>)."
489
-
490
- #~ msgid "Rename the file \\`START\\` to \\`STOP\\`. This will stop the execution of your custom code."
491
- #~ msgstr "Переименуйте файл «START» в «STOP». Это остановит выполнение пользовательского кода."
492
-
493
- #~ msgid "Return to the plugin settings page and edit/fix your custom code that you entered before the crash."
494
- #~ msgstr "Вернитесь на страницу настроек плагина и отредактируйте/исправьте свой код, который вы ввели до сбоя."
495
-
496
- #~ msgid "rename the file \\`STOP\\` to \\`START\\` and you're done!"
497
- #~ msgstr "Переименуйте файл \"STOP\" в \"START\", и всё готово!"
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: My Custom Functions\n"
6
+ "POT-Creation-Date: 2019-02-20 23:19+0300\n"
7
+ "PO-Revision-Date: 2019-02-20 23:19+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Russian\n"
10
  "Language: ru_RU\n"
22
 
23
  #: inc/php/core.php:23
24
  msgid "Settings"
25
+ msgstr "Настройки"
26
 
27
  #: inc/php/core.php:33 inc/php/core.php:48
28
  msgid "Upgrade to PRO"
30
 
31
  #: inc/php/core.php:47
32
  msgid "Donate"
33
+ msgstr "Поддержать"
34
 
35
  #: inc/php/core.php:63
36
  msgid "PHP Inserter"
37
  msgstr "PHP Inserter"
38
 
39
+ #: inc/php/messages.php:27 inc/php/page.php:520
40
+ msgid "Hello!"
41
+ msgstr "Привет!"
42
 
43
  #: inc/php/messages.php:28
44
+ msgid "We are the team of Space X-Chimp."
45
+ msgstr "Мы - команда Space X-Chimp."
46
+
47
+ #: inc/php/messages.php:33
48
  #, php-format
49
  msgid "Thank you for installing our plugin! We hope you will love it! %s"
50
  msgstr "Благодарим вас за установку нашего плагина! Надеемся, он вам полюбится! %s"
51
 
52
+ #: inc/php/messages.php:74
53
  msgid "You have installed an old version of this plugin."
54
  msgstr "Вы установили устаревшую версию этого плагина."
55
 
56
+ #: inc/php/messages.php:75
57
  msgid "Please update the plugin to the latest version, and all will be fine."
58
  msgstr "Пожалуйста, обновите плагин до последней версии и всё будет отлично."
59
 
60
+ #: inc/php/messages.php:99
61
  msgid "Custom code updated successfully."
62
  msgstr "Пользовательский код успешно обновлён."
63
 
64
+ #: inc/php/messages.php:119
65
  msgid "Sorry, but your code causes a \"Fatal error\", so it is not applied!"
66
  msgstr "Извините, но ваш код вызывает \"Fatal error\", так что он не будет применён!"
67
 
68
+ #: inc/php/messages.php:120
69
  msgid "Please, check the code and try again."
70
  msgstr "Пожалуйста, проверьте код и попробуйте ещё раз."
71
 
72
+ #: inc/php/page.php:33
73
  #, php-format
74
  msgid "by %s Space X-Chimp %s"
75
  msgstr "от %s Space X-Chimp %s"
76
 
77
+ #: inc/php/page.php:39
78
  msgid "Version"
79
  msgstr "Версия"
80
 
81
+ #: inc/php/page.php:46
82
  msgid "Main"
83
  msgstr "Главная"
84
 
85
+ #: inc/php/page.php:47
86
  msgid "Usage"
87
  msgstr "Применение"
88
 
89
+ #: inc/php/page.php:48
90
  msgid "F.A.Q."
91
  msgstr "F.A.Q."
92
 
93
+ #: inc/php/page.php:49 inc/php/settings.php:54 inc/php/sidebar.php:47
94
  msgid "Support"
95
  msgstr "Поддержка"
96
 
97
+ #: inc/php/page.php:50
98
  msgid "Store"
99
  msgstr "Магазин"
100
 
101
+ #: inc/php/page.php:66
102
  msgid "Usage Instructions"
103
  msgstr "Инструкция по использованию"
104
 
105
+ #: inc/php/page.php:68
106
  msgid "To add your custom PHP code to your website, simply follow these steps:"
107
+ msgstr "Для того чтобы добавить ваш пользовательсктй PHP код на ваш веб-сайт, выполните следующие действия:"
108
 
109
+ #: inc/php/page.php:70
110
  msgid "Go to the \"Main\" tab on this page."
111
  msgstr "Перейдите на вкладку «Главная»."
112
 
113
+ #: inc/php/page.php:72
114
  msgid "Place your custom PHP code in the code editor field."
115
+ msgstr "Поместите ваш PHP код в поле."
116
 
117
+ #: inc/php/page.php:75 inc/php/page.php:79
118
  msgid "Note!"
119
  msgstr "Примечание!"
120
 
121
+ #: inc/php/page.php:76
122
  msgid "Do not wrap your custom PHP code in HTML tags, such as <code>&lt;?php</code>...<code>?&gt;</code>."
123
  msgstr ""
124
 
125
+ #: inc/php/page.php:82
126
  #, php-format
127
  msgid "Before use, please read the %s instructions %s in our Blog on what to do in case of a website crash."
128
  msgstr ""
129
 
130
+ #: inc/php/page.php:89
131
  msgid "Switch the toggle to the \"ON\" position."
132
  msgstr "Переключите переключатель в положение «ON»."
133
 
134
+ #: inc/php/page.php:90
135
  msgid "Click the \"Save changes\" button."
136
  msgstr "Нажмите кнопку «Сохранить изменения»."
137
 
138
+ #: inc/php/page.php:91 inc/php/page.php:222
139
  msgid "Enjoy the result of applying your custom PHP code."
140
+ msgstr "Наслаждайтесь результатом применения вашего PHP кода."
141
 
142
+ #: inc/php/page.php:91 inc/php/page.php:223
143
  msgid "It's that simple!"
144
  msgstr "Это так просто!"
145
 
146
+ #: inc/php/page.php:96
147
  #, php-format
148
  msgid "If you want more options, then %s let us know %s and we will be happy to add them."
149
  msgstr "Если вы хотите больше вариантов, то %s сообщите нам %s и мы будем рады добавить их."
150
 
151
+ #: inc/php/page.php:110
152
  msgid "Frequently Asked Questions"
153
  msgstr "Часто задаваемые вопросы"
154
 
155
+ #: inc/php/page.php:114
156
  msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
157
  msgstr "Если у вас есть вопрос, пожалуйста, прочтите часто задаваемые вопросы."
158
 
159
+ #: inc/php/page.php:139
160
+ msgid "Where can I find a documentation for this plugin?"
161
+ msgstr ""
162
+
163
+ #: inc/php/page.php:144
164
+ #, php-format
165
+ msgid "Please visit our %s Documentation site %s to view documentation."
166
+ msgstr ""
167
+
168
+ #: inc/php/page.php:152
169
+ msgid "Will this plugin work on my wordpress.COM website?"
170
+ msgstr "Будет ли этот плагин работать на моем веб-сайте wordpress.COM?"
171
+
172
+ #: inc/php/page.php:155
173
+ msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
174
+ msgstr "К сожалению, этот плагин доступен для использования только на самостоятельно размещённых веб-сайтах (wordpress.ORG)."
175
+
176
+ #: inc/php/page.php:157
177
+ msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
178
+ msgstr ""
179
+
180
+ #: inc/php/page.php:158
181
+ msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
182
+ msgstr ""
183
+
184
+ #: inc/php/page.php:161
185
+ #, php-format
186
+ msgid "You can learn more about the difference here: %s ."
187
+ msgstr ""
188
+
189
+ #: inc/php/page.php:168
190
+ msgid "Will this plugin work/compatible with the theme I use?"
191
+ msgstr ""
192
+
193
+ #: inc/php/page.php:171
194
+ msgid "This plugin is compatible with most themes."
195
+ msgstr ""
196
+
197
+ #: inc/php/page.php:172
198
+ msgid "But, unfortunately, we cannot check it with all third-party themes (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party theme."
199
+ msgstr ""
200
+
201
+ #: inc/php/page.php:173
202
+ msgid "We constantly check this plugin for compatibility with third-party themes."
203
+ msgstr ""
204
+
205
+ #: inc/php/page.php:174
206
+ msgid "If we find that this plugin is incompatible with a third-party theme, and if we can fix it on our part, we release an update of our plugin to fix the problem."
207
+ msgstr ""
208
+
209
+ #: inc/php/page.php:176
210
+ msgid "If you find a conflict between our plugin and a third-party theme, please let us know and we will definitely release an update of our plugin to fix the problem."
211
+ msgstr ""
212
+
213
+ #: inc/php/page.php:180
214
+ msgid "Will this plugin work/compatible with other plugins that I use?"
215
+ msgstr ""
216
+
217
+ #: inc/php/page.php:183
218
+ msgid "This plugin is compatible with most plugins."
219
+ msgstr ""
220
+
221
+ #: inc/php/page.php:184
222
+ msgid "But, unfortunately, we cannot check it with all third-party plugins (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party plugin."
223
+ msgstr ""
224
 
225
+ #: inc/php/page.php:185
226
+ msgid "We constantly check this plugin for compatibility with third-party plugins."
227
+ msgstr ""
228
 
229
+ #: inc/php/page.php:186
230
+ msgid "If we find that this plugin is incompatible with a third-party plugin, and if we can fix it on our part, we release an update of our plugin to fix the problem."
231
+ msgstr ""
232
+
233
+ #: inc/php/page.php:188
234
+ msgid "If you find a conflict between our plugin and a third-party plugin, please let us know and we will definitely release an update of our plugin to fix the problem."
235
+ msgstr ""
236
+
237
+ #: inc/php/page.php:192
238
  msgid "Can I use this plugin on my language?"
239
  msgstr "Можно ли использовать этот плагин на моём языке?"
240
 
241
+ #: inc/php/page.php:195 inc/php/page.php:230
242
+ msgid "Yes."
243
+ msgstr "Да."
244
 
245
+ #: inc/php/page.php:196
246
+ msgid "This plugin is ready for translation and has already been translated into several languages."
247
+ msgstr "Этот плагин готов к переводу и уже переведен на несколько языков."
248
+
249
+ #: inc/php/page.php:197
250
+ msgid "But If your language is not available then you can make one."
251
+ msgstr ""
252
+
253
+ #: inc/php/page.php:198
254
+ msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
255
+ msgstr ""
256
+
257
+ #: inc/php/page.php:199
258
+ msgid "Many of plugin users would be delighted if you share your translation with the community."
259
+ msgstr "Многие пользователи плагинов будут рады, если вы поделитесь своим переводом с сообществом."
260
+
261
+ #: inc/php/page.php:200
262
+ msgid "Thanks for your contribution!"
263
+ msgstr "Спасибо за ваш вклад!"
264
+
265
+ #: inc/php/page.php:204
266
  #, php-format
267
+ msgid "If you want to help translate this plugin, please visit the %s."
268
+ msgstr "Если вы хотите помочь перевести этот плагин, пожалуйста, посетите %s."
269
 
270
+ #: inc/php/page.php:208
271
+ msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
272
+ msgstr "Вы также можете использовать файл POT, который включён в плагин и помещён в папку «languages», чтобы создать PO файл перевода."
273
 
274
+ #: inc/php/page.php:211
275
+ #, php-format
276
+ msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
277
+ msgstr "Просто отправьте нам файл PO на %s и мы включим этот перевод в следующее обновление плагина."
278
 
279
+ #: inc/php/page.php:218
280
  msgid "How does it work?"
281
  msgstr "Как это работает?"
282
 
283
+ #: inc/php/page.php:221
284
+ msgid "On the \"Main\" tab, place your custom PHP code in the code editor field, switch the toggle to the \"ON\" position and click the \"Save changes\" button."
285
+ msgstr "На вкладке «Главная» поместите ваш PHP код в поле редактора кода, переключите переключатель в положение «ON» и нажмите кнопку «Сохранить изменения»."
286
 
287
+ #: inc/php/page.php:227
288
  msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
289
+ msgstr "Можно ли использовать HTML/CSS/JS код, встроенный в PHP код?"
290
 
291
+ #: inc/php/page.php:231
292
+ msgid "But you need to do it properly, like this:"
293
+ msgstr "Но вам нужно сделать это правильно, например так:"
294
 
295
+ #: inc/php/page.php:243
296
  msgid "How much of PHP code (characters) I can enter in the code editor?"
297
+ msgstr "Сколько PHP кода (символов) можно ввести в текстовом поле?"
298
 
299
+ #: inc/php/page.php:246
300
  msgid "We don't limit the number of characters."
301
+ msgstr "Мы не ограничиваем количество символов."
302
 
303
+ #: inc/php/page.php:250
304
  msgid "Does this plugin requires any modification of the theme?"
305
  msgstr "Этот плагин требует изменения темы?"
306
 
307
+ #: inc/php/page.php:253 inc/php/page.php:261
308
+ msgid "Absolutely not."
309
+ msgstr "Абсолютно нет."
310
+
311
+ #: inc/php/page.php:254
312
+ msgid "This plugin is configurable entirely from the plugin settings page."
313
+ msgstr "Этот плагин настраивается полностью на странице настроек плагина."
314
 
315
+ #: inc/php/page.php:258
316
  msgid "Does this require any knowledge of HTML or CSS?"
317
  msgstr "Требуются ли какие-либо знания HTML или CSS?"
318
 
319
+ #: inc/php/page.php:262
320
+ msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
321
+ msgstr "Этот плагин можно настроить без знания HTML или CSS, с помощью простой в использовании страницы настройки плагина."
322
 
323
+ #: inc/php/page.php:266
324
  msgid "Can I add my custom PHP code to a specific page of my website?"
325
+ msgstr "Могу ли я добавить мой пользовательский PHP код на определенную страницу моего веб-сайта?"
326
+
327
+ #: inc/php/page.php:269
328
+ msgid "For now, this plugin does not have an option to apply the custom PHP code only on specific pages."
329
+ msgstr "Пока этот плагин не имеет возможности применять пользовательский PHP код только на определенных страницах."
330
+
331
+ #: inc/php/page.php:270
332
+ msgid "We plan to add this feature soon."
333
+ msgstr "Мы планируем добавить эту функцию в ближайшее время."
334
 
335
+ #: inc/php/page.php:271
336
+ msgid "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."
337
  msgstr ""
338
 
339
+ #: inc/php/page.php:272
340
+ msgid "You need something like this:"
341
+ msgstr "Вам нужно что-то вроде этого:"
342
+
343
+ #: inc/php/page.php:288
344
+ msgid "It's not working."
345
+ msgstr "Оно не работает."
346
+
347
+ #: inc/php/page.php:289 inc/php/page.php:305 inc/php/page.php:331
348
+ msgid "What could be wrong?"
349
+ msgstr "Что может быть не так?"
350
 
351
+ #: inc/php/page.php:292
352
+ msgid "As with every plugin, it's possible that things don't work."
353
+ msgstr "Как и в случае с любым другим плагином, что-то может не работать."
354
+
355
+ #: inc/php/page.php:293
356
+ msgid "It's impossible to tell what could be wrong exactly."
357
+ msgstr "Невозможно точно сказать, что может быть не так."
358
+
359
+ #: inc/php/page.php:294
360
+ msgid "The most common reason for this is a web browser's cache."
361
+ msgstr "Наиболее распространённой причиной этого является кеш веб-браузера."
362
+
363
+ #: inc/php/page.php:295
364
+ msgid "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load."
365
+ msgstr "Каждый веб-браузер хранит кеш веб-сайтов, которые вы посещаете (страницы, изображения и т. д.) для того, чтобы уменьшить использование интернет канала и нагрузку на сервер."
366
+
367
+ #: inc/php/page.php:296
368
+ msgid "This is called the browser's cache."
369
+ msgstr "Это называется кешем браузера."
370
+
371
+ #: inc/php/page.php:297
372
+ msgid "Clearing your browser's cache may solve the problem."
373
+ msgstr "Очистка кеша браузера может решить проблему."
374
+
375
+ #: inc/php/page.php:299
376
+ msgid "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."
377
+ msgstr "Если вы разместите запрос поддержки на форуме поддержки плагина на WordPress.org, то мы с радостью посмотрим и попытаемся помочь."
378
+
379
+ #: inc/php/page.php:300 inc/php/page.php:401
380
+ msgid "Please include as much information as possible, including a link to your website where the problem can be seen."
381
+ msgstr "Пожалуйста, укажите как можно больше информации, включая ссылку на ваш веб-сайт, на котором можно увидеть проблему."
382
+
383
+ #: inc/php/page.php:304
384
+ msgid "On the plugin settings page, an error message appears."
385
+ msgstr "На странице настроек плагина появляется сообщение об ошибке."
386
+
387
+ #: inc/php/page.php:308
388
  msgid "Here are a few of the most likely causes of the error message:"
389
  msgstr "Вот некоторые из наиболее вероятных причин появления сообщение об ошибке:"
390
 
391
+ #: inc/php/page.php:311
392
+ msgid "You make a syntax error in the code that you have entered."
393
+ msgstr "Вы сделали синтаксическую ошибку в коде, который вы ввели."
394
 
395
+ #: inc/php/page.php:312
396
+ msgid "Check the syntax of your code and try again."
397
+ msgstr "Проверьте синтаксис вашего кода и попробуйте ещё раз."
398
 
399
+ #: inc/php/page.php:315
400
+ msgid "You entered two functions with the same name."
401
+ msgstr "Вы ввели несколько функций с одинаковым именем."
402
 
403
+ #: inc/php/page.php:316
404
+ msgid "Use a unique names for your functions."
405
+ msgstr "Используйте уникальные имена для ваших функций."
406
 
407
+ #: inc/php/page.php:319
408
+ msgid "You have entered function with a name that is already occupied by another function."
409
+ msgstr "Вы ввели функцию с именем, которое уже занята другой функцией."
410
+
411
+ #: inc/php/page.php:320
412
+ msgid "Use a unique name for your function."
413
+ msgstr "Используйте уникальное имя для вашей функции."
414
+
415
+ #: inc/php/page.php:323
416
+ msgid "You are trying to overwrite an existing function (of WordPress, theme, or plugin)."
417
+ msgstr "Вы пытаетесь перезаписать существующую функцию (из WordPress, темы или плагина)."
418
+
419
+ #: inc/php/page.php:324
420
+ msgid "Instead, use filters and hooks."
421
+ msgstr "Вместо этого используйте фильтры и хуки."
422
 
423
+ #: inc/php/page.php:330
424
+ msgid "My custom PHP code is not working."
425
+ msgstr "Мой пользовательский PHP код не работает."
426
+
427
+ #: inc/php/page.php:334
428
+ 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."
429
  msgstr ""
430
 
431
+ #: inc/php/page.php:335
432
+ msgid "Here are a few of the most likely causes of the issue:"
433
+ msgstr "Вот некоторые из наиболее вероятных причин проблемы:"
434
+
435
+ #: inc/php/page.php:337
436
  msgid "You have a typo during the insertion of your custom PHP code."
437
  msgstr ""
438
 
439
+ #: inc/php/page.php:338
440
  msgid "Your custom PHP code has a syntax error."
441
  msgstr ""
442
 
443
+ #: inc/php/page.php:339
 
444
  msgid "Your custom PHP code is incorrect and may not work."
445
  msgstr ""
446
 
447
+ #: inc/php/page.php:344
448
+ msgid "What to do if this plugin crashed the website?"
449
+ msgstr "Что делать, если этот плагин сломал веб-сайт?"
450
 
451
+ #: inc/php/page.php:347
452
+ msgid "This plugin has a built-in functions for checking the custom code for syntax errors, duplicate functions names, and etc."
453
+ msgstr ""
454
 
455
+ #: inc/php/page.php:348
456
+ msgid "But plugin is not perfect, so there are times when the entered custom code causes the error and white screen (WSOD)."
457
+ msgstr ""
458
 
459
+ #: inc/php/page.php:349
460
+ msgid "This is due to the fact that your custom code has a syntax error that this plugin could not detect."
461
+ msgstr ""
462
 
463
+ #: inc/php/page.php:350
464
+ msgid "When this happens with you, please perform the following steps."
465
+ msgstr ""
466
 
467
+ #: inc/php/page.php:353
468
+ msgid "Access your server via FTP or SFTP."
469
  msgstr ""
470
 
471
+ #: inc/php/page.php:354
472
+ msgid "If you aren't sure how usually your web hosting provider will have instructions somewhere on their website."
473
  msgstr ""
474
 
475
+ #: inc/php/page.php:357
476
+ msgid "Browse to the directory <code>wp-content/plugins/my-custom-functions/</code>."
477
+ msgstr "Перейдите в каталог <code>wp-content/plugins/my-custom-functions/</code>."
478
+
479
+ #: inc/php/page.php:358
480
+ msgid "Please contact your web hosting company to get help if you can't find this folder."
481
  msgstr ""
482
 
483
+ #: inc/php/page.php:361
484
+ msgid "Rename the file <code>START</code> to <code>STOP</code>."
485
+ msgstr "Переименуйте файл «START» в «STOP»."
486
+
487
+ #: inc/php/page.php:362
488
+ msgid "This will stop the execution of your custom code."
489
+ msgstr "Это остановит выполнение пользовательского кода."
490
+
491
+ #: inc/php/page.php:364
492
  msgid "Log in to Admin Area of your WordPress website."
493
  msgstr ""
494
 
495
+ #: inc/php/page.php:365
496
  msgid "Go to the plugin settings page <code>Settings</code> &#10145; <code>PHP Inserter</code>."
497
  msgstr ""
498
 
499
+ #: inc/php/page.php:366
500
  msgid "Edit/fix your custom PHP code that you entered before the crash."
501
  msgstr ""
502
 
503
+ #: inc/php/page.php:367
504
  msgid "Return to the plugin folder and rename the file <code>STOP</code> to <code>START</code> and you're done!"
505
  msgstr ""
506
 
507
+ #: inc/php/page.php:369
508
+ msgid "This plugin stored you entered code in the database of your website."
509
+ msgstr "Этот плагин хранит введённый вами код в базе данных вашего веб-сайта."
510
 
511
+ #: inc/php/page.php:370
512
+ msgid "For getting your code, you also can go to the <code>Database</code> &#10145; Table <code>wp_options</code> &#10145; Option <code>spacexchimp_p001_settings</code> &#10145; <code>option_value</code>."
513
+ msgstr "Для получения вашего кода, вы также можете перейти в <code>Database</code> &#10145; Table <code>wp_options</code> &#10145; Option <code>spacexchimp_p001_settings</code> &#10145; <code>option_value</code>."
514
+
515
+ #: inc/php/page.php:372
516
  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."
517
  msgstr ""
518
 
519
+ #: inc/php/page.php:376
520
+ msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
521
+ msgstr "Последнее обновление WordPress не позволяет мне редактировать мой веб-сайт, на котором используется этот плагин."
522
+
523
+ #: inc/php/page.php:377
524
+ msgid "Why is this?"
525
+ msgstr "Почему так?"
526
+
527
+ #: inc/php/page.php:380
528
+ msgid "This plugin can not cause such problem."
529
+ msgstr "Этот плагин не может вызвать такую проблему."
530
+
531
+ #: inc/php/page.php:381
532
+ msgid "More likely, the problem are related to the settings of the website."
533
+ msgstr "Скорее всего, проблема связана с настройками веб-сайта."
534
+
535
+ #: inc/php/page.php:382
536
+ msgid "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."
537
+ msgstr "Это может быть кеш, поэтому попробуйте очистить кеш вашего веб-сайта (возможно, вы используете плагин для кеширования или какой-либо веб-сервис, такой как CloudFlare), а затем кеш вашего веб-браузера."
538
 
539
+ #: inc/php/page.php:383
540
+ msgid "Also please try to re-login to the website, this too can help."
541
+ msgstr "Также, пожалуйста, попробуйте повторно войти на веб-сайт, это тоже может помочь."
542
 
543
+ #: inc/php/page.php:387
544
  msgid "Where to report bug if found?"
545
  msgstr "Где можно сообщить об ошибке?"
546
 
547
+ #: inc/php/page.php:390
548
+ msgid "Bug reports are very welcome!"
549
+ msgstr ""
550
+
551
+ #: inc/php/page.php:393
552
  #, php-format
553
+ msgid "Please visit our %s contact page %s and report."
554
+ msgstr ""
555
+
556
+ #: inc/php/page.php:398 inc/php/page.php:427
557
+ msgid "Please do not forget to specify the name of the plugin."
558
+ msgstr "Пожалуйста не забудьте указать название плагина."
559
+
560
+ #: inc/php/page.php:399 inc/php/page.php:428 inc/php/page.php:444
561
+ msgid "Thank you!"
562
+ msgstr "Спасибо!"
563
+
564
+ #: inc/php/page.php:402
565
+ msgid "Describe in more detail what exactly you are seeing."
566
+ msgstr ""
567
+
568
+ #: inc/php/page.php:403
569
+ msgid "Here are some examples:"
570
+ msgstr ""
571
+
572
+ #: inc/php/page.php:406
573
+ msgid "Elements of the plugin settings page are not working."
574
+ msgstr ""
575
+
576
+ #: inc/php/page.php:407
577
+ msgid "An error message is displayed on the plugin settings page."
578
+ msgstr ""
579
+
580
+ #: inc/php/page.php:408
581
+ msgid "An error message is displayed on the front end of website."
582
+ msgstr ""
583
 
584
+ #: inc/php/page.php:409
585
+ msgid "An error message is displayed on the back end of website."
586
+ msgstr ""
587
+
588
+ #: inc/php/page.php:410
589
+ msgid "Custom code is inserted on the plugin settings page, but it is not applied on the website."
590
+ msgstr ""
591
+
592
+ #: inc/php/page.php:411
593
+ msgid "Website is crashed."
594
+ msgstr ""
595
+
596
+ #: inc/php/page.php:416
597
  msgid "Where to share any ideas or suggestions to make the plugin better?"
598
  msgstr "Где можно поделиться идеями или предложениями, чтобы сделать плагин лучше?"
599
 
600
+ #: inc/php/page.php:419
601
+ msgid "Any suggestions are very welcome!"
602
+ msgstr "Любые предложения приветствуются!"
603
+
604
+ #: inc/php/page.php:422
605
  #, php-format
606
+ msgid "Please visit our %s contact page %s."
607
+ msgstr ""
608
 
609
+ #: inc/php/page.php:432
610
+ msgid "I love this plugin!"
611
+ msgstr "Мне нравится этот плагин!"
612
+
613
+ #: inc/php/page.php:433
614
+ msgid "Can I help somehow?"
615
+ msgstr "Могу Я чем-то помочь?"
616
+
617
+ #: inc/php/page.php:436
618
+ msgid "Yes, any contributions are very welcome!"
619
+ msgstr "Да, любой вклад приветствуется!"
620
 
621
+ #: inc/php/page.php:439
622
  #, php-format
623
+ msgid "Please visit our %s Support Us %s page."
624
+ msgstr "Пожалуйста, посетите нашу страницу %s Поддержите нас %s ."
625
+
626
+ #: inc/php/page.php:448
627
+ msgid "Where can I find information about your licenses, payment process and refunds?"
628
+ msgstr ""
629
+
630
+ #: inc/php/page.php:453
631
+ #, php-format
632
+ msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
633
+ msgstr ""
634
+
635
+ #: inc/php/page.php:461
636
+ msgid "Where can I find information about your customer support?"
637
+ msgstr ""
638
+
639
+ #: inc/php/page.php:466
640
+ #, php-format
641
+ msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
642
+ msgstr ""
643
 
644
+ #: inc/php/page.php:474
645
+ msgid "Where can I find information about your affiliate program?"
646
+ msgstr ""
647
+
648
+ #: inc/php/page.php:479
649
+ #, php-format
650
+ msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
651
+ msgstr ""
652
+
653
+ #: inc/php/page.php:487
654
  msgid "My question wasn't answered here."
655
+ msgstr "На мой вопрос здесь не было ответа."
656
 
657
+ #: inc/php/page.php:492
658
  #, php-format
659
+ msgid "You can ask your question on %s this page %s."
660
+ msgstr "Вы можете задать ваш вопрос на %s этой странице %s."
661
 
662
+ #: inc/php/page.php:497
663
+ msgid "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."
664
+ msgstr "Но имейте в виду, что этот плагин является бесплатным и без специальной поддержки, поэтому у нас нет возможности ответить на все вопросы."
665
+
666
+ #: inc/php/page.php:508
667
  msgid "Support Us"
668
  msgstr "Поддержать нас"
669
 
670
+ #: inc/php/page.php:516 inc/php/settings.php:61 inc/php/sidebar.php:54
671
  msgid "Donate with PayPal"
672
+ msgstr "Пожертвовать через PayPal"
673
 
674
+ #: inc/php/page.php:523
675
  #, php-format
676
+ msgid "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."
677
+ msgstr "Меня зовут %s Артур %s и Я основатель %s Space X-Chimp %s, который объединяет небольшую международную команду молодых людей."
678
+
679
+ #: inc/php/page.php:532
680
+ msgid "Our intention is to create projects that will make this world a better place."
681
  msgstr ""
682
 
683
+ #: inc/php/page.php:533
684
+ msgid "Our motto is - «Follow your dreams and don’t give up»."
685
  msgstr ""
686
 
687
+ #: inc/php/page.php:534
688
+ msgid "We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
689
+ msgstr ""
690
+
691
+ #: inc/php/page.php:537
692
+ 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."
693
+ msgstr "Мы тратим много времени и усилий, пытаясь убедиться в том, что темы, плагины и другие вещи, которые мы создаём, полезны, и окончательное доказательство этого для нас то, что вы на самом деле хотите их использовать."
694
+
695
+ #: inc/php/page.php:538
696
+ msgid "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."
697
+ msgstr "Но мы независимые разработчики, без регулярного дохода, так что каждый небольшой вклад помогает покрыть наши расходы и позволяет нам тратить больше времени на создание вещей, которыми могут наслаждаться удивительные люди, такие как вы."
698
 
699
+ #: inc/php/page.php:541
700
  msgid "If you appreciate our work, you can buy us a cup of coffee!"
701
  msgstr "Если вы цените мою работу, то вы можете купить мне кофе!"
702
 
703
+ #: inc/php/page.php:544
704
  msgid "Thank you for your support!"
705
  msgstr "Спасибо за вашу поддержку!"
706
 
722
 
723
  #: inc/php/settings.php:56 inc/php/sidebar.php:49
724
  msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
725
+ msgstr "Каждый небольшой вклад помогает покрыть наши расходы и позволяет нам тратить больше времени на создание вещей, которыми могут наслаждаться удивительные люди, такие как вы."
726
 
727
  #: inc/php/settings.php:63 inc/php/sidebar.php:56
728
  msgid "Thanks for your support!"
730
 
731
  #: inc/php/sidebar.php:16
732
  msgid "We are «Space X-Chimp»"
733
+ msgstr "Мы «Space X-Chimp»"
734
 
735
  #: inc/php/sidebar.php:33
736
  msgid "About"
737
  msgstr "О плагине"
738
 
739
  #: inc/php/sidebar.php:35
740
+ msgid "This plugin gives you the ability to 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."
741
+ msgstr "Этот плагин даёт вам возможность легко и безопасно добавлять ваш пользовательский PHP код, непосредственно из области администрирования WordPress, без необходимости иметь внешний редактор."
742
 
743
  #: inc/php/sidebar.php:40
744
  msgid "Help"
758
 
759
  #. Description of the plugin/theme
760
  msgid "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."
761
+ msgstr "Легко и безопасно добавляйте ваши пользовательские функции (код PHP), непосредственно из области администрирования WordPress, без необходимости иметь внешний редактор."
762
 
763
  #. Author of the plugin/theme
764
  msgid "Space X-Chimp"
767
  #. Author URI of the plugin/theme
768
  msgid "https://www.spacexchimp.com"
769
  msgstr "https://www.spacexchimp.com"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 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"
@@ -36,369 +36,671 @@ msgstr "捐款"
36
  msgid "PHP Inserter"
37
  msgstr "PHP Inserter"
38
 
39
- #: inc/php/messages.php:26
40
- msgid "Hello. We are the team of Space X-Chimp."
41
  msgstr ""
42
 
43
  #: inc/php/messages.php:28
 
 
 
 
44
  #, php-format
45
  msgid "Thank you for installing our plugin! We hope you will love it! %s"
46
  msgstr ""
47
 
48
- #: inc/php/messages.php:68
49
  msgid "You have installed an old version of this plugin."
50
  msgstr ""
51
 
52
- #: inc/php/messages.php:69
53
  msgid "Please update the plugin to the latest version, and all will be fine."
54
  msgstr ""
55
 
56
- #: inc/php/messages.php:91
57
  msgid "Custom code updated successfully."
58
  msgstr "自訂功能已成功更新"
59
 
60
- #: inc/php/messages.php:110
61
  msgid "Sorry, but your code causes a \"Fatal error\", so it is not applied!"
62
  msgstr "抱歉!您的程式碼造成了「嚴重錯誤」,所以並沒有套用它!"
63
 
64
- #: inc/php/messages.php:111
65
  msgid "Please, check the code and try again."
66
  msgstr "請重新檢查程式碼再試一次"
67
 
68
- #: inc/php/page.php:32
69
  #, php-format
70
  msgid "by %s Space X-Chimp %s"
71
  msgstr ""
72
 
73
- #: inc/php/page.php:38
74
  msgid "Version"
75
  msgstr ""
76
 
77
- #: inc/php/page.php:45
78
  msgid "Main"
79
  msgstr ""
80
 
81
- #: inc/php/page.php:46
82
  msgid "Usage"
83
  msgstr ""
84
 
85
- #: inc/php/page.php:47
86
  msgid "F.A.Q."
87
  msgstr ""
88
 
89
- #: inc/php/page.php:48 inc/php/settings.php:54 inc/php/sidebar.php:47
90
  msgid "Support"
91
  msgstr ""
92
 
93
- #: inc/php/page.php:49
94
  msgid "Store"
95
  msgstr ""
96
 
97
- #: inc/php/page.php:65
98
  msgid "Usage Instructions"
99
  msgstr ""
100
 
101
- #: inc/php/page.php:67
102
  msgid "To add your custom PHP code to your website, simply follow these steps:"
103
  msgstr ""
104
 
105
- #: inc/php/page.php:69
106
  msgid "Go to the \"Main\" tab on this page."
107
  msgstr ""
108
 
109
- #: inc/php/page.php:70
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
 
117
- #: inc/php/page.php:71
118
  msgid "Do not wrap your custom PHP code in HTML tags, such as <code>&lt;?php</code>...<code>?&gt;</code>."
119
  msgstr ""
120
 
121
- #: inc/php/page.php:73
122
  #, php-format
123
  msgid "Before use, please read the %s instructions %s in our Blog on what to do in case of a website crash."
124
  msgstr ""
125
 
126
- #: inc/php/page.php:80
127
  msgid "Switch the toggle to the \"ON\" position."
128
  msgstr ""
129
 
130
- #: inc/php/page.php:81
131
  msgid "Click the \"Save changes\" button."
132
  msgstr ""
133
 
134
- #: inc/php/page.php:82
135
  msgid "Enjoy the result of applying your custom PHP code."
136
  msgstr ""
137
 
138
- #: inc/php/page.php:82
139
  msgid "It's that simple!"
140
  msgstr ""
141
 
142
- #: inc/php/page.php:85
143
  #, php-format
144
  msgid "If you want more options, then %s let us know %s and we will be happy to add them."
145
  msgstr ""
146
 
147
- #: inc/php/page.php:99
148
  msgid "Frequently Asked Questions"
149
  msgstr ""
150
 
151
- #: inc/php/page.php:103
152
  msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
153
  msgstr ""
154
 
155
- #: inc/php/page.php:125
156
- msgid "Will this plugin work on my WordPress.COM website?"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
157
  msgstr ""
158
 
159
- #: inc/php/page.php:126
160
- msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
161
  msgstr ""
162
 
163
- #: inc/php/page.php:128
 
 
 
 
 
 
 
 
164
  msgid "Can I use this plugin on my language?"
165
  msgstr ""
166
 
167
- #: inc/php/page.php:129
168
- msgid "Yes. This plugin is ready for translation and has already been translated into several languages."
 
 
 
 
 
 
 
 
169
  msgstr ""
170
 
171
- #: inc/php/page.php:131
 
 
 
 
 
 
 
 
 
 
 
 
172
  #, php-format
173
- msgid "If you want to help translate this plugin then please visit the %s. You can also use the POT file, that is included and placed in the \"languages\" folder, in order to create a translation PO file. Just send the PO file to us at the %s and we will include this translation within the next plugin update."
174
  msgstr ""
175
 
176
- #: inc/php/page.php:136
177
- msgid "Maybe not all existed translations are up to date. You are welcome to contribute corrections!"
178
  msgstr ""
179
 
180
- #: inc/php/page.php:137
181
- msgid "Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!"
 
182
  msgstr ""
183
 
184
- #: inc/php/page.php:139
185
  msgid "How does it work?"
186
  msgstr ""
187
 
188
- #: inc/php/page.php:140
189
- msgid "On the \"Main\" tab, place your custom PHP code in the code editor field, switch the toggle to the \"ON\" position and click the \"Save changes\" button. Enjoy the result of applying your custom PHP code. It's that simple!"
190
  msgstr ""
191
 
192
- #: inc/php/page.php:142
193
  msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
194
  msgstr ""
195
 
196
- #: inc/php/page.php:143
197
- msgid "Yes. But you need to do it properly, like this:"
198
  msgstr ""
199
 
200
- #: inc/php/page.php:153
201
  msgid "How much of PHP code (characters) I can enter in the code editor?"
202
  msgstr ""
203
 
204
- #: inc/php/page.php:154
205
  msgid "We don't limit the number of characters."
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> &#10145; <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> &#10145; Table <code>wp_options</code> &#10145; Option <code>spacexchimp_p001_settings</code> &#10145; <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
 
@@ -435,7 +737,7 @@ msgid "About"
435
  msgstr "關於"
436
 
437
  #: inc/php/sidebar.php:35
438
- msgid "This plugin allows you to 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."
439
  msgstr ""
440
 
441
  #: inc/php/sidebar.php:40
@@ -465,6 +767,3 @@ msgstr "Space X-Chimp"
465
  #. Author URI of the plugin/theme
466
  msgid "https://www.spacexchimp.com"
467
  msgstr "https://www.spacexchimp.com"
468
-
469
- #~ msgid "If you want more options, then let us know and we will be happy to add them."
470
- #~ msgstr "如果您還想要更多的選項請跟我說,我會很樂意加上去"
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: My Custom Functions\n"
6
+ "POT-Creation-Date: 2019-02-20 23:19+0300\n"
7
+ "PO-Revision-Date: 2019-02-20 23:19+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Chinese (Taiwan)\n"
10
  "Language: zh_TW\n"
36
  msgid "PHP Inserter"
37
  msgstr "PHP Inserter"
38
 
39
+ #: inc/php/messages.php:27 inc/php/page.php:520
40
+ msgid "Hello!"
41
  msgstr ""
42
 
43
  #: inc/php/messages.php:28
44
+ msgid "We are the team of Space X-Chimp."
45
+ msgstr ""
46
+
47
+ #: inc/php/messages.php:33
48
  #, php-format
49
  msgid "Thank you for installing our plugin! We hope you will love it! %s"
50
  msgstr ""
51
 
52
+ #: inc/php/messages.php:74
53
  msgid "You have installed an old version of this plugin."
54
  msgstr ""
55
 
56
+ #: inc/php/messages.php:75
57
  msgid "Please update the plugin to the latest version, and all will be fine."
58
  msgstr ""
59
 
60
+ #: inc/php/messages.php:99
61
  msgid "Custom code updated successfully."
62
  msgstr "自訂功能已成功更新"
63
 
64
+ #: inc/php/messages.php:119
65
  msgid "Sorry, but your code causes a \"Fatal error\", so it is not applied!"
66
  msgstr "抱歉!您的程式碼造成了「嚴重錯誤」,所以並沒有套用它!"
67
 
68
+ #: inc/php/messages.php:120
69
  msgid "Please, check the code and try again."
70
  msgstr "請重新檢查程式碼再試一次"
71
 
72
+ #: inc/php/page.php:33
73
  #, php-format
74
  msgid "by %s Space X-Chimp %s"
75
  msgstr ""
76
 
77
+ #: inc/php/page.php:39
78
  msgid "Version"
79
  msgstr ""
80
 
81
+ #: inc/php/page.php:46
82
  msgid "Main"
83
  msgstr ""
84
 
85
+ #: inc/php/page.php:47
86
  msgid "Usage"
87
  msgstr ""
88
 
89
+ #: inc/php/page.php:48
90
  msgid "F.A.Q."
91
  msgstr ""
92
 
93
+ #: inc/php/page.php:49 inc/php/settings.php:54 inc/php/sidebar.php:47
94
  msgid "Support"
95
  msgstr ""
96
 
97
+ #: inc/php/page.php:50
98
  msgid "Store"
99
  msgstr ""
100
 
101
+ #: inc/php/page.php:66
102
  msgid "Usage Instructions"
103
  msgstr ""
104
 
105
+ #: inc/php/page.php:68
106
  msgid "To add your custom PHP code to your website, simply follow these steps:"
107
  msgstr ""
108
 
109
+ #: inc/php/page.php:70
110
  msgid "Go to the \"Main\" tab on this page."
111
  msgstr ""
112
 
113
+ #: inc/php/page.php:72
114
  msgid "Place your custom PHP code in the code editor field."
115
  msgstr ""
116
 
117
+ #: inc/php/page.php:75 inc/php/page.php:79
118
  msgid "Note!"
119
  msgstr ""
120
 
121
+ #: inc/php/page.php:76
122
  msgid "Do not wrap your custom PHP code in HTML tags, such as <code>&lt;?php</code>...<code>?&gt;</code>."
123
  msgstr ""
124
 
125
+ #: inc/php/page.php:82
126
  #, php-format
127
  msgid "Before use, please read the %s instructions %s in our Blog on what to do in case of a website crash."
128
  msgstr ""
129
 
130
+ #: inc/php/page.php:89
131
  msgid "Switch the toggle to the \"ON\" position."
132
  msgstr ""
133
 
134
+ #: inc/php/page.php:90
135
  msgid "Click the \"Save changes\" button."
136
  msgstr ""
137
 
138
+ #: inc/php/page.php:91 inc/php/page.php:222
139
  msgid "Enjoy the result of applying your custom PHP code."
140
  msgstr ""
141
 
142
+ #: inc/php/page.php:91 inc/php/page.php:223
143
  msgid "It's that simple!"
144
  msgstr ""
145
 
146
+ #: inc/php/page.php:96
147
  #, php-format
148
  msgid "If you want more options, then %s let us know %s and we will be happy to add them."
149
  msgstr ""
150
 
151
+ #: inc/php/page.php:110
152
  msgid "Frequently Asked Questions"
153
  msgstr ""
154
 
155
+ #: inc/php/page.php:114
156
  msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
157
  msgstr ""
158
 
159
+ #: inc/php/page.php:139
160
+ msgid "Where can I find a documentation for this plugin?"
161
+ msgstr ""
162
+
163
+ #: inc/php/page.php:144
164
+ #, php-format
165
+ msgid "Please visit our %s Documentation site %s to view documentation."
166
+ msgstr ""
167
+
168
+ #: inc/php/page.php:152
169
+ msgid "Will this plugin work on my wordpress.COM website?"
170
+ msgstr ""
171
+
172
+ #: inc/php/page.php:155
173
+ msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
174
+ msgstr ""
175
+
176
+ #: inc/php/page.php:157
177
+ msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
178
+ msgstr ""
179
+
180
+ #: inc/php/page.php:158
181
+ msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
182
+ msgstr ""
183
+
184
+ #: inc/php/page.php:161
185
+ #, php-format
186
+ msgid "You can learn more about the difference here: %s ."
187
+ msgstr ""
188
+
189
+ #: inc/php/page.php:168
190
+ msgid "Will this plugin work/compatible with the theme I use?"
191
+ msgstr ""
192
+
193
+ #: inc/php/page.php:171
194
+ msgid "This plugin is compatible with most themes."
195
+ msgstr ""
196
+
197
+ #: inc/php/page.php:172
198
+ msgid "But, unfortunately, we cannot check it with all third-party themes (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party theme."
199
+ msgstr ""
200
+
201
+ #: inc/php/page.php:173
202
+ msgid "We constantly check this plugin for compatibility with third-party themes."
203
+ msgstr ""
204
+
205
+ #: inc/php/page.php:174
206
+ msgid "If we find that this plugin is incompatible with a third-party theme, and if we can fix it on our part, we release an update of our plugin to fix the problem."
207
+ msgstr ""
208
+
209
+ #: inc/php/page.php:176
210
+ msgid "If you find a conflict between our plugin and a third-party theme, please let us know and we will definitely release an update of our plugin to fix the problem."
211
+ msgstr ""
212
+
213
+ #: inc/php/page.php:180
214
+ msgid "Will this plugin work/compatible with other plugins that I use?"
215
+ msgstr ""
216
+
217
+ #: inc/php/page.php:183
218
+ msgid "This plugin is compatible with most plugins."
219
+ msgstr ""
220
+
221
+ #: inc/php/page.php:184
222
+ msgid "But, unfortunately, we cannot check it with all third-party plugins (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party plugin."
223
  msgstr ""
224
 
225
+ #: inc/php/page.php:185
226
+ msgid "We constantly check this plugin for compatibility with third-party plugins."
227
  msgstr ""
228
 
229
+ #: inc/php/page.php:186
230
+ msgid "If we find that this plugin is incompatible with a third-party plugin, and if we can fix it on our part, we release an update of our plugin to fix the problem."
231
+ msgstr ""
232
+
233
+ #: inc/php/page.php:188
234
+ msgid "If you find a conflict between our plugin and a third-party plugin, please let us know and we will definitely release an update of our plugin to fix the problem."
235
+ msgstr ""
236
+
237
+ #: inc/php/page.php:192
238
  msgid "Can I use this plugin on my language?"
239
  msgstr ""
240
 
241
+ #: inc/php/page.php:195 inc/php/page.php:230
242
+ msgid "Yes."
243
+ msgstr ""
244
+
245
+ #: inc/php/page.php:196
246
+ msgid "This plugin is ready for translation and has already been translated into several languages."
247
+ msgstr ""
248
+
249
+ #: inc/php/page.php:197
250
+ msgid "But If your language is not available then you can make one."
251
  msgstr ""
252
 
253
+ #: inc/php/page.php:198
254
+ msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
255
+ msgstr ""
256
+
257
+ #: inc/php/page.php:199
258
+ msgid "Many of plugin users would be delighted if you share your translation with the community."
259
+ msgstr ""
260
+
261
+ #: inc/php/page.php:200
262
+ msgid "Thanks for your contribution!"
263
+ msgstr ""
264
+
265
+ #: inc/php/page.php:204
266
  #, php-format
267
+ msgid "If you want to help translate this plugin, please visit the %s."
268
  msgstr ""
269
 
270
+ #: inc/php/page.php:208
271
+ msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
272
  msgstr ""
273
 
274
+ #: inc/php/page.php:211
275
+ #, php-format
276
+ msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
277
  msgstr ""
278
 
279
+ #: inc/php/page.php:218
280
  msgid "How does it work?"
281
  msgstr ""
282
 
283
+ #: inc/php/page.php:221
284
+ msgid "On the \"Main\" tab, place your custom PHP code in the code editor field, switch the toggle to the \"ON\" position and click the \"Save changes\" button."
285
  msgstr ""
286
 
287
+ #: inc/php/page.php:227
288
  msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
289
  msgstr ""
290
 
291
+ #: inc/php/page.php:231
292
+ msgid "But you need to do it properly, like this:"
293
  msgstr ""
294
 
295
+ #: inc/php/page.php:243
296
  msgid "How much of PHP code (characters) I can enter in the code editor?"
297
  msgstr ""
298
 
299
+ #: inc/php/page.php:246
300
  msgid "We don't limit the number of characters."
301
  msgstr ""
302
 
303
+ #: inc/php/page.php:250
304
  msgid "Does this plugin requires any modification of the theme?"
305
  msgstr ""
306
 
307
+ #: inc/php/page.php:253 inc/php/page.php:261
308
+ msgid "Absolutely not."
309
  msgstr ""
310
 
311
+ #: inc/php/page.php:254
312
+ msgid "This plugin is configurable entirely from the plugin settings page."
313
+ msgstr ""
314
+
315
+ #: inc/php/page.php:258
316
  msgid "Does this require any knowledge of HTML or CSS?"
317
  msgstr ""
318
 
319
+ #: inc/php/page.php:262
320
+ msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
321
  msgstr ""
322
 
323
+ #: inc/php/page.php:266
324
  msgid "Can I add my custom PHP code to a specific page of my website?"
325
  msgstr ""
326
 
327
+ #: inc/php/page.php:269
328
+ msgid "For now, this plugin does not have an option to apply the custom PHP code only on specific pages."
329
+ msgstr ""
330
+
331
+ #: inc/php/page.php:270
332
+ msgid "We plan to add this feature soon."
333
+ msgstr ""
334
+
335
+ #: inc/php/page.php:271
336
+ msgid "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."
337
+ msgstr ""
338
+
339
+ #: inc/php/page.php:272
340
+ msgid "You need something like this:"
341
+ msgstr ""
342
+
343
+ #: inc/php/page.php:288
344
+ msgid "It's not working."
345
+ msgstr ""
346
+
347
+ #: inc/php/page.php:289 inc/php/page.php:305 inc/php/page.php:331
348
+ msgid "What could be wrong?"
349
+ msgstr ""
350
+
351
+ #: inc/php/page.php:292
352
+ msgid "As with every plugin, it's possible that things don't work."
353
+ msgstr ""
354
+
355
+ #: inc/php/page.php:293
356
+ msgid "It's impossible to tell what could be wrong exactly."
357
+ msgstr ""
358
+
359
+ #: inc/php/page.php:294
360
+ msgid "The most common reason for this is a web browser's cache."
361
+ msgstr ""
362
+
363
+ #: inc/php/page.php:295
364
+ msgid "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load."
365
+ msgstr ""
366
+
367
+ #: inc/php/page.php:296
368
+ msgid "This is called the browser's cache."
369
+ msgstr ""
370
+
371
+ #: inc/php/page.php:297
372
+ msgid "Clearing your browser's cache may solve the problem."
373
+ msgstr ""
374
+
375
+ #: inc/php/page.php:299
376
+ msgid "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."
377
  msgstr ""
378
 
379
+ #: inc/php/page.php:300 inc/php/page.php:401
380
+ msgid "Please include as much information as possible, including a link to your website where the problem can be seen."
381
  msgstr ""
382
 
383
+ #: inc/php/page.php:304
384
+ msgid "On the plugin settings page, an error message appears."
385
+ msgstr ""
386
+
387
+ #: inc/php/page.php:308
388
  msgid "Here are a few of the most likely causes of the error message:"
389
  msgstr ""
390
 
391
+ #: inc/php/page.php:311
392
+ msgid "You make a syntax error in the code that you have entered."
393
  msgstr ""
394
 
395
+ #: inc/php/page.php:312
396
+ msgid "Check the syntax of your code and try again."
397
  msgstr ""
398
 
399
+ #: inc/php/page.php:315
400
+ msgid "You entered two functions with the same name."
401
  msgstr ""
402
 
403
+ #: inc/php/page.php:316
404
+ msgid "Use a unique names for your functions."
405
  msgstr ""
406
 
407
+ #: inc/php/page.php:319
408
+ msgid "You have entered function with a name that is already occupied by another function."
409
+ msgstr ""
410
+
411
+ #: inc/php/page.php:320
412
+ msgid "Use a unique name for your function."
413
+ msgstr ""
414
+
415
+ #: inc/php/page.php:323
416
+ msgid "You are trying to overwrite an existing function (of WordPress, theme, or plugin)."
417
  msgstr ""
418
 
419
+ #: inc/php/page.php:324
420
+ msgid "Instead, use filters and hooks."
421
  msgstr ""
422
 
423
+ #: inc/php/page.php:330
424
+ msgid "My custom PHP code is not working."
425
+ msgstr ""
426
+
427
+ #: inc/php/page.php:334
428
+ 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."
429
+ msgstr ""
430
+
431
+ #: inc/php/page.php:335
432
+ msgid "Here are a few of the most likely causes of the issue:"
433
+ msgstr ""
434
+
435
+ #: inc/php/page.php:337
436
  msgid "You have a typo during the insertion of your custom PHP code."
437
  msgstr ""
438
 
439
+ #: inc/php/page.php:338
440
  msgid "Your custom PHP code has a syntax error."
441
  msgstr ""
442
 
443
+ #: inc/php/page.php:339
444
  msgid "Your custom PHP code is incorrect and may not work."
445
  msgstr ""
446
 
447
+ #: inc/php/page.php:344
448
+ msgid "What to do if this plugin crashed the website?"
449
  msgstr ""
450
 
451
+ #: inc/php/page.php:347
452
+ msgid "This plugin has a built-in functions for checking the custom code for syntax errors, duplicate functions names, and etc."
453
  msgstr ""
454
 
455
+ #: inc/php/page.php:348
456
+ msgid "But plugin is not perfect, so there are times when the entered custom code causes the error and white screen (WSOD)."
457
  msgstr ""
458
 
459
+ #: inc/php/page.php:349
460
+ msgid "This is due to the fact that your custom code has a syntax error that this plugin could not detect."
461
  msgstr ""
462
 
463
+ #: inc/php/page.php:350
464
+ msgid "When this happens with you, please perform the following steps."
465
  msgstr ""
466
 
467
+ #: inc/php/page.php:353
468
+ msgid "Access your server via FTP or SFTP."
469
  msgstr ""
470
 
471
+ #: inc/php/page.php:354
472
+ msgid "If you aren't sure how usually your web hosting provider will have instructions somewhere on their website."
473
  msgstr ""
474
 
475
+ #: inc/php/page.php:357
476
+ msgid "Browse to the directory <code>wp-content/plugins/my-custom-functions/</code>."
477
  msgstr ""
478
 
479
+ #: inc/php/page.php:358
480
+ msgid "Please contact your web hosting company to get help if you can't find this folder."
481
+ msgstr ""
482
+
483
+ #: inc/php/page.php:361
484
+ msgid "Rename the file <code>START</code> to <code>STOP</code>."
485
+ msgstr ""
486
+
487
+ #: inc/php/page.php:362
488
+ msgid "This will stop the execution of your custom code."
489
+ msgstr ""
490
+
491
+ #: inc/php/page.php:364
492
  msgid "Log in to Admin Area of your WordPress website."
493
  msgstr ""
494
 
495
+ #: inc/php/page.php:365
496
  msgid "Go to the plugin settings page <code>Settings</code> &#10145; <code>PHP Inserter</code>."
497
  msgstr ""
498
 
499
+ #: inc/php/page.php:366
500
  msgid "Edit/fix your custom PHP code that you entered before the crash."
501
  msgstr ""
502
 
503
+ #: inc/php/page.php:367
504
  msgid "Return to the plugin folder and rename the file <code>STOP</code> to <code>START</code> and you're done!"
505
  msgstr ""
506
 
507
+ #: inc/php/page.php:369
508
+ msgid "This plugin stored you entered code in the database of your website."
509
  msgstr ""
510
 
511
+ #: inc/php/page.php:370
512
+ msgid "For getting your code, you also can go to the <code>Database</code> &#10145; Table <code>wp_options</code> &#10145; Option <code>spacexchimp_p001_settings</code> &#10145; <code>option_value</code>."
513
+ msgstr ""
514
+
515
+ #: inc/php/page.php:372
516
  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."
517
  msgstr ""
518
 
519
+ #: inc/php/page.php:376
520
+ msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
521
+ msgstr ""
522
+
523
+ #: inc/php/page.php:377
524
+ msgid "Why is this?"
525
+ msgstr ""
526
+
527
+ #: inc/php/page.php:380
528
+ msgid "This plugin can not cause such problem."
529
  msgstr ""
530
 
531
+ #: inc/php/page.php:381
532
+ msgid "More likely, the problem are related to the settings of the website."
533
  msgstr ""
534
 
535
+ #: inc/php/page.php:382
536
+ msgid "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."
537
+ msgstr ""
538
+
539
+ #: inc/php/page.php:383
540
+ msgid "Also please try to re-login to the website, this too can help."
541
+ msgstr ""
542
+
543
+ #: inc/php/page.php:387
544
  msgid "Where to report bug if found?"
545
  msgstr ""
546
 
547
+ #: inc/php/page.php:390
548
+ msgid "Bug reports are very welcome!"
549
+ msgstr ""
550
+
551
+ #: inc/php/page.php:393
552
  #, php-format
553
+ msgid "Please visit our %s contact page %s and report."
554
  msgstr ""
555
 
556
+ #: inc/php/page.php:398 inc/php/page.php:427
557
+ msgid "Please do not forget to specify the name of the plugin."
558
+ msgstr ""
559
+
560
+ #: inc/php/page.php:399 inc/php/page.php:428 inc/php/page.php:444
561
+ msgid "Thank you!"
562
+ msgstr ""
563
+
564
+ #: inc/php/page.php:402
565
+ msgid "Describe in more detail what exactly you are seeing."
566
+ msgstr ""
567
+
568
+ #: inc/php/page.php:403
569
+ msgid "Here are some examples:"
570
+ msgstr ""
571
+
572
+ #: inc/php/page.php:406
573
+ msgid "Elements of the plugin settings page are not working."
574
+ msgstr ""
575
+
576
+ #: inc/php/page.php:407
577
+ msgid "An error message is displayed on the plugin settings page."
578
+ msgstr ""
579
+
580
+ #: inc/php/page.php:408
581
+ msgid "An error message is displayed on the front end of website."
582
+ msgstr ""
583
+
584
+ #: inc/php/page.php:409
585
+ msgid "An error message is displayed on the back end of website."
586
+ msgstr ""
587
+
588
+ #: inc/php/page.php:410
589
+ msgid "Custom code is inserted on the plugin settings page, but it is not applied on the website."
590
+ msgstr ""
591
+
592
+ #: inc/php/page.php:411
593
+ msgid "Website is crashed."
594
+ msgstr ""
595
+
596
+ #: inc/php/page.php:416
597
  msgid "Where to share any ideas or suggestions to make the plugin better?"
598
  msgstr ""
599
 
600
+ #: inc/php/page.php:419
601
+ msgid "Any suggestions are very welcome!"
602
+ msgstr ""
603
+
604
+ #: inc/php/page.php:422
605
  #, php-format
606
+ msgid "Please visit our %s contact page %s."
607
  msgstr ""
608
 
609
+ #: inc/php/page.php:432
610
+ msgid "I love this plugin!"
611
+ msgstr ""
612
+
613
+ #: inc/php/page.php:433
614
+ msgid "Can I help somehow?"
615
+ msgstr ""
616
+
617
+ #: inc/php/page.php:436
618
+ msgid "Yes, any contributions are very welcome!"
619
+ msgstr ""
620
+
621
+ #: inc/php/page.php:439
622
+ #, php-format
623
+ msgid "Please visit our %s Support Us %s page."
624
+ msgstr ""
625
+
626
+ #: inc/php/page.php:448
627
+ msgid "Where can I find information about your licenses, payment process and refunds?"
628
+ msgstr ""
629
+
630
+ #: inc/php/page.php:453
631
+ #, php-format
632
+ msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
633
+ msgstr ""
634
+
635
+ #: inc/php/page.php:461
636
+ msgid "Where can I find information about your customer support?"
637
  msgstr ""
638
 
639
+ #: inc/php/page.php:466
640
  #, php-format
641
+ msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
642
  msgstr ""
643
 
644
+ #: inc/php/page.php:474
645
+ msgid "Where can I find information about your affiliate program?"
646
+ msgstr ""
647
+
648
+ #: inc/php/page.php:479
649
+ #, php-format
650
+ msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
651
+ msgstr ""
652
+
653
+ #: inc/php/page.php:487
654
  msgid "My question wasn't answered here."
655
  msgstr ""
656
 
657
+ #: inc/php/page.php:492
658
  #, php-format
659
+ msgid "You can ask your question on %s this page %s."
660
+ msgstr ""
661
+
662
+ #: inc/php/page.php:497
663
+ msgid "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."
664
  msgstr ""
665
 
666
+ #: inc/php/page.php:508
667
  msgid "Support Us"
668
  msgstr ""
669
 
670
+ #: inc/php/page.php:516 inc/php/settings.php:61 inc/php/sidebar.php:54
671
  msgid "Donate with PayPal"
672
  msgstr ""
673
 
674
+ #: inc/php/page.php:523
675
  #, php-format
676
+ msgid "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."
677
+ msgstr ""
678
+
679
+ #: inc/php/page.php:532
680
+ msgid "Our intention is to create projects that will make this world a better place."
681
  msgstr ""
682
 
683
+ #: inc/php/page.php:533
684
+ msgid "Our motto is - «Follow your dreams and don’t give up»."
685
  msgstr ""
686
 
687
+ #: inc/php/page.php:534
688
+ msgid "We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
689
  msgstr ""
690
 
691
+ #: inc/php/page.php:537
692
+ 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."
693
+ msgstr ""
694
+
695
+ #: inc/php/page.php:538
696
+ msgid "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."
697
+ msgstr ""
698
+
699
+ #: inc/php/page.php:541
700
  msgid "If you appreciate our work, you can buy us a cup of coffee!"
701
  msgstr ""
702
 
703
+ #: inc/php/page.php:544
704
  msgid "Thank you for your support!"
705
  msgstr ""
706
 
737
  msgstr "關於"
738
 
739
  #: inc/php/sidebar.php:35
740
+ msgid "This plugin gives you the ability to 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."
741
  msgstr ""
742
 
743
  #: inc/php/sidebar.php:40
767
  #. Author URI of the plugin/theme
768
  msgid "https://www.spacexchimp.com"
769
  msgstr "https://www.spacexchimp.com"
 
 
 
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: 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"
@@ -34,369 +34,671 @@ msgstr ""
34
  msgid "PHP Inserter"
35
  msgstr ""
36
 
37
- #: inc/php/messages.php:26
38
- msgid "Hello. We are the team of Space X-Chimp."
39
  msgstr ""
40
 
41
  #: inc/php/messages.php:28
 
 
 
 
42
  #, php-format
43
  msgid "Thank you for installing our plugin! We hope you will love it! %s"
44
  msgstr ""
45
 
46
- #: inc/php/messages.php:68
47
  msgid "You have installed an old version of this plugin."
48
  msgstr ""
49
 
50
- #: inc/php/messages.php:69
51
  msgid "Please update the plugin to the latest version, and all will be fine."
52
  msgstr ""
53
 
54
- #: inc/php/messages.php:91
55
  msgid "Custom code updated successfully."
56
  msgstr ""
57
 
58
- #: inc/php/messages.php:110
59
  msgid "Sorry, but your code causes a \"Fatal error\", so it is not applied!"
60
  msgstr ""
61
 
62
- #: inc/php/messages.php:111
63
  msgid "Please, check the code and try again."
64
  msgstr ""
65
 
66
- #: inc/php/page.php:32
67
  #, php-format
68
  msgid "by %s Space X-Chimp %s"
69
  msgstr ""
70
 
71
- #: inc/php/page.php:38
72
  msgid "Version"
73
  msgstr ""
74
 
75
- #: inc/php/page.php:45
76
  msgid "Main"
77
  msgstr ""
78
 
79
- #: inc/php/page.php:46
80
  msgid "Usage"
81
  msgstr ""
82
 
83
- #: inc/php/page.php:47
84
  msgid "F.A.Q."
85
  msgstr ""
86
 
87
- #: inc/php/page.php:48 inc/php/settings.php:54 inc/php/sidebar.php:47
88
  msgid "Support"
89
  msgstr ""
90
 
91
- #: inc/php/page.php:49
92
  msgid "Store"
93
  msgstr ""
94
 
95
- #: inc/php/page.php:65
96
  msgid "Usage Instructions"
97
  msgstr ""
98
 
99
- #: inc/php/page.php:67
100
  msgid "To add your custom PHP code to your website, simply follow these steps:"
101
  msgstr ""
102
 
103
- #: inc/php/page.php:69
104
  msgid "Go to the \"Main\" tab on this page."
105
  msgstr ""
106
 
107
- #: inc/php/page.php:70
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
 
115
- #: inc/php/page.php:71
116
  msgid "Do not wrap your custom PHP code in HTML tags, such as <code>&lt;?php</code>...<code>?&gt;</code>."
117
  msgstr ""
118
 
119
- #: inc/php/page.php:73
120
  #, php-format
121
  msgid "Before use, please read the %s instructions %s in our Blog on what to do in case of a website crash."
122
  msgstr ""
123
 
124
- #: inc/php/page.php:80
125
  msgid "Switch the toggle to the \"ON\" position."
126
  msgstr ""
127
 
128
- #: inc/php/page.php:81
129
  msgid "Click the \"Save changes\" button."
130
  msgstr ""
131
 
132
- #: inc/php/page.php:82
133
  msgid "Enjoy the result of applying your custom PHP code."
134
  msgstr ""
135
 
136
- #: inc/php/page.php:82
137
  msgid "It's that simple!"
138
  msgstr ""
139
 
140
- #: inc/php/page.php:85
141
  #, php-format
142
  msgid "If you want more options, then %s let us know %s and we will be happy to add them."
143
  msgstr ""
144
 
145
- #: inc/php/page.php:99
146
  msgid "Frequently Asked Questions"
147
  msgstr ""
148
 
149
- #: inc/php/page.php:103
150
  msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
151
  msgstr ""
152
 
153
- #: inc/php/page.php:125
154
- msgid "Will this plugin work on my WordPress.COM website?"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
155
  msgstr ""
156
 
157
- #: inc/php/page.php:126
158
- msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
159
  msgstr ""
160
 
161
- #: inc/php/page.php:128
 
 
 
 
 
 
 
 
162
  msgid "Can I use this plugin on my language?"
163
  msgstr ""
164
 
165
- #: inc/php/page.php:129
166
- msgid "Yes. This plugin is ready for translation and has already been translated into several languages."
 
 
 
 
 
 
 
 
167
  msgstr ""
168
 
169
- #: inc/php/page.php:131
 
 
 
 
 
 
 
 
 
 
 
 
170
  #, php-format
171
- msgid "If you want to help translate this plugin then please visit the %s. You can also use the POT file, that is included and placed in the \"languages\" folder, in order to create a translation PO file. Just send the PO file to us at the %s and we will include this translation within the next plugin update."
172
  msgstr ""
173
 
174
- #: inc/php/page.php:136
175
- msgid "Maybe not all existed translations are up to date. You are welcome to contribute corrections!"
176
  msgstr ""
177
 
178
- #: inc/php/page.php:137
179
- msgid "Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!"
 
180
  msgstr ""
181
 
182
- #: inc/php/page.php:139
183
  msgid "How does it work?"
184
  msgstr ""
185
 
186
- #: inc/php/page.php:140
187
- msgid "On the \"Main\" tab, place your custom PHP code in the code editor field, switch the toggle to the \"ON\" position and click the \"Save changes\" button. Enjoy the result of applying your custom PHP code. It's that simple!"
188
  msgstr ""
189
 
190
- #: inc/php/page.php:142
191
  msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
192
  msgstr ""
193
 
194
- #: inc/php/page.php:143
195
- msgid "Yes. But you need to do it properly, like this:"
196
  msgstr ""
197
 
198
- #: inc/php/page.php:153
199
  msgid "How much of PHP code (characters) I can enter in the code editor?"
200
  msgstr ""
201
 
202
- #: inc/php/page.php:154
203
  msgid "We don't limit the number of characters."
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> &#10145; <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> &#10145; Table <code>wp_options</code> &#10145; Option <code>spacexchimp_p001_settings</code> &#10145; <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
 
@@ -433,7 +735,7 @@ msgid "About"
433
  msgstr ""
434
 
435
  #: inc/php/sidebar.php:35
436
- msgid "This plugin allows you to 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."
437
  msgstr ""
438
 
439
  #: inc/php/sidebar.php:40
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: My Custom Functions\n"
6
+ "POT-Creation-Date: 2019-02-20 23:19+0300\n"
7
  "PO-Revision-Date: 2015-08-30 16:22+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
34
  msgid "PHP Inserter"
35
  msgstr ""
36
 
37
+ #: inc/php/messages.php:27 inc/php/page.php:520
38
+ msgid "Hello!"
39
  msgstr ""
40
 
41
  #: inc/php/messages.php:28
42
+ msgid "We are the team of Space X-Chimp."
43
+ msgstr ""
44
+
45
+ #: inc/php/messages.php:33
46
  #, php-format
47
  msgid "Thank you for installing our plugin! We hope you will love it! %s"
48
  msgstr ""
49
 
50
+ #: inc/php/messages.php:74
51
  msgid "You have installed an old version of this plugin."
52
  msgstr ""
53
 
54
+ #: inc/php/messages.php:75
55
  msgid "Please update the plugin to the latest version, and all will be fine."
56
  msgstr ""
57
 
58
+ #: inc/php/messages.php:99
59
  msgid "Custom code updated successfully."
60
  msgstr ""
61
 
62
+ #: inc/php/messages.php:119
63
  msgid "Sorry, but your code causes a \"Fatal error\", so it is not applied!"
64
  msgstr ""
65
 
66
+ #: inc/php/messages.php:120
67
  msgid "Please, check the code and try again."
68
  msgstr ""
69
 
70
+ #: inc/php/page.php:33
71
  #, php-format
72
  msgid "by %s Space X-Chimp %s"
73
  msgstr ""
74
 
75
+ #: inc/php/page.php:39
76
  msgid "Version"
77
  msgstr ""
78
 
79
+ #: inc/php/page.php:46
80
  msgid "Main"
81
  msgstr ""
82
 
83
+ #: inc/php/page.php:47
84
  msgid "Usage"
85
  msgstr ""
86
 
87
+ #: inc/php/page.php:48
88
  msgid "F.A.Q."
89
  msgstr ""
90
 
91
+ #: inc/php/page.php:49 inc/php/settings.php:54 inc/php/sidebar.php:47
92
  msgid "Support"
93
  msgstr ""
94
 
95
+ #: inc/php/page.php:50
96
  msgid "Store"
97
  msgstr ""
98
 
99
+ #: inc/php/page.php:66
100
  msgid "Usage Instructions"
101
  msgstr ""
102
 
103
+ #: inc/php/page.php:68
104
  msgid "To add your custom PHP code to your website, simply follow these steps:"
105
  msgstr ""
106
 
107
+ #: inc/php/page.php:70
108
  msgid "Go to the \"Main\" tab on this page."
109
  msgstr ""
110
 
111
+ #: inc/php/page.php:72
112
  msgid "Place your custom PHP code in the code editor field."
113
  msgstr ""
114
 
115
+ #: inc/php/page.php:75 inc/php/page.php:79
116
  msgid "Note!"
117
  msgstr ""
118
 
119
+ #: inc/php/page.php:76
120
  msgid "Do not wrap your custom PHP code in HTML tags, such as <code>&lt;?php</code>...<code>?&gt;</code>."
121
  msgstr ""
122
 
123
+ #: inc/php/page.php:82
124
  #, php-format
125
  msgid "Before use, please read the %s instructions %s in our Blog on what to do in case of a website crash."
126
  msgstr ""
127
 
128
+ #: inc/php/page.php:89
129
  msgid "Switch the toggle to the \"ON\" position."
130
  msgstr ""
131
 
132
+ #: inc/php/page.php:90
133
  msgid "Click the \"Save changes\" button."
134
  msgstr ""
135
 
136
+ #: inc/php/page.php:91 inc/php/page.php:222
137
  msgid "Enjoy the result of applying your custom PHP code."
138
  msgstr ""
139
 
140
+ #: inc/php/page.php:91 inc/php/page.php:223
141
  msgid "It's that simple!"
142
  msgstr ""
143
 
144
+ #: inc/php/page.php:96
145
  #, php-format
146
  msgid "If you want more options, then %s let us know %s and we will be happy to add them."
147
  msgstr ""
148
 
149
+ #: inc/php/page.php:110
150
  msgid "Frequently Asked Questions"
151
  msgstr ""
152
 
153
+ #: inc/php/page.php:114
154
  msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
155
  msgstr ""
156
 
157
+ #: inc/php/page.php:139
158
+ msgid "Where can I find a documentation for this plugin?"
159
+ msgstr ""
160
+
161
+ #: inc/php/page.php:144
162
+ #, php-format
163
+ msgid "Please visit our %s Documentation site %s to view documentation."
164
+ msgstr ""
165
+
166
+ #: inc/php/page.php:152
167
+ msgid "Will this plugin work on my wordpress.COM website?"
168
+ msgstr ""
169
+
170
+ #: inc/php/page.php:155
171
+ msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
172
+ msgstr ""
173
+
174
+ #: inc/php/page.php:157
175
+ msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
176
+ msgstr ""
177
+
178
+ #: inc/php/page.php:158
179
+ msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
180
+ msgstr ""
181
+
182
+ #: inc/php/page.php:161
183
+ #, php-format
184
+ msgid "You can learn more about the difference here: %s ."
185
+ msgstr ""
186
+
187
+ #: inc/php/page.php:168
188
+ msgid "Will this plugin work/compatible with the theme I use?"
189
+ msgstr ""
190
+
191
+ #: inc/php/page.php:171
192
+ msgid "This plugin is compatible with most themes."
193
+ msgstr ""
194
+
195
+ #: inc/php/page.php:172
196
+ msgid "But, unfortunately, we cannot check it with all third-party themes (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party theme."
197
+ msgstr ""
198
+
199
+ #: inc/php/page.php:173
200
+ msgid "We constantly check this plugin for compatibility with third-party themes."
201
+ msgstr ""
202
+
203
+ #: inc/php/page.php:174
204
+ msgid "If we find that this plugin is incompatible with a third-party theme, and if we can fix it on our part, we release an update of our plugin to fix the problem."
205
+ msgstr ""
206
+
207
+ #: inc/php/page.php:176
208
+ msgid "If you find a conflict between our plugin and a third-party theme, please let us know and we will definitely release an update of our plugin to fix the problem."
209
+ msgstr ""
210
+
211
+ #: inc/php/page.php:180
212
+ msgid "Will this plugin work/compatible with other plugins that I use?"
213
+ msgstr ""
214
+
215
+ #: inc/php/page.php:183
216
+ msgid "This plugin is compatible with most plugins."
217
+ msgstr ""
218
+
219
+ #: inc/php/page.php:184
220
+ msgid "But, unfortunately, we cannot check it with all third-party plugins (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party plugin."
221
  msgstr ""
222
 
223
+ #: inc/php/page.php:185
224
+ msgid "We constantly check this plugin for compatibility with third-party plugins."
225
  msgstr ""
226
 
227
+ #: inc/php/page.php:186
228
+ msgid "If we find that this plugin is incompatible with a third-party plugin, and if we can fix it on our part, we release an update of our plugin to fix the problem."
229
+ msgstr ""
230
+
231
+ #: inc/php/page.php:188
232
+ msgid "If you find a conflict between our plugin and a third-party plugin, please let us know and we will definitely release an update of our plugin to fix the problem."
233
+ msgstr ""
234
+
235
+ #: inc/php/page.php:192
236
  msgid "Can I use this plugin on my language?"
237
  msgstr ""
238
 
239
+ #: inc/php/page.php:195 inc/php/page.php:230
240
+ msgid "Yes."
241
+ msgstr ""
242
+
243
+ #: inc/php/page.php:196
244
+ msgid "This plugin is ready for translation and has already been translated into several languages."
245
+ msgstr ""
246
+
247
+ #: inc/php/page.php:197
248
+ msgid "But If your language is not available then you can make one."
249
  msgstr ""
250
 
251
+ #: inc/php/page.php:198
252
+ msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
253
+ msgstr ""
254
+
255
+ #: inc/php/page.php:199
256
+ msgid "Many of plugin users would be delighted if you share your translation with the community."
257
+ msgstr ""
258
+
259
+ #: inc/php/page.php:200
260
+ msgid "Thanks for your contribution!"
261
+ msgstr ""
262
+
263
+ #: inc/php/page.php:204
264
  #, php-format
265
+ msgid "If you want to help translate this plugin, please visit the %s."
266
  msgstr ""
267
 
268
+ #: inc/php/page.php:208
269
+ msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
270
  msgstr ""
271
 
272
+ #: inc/php/page.php:211
273
+ #, php-format
274
+ msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
275
  msgstr ""
276
 
277
+ #: inc/php/page.php:218
278
  msgid "How does it work?"
279
  msgstr ""
280
 
281
+ #: inc/php/page.php:221
282
+ msgid "On the \"Main\" tab, place your custom PHP code in the code editor field, switch the toggle to the \"ON\" position and click the \"Save changes\" button."
283
  msgstr ""
284
 
285
+ #: inc/php/page.php:227
286
  msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
287
  msgstr ""
288
 
289
+ #: inc/php/page.php:231
290
+ msgid "But you need to do it properly, like this:"
291
  msgstr ""
292
 
293
+ #: inc/php/page.php:243
294
  msgid "How much of PHP code (characters) I can enter in the code editor?"
295
  msgstr ""
296
 
297
+ #: inc/php/page.php:246
298
  msgid "We don't limit the number of characters."
299
  msgstr ""
300
 
301
+ #: inc/php/page.php:250
302
  msgid "Does this plugin requires any modification of the theme?"
303
  msgstr ""
304
 
305
+ #: inc/php/page.php:253 inc/php/page.php:261
306
+ msgid "Absolutely not."
307
  msgstr ""
308
 
309
+ #: inc/php/page.php:254
310
+ msgid "This plugin is configurable entirely from the plugin settings page."
311
+ msgstr ""
312
+
313
+ #: inc/php/page.php:258
314
  msgid "Does this require any knowledge of HTML or CSS?"
315
  msgstr ""
316
 
317
+ #: inc/php/page.php:262
318
+ msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
319
  msgstr ""
320
 
321
+ #: inc/php/page.php:266
322
  msgid "Can I add my custom PHP code to a specific page of my website?"
323
  msgstr ""
324
 
325
+ #: inc/php/page.php:269
326
+ msgid "For now, this plugin does not have an option to apply the custom PHP code only on specific pages."
327
+ msgstr ""
328
+
329
+ #: inc/php/page.php:270
330
+ msgid "We plan to add this feature soon."
331
+ msgstr ""
332
+
333
+ #: inc/php/page.php:271
334
+ msgid "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."
335
+ msgstr ""
336
+
337
+ #: inc/php/page.php:272
338
+ msgid "You need something like this:"
339
+ msgstr ""
340
+
341
+ #: inc/php/page.php:288
342
+ msgid "It's not working."
343
+ msgstr ""
344
+
345
+ #: inc/php/page.php:289 inc/php/page.php:305 inc/php/page.php:331
346
+ msgid "What could be wrong?"
347
  msgstr ""
348
 
349
+ #: inc/php/page.php:292
350
+ msgid "As with every plugin, it's possible that things don't work."
351
  msgstr ""
352
 
353
+ #: inc/php/page.php:293
354
+ msgid "It's impossible to tell what could be wrong exactly."
355
+ msgstr ""
356
+
357
+ #: inc/php/page.php:294
358
+ msgid "The most common reason for this is a web browser's cache."
359
+ msgstr ""
360
+
361
+ #: inc/php/page.php:295
362
+ msgid "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load."
363
+ msgstr ""
364
+
365
+ #: inc/php/page.php:296
366
+ msgid "This is called the browser's cache."
367
+ msgstr ""
368
+
369
+ #: inc/php/page.php:297
370
+ msgid "Clearing your browser's cache may solve the problem."
371
+ msgstr ""
372
+
373
+ #: inc/php/page.php:299
374
+ msgid "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."
375
+ msgstr ""
376
+
377
+ #: inc/php/page.php:300 inc/php/page.php:401
378
+ msgid "Please include as much information as possible, including a link to your website where the problem can be seen."
379
+ msgstr ""
380
+
381
+ #: inc/php/page.php:304
382
+ msgid "On the plugin settings page, an error message appears."
383
+ msgstr ""
384
+
385
+ #: inc/php/page.php:308
386
  msgid "Here are a few of the most likely causes of the error message:"
387
  msgstr ""
388
 
389
+ #: inc/php/page.php:311
390
+ msgid "You make a syntax error in the code that you have entered."
391
  msgstr ""
392
 
393
+ #: inc/php/page.php:312
394
+ msgid "Check the syntax of your code and try again."
395
  msgstr ""
396
 
397
+ #: inc/php/page.php:315
398
+ msgid "You entered two functions with the same name."
399
  msgstr ""
400
 
401
+ #: inc/php/page.php:316
402
+ msgid "Use a unique names for your functions."
403
  msgstr ""
404
 
405
+ #: inc/php/page.php:319
406
+ msgid "You have entered function with a name that is already occupied by another function."
407
+ msgstr ""
408
+
409
+ #: inc/php/page.php:320
410
+ msgid "Use a unique name for your function."
411
+ msgstr ""
412
+
413
+ #: inc/php/page.php:323
414
+ msgid "You are trying to overwrite an existing function (of WordPress, theme, or plugin)."
415
  msgstr ""
416
 
417
+ #: inc/php/page.php:324
418
+ msgid "Instead, use filters and hooks."
419
  msgstr ""
420
 
421
+ #: inc/php/page.php:330
422
+ msgid "My custom PHP code is not working."
423
+ msgstr ""
424
+
425
+ #: inc/php/page.php:334
426
+ 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."
427
+ msgstr ""
428
+
429
+ #: inc/php/page.php:335
430
+ msgid "Here are a few of the most likely causes of the issue:"
431
+ msgstr ""
432
+
433
+ #: inc/php/page.php:337
434
  msgid "You have a typo during the insertion of your custom PHP code."
435
  msgstr ""
436
 
437
+ #: inc/php/page.php:338
438
  msgid "Your custom PHP code has a syntax error."
439
  msgstr ""
440
 
441
+ #: inc/php/page.php:339
442
  msgid "Your custom PHP code is incorrect and may not work."
443
  msgstr ""
444
 
445
+ #: inc/php/page.php:344
446
+ msgid "What to do if this plugin crashed the website?"
447
  msgstr ""
448
 
449
+ #: inc/php/page.php:347
450
+ msgid "This plugin has a built-in functions for checking the custom code for syntax errors, duplicate functions names, and etc."
451
  msgstr ""
452
 
453
+ #: inc/php/page.php:348
454
+ msgid "But plugin is not perfect, so there are times when the entered custom code causes the error and white screen (WSOD)."
455
  msgstr ""
456
 
457
+ #: inc/php/page.php:349
458
+ msgid "This is due to the fact that your custom code has a syntax error that this plugin could not detect."
459
  msgstr ""
460
 
461
+ #: inc/php/page.php:350
462
+ msgid "When this happens with you, please perform the following steps."
463
  msgstr ""
464
 
465
+ #: inc/php/page.php:353
466
+ msgid "Access your server via FTP or SFTP."
467
  msgstr ""
468
 
469
+ #: inc/php/page.php:354
470
+ msgid "If you aren't sure how usually your web hosting provider will have instructions somewhere on their website."
471
  msgstr ""
472
 
473
+ #: inc/php/page.php:357
474
+ msgid "Browse to the directory <code>wp-content/plugins/my-custom-functions/</code>."
475
  msgstr ""
476
 
477
+ #: inc/php/page.php:358
478
+ msgid "Please contact your web hosting company to get help if you can't find this folder."
479
+ msgstr ""
480
+
481
+ #: inc/php/page.php:361
482
+ msgid "Rename the file <code>START</code> to <code>STOP</code>."
483
+ msgstr ""
484
+
485
+ #: inc/php/page.php:362
486
+ msgid "This will stop the execution of your custom code."
487
+ msgstr ""
488
+
489
+ #: inc/php/page.php:364
490
  msgid "Log in to Admin Area of your WordPress website."
491
  msgstr ""
492
 
493
+ #: inc/php/page.php:365
494
  msgid "Go to the plugin settings page <code>Settings</code> &#10145; <code>PHP Inserter</code>."
495
  msgstr ""
496
 
497
+ #: inc/php/page.php:366
498
  msgid "Edit/fix your custom PHP code that you entered before the crash."
499
  msgstr ""
500
 
501
+ #: inc/php/page.php:367
502
  msgid "Return to the plugin folder and rename the file <code>STOP</code> to <code>START</code> and you're done!"
503
  msgstr ""
504
 
505
+ #: inc/php/page.php:369
506
+ msgid "This plugin stored you entered code in the database of your website."
507
+ msgstr ""
508
+
509
+ #: inc/php/page.php:370
510
+ msgid "For getting your code, you also can go to the <code>Database</code> &#10145; Table <code>wp_options</code> &#10145; Option <code>spacexchimp_p001_settings</code> &#10145; <code>option_value</code>."
511
  msgstr ""
512
 
513
+ #: inc/php/page.php:372
514
  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."
515
  msgstr ""
516
 
517
+ #: inc/php/page.php:376
518
+ msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
519
  msgstr ""
520
 
521
+ #: inc/php/page.php:377
522
+ msgid "Why is this?"
523
  msgstr ""
524
 
525
+ #: inc/php/page.php:380
526
+ msgid "This plugin can not cause such problem."
527
+ msgstr ""
528
+
529
+ #: inc/php/page.php:381
530
+ msgid "More likely, the problem are related to the settings of the website."
531
+ msgstr ""
532
+
533
+ #: inc/php/page.php:382
534
+ msgid "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."
535
+ msgstr ""
536
+
537
+ #: inc/php/page.php:383
538
+ msgid "Also please try to re-login to the website, this too can help."
539
+ msgstr ""
540
+
541
+ #: inc/php/page.php:387
542
  msgid "Where to report bug if found?"
543
  msgstr ""
544
 
545
+ #: inc/php/page.php:390
546
+ msgid "Bug reports are very welcome!"
547
+ msgstr ""
548
+
549
+ #: inc/php/page.php:393
550
  #, php-format
551
+ msgid "Please visit our %s contact page %s and report."
552
+ msgstr ""
553
+
554
+ #: inc/php/page.php:398 inc/php/page.php:427
555
+ msgid "Please do not forget to specify the name of the plugin."
556
+ msgstr ""
557
+
558
+ #: inc/php/page.php:399 inc/php/page.php:428 inc/php/page.php:444
559
+ msgid "Thank you!"
560
  msgstr ""
561
 
562
+ #: inc/php/page.php:402
563
+ msgid "Describe in more detail what exactly you are seeing."
564
+ msgstr ""
565
+
566
+ #: inc/php/page.php:403
567
+ msgid "Here are some examples:"
568
+ msgstr ""
569
+
570
+ #: inc/php/page.php:406
571
+ msgid "Elements of the plugin settings page are not working."
572
+ msgstr ""
573
+
574
+ #: inc/php/page.php:407
575
+ msgid "An error message is displayed on the plugin settings page."
576
+ msgstr ""
577
+
578
+ #: inc/php/page.php:408
579
+ msgid "An error message is displayed on the front end of website."
580
+ msgstr ""
581
+
582
+ #: inc/php/page.php:409
583
+ msgid "An error message is displayed on the back end of website."
584
+ msgstr ""
585
+
586
+ #: inc/php/page.php:410
587
+ msgid "Custom code is inserted on the plugin settings page, but it is not applied on the website."
588
+ msgstr ""
589
+
590
+ #: inc/php/page.php:411
591
+ msgid "Website is crashed."
592
+ msgstr ""
593
+
594
+ #: inc/php/page.php:416
595
  msgid "Where to share any ideas or suggestions to make the plugin better?"
596
  msgstr ""
597
 
598
+ #: inc/php/page.php:419
599
+ msgid "Any suggestions are very welcome!"
600
+ msgstr ""
601
+
602
+ #: inc/php/page.php:422
603
  #, php-format
604
+ msgid "Please visit our %s contact page %s."
605
  msgstr ""
606
 
607
+ #: inc/php/page.php:432
608
+ msgid "I love this plugin!"
609
+ msgstr ""
610
+
611
+ #: inc/php/page.php:433
612
+ msgid "Can I help somehow?"
613
+ msgstr ""
614
+
615
+ #: inc/php/page.php:436
616
+ msgid "Yes, any contributions are very welcome!"
617
  msgstr ""
618
 
619
+ #: inc/php/page.php:439
620
  #, php-format
621
+ msgid "Please visit our %s Support Us %s page."
622
  msgstr ""
623
 
624
+ #: inc/php/page.php:448
625
+ msgid "Where can I find information about your licenses, payment process and refunds?"
626
+ msgstr ""
627
+
628
+ #: inc/php/page.php:453
629
+ #, php-format
630
+ msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
631
+ msgstr ""
632
+
633
+ #: inc/php/page.php:461
634
+ msgid "Where can I find information about your customer support?"
635
+ msgstr ""
636
+
637
+ #: inc/php/page.php:466
638
+ #, php-format
639
+ msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
640
+ msgstr ""
641
+
642
+ #: inc/php/page.php:474
643
+ msgid "Where can I find information about your affiliate program?"
644
+ msgstr ""
645
+
646
+ #: inc/php/page.php:479
647
+ #, php-format
648
+ msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
649
+ msgstr ""
650
+
651
+ #: inc/php/page.php:487
652
  msgid "My question wasn't answered here."
653
  msgstr ""
654
 
655
+ #: inc/php/page.php:492
656
  #, php-format
657
+ msgid "You can ask your question on %s this page %s."
658
  msgstr ""
659
 
660
+ #: inc/php/page.php:497
661
+ msgid "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."
662
+ msgstr ""
663
+
664
+ #: inc/php/page.php:508
665
  msgid "Support Us"
666
  msgstr ""
667
 
668
+ #: inc/php/page.php:516 inc/php/settings.php:61 inc/php/sidebar.php:54
669
  msgid "Donate with PayPal"
670
  msgstr ""
671
 
672
+ #: inc/php/page.php:523
673
  #, php-format
674
+ msgid "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."
675
+ msgstr ""
676
+
677
+ #: inc/php/page.php:532
678
+ msgid "Our intention is to create projects that will make this world a better place."
679
+ msgstr ""
680
+
681
+ #: inc/php/page.php:533
682
+ msgid "Our motto is - «Follow your dreams and don’t give up»."
683
+ msgstr ""
684
+
685
+ #: inc/php/page.php:534
686
+ msgid "We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
687
  msgstr ""
688
 
689
+ #: inc/php/page.php:537
690
+ 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."
691
  msgstr ""
692
 
693
+ #: inc/php/page.php:538
694
+ msgid "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."
695
  msgstr ""
696
 
697
+ #: inc/php/page.php:541
698
  msgid "If you appreciate our work, you can buy us a cup of coffee!"
699
  msgstr ""
700
 
701
+ #: inc/php/page.php:544
702
  msgid "Thank you for your support!"
703
  msgstr ""
704
 
735
  msgstr ""
736
 
737
  #: inc/php/sidebar.php:35
738
+ msgid "This plugin gives you the ability to 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."
739
  msgstr ""
740
 
741
  #: inc/php/sidebar.php:40
my-custom-functions.php CHANGED
@@ -5,7 +5,7 @@
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/
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.33
9
  * License: GPL3
10
  * Text Domain: my-custom-functions
11
  * Domain Path: /languages/
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: 5.0
7
- Stable tag: 4.32
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -63,17 +63,17 @@ On the plugin page you find the code editor powered by CodeMirror. This code edi
63
 
64
  **Translation**
65
 
66
- This plugin is ready for translation and has already been translated into several languages.
67
 
68
  * English (default)
69
  * Russian (translation by [Milena Kiseleva](https://www.instagram.com/milava_kiseleva/))
70
  * German (translation by Michael)
71
  * Chinese-Taiwan (translation by Gordon Yu)
72
  * Spanish (translation by Ramiro Garcés and Patricio Toledo)
73
- * French (translation by Theophil Bethel)
74
  * Dutch (translation by Peter Leenders)
75
 
76
- If you want to help translate this plugin then please visit the [translation page](https://translate.wordpress.org/projects/wp-plugins/my-custom-functions).
77
 
78
  **Minimum system requirements:**
79
 
@@ -120,11 +120,13 @@ After installation and activation, the "`PHP Inserter`" menu item will appear in
120
 
121
  == Frequently Asked Questions ==
122
 
123
- = Q. Will this plugin work on my WordPress.COM website? =
124
- A. Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites.
125
 
126
  = Q. Can I use this plugin on my language? =
127
- A. Yes. This plugin is ready for translation and has already been translated into several languages. But If your language is not available then you can make one. The POT file is included and placed in the "`languages`" folder. Just [send the PO file to us](https://www.spacexchimp.com/contact.html) and we will include this translation within the next plugin update. Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!
 
 
128
 
129
  = Q. How does it work? =
130
  A. Simply go to the plugin settings page, place your custom PHP code in the code editor field, switch the toggle to the "ON" position and click the "Save changes" button. Enjoy the result of applying your custom PHP code. It's that simple!
@@ -181,9 +183,9 @@ A. It happens that your custom PHP code that you insert on the plugin page does
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
 
186
- 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.
187
 
188
  = Q. What to do if this plugin crashed the website? =
189
  A. This plugin has a built-in functions for checking the custom code for syntax errors, duplicate functions names, and etc. But plugin is not perfect, so there are times when the entered custom code causes the error and white screen (WSOD). This is due to the fact that your custom code has a syntax error that this plugin could not detect. When this happens with you, please perform the following steps.
@@ -250,6 +252,17 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
250
 
251
  == Changelog ==
252
 
 
 
 
 
 
 
 
 
 
 
 
253
  = 4.32 =
254
  * Content of the "Usage" section updated.
255
  * Content of the "FAQ" section updated.
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.1
7
+ Stable tag: 4.33
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
63
 
64
  **Translation**
65
 
66
+ This plugin is ready for translation and has already been translated into several languages. But If your language is not available then you can make one. It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections. Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!
67
 
68
  * English (default)
69
  * Russian (translation by [Milena Kiseleva](https://www.instagram.com/milava_kiseleva/))
70
  * German (translation by Michael)
71
  * Chinese-Taiwan (translation by Gordon Yu)
72
  * Spanish (translation by Ramiro Garcés and Patricio Toledo)
73
+ * French (translation by Jean-Michel, Theophil Bethel and Hervé Bouzin)
74
  * Dutch (translation by Peter Leenders)
75
 
76
+ If you want to help translate this plugin, please visit the [translation page](https://translate.wordpress.org/projects/wp-plugins/my-custom-functions).
77
 
78
  **Minimum system requirements:**
79
 
120
 
121
  == Frequently Asked Questions ==
122
 
123
+ = Q. Will this plugin work on my wordpress.COM website? =
124
+ A. Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites.
125
 
126
  = Q. Can I use this plugin on my language? =
127
+ A. Yes. This plugin is ready for translation and has already been translated into several languages. But If your language is not available then you can make one. It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections. Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!
128
+
129
+ If you want to help translate this plugin, please use the POT file that is included and placed in the `languages` folder to create a translation PO file. Just [send the PO file to us](https://www.spacexchimp.com/contact.html) and we will include this translation within the next plugin update.
130
 
131
  = Q. How does it work? =
132
  A. Simply go to the plugin settings page, place your custom PHP code in the code editor field, switch the toggle to the "ON" position and click the "Save changes" button. Enjoy the result of applying your custom PHP code. It's that simple!
183
  3. Your custom PHP code is incorrect and may not work.
184
 
185
  = Q. It's not working. What could be wrong? =
186
+ A. As with every plugin, it's possible that things don't work. It's impossible to tell what could be wrong exactly. The most common reason for this is a web browsers 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 browsers cache. Clearing your browsers cache may solve the problem.
187
 
188
+ 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.
189
 
190
  = Q. What to do if this plugin crashed the website? =
191
  A. This plugin has a built-in functions for checking the custom code for syntax errors, duplicate functions names, and etc. But plugin is not perfect, so there are times when the entered custom code causes the error and white screen (WSOD). This is due to the fact that your custom code has a syntax error that this plugin could not detect. When this happens with you, please perform the following steps.
252
 
253
  == Changelog ==
254
 
255
+ = 4.33 =
256
+ * The readme "Tested up to:" value changed to 5.1 after full testing process and ensuring compatibility.
257
+ * Content of the "F.A.Q." section updated.
258
+ * Some texts are corrected or replaced with new ones.
259
+ * All translation files are updated.
260
+ * Code formatting improved.
261
+ * Code commenting improved.
262
+ * The function '_duplicates' is renamed to "_preparation_duplicates".
263
+ * Added CSS class ".custom-list" for displaying a custom list, which is used on the plugin settings page.
264
+ * The human.txt file updated.
265
+
266
  = 4.32 =
267
  * Content of the "Usage" section updated.
268
  * Content of the "FAQ" section updated.