Head and Footer Scripts Inserter - Version 4.34

Version Description

  • Content of the "Usage" section updated.
  • Content of the "FAQ" section updated.
  • Code formatting in the "admin.js" file improved.
  • Code commenting improved.
  • The copyright date updated.
  • Translation files are updated.
Download this release

Release Info

Developer Arthur Gareginyan
Plugin Icon 128x128 Head and Footer Scripts Inserter
Version 4.34
Comparing to
See all releases

Code changes from version 4.33 to 4.34

header-and-footer-scripts-inserter.php CHANGED
@@ -5,12 +5,12 @@
5
  * Description: Easily and safely add your custom HTML code (plus JavaScript, CSS, etc.) to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor.
6
  * Author: Space X-Chimp
7
  * Author URI: https://www.spacexchimp.com
8
- * Version: 4.33
9
  * License: GPL3
10
  * Text Domain: header-and-footer-scripts-inserter
11
  * Domain Path: /languages/
12
  *
13
- * Copyright 2016-2018 Space X-Chimp ( website : https://www.spacexchimp.com )
14
  *
15
  * This plugin is free software: you can redistribute it and/or modify
16
  * it under the terms of the GNU General Public License as published by
5
  * Description: Easily and safely add your custom HTML code (plus JavaScript, CSS, etc.) to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor.
6
  * Author: Space X-Chimp
7
  * Author URI: https://www.spacexchimp.com
8
+ * Version: 4.34
9
  * License: GPL3
10
  * Text Domain: header-and-footer-scripts-inserter
11
  * Domain Path: /languages/
12
  *
13
+ * Copyright 2016-2019 Space X-Chimp ( website : https://www.spacexchimp.com )
14
  *
15
  * This plugin is free software: you can redistribute it and/or modify
16
  * it under the terms of the GNU General Public License as published by
inc/css/admin.css CHANGED
@@ -4,7 +4,7 @@
4
  * @package Head and Footer Scripts Inserter
5
  * @author Arthur Gareginyan
6
  * @link https://www.spacexchimp.com
7
- * @copyright Copyright (c) 2016-2018 Space X-Chimp. All Rights Reserved.
8
  */
9
 
10
 
4
  * @package Head and Footer Scripts Inserter
5
  * @author Arthur Gareginyan
6
  * @link https://www.spacexchimp.com
7
+ * @copyright Copyright (c) 2016-2019 Space X-Chimp. All Rights Reserved.
8
  */
9
 
10
 
inc/js/admin.js CHANGED
@@ -4,7 +4,7 @@
4
  * @package Head and Footer Scripts Inserter
5
  * @author Arthur Gareginyan
6
  * @link https://www.spacexchimp.com
7
- * @copyright Copyright (c) 2016-2018 Space X-Chimp. All Rights Reserved.
8
  */
9
 
10
 
@@ -24,14 +24,14 @@ jQuery(document).ready(function($) {
24
 
25
  // Add questions and answers into spoilers and color them in different colors
26
  $('.panel-group .panel').each(function(i) {
27
- $('.question-' + (i+1) ).appendTo( $('h4', this) );
28
- $('.answer-' + (i+1) ).appendTo( $('.panel-body', this) );
29
-
30
- if ( $(this).find('h4 div').hasClass('question-red') ) {
31
- $(this).addClass('panel-danger');
32
- } else {
33
- $(this).addClass('panel-info');
34
- }
35
  });
36
 
37
  });
4
  * @package Head and Footer Scripts Inserter
5
  * @author Arthur Gareginyan
6
  * @link https://www.spacexchimp.com
7
+ * @copyright Copyright (c) 2016-2019 Space X-Chimp. All Rights Reserved.
8
  */
9
 
10
 
24
 
25
  // Add questions and answers into spoilers and color them in different colors
26
  $('.panel-group .panel').each(function(i) {
27
+ $('.question-' + (i+1) ).appendTo( $('h4', this) );
28
+ $('.answer-' + (i+1) ).appendTo( $('.panel-body', this) );
29
+
30
+ if ( $(this).find('h4 div').hasClass('question-red') ) {
31
+ $(this).addClass('panel-danger');
32
+ } else {
33
+ $(this).addClass('panel-info');
34
+ }
35
  });
36
 
37
  });
inc/js/codemirror-settings.js CHANGED
@@ -4,7 +4,7 @@
4
  * @package Head and Footer Scripts Inserter
5
  * @author Arthur Gareginyan
6
  * @link https://www.spacexchimp.com
7
- * @copyright Copyright (c) 2016-2018 Space X-Chimp. All Rights Reserved.
8
  */
9
 
10
 
4
  * @package Head and Footer Scripts Inserter
5
  * @author Arthur Gareginyan
6
  * @link https://www.spacexchimp.com
7
+ * @copyright Copyright (c) 2016-2019 Space X-Chimp. All Rights Reserved.
8
  */
9
 
10
 
inc/php/functional.php CHANGED
@@ -15,7 +15,7 @@ function spacexchimp_p006_prepare( $option ) {
15
  return;
16
  }
17
 
18
- // Read options from database and declare variables
19
  $options = get_option( SPACEXCHIMP_P006_SETTINGS . '_settings' );
20
  $data = !empty( $options[$option] ) ? $options[$option] : '';
21
 
15
  return;
16
  }
17
 
18
+ // Retrieve options from database and declare variables
19
  $options = get_option( SPACEXCHIMP_P006_SETTINGS . '_settings' );
20
  $data = !empty( $options[$option] ) ? $options[$option] : '';
21
 
