My Custom Functions - Version 4.8

Version Description

  • Added the top level menu item of the brand.
  • The submenu item of the plugin has moved to the menu item of the brand.
  • The menu item of the plugin is renamed.
  • The "Author" tab on the settings page is removed.
  • Content of the "Support" tab on the settings page is updated.
  • Copyright of plugin files is changed to the "Space X-Chimp Studio".
  • The "Support" tab renamed to the "Support Me".
  • The "Usage" tab renamed to the "Usage Instructions".
Download this release

Release Info

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

Code changes from version 4.7 to 4.8

inc/css/admin.css CHANGED
@@ -3,8 +3,8 @@
3
  *
4
  * @package My Custom Functions
5
  * @author Arthur Gareginyan
6
- * @link https://www.arthurgareginyan.com
7
- * @copyright Copyright (c) 2016-2017 Arthur Gareginyan. All Rights Reserved.
8
  */
9
 
10
 
@@ -50,6 +50,7 @@ h2 span {
50
  display: block;
51
  margin-top: 15px;
52
  font-size: 16px;
 
53
  text-shadow: none;
54
  line-height: 20px;
55
  }
@@ -98,8 +99,14 @@ h2 .version {
98
  width: 265px;
99
  }
100
 
101
- /* Support - addition section
102
  -------------------------------------------------------------- */
 
 
 
 
 
 
103
  #support-addition {
104
  display: none;
105
  }
3
  *
4
  * @package My Custom Functions
5
  * @author Arthur Gareginyan
6
+ * @link https://www.spacexchimp.com
7
+ * @copyright Copyright (c) 2016-2017 Space X-Chimp Studio. All Rights Reserved.
8
  */
9
 
10
 
50
  display: block;
51
  margin-top: 15px;
52
  font-size: 16px;
53
+ letter-spacing: .2em;
54
  text-shadow: none;
55
  line-height: 20px;
56
  }
99
  width: 265px;
100
  }
101
 
102
+ /* Support - Tab and Addition section
103
  -------------------------------------------------------------- */
104
+ #tab-support .inside {
105
+ min-height: 270px;
106
+ }
107
+ #tab-support .image-with-button img[alt="Thanks!"] {
108
+ display: block;
109
+ }
110
  #support-addition {
111
  display: none;
112
  }
inc/img/thanks.png CHANGED
Binary file
inc/js/admin.js CHANGED
@@ -3,8 +3,8 @@
3
  *
4
  * @package My Custom Functions
5
  * @author Arthur Gareginyan
6
- * @link https://www.arthurgareginyan.com
7
- * @copyright Copyright (c) 2016-2017 Arthur Gareginyan. All Rights Reserved.
8
  */
9
 
10
 
@@ -20,7 +20,6 @@ jQuery(document).ready(function($) {
20
  }
21
 
22
  // Add dynamic content to page tabs. Needed for having an up to date content.
23
- $('.include-tab-author').load('https://www.spacexchimp.com/assets/dynamic-content/plugins.html #include-tab-author');
24
  $('.include-tab-store').load('https://www.spacexchimp.com/assets/dynamic-content/plugins.html #include-tab-store');
25
 
26
  // Add questions and answers into spoilers and color them in different colors
3
  *
4
  * @package My Custom Functions
5
  * @author Arthur Gareginyan
6
+ * @link https://www.spacexchimp.com
7
+ * @copyright Copyright (c) 2016-2017 Space X-Chimp Studio. All Rights Reserved.
8
  */
9
 
10
 
20
  }
21
 
22
  // Add dynamic content to page tabs. Needed for having an up to date content.
 
23
  $('.include-tab-store').load('https://www.spacexchimp.com/assets/dynamic-content/plugins.html #include-tab-store');
24
 
25
  // Add questions and answers into spoilers and color them in different colors
inc/php/core.php CHANGED
@@ -18,12 +18,9 @@ add_action( 'init', 'spacexchimp_p001_textdomain' );
18
  *
19
  * Fetches array of links generated by WP Plugin admin page ( Deactivate | Edit )
20
  * and inserts a link to the plugin admin page
21
- *
22
- * @param array $links Array of links generated by WP in Plugin Admin page.
23
- * @return array Array of links to be output on Plugin Admin page.
24
  */
25
  function spacexchimp_p001_settings_link( $links ) {
26
- $page = '<a href="' . admin_url( 'themes.php?page=' . SPACEXCHIMP_P001_SLUG . '.php' ) .'">' . __( 'Settings', SPACEXCHIMP_P001_TEXT ) . '</a>';
27
  array_unshift( $links, $page );
28
  return $links;
29
  }
