My Custom Functions - Version 4.0.1

Version Description

  • Fixed the bug due to which the the "Warning: Illegal string offset 'version' in" and the "Warning: Illegal string offset 'old_version' in" warnings are displayed. (Thanks to Sven Brill)
  • Contents of the F.A.Q. tab updated.
Download this release

Release Info

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

Code changes from version 4.0 to 4.0.1

inc/php/page.php CHANGED
@@ -10,7 +10,7 @@ defined('ABSPATH') or die("Restricted access!");
10
  /**
11
  * Render Settings Page
12
  *
13
- * @since 3.5
14
  */
15
  function MCFunctions_render_submenu_page() {
16
 
@@ -136,11 +136,13 @@ function MCFunctions_render_submenu_page() {
136
  <div class="answer-5"><?php _e( 'I don\'t limit the number of characters.', MCFUNC_TEXT ); ?></div>
137
 
138
  <div class="question-6 question-red"><?php _e( 'On the plugin settings page, an error message appears. What could be wrong?', MCFUNC_TEXT ); ?></div>
139
- <div class="answer-6"><?php _e( 'Here are a few of the most likely causes of the error message:', MCFUNC_TEXT ); ?><br><br>
140
- <?php _e( '1. You make a syntax error in the code that you have entered. Check the syntax of your code and try again.', MCFUNC_TEXT ); ?><br>
141
- <?php _e( '2. You entered two functions with the same name. Use a unique names for your functions.', MCFUNC_TEXT ); ?><br>
142
- <?php _e( '3. You have entered function with a name that is already occupied by another function. Use a unique name for your function.', MCFUNC_TEXT ); ?><br>
143
- <?php _e( '4. You are trying to overwrite an existing function (of WordPress, theme, or plugin). Instead, use filters and hooks.', MCFUNC_TEXT ); ?></div>
 
 
144
 
145
  <div class="question-7"><?php _e( 'Does this plugin requires any modification of the theme?', MCFUNC_TEXT ); ?></div>
146
  <div class="answer-7"><?php _e( 'Absolutely not. This plugin is configurable entirely from the plugin settings page.', MCFUNC_TEXT ); ?></div>
10
  /**
11
  * Render Settings Page
12
  *
13
+ * @since 4.0.1
14
  */
15
  function MCFunctions_render_submenu_page() {
16
 
136
  <div class="answer-5"><?php _e( 'I don\'t limit the number of characters.', MCFUNC_TEXT ); ?></div>
137
 
138
  <div class="question-6 question-red"><?php _e( 'On the plugin settings page, an error message appears. What could be wrong?', MCFUNC_TEXT ); ?></div>
139
+ <div class="answer-6"><?php _e( 'Here are a few of the most likely causes of the error message:', MCFUNC_TEXT ); ?>
140
+ <ol class="custom-counter">
141
+ <li><?php _e( 'You make a syntax error in the code that you have entered. Check the syntax of your code and try again.', MCFUNC_TEXT ); ?></li>
142
+ <li><?php _e( 'You entered two functions with the same name. Use a unique names for your functions.', MCFUNC_TEXT ); ?></li>
143
+ <li><?php _e( 'You have entered function with a name that is already occupied by another function. Use a unique name for your function.', MCFUNC_TEXT ); ?></li>
144
+ <li><?php _e( 'You are trying to overwrite an existing function (of WordPress, theme, or plugin). Instead, use filters and hooks.', MCFUNC_TEXT ); ?></li>
145
+ </ol></div>
146
 
147
  <div class="question-7"><?php _e( 'Does this plugin requires any modification of the theme?', MCFUNC_TEXT ); ?></div>
148
  <div class="answer-7"><?php _e( 'Absolutely not. This plugin is configurable entirely from the plugin settings page.', MCFUNC_TEXT ); ?></div>
inc/php/version.php CHANGED
@@ -10,15 +10,19 @@ defined('ABSPATH') or die("Restricted access!");
10
  /**
11
  * Function for managing information about the version number of the plugin
12
  *
13
- * @since 4.0
14
  */
15
  function MCFunctions_plugin_version_number() {
16
 
17
  // Set variables:
18
  // - Read the plugin service information from the database and put it into an array
 
19
  // - Get the current plugin version number from the database
20
  // - Get the new plugin version number from the global constant
21
  $info = get_option( 'anarcho_cfunctions_service_info' );
 
 
 
22
  $current_number = isset( $info['version'] ) && !empty( $info['version'] ) ? $info['version'] : '0';
23
  $new_number = MCFUNC_VERSION;
24
 
10
  /**
11
  * Function for managing information about the version number of the plugin
12
  *
13
+ * @since 4.0.1
14
  */
15
  function MCFunctions_plugin_version_number() {
16
 
17
  // Set variables:
18
  // - Read the plugin service information from the database and put it into an array
19
+ // - Make the "$info" array if the plugin service information in the database is not exist
20
  // - Get the current plugin version number from the database
21
  // - Get the new plugin version number from the global constant
22
  $info = get_option( 'anarcho_cfunctions_service_info' );
23
+ if ( !is_array( $info ) ) {
24
+ $info = array();
25
+ }
26
  $current_number = isset( $info['version'] ) && !empty( $info['version'] ) ? $info['version'] : '0';
27
  $new_number = MCFUNC_VERSION;
28
 
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: Plugins - My Custom Functions - Development Readme (trunk)\n"
6
- "POT-Creation-Date: 2017-05-07 13:23+0300\n"
7
- "PO-Revision-Date: 2017-05-07 13:23+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "Language: es\n"
@@ -88,11 +88,11 @@ msgstr ""
88
  msgid "F.A.Q."
89
  msgstr ""
90
 
91
- #: inc/php/page.php:45 inc/php/page.php:197
92
  msgid "Author"
93
  msgstr ""
94
 
95
- #: inc/php/page.php:46 inc/php/page.php:206 inc/php/settings.php:37 inc/php/settings.php:90
96
  msgid "Support"
97
  msgstr ""
98
 
@@ -199,120 +199,118 @@ msgstr ""
199
  msgid "Here are a few of the most likely causes of the error message:"
200
  msgstr ""
201
 
202
- #: inc/php/page.php:140
203
- msgid "1. You make a syntax error in the code that you have entered. Check the syntax of your code and try again."
204
- msgstr ""
205
-
206
  #: inc/php/page.php:141
207
- msgid "2. You entered two functions with the same name. Use a unique names for your functions."
208
  msgstr ""
209
 
210
  #: inc/php/page.php:142
211
- msgid ""
212
- "3. You have entered function with a name that is already occupied by another function. Use a unique name for your "
213
- "function."
214
  msgstr ""
215
 
216
  #: inc/php/page.php:143
217
  msgid ""
218
- "4. You are trying to overwrite an existing function (of WordPress, theme, or plugin). Instead, use filters and hooks."
 
 
 
 
219
  msgstr ""
220
 
221
- #: inc/php/page.php:145
222
  msgid "Does this plugin requires any modification of the theme?"
223
  msgstr ""
224
 
225
- #: inc/php/page.php:146
226
  msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
227
  msgstr ""
228
 
229
- #: inc/php/page.php:148
230
  msgid "Does this require any knowledge of HTML or CSS?"
231
  msgstr ""
232
 
233
- #: inc/php/page.php:149
234
  msgid ""
235
  "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page. But you need "
236
  "to know the HTML or CSS in order to add/remove/modify the HTML or CSS code by using this plugin."
237
  msgstr ""
238
 
239
- #: inc/php/page.php:151
240
  msgid "It's not working. What could be wrong?"
241
  msgstr ""
242
 
243
- #: inc/php/page.php:152
244
  msgid ""
245
  "As with every plugin, it's possible that things don't work. The most common reason for this is a web browser's cache. "
246
  "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server "
247
  "load. This is called the browser's cache.​ Clearing your browser's cache may solve the problem."
248
  msgstr ""
249
 
250
- #: inc/php/page.php:153
251
  msgid ""
252
  "It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's support forum on "
253
  "WordPress.org, I'd be happy to give it a look and try to help out. Please include as much information as possible, "
254
  "including a link to your website where the problem can be seen."
255
  msgstr ""
256
 
257
- #: inc/php/page.php:155
258
  msgid "What to do if this plugin caused the white screen (WSOD)?"
259
  msgstr ""
260
 
261
- #: inc/php/page.php:156
262
  msgid ""
263
  "This plugin is not perfect, so there are times when the entered custom code causes the error and white screen (WSOD). "
264
  "This is due to the fact that your custom code has a syntax error that this plugin could not detect. If this happened with "
265
  "you then do the following and all will be fine."
266
  msgstr ""
267
 
268
- #: inc/php/page.php:158
269
  msgid ""
270
  "Via FTP, go to the plugin folder (in <code>wp-content/plugins/my-custom-functions/</code>). Rename the \"START\" file to "
271
  "\"STOP\"."
272
  msgstr ""
273
 
274
- #: inc/php/page.php:159
275
  msgid "Return to the plugin settings page."
276
  msgstr ""
277
 
278
- #: inc/php/page.php:160
279
  msgid "Edit/fix your custom code that you entered before the crash."
280
  msgstr ""
281
 
282
- #: inc/php/page.php:161
283
  msgid "Rename the \"STOP\" file to \"START\" and you're done!"
284
  msgstr ""
285
 
286
- #: inc/php/page.php:163
287
  msgid ""
288
  "This plugin stored you entered code in the Database of your website. For getting your code, you also can go to the "
289
  "<code>Database</code> &#10145; Table <code>wp_options</code> &#10145; Option <code>anarcho_cfunctions_settings</code> "
290
  "&#10145; <code>option_value</code>."
291
  msgstr ""
292
 
293
- #: inc/php/page.php:165
294
  msgid "Where to report bug if found?"
295
  msgstr ""
296
 
297
- #: inc/php/page.php:167
298
  #, php-format
299
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
300
  msgstr ""
301
 
302
- #: inc/php/page.php:173
303
  msgid "Where to share any ideas or suggestions to make the plugin better?"
304
  msgstr ""
305
 
306
- #: inc/php/page.php:175
307
  #, php-format
308
  msgid "Any suggestions are very welcome! Please send me an email to %s arthurgareginyan@gmail.com %s. Thank you!"
309
  msgstr ""
310
 
311
- #: inc/php/page.php:181
312
  msgid "I love this plugin! Can I help somehow?"
313
  msgstr ""
314
 
315
- #: inc/php/page.php:183
316
  #, php-format
317
  msgid ""
318
  "Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate button, and thank you!"
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Plugins - My Custom Functions - Development Readme (trunk)\n"
6
+ "POT-Creation-Date: 2017-05-12 21:53+0300\n"
7
+ "PO-Revision-Date: 2017-05-12 21:53+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "Language: es\n"
88
  msgid "F.A.Q."
89
  msgstr ""
90
 
91
+ #: inc/php/page.php:45 inc/php/page.php:199
92
  msgid "Author"
93
  msgstr ""
94
 
95
+ #: inc/php/page.php:46 inc/php/page.php:208 inc/php/settings.php:37 inc/php/settings.php:90
96
  msgid "Support"
97
  msgstr ""
98
 
199
  msgid "Here are a few of the most likely causes of the error message:"
200
  msgstr ""
201
 
 
 
 
 
202
  #: inc/php/page.php:141
203
+ msgid "You make a syntax error in the code that you have entered. Check the syntax of your code and try again."
204
  msgstr ""
205
 
206
  #: inc/php/page.php:142
207
+ msgid "You entered two functions with the same name. Use a unique names for your functions."
 
 
208
  msgstr ""
209
 
210
  #: inc/php/page.php:143
211
  msgid ""
212
+ "You have entered function with a name that is already occupied by another function. Use a unique name for your function."
213
+ msgstr ""
214
+
215
+ #: inc/php/page.php:144
216
+ msgid "You are trying to overwrite an existing function (of WordPress, theme, or plugin). Instead, use filters and hooks."
217
  msgstr ""
218
 
219
+ #: inc/php/page.php:147
220
  msgid "Does this plugin requires any modification of the theme?"
221
  msgstr ""
222
 
223
+ #: inc/php/page.php:148
224
  msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
225
  msgstr ""
226
 
227
+ #: inc/php/page.php:150
228
  msgid "Does this require any knowledge of HTML or CSS?"
229
  msgstr ""
230
 
231
+ #: inc/php/page.php:151
232
  msgid ""
233
  "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page. But you need "
234
  "to know the HTML or CSS in order to add/remove/modify the HTML or CSS code by using this plugin."
235
  msgstr ""
236
 
237
+ #: inc/php/page.php:153
238
  msgid "It's not working. What could be wrong?"
239
  msgstr ""
240
 
241
+ #: inc/php/page.php:154
242
  msgid ""
243
  "As with every plugin, it's possible that things don't work. The most common reason for this is a web browser's cache. "
244
  "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server "
245
  "load. This is called the browser's cache.​ Clearing your browser's cache may solve the problem."
246
  msgstr ""
247
 
248
+ #: inc/php/page.php:155
249
  msgid ""
250
  "It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's support forum on "
251
  "WordPress.org, I'd be happy to give it a look and try to help out. Please include as much information as possible, "
252
  "including a link to your website where the problem can be seen."
253
  msgstr ""
254
 
255
+ #: inc/php/page.php:157
256
  msgid "What to do if this plugin caused the white screen (WSOD)?"
257
  msgstr ""
258
 
259
+ #: inc/php/page.php:158
260
  msgid ""
261
  "This plugin is not perfect, so there are times when the entered custom code causes the error and white screen (WSOD). "
262
  "This is due to the fact that your custom code has a syntax error that this plugin could not detect. If this happened with "
263
  "you then do the following and all will be fine."
264
  msgstr ""
265
 
266
+ #: inc/php/page.php:160
267
  msgid ""
268
  "Via FTP, go to the plugin folder (in <code>wp-content/plugins/my-custom-functions/</code>). Rename the \"START\" file to "
269
  "\"STOP\"."
270
  msgstr ""
271
 
272
+ #: inc/php/page.php:161
273
  msgid "Return to the plugin settings page."
274
  msgstr ""
275
 
276
+ #: inc/php/page.php:162
277
  msgid "Edit/fix your custom code that you entered before the crash."
278
  msgstr ""
279
 
280
+ #: inc/php/page.php:163
281
  msgid "Rename the \"STOP\" file to \"START\" and you're done!"
282
  msgstr ""
283
 
284
+ #: inc/php/page.php:165
285
  msgid ""
286
  "This plugin stored you entered code in the Database of your website. For getting your code, you also can go to the "
287
  "<code>Database</code> &#10145; Table <code>wp_options</code> &#10145; Option <code>anarcho_cfunctions_settings</code> "
288
  "&#10145; <code>option_value</code>."
289
  msgstr ""
290
 
291
+ #: inc/php/page.php:167
292
  msgid "Where to report bug if found?"
293
  msgstr ""
294
 
295
+ #: inc/php/page.php:169
296
  #, php-format
297
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
298
  msgstr ""
299
 
300
+ #: inc/php/page.php:175
301
  msgid "Where to share any ideas or suggestions to make the plugin better?"
302
  msgstr ""
303
 
304
+ #: inc/php/page.php:177
305
  #, php-format
306
  msgid "Any suggestions are very welcome! Please send me an email to %s arthurgareginyan@gmail.com %s. Thank you!"
307
  msgstr ""
308
 
309
+ #: inc/php/page.php:183
310
  msgid "I love this plugin! Can I help somehow?"
311
  msgstr ""
312
 
313
+ #: inc/php/page.php:185
314
  #, php-format
315
  msgid ""
316
  "Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate button, and thank you!"
languages/my-custom-functions-fr_FR.mo CHANGED
Binary file
languages/my-custom-functions-fr_FR.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: My Custom Functions\n"
4
- "POT-Creation-Date: 2017-05-07 13:23+0300\n"
5
- "PO-Revision-Date: 2017-05-07 13:23+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: fr_FR\n"
@@ -89,11 +89,11 @@ msgstr ""
89
  msgid "F.A.Q."
90
  msgstr ""
91
 
92
- #: inc/php/page.php:45 inc/php/page.php:197
93
  msgid "Author"
94
  msgstr ""
95
 
96
- #: inc/php/page.php:46 inc/php/page.php:206 inc/php/settings.php:37
97
  #: inc/php/settings.php:90
98
  msgid "Support"
99
  msgstr ""
@@ -215,56 +215,56 @@ msgstr ""
215
  msgid "Here are a few of the most likely causes of the error message:"
216
  msgstr ""
217
 
218
- #: inc/php/page.php:140
219
  msgid ""
220
- "1. You make a syntax error in the code that you have entered. Check the "
221
- "syntax of your code and try again."
222
  msgstr ""
223
 
224
- #: inc/php/page.php:141
225
  msgid ""
226
- "2. You entered two functions with the same name. Use a unique names for your "
227
  "functions."
228
  msgstr ""
229
 
230
- #: inc/php/page.php:142
231
  msgid ""
232
- "3. You have entered function with a name that is already occupied by another "
233
  "function. Use a unique name for your function."
234
  msgstr ""
235
 
236
- #: inc/php/page.php:143
237
  msgid ""
238
- "4. You are trying to overwrite an existing function (of WordPress, theme, or "
239
  "plugin). Instead, use filters and hooks."
240
  msgstr ""
241
 
242
- #: inc/php/page.php:145
243
  msgid "Does this plugin requires any modification of the theme?"
244
  msgstr ""
245
 
246
- #: inc/php/page.php:146
247
  msgid ""
248
  "Absolutely not. This plugin is configurable entirely from the plugin "
249
  "settings page."
250
  msgstr ""
251
 
252
- #: inc/php/page.php:148
253
  msgid "Does this require any knowledge of HTML or CSS?"
254
  msgstr ""
255
 
256
- #: inc/php/page.php:149
257
  msgid ""
258
  "This plugin can be configured with no knowledge of HTML or CSS, using an "
259
  "easy-to-use plugin settings page. But you need to know the HTML or CSS in "
260
  "order to add/remove/modify the HTML or CSS code by using this plugin."
261
  msgstr ""
262
 
263
- #: inc/php/page.php:151
264
  msgid "It's not working. What could be wrong?"
265
  msgstr ""
266
 
267
- #: inc/php/page.php:152
268
  msgid ""
269
  "As with every plugin, it's possible that things don't work. The most common "
270
  "reason for this is a web browser's cache. Every web browser stores a cache "
@@ -273,7 +273,7 @@ msgid ""
273
  "browser's cache may solve the problem."
274
  msgstr ""
275
 
276
- #: inc/php/page.php:153
277
  msgid ""
278
  "It's impossible to tell what could be wrong exactly, but if you post a "
279
  "support request in the plugin's support forum on WordPress.org, I'd be happy "
@@ -281,11 +281,11 @@ msgid ""
281
  "possible, including a link to your website where the problem can be seen."
282
  msgstr ""
283
 
284
- #: inc/php/page.php:155
285
  msgid "What to do if this plugin caused the white screen (WSOD)?"
286
  msgstr ""
287
 
288
- #: inc/php/page.php:156
289
  msgid ""
290
  "This plugin is not perfect, so there are times when the entered custom code "
291
  "causes the error and white screen (WSOD). This is due to the fact that your "
@@ -293,25 +293,25 @@ msgid ""
293
  "happened with you then do the following and all will be fine."
294
  msgstr ""
295
 
296
- #: inc/php/page.php:158
297
  msgid ""
298
  "Via FTP, go to the plugin folder (in <code>wp-content/plugins/my-custom-"
299
  "functions/</code>). Rename the \"START\" file to \"STOP\"."
300
  msgstr ""
301
 
302
- #: inc/php/page.php:159
303
  msgid "Return to the plugin settings page."
304
  msgstr ""
305
 
306
- #: inc/php/page.php:160
307
  msgid "Edit/fix your custom code that you entered before the crash."
308
  msgstr ""
309
 
310
- #: inc/php/page.php:161
311
  msgid "Rename the \"STOP\" file to \"START\" and you're done!"
312
  msgstr ""
313
 
314
- #: inc/php/page.php:163
315
  msgid ""
316
  "This plugin stored you entered code in the Database of your website. For "
317
  "getting your code, you also can go to the <code>Database</code> &#10145; "
@@ -319,31 +319,31 @@ msgid ""
319
  "<code>anarcho_cfunctions_settings</code> &#10145; <code>option_value</code>."
320
  msgstr ""
321
 
322
- #: inc/php/page.php:165
323
  msgid "Where to report bug if found?"
324
  msgstr ""
325
 
326
- #: inc/php/page.php:167
327
  #, php-format
328
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
329
  msgstr ""
330
 
331
- #: inc/php/page.php:173
332
  msgid "Where to share any ideas or suggestions to make the plugin better?"
333
  msgstr ""
334
 
335
- #: inc/php/page.php:175
336
  #, php-format
337
  msgid ""
338
  "Any suggestions are very welcome! Please send me an email to %s "
339
  "arthurgareginyan@gmail.com %s. Thank you!"
340
  msgstr ""
341
 
342
- #: inc/php/page.php:181
343
  msgid "I love this plugin! Can I help somehow?"
344
  msgstr ""
345
 
346
- #: inc/php/page.php:183
347
  #, php-format
348
  msgid ""
349
  "Yes, any financial contributions are welcome! Just visit %s my website %s, "
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: My Custom Functions\n"
4
+ "POT-Creation-Date: 2017-05-12 21:53+0300\n"
5
+ "PO-Revision-Date: 2017-05-12 21:53+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: fr_FR\n"
89
  msgid "F.A.Q."
90
  msgstr ""
91
 
92
+ #: inc/php/page.php:45 inc/php/page.php:199
93
  msgid "Author"
94
  msgstr ""
95
 
96
+ #: inc/php/page.php:46 inc/php/page.php:208 inc/php/settings.php:37
97
  #: inc/php/settings.php:90
98
  msgid "Support"
99
  msgstr ""
215
  msgid "Here are a few of the most likely causes of the error message:"
216
  msgstr ""
217
 
218
+ #: inc/php/page.php:141
219
  msgid ""
220
+ "You make a syntax error in the code that you have entered. Check the syntax "
221
+ "of your code and try again."
222
  msgstr ""
223
 
224
+ #: inc/php/page.php:142
225
  msgid ""
226
+ "You entered two functions with the same name. Use a unique names for your "
227
  "functions."
228
  msgstr ""
229
 
230
+ #: inc/php/page.php:143
231
  msgid ""
232
+ "You have entered function with a name that is already occupied by another "
233
  "function. Use a unique name for your function."
234
  msgstr ""
235
 
236
+ #: inc/php/page.php:144
237
  msgid ""
238
+ "You are trying to overwrite an existing function (of WordPress, theme, or "
239
  "plugin). Instead, use filters and hooks."
240
  msgstr ""
241
 
242
+ #: inc/php/page.php:147
243
  msgid "Does this plugin requires any modification of the theme?"
244
  msgstr ""
245
 
246
+ #: inc/php/page.php:148
247
  msgid ""
248
  "Absolutely not. This plugin is configurable entirely from the plugin "
249
  "settings page."
250
  msgstr ""
251
 
252
+ #: inc/php/page.php:150
253
  msgid "Does this require any knowledge of HTML or CSS?"
254
  msgstr ""
255
 
256
+ #: inc/php/page.php:151
257
  msgid ""
258
  "This plugin can be configured with no knowledge of HTML or CSS, using an "
259
  "easy-to-use plugin settings page. But you need to know the HTML or CSS in "
260
  "order to add/remove/modify the HTML or CSS code by using this plugin."
261
  msgstr ""
262
 
263
+ #: inc/php/page.php:153
264
  msgid "It's not working. What could be wrong?"
265
  msgstr ""
266
 
267
+ #: inc/php/page.php:154
268
  msgid ""
269
  "As with every plugin, it's possible that things don't work. The most common "
270
  "reason for this is a web browser's cache. Every web browser stores a cache "
273
  "browser's cache may solve the problem."
274
  msgstr ""
275
 
276
+ #: inc/php/page.php:155
277
  msgid ""
278
  "It's impossible to tell what could be wrong exactly, but if you post a "
279
  "support request in the plugin's support forum on WordPress.org, I'd be happy "
281
  "possible, including a link to your website where the problem can be seen."
282
  msgstr ""
283
 
284
+ #: inc/php/page.php:157
285
  msgid "What to do if this plugin caused the white screen (WSOD)?"
286
  msgstr ""
287
 
288
+ #: inc/php/page.php:158
289
  msgid ""
290
  "This plugin is not perfect, so there are times when the entered custom code "
291
  "causes the error and white screen (WSOD). This is due to the fact that your "
293
  "happened with you then do the following and all will be fine."
294
  msgstr ""
295
 
296
+ #: inc/php/page.php:160
297
  msgid ""
298
  "Via FTP, go to the plugin folder (in <code>wp-content/plugins/my-custom-"
299
  "functions/</code>). Rename the \"START\" file to \"STOP\"."
300
  msgstr ""
301
 
302
+ #: inc/php/page.php:161
303
  msgid "Return to the plugin settings page."
304
  msgstr ""
305
 
306
+ #: inc/php/page.php:162
307
  msgid "Edit/fix your custom code that you entered before the crash."
308
  msgstr ""
309
 
310
+ #: inc/php/page.php:163
311
  msgid "Rename the \"STOP\" file to \"START\" and you're done!"
312
  msgstr ""
313
 
314
+ #: inc/php/page.php:165
315
  msgid ""
316
  "This plugin stored you entered code in the Database of your website. For "
317
  "getting your code, you also can go to the <code>Database</code> &#10145; "
319
  "<code>anarcho_cfunctions_settings</code> &#10145; <code>option_value</code>."
320
  msgstr ""
321
 
322
+ #: inc/php/page.php:167
323
  msgid "Where to report bug if found?"
324
  msgstr ""
325
 
326
+ #: inc/php/page.php:169
327
  #, php-format
328
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
329
  msgstr ""
330
 
331
+ #: inc/php/page.php:175
332
  msgid "Where to share any ideas or suggestions to make the plugin better?"
333
  msgstr ""
334
 
335
+ #: inc/php/page.php:177
336
  #, php-format
337
  msgid ""
338
  "Any suggestions are very welcome! Please send me an email to %s "
339
  "arthurgareginyan@gmail.com %s. Thank you!"
340
  msgstr ""
341
 
342
+ #: inc/php/page.php:183
343
  msgid "I love this plugin! Can I help somehow?"
344
  msgstr ""
345
 
346
+ #: inc/php/page.php:185
347
  #, php-format
348
  msgid ""
349
  "Yes, any financial contributions are welcome! Just visit %s my website %s, "
languages/my-custom-functions-ru_RU.mo CHANGED
Binary file
languages/my-custom-functions-ru_RU.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: My Custom Functions\n"
4
- "POT-Creation-Date: 2017-05-07 13:23+0300\n"
5
- "PO-Revision-Date: 2017-05-07 17:37+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ru\n"
@@ -89,11 +89,11 @@ msgstr "Применение"
89
  msgid "F.A.Q."
90
  msgstr "F.A.Q."
91
 
92
- #: inc/php/page.php:45 inc/php/page.php:197
93
  msgid "Author"
94
  msgstr "Автор"
95
 
96
- #: inc/php/page.php:46 inc/php/page.php:206 inc/php/settings.php:37
97
  #: inc/php/settings.php:90
98
  msgid "Support"
99
  msgstr "Поддержка"
@@ -219,35 +219,35 @@ msgstr ""
219
  msgid "Here are a few of the most likely causes of the error message:"
220
  msgstr ""
221
 
222
- #: inc/php/page.php:140
223
  msgid ""
224
- "1. You make a syntax error in the code that you have entered. Check the "
225
- "syntax of your code and try again."
226
  msgstr ""
227
 
228
- #: inc/php/page.php:141
229
  msgid ""
230
- "2. You entered two functions with the same name. Use a unique names for your "
231
  "functions."
232
  msgstr ""
233
 
234
- #: inc/php/page.php:142
235
  msgid ""
236
- "3. You have entered function with a name that is already occupied by another "
237
  "function. Use a unique name for your function."
238
  msgstr ""
239
 
240
- #: inc/php/page.php:143
241
  msgid ""
242
- "4. You are trying to overwrite an existing function (of WordPress, theme, or "
243
  "plugin). Instead, use filters and hooks."
244
  msgstr ""
245
 
246
- #: inc/php/page.php:145
247
  msgid "Does this plugin requires any modification of the theme?"
248
  msgstr "Этот плагин требует изменения темы?"
249
 
250
- #: inc/php/page.php:146
251
  msgid ""
252
  "Absolutely not. This plugin is configurable entirely from the plugin "
253
  "settings page."
@@ -255,11 +255,11 @@ msgstr ""
255
  "Абсолютно нет. Этот плагин настраивается полностью на странице настроек "
256
  "плагина."
257
 
258
- #: inc/php/page.php:148
259
  msgid "Does this require any knowledge of HTML or CSS?"
260
  msgstr "Требуются ли какие-либо знания HTML или CSS?"
261
 
262
- #: inc/php/page.php:149
263
  msgid ""
264
  "This plugin can be configured with no knowledge of HTML or CSS, using an "
265
  "easy-to-use plugin settings page. But you need to know the HTML or CSS in "
@@ -270,11 +270,11 @@ msgstr ""
270
  "для того, чтобы добавить/удалить/изменить код HTML или CSS, используя этот "
271
  "плагин."
272
 
273
- #: inc/php/page.php:151
274
  msgid "It's not working. What could be wrong?"
275
  msgstr "Оно не работает. Что может быть не так?"
276
 
277
- #: inc/php/page.php:152
278
  msgid ""
279
  "As with every plugin, it's possible that things don't work. The most common "
280
  "reason for this is a web browser's cache. Every web browser stores a cache "
@@ -283,7 +283,7 @@ msgid ""
283
  "browser's cache may solve the problem."
284
  msgstr ""
285
 
286
- #: inc/php/page.php:153
287
  msgid ""
288
  "It's impossible to tell what could be wrong exactly, but if you post a "
289
  "support request in the plugin's support forum on WordPress.org, I'd be happy "
@@ -291,11 +291,11 @@ msgid ""
291
  "possible, including a link to your website where the problem can be seen."
292
  msgstr ""
293
 
294
- #: inc/php/page.php:155
295
  msgid "What to do if this plugin caused the white screen (WSOD)?"
296
  msgstr ""
297
 
298
- #: inc/php/page.php:156
299
  msgid ""
300
  "This plugin is not perfect, so there are times when the entered custom code "
301
  "causes the error and white screen (WSOD). This is due to the fact that your "
@@ -303,25 +303,25 @@ msgid ""
303
  "happened with you then do the following and all will be fine."
304
  msgstr ""
305
 
306
- #: inc/php/page.php:158
307
  msgid ""
308
  "Via FTP, go to the plugin folder (in <code>wp-content/plugins/my-custom-"
309
  "functions/</code>). Rename the \"START\" file to \"STOP\"."
310
  msgstr ""
311
 
312
- #: inc/php/page.php:159
313
  msgid "Return to the plugin settings page."
314
  msgstr "Вернитесь на страницу настроек плагина."
315
 
316
- #: inc/php/page.php:160
317
  msgid "Edit/fix your custom code that you entered before the crash."
318
  msgstr ""
319
 
320
- #: inc/php/page.php:161
321
  msgid "Rename the \"STOP\" file to \"START\" and you're done!"
322
  msgstr "Переименуйте файл \"STOP\" в \"START\", и все готово!"
323
 
324
- #: inc/php/page.php:163
325
  msgid ""
326
  "This plugin stored you entered code in the Database of your website. For "
327
  "getting your code, you also can go to the <code>Database</code> &#10145; "
@@ -329,33 +329,33 @@ msgid ""
329
  "<code>anarcho_cfunctions_settings</code> &#10145; <code>option_value</code>."
330
  msgstr ""
331
 
332
- #: inc/php/page.php:165
333
  msgid "Where to report bug if found?"
334
  msgstr "Где можно сообщить об ошибке?"
335
 
336
- #: inc/php/page.php:167
337
  #, php-format
338
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
339
  msgstr ""
340
  "Пожалуйста, посетите %s страницу плагина на GitHub %s и сообщите об ошибке."
341
 
342
- #: inc/php/page.php:173
343
  msgid "Where to share any ideas or suggestions to make the plugin better?"
344
  msgstr ""
345
  "Где можно поделиться идеями или предложениями, чтобы сделать плагин лучше?"
346
 
347
- #: inc/php/page.php:175
348
  #, php-format
349
  msgid ""
350
  "Any suggestions are very welcome! Please send me an email to %s "
351
  "arthurgareginyan@gmail.com %s. Thank you!"
352
  msgstr ""
353
 
354
- #: inc/php/page.php:181
355
  msgid "I love this plugin! Can I help somehow?"
356
  msgstr "Мне нравится этот плагин! Могу Я чем-то помочь?"
357
 
358
- #: inc/php/page.php:183
359
  #, php-format
360
  msgid ""
361
  "Yes, any financial contributions are welcome! Just visit %s my website %s, "
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: My Custom Functions\n"
4
+ "POT-Creation-Date: 2017-05-12 21:53+0300\n"
5
+ "PO-Revision-Date: 2017-05-12 21:53+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ru\n"
89
  msgid "F.A.Q."
90
  msgstr "F.A.Q."
91
 
92
+ #: inc/php/page.php:45 inc/php/page.php:199
93
  msgid "Author"
94
  msgstr "Автор"
95
 
96
+ #: inc/php/page.php:46 inc/php/page.php:208 inc/php/settings.php:37
97
  #: inc/php/settings.php:90
98
  msgid "Support"
99
  msgstr "Поддержка"
219
  msgid "Here are a few of the most likely causes of the error message:"
220
  msgstr ""
221
 
222
+ #: inc/php/page.php:141
223
  msgid ""
224
+ "You make a syntax error in the code that you have entered. Check the syntax "
225
+ "of your code and try again."
226
  msgstr ""
227
 
228
+ #: inc/php/page.php:142
229
  msgid ""
230
+ "You entered two functions with the same name. Use a unique names for your "
231
  "functions."
232
  msgstr ""
233
 
234
+ #: inc/php/page.php:143
235
  msgid ""
236
+ "You have entered function with a name that is already occupied by another "
237
  "function. Use a unique name for your function."
238
  msgstr ""
239
 
240
+ #: inc/php/page.php:144
241
  msgid ""
242
+ "You are trying to overwrite an existing function (of WordPress, theme, or "
243
  "plugin). Instead, use filters and hooks."
244
  msgstr ""
245
 
246
+ #: inc/php/page.php:147
247
  msgid "Does this plugin requires any modification of the theme?"
248
  msgstr "Этот плагин требует изменения темы?"
249
 
250
+ #: inc/php/page.php:148
251
  msgid ""
252
  "Absolutely not. This plugin is configurable entirely from the plugin "
253
  "settings page."
255
  "Абсолютно нет. Этот плагин настраивается полностью на странице настроек "
256
  "плагина."
257
 
258
+ #: inc/php/page.php:150
259
  msgid "Does this require any knowledge of HTML or CSS?"
260
  msgstr "Требуются ли какие-либо знания HTML или CSS?"
261
 
262
+ #: inc/php/page.php:151
263
  msgid ""
264
  "This plugin can be configured with no knowledge of HTML or CSS, using an "
265
  "easy-to-use plugin settings page. But you need to know the HTML or CSS in "
270
  "для того, чтобы добавить/удалить/изменить код HTML или CSS, используя этот "
271
  "плагин."
272
 
273
+ #: inc/php/page.php:153
274
  msgid "It's not working. What could be wrong?"
275
  msgstr "Оно не работает. Что может быть не так?"
276
 
277
+ #: inc/php/page.php:154
278
  msgid ""
279
  "As with every plugin, it's possible that things don't work. The most common "
280
  "reason for this is a web browser's cache. Every web browser stores a cache "
283
  "browser's cache may solve the problem."
284
  msgstr ""
285
 
286
+ #: inc/php/page.php:155
287
  msgid ""
288
  "It's impossible to tell what could be wrong exactly, but if you post a "
289
  "support request in the plugin's support forum on WordPress.org, I'd be happy "
291
  "possible, including a link to your website where the problem can be seen."
292
  msgstr ""
293
 
294
+ #: inc/php/page.php:157
295
  msgid "What to do if this plugin caused the white screen (WSOD)?"
296
  msgstr ""
297
 
298
+ #: inc/php/page.php:158
299
  msgid ""
300
  "This plugin is not perfect, so there are times when the entered custom code "
301
  "causes the error and white screen (WSOD). This is due to the fact that your "
303
  "happened with you then do the following and all will be fine."
304
  msgstr ""
305
 
306
+ #: inc/php/page.php:160
307
  msgid ""
308
  "Via FTP, go to the plugin folder (in <code>wp-content/plugins/my-custom-"
309
  "functions/</code>). Rename the \"START\" file to \"STOP\"."
310
  msgstr ""
311
 
312
+ #: inc/php/page.php:161
313
  msgid "Return to the plugin settings page."
314
  msgstr "Вернитесь на страницу настроек плагина."
315
 
316
+ #: inc/php/page.php:162
317
  msgid "Edit/fix your custom code that you entered before the crash."
318
  msgstr ""
319
 
320
+ #: inc/php/page.php:163
321
  msgid "Rename the \"STOP\" file to \"START\" and you're done!"
322
  msgstr "Переименуйте файл \"STOP\" в \"START\", и все готово!"
323
 
324
+ #: inc/php/page.php:165
325
  msgid ""
326
  "This plugin stored you entered code in the Database of your website. For "
327
  "getting your code, you also can go to the <code>Database</code> &#10145; "
329
  "<code>anarcho_cfunctions_settings</code> &#10145; <code>option_value</code>."
330
  msgstr ""
331
 
332
+ #: inc/php/page.php:167
333
  msgid "Where to report bug if found?"
334
  msgstr "Где можно сообщить об ошибке?"
335
 
336
+ #: inc/php/page.php:169
337
  #, php-format
338
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
339
  msgstr ""
340
  "Пожалуйста, посетите %s страницу плагина на GitHub %s и сообщите об ошибке."
341
 
342
+ #: inc/php/page.php:175
343
  msgid "Where to share any ideas or suggestions to make the plugin better?"
344
  msgstr ""
345
  "Где можно поделиться идеями или предложениями, чтобы сделать плагин лучше?"
346
 
347
+ #: inc/php/page.php:177
348
  #, php-format
349
  msgid ""
350
  "Any suggestions are very welcome! Please send me an email to %s "
351
  "arthurgareginyan@gmail.com %s. Thank you!"
352
  msgstr ""
353
 
354
+ #: inc/php/page.php:183
355
  msgid "I love this plugin! Can I help somehow?"
356
  msgstr "Мне нравится этот плагин! Могу Я чем-то помочь?"
357
 
358
+ #: inc/php/page.php:185
359
  #, php-format
360
  msgid ""
361
  "Yes, any financial contributions are welcome! Just visit %s my website %s, "
languages/my-custom-functions-zh_TW.mo CHANGED
Binary file
languages/my-custom-functions-zh_TW.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: My Custom Functions\n"
4
- "POT-Creation-Date: 2017-05-07 13:23+0300\n"
5
- "PO-Revision-Date: 2017-05-07 13:23+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: zh_TW\n"
@@ -87,11 +87,11 @@ msgstr ""
87
  msgid "F.A.Q."
88
  msgstr ""
89
 
90
- #: inc/php/page.php:45 inc/php/page.php:197
91
  msgid "Author"
92
  msgstr ""
93
 
94
- #: inc/php/page.php:46 inc/php/page.php:206 inc/php/settings.php:37
95
  #: inc/php/settings.php:90
96
  msgid "Support"
97
  msgstr ""
@@ -213,56 +213,56 @@ msgstr ""
213
  msgid "Here are a few of the most likely causes of the error message:"
214
  msgstr ""
215
 
216
- #: inc/php/page.php:140
217
  msgid ""
218
- "1. You make a syntax error in the code that you have entered. Check the "
219
- "syntax of your code and try again."
220
  msgstr ""
221
 
222
- #: inc/php/page.php:141
223
  msgid ""
224
- "2. You entered two functions with the same name. Use a unique names for your "
225
  "functions."
226
  msgstr ""
227
 
228
- #: inc/php/page.php:142
229
  msgid ""
230
- "3. You have entered function with a name that is already occupied by another "
231
  "function. Use a unique name for your function."
232
  msgstr ""
233
 
234
- #: inc/php/page.php:143
235
  msgid ""
236
- "4. You are trying to overwrite an existing function (of WordPress, theme, or "
237
  "plugin). Instead, use filters and hooks."
238
  msgstr ""
239
 
240
- #: inc/php/page.php:145
241
  msgid "Does this plugin requires any modification of the theme?"
242
  msgstr ""
243
 
244
- #: inc/php/page.php:146
245
  msgid ""
246
  "Absolutely not. This plugin is configurable entirely from the plugin "
247
  "settings page."
248
  msgstr ""
249
 
250
- #: inc/php/page.php:148
251
  msgid "Does this require any knowledge of HTML or CSS?"
252
  msgstr ""
253
 
254
- #: inc/php/page.php:149
255
  msgid ""
256
  "This plugin can be configured with no knowledge of HTML or CSS, using an "
257
  "easy-to-use plugin settings page. But you need to know the HTML or CSS in "
258
  "order to add/remove/modify the HTML or CSS code by using this plugin."
259
  msgstr ""
260
 
261
- #: inc/php/page.php:151
262
  msgid "It's not working. What could be wrong?"
263
  msgstr ""
264
 
265
- #: inc/php/page.php:152
266
  msgid ""
267
  "As with every plugin, it's possible that things don't work. The most common "
268
  "reason for this is a web browser's cache. Every web browser stores a cache "
@@ -271,7 +271,7 @@ msgid ""
271
  "browser's cache may solve the problem."
272
  msgstr ""
273
 
274
- #: inc/php/page.php:153
275
  msgid ""
276
  "It's impossible to tell what could be wrong exactly, but if you post a "
277
  "support request in the plugin's support forum on WordPress.org, I'd be happy "
@@ -279,11 +279,11 @@ msgid ""
279
  "possible, including a link to your website where the problem can be seen."
280
  msgstr ""
281
 
282
- #: inc/php/page.php:155
283
  msgid "What to do if this plugin caused the white screen (WSOD)?"
284
  msgstr ""
285
 
286
- #: inc/php/page.php:156
287
  msgid ""
288
  "This plugin is not perfect, so there are times when the entered custom code "
289
  "causes the error and white screen (WSOD). This is due to the fact that your "
@@ -291,25 +291,25 @@ msgid ""
291
  "happened with you then do the following and all will be fine."
292
  msgstr ""
293
 
294
- #: inc/php/page.php:158
295
  msgid ""
296
  "Via FTP, go to the plugin folder (in <code>wp-content/plugins/my-custom-"
297
  "functions/</code>). Rename the \"START\" file to \"STOP\"."
298
  msgstr ""
299
 
300
- #: inc/php/page.php:159
301
  msgid "Return to the plugin settings page."
302
  msgstr ""
303
 
304
- #: inc/php/page.php:160
305
  msgid "Edit/fix your custom code that you entered before the crash."
306
  msgstr ""
307
 
308
- #: inc/php/page.php:161
309
  msgid "Rename the \"STOP\" file to \"START\" and you're done!"
310
  msgstr ""
311
 
312
- #: inc/php/page.php:163
313
  msgid ""
314
  "This plugin stored you entered code in the Database of your website. For "
315
  "getting your code, you also can go to the <code>Database</code> &#10145; "
@@ -317,31 +317,31 @@ msgid ""
317
  "<code>anarcho_cfunctions_settings</code> &#10145; <code>option_value</code>."
318
  msgstr ""
319
 
320
- #: inc/php/page.php:165
321
  msgid "Where to report bug if found?"
322
  msgstr ""
323
 
324
- #: inc/php/page.php:167
325
  #, php-format
326
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
327
  msgstr ""
328
 
329
- #: inc/php/page.php:173
330
  msgid "Where to share any ideas or suggestions to make the plugin better?"
331
  msgstr ""
332
 
333
- #: inc/php/page.php:175
334
  #, php-format
335
  msgid ""
336
  "Any suggestions are very welcome! Please send me an email to %s "
337
  "arthurgareginyan@gmail.com %s. Thank you!"
338
  msgstr ""
339
 
340
- #: inc/php/page.php:181
341
  msgid "I love this plugin! Can I help somehow?"
342
  msgstr ""
343
 
344
- #: inc/php/page.php:183
345
  #, php-format
346
  msgid ""
347
  "Yes, any financial contributions are welcome! Just visit %s my website %s, "
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: My Custom Functions\n"
4
+ "POT-Creation-Date: 2017-05-12 21:53+0300\n"
5
+ "PO-Revision-Date: 2017-05-12 21:53+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: zh_TW\n"
87
  msgid "F.A.Q."
88
  msgstr ""
89
 
90
+ #: inc/php/page.php:45 inc/php/page.php:199
91
  msgid "Author"
92
  msgstr ""
93
 
94
+ #: inc/php/page.php:46 inc/php/page.php:208 inc/php/settings.php:37
95
  #: inc/php/settings.php:90
96
  msgid "Support"
97
  msgstr ""
213
  msgid "Here are a few of the most likely causes of the error message:"
214
  msgstr ""
215
 
216
+ #: inc/php/page.php:141
217
  msgid ""
218
+ "You make a syntax error in the code that you have entered. Check the syntax "
219
+ "of your code and try again."
220
  msgstr ""
221
 
222
+ #: inc/php/page.php:142
223
  msgid ""
224
+ "You entered two functions with the same name. Use a unique names for your "
225
  "functions."
226
  msgstr ""
227
 
228
+ #: inc/php/page.php:143
229
  msgid ""
230
+ "You have entered function with a name that is already occupied by another "
231
  "function. Use a unique name for your function."
232
  msgstr ""
233
 
234
+ #: inc/php/page.php:144
235
  msgid ""
236
+ "You are trying to overwrite an existing function (of WordPress, theme, or "
237
  "plugin). Instead, use filters and hooks."
238
  msgstr ""
239
 
240
+ #: inc/php/page.php:147
241
  msgid "Does this plugin requires any modification of the theme?"
242
  msgstr ""
243
 
244
+ #: inc/php/page.php:148
245
  msgid ""
246
  "Absolutely not. This plugin is configurable entirely from the plugin "
247
  "settings page."
248
  msgstr ""
249
 
250
+ #: inc/php/page.php:150
251
  msgid "Does this require any knowledge of HTML or CSS?"
252
  msgstr ""
253
 
254
+ #: inc/php/page.php:151
255
  msgid ""
256
  "This plugin can be configured with no knowledge of HTML or CSS, using an "
257
  "easy-to-use plugin settings page. But you need to know the HTML or CSS in "
258
  "order to add/remove/modify the HTML or CSS code by using this plugin."
259
  msgstr ""
260
 
261
+ #: inc/php/page.php:153
262
  msgid "It's not working. What could be wrong?"
263
  msgstr ""
264
 
265
+ #: inc/php/page.php:154
266
  msgid ""
267
  "As with every plugin, it's possible that things don't work. The most common "
268
  "reason for this is a web browser's cache. Every web browser stores a cache "
271
  "browser's cache may solve the problem."
272
  msgstr ""
273
 
274
+ #: inc/php/page.php:155
275
  msgid ""
276
  "It's impossible to tell what could be wrong exactly, but if you post a "
277
  "support request in the plugin's support forum on WordPress.org, I'd be happy "
279
  "possible, including a link to your website where the problem can be seen."
280
  msgstr ""
281
 
282
+ #: inc/php/page.php:157
283
  msgid "What to do if this plugin caused the white screen (WSOD)?"
284
  msgstr ""
285
 
286
+ #: inc/php/page.php:158
287
  msgid ""
288
  "This plugin is not perfect, so there are times when the entered custom code "
289
  "causes the error and white screen (WSOD). This is due to the fact that your "
291
  "happened with you then do the following and all will be fine."
292
  msgstr ""
293
 
294
+ #: inc/php/page.php:160
295
  msgid ""
296
  "Via FTP, go to the plugin folder (in <code>wp-content/plugins/my-custom-"
297
  "functions/</code>). Rename the \"START\" file to \"STOP\"."
298
  msgstr ""
299
 
300
+ #: inc/php/page.php:161
301
  msgid "Return to the plugin settings page."
302
  msgstr ""
303
 
304
+ #: inc/php/page.php:162
305
  msgid "Edit/fix your custom code that you entered before the crash."
306
  msgstr ""
307
 
308
+ #: inc/php/page.php:163
309
  msgid "Rename the \"STOP\" file to \"START\" and you're done!"
310
  msgstr ""
311
 
312
+ #: inc/php/page.php:165
313
  msgid ""
314
  "This plugin stored you entered code in the Database of your website. For "
315
  "getting your code, you also can go to the <code>Database</code> &#10145; "
317
  "<code>anarcho_cfunctions_settings</code> &#10145; <code>option_value</code>."
318
  msgstr ""
319
 
320
+ #: inc/php/page.php:167
321
  msgid "Where to report bug if found?"
322
  msgstr ""
323
 
324
+ #: inc/php/page.php:169
325
  #, php-format
326
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
327
  msgstr ""
328
 
329
+ #: inc/php/page.php:175
330
  msgid "Where to share any ideas or suggestions to make the plugin better?"
331
  msgstr ""
332
 
333
+ #: inc/php/page.php:177
334
  #, php-format
335
  msgid ""
336
  "Any suggestions are very welcome! Please send me an email to %s "
337
  "arthurgareginyan@gmail.com %s. Thank you!"
338
  msgstr ""
339
 
340
+ #: inc/php/page.php:183
341
  msgid "I love this plugin! Can I help somehow?"
342
  msgstr ""
343
 
344
+ #: inc/php/page.php:185
345
  #, php-format
346
  msgid ""
347
  "Yes, any financial contributions are welcome! Just visit %s my website %s, "
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: 2017-05-07 13:23+0300\n"
7
  "PO-Revision-Date: 2015-08-30 16:22+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
@@ -87,11 +87,11 @@ msgstr ""
87
  msgid "F.A.Q."
88
  msgstr ""
89
 
90
- #: inc/php/page.php:45 inc/php/page.php:197
91
  msgid "Author"
92
  msgstr ""
93
 
94
- #: inc/php/page.php:46 inc/php/page.php:206 inc/php/settings.php:37 inc/php/settings.php:90
95
  msgid "Support"
96
  msgstr ""
97
 
@@ -202,52 +202,52 @@ msgstr ""
202
  msgid "Here are a few of the most likely causes of the error message:"
203
  msgstr ""
204
 
205
- #: inc/php/page.php:140
206
  msgid ""
207
- "1. You make a syntax error in the code that you have entered. Check the syntax of your code and try "
208
  "again."
209
  msgstr ""
210
 
211
- #: inc/php/page.php:141
212
- msgid "2. You entered two functions with the same name. Use a unique names for your functions."
213
  msgstr ""
214
 
215
- #: inc/php/page.php:142
216
  msgid ""
217
- "3. You have entered function with a name that is already occupied by another function. Use a unique "
218
  "name for your function."
219
  msgstr ""
220
 
221
- #: inc/php/page.php:143
222
  msgid ""
223
- "4. You are trying to overwrite an existing function (of WordPress, theme, or plugin). Instead, use "
224
  "filters and hooks."
225
  msgstr ""
226
 
227
- #: inc/php/page.php:145
228
  msgid "Does this plugin requires any modification of the theme?"
229
  msgstr ""
230
 
231
- #: inc/php/page.php:146
232
  msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
233
  msgstr ""
234
 
235
- #: inc/php/page.php:148
236
  msgid "Does this require any knowledge of HTML or CSS?"
237
  msgstr ""
238
 
239
- #: inc/php/page.php:149
240
  msgid ""
241
  "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin "
242
  "settings page. But you need to know the HTML or CSS in order to add/remove/modify the HTML or CSS "
243
  "code by using this plugin."
244
  msgstr ""
245
 
246
- #: inc/php/page.php:151
247
  msgid "It's not working. What could be wrong?"
248
  msgstr ""
249
 
250
- #: inc/php/page.php:152
251
  msgid ""
252
  "As with every plugin, it's possible that things don't work. The most common reason for this is a "
253
  "web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and "
@@ -255,7 +255,7 @@ msgid ""
255
  "browser's cache may solve the problem."
256
  msgstr ""
257
 
258
- #: inc/php/page.php:153
259
  msgid ""
260
  "It's impossible to tell what could be wrong exactly, but if you post a support request in the "
261
  "plugin's support forum on WordPress.org, I'd be happy to give it a look and try to help out. Please "
@@ -263,67 +263,67 @@ msgid ""
263
  "seen."
264
  msgstr ""
265
 
266
- #: inc/php/page.php:155
267
  msgid "What to do if this plugin caused the white screen (WSOD)?"
268
  msgstr ""
269
 
270
- #: inc/php/page.php:156
271
  msgid ""
272
  "This plugin is not perfect, so there are times when the entered custom code causes the error and "
273
  "white screen (WSOD). This is due to the fact that your custom code has a syntax error that this "
274
  "plugin could not detect. If this happened with you then do the following and all will be fine."
275
  msgstr ""
276
 
277
- #: inc/php/page.php:158
278
  msgid ""
279
  "Via FTP, go to the plugin folder (in <code>wp-content/plugins/my-custom-functions/</code>). Rename "
280
  "the \"START\" file to \"STOP\"."
281
  msgstr ""
282
 
283
- #: inc/php/page.php:159
284
  msgid "Return to the plugin settings page."
285
  msgstr ""
286
 
287
- #: inc/php/page.php:160
288
  msgid "Edit/fix your custom code that you entered before the crash."
289
  msgstr ""
290
 
291
- #: inc/php/page.php:161
292
  msgid "Rename the \"STOP\" file to \"START\" and you're done!"
293
  msgstr ""
294
 
295
- #: inc/php/page.php:163
296
  msgid ""
297
  "This plugin stored you entered code in the Database of your website. For getting your code, you "
298
  "also can go to the <code>Database</code> &#10145; Table <code>wp_options</code> &#10145; Option "
299
  "<code>anarcho_cfunctions_settings</code> &#10145; <code>option_value</code>."
300
  msgstr ""
301
 
302
- #: inc/php/page.php:165
303
  msgid "Where to report bug if found?"
304
  msgstr ""
305
 
306
- #: inc/php/page.php:167
307
  #, php-format
308
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
309
  msgstr ""
310
 
311
- #: inc/php/page.php:173
312
  msgid "Where to share any ideas or suggestions to make the plugin better?"
313
  msgstr ""
314
 
315
- #: inc/php/page.php:175
316
  #, php-format
317
  msgid ""
318
  "Any suggestions are very welcome! Please send me an email to %s arthurgareginyan@gmail.com %s. "
319
  "Thank you!"
320
  msgstr ""
321
 
322
- #: inc/php/page.php:181
323
  msgid "I love this plugin! Can I help somehow?"
324
  msgstr ""
325
 
326
- #: inc/php/page.php:183
327
  #, php-format
328
  msgid ""
329
  "Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate "
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: My Custom Functions\n"
6
+ "POT-Creation-Date: 2017-05-12 21:53+0300\n"
7
  "PO-Revision-Date: 2015-08-30 16:22+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
87
  msgid "F.A.Q."
88
  msgstr ""
89
 
90
+ #: inc/php/page.php:45 inc/php/page.php:199
91
  msgid "Author"
92
  msgstr ""
93
 
94
+ #: inc/php/page.php:46 inc/php/page.php:208 inc/php/settings.php:37 inc/php/settings.php:90
95
  msgid "Support"
96
  msgstr ""
97
 
202
  msgid "Here are a few of the most likely causes of the error message:"
203
  msgstr ""
204
 
205
+ #: inc/php/page.php:141
206
  msgid ""
207
+ "You make a syntax error in the code that you have entered. Check the syntax of your code and try "
208
  "again."
209
  msgstr ""
210
 
211
+ #: inc/php/page.php:142
212
+ msgid "You entered two functions with the same name. Use a unique names for your functions."
213
  msgstr ""
214
 
215
+ #: inc/php/page.php:143
216
  msgid ""
217
+ "You have entered function with a name that is already occupied by another function. Use a unique "
218
  "name for your function."
219
  msgstr ""
220
 
221
+ #: inc/php/page.php:144
222
  msgid ""
223
+ "You are trying to overwrite an existing function (of WordPress, theme, or plugin). Instead, use "
224
  "filters and hooks."
225
  msgstr ""
226
 
227
+ #: inc/php/page.php:147
228
  msgid "Does this plugin requires any modification of the theme?"
229
  msgstr ""
230
 
231
+ #: inc/php/page.php:148
232
  msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
233
  msgstr ""
234
 
235
+ #: inc/php/page.php:150
236
  msgid "Does this require any knowledge of HTML or CSS?"
237
  msgstr ""
238
 
239
+ #: inc/php/page.php:151
240
  msgid ""
241
  "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin "
242
  "settings page. But you need to know the HTML or CSS in order to add/remove/modify the HTML or CSS "
243
  "code by using this plugin."
244
  msgstr ""
245
 
246
+ #: inc/php/page.php:153
247
  msgid "It's not working. What could be wrong?"
248
  msgstr ""
249
 
250
+ #: inc/php/page.php:154
251
  msgid ""
252
  "As with every plugin, it's possible that things don't work. The most common reason for this is a "
253
  "web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and "
255
  "browser's cache may solve the problem."
256
  msgstr ""
257
 
258
+ #: inc/php/page.php:155
259
  msgid ""
260
  "It's impossible to tell what could be wrong exactly, but if you post a support request in the "
261
  "plugin's support forum on WordPress.org, I'd be happy to give it a look and try to help out. Please "
263
  "seen."
264
  msgstr ""
265
 
266
+ #: inc/php/page.php:157
267
  msgid "What to do if this plugin caused the white screen (WSOD)?"
268
  msgstr ""
269
 
270
+ #: inc/php/page.php:158
271
  msgid ""
272
  "This plugin is not perfect, so there are times when the entered custom code causes the error and "
273
  "white screen (WSOD). This is due to the fact that your custom code has a syntax error that this "
274
  "plugin could not detect. If this happened with you then do the following and all will be fine."
275
  msgstr ""
276
 
277
+ #: inc/php/page.php:160
278
  msgid ""
279
  "Via FTP, go to the plugin folder (in <code>wp-content/plugins/my-custom-functions/</code>). Rename "
280
  "the \"START\" file to \"STOP\"."
281
  msgstr ""
282
 
283
+ #: inc/php/page.php:161
284
  msgid "Return to the plugin settings page."
285
  msgstr ""
286
 
287
+ #: inc/php/page.php:162
288
  msgid "Edit/fix your custom code that you entered before the crash."
289
  msgstr ""
290
 
291
+ #: inc/php/page.php:163
292
  msgid "Rename the \"STOP\" file to \"START\" and you're done!"
293
  msgstr ""
294
 
295
+ #: inc/php/page.php:165
296
  msgid ""
297
  "This plugin stored you entered code in the Database of your website. For getting your code, you "
298
  "also can go to the <code>Database</code> &#10145; Table <code>wp_options</code> &#10145; Option "
299
  "<code>anarcho_cfunctions_settings</code> &#10145; <code>option_value</code>."
300
  msgstr ""
301
 
302
+ #: inc/php/page.php:167
303
  msgid "Where to report bug if found?"
304
  msgstr ""
305
 
306
+ #: inc/php/page.php:169
307
  #, php-format
308
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
309
  msgstr ""
310
 
311
+ #: inc/php/page.php:175
312
  msgid "Where to share any ideas or suggestions to make the plugin better?"
313
  msgstr ""
314
 
315
+ #: inc/php/page.php:177
316
  #, php-format
317
  msgid ""
318
  "Any suggestions are very welcome! Please send me an email to %s arthurgareginyan@gmail.com %s. "
319
  "Thank you!"
320
  msgstr ""
321
 
322
+ #: inc/php/page.php:183
323
  msgid "I love this plugin! Can I help somehow?"
324
  msgstr ""
325
 
326
+ #: inc/php/page.php:185
327
  #, php-format
328
  msgid ""
329
  "Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate "
my-custom-functions.php CHANGED
@@ -5,7 +5,7 @@
5
  * Description: Easily and safely add your custom functions (PHP code) directly out of your WordPress Dashboard without need of an external editor.
6
  * Author: Arthur Gareginyan
7
  * Author URI: http://www.arthurgareginyan.com
8
- * Version: 4.0
9
  * License: GPL3
10
  * Text Domain: my-custom-functions
11
  * Domain Path: /languages/
@@ -62,7 +62,7 @@ defined('MCFUNC_BASE') or define('MCFUNC_BASE', plugin_basename(__FILE__));
62
  defined('MCFUNC_URL') or define('MCFUNC_URL', plugin_dir_url(__FILE__));
63
  defined('MCFUNC_PATH') or define('MCFUNC_PATH', plugin_dir_path(__FILE__));
64
  defined('MCFUNC_TEXT') or define('MCFUNC_TEXT', 'my-custom-functions');
65
- defined('MCFUNC_VERSION') or define('MCFUNC_VERSION', '4.0');
66
 
67
  /**
68
  * Load the plugin modules
5
  * Description: Easily and safely add your custom functions (PHP code) directly out of your WordPress Dashboard without need of an external editor.
6
  * Author: Arthur Gareginyan
7
  * Author URI: http://www.arthurgareginyan.com
8
+ * Version: 4.0.1
9
  * License: GPL3
10
  * Text Domain: my-custom-functions
11
  * Domain Path: /languages/
62
  defined('MCFUNC_URL') or define('MCFUNC_URL', plugin_dir_url(__FILE__));
63
  defined('MCFUNC_PATH') or define('MCFUNC_PATH', plugin_dir_path(__FILE__));
64
  defined('MCFUNC_TEXT') or define('MCFUNC_TEXT', 'my-custom-functions');
65
+ defined('MCFUNC_VERSION') or define('MCFUNC_VERSION', '4.0.1');
66
 
67
  /**
68
  * Load the plugin modules
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: code, php, function, snippet, custom, execute, edit, editing, editor, func
4
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS
5
  Requires at least: 3.9
6
  Tested up to: 4.7
7
- Stable tag: 4.0
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -172,6 +172,10 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
172
 
173
  == Changelog ==
174
 
 
 
 
 
175
  = 4.0 =
176
  * The design of the plugin settings page is completely redone.
177
  * Added additional donate link to the "Plugins" page.
4
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS
5
  Requires at least: 3.9
6
  Tested up to: 4.7
7
+ Stable tag: 4.0.1
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
172
 
173
  == Changelog ==
174
 
175
+ = 4.0.1 =
176
+ * Fixed the bug due to which the the "Warning: Illegal string offset 'version' in" and the "Warning: Illegal string offset 'old_version' in" warnings are displayed. (Thanks to Sven Brill)
177
+ * Contents of the F.A.Q. tab updated.
178
+
179
  = 4.0 =
180
  * The design of the plugin settings page is completely redone.
181
  * Added additional donate link to the "Plugins" page.