inc/php/page.php CHANGED
@@ -72,12 +72,12 @@ function spacexchimp_p006_render_submenu_page() {
72
  <li><?php _e( 'Click the "Save changes" button.', $text ); ?></li>
73
  <li><?php _e( 'Enjoy the result of applying your custom HTML code.', $text ); ?> <?php _e( 'It\'s that simple!', $text ); ?></li>
74
  </ol>
75
- <p class="note"><b><?php _e( 'Note!', $text ); ?></b> <?php printf(
76
- __( 'If you want more options, then %s let us know %s and we will be happy to add them.', $text ),
77
- '<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
78
- '</a>'
79
- );
80
- ?>
81
  </p>
82
  </div>
83
  </div>
@@ -96,7 +96,7 @@ function spacexchimp_p006_render_submenu_page() {
96
 
97
  <div class="panel-group" id="collapse-group">
98
  <?php
99
- $loopvalue = '13';
100
  for ( $i = 1; $i <= $loopvalue; $i++ ) {
101
  echo '<div class="panel panel-default">
102
  <div class="panel-heading">
@@ -160,39 +160,47 @@ add_action( 'wp_head', 'my_custom_html_code' );</code></pre>
160
  ?>
161
  </div>
162
 
163
- <div class="question-8 question-red"><?php _e( 'It\'s not working. What could be wrong?', $text ); ?></div>
164
- <div class="answer-8"><?php _e( 'As with every plugin, it\'s possible that things don\'t work. The most common reason for this is a web browser\'s cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load. This is called the browser\'s cache.​ Clearing your browser\'s cache may solve the problem.', $text ); ?><br><br>
 
 
 
 
 
 
 
 
165
  <?php _e( 'It\'s impossible to tell what could be wrong exactly, but if you post a support request in the plugin\'s support forum on WordPress.org, we\'d be happy to give it a look and try to help out. Please include as much information as possible, including a link to your website where the problem can be seen.', $text ); ?></div>
166
 
167
- <div class="question-9 question-red"><?php _e( 'The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?', $text ); ?></div>
168
- <div class="answer-9"><?php _e( 'This plugin can not cause such problem. More likely, the problem are related to the settings of the website. It could just be a cache, so please try to clear your website\'s cache (may be you using a caching plugin, or some web service such as the CloudFlare) and then the cache of your web browser. Also please try to re-login to the website, this too can help.', $text ); ?></div>
169
 
170
- <div class="question-10 question-red"><?php _e( 'Where to report bug if found?', $text ); ?></div>
171
- <div class="answer-10"><?php printf(
172
  __( 'Bug reports are very welcome! Please visit %s our contact page %s and report. Please do not forget to specify the name of the plugin. Thank you!', $text ),
173
  '<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
174
  '</a>'
175
  );
176
  ?></div>
177
 
178
- <div class="question-11"><?php _e( 'Where to share any ideas or suggestions to make the plugin better?', $text ); ?></div>
179
- <div class="answer-11"><?php printf(
180
  __( 'Any suggestions are very welcome! Please visit %s our contact page %s. Please do not forget to specify the name of the plugin. Thank you!', $text ),
181
  '<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
182
  '</a>'
183
  );
184
  ?></div>
185
 
186
- <div class="question-12"><?php _e( 'I love this plugin! Can I help somehow?', $text ); ?></div>
187
- <div class="answer-12"><?php printf(
188
  __( 'Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!', $text ),
189
  '<a href="https://www.spacexchimp.com/donate.html" target="_blank">',
190
  '</a>'
191
  );
192
  ?></div>
193
 
194
- <div class="question-13"><?php _e( 'My question wasn\'t answered here.', $text ); ?></div>
195
- <div class="answer-13"><?php printf(
196
  __( 'You can ask your question on %s this page %s. But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone.', $text ),
197
  '<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
198
  '</a>'
72
  <li><?php _e( 'Click the "Save changes" button.', $text ); ?></li>
73
  <li><?php _e( 'Enjoy the result of applying your custom HTML code.', $text ); ?> <?php _e( 'It\'s that simple!', $text ); ?></li>
74
  </ol>
75
+ <p class="note"><?php printf(
76
+ __( 'If you want more options, then %s let us know %s and we will be happy to add them.', $text ),
77
+ '<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
78
+ '</a>'
79
+ );
80
+ ?>
81
  </p>
82
  </div>
83
  </div>
96
 
97
  <div class="panel-group" id="collapse-group">
98
  <?php
99
+ $loopvalue = '14';
100
  for ( $i = 1; $i <= $loopvalue; $i++ ) {
101
  echo '<div class="panel panel-default">
102
  <div class="panel-heading">
160
  ?>
161
  </div>
162
 
163
+ <div class="question-8 question-red"><?php _e( 'My custom HTML code is not working. What could be wrong?', $text ); ?></div>
164
+ <div class="answer-8"><?php _e( 'It happens that your custom HTML code that you insert on the plugin page does not work, even if an error message does not appear. Here are a few of the most likely causes of the issue:', $text ); ?>
165
+ <ol class="custom-counter">
166
+ <li><?php _e( 'You have a typo during the insertion of your custom HTML code.', $text ); ?></li>
167
+ <li><?php _e( 'Your custom HTML code has a syntax error.', $text ); ?></li>
168
+ <li><?php _e( 'Your custom HTML code is incorrect and may not work.', $text ); ?></li>
169
+ </ol></div>
170
+
171
+ <div class="question-9 question-red"><?php _e( 'It\'s not working. What could be wrong?', $text ); ?></div>
172
+ <div class="answer-9"><?php _e( 'As with every plugin, it\'s possible that things don\'t work. The most common reason for this is a web browser\'s cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load. This is called the browser\'s cache.​ Clearing your browser\'s cache may solve the problem.', $text ); ?><br><br>
173
  <?php _e( 'It\'s impossible to tell what could be wrong exactly, but if you post a support request in the plugin\'s support forum on WordPress.org, we\'d be happy to give it a look and try to help out. Please include as much information as possible, including a link to your website where the problem can be seen.', $text ); ?></div>
174
 
175
+ <div class="question-10 question-red"><?php _e( 'The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?', $text ); ?></div>
176
+ <div class="answer-10"><?php _e( 'This plugin can not cause such problem. More likely, the problem are related to the settings of the website. It could just be a cache, so please try to clear your website\'s cache (may be you using a caching plugin, or some web service such as the CloudFlare) and then the cache of your web browser. Also please try to re-login to the website, this too can help.', $text ); ?></div>
177
 
178
+ <div class="question-11 question-red"><?php _e( 'Where to report bug if found?', $text ); ?></div>
179
+ <div class="answer-11"><?php printf(
180
  __( 'Bug reports are very welcome! Please visit %s our contact page %s and report. Please do not forget to specify the name of the plugin. Thank you!', $text ),
181
  '<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
182
  '</a>'
183
  );
184
  ?></div>
185
 
186
+ <div class="question-12"><?php _e( 'Where to share any ideas or suggestions to make the plugin better?', $text ); ?></div>
187
+ <div class="answer-12"><?php printf(
188
  __( 'Any suggestions are very welcome! Please visit %s our contact page %s. Please do not forget to specify the name of the plugin. Thank you!', $text ),
189
  '<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
190
  '</a>'
191
  );
192
  ?></div>
193
 
194
+ <div class="question-13"><?php _e( 'I love this plugin! Can I help somehow?', $text ); ?></div>
195
+ <div class="answer-13"><?php printf(
196
  __( 'Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!', $text ),
197
  '<a href="https://www.spacexchimp.com/donate.html" target="_blank">',
198
  '</a>'
199
  );
200
  ?></div>
201
 
202
+ <div class="question-14"><?php _e( 'My question wasn\'t answered here.', $text ); ?></div>
203
+ <div class="answer-14"><?php printf(
204
  __( 'You can ask your question on %s this page %s. But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone.', $text ),
205
  '<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
206
  '</a>'
inc/php/settings.php CHANGED
@@ -17,7 +17,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
17
  <?php settings_fields( SPACEXCHIMP_P006_SETTINGS . '_settings_group' ); ?>
18
 
19
  <?php
20
- // Get options from the database
21
  $options = get_option( SPACEXCHIMP_P006_SETTINGS . '_settings' );
22
 
23
  // Set default value if option is empty
17
  <?php settings_fields( SPACEXCHIMP_P006_SETTINGS . '_settings_group' ); ?>
18
 
19
  <?php
20
+ // Retrieve options from database
21
  $options = get_option( SPACEXCHIMP_P006_SETTINGS . '_settings' );
22
 
23
  // Set default value if option is empty
languages/header-and-footer-scripts-inserter-de_DE.mo CHANGED
Binary file
languages/header-and-footer-scripts-inserter-de_DE.po CHANGED
@@ -3,8 +3,8 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Head and Footer Scripts Inserter\n"
6
- "POT-Creation-Date: 2018-10-23 19:12+0300\n"
7
- "PO-Revision-Date: 2018-10-23 19:12+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: German\n"
10
  "Language: de_DE\n"
@@ -102,7 +102,7 @@ msgstr ""
102
  msgid "Place your custom HTML code in the code editor field."
103
  msgstr ""
104
 
105
- #: inc/php/page.php:70 inc/php/page.php:75
106
  msgid "Note!"
107
  msgstr "Achtung!"
108
 
@@ -210,87 +210,108 @@ msgid "To apply the PHP code on a website, we can recommend you to use another o
210
  msgstr ""
211
 
212
  #: inc/php/page.php:163
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
213
  msgid "It's not working. What could be wrong?"
214
  msgstr "Es funktioniert nicht. Was könnte falsch sein?"
215
 
216
- #: inc/php/page.php:164
217
  msgid "As with every plugin, it's possible that things don't work. The most common reason for this is a web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load. This is called the browser's cache.​ Clearing your browser's cache may solve the problem."
218
  msgstr "Wie bei jedem Plugin ist es möglich, dass nicht alles funktioniert. Der häufigste Grund dafür ist der Cache Ihres Webbrowsers. Jeder Webbrowser speichert den Cache der besuchten Webseite (Seiten, Bilder, usw.) um die Bandbreite zu reduzieren. Das nennt man den Browser Cache. Wenn Sie den Cache Ihres Browsers löschen, könnte das Problem behoben sein."
219
 
220
- #: inc/php/page.php:165
221
  msgid "It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's support forum on WordPress.org, we'd be happy to give it a look and try to help out. Please include as much information as possible, including a link to your website where the problem can be seen."
222
  msgstr ""
223
 
224
- #: inc/php/page.php:167
225
  msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
226
  msgstr "Das letzte WordPress-Update hindert mich daran, meine Webseite, die dieses Plugin verwendet, zu bearbeiten. Warum ist das so?"
227
 
228
- #: inc/php/page.php:168
229
  msgid "This plugin can not cause such problem. More likely, the problem are related to the settings of the website. It could just be a cache, so please try to clear your website's cache (may be you using a caching plugin, or some web service such as the CloudFlare) and then the cache of your web browser. Also please try to re-login to the website, this too can help."
230
  msgstr "Dieses Plugin kann ein solches Problem nicht verursachen. Wahrscheinlich hängt das Problem mit den Einstellungen der Webseite zusammen. Es könnte einfach nur ein Cache sein. Versuchen Sie daher, den Cache Ihrer Webseite zu löschen (möglicherweise verwenden Sie ein Caching-Plugin oder einen Webservice wie CloudFlare) und danach den Cache Ihres Webbrowsers. Versuchen Sie auch, sich erneut auf der Webseite anzumelden, auch dies kann helfen."
231
 
232
- #: inc/php/page.php:170
233
  msgid "Where to report bug if found?"
234
  msgstr "Wo kann ich eine Fehler melden?"
235
 
236
- #: inc/php/page.php:172
237
  #, php-format
238
  msgid "Bug reports are very welcome! Please visit %s our contact page %s and report. Please do not forget to specify the name of the plugin. Thank you!"
239
  msgstr ""
240
 
241
- #: inc/php/page.php:178
242
  msgid "Where to share any ideas or suggestions to make the plugin better?"
243
  msgstr "Wo können Sie Ideen oder Vorschläge loswerden, um das Plugin besser zu machen?"
244
 
245
- #: inc/php/page.php:180
246
  #, php-format
247
  msgid "Any suggestions are very welcome! Please visit %s our contact page %s. Please do not forget to specify the name of the plugin. Thank you!"
248
  msgstr ""
249
 
250
- #: inc/php/page.php:186
251
  msgid "I love this plugin! Can I help somehow?"
252
  msgstr "Ich liebe dieses Plugin! Kann ich Irgendwie helfen?"
253
 
254
- #: inc/php/page.php:188
255
  #, php-format
256
  msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
257
  msgstr "Ja, jede finanzielle Unterstützung ist Willkommen! Besuchen Sie %s meine Webseite %s, klicken Sie auf den Spenden Button und Danke!"
258
 
259
- #: inc/php/page.php:194
260
  msgid "My question wasn't answered here."
261
  msgstr "Meine Fragen wurden nicht beantwortet."
262
 
263
- #: inc/php/page.php:196
264
  #, php-format
265
  msgid "You can ask your question on %s this page %s. But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
266
  msgstr ""
267
 
268
- #: inc/php/page.php:210
269
  msgid "Support Us"
270
  msgstr "Unterstütze uns"
271
 
272
- #: inc/php/page.php:218 inc/php/settings.php:94 inc/php/sidebar.php:54
273
  msgid "Donate with PayPal"
274
  msgstr "Spende mit PayPal"
275
 
276
- #: inc/php/page.php:223
277
  #, php-format
278
  msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
279
  msgstr ""
280
 
281
- #: inc/php/page.php:231
282
  msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
283
  msgstr ""
284
 
285
- #: inc/php/page.php:232
286
  msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
287
  msgstr "Ich habe viel Zeit und Mühe darauf verwendet sicherzustellen, dass die Themes, Plugins und andere Dinge, die ich entwickle, nützlich sind. Der ultimative Beweis für mich ist, dass Sie sie tatsächlich verwenden. Aber Jeder kleine Beitrag trägt dazu bei, meine Kosten zu decken und schenkt mir mehr Zeit damit zu verbringen, Dinge für Leute wie Sie zu gestalten."
288
 
289
- #: inc/php/page.php:233
290
  msgid "If you appreciate our work, you can buy us a cup of coffee!"
291
  msgstr "Wenn Ihnen meine Arbeit gefällt, können Sie mir gerne einen Kaffee kaufen!"
292
 
293
- #: inc/php/page.php:234
294
  msgid "Thank you for your support!"
295
  msgstr "Danke für Ihre Unterstützung!"
296
 
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Head and Footer Scripts Inserter\n"
6
+ "POT-Creation-Date: 2019-01-11 20:35+0200\n"
7
+ "PO-Revision-Date: 2019-01-11 20:35+0200\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: German\n"
10
  "Language: de_DE\n"
102
  msgid "Place your custom HTML code in the code editor field."
103
  msgstr ""
104
 
105
+ #: inc/php/page.php:70
106
  msgid "Note!"
107
  msgstr "Achtung!"
108
 
210
  msgstr ""
211
 
212
  #: inc/php/page.php:163
213
+ #| msgid "It's not working. What could be wrong?"
214
+ msgid "My custom HTML code is not working. What could be wrong?"
215
+ msgstr ""
216
+
217
+ #: inc/php/page.php:164
218
+ msgid "It happens that your custom HTML code that you insert on the plugin page does not work, even if an error message does not appear. Here are a few of the most likely causes of the issue:"
219
+ msgstr ""
220
+
221
+ #: inc/php/page.php:166
222
+ msgid "You have a typo during the insertion of your custom HTML code."
223
+ msgstr ""
224
+
225
+ #: inc/php/page.php:167
226
+ msgid "Your custom HTML code has a syntax error."
227
+ msgstr ""
228
+
229
+ #: inc/php/page.php:168
230
+ msgid "Your custom HTML code is incorrect and may not work."
231
+ msgstr ""
232
+
233
+ #: inc/php/page.php:171
234
  msgid "It's not working. What could be wrong?"
235
  msgstr "Es funktioniert nicht. Was könnte falsch sein?"
236
 
237
+ #: inc/php/page.php:172
238
  msgid "As with every plugin, it's possible that things don't work. The most common reason for this is a web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load. This is called the browser's cache.​ Clearing your browser's cache may solve the problem."
239
  msgstr "Wie bei jedem Plugin ist es möglich, dass nicht alles funktioniert. Der häufigste Grund dafür ist der Cache Ihres Webbrowsers. Jeder Webbrowser speichert den Cache der besuchten Webseite (Seiten, Bilder, usw.) um die Bandbreite zu reduzieren. Das nennt man den Browser Cache. Wenn Sie den Cache Ihres Browsers löschen, könnte das Problem behoben sein."
240
 
241
+ #: inc/php/page.php:173
242
  msgid "It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's support forum on WordPress.org, we'd be happy to give it a look and try to help out. Please include as much information as possible, including a link to your website where the problem can be seen."
243
  msgstr ""
244
 
245
+ #: inc/php/page.php:175
246
  msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
247
  msgstr "Das letzte WordPress-Update hindert mich daran, meine Webseite, die dieses Plugin verwendet, zu bearbeiten. Warum ist das so?"
248
 
249
+ #: inc/php/page.php:176
250
  msgid "This plugin can not cause such problem. More likely, the problem are related to the settings of the website. It could just be a cache, so please try to clear your website's cache (may be you using a caching plugin, or some web service such as the CloudFlare) and then the cache of your web browser. Also please try to re-login to the website, this too can help."
251
  msgstr "Dieses Plugin kann ein solches Problem nicht verursachen. Wahrscheinlich hängt das Problem mit den Einstellungen der Webseite zusammen. Es könnte einfach nur ein Cache sein. Versuchen Sie daher, den Cache Ihrer Webseite zu löschen (möglicherweise verwenden Sie ein Caching-Plugin oder einen Webservice wie CloudFlare) und danach den Cache Ihres Webbrowsers. Versuchen Sie auch, sich erneut auf der Webseite anzumelden, auch dies kann helfen."
252
 
253
+ #: inc/php/page.php:178
254
  msgid "Where to report bug if found?"
255
  msgstr "Wo kann ich eine Fehler melden?"
256
 
257
+ #: inc/php/page.php:180
258
  #, php-format
259
  msgid "Bug reports are very welcome! Please visit %s our contact page %s and report. Please do not forget to specify the name of the plugin. Thank you!"
260
  msgstr ""
261
 
262
+ #: inc/php/page.php:186
263
  msgid "Where to share any ideas or suggestions to make the plugin better?"
264
  msgstr "Wo können Sie Ideen oder Vorschläge loswerden, um das Plugin besser zu machen?"
265
 
266
+ #: inc/php/page.php:188
267
  #, php-format
268
  msgid "Any suggestions are very welcome! Please visit %s our contact page %s. Please do not forget to specify the name of the plugin. Thank you!"
269
  msgstr ""
270
 
271
+ #: inc/php/page.php:194
272
  msgid "I love this plugin! Can I help somehow?"
273
  msgstr "Ich liebe dieses Plugin! Kann ich Irgendwie helfen?"
274
 
275
+ #: inc/php/page.php:196
276
  #, php-format
277
  msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
278
  msgstr "Ja, jede finanzielle Unterstützung ist Willkommen! Besuchen Sie %s meine Webseite %s, klicken Sie auf den Spenden Button und Danke!"
279
 
280
+ #: inc/php/page.php:202
281
  msgid "My question wasn't answered here."
282
  msgstr "Meine Fragen wurden nicht beantwortet."
283
 
284
+ #: inc/php/page.php:204
285
  #, php-format
286
  msgid "You can ask your question on %s this page %s. But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
287
  msgstr ""
288
 
289
+ #: inc/php/page.php:218
290
  msgid "Support Us"
291
  msgstr "Unterstütze uns"
292
 
293
+ #: inc/php/page.php:226 inc/php/settings.php:94 inc/php/sidebar.php:54
294
  msgid "Donate with PayPal"
295
  msgstr "Spende mit PayPal"
296
 
297
+ #: inc/php/page.php:231
298
  #, php-format
299
  msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
300
  msgstr ""
301
 
302
+ #: inc/php/page.php:239
303
  msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
304
  msgstr ""
305
 
306
+ #: inc/php/page.php:240
307
  msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
308
  msgstr "Ich habe viel Zeit und Mühe darauf verwendet sicherzustellen, dass die Themes, Plugins und andere Dinge, die ich entwickle, nützlich sind. Der ultimative Beweis für mich ist, dass Sie sie tatsächlich verwenden. Aber Jeder kleine Beitrag trägt dazu bei, meine Kosten zu decken und schenkt mir mehr Zeit damit zu verbringen, Dinge für Leute wie Sie zu gestalten."
309
 
310
+ #: inc/php/page.php:241
311
  msgid "If you appreciate our work, you can buy us a cup of coffee!"
312
  msgstr "Wenn Ihnen meine Arbeit gefällt, können Sie mir gerne einen Kaffee kaufen!"
313
 
314
+ #: inc/php/page.php:242
315
  msgid "Thank you for your support!"
316
  msgstr "Danke für Ihre Unterstützung!"
317
 
languages/header-and-footer-scripts-inserter-es_ES.mo CHANGED
Binary file
languages/header-and-footer-scripts-inserter-es_ES.po CHANGED
@@ -3,8 +3,8 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Head and Footer Scripts Inserter\n"
6
- "POT-Creation-Date: 2018-10-23 19:12+0300\n"
7
- "PO-Revision-Date: 2018-10-23 19:12+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Spanish\n"
10
  "Language: es_ES\n"
@@ -102,7 +102,7 @@ msgstr "Debes ir a la pestaña “Principal”."
102
  msgid "Place your custom HTML code in the code editor field."
103
  msgstr ""
104
 
105
- #: inc/php/page.php:70 inc/php/page.php:75
106
  msgid "Note!"
107
  msgstr "¡Nota!"
108
 
@@ -210,87 +210,108 @@ msgid "To apply the PHP code on a website, we can recommend you to use another o
210
  msgstr ""
211
 
212
  #: inc/php/page.php:163
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
213
  msgid "It's not working. What could be wrong?"
214
  msgstr "No funciona. ¿Qué podría estar mal?"
215
 
216
- #: inc/php/page.php:164
217
  msgid "As with every plugin, it's possible that things don't work. The most common reason for this is a web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load. This is called the browser's cache.​ Clearing your browser's cache may solve the problem."
218
  msgstr "Como con todos los complementos, es posible que las cosas no funcionen. La razón más común para esto es la caché de un navegador web. Cada navegador web almacena una caché de los sitios web que visitas (páginas, imágenes y etc.) para reducir el uso del ancho de banda y la carga del servidor. Esto se denomina caché del navegador. Limpiar la caché del navegador puede resolver el problema."
219
 
220
- #: inc/php/page.php:165
221
  msgid "It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's support forum on WordPress.org, we'd be happy to give it a look and try to help out. Please include as much information as possible, including a link to your website where the problem can be seen."
222
  msgstr ""
223
 
224
- #: inc/php/page.php:167
225
  msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
226
  msgstr "La última actualización de WordPress me impide editar mi sitio web que está utilizando este complemento. ¿Porqué sucede esto?"
227
 
228
- #: inc/php/page.php:168
229
  msgid "This plugin can not cause such problem. More likely, the problem are related to the settings of the website. It could just be a cache, so please try to clear your website's cache (may be you using a caching plugin, or some web service such as the CloudFlare) and then the cache of your web browser. Also please try to re-login to the website, this too can help."
230
  msgstr "Este complemento no puede causar este problema. Lo más probable es que el problema esté relacionado con la configuración del sitio web. Podría ser sólo la caché, así que intenta borrar la caché de tu sitio web (puede ser que utilices un complemento de caché o algún servicio web como CloudFlare) y luego la caché de tu navegador web. También intenta volver a conectarte al sitio web, esto también puede ayudar."
231
 
232
- #: inc/php/page.php:170
233
  msgid "Where to report bug if found?"
234
  msgstr "¿Dónde informar el error si se encuentra?"
235
 
236
- #: inc/php/page.php:172
237
  #, php-format
238
  msgid "Bug reports are very welcome! Please visit %s our contact page %s and report. Please do not forget to specify the name of the plugin. Thank you!"
239
  msgstr ""
240
 
241
- #: inc/php/page.php:178
242
  msgid "Where to share any ideas or suggestions to make the plugin better?"
243
  msgstr "¿Dónde compartir ideas o sugerencias para mejorar el complemento?"
244
 
245
- #: inc/php/page.php:180
246
  #, php-format
247
  msgid "Any suggestions are very welcome! Please visit %s our contact page %s. Please do not forget to specify the name of the plugin. Thank you!"
248
  msgstr ""
249
 
250
- #: inc/php/page.php:186
251
  msgid "I love this plugin! Can I help somehow?"
252
  msgstr "Me encanta este complemento! ¿Puedo ayudar de alguna manera?"
253
 
254
- #: inc/php/page.php:188
255
  #, php-format
256
  msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
257
  msgstr "Sí, cualquier contribución financiera es bienvenida! Simplemente visita %s mi sitio web %s, has clic en el botón DONAR y gracias!"
258
 
259
- #: inc/php/page.php:194
260
  msgid "My question wasn't answered here."
261
  msgstr "Mi pregunta no fue contestada aquí."
262
 
263
- #: inc/php/page.php:196
264
  #, php-format
265
  msgid "You can ask your question on %s this page %s. But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
266
  msgstr "Puede hacer tu pregunta en %s la página de soporte del complementos %s. Pero ten en cuenta que este complemento es gratuito, y no hay un equipo de soporte especial, así que no tengo forma de responder a todos."
267
 
268
- #: inc/php/page.php:210
269
  msgid "Support Us"
270
  msgstr "¡Apoyanos!"
271
 
272
- #: inc/php/page.php:218 inc/php/settings.php:94 inc/php/sidebar.php:54
273
  msgid "Donate with PayPal"
274
  msgstr "Donar con PayPal"
275
 
276
- #: inc/php/page.php:223
277
  #, php-format
278
  msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
279
  msgstr ""
280
 
281
- #: inc/php/page.php:231
282
  msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
283
  msgstr ""
284
 
285
- #: inc/php/page.php:232
286
  msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
287
  msgstr "Paso mucho tiempo y esfuerzo tratando de asegurarme que los temas, complementos y otras cosas que construyo sean útiles, y la prueba definitiva para mí de que son útiles, es que realmente desea utilizarlos. Pero, soy un desarrollador independiente, sin un ingreso regular, por lo que cada pequeña contribución me ayuda a cubrir mis costos y me deja pasar más tiempo construyendo cosas para que la gente como tú lo disfrute."
288
 
289
- #: inc/php/page.php:233
290
  msgid "If you appreciate our work, you can buy us a cup of coffee!"
291
  msgstr "Si aprecias mi trabajo, puedes comprarme un café!"
292
 
293
- #: inc/php/page.php:234
294
  msgid "Thank you for your support!"
295
  msgstr "¡Gracias por tu apoyo!"
296
 
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Head and Footer Scripts Inserter\n"
6
+ "POT-Creation-Date: 2019-01-11 20:35+0200\n"
7
+ "PO-Revision-Date: 2019-01-11 20:35+0200\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Spanish\n"
10
  "Language: es_ES\n"
102
  msgid "Place your custom HTML code in the code editor field."
103
  msgstr ""
104
 
105
+ #: inc/php/page.php:70
106
  msgid "Note!"
107
  msgstr "¡Nota!"
108
 
210
  msgstr ""
211
 
212
  #: inc/php/page.php:163
213
+ #| msgid "It's not working. What could be wrong?"
214
+ msgid "My custom HTML code is not working. What could be wrong?"
215
+ msgstr ""
216
+
217
+ #: inc/php/page.php:164
218
+ msgid "It happens that your custom HTML code that you insert on the plugin page does not work, even if an error message does not appear. Here are a few of the most likely causes of the issue:"
219
+ msgstr ""
220
+
221
+ #: inc/php/page.php:166
222
+ msgid "You have a typo during the insertion of your custom HTML code."
223
+ msgstr ""
224
+
225
+ #: inc/php/page.php:167
226
+ msgid "Your custom HTML code has a syntax error."
227
+ msgstr ""
228
+
229
+ #: inc/php/page.php:168
230
+ msgid "Your custom HTML code is incorrect and may not work."
231
+ msgstr ""
232
+
233
+ #: inc/php/page.php:171
234
  msgid "It's not working. What could be wrong?"
235
  msgstr "No funciona. ¿Qué podría estar mal?"
236
 
237
+ #: inc/php/page.php:172
238
  msgid "As with every plugin, it's possible that things don't work. The most common reason for this is a web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load. This is called the browser's cache.​ Clearing your browser's cache may solve the problem."
239
  msgstr "Como con todos los complementos, es posible que las cosas no funcionen. La razón más común para esto es la caché de un navegador web. Cada navegador web almacena una caché de los sitios web que visitas (páginas, imágenes y etc.) para reducir el uso del ancho de banda y la carga del servidor. Esto se denomina caché del navegador. Limpiar la caché del navegador puede resolver el problema."
240
 
241
+ #: inc/php/page.php:173
242
  msgid "It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's support forum on WordPress.org, we'd be happy to give it a look and try to help out. Please include as much information as possible, including a link to your website where the problem can be seen."
243
  msgstr ""
244
 
245
+ #: inc/php/page.php:175
246
  msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
247
  msgstr "La última actualización de WordPress me impide editar mi sitio web que está utilizando este complemento. ¿Porqué sucede esto?"
248
 
249
+ #: inc/php/page.php:176
250
  msgid "This plugin can not cause such problem. More likely, the problem are related to the settings of the website. It could just be a cache, so please try to clear your website's cache (may be you using a caching plugin, or some web service such as the CloudFlare) and then the cache of your web browser. Also please try to re-login to the website, this too can help."
251
  msgstr "Este complemento no puede causar este problema. Lo más probable es que el problema esté relacionado con la configuración del sitio web. Podría ser sólo la caché, así que intenta borrar la caché de tu sitio web (puede ser que utilices un complemento de caché o algún servicio web como CloudFlare) y luego la caché de tu navegador web. También intenta volver a conectarte al sitio web, esto también puede ayudar."
252
 
253
+ #: inc/php/page.php:178
254
  msgid "Where to report bug if found?"
255
  msgstr "¿Dónde informar el error si se encuentra?"
256
 
257
+ #: inc/php/page.php:180
258
  #, php-format
259
  msgid "Bug reports are very welcome! Please visit %s our contact page %s and report. Please do not forget to specify the name of the plugin. Thank you!"
260
  msgstr ""
261
 
262
+ #: inc/php/page.php:186
263
  msgid "Where to share any ideas or suggestions to make the plugin better?"
264
  msgstr "¿Dónde compartir ideas o sugerencias para mejorar el complemento?"
265
 
266
+ #: inc/php/page.php:188
267
  #, php-format
268
  msgid "Any suggestions are very welcome! Please visit %s our contact page %s. Please do not forget to specify the name of the plugin. Thank you!"
269
  msgstr ""
270
 
271
+ #: inc/php/page.php:194
272
  msgid "I love this plugin! Can I help somehow?"
273
  msgstr "Me encanta este complemento! ¿Puedo ayudar de alguna manera?"
274
 
275
+ #: inc/php/page.php:196
276
  #, php-format
277
  msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
278
  msgstr "Sí, cualquier contribución financiera es bienvenida! Simplemente visita %s mi sitio web %s, has clic en el botón DONAR y gracias!"
279
 
280
+ #: inc/php/page.php:202
281
  msgid "My question wasn't answered here."
282
  msgstr "Mi pregunta no fue contestada aquí."
283
 
284
+ #: inc/php/page.php:204
285
  #, php-format
286
  msgid "You can ask your question on %s this page %s. But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
287
  msgstr "Puede hacer tu pregunta en %s la página de soporte del complementos %s. Pero ten en cuenta que este complemento es gratuito, y no hay un equipo de soporte especial, así que no tengo forma de responder a todos."
288
 
289
+ #: inc/php/page.php:218
290
  msgid "Support Us"
291
  msgstr "¡Apoyanos!"
292
 
293
+ #: inc/php/page.php:226 inc/php/settings.php:94 inc/php/sidebar.php:54
294
  msgid "Donate with PayPal"
295
  msgstr "Donar con PayPal"
296
 
297
+ #: inc/php/page.php:231
298
  #, php-format
299
  msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
300
  msgstr ""
301
 
302
+ #: inc/php/page.php:239
303
  msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
304
  msgstr ""
305
 
306
+ #: inc/php/page.php:240
307
  msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
308
  msgstr "Paso mucho tiempo y esfuerzo tratando de asegurarme que los temas, complementos y otras cosas que construyo sean útiles, y la prueba definitiva para mí de que son útiles, es que realmente desea utilizarlos. Pero, soy un desarrollador independiente, sin un ingreso regular, por lo que cada pequeña contribución me ayuda a cubrir mis costos y me deja pasar más tiempo construyendo cosas para que la gente como tú lo disfrute."
309
 
310
+ #: inc/php/page.php:241
311
  msgid "If you appreciate our work, you can buy us a cup of coffee!"
312
  msgstr "Si aprecias mi trabajo, puedes comprarme un café!"
313
 
314
+ #: inc/php/page.php:242
315
  msgid "Thank you for your support!"
316
  msgstr "¡Gracias por tu apoyo!"
317
 
languages/header-and-footer-scripts-inserter-nl_NL.mo CHANGED
Binary file
languages/header-and-footer-scripts-inserter-nl_NL.po CHANGED
@@ -3,8 +3,8 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Head and Footer Scripts Inserter\n"
6
- "POT-Creation-Date: 2018-10-23 19:12+0300\n"
7
- "PO-Revision-Date: 2018-10-23 19:12+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Dutch\n"
10
  "Language: nl_NL\n"
@@ -102,7 +102,7 @@ msgstr "Ga naar het tabblad “Hoofd”."
102
  msgid "Place your custom HTML code in the code editor field."
103
  msgstr ""
104
 
105
- #: inc/php/page.php:70 inc/php/page.php:75
106
  msgid "Note!"
107
  msgstr "Opmerking!"
108
 
@@ -210,87 +210,108 @@ msgid "To apply the PHP code on a website, we can recommend you to use another o
210
  msgstr ""
211
 
212
  #: inc/php/page.php:163
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
213
  msgid "It's not working. What could be wrong?"
214
  msgstr "Het werkt niet. Wat kan er fout zijn?"
215
 
216
- #: inc/php/page.php:164
217
  msgid "As with every plugin, it's possible that things don't work. The most common reason for this is a web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load. This is called the browser's cache.​ Clearing your browser's cache may solve the problem."
218
  msgstr "Zoals met elke plug-in, is het mogelijk dat dingen niet werken. De meest voorkomende reden hiervoor is de cache van een webbrowser. Elke webbrowser slaat een cache op van de websites die u bezoekt (pagina's, afbeeldingen en enz.) Om het bandbreedte-gebruik en de serverbelasting te verminderen. Dit wordt de cache van de browser genoemd. Het wissen van de cache van uw browser kan het probleem oplossen."
219
 
220
- #: inc/php/page.php:165
221
  msgid "It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's support forum on WordPress.org, we'd be happy to give it a look and try to help out. Please include as much information as possible, including a link to your website where the problem can be seen."
222
  msgstr "Het is onmogelijk om precies te vertellen wat er precies mis zou kunnen zijn, maar als je een ondersteuningsverzoek post in het ondersteuningsforum van de plug-in op WordPress.org, willen we graag een kijkje nemen en proberen te helpen. Voeg zoveel mogelijk informatie toe, inclusief een link naar uw website waar het probleem kan worden gezien."
223
 
224
- #: inc/php/page.php:167
225
  msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
226
  msgstr "De laatste Wordpress update zorgt ervoor dat ik mijn website niet kan bewerken als ik deze plugin gebruik. Waarom is dit?"
227
 
228
- #: inc/php/page.php:168
229
  msgid "This plugin can not cause such problem. More likely, the problem are related to the settings of the website. It could just be a cache, so please try to clear your website's cache (may be you using a caching plugin, or some web service such as the CloudFlare) and then the cache of your web browser. Also please try to re-login to the website, this too can help."
230
  msgstr "Deze plug-in kan zo’n probleem niet veroorzaken. Waarschijnlijker is het probleem gerelateerd aan de instellingen van de website. Het kan gewoon een cache-probleem zijn, dus probeer de cache van je website te wissen (mogelijk gebruik je een caching-plug-in of een webservice zoals de CloudFlare) en vervolgens de cache van je webbrowser. Probeer ook opnieuw in te loggen op de website, ook dit kan helpen."
231
 
232
- #: inc/php/page.php:170
233
  msgid "Where to report bug if found?"
234
  msgstr "Waar kan een bug gerapporteerd worden indien gevonden?"
235
 
236
- #: inc/php/page.php:172
237
  #, php-format
238
  msgid "Bug reports are very welcome! Please visit %s our contact page %s and report. Please do not forget to specify the name of the plugin. Thank you!"
239
  msgstr "Bugrapporten zijn van harte welkom! Ga naar %s onze contactpagina %s en rapporteer. Vergeet alsjeblieft niet om de naam van de plug-in te specificeren. Dank je!"
240
 
241
- #: inc/php/page.php:178
242
  msgid "Where to share any ideas or suggestions to make the plugin better?"
243
  msgstr "Waar kan ik ideeën of suggesties delen om de plug-in beter te maken?"
244
 
245
- #: inc/php/page.php:180
246
  #, php-format
247
  msgid "Any suggestions are very welcome! Please visit %s our contact page %s. Please do not forget to specify the name of the plugin. Thank you!"
248
  msgstr "Alle suggesties zijn van harte welkom! Ga naar %s onze contactpagina %s. Vergeet alsjeblieft niet om de naam van de plug-in te specificeren. Dank je!"
249
 
250
- #: inc/php/page.php:186
251
  msgid "I love this plugin! Can I help somehow?"
252
  msgstr "Ik ben dol op deze plug-in! Kan ik op de een of andere manier helpen?"
253
 
254
- #: inc/php/page.php:188
255
  #, php-format
256
  msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
257
  msgstr "Ja, alle bijdragen zijn van harte welkom! Ga naar %s onze donatiepagina %s. Dank je!"
258
 
259
- #: inc/php/page.php:194
260
  msgid "My question wasn't answered here."
261
  msgstr "Mij vraag is hier niet beantwoord."
262
 
263
- #: inc/php/page.php:196
264
  #, php-format
265
  msgid "You can ask your question on %s this page %s. But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
266
  msgstr "Je kunt je vraag op %s deze pagina %s stellen. Maar houd er rekening mee dat deze plug-in gratis is en er geen speciaal ondersteuningsteam is, dus we kunnen niet iedereen antwoorden."
267
 
268
- #: inc/php/page.php:210
269
  msgid "Support Us"
270
  msgstr "Ondersteun ons"
271
 
272
- #: inc/php/page.php:218 inc/php/settings.php:94 inc/php/sidebar.php:54
273
  msgid "Donate with PayPal"
274
  msgstr "Doneer via PayPal"
275
 
276
- #: inc/php/page.php:223
277
  #, php-format
278
  msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
279
  msgstr ""
280
 
281
- #: inc/php/page.php:231
282
  msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
283
  msgstr ""
284
 
285
- #: inc/php/page.php:232
286
  msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
287
  msgstr "Ik besteed veel tijd en moeite om ervoor te zorgen dat de thema’s, plug-ins en andere dingen die ik maak nuttig zijn, en het ultieme bewijs daarvan is dat je ze echt wilt gebruiken. Maar ik ben een onafhankelijke ontwikkelaar, zonder een vast inkomen, dus elke kleine bijdrage helpt mij mijn kosten te dekken en laat me meer tijd besteden aan het bouwen van dingen voor mensen zoals jij om van te genieten."
288
 
289
- #: inc/php/page.php:233
290
  msgid "If you appreciate our work, you can buy us a cup of coffee!"
291
  msgstr "Als je mijn werk waardeert, kun je een koffie voor me kopen!"
292
 
293
- #: inc/php/page.php:234
294
  msgid "Thank you for your support!"
295
  msgstr "Bedankt voor je ondersteuning!"
296
 
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Head and Footer Scripts Inserter\n"
6
+ "POT-Creation-Date: 2019-01-11 20:35+0200\n"
7
+ "PO-Revision-Date: 2019-01-11 20:35+0200\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Dutch\n"
10
  "Language: nl_NL\n"
102
  msgid "Place your custom HTML code in the code editor field."
103
  msgstr ""
104
 
105
+ #: inc/php/page.php:70
106
  msgid "Note!"
107
  msgstr "Opmerking!"
108
 
210
  msgstr ""
211
 
212
  #: inc/php/page.php:163
213
+ #| msgid "It's not working. What could be wrong?"
214
+ msgid "My custom HTML code is not working. What could be wrong?"
215
+ msgstr ""
216
+
217
+ #: inc/php/page.php:164
218
+ msgid "It happens that your custom HTML code that you insert on the plugin page does not work, even if an error message does not appear. Here are a few of the most likely causes of the issue:"
219
+ msgstr ""
220
+
221
+ #: inc/php/page.php:166
222
+ msgid "You have a typo during the insertion of your custom HTML code."
223
+ msgstr ""
224
+
225
+ #: inc/php/page.php:167
226
+ msgid "Your custom HTML code has a syntax error."
227
+ msgstr ""
228
+
229
+ #: inc/php/page.php:168
230
+ msgid "Your custom HTML code is incorrect and may not work."
231
+ msgstr ""
232
+
233
+ #: inc/php/page.php:171
234
  msgid "It's not working. What could be wrong?"
235
  msgstr "Het werkt niet. Wat kan er fout zijn?"
236
 
237
+ #: inc/php/page.php:172
238
  msgid "As with every plugin, it's possible that things don't work. The most common reason for this is a web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load. This is called the browser's cache.​ Clearing your browser's cache may solve the problem."
239
  msgstr "Zoals met elke plug-in, is het mogelijk dat dingen niet werken. De meest voorkomende reden hiervoor is de cache van een webbrowser. Elke webbrowser slaat een cache op van de websites die u bezoekt (pagina's, afbeeldingen en enz.) Om het bandbreedte-gebruik en de serverbelasting te verminderen. Dit wordt de cache van de browser genoemd. Het wissen van de cache van uw browser kan het probleem oplossen."
240
 
241
+ #: inc/php/page.php:173
242
  msgid "It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's support forum on WordPress.org, we'd be happy to give it a look and try to help out. Please include as much information as possible, including a link to your website where the problem can be seen."
243
  msgstr "Het is onmogelijk om precies te vertellen wat er precies mis zou kunnen zijn, maar als je een ondersteuningsverzoek post in het ondersteuningsforum van de plug-in op WordPress.org, willen we graag een kijkje nemen en proberen te helpen. Voeg zoveel mogelijk informatie toe, inclusief een link naar uw website waar het probleem kan worden gezien."
244
 
245
+ #: inc/php/page.php:175
246
  msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
247
  msgstr "De laatste Wordpress update zorgt ervoor dat ik mijn website niet kan bewerken als ik deze plugin gebruik. Waarom is dit?"
248
 
249
+ #: inc/php/page.php:176
250
  msgid "This plugin can not cause such problem. More likely, the problem are related to the settings of the website. It could just be a cache, so please try to clear your website's cache (may be you using a caching plugin, or some web service such as the CloudFlare) and then the cache of your web browser. Also please try to re-login to the website, this too can help."
251
  msgstr "Deze plug-in kan zo’n probleem niet veroorzaken. Waarschijnlijker is het probleem gerelateerd aan de instellingen van de website. Het kan gewoon een cache-probleem zijn, dus probeer de cache van je website te wissen (mogelijk gebruik je een caching-plug-in of een webservice zoals de CloudFlare) en vervolgens de cache van je webbrowser. Probeer ook opnieuw in te loggen op de website, ook dit kan helpen."
252
 
253
+ #: inc/php/page.php:178
254
  msgid "Where to report bug if found?"
255
  msgstr "Waar kan een bug gerapporteerd worden indien gevonden?"
256
 
257
+ #: inc/php/page.php:180
258
  #, php-format
259
  msgid "Bug reports are very welcome! Please visit %s our contact page %s and report. Please do not forget to specify the name of the plugin. Thank you!"
260
  msgstr "Bugrapporten zijn van harte welkom! Ga naar %s onze contactpagina %s en rapporteer. Vergeet alsjeblieft niet om de naam van de plug-in te specificeren. Dank je!"
261
 
262
+ #: inc/php/page.php:186
263
  msgid "Where to share any ideas or suggestions to make the plugin better?"
264
  msgstr "Waar kan ik ideeën of suggesties delen om de plug-in beter te maken?"
265
 
266
+ #: inc/php/page.php:188
267
  #, php-format
268
  msgid "Any suggestions are very welcome! Please visit %s our contact page %s. Please do not forget to specify the name of the plugin. Thank you!"
269
  msgstr "Alle suggesties zijn van harte welkom! Ga naar %s onze contactpagina %s. Vergeet alsjeblieft niet om de naam van de plug-in te specificeren. Dank je!"
270
 
271
+ #: inc/php/page.php:194
272
  msgid "I love this plugin! Can I help somehow?"
273
  msgstr "Ik ben dol op deze plug-in! Kan ik op de een of andere manier helpen?"
274
 
275
+ #: inc/php/page.php:196
276
  #, php-format
277
  msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
278
  msgstr "Ja, alle bijdragen zijn van harte welkom! Ga naar %s onze donatiepagina %s. Dank je!"
279
 
280
+ #: inc/php/page.php:202
281
  msgid "My question wasn't answered here."
282
  msgstr "Mij vraag is hier niet beantwoord."
283
 
284
+ #: inc/php/page.php:204
285
  #, php-format
286
  msgid "You can ask your question on %s this page %s. But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
287
  msgstr "Je kunt je vraag op %s deze pagina %s stellen. Maar houd er rekening mee dat deze plug-in gratis is en er geen speciaal ondersteuningsteam is, dus we kunnen niet iedereen antwoorden."
288
 
289
+ #: inc/php/page.php:218
290
  msgid "Support Us"
291
  msgstr "Ondersteun ons"
292
 
293
+ #: inc/php/page.php:226 inc/php/settings.php:94 inc/php/sidebar.php:54
294
  msgid "Donate with PayPal"
295
  msgstr "Doneer via PayPal"
296
 
297
+ #: inc/php/page.php:231
298
  #, php-format
299
  msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
300
  msgstr ""
301
 
302
+ #: inc/php/page.php:239
303
  msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
304
  msgstr ""
305
 
306
+ #: inc/php/page.php:240
307
  msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
308
  msgstr "Ik besteed veel tijd en moeite om ervoor te zorgen dat de thema’s, plug-ins en andere dingen die ik maak nuttig zijn, en het ultieme bewijs daarvan is dat je ze echt wilt gebruiken. Maar ik ben een onafhankelijke ontwikkelaar, zonder een vast inkomen, dus elke kleine bijdrage helpt mij mijn kosten te dekken en laat me meer tijd besteden aan het bouwen van dingen voor mensen zoals jij om van te genieten."
309
 
310
+ #: inc/php/page.php:241
311
  msgid "If you appreciate our work, you can buy us a cup of coffee!"
312
  msgstr "Als je mijn werk waardeert, kun je een koffie voor me kopen!"
313
 
314
+ #: inc/php/page.php:242
315
  msgid "Thank you for your support!"
316
  msgstr "Bedankt voor je ondersteuning!"
317
 
languages/header-and-footer-scripts-inserter-pl_PL.mo CHANGED
Binary file
languages/header-and-footer-scripts-inserter-pl_PL.po CHANGED
@@ -3,8 +3,8 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Head and Footer Scripts Inserter\n"
6
- "POT-Creation-Date: 2018-10-23 19:12+0300\n"
7
- "PO-Revision-Date: 2018-10-23 19:12+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Polish\n"
10
  "Language: pl_PL\n"
@@ -103,7 +103,7 @@ msgstr ""
103
  msgid "Place your custom HTML code in the code editor field."
104
  msgstr ""
105
 
106
- #: inc/php/page.php:70 inc/php/page.php:75
107
  msgid "Note!"
108
  msgstr ""
109
 
@@ -211,87 +211,107 @@ msgid "To apply the PHP code on a website, we can recommend you to use another o
211
  msgstr ""
212
 
213
  #: inc/php/page.php:163
214
- msgid "It's not working. What could be wrong?"
215
  msgstr ""
216
 
217
  #: inc/php/page.php:164
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
218
  msgid "As with every plugin, it's possible that things don't work. The most common reason for this is a web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load. This is called the browser's cache.​ Clearing your browser's cache may solve the problem."
219
  msgstr ""
220
 
221
- #: inc/php/page.php:165
222
  msgid "It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's support forum on WordPress.org, we'd be happy to give it a look and try to help out. Please include as much information as possible, including a link to your website where the problem can be seen."
223
  msgstr ""
224
 
225
- #: inc/php/page.php:167
226
  msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
227
  msgstr ""
228
 
229
- #: inc/php/page.php:168
230
  msgid "This plugin can not cause such problem. More likely, the problem are related to the settings of the website. It could just be a cache, so please try to clear your website's cache (may be you using a caching plugin, or some web service such as the CloudFlare) and then the cache of your web browser. Also please try to re-login to the website, this too can help."
231
  msgstr ""
232
 
233
- #: inc/php/page.php:170
234
  msgid "Where to report bug if found?"
235
  msgstr ""
236
 
237
- #: inc/php/page.php:172
238
  #, php-format
239
  msgid "Bug reports are very welcome! Please visit %s our contact page %s and report. Please do not forget to specify the name of the plugin. Thank you!"
240
  msgstr ""
241
 
242
- #: inc/php/page.php:178
243
  msgid "Where to share any ideas or suggestions to make the plugin better?"
244
  msgstr ""
245
 
246
- #: inc/php/page.php:180
247
  #, php-format
248
  msgid "Any suggestions are very welcome! Please visit %s our contact page %s. Please do not forget to specify the name of the plugin. Thank you!"
249
  msgstr ""
250
 
251
- #: inc/php/page.php:186
252
  msgid "I love this plugin! Can I help somehow?"
253
  msgstr ""
254
 
255
- #: inc/php/page.php:188
256
  #, php-format
257
  msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
258
  msgstr ""
259
 
260
- #: inc/php/page.php:194
261
  msgid "My question wasn't answered here."
262
  msgstr ""
263
 
264
- #: inc/php/page.php:196
265
  #, php-format
266
  msgid "You can ask your question on %s this page %s. But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
267
  msgstr ""
268
 
269
- #: inc/php/page.php:210
270
  msgid "Support Us"
271
  msgstr ""
272
 
273
- #: inc/php/page.php:218 inc/php/settings.php:94 inc/php/sidebar.php:54
274
  msgid "Donate with PayPal"
275
  msgstr ""
276
 
277
- #: inc/php/page.php:223
278
  #, php-format
279
  msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
280
  msgstr ""
281
 
282
- #: inc/php/page.php:231
283
  msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
284
  msgstr ""
285
 
286
- #: inc/php/page.php:232
287
  msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
288
  msgstr ""
289
 
290
- #: inc/php/page.php:233
291
  msgid "If you appreciate our work, you can buy us a cup of coffee!"
292
  msgstr ""
293
 
294
- #: inc/php/page.php:234
295
  msgid "Thank you for your support!"
296
  msgstr ""
297
 
@@ -358,7 +378,7 @@ msgstr "O wtyczce"
358
 
359
  #: inc/php/sidebar.php:35
360
  msgid "This plugin allows you to easily and safely add your custom HTML code (plus JavaScript, CSS, etc.) to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
361
- msgstr "Ta wtyczka pozwala łatwo wstawić kod skryptów na stronę www."
362
 
363
  #: inc/php/sidebar.php:40
364
  msgid "Help"
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Head and Footer Scripts Inserter\n"
6
+ "POT-Creation-Date: 2019-01-11 20:35+0200\n"
7
+ "PO-Revision-Date: 2019-01-11 20:36+0200\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Polish\n"
10
  "Language: pl_PL\n"
103
  msgid "Place your custom HTML code in the code editor field."
104
  msgstr ""
105
 
106
+ #: inc/php/page.php:70
107
  msgid "Note!"
108
  msgstr ""
109
 
211
  msgstr ""
212
 
213
  #: inc/php/page.php:163
214
+ msgid "My custom HTML code is not working. What could be wrong?"
215
  msgstr ""
216
 
217
  #: inc/php/page.php:164
218
+ msgid "It happens that your custom HTML code that you insert on the plugin page does not work, even if an error message does not appear. Here are a few of the most likely causes of the issue:"
219
+ msgstr ""
220
+
221
+ #: inc/php/page.php:166
222
+ msgid "You have a typo during the insertion of your custom HTML code."
223
+ msgstr ""
224
+
225
+ #: inc/php/page.php:167
226
+ msgid "Your custom HTML code has a syntax error."
227
+ msgstr ""
228
+
229
+ #: inc/php/page.php:168
230
+ msgid "Your custom HTML code is incorrect and may not work."
231
+ msgstr ""
232
+
233
+ #: inc/php/page.php:171
234
+ msgid "It's not working. What could be wrong?"
235
+ msgstr ""
236
+
237
+ #: inc/php/page.php:172
238
  msgid "As with every plugin, it's possible that things don't work. The most common reason for this is a web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load. This is called the browser's cache.​ Clearing your browser's cache may solve the problem."
239
  msgstr ""
240
 
241
+ #: inc/php/page.php:173
242
  msgid "It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's support forum on WordPress.org, we'd be happy to give it a look and try to help out. Please include as much information as possible, including a link to your website where the problem can be seen."
243
  msgstr ""
244
 
245
+ #: inc/php/page.php:175
246
  msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
247
  msgstr ""
248
 
249
+ #: inc/php/page.php:176
250
  msgid "This plugin can not cause such problem. More likely, the problem are related to the settings of the website. It could just be a cache, so please try to clear your website's cache (may be you using a caching plugin, or some web service such as the CloudFlare) and then the cache of your web browser. Also please try to re-login to the website, this too can help."
251
  msgstr ""
252
 
253
+ #: inc/php/page.php:178
254
  msgid "Where to report bug if found?"
255
  msgstr ""
256
 
257
+ #: inc/php/page.php:180
258
  #, php-format
259
  msgid "Bug reports are very welcome! Please visit %s our contact page %s and report. Please do not forget to specify the name of the plugin. Thank you!"
260
  msgstr ""
261
 
262
+ #: inc/php/page.php:186
263
  msgid "Where to share any ideas or suggestions to make the plugin better?"
264
  msgstr ""
265
 
266
+ #: inc/php/page.php:188
267
  #, php-format
268
  msgid "Any suggestions are very welcome! Please visit %s our contact page %s. Please do not forget to specify the name of the plugin. Thank you!"
269
  msgstr ""
270
 
271
+ #: inc/php/page.php:194
272
  msgid "I love this plugin! Can I help somehow?"
273
  msgstr ""
274
 
275
+ #: inc/php/page.php:196
276
  #, php-format
277
  msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
278
  msgstr ""
279
 
280
+ #: inc/php/page.php:202
281
  msgid "My question wasn't answered here."
282
  msgstr ""
283
 
284
+ #: inc/php/page.php:204
285
  #, php-format
286
  msgid "You can ask your question on %s this page %s. But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
287
  msgstr ""
288
 
289
+ #: inc/php/page.php:218
290
  msgid "Support Us"
291
  msgstr ""
292
 
293
+ #: inc/php/page.php:226 inc/php/settings.php:94 inc/php/sidebar.php:54
294
  msgid "Donate with PayPal"
295
  msgstr ""
296
 
297
+ #: inc/php/page.php:231
298
  #, php-format
299
  msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
300
  msgstr ""
301
 
302
+ #: inc/php/page.php:239
303
  msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
304
  msgstr ""
305
 
306
+ #: inc/php/page.php:240
307
  msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
308
  msgstr ""
309
 
310
+ #: inc/php/page.php:241
311
  msgid "If you appreciate our work, you can buy us a cup of coffee!"
312
  msgstr ""
313
 
314
+ #: inc/php/page.php:242
315
  msgid "Thank you for your support!"
316
  msgstr ""
317
 
378
 
379
  #: inc/php/sidebar.php:35
380
  msgid "This plugin allows you to easily and safely add your custom HTML code (plus JavaScript, CSS, etc.) to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
381
+ msgstr ""
382
 
383
  #: inc/php/sidebar.php:40
384
  msgid "Help"
languages/header-and-footer-scripts-inserter-ru_RU.mo CHANGED
Binary file
languages/header-and-footer-scripts-inserter-ru_RU.po CHANGED
@@ -3,8 +3,8 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Head and Footer Scripts Inserter\n"
6
- "POT-Creation-Date: 2018-10-23 19:12+0300\n"
7
- "PO-Revision-Date: 2018-10-23 19:12+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Russian\n"
10
  "Language: ru_RU\n"
@@ -102,7 +102,7 @@ msgstr "Перейдите на вкладку «Главная»."
102
  msgid "Place your custom HTML code in the code editor field."
103
  msgstr "Поместите свои скрипты в поле."
104
 
105
- #: inc/php/page.php:70 inc/php/page.php:75
106
  msgid "Note!"
107
  msgstr "Примечание!"
108
 
@@ -210,87 +210,107 @@ msgid "To apply the PHP code on a website, we can recommend you to use another o
210
  msgstr "Чтобы применить PHP-код на веб-сайте, я могу порекомендовать вам использовать другой мой плагин, называемый %s."
211
 
212
  #: inc/php/page.php:163
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
213
  msgid "It's not working. What could be wrong?"
214
  msgstr "Оно не работает. Что может быть не так?"
215
 
216
- #: inc/php/page.php:164
217
  msgid "As with every plugin, it's possible that things don't work. The most common reason for this is a web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load. This is called the browser's cache.​ Clearing your browser's cache may solve the problem."
218
  msgstr "Как и в случае с любым другим плагином, что-то может не работать. Наиболее распространенной причиной этого является кеш веб-браузера. Каждый веб-браузер хранит кеш веб-сайтов, которые вы посещаете (страницы, изображения и т. д.) для того, чтобы уменьшить использование интернет канала и нагрузку на сервер. Это называется кешем браузера. Очистка кеша браузера может решить проблему."
219
 
220
- #: inc/php/page.php:165
221
  msgid "It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's support forum on WordPress.org, we'd be happy to give it a look and try to help out. Please include as much information as possible, including a link to your website where the problem can be seen."
222
  msgstr "Невозможно точно сказать, что может быть неправильно, но если вы разместите запрос поддержки на форуме поддержки плагина на WordPress.org, то мы с радостью посмотрим и попытаемся помочь. Пожалуйста, укажите как можно больше информации, включая ссылку на ваш сайт, на котором можно увидеть проблему."
223
 
224
- #: inc/php/page.php:167
225
  msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
226
  msgstr "Последнее обновление WordPress не позволяет мне редактировать мой сайт, который использует этот плагин. Почему так?"
227
 
228
- #: inc/php/page.php:168
229
  msgid "This plugin can not cause such problem. More likely, the problem are related to the settings of the website. It could just be a cache, so please try to clear your website's cache (may be you using a caching plugin, or some web service such as the CloudFlare) and then the cache of your web browser. Also please try to re-login to the website, this too can help."
230
  msgstr "Этот плагин не может вызвать такую проблему. Скорее всего, проблема связана с настройками веб-сайта. Это может быть кеш, поэтому попробуйте очистить кеш вашего сайта (возможно, вы используете плагин для кеширования или какой-либо веб-сервис, такой как CloudFlare), а затем кеш вашего веб-браузера. Также попробуйте повторно войти на сайт, это тоже может помочь."
231
 
232
- #: inc/php/page.php:170
233
  msgid "Where to report bug if found?"
234
  msgstr "Где можно сообщить об ошибке?"
235
 
236
- #: inc/php/page.php:172
237
  #, php-format
238
  msgid "Bug reports are very welcome! Please visit %s our contact page %s and report. Please do not forget to specify the name of the plugin. Thank you!"
239
  msgstr "Посетите %s эту страницу %s и сообщите. Не забудьте указать название плагина. Спасибо!"
240
 
241
- #: inc/php/page.php:178
242
  msgid "Where to share any ideas or suggestions to make the plugin better?"
243
  msgstr "Где можно поделиться идеями или предложениями, чтобы сделать плагин лучше?"
244
 
245
- #: inc/php/page.php:180
246
  #, php-format
247
  msgid "Any suggestions are very welcome! Please visit %s our contact page %s. Please do not forget to specify the name of the plugin. Thank you!"
248
  msgstr "Любые предложения приветствуются! Просто свяжитесь с нами %s здесь %s. Не забудьте указать название плагина. Спасибо!"
249
 
250
- #: inc/php/page.php:186
251
  msgid "I love this plugin! Can I help somehow?"
252
  msgstr "Мне нравится этот плагин! Могу Я чем-то помочь?"
253
 
254
- #: inc/php/page.php:188
255
  #, php-format
256
  msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
257
  msgstr "Да, любые финансовые взносы приветствуются! Просто посетите %s мой сайт %s, нажмите на кнопку пожертвования. Спасибо!"
258
 
259
- #: inc/php/page.php:194
260
  msgid "My question wasn't answered here."
261
  msgstr "Моего вопроса здесь нет."
262
 
263
- #: inc/php/page.php:196
264
  #, php-format
265
  msgid "You can ask your question on %s this page %s. But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
266
  msgstr "Вы можете задать ваш вопрос на %s этой странице %s. Но имейте в виду, что этот плагин является бесплатным и без специальной поддержки, поэтому у нас нет возможности ответить на все вопросы."
267
 
268
- #: inc/php/page.php:210
269
  msgid "Support Us"
270
  msgstr "Поддержать нас"
271
 
272
- #: inc/php/page.php:218 inc/php/settings.php:94 inc/php/sidebar.php:54
273
  msgid "Donate with PayPal"
274
  msgstr "Пожертвовать через PayPal"
275
 
276
- #: inc/php/page.php:223
277
  #, php-format
278
  msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
279
  msgstr ""
280
 
281
- #: inc/php/page.php:231
282
  msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
283
  msgstr ""
284
 
285
- #: inc/php/page.php:232
286
  msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
287
  msgstr "Мы тратим много времени и усилий, пытаясь убедиться в том, что темы, плагины и другие вещи, которые мы создаём, полезны, и окончательное доказательство этого для нас то, что вы на самом деле хотите их использовать. Но мы независимые разработчики, без регулярного дохода, поэтому каждый небольшой вклад помогает покрыть наши расходы и позволяет нам тратить больше времени на создание вещей для таких замечательных людей, как вы."
288
 
289
- #: inc/php/page.php:233
290
  msgid "If you appreciate our work, you can buy us a cup of coffee!"
291
  msgstr "Если вы цените мою работу, то вы можете купить мне кофе!"
292
 
293
- #: inc/php/page.php:234
294
  msgid "Thank you for your support!"
295
  msgstr "Спасибо за вашу поддержку!"
296
 
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Head and Footer Scripts Inserter\n"
6
+ "POT-Creation-Date: 2019-01-11 20:36+0200\n"
7
+ "PO-Revision-Date: 2019-01-11 20:36+0200\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Russian\n"
10
  "Language: ru_RU\n"
102
  msgid "Place your custom HTML code in the code editor field."
103
  msgstr "Поместите свои скрипты в поле."
104
 
105
+ #: inc/php/page.php:70
106
  msgid "Note!"
107
  msgstr "Примечание!"
108
 
210
  msgstr "Чтобы применить PHP-код на веб-сайте, я могу порекомендовать вам использовать другой мой плагин, называемый %s."
211
 
212
  #: inc/php/page.php:163
213
+ msgid "My custom HTML code is not working. What could be wrong?"
214
+ msgstr ""
215
+
216
+ #: inc/php/page.php:164
217
+ msgid "It happens that your custom HTML code that you insert on the plugin page does not work, even if an error message does not appear. Here are a few of the most likely causes of the issue:"
218
+ msgstr ""
219
+
220
+ #: inc/php/page.php:166
221
+ msgid "You have a typo during the insertion of your custom HTML code."
222
+ msgstr ""
223
+
224
+ #: inc/php/page.php:167
225
+ msgid "Your custom HTML code has a syntax error."
226
+ msgstr ""
227
+
228
+ #: inc/php/page.php:168
229
+ msgid "Your custom HTML code is incorrect and may not work."
230
+ msgstr ""
231
+
232
+ #: inc/php/page.php:171
233
  msgid "It's not working. What could be wrong?"
234
  msgstr "Оно не работает. Что может быть не так?"
235
 
236
+ #: inc/php/page.php:172
237
  msgid "As with every plugin, it's possible that things don't work. The most common reason for this is a web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load. This is called the browser's cache.​ Clearing your browser's cache may solve the problem."
238
  msgstr "Как и в случае с любым другим плагином, что-то может не работать. Наиболее распространенной причиной этого является кеш веб-браузера. Каждый веб-браузер хранит кеш веб-сайтов, которые вы посещаете (страницы, изображения и т. д.) для того, чтобы уменьшить использование интернет канала и нагрузку на сервер. Это называется кешем браузера. Очистка кеша браузера может решить проблему."
239
 
240
+ #: inc/php/page.php:173
241
  msgid "It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's support forum on WordPress.org, we'd be happy to give it a look and try to help out. Please include as much information as possible, including a link to your website where the problem can be seen."
242
  msgstr "Невозможно точно сказать, что может быть неправильно, но если вы разместите запрос поддержки на форуме поддержки плагина на WordPress.org, то мы с радостью посмотрим и попытаемся помочь. Пожалуйста, укажите как можно больше информации, включая ссылку на ваш сайт, на котором можно увидеть проблему."
243
 
244
+ #: inc/php/page.php:175
245
  msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
246
  msgstr "Последнее обновление WordPress не позволяет мне редактировать мой сайт, который использует этот плагин. Почему так?"
247
 
248
+ #: inc/php/page.php:176
249
  msgid "This plugin can not cause such problem. More likely, the problem are related to the settings of the website. It could just be a cache, so please try to clear your website's cache (may be you using a caching plugin, or some web service such as the CloudFlare) and then the cache of your web browser. Also please try to re-login to the website, this too can help."
250
  msgstr "Этот плагин не может вызвать такую проблему. Скорее всего, проблема связана с настройками веб-сайта. Это может быть кеш, поэтому попробуйте очистить кеш вашего сайта (возможно, вы используете плагин для кеширования или какой-либо веб-сервис, такой как CloudFlare), а затем кеш вашего веб-браузера. Также попробуйте повторно войти на сайт, это тоже может помочь."
251
 
252
+ #: inc/php/page.php:178
253
  msgid "Where to report bug if found?"
254
  msgstr "Где можно сообщить об ошибке?"
255
 
256
+ #: inc/php/page.php:180
257
  #, php-format
258
  msgid "Bug reports are very welcome! Please visit %s our contact page %s and report. Please do not forget to specify the name of the plugin. Thank you!"
259
  msgstr "Посетите %s эту страницу %s и сообщите. Не забудьте указать название плагина. Спасибо!"
260
 
261
+ #: inc/php/page.php:186
262
  msgid "Where to share any ideas or suggestions to make the plugin better?"
263
  msgstr "Где можно поделиться идеями или предложениями, чтобы сделать плагин лучше?"
264
 
265
+ #: inc/php/page.php:188
266
  #, php-format
267
  msgid "Any suggestions are very welcome! Please visit %s our contact page %s. Please do not forget to specify the name of the plugin. Thank you!"
268
  msgstr "Любые предложения приветствуются! Просто свяжитесь с нами %s здесь %s. Не забудьте указать название плагина. Спасибо!"
269
 
270
+ #: inc/php/page.php:194
271
  msgid "I love this plugin! Can I help somehow?"
272
  msgstr "Мне нравится этот плагин! Могу Я чем-то помочь?"
273
 
274
+ #: inc/php/page.php:196
275
  #, php-format
276
  msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
277
  msgstr "Да, любые финансовые взносы приветствуются! Просто посетите %s мой сайт %s, нажмите на кнопку пожертвования. Спасибо!"
278
 
279
+ #: inc/php/page.php:202
280
  msgid "My question wasn't answered here."
281
  msgstr "Моего вопроса здесь нет."
282
 
283
+ #: inc/php/page.php:204
284
  #, php-format
285
  msgid "You can ask your question on %s this page %s. But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
286
  msgstr "Вы можете задать ваш вопрос на %s этой странице %s. Но имейте в виду, что этот плагин является бесплатным и без специальной поддержки, поэтому у нас нет возможности ответить на все вопросы."
287
 
288
+ #: inc/php/page.php:218
289
  msgid "Support Us"
290
  msgstr "Поддержать нас"
291
 
292
+ #: inc/php/page.php:226 inc/php/settings.php:94 inc/php/sidebar.php:54
293
  msgid "Donate with PayPal"
294
  msgstr "Пожертвовать через PayPal"
295
 
296
+ #: inc/php/page.php:231
297
  #, php-format
298
  msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
299
  msgstr ""
300
 
301
+ #: inc/php/page.php:239
302
  msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
303
  msgstr ""
304
 
305
+ #: inc/php/page.php:240
306
  msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
307
  msgstr "Мы тратим много времени и усилий, пытаясь убедиться в том, что темы, плагины и другие вещи, которые мы создаём, полезны, и окончательное доказательство этого для нас то, что вы на самом деле хотите их использовать. Но мы независимые разработчики, без регулярного дохода, поэтому каждый небольшой вклад помогает покрыть наши расходы и позволяет нам тратить больше времени на создание вещей для таких замечательных людей, как вы."
308
 
309
+ #: inc/php/page.php:241
310
  msgid "If you appreciate our work, you can buy us a cup of coffee!"
311
  msgstr "Если вы цените мою работу, то вы можете купить мне кофе!"
312
 
313
+ #: inc/php/page.php:242
314
  msgid "Thank you for your support!"
315
  msgstr "Спасибо за вашу поддержку!"
316
 
languages/header-and-footer-scripts-inserter.pot CHANGED
@@ -3,7 +3,7 @@ msgid ""
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: Head and Footer Scripts Inserter\n"
6
- "POT-Creation-Date: 2018-10-23 19:12+0300\n"
7
  "PO-Revision-Date: 2016-01-30 11:39+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
@@ -100,7 +100,7 @@ msgstr ""
100
  msgid "Place your custom HTML code in the code editor field."
101
  msgstr ""
102
 
103
- #: inc/php/page.php:70 inc/php/page.php:75
104
  msgid "Note!"
105
  msgstr ""
106
 
@@ -208,87 +208,107 @@ msgid "To apply the PHP code on a website, we can recommend you to use another o
208
  msgstr ""
209
 
210
  #: inc/php/page.php:163
211
- msgid "It's not working. What could be wrong?"
212
  msgstr ""
213
 
214
  #: inc/php/page.php:164
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
215
  msgid "As with every plugin, it's possible that things don't work. The most common reason for this is a web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load. This is called the browser's cache.​ Clearing your browser's cache may solve the problem."
216
  msgstr ""
217
 
218
- #: inc/php/page.php:165
219
  msgid "It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's support forum on WordPress.org, we'd be happy to give it a look and try to help out. Please include as much information as possible, including a link to your website where the problem can be seen."
220
  msgstr ""
221
 
222
- #: inc/php/page.php:167
223
  msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
224
  msgstr ""
225
 
226
- #: inc/php/page.php:168
227
  msgid "This plugin can not cause such problem. More likely, the problem are related to the settings of the website. It could just be a cache, so please try to clear your website's cache (may be you using a caching plugin, or some web service such as the CloudFlare) and then the cache of your web browser. Also please try to re-login to the website, this too can help."
228
  msgstr ""
229
 
230
- #: inc/php/page.php:170
231
  msgid "Where to report bug if found?"
232
  msgstr ""
233
 
234
- #: inc/php/page.php:172
235
  #, php-format
236
  msgid "Bug reports are very welcome! Please visit %s our contact page %s and report. Please do not forget to specify the name of the plugin. Thank you!"
237
  msgstr ""
238
 
239
- #: inc/php/page.php:178
240
  msgid "Where to share any ideas or suggestions to make the plugin better?"
241
  msgstr ""
242
 
243
- #: inc/php/page.php:180
244
  #, php-format
245
  msgid "Any suggestions are very welcome! Please visit %s our contact page %s. Please do not forget to specify the name of the plugin. Thank you!"
246
  msgstr ""
247
 
248
- #: inc/php/page.php:186
249
  msgid "I love this plugin! Can I help somehow?"
250
  msgstr ""
251
 
252
- #: inc/php/page.php:188
253
  #, php-format
254
  msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
255
  msgstr ""
256
 
257
- #: inc/php/page.php:194
258
  msgid "My question wasn't answered here."
259
  msgstr ""
260
 
261
- #: inc/php/page.php:196
262
  #, php-format
263
  msgid "You can ask your question on %s this page %s. But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
264
  msgstr ""
265
 
266
- #: inc/php/page.php:210
267
  msgid "Support Us"
268
  msgstr ""
269
 
270
- #: inc/php/page.php:218 inc/php/settings.php:94 inc/php/sidebar.php:54
271
  msgid "Donate with PayPal"
272
  msgstr ""
273
 
274
- #: inc/php/page.php:223
275
  #, php-format
276
  msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
277
  msgstr ""
278
 
279
- #: inc/php/page.php:231
280
  msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
281
  msgstr ""
282
 
283
- #: inc/php/page.php:232
284
  msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
285
  msgstr ""
286
 
287
- #: inc/php/page.php:233
288
  msgid "If you appreciate our work, you can buy us a cup of coffee!"
289
  msgstr ""
290
 
291
- #: inc/php/page.php:234
292
  msgid "Thank you for your support!"
293
  msgstr ""
294
 
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: Head and Footer Scripts Inserter\n"
6
+ "POT-Creation-Date: 2019-01-11 20:36+0200\n"
7
  "PO-Revision-Date: 2016-01-30 11:39+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
100
  msgid "Place your custom HTML code in the code editor field."
101
  msgstr ""
102
 
103
+ #: inc/php/page.php:70
104
  msgid "Note!"
105
  msgstr ""
106
 
208
  msgstr ""
209
 
210
  #: inc/php/page.php:163
211
+ msgid "My custom HTML code is not working. What could be wrong?"
212
  msgstr ""
213
 
214
  #: inc/php/page.php:164
215
+ msgid "It happens that your custom HTML code that you insert on the plugin page does not work, even if an error message does not appear. Here are a few of the most likely causes of the issue:"
216
+ msgstr ""
217
+
218
+ #: inc/php/page.php:166
219
+ msgid "You have a typo during the insertion of your custom HTML code."
220
+ msgstr ""
221
+
222
+ #: inc/php/page.php:167
223
+ msgid "Your custom HTML code has a syntax error."
224
+ msgstr ""
225
+
226
+ #: inc/php/page.php:168
227
+ msgid "Your custom HTML code is incorrect and may not work."
228
+ msgstr ""
229
+
230
+ #: inc/php/page.php:171
231
+ msgid "It's not working. What could be wrong?"
232
+ msgstr ""
233
+
234
+ #: inc/php/page.php:172
235
  msgid "As with every plugin, it's possible that things don't work. The most common reason for this is a web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load. This is called the browser's cache.​ Clearing your browser's cache may solve the problem."
236
  msgstr ""
237
 
238
+ #: inc/php/page.php:173
239
  msgid "It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's support forum on WordPress.org, we'd be happy to give it a look and try to help out. Please include as much information as possible, including a link to your website where the problem can be seen."
240
  msgstr ""
241
 
242
+ #: inc/php/page.php:175
243
  msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
244
  msgstr ""
245
 
246
+ #: inc/php/page.php:176
247
  msgid "This plugin can not cause such problem. More likely, the problem are related to the settings of the website. It could just be a cache, so please try to clear your website's cache (may be you using a caching plugin, or some web service such as the CloudFlare) and then the cache of your web browser. Also please try to re-login to the website, this too can help."
248
  msgstr ""
249
 
250
+ #: inc/php/page.php:178
251
  msgid "Where to report bug if found?"
252
  msgstr ""
253
 
254
+ #: inc/php/page.php:180
255
  #, php-format
256
  msgid "Bug reports are very welcome! Please visit %s our contact page %s and report. Please do not forget to specify the name of the plugin. Thank you!"
257
  msgstr ""
258
 
259
+ #: inc/php/page.php:186
260
  msgid "Where to share any ideas or suggestions to make the plugin better?"
261
  msgstr ""
262
 
263
+ #: inc/php/page.php:188
264
  #, php-format
265
  msgid "Any suggestions are very welcome! Please visit %s our contact page %s. Please do not forget to specify the name of the plugin. Thank you!"
266
  msgstr ""
267
 
268
+ #: inc/php/page.php:194
269
  msgid "I love this plugin! Can I help somehow?"
270
  msgstr ""
271
 
272
+ #: inc/php/page.php:196
273
  #, php-format
274
  msgid "Yes, any contributions are very welcome! Please visit %s our donation page %s. Thank you!"
275
  msgstr ""
276
 
277
+ #: inc/php/page.php:202
278
  msgid "My question wasn't answered here."
279
  msgstr ""
280
 
281
+ #: inc/php/page.php:204
282
  #, php-format
283
  msgid "You can ask your question on %s this page %s. But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
284
  msgstr ""
285
 
286
+ #: inc/php/page.php:218
287
  msgid "Support Us"
288
  msgstr ""
289
 
290
+ #: inc/php/page.php:226 inc/php/settings.php:94 inc/php/sidebar.php:54
291
  msgid "Donate with PayPal"
292
  msgstr ""
293
 
294
+ #: inc/php/page.php:231
295
  #, php-format
296
  msgid "Hello! My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
297
  msgstr ""
298
 
299
+ #: inc/php/page.php:239
300
  msgid "Our intention is to create projects that will make this world a better place. Our motto is - «Follow your dreams and don’t give up». We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
301
  msgstr ""
302
 
303
+ #: inc/php/page.php:240
304
  msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them. But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
305
  msgstr ""
306
 
307
+ #: inc/php/page.php:241
308
  msgid "If you appreciate our work, you can buy us a cup of coffee!"
309
  msgstr ""
310
 
311
+ #: inc/php/page.php:242
312
  msgid "Thank you for your support!"
313
  msgstr ""
314
 
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: Arthur Gareginyan
3
  Tags: inject code, inject scripts, inject javascript, inject js, inject html, inject css, insert code, insert scripts, insert javascript, insert js, insert html, insert css, inject custom code, inject custom scripts, inject custom snippet, insert custom code, insert custom scripts, insert custom snippet, html, javascript, js, css, code, custom code, script, scripts, custom scripts, meta, meta tags, head, header, head section, head area, footer, footer section, footer area
4
  Donate link: https://www.spacexchimp.com/donate.html
5
  Requires at least: 3.9
6
- Tested up to: 4.9
7
- Stable tag: 4.33
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -70,7 +70,7 @@ This plugin is ready for translation and has already been translated into severa
70
  * Russian (translation by [Milena Kiseleva](https://www.instagram.com/milava_kiseleva/))
71
  * German (translation by Michael)
72
  * Polish
73
- * Spanish (translation by Patricio Toledo)
74
  * Dutch (translation by Peter Leenders)
75
 
76
  If you want to help translate this plugin then please visit the [translation page](https://translate.wordpress.org/projects/wp-plugins/header-and-footer-scripts-inserter).
@@ -157,6 +157,13 @@ add_action( 'wp_head', 'my_custom_html_code' );`
157
 
158
  To apply the PHP code on a website, we can recommend you to use another our plugin called [My Custom Functions](https://wordpress.org/plugins/my-custom-functions/).
159
 
 
 
 
 
 
 
 
160
  = Q. It's not working. What could be wrong? =
161
  A. As with every plugin, it's possible that things don't work. The most common reason for this is a web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load. This is called the browser's cache.​ Clearing your browser's cache may solve the problem.
162
 
@@ -210,6 +217,14 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
210
 
211
  == Changelog ==
212
 
 
 
 
 
 
 
 
 
213
  = 4.33 =
214
  * Improvement: Design of the plugin settings page is improved.
215
 
3
  Tags: inject code, inject scripts, inject javascript, inject js, inject html, inject css, insert code, insert scripts, insert javascript, insert js, insert html, insert css, inject custom code, inject custom scripts, inject custom snippet, insert custom code, insert custom scripts, insert custom snippet, html, javascript, js, css, code, custom code, script, scripts, custom scripts, meta, meta tags, head, header, head section, head area, footer, footer section, footer area
4
  Donate link: https://www.spacexchimp.com/donate.html
5
  Requires at least: 3.9
6
+ Tested up to: 5.0
7
+ Stable tag: 4.34
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
70
  * Russian (translation by [Milena Kiseleva](https://www.instagram.com/milava_kiseleva/))
71
  * German (translation by Michael)
72
  * Polish
73
+ * Spanish (translation by Ramiro Garcés and Patricio Toledo)
74
  * Dutch (translation by Peter Leenders)
75
 
76
  If you want to help translate this plugin then please visit the [translation page](https://translate.wordpress.org/projects/wp-plugins/header-and-footer-scripts-inserter).
157
 
158
  To apply the PHP code on a website, we can recommend you to use another our plugin called [My Custom Functions](https://wordpress.org/plugins/my-custom-functions/).
159
 
160
+ = Q. My custom HTML code is not working. What could be wrong? =
161
+ A. It happens that your custom HTML code that you insert on the plugin page does not work, even if an error message does not appear. Here are a few of the most likely causes of the issue:
162
+
163
+ 1. You have a typo during the insertion of your custom HTML code.
164
+ 2. Your custom HTML code has a syntax error.
165
+ 3. Your custom HTML code is incorrect and may not work.
166
+
167
  = Q. It's not working. What could be wrong? =
168
  A. As with every plugin, it's possible that things don't work. The most common reason for this is a web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load. This is called the browser's cache.​ Clearing your browser's cache may solve the problem.
169
 
217
 
218
  == Changelog ==
219
 
220
+ = 4.34 =
221
+ * Content of the "Usage" section updated.
222
+ * Content of the "FAQ" section updated.
223
+ * Code formatting in the "admin.js" file improved.
224
+ * Code commenting improved.
225
+ * The copyright date updated.
226
+ * Translation files are updated.
227
+
228
  = 4.33 =
229
  * Improvement: Design of the plugin settings page is improved.
230