@@ -58,12 +55,38 @@ function spacexchimp_p001_plugin_row_meta( $links, $file ) {
58
  add_filter( 'plugin_row_meta', 'spacexchimp_p001_plugin_row_meta', 10, 2 );
59
 
60
  /**
61
- * Register plugin's submenu in the "Appearance" Admin Menu
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
62
  */
63
  function spacexchimp_p001_register_submenu_page() {
64
- $menu_title = __( 'Custom Functions', SPACEXCHIMP_P001_TEXT );
65
- $capability = 'edit_theme_options';
66
- add_theme_page( SPACEXCHIMP_P001_NAME, $menu_title, $capability, SPACEXCHIMP_P001_SLUG, 'spacexchimp_p001_render_submenu_page' );
 
 
 
 
 
 
67
  }
68
  add_action( 'admin_menu', 'spacexchimp_p001_register_submenu_page' );
69
 
18
  *
19
  * Fetches array of links generated by WP Plugin admin page ( Deactivate | Edit )
20
  * and inserts a link to the plugin admin page
 
 
 
21
  */
22
  function spacexchimp_p001_settings_link( $links ) {
23
+ $page = '<a href="' . admin_url( 'admin.php?page=spacexchimp/' . SPACEXCHIMP_P001_SLUG ) .'">' . __( 'Settings', SPACEXCHIMP_P001_TEXT ) . '</a>';
24
  array_unshift( $links, $page );
25
  return $links;
26
  }
55
  add_filter( 'plugin_row_meta', 'spacexchimp_p001_plugin_row_meta', 10, 2 );
56
 
57
  /**
58
+ * Register brand menu item in the Admin Menu
59
+ */
60
+ function spacexchimp_p001_register_admin_menu() {
61
+
62
+ // Return if the brand menu item is already existed
63
+ if ( !empty ( $GLOBALS['admin_page_hooks']['spacexchimp'] ) ) return;
64
+
65
+ $page_title = 'Space X-Chimp';
66
+ $menu_title = 'Space X-Chimp';
67
+ $capability = 'manage_options';
68
+ $menu_slug = 'spacexchimp';
69
+ $function = null;
70
+ $icon_url = 'dashicons-star-filled';
71
+ $position = 66;
72
+
73
+ add_menu_page( $page_title, $menu_title, $capability, $menu_slug, $function, $icon_url, $position );
74
+ }
75
+ add_action( 'admin_menu', 'spacexchimp_p001_register_admin_menu' );
76
+
77
+ /**
78
+ * Register plugin's submenu item in the brand menu item
79
  */
80
  function spacexchimp_p001_register_submenu_page() {
81
+
82
+ $parent_slug = 'spacexchimp';
83
+ $page_title = SPACEXCHIMP_P001_NAME;
84
+ $menu_title = __( 'PHP Inserter', SPACEXCHIMP_P001_TEXT );
85
+ $capability = 'edit_theme_options';
86
+ $menu_slug = 'spacexchimp/' . SPACEXCHIMP_P001_SLUG;
87
+ $function = 'spacexchimp_p001_render_submenu_page';
88
+
89
+ add_submenu_page( $parent_slug, $page_title, $menu_title, $capability, $menu_slug, $function);
90
  }
91
  add_action( 'admin_menu', 'spacexchimp_p001_register_submenu_page' );
92
 
inc/php/enqueue.php CHANGED
@@ -16,10 +16,8 @@ function spacexchimp_p001_load_scripts_admin( $hook ) {
16
  $url = SPACEXCHIMP_P001_URL;
17
 
18
  // Return if the page is not a settings page of this plugin
19
- $settings_page = 'appearance_page_' . $slug;
20
- if ( $settings_page != $hook ) {
21
- return;
22
- }
23
 
24
  // Load jQuery library
25
  wp_enqueue_script( 'jquery' );
16
  $url = SPACEXCHIMP_P001_URL;
17
 
18
  // Return if the page is not a settings page of this plugin
19
+ $settings_page = 'space-x-chimp_page_spacexchimp/' . $slug;
20
+ if ( $settings_page != $hook ) return;
 
 
21
 
22
  // Load jQuery library
23
  wp_enqueue_script( 'jquery' );
inc/php/page.php CHANGED
@@ -29,8 +29,8 @@ function spacexchimp_p001_render_submenu_page() {
29
  <?php echo $name; ?>
30
  <span>
31
  <?php printf(
32
- __( 'by %s Arthur Gareginyan %s', $text ),
33
- '<a href="https://www.arthurgareginyan.com" target="_blank">',
34
  '</a>'
35
  );
36
  ?>
@@ -46,7 +46,6 @@ function spacexchimp_p001_render_submenu_page() {
46
  <li><a href="#tab-usage" data-toggle="tab"><?php _e( 'Usage', $text ); ?></a></li>
47
  <li><a href="#tab-faq" data-toggle="tab"><?php _e( 'F.A.Q.', $text ); ?></a></li>
48
  <li><a href="#tab-support" data-toggle="tab"><?php _e( 'Support', $text ); ?></a></li>
49
- <li><a href="#tab-author" data-toggle="tab"><?php _e( 'Author', $text ); ?></a></li>
50
  <li><a href="#tab-store" data-toggle="tab"><?php _e( 'Store', $text ); ?></a></li>
51
  </ul>
52
  <!-- END-TABS NAVIGATION MENU -->
@@ -63,7 +62,7 @@ function spacexchimp_p001_render_submenu_page() {
63
  <!-- TAB 2 -->
64
  <div class="tab-page fade" id="tab-usage">
65
  <div class="postbox">
66
- <h3 class="title"><?php _e( 'Usage', $text ); ?></h3>
67
  <div class="inside">
68
  <p><?php _e( 'To add your custom functions (the PHP code) to your website, simply follow these steps:', $text ); ?></p>
69
  <ol class="custom-counter">
@@ -218,17 +217,30 @@ function spacexchimp_p001_render_submenu_page() {
218
  <!-- TAB 4 -->
219
  <div class="tab-page fade" id="tab-support">
220
  <div class="postbox">
221
- <h3 class="title"><?php _e( 'Support', $text ); ?></h3>
222
  <div class="inside">
223
- <img src="<?php echo SPACEXCHIMP_P001_URL . 'inc/img/thanks.png'; ?>" alt="Thanks!" class="pull-right">
224
- <p><?php _e( 'If you appreciate my work, you can buy me a coffee!', $text ); ?></p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
225
  <p><?php _e( 'I spend a lot of time and effort trying to make sure that the themes, plugins and other things I build are useful, and the ultimate proof of that for me is that you actually want to use them. But, I’m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy.', $text ); ?></p>
226
- <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="btn btn-default button-labeled">
227
- <span class="btn-label">
228
- <img src="<?php echo SPACEXCHIMP_P001_URL . 'inc/img/paypal.svg'; ?>" alt="PayPal">
229
- </span>
230
- <?php _e( 'Donate with PayPal', $text ); ?>
231
- </a>
232
  <p><?php _e( 'Thank you for your support!', $text ); ?></p>
233
  </div>
234
  </div>
@@ -236,19 +248,10 @@ function spacexchimp_p001_render_submenu_page() {
236
  <!-- END-TAB 4 -->
237
 
238
  <!-- TAB 5 -->
239
- <div class="tab-page fade" id="tab-author">
240
- <div class="postbox">
241
- <h3 class="title"><?php _e( 'Author', $text ); ?></h3>
242
- <div class="inside include-tab-author"></div>
243
- </div>
244
- </div>
245
- <!-- END-TAB 5 -->
246
-
247
- <!-- TAB 6 -->
248
  <div class="tab-page fade" id="tab-store">
249
  <div class="include-tab-store"></div>
250
  </div>
251
- <!-- END-TAB 6 -->
252
 
253
  </div>
254
 
29
  <?php echo $name; ?>
30
  <span>
31
  <?php printf(
32
+ __( 'by %s Space X-Chimp Studio %s', $text ),
33
+ '<a href="https://www.spacexchimp.com" target="_blank">',
34
  '</a>'
35
  );
36
  ?>
46
  <li><a href="#tab-usage" data-toggle="tab"><?php _e( 'Usage', $text ); ?></a></li>
47
  <li><a href="#tab-faq" data-toggle="tab"><?php _e( 'F.A.Q.', $text ); ?></a></li>
48
  <li><a href="#tab-support" data-toggle="tab"><?php _e( 'Support', $text ); ?></a></li>
 
49
  <li><a href="#tab-store" data-toggle="tab"><?php _e( 'Store', $text ); ?></a></li>
50
  </ul>
51
  <!-- END-TABS NAVIGATION MENU -->
62
  <!-- TAB 2 -->
63
  <div class="tab-page fade" id="tab-usage">
64
  <div class="postbox">
65
+ <h3 class="title"><?php _e( 'Usage Instructions', $text ); ?></h3>
66
  <div class="inside">
67
  <p><?php _e( 'To add your custom functions (the PHP code) to your website, simply follow these steps:', $text ); ?></p>
68
  <ol class="custom-counter">
217
  <!-- TAB 4 -->
218
  <div class="tab-page fade" id="tab-support">
219
  <div class="postbox">
220
+ <h3 class="title"><?php _e( 'Support Me', $text ); ?></h3>
221
  <div class="inside">
222
+ <span class="image-with-button pull-left">
223
+ <img src="<?php echo SPACEXCHIMP_P001_URL . 'inc/img/thanks.png'; ?>" alt="Thanks!">
224
+ <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="btn btn-default button-labeled">
225
+ <span class="btn-label">
226
+ <img src="<?php echo SPACEXCHIMP_P001_URL . 'inc/img/paypal.svg'; ?>" alt="PayPal">
227
+ </span>
228
+ <?php _e( 'Donate with PayPal', $text ); ?>
229
+ </a>
230
+ </span>
231
+ <p><?php
232
+ printf(
233
+ __( 'Hello! My name is %s Arthur Gareginyan %s and I\'m the founder of %s Space X-Chimp Studio %s.', $text ),
234
+ '<a href="https://www.arthurgareginyan.com" target="_blank">',
235
+ '</a>',
236
+ '<a href="https://www.spacexchimp.com" target="_blank">',
237
+ '</a>'
238
+ );
239
+ ?>
240
+ </p>
241
+ <p><?php _e( '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.', $text ); ?></p>
242
  <p><?php _e( 'I spend a lot of time and effort trying to make sure that the themes, plugins and other things I build are useful, and the ultimate proof of that for me is that you actually want to use them. But, I’m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy.', $text ); ?></p>
243
+ <p><?php _e( 'If you appreciate my work, you can buy me a coffee!', $text ); ?></p>
 
 
 
 
 
244
  <p><?php _e( 'Thank you for your support!', $text ); ?></p>
245
  </div>
246
  </div>
248
  <!-- END-TAB 4 -->
249
 
250
  <!-- TAB 5 -->
 
 
 
 
 
 
 
 
 
251
  <div class="tab-page fade" id="tab-store">
252
  <div class="include-tab-store"></div>
253
  </div>
254
+ <!-- END-TAB 5 -->
255
 
256
  </div>
257
 
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-08-29 21:28+0300\n"
7
- "PO-Revision-Date: 2017-08-29 21:28+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "Language: es\n"
@@ -21,21 +21,21 @@ msgstr ""
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
- #: inc/php/core.php:26
25
  msgid "Settings"
26
  msgstr "Ajustes"
27
 
28
- #: inc/php/core.php:36 inc/php/core.php:51
29
  msgid "Upgrade to PRO"
30
  msgstr ""
31
 
32
- #: inc/php/core.php:50
33
  msgid "Donate"
34
  msgstr "Donar"
35
 
36
- #: inc/php/core.php:64
37
- msgid "Custom Functions"
38
- msgstr ""
39
 
40
  #: inc/php/messages.php:26
41
  msgid "Hello. I'm Arthur, the author of this plugin."
@@ -68,8 +68,8 @@ msgstr ""
68
 
69
  #: inc/php/page.php:32
70
  #, php-format
71
- msgid "by %s Arthur Gareginyan %s"
72
- msgstr "por %s Arthur Gareginyan %s"
73
 
74
  #: inc/php/page.php:38
75
  msgid "Version"
@@ -79,7 +79,7 @@ msgstr "Versión"
79
  msgid "Main"
80
  msgstr "Principal"
81
 
82
- #: inc/php/page.php:46 inc/php/page.php:66
83
  msgid "Usage"
84
  msgstr "Uso"
85
 
@@ -87,92 +87,92 @@ msgstr "Uso"
87
  msgid "F.A.Q."
88
  msgstr "Preguntas ?"
89
 
90
- #: inc/php/page.php:48 inc/php/page.php:221 inc/php/settings.php:43 inc/php/sidebar.php:32
91
  msgid "Support"
92
  msgstr "Soporte"
93
 
94
- #: inc/php/page.php:49 inc/php/page.php:241
95
- msgid "Author"
96
- msgstr "Autor"
97
-
98
- #: inc/php/page.php:50
99
  msgid "Store"
100
  msgstr "Tienda"
101
 
102
- #: inc/php/page.php:68
 
 
 
 
103
  msgid "To add your custom functions (the PHP code) to your website, simply follow these steps:"
104
  msgstr ""
105
 
106
- #: inc/php/page.php:70
107
  msgid "Go to the \"Main\" tab."
108
  msgstr "Debes ir a la pestaña “Principal”."
109
 
110
- #: inc/php/page.php:71
111
  msgid "Place your PHP code in the field."
112
  msgstr ""
113
 
114
- #: inc/php/page.php:72
115
  msgid "Example of PHP code:"
116
  msgstr ""
117
 
118
- #: inc/php/page.php:78 inc/php/page.php:79 inc/php/page.php:85
119
  msgid "Note!"
120
  msgstr "¡Nota!"
121
 
122
- #: inc/php/page.php:78
123
  msgid "Please do not wrap your PHP code in the <code>&lt;?php</code>...<code>?&gt;</code> HTML tags."
124
  msgstr ""
125
 
126
- #: inc/php/page.php:79
127
  msgid "Before use, please read the instructions on the F.A.Q. tab on what to do in case of a website crash."
128
  msgstr ""
129
 
130
- #: inc/php/page.php:81
131
  msgid "Switch the toggle to the \"ON\" position."
132
  msgstr ""
133
 
134
- #: inc/php/page.php:82
135
  msgid "Click the \"Save changes\" button."
136
  msgstr "Clic en el botón \"Guardar Cambios\"."
137
 
138
- #: inc/php/page.php:83
139
  msgid "Enjoy the result of applying your PHP code."
140
  msgstr ""
141
 
142
- #: inc/php/page.php:83
143
  msgid "It's that simple!"
144
  msgstr "¡Es así de simple!"
145
 
146
- #: inc/php/page.php:85
147
  msgid "If you want more options then tell me and I will be happy to add it."
148
  msgstr "Si quieres más opciones, dímelo y estaré encantado de añadirlo."
149
 
150
- #: inc/php/page.php:94
151
  msgid "Frequently Asked Questions"
152
  msgstr "Preguntas Frecuentes"
153
 
154
- #: inc/php/page.php:98
155
  msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
156
  msgstr ""
157
  "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:120
160
  msgid "Will this plugin work on my WordPress.COM website?"
161
  msgstr "¿Funcionará este complemento en mi sitio web WordPress.COM?"
162
 
163
- #: inc/php/page.php:121
164
  msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
165
  msgstr "Lo sentimos, este complemento está disponible para su uso solo en sitios web alojados (WordPress.ORG)."
166
 
167
- #: inc/php/page.php:123
168
  msgid "Can I use this plugin on my language?"
169
  msgstr "¿Puedo usar este complemento en mi idioma?"
170
 
171
- #: inc/php/page.php:124
172
  msgid "Yes. This plugin is ready for translation and has already been translated into several languages."
173
  msgstr "Sí. Este complemento está listo para ser traducido y ya ha sido traducido a varios idiomas."
174
 
175
- #: inc/php/page.php:126
176
  #, php-format
177
  msgid ""
178
  "If you want to help translate this plugin then please visit the %s. You can also use the POT file, that is included and "
@@ -183,91 +183,91 @@ msgstr ""
183
  "en la carpeta \"languages\", para crear un archivo PO de traducción. Simplemente envíeme el archivo PO en el %s e "
184
  "incluiré esta traducción en la siguiente actualización del complemento."
185
 
186
- #: inc/php/page.php:131
187
  msgid "Maybe not all existed translations are up to date. You are welcome to contribute corrections!"
188
  msgstr "Quizás no todas las traducciones existentes estén actualizadas. Le invitamos a contribuir correcciones!"
189
 
190
- #: inc/php/page.php:132
191
  msgid ""
192
  "Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!"
193
  msgstr ""
194
  "Muchos de los usuarios de este complemento estarían encantados si compartes tu traducción con la comunidad. ¡Gracias por "
195
  "tu contribución!"
196
 
197
- #: inc/php/page.php:134
198
  msgid "How does it work?"
199
  msgstr "¿Como funciona?"
200
 
201
- #: inc/php/page.php:135
202
  msgid ""
203
  "On the \"Main\" tab, place your PHP code in the field, switch the toggle to the \"ON\" position and click the \"Save "
204
  "changes\" button. Enjoy the result of applying your PHP code. It's that simple!"
205
  msgstr ""
206
 
207
- #: inc/php/page.php:137
208
  msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
209
  msgstr ""
210
 
211
- #: inc/php/page.php:138
212
  msgid "Yes. But you need to do it properly, like this:"
213
  msgstr ""
214
 
215
- #: inc/php/page.php:148
216
  msgid "How much of PHP code (characters) I can enter in the text field?"
217
  msgstr ""
218
 
219
- #: inc/php/page.php:149
220
  msgid "I don't limit the number of characters."
221
  msgstr ""
222
 
223
- #: inc/php/page.php:151
224
  msgid "On the plugin settings page, an error message appears. What could be wrong?"
225
  msgstr ""
226
 
227
- #: inc/php/page.php:152
228
  msgid "Here are a few of the most likely causes of the error message:"
229
  msgstr ""
230
 
231
- #: inc/php/page.php:154
232
  msgid "You make a syntax error in the code that you have entered. Check the syntax of your code and try again."
233
  msgstr ""
234
 
235
- #: inc/php/page.php:155
236
  msgid "You entered two functions with the same name. Use a unique names for your functions."
237
  msgstr ""
238
 
239
- #: inc/php/page.php:156
240
  msgid ""
241
  "You have entered function with a name that is already occupied by another function. Use a unique name for your function."
242
  msgstr ""
243
 
244
- #: inc/php/page.php:157
245
  msgid "You are trying to overwrite an existing function (of WordPress, theme, or plugin). Instead, use filters and hooks."
246
  msgstr ""
247
 
248
- #: inc/php/page.php:160
249
  msgid "Does this plugin requires any modification of the theme?"
250
  msgstr "¿Este complemento requiere alguna modificación del tema?"
251
 
252
- #: inc/php/page.php:161
253
  msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
254
  msgstr "Absolutamente NO. Este complemento se puede configurar completamente desde su página de configuración."
255
 
256
- #: inc/php/page.php:163
257
  msgid "Does this require any knowledge of HTML or CSS?"
258
  msgstr "¿Esto requiere algún conocimiento de HTML o CSS?"
259
 
260
- #: inc/php/page.php:164
261
  msgid ""
262
  "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page. But you need "
263
  "to know the HTML or CSS in order to add/remove/modify the HTML or CSS code by using this plugin."
264
  msgstr ""
265
 
266
- #: inc/php/page.php:166
267
  msgid "It's not working. What could be wrong?"
268
  msgstr "No funciona. ¿Qué podría estar mal?"
269
 
270
- #: inc/php/page.php:167
271
  msgid ""
272
  "As with every plugin, it's possible that things don't work. The most common reason for this is a web browser's cache. "
273
  "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server "
@@ -278,7 +278,7 @@ msgstr ""
278
  "reducir el uso del ancho de banda y la carga del servidor. Esto se denomina caché del navegador. Limpiar la caché del "
279
  "navegador puede resolver el problema."
280
 
281
- #: inc/php/page.php:168
282
  msgid ""
283
  "It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's support forum on "
284
  "WordPress.org, I'd be happy to give it a look and try to help out. Please include as much information as possible, "
@@ -288,11 +288,11 @@ msgstr ""
288
  "del complemento en WordPress.org, estaría encantado de darle un vistazo e intentar ayudarte. Incluye tanta información "
289
  "como sea posible, incluyendo un enlace a tu sitio web donde se pueda ver el problema."
290
 
291
- #: inc/php/page.php:170
292
  msgid "What to do if this plugin crashed the website?"
293
  msgstr ""
294
 
295
- #: inc/php/page.php:171
296
  msgid ""
297
  "This plugin has a built-in functions for checking the custom code for syntax errors, duplicate functions names, and etc. "
298
  "But plugin is not perfect, so there are times when the entered custom code causes the error and white screen (WSOD). This "
@@ -300,36 +300,36 @@ msgid ""
300
  "just do the following and all will be fine."
301
  msgstr ""
302
 
303
- #: inc/php/page.php:173
304
  msgid "Via FTP, go to the plugin folder (in <code>wp-content/plugins/my-custom-functions/</code>)."
305
  msgstr ""
306
 
307
- #: inc/php/page.php:174
308
  msgid "Rename the \"START\" file to \"STOP\". This will stop the execution of your custom code."
309
  msgstr ""
310
 
311
- #: inc/php/page.php:175
312
  msgid "Return to the plugin settings page and edit/fix your custom code that you entered before the crash."
313
  msgstr ""
314
 
315
- #: inc/php/page.php:176
316
  msgid "Rename the \"STOP\" file to \"START\" and you're done!"
317
  msgstr ""
318
 
319
- #: inc/php/page.php:178
320
  msgid ""
321
  "This plugin stored you entered code in the database of your website. For getting your code, you also can go to the "
322
  "<code>Database</code> &#10145; Table <code>wp_options</code> &#10145; Option <code>anarcho_cfunctions_settings</code> "
323
  "&#10145; <code>option_value</code>."
324
  msgstr ""
325
 
326
- #: inc/php/page.php:180
327
  msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
328
  msgstr ""
329
  "La última actualización de WordPress me impide editar mi sitio web que está utilizando este complemento. ¿Porqué sucede "
330
  "esto?"
331
 
332
- #: inc/php/page.php:181
333
  msgid ""
334
  "This plugin can not cause such problem. More likely, the problem are related to the settings of the website. It could "
335
  "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 "
@@ -340,29 +340,29 @@ msgstr ""
340
  "complemento de caché o algún servicio web como CloudFlare) y luego la caché de tu navegador web. También intenta volver a "
341
  "conectarte al sitio web, esto también puede ayudar."
342
 
343
- #: inc/php/page.php:183
344
  msgid "Where to report bug if found?"
345
  msgstr "¿Dónde informar el error si se encuentra?"
346
 
347
- #: inc/php/page.php:185
348
  #, php-format
349
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
350
  msgstr "Visita la página dedicada del complemento %s en GitHub %s e informa."
351
 
352
- #: inc/php/page.php:191
353
  msgid "Where to share any ideas or suggestions to make the plugin better?"
354
  msgstr "¿Dónde compartir ideas o sugerencias para mejorar el complemento?"
355
 
356
- #: inc/php/page.php:193
357
  #, php-format
358
  msgid "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
359
  msgstr "¡Cualquier sugerencia es muy bienvenida! Por favor envíame un correo electrónico a %s. ¡Muchas Gracias!"
360
 
361
- #: inc/php/page.php:198
362
  msgid "I love this plugin! Can I help somehow?"
363
  msgstr "Me encanta este complemento! ¿Puedo ayudar de alguna manera?"
364
 
365
- #: inc/php/page.php:200
366
  #, php-format
367
  msgid ""
368
  "Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate button, and thank you!"
@@ -370,11 +370,11 @@ msgstr ""
370
  "Sí, cualquier contribución financiera es bienvenida! Simplemente visita %s mi sitio web %s, has clic en el botón DONAR y "
371
  "gracias!"
372
 
373
- #: inc/php/page.php:206
374
  msgid "My question wasn't answered here."
375
  msgstr "Mi pregunta no fue contestada aquí."
376
 
377
- #: inc/php/page.php:208
378
  #, php-format
379
  msgid ""
380
  "You can ask your question on the plugin support page %s. But please keep in mind that this plugin is free, and there is "
@@ -383,11 +383,26 @@ msgstr ""
383
  "Puede hacer tu pregunta en la página de soporte del complementos %s. Pero ten en cuenta que este complemento es gratuito, "
384
  "y no hay un equipo de soporte especial, así que no tengo forma de responder a todos."
385
 
386
- #: inc/php/page.php:224
387
- msgid "If you appreciate my work, you can buy me a coffee!"
388
  msgstr ""
389
 
390
- #: inc/php/page.php:225
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
391
  msgid ""
392
  "I spend a lot of time and effort trying to make sure that the themes, plugins and other things I build are useful, and "
393
  "the ultimate proof of that for me is that you actually want to use them. But, I’m an independent developer, without a "
@@ -395,11 +410,11 @@ msgid ""
395
  "like you to enjoy."
396
  msgstr ""
397
 
398
- #: inc/php/page.php:230 inc/php/settings.php:50 inc/php/sidebar.php:39
399
- msgid "Donate with PayPal"
400
- msgstr "Donar con PayPal"
401
 
402
- #: inc/php/page.php:232
403
  msgid "Thank you for your support!"
404
  msgstr "¡Gracias por tu apoyo!"
405
 
@@ -467,6 +482,12 @@ msgstr "Arthur Gareginyan"
467
  msgid "https://www.arthurgareginyan.com"
468
  msgstr "https://www.arthurgareginyan.com"
469
 
 
 
 
 
 
 
470
  #~ msgid "by <a href=\"https://www.arthurgareginyan.com\" target=\"_blank\">Arthur Gareginyan</a>"
471
  #~ msgstr "por <a href=“https://www.arthurgareginyan.com” target=“_blank”>Arthur Gareginyan</a>"
472
 
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Plugins - My Custom Functions - Development Readme (trunk)\n"
6
+ "POT-Creation-Date: 2017-09-15 14:26+0300\n"
7
+ "PO-Revision-Date: 2017-09-15 14:26+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "Language: es\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
+ #: inc/php/core.php:23
25
  msgid "Settings"
26
  msgstr "Ajustes"
27
 
28
+ #: inc/php/core.php:33 inc/php/core.php:48
29
  msgid "Upgrade to PRO"
30
  msgstr ""
31
 
32
+ #: inc/php/core.php:47
33
  msgid "Donate"
34
  msgstr "Donar"
35
 
36
+ #: inc/php/core.php:84
37
+ msgid "PHP Inserter"
38
+ msgstr "PHP Inserter"
39
 
40
  #: inc/php/messages.php:26
41
  msgid "Hello. I'm Arthur, the author of this plugin."
68
 
69
  #: inc/php/page.php:32
70
  #, php-format
71
+ msgid "by %s Space X-Chimp Studio %s"
72
+ msgstr ""
73
 
74
  #: inc/php/page.php:38
75
  msgid "Version"
79
  msgid "Main"
80
  msgstr "Principal"
81
 
82
+ #: inc/php/page.php:46
83
  msgid "Usage"
84
  msgstr "Uso"
85
 
87
  msgid "F.A.Q."
88
  msgstr "Preguntas ?"
89
 
90
+ #: inc/php/page.php:48 inc/php/settings.php:43 inc/php/sidebar.php:32
91
  msgid "Support"
92
  msgstr "Soporte"
93
 
94
+ #: inc/php/page.php:49
 
 
 
 
95
  msgid "Store"
96
  msgstr "Tienda"
97
 
98
+ #: inc/php/page.php:65
99
+ msgid "Usage Instructions"
100
+ msgstr ""
101
+
102
+ #: inc/php/page.php:67
103
  msgid "To add your custom functions (the PHP code) to your website, simply follow these steps:"
104
  msgstr ""
105
 
106
+ #: inc/php/page.php:69
107
  msgid "Go to the \"Main\" tab."
108
  msgstr "Debes ir a la pestaña “Principal”."
109
 
110
+ #: inc/php/page.php:70
111
  msgid "Place your PHP code in the field."
112
  msgstr ""
113
 
114
+ #: inc/php/page.php:71
115
  msgid "Example of PHP code:"
116
  msgstr ""
117
 
118
+ #: inc/php/page.php:77 inc/php/page.php:78 inc/php/page.php:84
119
  msgid "Note!"
120
  msgstr "¡Nota!"
121
 
122
+ #: inc/php/page.php:77
123
  msgid "Please do not wrap your PHP code in the <code>&lt;?php</code>...<code>?&gt;</code> HTML tags."
124
  msgstr ""
125
 
126
+ #: inc/php/page.php:78
127
  msgid "Before use, please read the instructions on the F.A.Q. tab on what to do in case of a website crash."
128
  msgstr ""
129
 
130
+ #: inc/php/page.php:80
131
  msgid "Switch the toggle to the \"ON\" position."
132
  msgstr ""
133
 
134
+ #: inc/php/page.php:81
135
  msgid "Click the \"Save changes\" button."
136
  msgstr "Clic en el botón \"Guardar Cambios\"."
137
 
138
+ #: inc/php/page.php:82
139
  msgid "Enjoy the result of applying your PHP code."
140
  msgstr ""
141
 
142
+ #: inc/php/page.php:82
143
  msgid "It's that simple!"
144
  msgstr "¡Es así de simple!"
145
 
146
+ #: inc/php/page.php:84
147
  msgid "If you want more options then tell me and I will be happy to add it."
148
  msgstr "Si quieres más opciones, dímelo y estaré encantado de añadirlo."
149
 
150
+ #: inc/php/page.php:93
151
  msgid "Frequently Asked Questions"
152
  msgstr "Preguntas Frecuentes"
153
 
154
+ #: inc/php/page.php:97
155
  msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
156
  msgstr ""
157
  "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:119
160
  msgid "Will this plugin work on my WordPress.COM website?"
161
  msgstr "¿Funcionará este complemento en mi sitio web WordPress.COM?"
162
 
163
+ #: inc/php/page.php:120
164
  msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
165
  msgstr "Lo sentimos, este complemento está disponible para su uso solo en sitios web alojados (WordPress.ORG)."
166
 
167
+ #: inc/php/page.php:122
168
  msgid "Can I use this plugin on my language?"
169
  msgstr "¿Puedo usar este complemento en mi idioma?"
170
 
171
+ #: inc/php/page.php:123
172
  msgid "Yes. This plugin is ready for translation and has already been translated into several languages."
173
  msgstr "Sí. Este complemento está listo para ser traducido y ya ha sido traducido a varios idiomas."
174
 
175
+ #: inc/php/page.php:125
176
  #, php-format
177
  msgid ""
178
  "If you want to help translate this plugin then please visit the %s. You can also use the POT file, that is included and "
183
  "en la carpeta \"languages\", para crear un archivo PO de traducción. Simplemente envíeme el archivo PO en el %s e "
184
  "incluiré esta traducción en la siguiente actualización del complemento."
185
 
186
+ #: inc/php/page.php:130
187
  msgid "Maybe not all existed translations are up to date. You are welcome to contribute corrections!"
188
  msgstr "Quizás no todas las traducciones existentes estén actualizadas. Le invitamos a contribuir correcciones!"
189
 
190
+ #: inc/php/page.php:131
191
  msgid ""
192
  "Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!"
193
  msgstr ""
194
  "Muchos de los usuarios de este complemento estarían encantados si compartes tu traducción con la comunidad. ¡Gracias por "
195
  "tu contribución!"
196
 
197
+ #: inc/php/page.php:133
198
  msgid "How does it work?"
199
  msgstr "¿Como funciona?"
200
 
201
+ #: inc/php/page.php:134
202
  msgid ""
203
  "On the \"Main\" tab, place your PHP code in the field, switch the toggle to the \"ON\" position and click the \"Save "
204
  "changes\" button. Enjoy the result of applying your PHP code. It's that simple!"
205
  msgstr ""
206
 
207
+ #: inc/php/page.php:136
208
  msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
209
  msgstr ""
210
 
211
+ #: inc/php/page.php:137
212
  msgid "Yes. But you need to do it properly, like this:"
213
  msgstr ""
214
 
215
+ #: inc/php/page.php:147
216
  msgid "How much of PHP code (characters) I can enter in the text field?"
217
  msgstr ""
218
 
219
+ #: inc/php/page.php:148
220
  msgid "I don't limit the number of characters."
221
  msgstr ""
222
 
223
+ #: inc/php/page.php:150
224
  msgid "On the plugin settings page, an error message appears. What could be wrong?"
225
  msgstr ""
226
 
227
+ #: inc/php/page.php:151
228
  msgid "Here are a few of the most likely causes of the error message:"
229
  msgstr ""
230
 
231
+ #: inc/php/page.php:153
232
  msgid "You make a syntax error in the code that you have entered. Check the syntax of your code and try again."
233
  msgstr ""
234
 
235
+ #: inc/php/page.php:154
236
  msgid "You entered two functions with the same name. Use a unique names for your functions."
237
  msgstr ""
238
 
239
+ #: inc/php/page.php:155
240
  msgid ""
241
  "You have entered function with a name that is already occupied by another function. Use a unique name for your function."
242
  msgstr ""
243
 
244
+ #: inc/php/page.php:156
245
  msgid "You are trying to overwrite an existing function (of WordPress, theme, or plugin). Instead, use filters and hooks."
246
  msgstr ""
247
 
248
+ #: inc/php/page.php:159
249
  msgid "Does this plugin requires any modification of the theme?"
250
  msgstr "¿Este complemento requiere alguna modificación del tema?"
251
 
252
+ #: inc/php/page.php:160
253
  msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
254
  msgstr "Absolutamente NO. Este complemento se puede configurar completamente desde su página de configuración."
255
 
256
+ #: inc/php/page.php:162
257
  msgid "Does this require any knowledge of HTML or CSS?"
258
  msgstr "¿Esto requiere algún conocimiento de HTML o CSS?"
259
 
260
+ #: inc/php/page.php:163
261
  msgid ""
262
  "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page. But you need "
263
  "to know the HTML or CSS in order to add/remove/modify the HTML or CSS code by using this plugin."
264
  msgstr ""
265
 
266
+ #: inc/php/page.php:165
267
  msgid "It's not working. What could be wrong?"
268
  msgstr "No funciona. ¿Qué podría estar mal?"
269
 
270
+ #: inc/php/page.php:166
271
  msgid ""
272
  "As with every plugin, it's possible that things don't work. The most common reason for this is a web browser's cache. "
273
  "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server "
278
  "reducir el uso del ancho de banda y la carga del servidor. Esto se denomina caché del navegador. Limpiar la caché del "
279
  "navegador puede resolver el problema."
280
 
281
+ #: inc/php/page.php:167
282
  msgid ""
283
  "It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's support forum on "
284
  "WordPress.org, I'd be happy to give it a look and try to help out. Please include as much information as possible, "
288
  "del complemento en WordPress.org, estaría encantado de darle un vistazo e intentar ayudarte. Incluye tanta información "
289
  "como sea posible, incluyendo un enlace a tu sitio web donde se pueda ver el problema."
290
 
291
+ #: inc/php/page.php:169
292
  msgid "What to do if this plugin crashed the website?"
293
  msgstr ""
294
 
295
+ #: inc/php/page.php:170
296
  msgid ""
297
  "This plugin has a built-in functions for checking the custom code for syntax errors, duplicate functions names, and etc. "
298
  "But plugin is not perfect, so there are times when the entered custom code causes the error and white screen (WSOD). This "
300
  "just do the following and all will be fine."
301
  msgstr ""
302
 
303
+ #: inc/php/page.php:172
304
  msgid "Via FTP, go to the plugin folder (in <code>wp-content/plugins/my-custom-functions/</code>)."
305
  msgstr ""
306
 
307
+ #: inc/php/page.php:173
308
  msgid "Rename the \"START\" file to \"STOP\". This will stop the execution of your custom code."
309
  msgstr ""
310
 
311
+ #: inc/php/page.php:174
312
  msgid "Return to the plugin settings page and edit/fix your custom code that you entered before the crash."
313
  msgstr ""
314
 
315
+ #: inc/php/page.php:175
316
  msgid "Rename the \"STOP\" file to \"START\" and you're done!"
317
  msgstr ""
318
 
319
+ #: inc/php/page.php:177
320
  msgid ""
321
  "This plugin stored you entered code in the database of your website. For getting your code, you also can go to the "
322
  "<code>Database</code> &#10145; Table <code>wp_options</code> &#10145; Option <code>anarcho_cfunctions_settings</code> "
323
  "&#10145; <code>option_value</code>."
324
  msgstr ""
325
 
326
+ #: inc/php/page.php:179
327
  msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
328
  msgstr ""
329
  "La última actualización de WordPress me impide editar mi sitio web que está utilizando este complemento. ¿Porqué sucede "
330
  "esto?"
331
 
332
+ #: inc/php/page.php:180
333
  msgid ""
334
  "This plugin can not cause such problem. More likely, the problem are related to the settings of the website. It could "
335
  "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 "
340
  "complemento de caché o algún servicio web como CloudFlare) y luego la caché de tu navegador web. También intenta volver a "
341
  "conectarte al sitio web, esto también puede ayudar."
342
 
343
+ #: inc/php/page.php:182
344
  msgid "Where to report bug if found?"
345
  msgstr "¿Dónde informar el error si se encuentra?"
346
 
347
+ #: inc/php/page.php:184
348
  #, php-format
349
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
350
  msgstr "Visita la página dedicada del complemento %s en GitHub %s e informa."
351
 
352
+ #: inc/php/page.php:190
353
  msgid "Where to share any ideas or suggestions to make the plugin better?"
354
  msgstr "¿Dónde compartir ideas o sugerencias para mejorar el complemento?"
355
 
356
+ #: inc/php/page.php:192
357
  #, php-format
358
  msgid "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
359
  msgstr "¡Cualquier sugerencia es muy bienvenida! Por favor envíame un correo electrónico a %s. ¡Muchas Gracias!"
360
 
361
+ #: inc/php/page.php:197
362
  msgid "I love this plugin! Can I help somehow?"
363
  msgstr "Me encanta este complemento! ¿Puedo ayudar de alguna manera?"
364
 
365
+ #: inc/php/page.php:199
366
  #, php-format
367
  msgid ""
368
  "Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate button, and thank you!"
370
  "Sí, cualquier contribución financiera es bienvenida! Simplemente visita %s mi sitio web %s, has clic en el botón DONAR y "
371
  "gracias!"
372
 
373
+ #: inc/php/page.php:205
374
  msgid "My question wasn't answered here."
375
  msgstr "Mi pregunta no fue contestada aquí."
376
 
377
+ #: inc/php/page.php:207
378
  #, php-format
379
  msgid ""
380
  "You can ask your question on the plugin support page %s. But please keep in mind that this plugin is free, and there is "
383
  "Puede hacer tu pregunta en la página de soporte del complementos %s. Pero ten en cuenta que este complemento es gratuito, "
384
  "y no hay un equipo de soporte especial, así que no tengo forma de responder a todos."
385
 
386
+ #: inc/php/page.php:220
387
+ msgid "Support Me"
388
  msgstr ""
389
 
390
+ #: inc/php/page.php:228 inc/php/settings.php:50 inc/php/sidebar.php:39
391
+ msgid "Donate with PayPal"
392
+ msgstr "Donar con PayPal"
393
+
394
+ #: inc/php/page.php:233
395
+ #, php-format
396
+ msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp Studio %s."
397
+ msgstr ""
398
+
399
+ #: inc/php/page.php:241
400
+ msgid ""
401
+ "My intention is to create projects that will make this world a better place. I'm really passionate about my work, I like "
402
+ "what I'm doing and hope that you will be enriched by my projects too."
403
+ msgstr ""
404
+
405
+ #: inc/php/page.php:242
406
  msgid ""
407
  "I spend a lot of time and effort trying to make sure that the themes, plugins and other things I build are useful, and "
408
  "the ultimate proof of that for me is that you actually want to use them. But, I’m an independent developer, without a "
410
  "like you to enjoy."
411
  msgstr ""
412
 
413
+ #: inc/php/page.php:243
414
+ msgid "If you appreciate my work, you can buy me a coffee!"
415
+ msgstr ""
416
 
417
+ #: inc/php/page.php:244
418
  msgid "Thank you for your support!"
419
  msgstr "¡Gracias por tu apoyo!"
420
 
482
  msgid "https://www.arthurgareginyan.com"
483
  msgstr "https://www.arthurgareginyan.com"
484
 
485
+ #~ msgid "by %s Arthur Gareginyan %s"
486
+ #~ msgstr "por %s Arthur Gareginyan %s"
487
+
488
+ #~ msgid "Author"
489
+ #~ msgstr "Autor"
490
+
491
  #~ msgid "by <a href=\"https://www.arthurgareginyan.com\" target=\"_blank\">Arthur Gareginyan</a>"
492
  #~ msgstr "por <a href=“https://www.arthurgareginyan.com” target=“_blank”>Arthur Gareginyan</a>"
493
 
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-08-29 21:28+0300\n"
5
- "PO-Revision-Date: 2017-08-29 21:28+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: fr_FR\n"
@@ -20,21 +20,21 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
 
23
- #: inc/php/core.php:26
24
  msgid "Settings"
25
  msgstr "Réglages"
26
 
27
- #: inc/php/core.php:36 inc/php/core.php:51
28
  msgid "Upgrade to PRO"
29
  msgstr ""
30
 
31
- #: inc/php/core.php:50
32
  msgid "Donate"
33
  msgstr "Faire un don"
34
 
35
- #: inc/php/core.php:64
36
- msgid "Custom Functions"
37
- msgstr "Custom Functions"
38
 
39
  #: inc/php/messages.php:26
40
  msgid "Hello. I'm Arthur, the author of this plugin."
@@ -69,8 +69,8 @@ msgstr "Svp, vérifiez le code et réessayez."
69
 
70
  #: inc/php/page.php:32
71
  #, php-format
72
- msgid "by %s Arthur Gareginyan %s"
73
- msgstr "par %s Arthur Gareginyan %s"
74
 
75
  #: inc/php/page.php:38
76
  msgid "Version"
@@ -80,7 +80,7 @@ msgstr ""
80
  msgid "Main"
81
  msgstr ""
82
 
83
- #: inc/php/page.php:46 inc/php/page.php:66
84
  msgid "Usage"
85
  msgstr ""
86
 
@@ -88,104 +88,103 @@ msgstr ""
88
  msgid "F.A.Q."
89
  msgstr ""
90
 
91
- #: inc/php/page.php:48 inc/php/page.php:221 inc/php/settings.php:43
92
- #: inc/php/sidebar.php:32
93
  msgid "Support"
94
  msgstr ""
95
 
96
- #: inc/php/page.php:49 inc/php/page.php:241
97
- msgid "Author"
98
  msgstr ""
99
 
100
- #: inc/php/page.php:50
101
- msgid "Store"
102
  msgstr ""
103
 
104
- #: inc/php/page.php:68
105
  msgid ""
106
  "To add your custom functions (the PHP code) to your website, simply follow "
107
  "these steps:"
108
  msgstr ""
109
 
110
- #: inc/php/page.php:70
111
  msgid "Go to the \"Main\" tab."
112
  msgstr ""
113
 
114
- #: inc/php/page.php:71
115
  msgid "Place your PHP code in the field."
116
  msgstr ""
117
 
118
- #: inc/php/page.php:72
119
  msgid "Example of PHP code:"
120
  msgstr ""
121
 
122
- #: inc/php/page.php:78 inc/php/page.php:79 inc/php/page.php:85
123
  msgid "Note!"
124
  msgstr ""
125
 
126
- #: inc/php/page.php:78
127
  msgid ""
128
  "Please do not wrap your PHP code in the <code>&lt;?php</code>...<code>?&gt;</"
129
  "code> HTML tags."
130
  msgstr ""
131
 
132
- #: inc/php/page.php:79
133
  msgid ""
134
  "Before use, please read the instructions on the F.A.Q. tab on what to do in "
135
  "case of a website crash."
136
  msgstr ""
137
 
138
- #: inc/php/page.php:81
139
  msgid "Switch the toggle to the \"ON\" position."
140
  msgstr ""
141
 
142
- #: inc/php/page.php:82
143
  msgid "Click the \"Save changes\" button."
144
  msgstr ""
145
 
146
- #: inc/php/page.php:83
147
  msgid "Enjoy the result of applying your PHP code."
148
  msgstr ""
149
 
150
- #: inc/php/page.php:83
151
  msgid "It's that simple!"
152
  msgstr ""
153
 
154
- #: inc/php/page.php:85
155
  msgid "If you want more options then tell me and I will be happy to add it."
156
  msgstr ""
157
 
158
- #: inc/php/page.php:94
159
  msgid "Frequently Asked Questions"
160
  msgstr ""
161
 
162
- #: inc/php/page.php:98
163
  msgid ""
164
  "If you have a question, please read the Frequently Asked Questions below to "
165
  "see if the answer is here."
166
  msgstr ""
167
 
168
- #: inc/php/page.php:120
169
  msgid "Will this plugin work on my WordPress.COM website?"
170
  msgstr ""
171
 
172
- #: inc/php/page.php:121
173
  msgid ""
174
  "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) "
175
  "websites."
176
  msgstr ""
177
 
178
- #: inc/php/page.php:123
179
  msgid "Can I use this plugin on my language?"
180
  msgstr ""
181
 
182
- #: inc/php/page.php:124
183
  msgid ""
184
  "Yes. This plugin is ready for translation and has already been translated "
185
  "into several languages."
186
  msgstr ""
187
 
188
- #: inc/php/page.php:126
189
  #, php-format
190
  msgid ""
191
  "If you want to help translate this plugin then please visit the %s. You can "
@@ -195,104 +194,104 @@ msgid ""
195
  "update."
196
  msgstr ""
197
 
198
- #: inc/php/page.php:131
199
  msgid ""
200
  "Maybe not all existed translations are up to date. You are welcome to "
201
  "contribute corrections!"
202
  msgstr ""
203
 
204
- #: inc/php/page.php:132
205
  msgid ""
206
  "Many of plugin users would be delighted if you share your translation with "
207
  "the community. Thanks for your contribution!"
208
  msgstr ""
209
 
210
- #: inc/php/page.php:134
211
  msgid "How does it work?"
212
  msgstr ""
213
 
214
- #: inc/php/page.php:135
215
  msgid ""
216
  "On the \"Main\" tab, place your PHP code in the field, switch the toggle to "
217
  "the \"ON\" position and click the \"Save changes\" button. Enjoy the result "
218
  "of applying your PHP code. It's that simple!"
219
  msgstr ""
220
 
221
- #: inc/php/page.php:137
222
  msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
223
  msgstr ""
224
 
225
- #: inc/php/page.php:138
226
  msgid "Yes. But you need to do it properly, like this:"
227
  msgstr ""
228
 
229
- #: inc/php/page.php:148
230
  msgid "How much of PHP code (characters) I can enter in the text field?"
231
  msgstr ""
232
 
233
- #: inc/php/page.php:149
234
  msgid "I don't limit the number of characters."
235
  msgstr ""
236
 
237
- #: inc/php/page.php:151
238
  msgid ""
239
  "On the plugin settings page, an error message appears. What could be wrong?"
240
  msgstr ""
241
 
242
- #: inc/php/page.php:152
243
  msgid "Here are a few of the most likely causes of the error message:"
244
  msgstr ""
245
 
246
- #: inc/php/page.php:154
247
  msgid ""
248
  "You make a syntax error in the code that you have entered. Check the syntax "
249
  "of your code and try again."
250
  msgstr ""
251
 
252
- #: inc/php/page.php:155
253
  msgid ""
254
  "You entered two functions with the same name. Use a unique names for your "
255
  "functions."
256
  msgstr ""
257
 
258
- #: inc/php/page.php:156
259
  msgid ""
260
  "You have entered function with a name that is already occupied by another "
261
  "function. Use a unique name for your function."
262
  msgstr ""
263
 
264
- #: inc/php/page.php:157
265
  msgid ""
266
  "You are trying to overwrite an existing function (of WordPress, theme, or "
267
  "plugin). Instead, use filters and hooks."
268
  msgstr ""
269
 
270
- #: inc/php/page.php:160
271
  msgid "Does this plugin requires any modification of the theme?"
272
  msgstr ""
273
 
274
- #: inc/php/page.php:161
275
  msgid ""
276
  "Absolutely not. This plugin is configurable entirely from the plugin "
277
  "settings page."
278
  msgstr ""
279
 
280
- #: inc/php/page.php:163
281
  msgid "Does this require any knowledge of HTML or CSS?"
282
  msgstr ""
283
 
284
- #: inc/php/page.php:164
285
  msgid ""
286
  "This plugin can be configured with no knowledge of HTML or CSS, using an "
287
  "easy-to-use plugin settings page. But you need to know the HTML or CSS in "
288
  "order to add/remove/modify the HTML or CSS code by using this plugin."
289
  msgstr ""
290
 
291
- #: inc/php/page.php:166
292
  msgid "It's not working. What could be wrong?"
293
  msgstr ""
294
 
295
- #: inc/php/page.php:167
296
  msgid ""
297
  "As with every plugin, it's possible that things don't work. The most common "
298
  "reason for this is a web browser's cache. Every web browser stores a cache "
@@ -301,7 +300,7 @@ msgid ""
301
  "browser's cache may solve the problem."
302
  msgstr ""
303
 
304
- #: inc/php/page.php:168
305
  msgid ""
306
  "It's impossible to tell what could be wrong exactly, but if you post a "
307
  "support request in the plugin's support forum on WordPress.org, I'd be happy "
@@ -309,11 +308,11 @@ msgid ""
309
  "possible, including a link to your website where the problem can be seen."
310
  msgstr ""
311
 
312
- #: inc/php/page.php:170
313
  msgid "What to do if this plugin crashed the website?"
314
  msgstr ""
315
 
316
- #: inc/php/page.php:171
317
  msgid ""
318
  "This plugin has a built-in functions for checking the custom code for syntax "
319
  "errors, duplicate functions names, and etc. But plugin is not perfect, so "
@@ -323,29 +322,29 @@ msgid ""
323
  "the following and all will be fine."
324
  msgstr ""
325
 
326
- #: inc/php/page.php:173
327
  msgid ""
328
  "Via FTP, go to the plugin folder (in <code>wp-content/plugins/my-custom-"
329
  "functions/</code>)."
330
  msgstr ""
331
 
332
- #: inc/php/page.php:174
333
  msgid ""
334
  "Rename the \"START\" file to \"STOP\". This will stop the execution of your "
335
  "custom code."
336
  msgstr ""
337
 
338
- #: inc/php/page.php:175
339
  msgid ""
340
  "Return to the plugin settings page and edit/fix your custom code that you "
341
  "entered before the crash."
342
  msgstr ""
343
 
344
- #: inc/php/page.php:176
345
  msgid "Rename the \"STOP\" file to \"START\" and you're done!"
346
  msgstr ""
347
 
348
- #: inc/php/page.php:178
349
  msgid ""
350
  "This plugin stored you entered code in the database of your website. For "
351
  "getting your code, you also can go to the <code>Database</code> &#10145; "
@@ -353,13 +352,13 @@ msgid ""
353
  "<code>anarcho_cfunctions_settings</code> &#10145; <code>option_value</code>."
354
  msgstr ""
355
 
356
- #: inc/php/page.php:180
357
  msgid ""
358
  "The last WordPress update is preventing me from editing my website that is "
359
  "using this plugin. Why is this?"
360
  msgstr ""
361
 
362
- #: inc/php/page.php:181
363
  msgid ""
364
  "This plugin can not cause such problem. More likely, the problem are related "
365
  "to the settings of the website. It could just be a cache, so please try to "
@@ -368,41 +367,41 @@ msgid ""
368
  "please try to re-login to the website, this too can help."
369
  msgstr ""
370
 
371
- #: inc/php/page.php:183
372
  msgid "Where to report bug if found?"
373
  msgstr ""
374
 
375
- #: inc/php/page.php:185
376
  #, php-format
377
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
378
  msgstr ""
379
 
380
- #: inc/php/page.php:191
381
  msgid "Where to share any ideas or suggestions to make the plugin better?"
382
  msgstr ""
383
 
384
- #: inc/php/page.php:193
385
  #, php-format
386
  msgid ""
387
  "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
388
  msgstr ""
389
 
390
- #: inc/php/page.php:198
391
  msgid "I love this plugin! Can I help somehow?"
392
  msgstr ""
393
 
394
- #: inc/php/page.php:200
395
  #, php-format
396
  msgid ""
397
  "Yes, any financial contributions are welcome! Just visit %s my website %s, "
398
  "click on the donate button, and thank you!"
399
  msgstr ""
400
 
401
- #: inc/php/page.php:206
402
  msgid "My question wasn't answered here."
403
  msgstr ""
404
 
405
- #: inc/php/page.php:208
406
  #, php-format
407
  msgid ""
408
  "You can ask your question on the plugin support page %s. But please keep in "
@@ -410,11 +409,29 @@ msgid ""
410
  "have no way to answer everyone."
411
  msgstr ""
412
 
413
- #: inc/php/page.php:224
414
- msgid "If you appreciate my work, you can buy me a coffee!"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
415
  msgstr ""
416
 
417
- #: inc/php/page.php:225
418
  msgid ""
419
  "I spend a lot of time and effort trying to make sure that the themes, "
420
  "plugins and other things I build are useful, and the ultimate proof of that "
@@ -424,11 +441,11 @@ msgid ""
424
  "you to enjoy."
425
  msgstr ""
426
 
427
- #: inc/php/page.php:230 inc/php/settings.php:50 inc/php/sidebar.php:39
428
- msgid "Donate with PayPal"
429
  msgstr ""
430
 
431
- #: inc/php/page.php:232
432
  msgid "Thank you for your support!"
433
  msgstr ""
434
 
@@ -502,6 +519,12 @@ msgstr "Arthur Gareginyan"
502
  msgid "https://www.arthurgareginyan.com"
503
  msgstr "https://www.arthurgareginyan.com"
504
 
 
 
 
 
 
 
505
  #~ msgid ""
506
  #~ "This plugin allows you to easily and safely add your custom functions "
507
  #~ "(PHP code) to your website."
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: My Custom Functions\n"
4
+ "POT-Creation-Date: 2017-09-15 14:26+0300\n"
5
+ "PO-Revision-Date: 2017-09-15 14:26+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: fr_FR\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:84
36
+ msgid "PHP Inserter"
37
+ msgstr "PHP Inserter"
38
 
39
  #: inc/php/messages.php:26
40
  msgid "Hello. I'm Arthur, the author of this plugin."
69
 
70
  #: inc/php/page.php:32
71
  #, php-format
72
+ msgid "by %s Space X-Chimp Studio %s"
73
+ msgstr ""
74
 
75
  #: inc/php/page.php:38
76
  msgid "Version"
80
  msgid "Main"
81
  msgstr ""
82
 
83
+ #: inc/php/page.php:46
84
  msgid "Usage"
85
  msgstr ""
86
 
88
  msgid "F.A.Q."
89
  msgstr ""
90
 
91
+ #: inc/php/page.php:48 inc/php/settings.php:43 inc/php/sidebar.php:32
 
92
  msgid "Support"
93
  msgstr ""
94
 
95
+ #: inc/php/page.php:49
96
+ msgid "Store"
97
  msgstr ""
98
 
99
+ #: inc/php/page.php:65
100
+ msgid "Usage Instructions"
101
  msgstr ""
102
 
103
+ #: inc/php/page.php:67
104
  msgid ""
105
  "To add your custom functions (the PHP code) to your website, simply follow "
106
  "these steps:"
107
  msgstr ""
108
 
109
+ #: inc/php/page.php:69
110
  msgid "Go to the \"Main\" tab."
111
  msgstr ""
112
 
113
+ #: inc/php/page.php:70
114
  msgid "Place your PHP code in the field."
115
  msgstr ""
116
 
117
+ #: inc/php/page.php:71
118
  msgid "Example of PHP code:"
119
  msgstr ""
120
 
121
+ #: inc/php/page.php:77 inc/php/page.php:78 inc/php/page.php:84
122
  msgid "Note!"
123
  msgstr ""
124
 
125
+ #: inc/php/page.php:77
126
  msgid ""
127
  "Please do not wrap your PHP code in the <code>&lt;?php</code>...<code>?&gt;</"
128
  "code> HTML tags."
129
  msgstr ""
130
 
131
+ #: inc/php/page.php:78
132
  msgid ""
133
  "Before use, please read the instructions on the F.A.Q. tab on what to do in "
134
  "case of a website crash."
135
  msgstr ""
136
 
137
+ #: inc/php/page.php:80
138
  msgid "Switch the toggle to the \"ON\" position."
139
  msgstr ""
140
 
141
+ #: inc/php/page.php:81
142
  msgid "Click the \"Save changes\" button."
143
  msgstr ""
144
 
145
+ #: inc/php/page.php:82
146
  msgid "Enjoy the result of applying your PHP code."
147
  msgstr ""
148
 
149
+ #: inc/php/page.php:82
150
  msgid "It's that simple!"
151
  msgstr ""
152
 
153
+ #: inc/php/page.php:84
154
  msgid "If you want more options then tell me and I will be happy to add it."
155
  msgstr ""
156
 
157
+ #: inc/php/page.php:93
158
  msgid "Frequently Asked Questions"
159
  msgstr ""
160
 
161
+ #: inc/php/page.php:97
162
  msgid ""
163
  "If you have a question, please read the Frequently Asked Questions below to "
164
  "see if the answer is here."
165
  msgstr ""
166
 
167
+ #: inc/php/page.php:119
168
  msgid "Will this plugin work on my WordPress.COM website?"
169
  msgstr ""
170
 
171
+ #: inc/php/page.php:120
172
  msgid ""
173
  "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) "
174
  "websites."
175
  msgstr ""
176
 
177
+ #: inc/php/page.php:122
178
  msgid "Can I use this plugin on my language?"
179
  msgstr ""
180
 
181
+ #: inc/php/page.php:123
182
  msgid ""
183
  "Yes. This plugin is ready for translation and has already been translated "
184
  "into several languages."
185
  msgstr ""
186
 
187
+ #: inc/php/page.php:125
188
  #, php-format
189
  msgid ""
190
  "If you want to help translate this plugin then please visit the %s. You can "
194
  "update."
195
  msgstr ""
196
 
197
+ #: inc/php/page.php:130
198
  msgid ""
199
  "Maybe not all existed translations are up to date. You are welcome to "
200
  "contribute corrections!"
201
  msgstr ""
202
 
203
+ #: inc/php/page.php:131
204
  msgid ""
205
  "Many of plugin users would be delighted if you share your translation with "
206
  "the community. Thanks for your contribution!"
207
  msgstr ""
208
 
209
+ #: inc/php/page.php:133
210
  msgid "How does it work?"
211
  msgstr ""
212
 
213
+ #: inc/php/page.php:134
214
  msgid ""
215
  "On the \"Main\" tab, place your PHP code in the field, switch the toggle to "
216
  "the \"ON\" position and click the \"Save changes\" button. Enjoy the result "
217
  "of applying your PHP code. It's that simple!"
218
  msgstr ""
219
 
220
+ #: inc/php/page.php:136
221
  msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
222
  msgstr ""
223
 
224
+ #: inc/php/page.php:137
225
  msgid "Yes. But you need to do it properly, like this:"
226
  msgstr ""
227
 
228
+ #: inc/php/page.php:147
229
  msgid "How much of PHP code (characters) I can enter in the text field?"
230
  msgstr ""
231
 
232
+ #: inc/php/page.php:148
233
  msgid "I don't limit the number of characters."
234
  msgstr ""
235
 
236
+ #: inc/php/page.php:150
237
  msgid ""
238
  "On the plugin settings page, an error message appears. What could be wrong?"
239
  msgstr ""
240
 
241
+ #: inc/php/page.php:151
242
  msgid "Here are a few of the most likely causes of the error message:"
243
  msgstr ""
244
 
245
+ #: inc/php/page.php:153
246
  msgid ""
247
  "You make a syntax error in the code that you have entered. Check the syntax "
248
  "of your code and try again."
249
  msgstr ""
250
 
251
+ #: inc/php/page.php:154
252
  msgid ""
253
  "You entered two functions with the same name. Use a unique names for your "
254
  "functions."
255
  msgstr ""
256
 
257
+ #: inc/php/page.php:155
258
  msgid ""
259
  "You have entered function with a name that is already occupied by another "
260
  "function. Use a unique name for your function."
261
  msgstr ""
262
 
263
+ #: inc/php/page.php:156
264
  msgid ""
265
  "You are trying to overwrite an existing function (of WordPress, theme, or "
266
  "plugin). Instead, use filters and hooks."
267
  msgstr ""
268
 
269
+ #: inc/php/page.php:159
270
  msgid "Does this plugin requires any modification of the theme?"
271
  msgstr ""
272
 
273
+ #: inc/php/page.php:160
274
  msgid ""
275
  "Absolutely not. This plugin is configurable entirely from the plugin "
276
  "settings page."
277
  msgstr ""
278
 
279
+ #: inc/php/page.php:162
280
  msgid "Does this require any knowledge of HTML or CSS?"
281
  msgstr ""
282
 
283
+ #: inc/php/page.php:163
284
  msgid ""
285
  "This plugin can be configured with no knowledge of HTML or CSS, using an "
286
  "easy-to-use plugin settings page. But you need to know the HTML or CSS in "
287
  "order to add/remove/modify the HTML or CSS code by using this plugin."
288
  msgstr ""
289
 
290
+ #: inc/php/page.php:165
291
  msgid "It's not working. What could be wrong?"
292
  msgstr ""
293
 
294
+ #: inc/php/page.php:166
295
  msgid ""
296
  "As with every plugin, it's possible that things don't work. The most common "
297
  "reason for this is a web browser's cache. Every web browser stores a cache "
300
  "browser's cache may solve the problem."
301
  msgstr ""
302
 
303
+ #: inc/php/page.php:167
304
  msgid ""
305
  "It's impossible to tell what could be wrong exactly, but if you post a "
306
  "support request in the plugin's support forum on WordPress.org, I'd be happy "
308
  "possible, including a link to your website where the problem can be seen."
309
  msgstr ""
310
 
311
+ #: inc/php/page.php:169
312
  msgid "What to do if this plugin crashed the website?"
313
  msgstr ""
314
 
315
+ #: inc/php/page.php:170
316
  msgid ""
317
  "This plugin has a built-in functions for checking the custom code for syntax "
318
  "errors, duplicate functions names, and etc. But plugin is not perfect, so "
322
  "the following and all will be fine."
323
  msgstr ""
324
 
325
+ #: inc/php/page.php:172
326
  msgid ""
327
  "Via FTP, go to the plugin folder (in <code>wp-content/plugins/my-custom-"
328
  "functions/</code>)."
329
  msgstr ""
330
 
331
+ #: inc/php/page.php:173
332
  msgid ""
333
  "Rename the \"START\" file to \"STOP\". This will stop the execution of your "
334
  "custom code."
335
  msgstr ""
336
 
337
+ #: inc/php/page.php:174
338
  msgid ""
339
  "Return to the plugin settings page and edit/fix your custom code that you "
340
  "entered before the crash."
341
  msgstr ""
342
 
343
+ #: inc/php/page.php:175
344
  msgid "Rename the \"STOP\" file to \"START\" and you're done!"
345
  msgstr ""
346
 
347
+ #: inc/php/page.php:177
348
  msgid ""
349
  "This plugin stored you entered code in the database of your website. For "
350
  "getting your code, you also can go to the <code>Database</code> &#10145; "
352
  "<code>anarcho_cfunctions_settings</code> &#10145; <code>option_value</code>."
353
  msgstr ""
354
 
355
+ #: inc/php/page.php:179
356
  msgid ""
357
  "The last WordPress update is preventing me from editing my website that is "
358
  "using this plugin. Why is this?"
359
  msgstr ""
360
 
361
+ #: inc/php/page.php:180
362
  msgid ""
363
  "This plugin can not cause such problem. More likely, the problem are related "
364
  "to the settings of the website. It could just be a cache, so please try to "
367
  "please try to re-login to the website, this too can help."
368
  msgstr ""
369
 
370
+ #: inc/php/page.php:182
371
  msgid "Where to report bug if found?"
372
  msgstr ""
373
 
374
+ #: inc/php/page.php:184
375
  #, php-format
376
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
377
  msgstr ""
378
 
379
+ #: inc/php/page.php:190
380
  msgid "Where to share any ideas or suggestions to make the plugin better?"
381
  msgstr ""
382
 
383
+ #: inc/php/page.php:192
384
  #, php-format
385
  msgid ""
386
  "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
387
  msgstr ""
388
 
389
+ #: inc/php/page.php:197
390
  msgid "I love this plugin! Can I help somehow?"
391
  msgstr ""
392
 
393
+ #: inc/php/page.php:199
394
  #, php-format
395
  msgid ""
396
  "Yes, any financial contributions are welcome! Just visit %s my website %s, "
397
  "click on the donate button, and thank you!"
398
  msgstr ""
399
 
400
+ #: inc/php/page.php:205
401
  msgid "My question wasn't answered here."
402
  msgstr ""
403
 
404
+ #: inc/php/page.php:207
405
  #, php-format
406
  msgid ""
407
  "You can ask your question on the plugin support page %s. But please keep in "
409
  "have no way to answer everyone."
410
  msgstr ""
411
 
412
+ #: inc/php/page.php:220
413
+ msgid "Support Me"
414
+ msgstr ""
415
+
416
+ #: inc/php/page.php:228 inc/php/settings.php:50 inc/php/sidebar.php:39
417
+ msgid "Donate with PayPal"
418
+ msgstr ""
419
+
420
+ #: inc/php/page.php:233
421
+ #, php-format
422
+ msgid ""
423
+ "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-"
424
+ "Chimp Studio %s."
425
+ msgstr ""
426
+
427
+ #: inc/php/page.php:241
428
+ msgid ""
429
+ "My intention is to create projects that will make this world a better place. "
430
+ "I'm really passionate about my work, I like what I'm doing and hope that you "
431
+ "will be enriched by my projects too."
432
  msgstr ""
433
 
434
+ #: inc/php/page.php:242
435
  msgid ""
436
  "I spend a lot of time and effort trying to make sure that the themes, "
437
  "plugins and other things I build are useful, and the ultimate proof of that "
441
  "you to enjoy."
442
  msgstr ""
443
 
444
+ #: inc/php/page.php:243
445
+ msgid "If you appreciate my work, you can buy me a coffee!"
446
  msgstr ""
447
 
448
+ #: inc/php/page.php:244
449
  msgid "Thank you for your support!"
450
  msgstr ""
451
 
519
  msgid "https://www.arthurgareginyan.com"
520
  msgstr "https://www.arthurgareginyan.com"
521
 
522
+ #~ msgid "Custom Functions"
523
+ #~ msgstr "Custom Functions"
524
+
525
+ #~ msgid "by %s Arthur Gareginyan %s"
526
+ #~ msgstr "par %s Arthur Gareginyan %s"
527
+
528
  #~ msgid ""
529
  #~ "This plugin allows you to easily and safely add your custom functions "
530
  #~ "(PHP code) to your website."
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-08-29 21:28+0300\n"
5
- "PO-Revision-Date: 2017-08-29 21:28+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ru_RU\n"
@@ -21,21 +21,21 @@ msgstr ""
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
- #: inc/php/core.php:26
25
  msgid "Settings"
26
  msgstr "Параметры"
27
 
28
- #: inc/php/core.php:36 inc/php/core.php:51
29
  msgid "Upgrade to PRO"
30
  msgstr "Обновить до PRO"
31
 
32
- #: inc/php/core.php:50
33
  msgid "Donate"
34
  msgstr "Пожертвовать"
35
 
36
- #: inc/php/core.php:64
37
- msgid "Custom Functions"
38
- msgstr "Пользовательские Функции"
39
 
40
  #: inc/php/messages.php:26
41
  msgid "Hello. I'm Arthur, the author of this plugin."
@@ -69,8 +69,8 @@ msgstr "Пожалуйста, проверьте код и попробуйте
69
 
70
  #: inc/php/page.php:32
71
  #, php-format
72
- msgid "by %s Arthur Gareginyan %s"
73
- msgstr "от %s Артура Гарегинян %s"
74
 
75
  #: inc/php/page.php:38
76
  msgid "Version"
@@ -80,7 +80,7 @@ msgstr "Версия"
80
  msgid "Main"
81
  msgstr "Главная"
82
 
83
- #: inc/php/page.php:46 inc/php/page.php:66
84
  msgid "Usage"
85
  msgstr "Применение"
86
 
@@ -88,20 +88,19 @@ msgstr "Применение"
88
  msgid "F.A.Q."
89
  msgstr "F.A.Q."
90
 
91
- #: inc/php/page.php:48 inc/php/page.php:221 inc/php/settings.php:43
92
- #: inc/php/sidebar.php:32
93
  msgid "Support"
94
  msgstr "Поддержка"
95
 
96
- #: inc/php/page.php:49 inc/php/page.php:241
97
- msgid "Author"
98
- msgstr "Автор"
99
-
100
- #: inc/php/page.php:50
101
  msgid "Store"
102
  msgstr "Магазин"
103
 
104
- #: inc/php/page.php:68
 
 
 
 
105
  msgid ""
106
  "To add your custom functions (the PHP code) to your website, simply follow "
107
  "these steps:"
@@ -109,23 +108,23 @@ msgstr ""
109
  "Чтобы добавить свои пользовательские функции (код PHP) на свой сайт, просто "
110
  "выполните следующие действия:"
111
 
112
- #: inc/php/page.php:70
113
  msgid "Go to the \"Main\" tab."
114
  msgstr "Перейдите на вкладку «Главная»."
115
 
116
- #: inc/php/page.php:71
117
  msgid "Place your PHP code in the field."
118
  msgstr "Поместите ваш PHP-код в поле."
119
 
120
- #: inc/php/page.php:72
121
  msgid "Example of PHP code:"
122
  msgstr "Пример кода PHP:"
123
 
124
- #: inc/php/page.php:78 inc/php/page.php:79 inc/php/page.php:85
125
  msgid "Note!"
126
  msgstr "Примечание!"
127
 
128
- #: inc/php/page.php:78
129
  msgid ""
130
  "Please do not wrap your PHP code in the <code>&lt;?php</code>...<code>?&gt;</"
131
  "code> HTML tags."
@@ -133,7 +132,7 @@ msgstr ""
133
  "Пожалуйста, не помещайте свой PHP-код в <code>&lt;?php</code>...<code>?&gt;</"
134
  "code> HTML теги."
135
 
136
- #: inc/php/page.php:79
137
  msgid ""
138
  "Before use, please read the instructions on the F.A.Q. tab on what to do in "
139
  "case of a website crash."
@@ -141,43 +140,43 @@ msgstr ""
141
  "Перед использованием пожалуйста, прочитайте инструкции на вкладке F.A.Q. что "
142
  "делать в случае сбоя веб-сайта."
143
 
144
- #: inc/php/page.php:81
145
  msgid "Switch the toggle to the \"ON\" position."
146
  msgstr "Переключите переключатель в положение «ON»."
147
 
148
- #: inc/php/page.php:82
149
  msgid "Click the \"Save changes\" button."
150
  msgstr "Нажмите кнопку «Сохранить изменения»."
151
 
152
- #: inc/php/page.php:83
153
  msgid "Enjoy the result of applying your PHP code."
154
  msgstr "Наслаждайтесь результатом применения вашего PHP-кода."
155
 
156
- #: inc/php/page.php:83
157
  msgid "It's that simple!"
158
  msgstr "Это так просто!"
159
 
160
- #: inc/php/page.php:85
161
  msgid "If you want more options then tell me and I will be happy to add it."
162
  msgstr ""
163
  "Если вы хотите больше опций, то скажите мне об этом и я буду счастлив "
164
  "добавить их."
165
 
166
- #: inc/php/page.php:94
167
  msgid "Frequently Asked Questions"
168
  msgstr "Часто задаваемые вопросы"
169
 
170
- #: inc/php/page.php:98
171
  msgid ""
172
  "If you have a question, please read the Frequently Asked Questions below to "
173
  "see if the answer is here."
174
  msgstr "Если у вас есть вопрос, пожалуйста, прочтите часто задаваемые вопросы."
175
 
176
- #: inc/php/page.php:120
177
  msgid "Will this plugin work on my WordPress.COM website?"
178
  msgstr "Будет ли этот плагин работать на моем веб-сайте WordPress.COM?"
179
 
180
- #: inc/php/page.php:121
181
  msgid ""
182
  "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) "
183
  "websites."
@@ -185,17 +184,17 @@ msgstr ""
185
  "К сожалению, этот плагин доступен для использования только на самостоятельно "
186
  "размещённых веб-сайтах (WordPress.ORG)."
187
 
188
- #: inc/php/page.php:123
189
  msgid "Can I use this plugin on my language?"
190
  msgstr "Можно ли использовать этот плагин на моём языке?"
191
 
192
- #: inc/php/page.php:124
193
  msgid ""
194
  "Yes. This plugin is ready for translation and has already been translated "
195
  "into several languages."
196
  msgstr "Да. Этот плагин готов к переводу и уже переведен на несколько языков."
197
 
198
- #: inc/php/page.php:126
199
  #, php-format
200
  msgid ""
201
  "If you want to help translate this plugin then please visit the %s. You can "
@@ -209,13 +208,13 @@ msgstr ""
209
  "папку «languages», чтобы создать PO файл перевода. Просто отправьте мне файл "
210
  "PO на %s и Я включу этот перевод в следующее обновление плагина."
211
 
212
- #: inc/php/page.php:131
213
  msgid ""
214
  "Maybe not all existed translations are up to date. You are welcome to "
215
  "contribute corrections!"
216
  msgstr "Может быть, не все переводы обновлены. Вы можете внести исправления!"
217
 
218
- #: inc/php/page.php:132
219
  msgid ""
220
  "Many of plugin users would be delighted if you share your translation with "
221
  "the community. Thanks for your contribution!"
@@ -223,11 +222,11 @@ msgstr ""
223
  "Многие пользователи плагинов будут рады, если вы поделитесь своим переводом "
224
  "с сообществом. Спасибо за ваш вклад!"
225
 
226
- #: inc/php/page.php:134
227
  msgid "How does it work?"
228
  msgstr "Как это работает?"
229
 
230
- #: inc/php/page.php:135
231
  msgid ""
232
  "On the \"Main\" tab, place your PHP code in the field, switch the toggle to "
233
  "the \"ON\" position and click the \"Save changes\" button. Enjoy the result "
@@ -237,35 +236,35 @@ msgstr ""
237
  "переключатель в положение «ON» и нажмите кнопку «Сохранить изменения». "
238
  "Наслаждайтесь результатом применения вашего PHP кода. Это так просто!"
239
 
240
- #: inc/php/page.php:137
241
  msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
242
  msgstr "Можно ли использовать HTML/CSS/JS код, встроенный в PHP-код?"
243
 
244
- #: inc/php/page.php:138
245
  msgid "Yes. But you need to do it properly, like this:"
246
  msgstr "Да. Но вам нужно сделать это правильно, например так:"
247
 
248
- #: inc/php/page.php:148
249
  msgid "How much of PHP code (characters) I can enter in the text field?"
250
  msgstr "Сколько PHP-кода (символов) можно ввести в текстовом поле?"
251
 
252
- #: inc/php/page.php:149
253
  msgid "I don't limit the number of characters."
254
  msgstr "Я не ограничиваю количество символов."
255
 
256
- #: inc/php/page.php:151
257
  msgid ""
258
  "On the plugin settings page, an error message appears. What could be wrong?"
259
  msgstr ""
260
  "На странице настроек плагина появляется сообщение об ошибке. Что может быть "
261
  "не так?"
262
 
263
- #: inc/php/page.php:152
264
  msgid "Here are a few of the most likely causes of the error message:"
265
  msgstr ""
266
  "Вот некоторые из наиболее вероятных причин появления сообщение об ошибке:"
267
 
268
- #: inc/php/page.php:154
269
  msgid ""
270
  "You make a syntax error in the code that you have entered. Check the syntax "
271
  "of your code and try again."
@@ -273,7 +272,7 @@ msgstr ""
273
  "Вы сделали синтаксическую ошибку в коде, который ввели. Проверьте синтаксис "
274
  "кода и повторите попытку."
275
 
276
- #: inc/php/page.php:155
277
  msgid ""
278
  "You entered two functions with the same name. Use a unique names for your "
279
  "functions."
@@ -281,7 +280,7 @@ msgstr ""
281
  "Вы ввели несколько функций с одинаковым именем. Используйте уникальные имена "
282
  "для ваших функций."
283
 
284
- #: inc/php/page.php:156
285
  msgid ""
286
  "You have entered function with a name that is already occupied by another "
287
  "function. Use a unique name for your function."
@@ -289,7 +288,7 @@ msgstr ""
289
  "Вы ввели функцию с именем, которое уже занята другой функцией. Используйте "
290
  "уникальное имя для вашей функции."
291
 
292
- #: inc/php/page.php:157
293
  msgid ""
294
  "You are trying to overwrite an existing function (of WordPress, theme, or "
295
  "plugin). Instead, use filters and hooks."
@@ -297,11 +296,11 @@ msgstr ""
297
  "Вы пытаетесь перезаписать существующую функцию (из WordPress, темы или "
298
  "плагина). Вместо этого используйте фильтры и хуки."
299
 
300
- #: inc/php/page.php:160
301
  msgid "Does this plugin requires any modification of the theme?"
302
  msgstr "Этот плагин требует изменения темы?"
303
 
304
- #: inc/php/page.php:161
305
  msgid ""
306
  "Absolutely not. This plugin is configurable entirely from the plugin "
307
  "settings page."
@@ -309,11 +308,11 @@ msgstr ""
309
  "Абсолютно нет. Этот плагин настраивается полностью на странице настроек "
310
  "плагина."
311
 
312
- #: inc/php/page.php:163
313
  msgid "Does this require any knowledge of HTML or CSS?"
314
  msgstr "Требуются ли какие-либо знания HTML или CSS?"
315
 
316
- #: inc/php/page.php:164
317
  msgid ""
318
  "This plugin can be configured with no knowledge of HTML or CSS, using an "
319
  "easy-to-use plugin settings page. But you need to know the HTML or CSS in "
@@ -324,11 +323,11 @@ msgstr ""
324
  "для того, чтобы добавить/удалить/изменить код HTML или CSS, используя этот "
325
  "плагин."
326
 
327
- #: inc/php/page.php:166
328
  msgid "It's not working. What could be wrong?"
329
  msgstr "Оно не работает. Что может быть не так?"
330
 
331
- #: inc/php/page.php:167
332
  msgid ""
333
  "As with every plugin, it's possible that things don't work. The most common "
334
  "reason for this is a web browser's cache. Every web browser stores a cache "
@@ -343,7 +342,7 @@ msgstr ""
343
  "сервер. Это называется кешем браузера. Очистка кеша браузера может решить "
344
  "проблему."
345
 
346
- #: inc/php/page.php:168
347
  msgid ""
348
  "It's impossible to tell what could be wrong exactly, but if you post a "
349
  "support request in the plugin's support forum on WordPress.org, I'd be happy "
@@ -356,11 +355,11 @@ msgstr ""
356
  "больше информации, включая ссылку на ваш сайт, на котором можно увидеть "
357
  "проблему."
358
 
359
- #: inc/php/page.php:170
360
  msgid "What to do if this plugin crashed the website?"
361
  msgstr "Что делать, если этот плагин сломал сайт?"
362
 
363
- #: inc/php/page.php:171
364
  msgid ""
365
  "This plugin has a built-in functions for checking the custom code for syntax "
366
  "errors, duplicate functions names, and etc. But plugin is not perfect, so "
@@ -377,7 +376,7 @@ msgstr ""
377
  "смог обнаружить. Когда это произойдет с вами, просто выполните следующее, и "
378
  "все будет в порядке."
379
 
380
- #: inc/php/page.php:173
381
  msgid ""
382
  "Via FTP, go to the plugin folder (in <code>wp-content/plugins/my-custom-"
383
  "functions/</code>)."
@@ -385,7 +384,7 @@ msgstr ""
385
  "Через FTP, перейдите в папку плагина (в <code>wp-content/plugins/my-custom-"
386
  "functions/</code>)."
387
 
388
- #: inc/php/page.php:174
389
  msgid ""
390
  "Rename the \"START\" file to \"STOP\". This will stop the execution of your "
391
  "custom code."
@@ -393,7 +392,7 @@ msgstr ""
393
  "Переименуйте файл «START» в «STOP». Это остановит выполнение "
394
  "пользовательского кода."
395
 
396
- #: inc/php/page.php:175
397
  msgid ""
398
  "Return to the plugin settings page and edit/fix your custom code that you "
399
  "entered before the crash."
@@ -401,11 +400,11 @@ msgstr ""
401
  "Вернитесь на страницу настроек плагина и отредактируйте/исправьте свой код, "
402
  "который вы ввели до сбоя."
403
 
404
- #: inc/php/page.php:176
405
  msgid "Rename the \"STOP\" file to \"START\" and you're done!"
406
  msgstr "Переименуйте файл \"STOP\" в \"START\", и всё готово!"
407
 
408
- #: inc/php/page.php:178
409
  msgid ""
410
  "This plugin stored you entered code in the database of your website. For "
411
  "getting your code, you also can go to the <code>Database</code> &#10145; "
@@ -417,7 +416,7 @@ msgstr ""
417
  "<code>wp_options</code> &#10145; Option <code>anarcho_cfunctions_settings</"
418
  "code> &#10145; <code>option_value</code>."
419
 
420
- #: inc/php/page.php:180
421
  msgid ""
422
  "The last WordPress update is preventing me from editing my website that is "
423
  "using this plugin. Why is this?"
@@ -425,7 +424,7 @@ msgstr ""
425
  "Последнее обновление WordPress не позволяет мне редактировать мой сайт, "
426
  "который использует этот плагин. Почему так?"
427
 
428
- #: inc/php/page.php:181
429
  msgid ""
430
  "This plugin can not cause such problem. More likely, the problem are related "
431
  "to the settings of the website. It could just be a cache, so please try to "
@@ -439,22 +438,22 @@ msgstr ""
439
  "веб-сервис, такой как CloudFlare), а затем кеш вашего веб-браузера. Также "
440
  "попробуйте повторно войти на сайт, это тоже может помочь."
441
 
442
- #: inc/php/page.php:183
443
  msgid "Where to report bug if found?"
444
  msgstr "Где можно сообщить об ошибке?"
445
 
446
- #: inc/php/page.php:185
447
  #, php-format
448
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
449
  msgstr ""
450
  "Пожалуйста, посетите %s страницу плагина на GitHub %s и сообщите об ошибке."
451
 
452
- #: inc/php/page.php:191
453
  msgid "Where to share any ideas or suggestions to make the plugin better?"
454
  msgstr ""
455
  "Где можно поделиться идеями или предложениями, чтобы сделать плагин лучше?"
456
 
457
- #: inc/php/page.php:193
458
  #, php-format
459
  msgid ""
460
  "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
@@ -462,11 +461,11 @@ msgstr ""
462
  "Любые предложения приветствуются! Пожалуйста, пришлите мне электронное "
463
  "письмо на адрес %s. Спасибо!"
464
 
465
- #: inc/php/page.php:198
466
  msgid "I love this plugin! Can I help somehow?"
467
  msgstr "Мне нравится этот плагин! Могу Я чем-то помочь?"
468
 
469
- #: inc/php/page.php:200
470
  #, php-format
471
  msgid ""
472
  "Yes, any financial contributions are welcome! Just visit %s my website %s, "
@@ -475,11 +474,11 @@ msgstr ""
475
  "Да, любые финансовые взносы приветствуются! Просто посетите %s мой сайт %s, "
476
  "нажмите на кнопку пожертвования. Спасибо!"
477
 
478
- #: inc/php/page.php:206
479
  msgid "My question wasn't answered here."
480
  msgstr "Моего вопроса здесь нет."
481
 
482
- #: inc/php/page.php:208
483
  #, php-format
484
  msgid ""
485
  "You can ask your question on the plugin support page %s. But please keep in "
@@ -490,11 +489,34 @@ msgstr ""
490
  "виду, что этот плагин является бесплатным и без специальной поддержки, "
491
  "поэтому у меня нет возможности ответить на все вопросы."
492
 
493
- #: inc/php/page.php:224
494
- msgid "If you appreciate my work, you can buy me a coffee!"
495
- msgstr "Если вы цените мою работу, то вы можете купить мне кофе!"
496
 
497
- #: inc/php/page.php:225
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
498
  msgid ""
499
  "I spend a lot of time and effort trying to make sure that the themes, "
500
  "plugins and other things I build are useful, and the ultimate proof of that "
@@ -510,11 +532,11 @@ msgstr ""
510
  "вклад помогает мне покрыть расходы и позволяет тратить больше времени на "
511
  "создание программ для людей как вы."
512
 
513
- #: inc/php/page.php:230 inc/php/settings.php:50 inc/php/sidebar.php:39
514
- msgid "Donate with PayPal"
515
- msgstr "Пожертвовать через Pay Pal"
516
 
517
- #: inc/php/page.php:232
518
  msgid "Thank you for your support!"
519
  msgstr "Спасибо за вашу поддержку!"
520
 
@@ -592,5 +614,14 @@ msgstr "Артур Гарегинян"
592
  msgid "https://www.arthurgareginyan.com"
593
  msgstr "https://www.arthurgareginyan.com"
594
 
 
 
 
 
 
 
 
 
 
595
  #~ msgid "Family"
596
  #~ msgstr "Семья"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: My Custom Functions\n"
4
+ "POT-Creation-Date: 2017-09-15 14:17+0300\n"
5
+ "PO-Revision-Date: 2017-09-15 14:17+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ru_RU\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
+ #: inc/php/core.php:23
25
  msgid "Settings"
26
  msgstr "Параметры"
27
 
28
+ #: inc/php/core.php:33 inc/php/core.php:48
29
  msgid "Upgrade to PRO"
30
  msgstr "Обновить до PRO"
31
 
32
+ #: inc/php/core.php:47
33
  msgid "Donate"
34
  msgstr "Пожертвовать"
35
 
36
+ #: inc/php/core.php:84
37
+ msgid "PHP Inserter"
38
+ msgstr "PHP Inserter"
39
 
40
  #: inc/php/messages.php:26
41
  msgid "Hello. I'm Arthur, the author of this plugin."
69
 
70
  #: inc/php/page.php:32
71
  #, php-format
72
+ msgid "by %s Space X-Chimp Studio %s"
73
+ msgstr "от %s Space X-Chimp Studio %s"
74
 
75
  #: inc/php/page.php:38
76
  msgid "Version"
80
  msgid "Main"
81
  msgstr "Главная"
82
 
83
+ #: inc/php/page.php:46
84
  msgid "Usage"
85
  msgstr "Применение"
86
 
88
  msgid "F.A.Q."
89
  msgstr "F.A.Q."
90
 
91
+ #: inc/php/page.php:48 inc/php/settings.php:43 inc/php/sidebar.php:32
 
92
  msgid "Support"
93
  msgstr "Поддержка"
94
 
95
+ #: inc/php/page.php:49
 
 
 
 
96
  msgid "Store"
97
  msgstr "Магазин"
98
 
99
+ #: inc/php/page.php:65
100
+ msgid "Usage Instructions"
101
+ msgstr "Инструкция по использованию"
102
+
103
+ #: inc/php/page.php:67
104
  msgid ""
105
  "To add your custom functions (the PHP code) to your website, simply follow "
106
  "these steps:"
108
  "Чтобы добавить свои пользовательские функции (код PHP) на свой сайт, просто "
109
  "выполните следующие действия:"
110
 
111
+ #: inc/php/page.php:69
112
  msgid "Go to the \"Main\" tab."
113
  msgstr "Перейдите на вкладку «Главная»."
114
 
115
+ #: inc/php/page.php:70
116
  msgid "Place your PHP code in the field."
117
  msgstr "Поместите ваш PHP-код в поле."
118
 
119
+ #: inc/php/page.php:71
120
  msgid "Example of PHP code:"
121
  msgstr "Пример кода PHP:"
122
 
123
+ #: inc/php/page.php:77 inc/php/page.php:78 inc/php/page.php:84
124
  msgid "Note!"
125
  msgstr "Примечание!"
126
 
127
+ #: inc/php/page.php:77
128
  msgid ""
129
  "Please do not wrap your PHP code in the <code>&lt;?php</code>...<code>?&gt;</"
130
  "code> HTML tags."
132
  "Пожалуйста, не помещайте свой PHP-код в <code>&lt;?php</code>...<code>?&gt;</"
133
  "code> HTML теги."
134
 
135
+ #: inc/php/page.php:78
136
  msgid ""
137
  "Before use, please read the instructions on the F.A.Q. tab on what to do in "
138
  "case of a website crash."
140
  "Перед использованием пожалуйста, прочитайте инструкции на вкладке F.A.Q. что "
141
  "делать в случае сбоя веб-сайта."
142
 
143
+ #: inc/php/page.php:80
144
  msgid "Switch the toggle to the \"ON\" position."
145
  msgstr "Переключите переключатель в положение «ON»."
146
 
147
+ #: inc/php/page.php:81
148
  msgid "Click the \"Save changes\" button."
149
  msgstr "Нажмите кнопку «Сохранить изменения»."
150
 
151
+ #: inc/php/page.php:82
152
  msgid "Enjoy the result of applying your PHP code."
153
  msgstr "Наслаждайтесь результатом применения вашего PHP-кода."
154
 
155
+ #: inc/php/page.php:82
156
  msgid "It's that simple!"
157
  msgstr "Это так просто!"
158
 
159
+ #: inc/php/page.php:84
160
  msgid "If you want more options then tell me and I will be happy to add it."
161
  msgstr ""
162
  "Если вы хотите больше опций, то скажите мне об этом и я буду счастлив "
163
  "добавить их."
164
 
165
+ #: inc/php/page.php:93
166
  msgid "Frequently Asked Questions"
167
  msgstr "Часто задаваемые вопросы"
168
 
169
+ #: inc/php/page.php:97
170
  msgid ""
171
  "If you have a question, please read the Frequently Asked Questions below to "
172
  "see if the answer is here."
173
  msgstr "Если у вас есть вопрос, пожалуйста, прочтите часто задаваемые вопросы."
174
 
175
+ #: inc/php/page.php:119
176
  msgid "Will this plugin work on my WordPress.COM website?"
177
  msgstr "Будет ли этот плагин работать на моем веб-сайте WordPress.COM?"
178
 
179
+ #: inc/php/page.php:120
180
  msgid ""
181
  "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) "
182
  "websites."
184
  "К сожалению, этот плагин доступен для использования только на самостоятельно "
185
  "размещённых веб-сайтах (WordPress.ORG)."
186
 
187
+ #: inc/php/page.php:122
188
  msgid "Can I use this plugin on my language?"
189
  msgstr "Можно ли использовать этот плагин на моём языке?"
190
 
191
+ #: inc/php/page.php:123
192
  msgid ""
193
  "Yes. This plugin is ready for translation and has already been translated "
194
  "into several languages."
195
  msgstr "Да. Этот плагин готов к переводу и уже переведен на несколько языков."
196
 
197
+ #: inc/php/page.php:125
198
  #, php-format
199
  msgid ""
200
  "If you want to help translate this plugin then please visit the %s. You can "
208
  "папку «languages», чтобы создать PO файл перевода. Просто отправьте мне файл "
209
  "PO на %s и Я включу этот перевод в следующее обновление плагина."
210
 
211
+ #: inc/php/page.php:130
212
  msgid ""
213
  "Maybe not all existed translations are up to date. You are welcome to "
214
  "contribute corrections!"
215
  msgstr "Может быть, не все переводы обновлены. Вы можете внести исправления!"
216
 
217
+ #: inc/php/page.php:131
218
  msgid ""
219
  "Many of plugin users would be delighted if you share your translation with "
220
  "the community. Thanks for your contribution!"
222
  "Многие пользователи плагинов будут рады, если вы поделитесь своим переводом "
223
  "с сообществом. Спасибо за ваш вклад!"
224
 
225
+ #: inc/php/page.php:133
226
  msgid "How does it work?"
227
  msgstr "Как это работает?"
228
 
229
+ #: inc/php/page.php:134
230
  msgid ""
231
  "On the \"Main\" tab, place your PHP code in the field, switch the toggle to "
232
  "the \"ON\" position and click the \"Save changes\" button. Enjoy the result "
236
  "переключатель в положение «ON» и нажмите кнопку «Сохранить изменения». "
237
  "Наслаждайтесь результатом применения вашего PHP кода. Это так просто!"
238
 
239
+ #: inc/php/page.php:136
240
  msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
241
  msgstr "Можно ли использовать HTML/CSS/JS код, встроенный в PHP-код?"
242
 
243
+ #: inc/php/page.php:137
244
  msgid "Yes. But you need to do it properly, like this:"
245
  msgstr "Да. Но вам нужно сделать это правильно, например так:"
246
 
247
+ #: inc/php/page.php:147
248
  msgid "How much of PHP code (characters) I can enter in the text field?"
249
  msgstr "Сколько PHP-кода (символов) можно ввести в текстовом поле?"
250
 
251
+ #: inc/php/page.php:148
252
  msgid "I don't limit the number of characters."
253
  msgstr "Я не ограничиваю количество символов."
254
 
255
+ #: inc/php/page.php:150
256
  msgid ""
257
  "On the plugin settings page, an error message appears. What could be wrong?"
258
  msgstr ""
259
  "На странице настроек плагина появляется сообщение об ошибке. Что может быть "
260
  "не так?"
261
 
262
+ #: inc/php/page.php:151
263
  msgid "Here are a few of the most likely causes of the error message:"
264
  msgstr ""
265
  "Вот некоторые из наиболее вероятных причин появления сообщение об ошибке:"
266
 
267
+ #: inc/php/page.php:153
268
  msgid ""
269
  "You make a syntax error in the code that you have entered. Check the syntax "
270
  "of your code and try again."
272
  "Вы сделали синтаксическую ошибку в коде, который ввели. Проверьте синтаксис "
273
  "кода и повторите попытку."
274
 
275
+ #: inc/php/page.php:154
276
  msgid ""
277
  "You entered two functions with the same name. Use a unique names for your "
278
  "functions."
280
  "Вы ввели несколько функций с одинаковым именем. Используйте уникальные имена "
281
  "для ваших функций."
282
 
283
+ #: inc/php/page.php:155
284
  msgid ""
285
  "You have entered function with a name that is already occupied by another "
286
  "function. Use a unique name for your function."
288
  "Вы ввели функцию с именем, которое уже занята другой функцией. Используйте "
289
  "уникальное имя для вашей функции."
290
 
291
+ #: inc/php/page.php:156
292
  msgid ""
293
  "You are trying to overwrite an existing function (of WordPress, theme, or "
294
  "plugin). Instead, use filters and hooks."
296
  "Вы пытаетесь перезаписать существующую функцию (из WordPress, темы или "
297
  "плагина). Вместо этого используйте фильтры и хуки."
298
 
299
+ #: inc/php/page.php:159
300
  msgid "Does this plugin requires any modification of the theme?"
301
  msgstr "Этот плагин требует изменения темы?"
302
 
303
+ #: inc/php/page.php:160
304
  msgid ""
305
  "Absolutely not. This plugin is configurable entirely from the plugin "
306
  "settings page."
308
  "Абсолютно нет. Этот плагин настраивается полностью на странице настроек "
309
  "плагина."
310
 
311
+ #: inc/php/page.php:162
312
  msgid "Does this require any knowledge of HTML or CSS?"
313
  msgstr "Требуются ли какие-либо знания HTML или CSS?"
314
 
315
+ #: inc/php/page.php:163
316
  msgid ""
317
  "This plugin can be configured with no knowledge of HTML or CSS, using an "
318
  "easy-to-use plugin settings page. But you need to know the HTML or CSS in "
323
  "для того, чтобы добавить/удалить/изменить код HTML или CSS, используя этот "
324
  "плагин."
325
 
326
+ #: inc/php/page.php:165
327
  msgid "It's not working. What could be wrong?"
328
  msgstr "Оно не работает. Что может быть не так?"
329
 
330
+ #: inc/php/page.php:166
331
  msgid ""
332
  "As with every plugin, it's possible that things don't work. The most common "
333
  "reason for this is a web browser's cache. Every web browser stores a cache "
342
  "сервер. Это называется кешем браузера. Очистка кеша браузера может решить "
343
  "проблему."
344
 
345
+ #: inc/php/page.php:167
346
  msgid ""
347
  "It's impossible to tell what could be wrong exactly, but if you post a "
348
  "support request in the plugin's support forum on WordPress.org, I'd be happy "
355
  "больше информации, включая ссылку на ваш сайт, на котором можно увидеть "
356
  "проблему."
357
 
358
+ #: inc/php/page.php:169
359
  msgid "What to do if this plugin crashed the website?"
360
  msgstr "Что делать, если этот плагин сломал сайт?"
361
 
362
+ #: inc/php/page.php:170
363
  msgid ""
364
  "This plugin has a built-in functions for checking the custom code for syntax "
365
  "errors, duplicate functions names, and etc. But plugin is not perfect, so "
376
  "смог обнаружить. Когда это произойдет с вами, просто выполните следующее, и "
377
  "все будет в порядке."
378
 
379
+ #: inc/php/page.php:172
380
  msgid ""
381
  "Via FTP, go to the plugin folder (in <code>wp-content/plugins/my-custom-"
382
  "functions/</code>)."
384
  "Через FTP, перейдите в папку плагина (в <code>wp-content/plugins/my-custom-"
385
  "functions/</code>)."
386
 
387
+ #: inc/php/page.php:173
388
  msgid ""
389
  "Rename the \"START\" file to \"STOP\". This will stop the execution of your "
390
  "custom code."
392
  "Переименуйте файл «START» в «STOP». Это остановит выполнение "
393
  "пользовательского кода."
394
 
395
+ #: inc/php/page.php:174
396
  msgid ""
397
  "Return to the plugin settings page and edit/fix your custom code that you "
398
  "entered before the crash."
400
  "Вернитесь на страницу настроек плагина и отредактируйте/исправьте свой код, "
401
  "который вы ввели до сбоя."
402
 
403
+ #: inc/php/page.php:175
404
  msgid "Rename the \"STOP\" file to \"START\" and you're done!"
405
  msgstr "Переименуйте файл \"STOP\" в \"START\", и всё готово!"
406
 
407
+ #: inc/php/page.php:177
408
  msgid ""
409
  "This plugin stored you entered code in the database of your website. For "
410
  "getting your code, you also can go to the <code>Database</code> &#10145; "
416
  "<code>wp_options</code> &#10145; Option <code>anarcho_cfunctions_settings</"
417
  "code> &#10145; <code>option_value</code>."
418
 
419
+ #: inc/php/page.php:179
420
  msgid ""
421
  "The last WordPress update is preventing me from editing my website that is "
422
  "using this plugin. Why is this?"
424
  "Последнее обновление WordPress не позволяет мне редактировать мой сайт, "
425
  "который использует этот плагин. Почему так?"
426
 
427
+ #: inc/php/page.php:180
428
  msgid ""
429
  "This plugin can not cause such problem. More likely, the problem are related "
430
  "to the settings of the website. It could just be a cache, so please try to "
438
  "веб-сервис, такой как CloudFlare), а затем кеш вашего веб-браузера. Также "
439
  "попробуйте повторно войти на сайт, это тоже может помочь."
440
 
441
+ #: inc/php/page.php:182
442
  msgid "Where to report bug if found?"
443
  msgstr "Где можно сообщить об ошибке?"
444
 
445
+ #: inc/php/page.php:184
446
  #, php-format
447
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
448
  msgstr ""
449
  "Пожалуйста, посетите %s страницу плагина на GitHub %s и сообщите об ошибке."
450
 
451
+ #: inc/php/page.php:190
452
  msgid "Where to share any ideas or suggestions to make the plugin better?"
453
  msgstr ""
454
  "Где можно поделиться идеями или предложениями, чтобы сделать плагин лучше?"
455
 
456
+ #: inc/php/page.php:192
457
  #, php-format
458
  msgid ""
459
  "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
461
  "Любые предложения приветствуются! Пожалуйста, пришлите мне электронное "
462
  "письмо на адрес %s. Спасибо!"
463
 
464
+ #: inc/php/page.php:197
465
  msgid "I love this plugin! Can I help somehow?"
466
  msgstr "Мне нравится этот плагин! Могу Я чем-то помочь?"
467
 
468
+ #: inc/php/page.php:199
469
  #, php-format
470
  msgid ""
471
  "Yes, any financial contributions are welcome! Just visit %s my website %s, "
474
  "Да, любые финансовые взносы приветствуются! Просто посетите %s мой сайт %s, "
475
  "нажмите на кнопку пожертвования. Спасибо!"
476
 
477
+ #: inc/php/page.php:205
478
  msgid "My question wasn't answered here."
479
  msgstr "Моего вопроса здесь нет."
480
 
481
+ #: inc/php/page.php:207
482
  #, php-format
483
  msgid ""
484
  "You can ask your question on the plugin support page %s. But please keep in "
489
  "виду, что этот плагин является бесплатным и без специальной поддержки, "
490
  "поэтому у меня нет возможности ответить на все вопросы."
491
 
492
+ #: inc/php/page.php:220
493
+ msgid "Support Me"
494
+ msgstr "Поддержать меня"
495
 
496
+ #: inc/php/page.php:228 inc/php/settings.php:50 inc/php/sidebar.php:39
497
+ msgid "Donate with PayPal"
498
+ msgstr "Пожертвовать через Pay Pal"
499
+
500
+ #: inc/php/page.php:233
501
+ #, php-format
502
+ msgid ""
503
+ "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-"
504
+ "Chimp Studio %s."
505
+ msgstr ""
506
+ "Привет! Меня зовут %s Артур Гарегинян %s и Я основатель %s Space X-Chimp "
507
+ "Studio %s."
508
+
509
+ #: inc/php/page.php:241
510
+ msgid ""
511
+ "My intention is to create projects that will make this world a better place. "
512
+ "I'm really passionate about my work, I like what I'm doing and hope that you "
513
+ "will be enriched by my projects too."
514
+ msgstr ""
515
+ "Я намерен создать проекты, которые сделают этот мир лучшим местом. Я очень "
516
+ "увлечен своей работой, мне нравится то, что Я делаю и надеюсь, что вы тоже "
517
+ "станете лучше благодаря моим проектам."
518
+
519
+ #: inc/php/page.php:242
520
  msgid ""
521
  "I spend a lot of time and effort trying to make sure that the themes, "
522
  "plugins and other things I build are useful, and the ultimate proof of that "
532
  "вклад помогает мне покрыть расходы и позволяет тратить больше времени на "
533
  "создание программ для людей как вы."
534
 
535
+ #: inc/php/page.php:243
536
+ msgid "If you appreciate my work, you can buy me a coffee!"
537
+ msgstr "Если вы цените мою работу, то вы можете купить мне кофе!"
538
 
539
+ #: inc/php/page.php:244
540
  msgid "Thank you for your support!"
541
  msgstr "Спасибо за вашу поддержку!"
542
 
614
  msgid "https://www.arthurgareginyan.com"
615
  msgstr "https://www.arthurgareginyan.com"
616
 
617
+ #~ msgid "Custom Functions"
618
+ #~ msgstr "Пользовательские Функции"
619
+
620
+ #~ msgid "by %s Arthur Gareginyan %s"
621
+ #~ msgstr "от %s Артура Гарегинян %s"
622
+
623
+ #~ msgid "Author"
624
+ #~ msgstr "Автор"
625
+
626
  #~ msgid "Family"
627
  #~ msgstr "Семья"
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-08-29 21:28+0300\n"
5
- "PO-Revision-Date: 2017-08-29 21:28+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: zh_TW\n"
@@ -20,21 +20,21 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
 
23
- #: inc/php/core.php:26
24
  msgid "Settings"
25
  msgstr "設定"
26
 
27
- #: inc/php/core.php:36 inc/php/core.php:51
28
  msgid "Upgrade to PRO"
29
  msgstr ""
30
 
31
- #: inc/php/core.php:50
32
  msgid "Donate"
33
  msgstr "捐款"
34
 
35
- #: inc/php/core.php:64
36
- msgid "Custom Functions"
37
- msgstr "自訂功能"
38
 
39
  #: inc/php/messages.php:26
40
  msgid "Hello. I'm Arthur, the author of this plugin."
@@ -67,7 +67,7 @@ msgstr "請重新檢查程式碼再試一次"
67
 
68
  #: inc/php/page.php:32
69
  #, php-format
70
- msgid "by %s Arthur Gareginyan %s"
71
  msgstr ""
72
 
73
  #: inc/php/page.php:38
@@ -78,7 +78,7 @@ msgstr ""
78
  msgid "Main"
79
  msgstr ""
80
 
81
- #: inc/php/page.php:46 inc/php/page.php:66
82
  msgid "Usage"
83
  msgstr ""
84
 
@@ -86,104 +86,103 @@ msgstr ""
86
  msgid "F.A.Q."
87
  msgstr ""
88
 
89
- #: inc/php/page.php:48 inc/php/page.php:221 inc/php/settings.php:43
90
- #: inc/php/sidebar.php:32
91
  msgid "Support"
92
  msgstr ""
93
 
94
- #: inc/php/page.php:49 inc/php/page.php:241
95
- msgid "Author"
96
  msgstr ""
97
 
98
- #: inc/php/page.php:50
99
- msgid "Store"
100
  msgstr ""
101
 
102
- #: inc/php/page.php:68
103
  msgid ""
104
  "To add your custom functions (the PHP code) to your website, simply follow "
105
  "these steps:"
106
  msgstr ""
107
 
108
- #: inc/php/page.php:70
109
  msgid "Go to the \"Main\" tab."
110
  msgstr ""
111
 
112
- #: inc/php/page.php:71
113
  msgid "Place your PHP code in the field."
114
  msgstr ""
115
 
116
- #: inc/php/page.php:72
117
  msgid "Example of PHP code:"
118
  msgstr ""
119
 
120
- #: inc/php/page.php:78 inc/php/page.php:79 inc/php/page.php:85
121
  msgid "Note!"
122
  msgstr ""
123
 
124
- #: inc/php/page.php:78
125
  msgid ""
126
  "Please do not wrap your PHP code in the <code>&lt;?php</code>...<code>?&gt;</"
127
  "code> HTML tags."
128
  msgstr ""
129
 
130
- #: inc/php/page.php:79
131
  msgid ""
132
  "Before use, please read the instructions on the F.A.Q. tab on what to do in "
133
  "case of a website crash."
134
  msgstr ""
135
 
136
- #: inc/php/page.php:81
137
  msgid "Switch the toggle to the \"ON\" position."
138
  msgstr ""
139
 
140
- #: inc/php/page.php:82
141
  msgid "Click the \"Save changes\" button."
142
  msgstr ""
143
 
144
- #: inc/php/page.php:83
145
  msgid "Enjoy the result of applying your PHP code."
146
  msgstr ""
147
 
148
- #: inc/php/page.php:83
149
  msgid "It's that simple!"
150
  msgstr ""
151
 
152
- #: inc/php/page.php:85
153
  msgid "If you want more options then tell me and I will be happy to add it."
154
  msgstr "如果您還想要更多的選項請跟我說,我會很樂意加上去"
155
 
156
- #: inc/php/page.php:94
157
  msgid "Frequently Asked Questions"
158
  msgstr ""
159
 
160
- #: inc/php/page.php:98
161
  msgid ""
162
  "If you have a question, please read the Frequently Asked Questions below to "
163
  "see if the answer is here."
164
  msgstr ""
165
 
166
- #: inc/php/page.php:120
167
  msgid "Will this plugin work on my WordPress.COM website?"
168
  msgstr ""
169
 
170
- #: inc/php/page.php:121
171
  msgid ""
172
  "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) "
173
  "websites."
174
  msgstr ""
175
 
176
- #: inc/php/page.php:123
177
  msgid "Can I use this plugin on my language?"
178
  msgstr ""
179
 
180
- #: inc/php/page.php:124
181
  msgid ""
182
  "Yes. This plugin is ready for translation and has already been translated "
183
  "into several languages."
184
  msgstr ""
185
 
186
- #: inc/php/page.php:126
187
  #, php-format
188
  msgid ""
189
  "If you want to help translate this plugin then please visit the %s. You can "
@@ -193,104 +192,104 @@ msgid ""
193
  "update."
194
  msgstr ""
195
 
196
- #: inc/php/page.php:131
197
  msgid ""
198
  "Maybe not all existed translations are up to date. You are welcome to "
199
  "contribute corrections!"
200
  msgstr ""
201
 
202
- #: inc/php/page.php:132
203
  msgid ""
204
  "Many of plugin users would be delighted if you share your translation with "
205
  "the community. Thanks for your contribution!"
206
  msgstr ""
207
 
208
- #: inc/php/page.php:134
209
  msgid "How does it work?"
210
  msgstr ""
211
 
212
- #: inc/php/page.php:135
213
  msgid ""
214
  "On the \"Main\" tab, place your PHP code in the field, switch the toggle to "
215
  "the \"ON\" position and click the \"Save changes\" button. Enjoy the result "
216
  "of applying your PHP code. It's that simple!"
217
  msgstr ""
218
 
219
- #: inc/php/page.php:137
220
  msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
221
  msgstr ""
222
 
223
- #: inc/php/page.php:138
224
  msgid "Yes. But you need to do it properly, like this:"
225
  msgstr ""
226
 
227
- #: inc/php/page.php:148
228
  msgid "How much of PHP code (characters) I can enter in the text field?"
229
  msgstr ""
230
 
231
- #: inc/php/page.php:149
232
  msgid "I don't limit the number of characters."
233
  msgstr ""
234
 
235
- #: inc/php/page.php:151
236
  msgid ""
237
  "On the plugin settings page, an error message appears. What could be wrong?"
238
  msgstr ""
239
 
240
- #: inc/php/page.php:152
241
  msgid "Here are a few of the most likely causes of the error message:"
242
  msgstr ""
243
 
244
- #: inc/php/page.php:154
245
  msgid ""
246
  "You make a syntax error in the code that you have entered. Check the syntax "
247
  "of your code and try again."
248
  msgstr ""
249
 
250
- #: inc/php/page.php:155
251
  msgid ""
252
  "You entered two functions with the same name. Use a unique names for your "
253
  "functions."
254
  msgstr ""
255
 
256
- #: inc/php/page.php:156
257
  msgid ""
258
  "You have entered function with a name that is already occupied by another "
259
  "function. Use a unique name for your function."
260
  msgstr ""
261
 
262
- #: inc/php/page.php:157
263
  msgid ""
264
  "You are trying to overwrite an existing function (of WordPress, theme, or "
265
  "plugin). Instead, use filters and hooks."
266
  msgstr ""
267
 
268
- #: inc/php/page.php:160
269
  msgid "Does this plugin requires any modification of the theme?"
270
  msgstr ""
271
 
272
- #: inc/php/page.php:161
273
  msgid ""
274
  "Absolutely not. This plugin is configurable entirely from the plugin "
275
  "settings page."
276
  msgstr ""
277
 
278
- #: inc/php/page.php:163
279
  msgid "Does this require any knowledge of HTML or CSS?"
280
  msgstr ""
281
 
282
- #: inc/php/page.php:164
283
  msgid ""
284
  "This plugin can be configured with no knowledge of HTML or CSS, using an "
285
  "easy-to-use plugin settings page. But you need to know the HTML or CSS in "
286
  "order to add/remove/modify the HTML or CSS code by using this plugin."
287
  msgstr ""
288
 
289
- #: inc/php/page.php:166
290
  msgid "It's not working. What could be wrong?"
291
  msgstr ""
292
 
293
- #: inc/php/page.php:167
294
  msgid ""
295
  "As with every plugin, it's possible that things don't work. The most common "
296
  "reason for this is a web browser's cache. Every web browser stores a cache "
@@ -299,7 +298,7 @@ msgid ""
299
  "browser's cache may solve the problem."
300
  msgstr ""
301
 
302
- #: inc/php/page.php:168
303
  msgid ""
304
  "It's impossible to tell what could be wrong exactly, but if you post a "
305
  "support request in the plugin's support forum on WordPress.org, I'd be happy "
@@ -307,11 +306,11 @@ msgid ""
307
  "possible, including a link to your website where the problem can be seen."
308
  msgstr ""
309
 
310
- #: inc/php/page.php:170
311
  msgid "What to do if this plugin crashed the website?"
312
  msgstr ""
313
 
314
- #: inc/php/page.php:171
315
  msgid ""
316
  "This plugin has a built-in functions for checking the custom code for syntax "
317
  "errors, duplicate functions names, and etc. But plugin is not perfect, so "
@@ -321,29 +320,29 @@ msgid ""
321
  "the following and all will be fine."
322
  msgstr ""
323
 
324
- #: inc/php/page.php:173
325
  msgid ""
326
  "Via FTP, go to the plugin folder (in <code>wp-content/plugins/my-custom-"
327
  "functions/</code>)."
328
  msgstr ""
329
 
330
- #: inc/php/page.php:174
331
  msgid ""
332
  "Rename the \"START\" file to \"STOP\". This will stop the execution of your "
333
  "custom code."
334
  msgstr ""
335
 
336
- #: inc/php/page.php:175
337
  msgid ""
338
  "Return to the plugin settings page and edit/fix your custom code that you "
339
  "entered before the crash."
340
  msgstr ""
341
 
342
- #: inc/php/page.php:176
343
  msgid "Rename the \"STOP\" file to \"START\" and you're done!"
344
  msgstr ""
345
 
346
- #: inc/php/page.php:178
347
  msgid ""
348
  "This plugin stored you entered code in the database of your website. For "
349
  "getting your code, you also can go to the <code>Database</code> &#10145; "
@@ -351,13 +350,13 @@ msgid ""
351
  "<code>anarcho_cfunctions_settings</code> &#10145; <code>option_value</code>."
352
  msgstr ""
353
 
354
- #: inc/php/page.php:180
355
  msgid ""
356
  "The last WordPress update is preventing me from editing my website that is "
357
  "using this plugin. Why is this?"
358
  msgstr ""
359
 
360
- #: inc/php/page.php:181
361
  msgid ""
362
  "This plugin can not cause such problem. More likely, the problem are related "
363
  "to the settings of the website. It could just be a cache, so please try to "
@@ -366,41 +365,41 @@ msgid ""
366
  "please try to re-login to the website, this too can help."
367
  msgstr ""
368
 
369
- #: inc/php/page.php:183
370
  msgid "Where to report bug if found?"
371
  msgstr ""
372
 
373
- #: inc/php/page.php:185
374
  #, php-format
375
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
376
  msgstr ""
377
 
378
- #: inc/php/page.php:191
379
  msgid "Where to share any ideas or suggestions to make the plugin better?"
380
  msgstr ""
381
 
382
- #: inc/php/page.php:193
383
  #, php-format
384
  msgid ""
385
  "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
386
  msgstr ""
387
 
388
- #: inc/php/page.php:198
389
  msgid "I love this plugin! Can I help somehow?"
390
  msgstr ""
391
 
392
- #: inc/php/page.php:200
393
  #, php-format
394
  msgid ""
395
  "Yes, any financial contributions are welcome! Just visit %s my website %s, "
396
  "click on the donate button, and thank you!"
397
  msgstr ""
398
 
399
- #: inc/php/page.php:206
400
  msgid "My question wasn't answered here."
401
  msgstr ""
402
 
403
- #: inc/php/page.php:208
404
  #, php-format
405
  msgid ""
406
  "You can ask your question on the plugin support page %s. But please keep in "
@@ -408,11 +407,29 @@ msgid ""
408
  "have no way to answer everyone."
409
  msgstr ""
410
 
411
- #: inc/php/page.php:224
412
- msgid "If you appreciate my work, you can buy me a coffee!"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
413
  msgstr ""
414
 
415
- #: inc/php/page.php:225
416
  msgid ""
417
  "I spend a lot of time and effort trying to make sure that the themes, "
418
  "plugins and other things I build are useful, and the ultimate proof of that "
@@ -422,11 +439,11 @@ msgid ""
422
  "you to enjoy."
423
  msgstr ""
424
 
425
- #: inc/php/page.php:230 inc/php/settings.php:50 inc/php/sidebar.php:39
426
- msgid "Donate with PayPal"
427
  msgstr ""
428
 
429
- #: inc/php/page.php:232
430
  msgid "Thank you for your support!"
431
  msgstr ""
432
 
@@ -494,6 +511,9 @@ msgstr ""
494
  msgid "https://www.arthurgareginyan.com"
495
  msgstr ""
496
 
 
 
 
497
  #~ msgid ""
498
  #~ "To use, enter your custom functions, then click \"Save changes\". It's "
499
  #~ "that simple!"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: My Custom Functions\n"
4
+ "POT-Creation-Date: 2017-09-15 14:26+0300\n"
5
+ "PO-Revision-Date: 2017-09-15 14:26+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: zh_TW\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 "設定"
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 "捐款"
34
 
35
+ #: inc/php/core.php:84
36
+ msgid "PHP Inserter"
37
+ msgstr ""
38
 
39
  #: inc/php/messages.php:26
40
  msgid "Hello. I'm Arthur, the author of this plugin."
67
 
68
  #: inc/php/page.php:32
69
  #, php-format
70
+ msgid "by %s Space X-Chimp Studio %s"
71
  msgstr ""
72
 
73
  #: inc/php/page.php:38
78
  msgid "Main"
79
  msgstr ""
80
 
81
+ #: inc/php/page.php:46
82
  msgid "Usage"
83
  msgstr ""
84
 
86
  msgid "F.A.Q."
87
  msgstr ""
88
 
89
+ #: inc/php/page.php:48 inc/php/settings.php:43 inc/php/sidebar.php:32
 
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 ""
103
  "To add your custom functions (the PHP code) to your website, simply follow "
104
  "these steps:"
105
  msgstr ""
106
 
107
+ #: inc/php/page.php:69
108
  msgid "Go to the \"Main\" tab."
109
  msgstr ""
110
 
111
+ #: inc/php/page.php:70
112
  msgid "Place your PHP code in the field."
113
  msgstr ""
114
 
115
+ #: inc/php/page.php:71
116
  msgid "Example of PHP code:"
117
  msgstr ""
118
 
119
+ #: inc/php/page.php:77 inc/php/page.php:78 inc/php/page.php:84
120
  msgid "Note!"
121
  msgstr ""
122
 
123
+ #: inc/php/page.php:77
124
  msgid ""
125
  "Please do not wrap your PHP code in the <code>&lt;?php</code>...<code>?&gt;</"
126
  "code> HTML tags."
127
  msgstr ""
128
 
129
+ #: inc/php/page.php:78
130
  msgid ""
131
  "Before use, please read the instructions on the F.A.Q. tab on what to do in "
132
  "case of a website crash."
133
  msgstr ""
134
 
135
+ #: inc/php/page.php:80
136
  msgid "Switch the toggle to the \"ON\" position."
137
  msgstr ""
138
 
139
+ #: inc/php/page.php:81
140
  msgid "Click the \"Save changes\" button."
141
  msgstr ""
142
 
143
+ #: inc/php/page.php:82
144
  msgid "Enjoy the result of applying your PHP code."
145
  msgstr ""
146
 
147
+ #: inc/php/page.php:82
148
  msgid "It's that simple!"
149
  msgstr ""
150
 
151
+ #: inc/php/page.php:84
152
  msgid "If you want more options then tell me and I will be happy to add it."
153
  msgstr "如果您還想要更多的選項請跟我說,我會很樂意加上去"
154
 
155
+ #: inc/php/page.php:93
156
  msgid "Frequently Asked Questions"
157
  msgstr ""
158
 
159
+ #: inc/php/page.php:97
160
  msgid ""
161
  "If you have a question, please read the Frequently Asked Questions below to "
162
  "see if the answer is here."
163
  msgstr ""
164
 
165
+ #: inc/php/page.php:119
166
  msgid "Will this plugin work on my WordPress.COM website?"
167
  msgstr ""
168
 
169
+ #: inc/php/page.php:120
170
  msgid ""
171
  "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) "
172
  "websites."
173
  msgstr ""
174
 
175
+ #: inc/php/page.php:122
176
  msgid "Can I use this plugin on my language?"
177
  msgstr ""
178
 
179
+ #: inc/php/page.php:123
180
  msgid ""
181
  "Yes. This plugin is ready for translation and has already been translated "
182
  "into several languages."
183
  msgstr ""
184
 
185
+ #: inc/php/page.php:125
186
  #, php-format
187
  msgid ""
188
  "If you want to help translate this plugin then please visit the %s. You can "
192
  "update."
193
  msgstr ""
194
 
195
+ #: inc/php/page.php:130
196
  msgid ""
197
  "Maybe not all existed translations are up to date. You are welcome to "
198
  "contribute corrections!"
199
  msgstr ""
200
 
201
+ #: inc/php/page.php:131
202
  msgid ""
203
  "Many of plugin users would be delighted if you share your translation with "
204
  "the community. Thanks for your contribution!"
205
  msgstr ""
206
 
207
+ #: inc/php/page.php:133
208
  msgid "How does it work?"
209
  msgstr ""
210
 
211
+ #: inc/php/page.php:134
212
  msgid ""
213
  "On the \"Main\" tab, place your PHP code in the field, switch the toggle to "
214
  "the \"ON\" position and click the \"Save changes\" button. Enjoy the result "
215
  "of applying your PHP code. It's that simple!"
216
  msgstr ""
217
 
218
+ #: inc/php/page.php:136
219
  msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
220
  msgstr ""
221
 
222
+ #: inc/php/page.php:137
223
  msgid "Yes. But you need to do it properly, like this:"
224
  msgstr ""
225
 
226
+ #: inc/php/page.php:147
227
  msgid "How much of PHP code (characters) I can enter in the text field?"
228
  msgstr ""
229
 
230
+ #: inc/php/page.php:148
231
  msgid "I don't limit the number of characters."
232
  msgstr ""
233
 
234
+ #: inc/php/page.php:150
235
  msgid ""
236
  "On the plugin settings page, an error message appears. What could be wrong?"
237
  msgstr ""
238
 
239
+ #: inc/php/page.php:151
240
  msgid "Here are a few of the most likely causes of the error message:"
241
  msgstr ""
242
 
243
+ #: inc/php/page.php:153
244
  msgid ""
245
  "You make a syntax error in the code that you have entered. Check the syntax "
246
  "of your code and try again."
247
  msgstr ""
248
 
249
+ #: inc/php/page.php:154
250
  msgid ""
251
  "You entered two functions with the same name. Use a unique names for your "
252
  "functions."
253
  msgstr ""
254
 
255
+ #: inc/php/page.php:155
256
  msgid ""
257
  "You have entered function with a name that is already occupied by another "
258
  "function. Use a unique name for your function."
259
  msgstr ""
260
 
261
+ #: inc/php/page.php:156
262
  msgid ""
263
  "You are trying to overwrite an existing function (of WordPress, theme, or "
264
  "plugin). Instead, use filters and hooks."
265
  msgstr ""
266
 
267
+ #: inc/php/page.php:159
268
  msgid "Does this plugin requires any modification of the theme?"
269
  msgstr ""
270
 
271
+ #: inc/php/page.php:160
272
  msgid ""
273
  "Absolutely not. This plugin is configurable entirely from the plugin "
274
  "settings page."
275
  msgstr ""
276
 
277
+ #: inc/php/page.php:162
278
  msgid "Does this require any knowledge of HTML or CSS?"
279
  msgstr ""
280
 
281
+ #: inc/php/page.php:163
282
  msgid ""
283
  "This plugin can be configured with no knowledge of HTML or CSS, using an "
284
  "easy-to-use plugin settings page. But you need to know the HTML or CSS in "
285
  "order to add/remove/modify the HTML or CSS code by using this plugin."
286
  msgstr ""
287
 
288
+ #: inc/php/page.php:165
289
  msgid "It's not working. What could be wrong?"
290
  msgstr ""
291
 
292
+ #: inc/php/page.php:166
293
  msgid ""
294
  "As with every plugin, it's possible that things don't work. The most common "
295
  "reason for this is a web browser's cache. Every web browser stores a cache "
298
  "browser's cache may solve the problem."
299
  msgstr ""
300
 
301
+ #: inc/php/page.php:167
302
  msgid ""
303
  "It's impossible to tell what could be wrong exactly, but if you post a "
304
  "support request in the plugin's support forum on WordPress.org, I'd be happy "
306
  "possible, including a link to your website where the problem can be seen."
307
  msgstr ""
308
 
309
+ #: inc/php/page.php:169
310
  msgid "What to do if this plugin crashed the website?"
311
  msgstr ""
312
 
313
+ #: inc/php/page.php:170
314
  msgid ""
315
  "This plugin has a built-in functions for checking the custom code for syntax "
316
  "errors, duplicate functions names, and etc. But plugin is not perfect, so "
320
  "the following and all will be fine."
321
  msgstr ""
322
 
323
+ #: inc/php/page.php:172
324
  msgid ""
325
  "Via FTP, go to the plugin folder (in <code>wp-content/plugins/my-custom-"
326
  "functions/</code>)."
327
  msgstr ""
328
 
329
+ #: inc/php/page.php:173
330
  msgid ""
331
  "Rename the \"START\" file to \"STOP\". This will stop the execution of your "
332
  "custom code."
333
  msgstr ""
334
 
335
+ #: inc/php/page.php:174
336
  msgid ""
337
  "Return to the plugin settings page and edit/fix your custom code that you "
338
  "entered before the crash."
339
  msgstr ""
340
 
341
+ #: inc/php/page.php:175
342
  msgid "Rename the \"STOP\" file to \"START\" and you're done!"
343
  msgstr ""
344
 
345
+ #: inc/php/page.php:177
346
  msgid ""
347
  "This plugin stored you entered code in the database of your website. For "
348
  "getting your code, you also can go to the <code>Database</code> &#10145; "
350
  "<code>anarcho_cfunctions_settings</code> &#10145; <code>option_value</code>."
351
  msgstr ""
352
 
353
+ #: inc/php/page.php:179
354
  msgid ""
355
  "The last WordPress update is preventing me from editing my website that is "
356
  "using this plugin. Why is this?"
357
  msgstr ""
358
 
359
+ #: inc/php/page.php:180
360
  msgid ""
361
  "This plugin can not cause such problem. More likely, the problem are related "
362
  "to the settings of the website. It could just be a cache, so please try to "
365
  "please try to re-login to the website, this too can help."
366
  msgstr ""
367
 
368
+ #: inc/php/page.php:182
369
  msgid "Where to report bug if found?"
370
  msgstr ""
371
 
372
+ #: inc/php/page.php:184
373
  #, php-format
374
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
375
  msgstr ""
376
 
377
+ #: inc/php/page.php:190
378
  msgid "Where to share any ideas or suggestions to make the plugin better?"
379
  msgstr ""
380
 
381
+ #: inc/php/page.php:192
382
  #, php-format
383
  msgid ""
384
  "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
385
  msgstr ""
386
 
387
+ #: inc/php/page.php:197
388
  msgid "I love this plugin! Can I help somehow?"
389
  msgstr ""
390
 
391
+ #: inc/php/page.php:199
392
  #, php-format
393
  msgid ""
394
  "Yes, any financial contributions are welcome! Just visit %s my website %s, "
395
  "click on the donate button, and thank you!"
396
  msgstr ""
397
 
398
+ #: inc/php/page.php:205
399
  msgid "My question wasn't answered here."
400
  msgstr ""
401
 
402
+ #: inc/php/page.php:207
403
  #, php-format
404
  msgid ""
405
  "You can ask your question on the plugin support page %s. But please keep in "
407
  "have no way to answer everyone."
408
  msgstr ""
409
 
410
+ #: inc/php/page.php:220
411
+ msgid "Support Me"
412
+ msgstr ""
413
+
414
+ #: inc/php/page.php:228 inc/php/settings.php:50 inc/php/sidebar.php:39
415
+ msgid "Donate with PayPal"
416
+ msgstr ""
417
+
418
+ #: inc/php/page.php:233
419
+ #, php-format
420
+ msgid ""
421
+ "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-"
422
+ "Chimp Studio %s."
423
+ msgstr ""
424
+
425
+ #: inc/php/page.php:241
426
+ msgid ""
427
+ "My intention is to create projects that will make this world a better place. "
428
+ "I'm really passionate about my work, I like what I'm doing and hope that you "
429
+ "will be enriched by my projects too."
430
  msgstr ""
431
 
432
+ #: inc/php/page.php:242
433
  msgid ""
434
  "I spend a lot of time and effort trying to make sure that the themes, "
435
  "plugins and other things I build are useful, and the ultimate proof of that "
439
  "you to enjoy."
440
  msgstr ""
441
 
442
+ #: inc/php/page.php:243
443
+ msgid "If you appreciate my work, you can buy me a coffee!"
444
  msgstr ""
445
 
446
+ #: inc/php/page.php:244
447
  msgid "Thank you for your support!"
448
  msgstr ""
449
 
511
  msgid "https://www.arthurgareginyan.com"
512
  msgstr ""
513
 
514
+ #~ msgid "Custom Functions"
515
+ #~ msgstr "自訂功能"
516
+
517
  #~ msgid ""
518
  #~ "To use, enter your custom functions, then click \"Save changes\". It's "
519
  #~ "that simple!"
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-08-29 21:28+0300\n"
7
  "PO-Revision-Date: 2015-08-30 16:22+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
@@ -20,20 +20,20 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
 
23
- #: inc/php/core.php:26
24
  msgid "Settings"
25
  msgstr ""
26
 
27
- #: inc/php/core.php:36 inc/php/core.php:51
28
  msgid "Upgrade to PRO"
29
  msgstr ""
30
 
31
- #: inc/php/core.php:50
32
  msgid "Donate"
33
  msgstr ""
34
 
35
- #: inc/php/core.php:64
36
- msgid "Custom Functions"
37
  msgstr ""
38
 
39
  #: inc/php/messages.php:26
@@ -67,7 +67,7 @@ msgstr ""
67
 
68
  #: inc/php/page.php:32
69
  #, php-format
70
- msgid "by %s Arthur Gareginyan %s"
71
  msgstr ""
72
 
73
  #: inc/php/page.php:38
@@ -78,7 +78,7 @@ msgstr ""
78
  msgid "Main"
79
  msgstr ""
80
 
81
- #: inc/php/page.php:46 inc/php/page.php:66
82
  msgid "Usage"
83
  msgstr ""
84
 
@@ -86,95 +86,95 @@ msgstr ""
86
  msgid "F.A.Q."
87
  msgstr ""
88
 
89
- #: inc/php/page.php:48 inc/php/page.php:221 inc/php/settings.php:43 inc/php/sidebar.php:32
90
  msgid "Support"
91
  msgstr ""
92
 
93
- #: inc/php/page.php:49 inc/php/page.php:241
94
- msgid "Author"
95
  msgstr ""
96
 
97
- #: inc/php/page.php:50
98
- msgid "Store"
99
  msgstr ""
100
 
101
- #: inc/php/page.php:68
102
  msgid "To add your custom functions (the PHP code) to your website, simply follow these steps:"
103
  msgstr ""
104
 
105
- #: inc/php/page.php:70
106
  msgid "Go to the \"Main\" tab."
107
  msgstr ""
108
 
109
- #: inc/php/page.php:71
110
  msgid "Place your PHP code in the field."
111
  msgstr ""
112
 
113
- #: inc/php/page.php:72
114
  msgid "Example of PHP code:"
115
  msgstr ""
116
 
117
- #: inc/php/page.php:78 inc/php/page.php:79 inc/php/page.php:85
118
  msgid "Note!"
119
  msgstr ""
120
 
121
- #: inc/php/page.php:78
122
  msgid "Please do not wrap your PHP code in the <code>&lt;?php</code>...<code>?&gt;</code> HTML tags."
123
  msgstr ""
124
 
125
- #: inc/php/page.php:79
126
  msgid ""
127
  "Before use, please read the instructions on the F.A.Q. tab on what to do in case of a website crash."
128
  msgstr ""
129
 
130
- #: inc/php/page.php:81
131
  msgid "Switch the toggle to the \"ON\" position."
132
  msgstr ""
133
 
134
- #: inc/php/page.php:82
135
  msgid "Click the \"Save changes\" button."
136
  msgstr ""
137
 
138
- #: inc/php/page.php:83
139
  msgid "Enjoy the result of applying your PHP code."
140
  msgstr ""
141
 
142
- #: inc/php/page.php:83
143
  msgid "It's that simple!"
144
  msgstr ""
145
 
146
- #: inc/php/page.php:85
147
  msgid "If you want more options then tell me and I will be happy to add it."
148
  msgstr ""
149
 
150
- #: inc/php/page.php:94
151
  msgid "Frequently Asked Questions"
152
  msgstr ""
153
 
154
- #: inc/php/page.php:98
155
  msgid ""
156
  "If you have a question, please read the Frequently Asked Questions below to see if the answer is "
157
  "here."
158
  msgstr ""
159
 
160
- #: inc/php/page.php:120
161
  msgid "Will this plugin work on my WordPress.COM website?"
162
  msgstr ""
163
 
164
- #: inc/php/page.php:121
165
  msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
166
  msgstr ""
167
 
168
- #: inc/php/page.php:123
169
  msgid "Can I use this plugin on my language?"
170
  msgstr ""
171
 
172
- #: inc/php/page.php:124
173
  msgid ""
174
  "Yes. This plugin is ready for translation and has already been translated into several languages."
175
  msgstr ""
176
 
177
- #: inc/php/page.php:126
178
  #, php-format
179
  msgid ""
180
  "If you want to help translate this plugin then please visit the %s. You can also use the POT file, "
@@ -183,96 +183,96 @@ msgid ""
183
  "update."
184
  msgstr ""
185
 
186
- #: inc/php/page.php:131
187
  msgid "Maybe not all existed translations are up to date. You are welcome to contribute corrections!"
188
  msgstr ""
189
 
190
- #: inc/php/page.php:132
191
  msgid ""
192
  "Many of plugin users would be delighted if you share your translation with the community. Thanks "
193
  "for your contribution!"
194
  msgstr ""
195
 
196
- #: inc/php/page.php:134
197
  msgid "How does it work?"
198
  msgstr ""
199
 
200
- #: inc/php/page.php:135
201
  msgid ""
202
  "On the \"Main\" tab, place your PHP code in the field, switch the toggle to the \"ON\" position and "
203
  "click the \"Save changes\" button. Enjoy the result of applying your PHP code. It's that simple!"
204
  msgstr ""
205
 
206
- #: inc/php/page.php:137
207
  msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
208
  msgstr ""
209
 
210
- #: inc/php/page.php:138
211
  msgid "Yes. But you need to do it properly, like this:"
212
  msgstr ""
213
 
214
- #: inc/php/page.php:148
215
  msgid "How much of PHP code (characters) I can enter in the text field?"
216
  msgstr ""
217
 
218
- #: inc/php/page.php:149
219
  msgid "I don't limit the number of characters."
220
  msgstr ""
221
 
222
- #: inc/php/page.php:151
223
  msgid "On the plugin settings page, an error message appears. What could be wrong?"
224
  msgstr ""
225
 
226
- #: inc/php/page.php:152
227
  msgid "Here are a few of the most likely causes of the error message:"
228
  msgstr ""
229
 
230
- #: inc/php/page.php:154
231
  msgid ""
232
  "You make a syntax error in the code that you have entered. Check the syntax of your code and try "
233
  "again."
234
  msgstr ""
235
 
236
- #: inc/php/page.php:155
237
  msgid "You entered two functions with the same name. Use a unique names for your functions."
238
  msgstr ""
239
 
240
- #: inc/php/page.php:156
241
  msgid ""
242
  "You have entered function with a name that is already occupied by another function. Use a unique "
243
  "name for your function."
244
  msgstr ""
245
 
246
- #: inc/php/page.php:157
247
  msgid ""
248
  "You are trying to overwrite an existing function (of WordPress, theme, or plugin). Instead, use "
249
  "filters and hooks."
250
  msgstr ""
251
 
252
- #: inc/php/page.php:160
253
  msgid "Does this plugin requires any modification of the theme?"
254
  msgstr ""
255
 
256
- #: inc/php/page.php:161
257
  msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
258
  msgstr ""
259
 
260
- #: inc/php/page.php:163
261
  msgid "Does this require any knowledge of HTML or CSS?"
262
  msgstr ""
263
 
264
- #: inc/php/page.php:164
265
  msgid ""
266
  "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin "
267
  "settings page. But you need to know the HTML or CSS in order to add/remove/modify the HTML or CSS "
268
  "code by using this plugin."
269
  msgstr ""
270
 
271
- #: inc/php/page.php:166
272
  msgid "It's not working. What could be wrong?"
273
  msgstr ""
274
 
275
- #: inc/php/page.php:167
276
  msgid ""
277
  "As with every plugin, it's possible that things don't work. The most common reason for this is a "
278
  "web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and "
@@ -280,7 +280,7 @@ msgid ""
280
  "browser's cache may solve the problem."
281
  msgstr ""
282
 
283
- #: inc/php/page.php:168
284
  msgid ""
285
  "It's impossible to tell what could be wrong exactly, but if you post a support request in the "
286
  "plugin's support forum on WordPress.org, I'd be happy to give it a look and try to help out. Please "
@@ -288,11 +288,11 @@ msgid ""
288
  "seen."
289
  msgstr ""
290
 
291
- #: inc/php/page.php:170
292
  msgid "What to do if this plugin crashed the website?"
293
  msgstr ""
294
 
295
- #: inc/php/page.php:171
296
  msgid ""
297
  "This plugin has a built-in functions for checking the custom code for syntax errors, duplicate "
298
  "functions names, and etc. But plugin is not perfect, so there are times when the entered custom "
@@ -301,37 +301,37 @@ msgid ""
301
  "and all will be fine."
302
  msgstr ""
303
 
304
- #: inc/php/page.php:173
305
  msgid "Via FTP, go to the plugin folder (in <code>wp-content/plugins/my-custom-functions/</code>)."
306
  msgstr ""
307
 
308
- #: inc/php/page.php:174
309
  msgid "Rename the \"START\" file to \"STOP\". This will stop the execution of your custom code."
310
  msgstr ""
311
 
312
- #: inc/php/page.php:175
313
  msgid ""
314
  "Return to the plugin settings page and edit/fix your custom code that you entered before the crash."
315
  msgstr ""
316
 
317
- #: inc/php/page.php:176
318
  msgid "Rename the \"STOP\" file to \"START\" and you're done!"
319
  msgstr ""
320
 
321
- #: inc/php/page.php:178
322
  msgid ""
323
  "This plugin stored you entered code in the database of your website. For getting your code, you "
324
  "also can go to the <code>Database</code> &#10145; Table <code>wp_options</code> &#10145; Option "
325
  "<code>anarcho_cfunctions_settings</code> &#10145; <code>option_value</code>."
326
  msgstr ""
327
 
328
- #: inc/php/page.php:180
329
  msgid ""
330
  "The last WordPress update is preventing me from editing my website that is using this plugin. Why "
331
  "is this?"
332
  msgstr ""
333
 
334
- #: inc/php/page.php:181
335
  msgid ""
336
  "This plugin can not cause such problem. More likely, the problem are related to the settings of the "
337
  "website. It could just be a cache, so please try to clear your website's cache (may be you using a "
@@ -339,51 +339,66 @@ msgid ""
339
  "Also please try to re-login to the website, this too can help."
340
  msgstr ""
341
 
342
- #: inc/php/page.php:183
343
  msgid "Where to report bug if found?"
344
  msgstr ""
345
 
346
- #: inc/php/page.php:185
347
  #, php-format
348
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
349
  msgstr ""
350
 
351
- #: inc/php/page.php:191
352
  msgid "Where to share any ideas or suggestions to make the plugin better?"
353
  msgstr ""
354
 
355
- #: inc/php/page.php:193
356
  #, php-format
357
  msgid "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
358
  msgstr ""
359
 
360
- #: inc/php/page.php:198
361
  msgid "I love this plugin! Can I help somehow?"
362
  msgstr ""
363
 
364
- #: inc/php/page.php:200
365
  #, php-format
366
  msgid ""
367
  "Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate "
368
  "button, and thank you!"
369
  msgstr ""
370
 
371
- #: inc/php/page.php:206
372
  msgid "My question wasn't answered here."
373
  msgstr ""
374
 
375
- #: inc/php/page.php:208
376
  #, php-format
377
  msgid ""
378
  "You can ask your question on the plugin support page %s. But please keep in mind that this plugin "
379
  "is free, and there is no a special support team, so I have no way to answer everyone."
380
  msgstr ""
381
 
382
- #: inc/php/page.php:224
383
- msgid "If you appreciate my work, you can buy me a coffee!"
384
  msgstr ""
385
 
386
- #: inc/php/page.php:225
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
387
  msgid ""
388
  "I spend a lot of time and effort trying to make sure that the themes, plugins and other things I "
389
  "build are useful, and the ultimate proof of that for me is that you actually want to use them. But, "
@@ -391,11 +406,11 @@ msgid ""
391
  "costs and lets me spend more time building things for people like you to enjoy."
392
  msgstr ""
393
 
394
- #: inc/php/page.php:230 inc/php/settings.php:50 inc/php/sidebar.php:39
395
- msgid "Donate with PayPal"
396
  msgstr ""
397
 
398
- #: inc/php/page.php:232
399
  msgid "Thank you for your support!"
400
  msgstr ""
401
 
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: My Custom Functions\n"
6
+ "POT-Creation-Date: 2017-09-15 14:07+0300\n"
7
  "PO-Revision-Date: 2015-08-30 16:22+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \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 ""
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 ""
34
 
35
+ #: inc/php/core.php:84
36
+ msgid "PHP Inserter"
37
  msgstr ""
38
 
39
  #: inc/php/messages.php:26
67
 
68
  #: inc/php/page.php:32
69
  #, php-format
70
+ msgid "by %s Space X-Chimp Studio %s"
71
  msgstr ""
72
 
73
  #: inc/php/page.php:38
78
  msgid "Main"
79
  msgstr ""
80
 
81
+ #: inc/php/page.php:46
82
  msgid "Usage"
83
  msgstr ""
84
 
86
  msgid "F.A.Q."
87
  msgstr ""
88
 
89
+ #: inc/php/page.php:48 inc/php/settings.php:43 inc/php/sidebar.php:32
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 functions (the 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."
107
  msgstr ""
108
 
109
+ #: inc/php/page.php:70
110
  msgid "Place your PHP code in the field."
111
  msgstr ""
112
 
113
+ #: inc/php/page.php:71
114
  msgid "Example of PHP code:"
115
  msgstr ""
116
 
117
+ #: inc/php/page.php:77 inc/php/page.php:78 inc/php/page.php:84
118
  msgid "Note!"
119
  msgstr ""
120
 
121
+ #: inc/php/page.php:77
122
  msgid "Please do not wrap your PHP code in the <code>&lt;?php</code>...<code>?&gt;</code> HTML tags."
123
  msgstr ""
124
 
125
+ #: inc/php/page.php:78
126
  msgid ""
127
  "Before use, please read the instructions on the F.A.Q. tab on what to do in case of a website crash."
128
  msgstr ""
129
 
130
+ #: inc/php/page.php:80
131
  msgid "Switch the toggle to the \"ON\" position."
132
  msgstr ""
133
 
134
+ #: inc/php/page.php:81
135
  msgid "Click the \"Save changes\" button."
136
  msgstr ""
137
 
138
+ #: inc/php/page.php:82
139
  msgid "Enjoy the result of applying your PHP code."
140
  msgstr ""
141
 
142
+ #: inc/php/page.php:82
143
  msgid "It's that simple!"
144
  msgstr ""
145
 
146
+ #: inc/php/page.php:84
147
  msgid "If you want more options then tell me and I will be happy to add it."
148
  msgstr ""
149
 
150
+ #: inc/php/page.php:93
151
  msgid "Frequently Asked Questions"
152
  msgstr ""
153
 
154
+ #: inc/php/page.php:97
155
  msgid ""
156
  "If you have a question, please read the Frequently Asked Questions below to see if the answer is "
157
  "here."
158
  msgstr ""
159
 
160
+ #: inc/php/page.php:119
161
  msgid "Will this plugin work on my WordPress.COM website?"
162
  msgstr ""
163
 
164
+ #: inc/php/page.php:120
165
  msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
166
  msgstr ""
167
 
168
+ #: inc/php/page.php:122
169
  msgid "Can I use this plugin on my language?"
170
  msgstr ""
171
 
172
+ #: inc/php/page.php:123
173
  msgid ""
174
  "Yes. This plugin is ready for translation and has already been translated into several languages."
175
  msgstr ""
176
 
177
+ #: inc/php/page.php:125
178
  #, php-format
179
  msgid ""
180
  "If you want to help translate this plugin then please visit the %s. You can also use the POT file, "
183
  "update."
184
  msgstr ""
185
 
186
+ #: inc/php/page.php:130
187
  msgid "Maybe not all existed translations are up to date. You are welcome to contribute corrections!"
188
  msgstr ""
189
 
190
+ #: inc/php/page.php:131
191
  msgid ""
192
  "Many of plugin users would be delighted if you share your translation with the community. Thanks "
193
  "for your contribution!"
194
  msgstr ""
195
 
196
+ #: inc/php/page.php:133
197
  msgid "How does it work?"
198
  msgstr ""
199
 
200
+ #: inc/php/page.php:134
201
  msgid ""
202
  "On the \"Main\" tab, place your PHP code in the field, switch the toggle to the \"ON\" position and "
203
  "click the \"Save changes\" button. Enjoy the result of applying your PHP code. It's that simple!"
204
  msgstr ""
205
 
206
+ #: inc/php/page.php:136
207
  msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
208
  msgstr ""
209
 
210
+ #: inc/php/page.php:137
211
  msgid "Yes. But you need to do it properly, like this:"
212
  msgstr ""
213
 
214
+ #: inc/php/page.php:147
215
  msgid "How much of PHP code (characters) I can enter in the text field?"
216
  msgstr ""
217
 
218
+ #: inc/php/page.php:148
219
  msgid "I don't limit the number of characters."
220
  msgstr ""
221
 
222
+ #: inc/php/page.php:150
223
  msgid "On the plugin settings page, an error message appears. What could be wrong?"
224
  msgstr ""
225
 
226
+ #: inc/php/page.php:151
227
  msgid "Here are a few of the most likely causes of the error message:"
228
  msgstr ""
229
 
230
+ #: inc/php/page.php:153
231
  msgid ""
232
  "You make a syntax error in the code that you have entered. Check the syntax of your code and try "
233
  "again."
234
  msgstr ""
235
 
236
+ #: inc/php/page.php:154
237
  msgid "You entered two functions with the same name. Use a unique names for your functions."
238
  msgstr ""
239
 
240
+ #: inc/php/page.php:155
241
  msgid ""
242
  "You have entered function with a name that is already occupied by another function. Use a unique "
243
  "name for your function."
244
  msgstr ""
245
 
246
+ #: inc/php/page.php:156
247
  msgid ""
248
  "You are trying to overwrite an existing function (of WordPress, theme, or plugin). Instead, use "
249
  "filters and hooks."
250
  msgstr ""
251
 
252
+ #: inc/php/page.php:159
253
  msgid "Does this plugin requires any modification of the theme?"
254
  msgstr ""
255
 
256
+ #: inc/php/page.php:160
257
  msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
258
  msgstr ""
259
 
260
+ #: inc/php/page.php:162
261
  msgid "Does this require any knowledge of HTML or CSS?"
262
  msgstr ""
263
 
264
+ #: inc/php/page.php:163
265
  msgid ""
266
  "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin "
267
  "settings page. But you need to know the HTML or CSS in order to add/remove/modify the HTML or CSS "
268
  "code by using this plugin."
269
  msgstr ""
270
 
271
+ #: inc/php/page.php:165
272
  msgid "It's not working. What could be wrong?"
273
  msgstr ""
274
 
275
+ #: inc/php/page.php:166
276
  msgid ""
277
  "As with every plugin, it's possible that things don't work. The most common reason for this is a "
278
  "web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and "
280
  "browser's cache may solve the problem."
281
  msgstr ""
282
 
283
+ #: inc/php/page.php:167
284
  msgid ""
285
  "It's impossible to tell what could be wrong exactly, but if you post a support request in the "
286
  "plugin's support forum on WordPress.org, I'd be happy to give it a look and try to help out. Please "
288
  "seen."
289
  msgstr ""
290
 
291
+ #: inc/php/page.php:169
292
  msgid "What to do if this plugin crashed the website?"
293
  msgstr ""
294
 
295
+ #: inc/php/page.php:170
296
  msgid ""
297
  "This plugin has a built-in functions for checking the custom code for syntax errors, duplicate "
298
  "functions names, and etc. But plugin is not perfect, so there are times when the entered custom "
301
  "and all will be fine."
302
  msgstr ""
303
 
304
+ #: inc/php/page.php:172
305
  msgid "Via FTP, go to the plugin folder (in <code>wp-content/plugins/my-custom-functions/</code>)."
306
  msgstr ""
307
 
308
+ #: inc/php/page.php:173
309
  msgid "Rename the \"START\" file to \"STOP\". This will stop the execution of your custom code."
310
  msgstr ""
311
 
312
+ #: inc/php/page.php:174
313
  msgid ""
314
  "Return to the plugin settings page and edit/fix your custom code that you entered before the crash."
315
  msgstr ""
316
 
317
+ #: inc/php/page.php:175
318
  msgid "Rename the \"STOP\" file to \"START\" and you're done!"
319
  msgstr ""
320
 
321
+ #: inc/php/page.php:177
322
  msgid ""
323
  "This plugin stored you entered code in the database of your website. For getting your code, you "
324
  "also can go to the <code>Database</code> &#10145; Table <code>wp_options</code> &#10145; Option "
325
  "<code>anarcho_cfunctions_settings</code> &#10145; <code>option_value</code>."
326
  msgstr ""
327
 
328
+ #: inc/php/page.php:179
329
  msgid ""
330
  "The last WordPress update is preventing me from editing my website that is using this plugin. Why "
331
  "is this?"
332
  msgstr ""
333
 
334
+ #: inc/php/page.php:180
335
  msgid ""
336
  "This plugin can not cause such problem. More likely, the problem are related to the settings of the "
337
  "website. It could just be a cache, so please try to clear your website's cache (may be you using a "
339
  "Also please try to re-login to the website, this too can help."
340
  msgstr ""
341
 
342
+ #: inc/php/page.php:182
343
  msgid "Where to report bug if found?"
344
  msgstr ""
345
 
346
+ #: inc/php/page.php:184
347
  #, php-format
348
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
349
  msgstr ""
350
 
351
+ #: inc/php/page.php:190
352
  msgid "Where to share any ideas or suggestions to make the plugin better?"
353
  msgstr ""
354
 
355
+ #: inc/php/page.php:192
356
  #, php-format
357
  msgid "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
358
  msgstr ""
359
 
360
+ #: inc/php/page.php:197
361
  msgid "I love this plugin! Can I help somehow?"
362
  msgstr ""
363
 
364
+ #: inc/php/page.php:199
365
  #, php-format
366
  msgid ""
367
  "Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate "
368
  "button, and thank you!"
369
  msgstr ""
370
 
371
+ #: inc/php/page.php:205
372
  msgid "My question wasn't answered here."
373
  msgstr ""
374
 
375
+ #: inc/php/page.php:207
376
  #, php-format
377
  msgid ""
378
  "You can ask your question on the plugin support page %s. But please keep in mind that this plugin "
379
  "is free, and there is no a special support team, so I have no way to answer everyone."
380
  msgstr ""
381
 
382
+ #: inc/php/page.php:220
383
+ msgid "Support Me"
384
  msgstr ""
385
 
386
+ #: inc/php/page.php:228 inc/php/settings.php:50 inc/php/sidebar.php:39
387
+ msgid "Donate with PayPal"
388
+ msgstr ""
389
+
390
+ #: inc/php/page.php:233
391
+ #, php-format
392
+ msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp Studio %s."
393
+ msgstr ""
394
+
395
+ #: inc/php/page.php:241
396
+ msgid ""
397
+ "My intention is to create projects that will make this world a better place. I'm really passionate "
398
+ "about my work, I like what I'm doing and hope that you will be enriched by my projects too."
399
+ msgstr ""
400
+
401
+ #: inc/php/page.php:242
402
  msgid ""
403
  "I spend a lot of time and effort trying to make sure that the themes, plugins and other things I "
404
  "build are useful, and the ultimate proof of that for me is that you actually want to use them. But, "
406
  "costs and lets me spend more time building things for people like you to enjoy."
407
  msgstr ""
408
 
409
+ #: inc/php/page.php:243
410
+ msgid "If you appreciate my work, you can buy me a coffee!"
411
  msgstr ""
412
 
413
+ #: inc/php/page.php:244
414
  msgid "Thank you for your support!"
415
  msgstr ""
416
 
my-custom-functions.php CHANGED
@@ -5,12 +5,12 @@
5
  * Description: Easily and safely add your custom functions (PHP code) directly out of your WordPress Admin area, without the need to have an external editor.
6
  * Author: Arthur Gareginyan
7
  * Author URI: https://www.arthurgareginyan.com
8
- * Version: 4.7
9
  * License: GPL3
10
  * Text Domain: my-custom-functions
11
  * Domain Path: /languages/
12
  *
13
- * Copyright 2014-2017 Arthur Gareginyan ( website : https://www.arthurgareginyan.com )
14
  *
15
  * This plugin is free software: you can redistribute it and/or modify
16
  * it under the terms of the GNU General Public License as published by
5
  * Description: Easily and safely add your custom functions (PHP code) directly out of your WordPress Admin area, without the need to have an external editor.
6
  * Author: Arthur Gareginyan
7
  * Author URI: https://www.arthurgareginyan.com
8
+ * Version: 4.8
9
  * License: GPL3
10
  * Text Domain: my-custom-functions
11
  * Domain Path: /languages/
12
  *
13
+ * Copyright 2014-2017 Space X-Chimp Studio ( website : https://www.spacexchimp.com )
14
  *
15
  * This plugin is free software: you can redistribute it and/or modify
16
  * it under the terms of the GNU General Public License as published by
readme.txt CHANGED
@@ -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.8
7
- Stable tag: 4.7
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -89,7 +89,7 @@ Manually via FTP access:
89
  4. Log into Admin Panel of your WordPress website.
90
  5. Activate this plugin through the "`Plugins`" tab.
91
 
92
- After installation and activation, the "`Custom Functions`" menu item will appear in the "`Appearance`" section. Click on this in order to view plugin administration page.
93
 
94
  [More help installing plugins](http://codex.wordpress.org/Managing_Plugins#Installing_Plugins "WordPress Codex: Installing Plugins")
95
 
@@ -104,7 +104,7 @@ A. Yes. This plugin is ready for translation and has already been translated int
104
 
105
  = Q. How does it work? =
106
  A. Simply go to the plugin settings page, place your PHP code in the field, switch the toggle to the "ON" position and click the "Save changes" button. Enjoy the result of applying your PHP code. It's that simple!
107
- You can find the plugin settings page at "`WP Admin Panel`" -> "`Appearance`" -> "`Custom Functions`".
108
 
109
  = Q. Can I use HTML/CSS/JS code integrated in PHP code? =
110
  A. Yes. But you need to do it properly, like this:
@@ -196,6 +196,16 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
196
 
197
  == Changelog ==
198
 
 
 
 
 
 
 
 
 
 
 
199
  = 4.7 =
200
  * Added Spanish translation. (Thanks Patricio Toledo)
201
  * The group name of the '_service_info' option renamed to '_settings_group_si'.
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.8
7
+ Stable tag: 4.8
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
89
  4. Log into Admin Panel of your WordPress website.
90
  5. Activate this plugin through the "`Plugins`" tab.
91
 
92
+ After installation and activation, the "`PHP Inserter`" menu item will appear in the "`Space X-Chimp`" section. Click on this in order to view plugin administration page.
93
 
94
  [More help installing plugins](http://codex.wordpress.org/Managing_Plugins#Installing_Plugins "WordPress Codex: Installing Plugins")
95
 
104
 
105
  = Q. How does it work? =
106
  A. Simply go to the plugin settings page, place your PHP code in the field, switch the toggle to the "ON" position and click the "Save changes" button. Enjoy the result of applying your PHP code. It's that simple!
107
+ You can find the plugin settings page at "`WP Admin Panel`" -> "`Space X-Chimp`" -> "`PHP Inserter`".
108
 
109
  = Q. Can I use HTML/CSS/JS code integrated in PHP code? =
110
  A. Yes. But you need to do it properly, like this:
196
 
197
  == Changelog ==
198
 
199
+ = 4.8 =
200
+ * Added the top level menu item of the brand.
201
+ * The submenu item of the plugin has moved to the menu item of the brand.
202
+ * The menu item of the plugin is renamed.
203
+ * The "Author" tab on the settings page is removed.
204
+ * Content of the "Support" tab on the settings page is updated.
205
+ * Copyright of plugin files is changed to the "Space X-Chimp Studio".
206
+ * The "Support" tab renamed to the "Support Me".
207
+ * The "Usage" tab renamed to the "Usage Instructions".
208
+
209
  = 4.7 =
210
  * Added Spanish translation. (Thanks Patricio Toledo)
211
  * The group name of the '_service_info' option renamed to '_settings_group_si'.