Head and Footer Scripts Inserter - Version 4.23

Version Description

  • Fixed localization of the word "licence". (Thanks to Garrett Hyder @garrett-eclipse)
  • Settings for the CodeMirror editor are moved to a separate file 'codemirror-settings.js'.
  • Added the addon 'placeholder.js' to the CodeMirror editor. Added a placeholder for code fields.
  • The height of each text field of the editor is changed to 200px.
  • The code that adds lines to the CodeMirror editor, if all lines are less than 10, is deleted.
  • Translations are updated.
Download this release

Release Info

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

Code changes from version 4.22 to 4.23

header-and-footer-scripts-inserter.php CHANGED
@@ -5,7 +5,7 @@
5
  * Description: Easily add your scripts to the WordPress website's head and footer sections. This is a must have tool for authors and website's owners.
6
  * Author: Space X-Chimp
7
  * Author URI: https://www.spacexchimp.com
8
- * Version: 4.22
9
  * License: GPL3
10
  * Text Domain: header-and-footer-scripts-inserter
11
  * Domain Path: /languages/
5
  * Description: Easily add your scripts to the WordPress website's head and footer sections. This is a must have tool for authors and website's owners.
6
  * Author: Space X-Chimp
7
  * Author URI: https://www.spacexchimp.com
8
+ * Version: 4.23
9
  * License: GPL3
10
  * Text Domain: header-and-footer-scripts-inserter
11
  * Domain Path: /languages/
inc/css/admin.css CHANGED
@@ -544,11 +544,14 @@ form .help-text {
544
 
545
  /* CodeMirror Editor */
546
  .CodeMirror {
547
- height: 100% !important;
548
  border: 1px solid #ddd;
549
  margin-left: 5px;
550
  margin-right: 5px;
551
  }
 
 
 
552
 
553
  /* Messages */
554
  #setting-error-settings_updated {
544
 
545
  /* CodeMirror Editor */
546
  .CodeMirror {
547
+ height: 200px !important;
548
  border: 1px solid #ddd;
549
  margin-left: 5px;
550
  margin-right: 5px;
551
  }
552
+ .CodeMirror pre.CodeMirror-placeholder {
553
+ color: #999;
554
+ }
555
 
556
  /* Messages */
557
  #setting-error-settings_updated {
inc/js/admin.js CHANGED
@@ -34,16 +34,4 @@ jQuery(document).ready(function($) {
34
  }
35
  });
36
 
37
- // Find textareas on page and replace them with the CodeMirror editor
38
- $('textarea').each(function(index, elements) {
39
- var editor = CodeMirror.fromTextArea( elements, {
40
- lineNumbers: true,
41
- firstLineNumber: 1,
42
- matchBrackets: true,
43
- indentUnit: 4,
44
- mode: 'text/html',
45
- styleActiveLine: true
46
- });
47
- });
48
-
49
  });
34
  }
35
  });
36
 
 
 
 
 
 
 
 
 
 
 
 
 
37
  });
inc/js/codemirror-settings.js ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ * CodeMirror editor settings
3
+ *
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
+
11
+ jQuery(document).ready(function($) {
12
+
13
+ "use strict";
14
+
15
+ // Find textareas on page and replace them with the CodeMirror editor
16
+ $('textarea').each(function(index, element){
17
+ var editor = CodeMirror.fromTextArea(element, {
18
+ lineNumbers: true,
19
+ firstLineNumber: 1,
20
+ matchBrackets: true,
21
+ indentUnit: 4,
22
+ mode: 'text/html',
23
+ styleActiveLine: true
24
+ });
25
+ });
26
+
27
+ });
inc/lib/codemirror/addon/display/placeholder.js ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ // CodeMirror, copyright (c) by Marijn Haverbeke and others
2
+ // Distributed under an MIT license: http://codemirror.net/LICENSE
3
+
4
+ (function(mod) {
5
+ if (typeof exports == "object" && typeof module == "object") // CommonJS
6
+ mod(require("../../lib/codemirror"));
7
+ else if (typeof define == "function" && define.amd) // AMD
8
+ define(["../../lib/codemirror"], mod);
9
+ else // Plain browser env
10
+ mod(CodeMirror);
11
+ })(function(CodeMirror) {
12
+ CodeMirror.defineOption("placeholder", "", function(cm, val, old) {
13
+ var prev = old && old != CodeMirror.Init;
14
+ if (val && !prev) {
15
+ cm.on("blur", onBlur);
16
+ cm.on("change", onChange);
17
+ cm.on("swapDoc", onChange);
18
+ onChange(cm);
19
+ } else if (!val && prev) {
20
+ cm.off("blur", onBlur);
21
+ cm.off("change", onChange);
22
+ cm.off("swapDoc", onChange);
23
+ clearPlaceholder(cm);
24
+ var wrapper = cm.getWrapperElement();
25
+ wrapper.className = wrapper.className.replace(" CodeMirror-empty", "");
26
+ }
27
+
28
+ if (val && !cm.hasFocus()) onBlur(cm);
29
+ });
30
+
31
+ function clearPlaceholder(cm) {
32
+ if (cm.state.placeholder) {
33
+ cm.state.placeholder.parentNode.removeChild(cm.state.placeholder);
34
+ cm.state.placeholder = null;
35
+ }
36
+ }
37
+ function setPlaceholder(cm) {
38
+ clearPlaceholder(cm);
39
+ var elt = cm.state.placeholder = document.createElement("pre");
40
+ elt.style.cssText = "height: 0; overflow: visible";
41
+ elt.style.direction = cm.getOption("direction");
42
+ elt.className = "CodeMirror-placeholder";
43
+ var placeHolder = cm.getOption("placeholder")
44
+ if (typeof placeHolder == "string") placeHolder = document.createTextNode(placeHolder)
45
+ elt.appendChild(placeHolder)
46
+ cm.display.lineSpace.insertBefore(elt, cm.display.lineSpace.firstChild);
47
+ }
48
+
49
+ function onBlur(cm) {
50
+ if (isEmpty(cm)) setPlaceholder(cm);
51
+ }
52
+ function onChange(cm) {
53
+ var wrapper = cm.getWrapperElement(), empty = isEmpty(cm);
54
+ wrapper.className = wrapper.className.replace(" CodeMirror-empty", "") + (empty ? " CodeMirror-empty" : "");
55
+
56
+ if (empty) setPlaceholder(cm);
57
+ else clearPlaceholder(cm);
58
+ }
59
+
60
+ function isEmpty(cm) {
61
+ return (cm.lineCount() === 1) && (cm.getLine(0) === "");
62
+ }
63
+ });
inc/php/enqueue.php CHANGED
@@ -34,12 +34,13 @@ function spacexchimp_p006_load_scripts_admin( $hook ) {
34
  // CodeMirror library
35
  wp_enqueue_style( $prefix . '-codemirror-css', $url . 'inc/lib/codemirror/lib/codemirror.css', array(), $version, 'all' );
36
  wp_enqueue_script( $prefix . '-codemirror-js', $url . 'inc/lib/codemirror/lib/codemirror.js', array(), $version, false );
 
37
  $modes = array( 'css', 'htmlmixed', 'javascript', 'xml' );
38
  foreach ( $modes as $mode ) {
39
  wp_enqueue_script( $prefix . '-codemirror-mode-' . $mode . '-js', $url . 'inc/lib/codemirror/mode/' . $mode . '/' . $mode . '.js', array(), $version, true );
40
  }
41
  $addons = array(
42
- 'display' => array( 'autorefresh' ),
43
  'selection' => array( 'active-line' )
44
  );
45
  foreach ( $addons as $addons_group_name => $addons_group ) {
34
  // CodeMirror library
35
  wp_enqueue_style( $prefix . '-codemirror-css', $url . 'inc/lib/codemirror/lib/codemirror.css', array(), $version, 'all' );
36
  wp_enqueue_script( $prefix . '-codemirror-js', $url . 'inc/lib/codemirror/lib/codemirror.js', array(), $version, false );
37
+ wp_enqueue_script( $prefix . '-codemirror-settings-js', $url . 'inc/js/codemirror-settings.js', array(), $version, true );
38
  $modes = array( 'css', 'htmlmixed', 'javascript', 'xml' );
39
  foreach ( $modes as $mode ) {
40
  wp_enqueue_script( $prefix . '-codemirror-mode-' . $mode . '-js', $url . 'inc/lib/codemirror/mode/' . $mode . '/' . $mode . '.js', array(), $version, true );
41
  }
42
  $addons = array(
43
+ 'display' => array( 'autorefresh', 'placeholder' ),
44
  'selection' => array( 'active-line' )
45
  );
46
  foreach ( $addons as $addons_group_name => $addons_group ) {
inc/php/settings.php CHANGED
@@ -25,15 +25,6 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
25
  $header_end = !empty( $options['header_end'] ) ? esc_attr( $options['header_end'] ) : '';
26
  $footer_beginning = !empty( $options['footer_beginning'] ) ? esc_attr( $options['footer_beginning'] ) : '';
27
  $footer_end = !empty( $options['footer_end'] ) ? esc_attr( $options['footer_end'] ) : '';
28
-
29
- // Add rows if all the rows is less than 10
30
- $type = array("header_beginning", "header_end", "footer_beginning", "footer_end");
31
- foreach ( $type as $value ) {
32
- $i = count(explode("\n", $$value));
33
- for ( $i = $i; $i < 10; $i++) {
34
- $$value .= "\n";
35
- }
36
- }
37
  ?>
38
 
39
  <div class="postbox" id="head">
@@ -42,10 +33,18 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
42
  <p class="note"><?php _e( 'You can use the fields below to add scripts to HEAD section of your website.', $text ); ?></p>
43
 
44
  <p class='help-text'><?php _e( 'Scripts from this field will be printed in the beginning of <b>HEAD</b> section. Do not place plain text in this!', $text ); ?></p>
45
- <textarea name="spacexchimp_p006_settings[header_beginning]" id="spacexchimp_p006_settings[header_beginning]" ><?php echo $header_beginning; ?></textarea>
 
 
 
 
46
 
47
  <p class='help-text'><?php _e( 'Scripts from this field will be printed in the end of <b>HEAD</b> section. Do not place plain text in this!', $text ); ?></p>
48
- <textarea name="spacexchimp_p006_settings[header_end]" id="spacexchimp_p006_settings[header_end]" ><?php echo $header_end; ?></textarea>
 
 
 
 
49
 
50
  <input type="submit" name="submit" id="submit" class="btn btn-primary" value="<?php _e( 'Save changes', $text ); ?>">
51
  </div>
@@ -57,10 +56,18 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
57
  <p class="note"><?php _e( 'You can use the fields below to add scripts to FOOTER section of your website.', $text ); ?></p>
58
 
59
  <p class='help-text'><?php _e( 'Scripts from this field will be printed before a footers scripts. Do not place plain text in this!', $text ); ?></p>
60
- <textarea name="spacexchimp_p006_settings[footer_beginning]" id="spacexchimp_p006_settings[footer_beginning]" ><?php echo $footer_beginning; ?></textarea>
 
 
 
 
61
 
62
  <p class='help-text'><?php _e( 'Scripts from this field will be printed after all footers scripts. Do not place plain text in this!', $text ); ?></p>
63
- <textarea name="spacexchimp_p006_settings[footer_end]" id="spacexchimp_p006_settings[footer_end]" ><?php echo $footer_end; ?></textarea>
 
 
 
 
64
 
65
  <input type="submit" name="submit" id="submit" class="btn btn-primary" value="<?php _e( 'Save changes', $text ); ?>">
66
  </div>
25
  $header_end = !empty( $options['header_end'] ) ? esc_attr( $options['header_end'] ) : '';
26
  $footer_beginning = !empty( $options['footer_beginning'] ) ? esc_attr( $options['footer_beginning'] ) : '';
27
  $footer_end = !empty( $options['footer_end'] ) ? esc_attr( $options['footer_end'] ) : '';
 
 
 
 
 
 
 
 
 
28
  ?>
29
 
30
  <div class="postbox" id="head">
33
  <p class="note"><?php _e( 'You can use the fields below to add scripts to HEAD section of your website.', $text ); ?></p>
34
 
35
  <p class='help-text'><?php _e( 'Scripts from this field will be printed in the beginning of <b>HEAD</b> section. Do not place plain text in this!', $text ); ?></p>
36
+ <textarea
37
+ name="spacexchimp_p006_settings[header_beginning]"
38
+ id="spacexchimp_p006_settings[header_beginning]"
39
+ placeholder="<?php _e( 'Enter your scripts here', $text ); ?>"
40
+ ><?php echo $header_beginning; ?></textarea>
41
 
42
  <p class='help-text'><?php _e( 'Scripts from this field will be printed in the end of <b>HEAD</b> section. Do not place plain text in this!', $text ); ?></p>
43
+ <textarea
44
+ name="spacexchimp_p006_settings[header_end]"
45
+ id="spacexchimp_p006_settings[header_end]"
46
+ placeholder="<?php _e( 'Enter your scripts here', $text ); ?>"
47
+ ><?php echo $header_end; ?></textarea>
48
 
49
  <input type="submit" name="submit" id="submit" class="btn btn-primary" value="<?php _e( 'Save changes', $text ); ?>">
50
  </div>
56
  <p class="note"><?php _e( 'You can use the fields below to add scripts to FOOTER section of your website.', $text ); ?></p>
57
 
58
  <p class='help-text'><?php _e( 'Scripts from this field will be printed before a footers scripts. Do not place plain text in this!', $text ); ?></p>
59
+ <textarea
60
+ name="spacexchimp_p006_settings[footer_beginning]"
61
+ id="spacexchimp_p006_settings[footer_beginning]"
62
+ placeholder="<?php _e( 'Enter your scripts here', $text ); ?>"
63
+ ><?php echo $footer_beginning; ?></textarea>
64
 
65
  <p class='help-text'><?php _e( 'Scripts from this field will be printed after all footers scripts. Do not place plain text in this!', $text ); ?></p>
66
+ <textarea
67
+ name="spacexchimp_p006_settings[footer_end]"
68
+ id="spacexchimp_p006_settings[footer_end]"
69
+ placeholder="<?php _e( 'Enter your scripts here', $text ); ?>"
70
+ ><?php echo $footer_end; ?></textarea>
71
 
72
  <input type="submit" name="submit" id="submit" class="btn btn-primary" value="<?php _e( 'Save changes', $text ); ?>">
73
  </div>
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-04-20 01:34+0300\n"
7
- "PO-Revision-Date: 2018-04-20 01:34+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: German\n"
10
  "Language: de_DE\n"
@@ -74,7 +74,7 @@ msgstr "Verwendung"
74
  msgid "F.A.Q."
75
  msgstr "F.A.Q."
76
 
77
- #: inc/php/page.php:47 inc/php/settings.php:70 inc/php/sidebar.php:30
78
  msgid "Support"
79
  msgstr "Support"
80
 
@@ -265,7 +265,7 @@ msgstr ""
265
  msgid "Support Me"
266
  msgstr "Unterstützen Sie mich"
267
 
268
- #: inc/php/page.php:228 inc/php/settings.php:77 inc/php/sidebar.php:37
269
  msgid "Donate with PayPal"
270
  msgstr "Spende mit PayPal"
271
 
@@ -290,47 +290,52 @@ msgstr "Wenn Ihnen meine Arbeit gefällt, können Sie mir gerne einen Kaffee kau
290
  msgid "Thank you for your support!"
291
  msgstr "Danke für Ihre Unterstützung!"
292
 
293
- #: inc/php/settings.php:40
294
  msgid "Head Section"
295
  msgstr ""
296
 
297
- #: inc/php/settings.php:42
298
  msgid "You can use the fields below to add scripts to HEAD section of your website."
299
  msgstr ""
300
 
301
- #: inc/php/settings.php:44
302
  msgid "Scripts from this field will be printed in the beginning of <b>HEAD</b> section. Do not place plain text in this!"
303
  msgstr ""
304
 
305
- #: inc/php/settings.php:47
 
 
 
 
 
306
  msgid "Scripts from this field will be printed in the end of <b>HEAD</b> section. Do not place plain text in this!"
307
  msgstr ""
308
 
309
- #: inc/php/settings.php:50 inc/php/settings.php:65
310
  msgid "Save changes"
311
  msgstr "Änderungen speichern"
312
 
313
- #: inc/php/settings.php:55
314
  msgid "Footer Section"
315
  msgstr ""
316
 
317
- #: inc/php/settings.php:57
318
  msgid "You can use the fields below to add scripts to FOOTER section of your website."
319
  msgstr ""
320
 
321
- #: inc/php/settings.php:59
322
  msgid "Scripts from this field will be printed before a footers scripts. Do not place plain text in this!"
323
  msgstr ""
324
 
325
- #: inc/php/settings.php:62
326
  msgid "Scripts from this field will be printed after all footers scripts. Do not place plain text in this!"
327
  msgstr ""
328
 
329
- #: inc/php/settings.php:72 inc/php/sidebar.php:32
330
  msgid "I'm an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
331
  msgstr "Ich bin ein unabhängiger Entwickler ohne regelmäßiges Einkommen. Jeder kleine Beitrag trägt dazu bei, meine Kosten zu decken und ich kann mehr Zeit damit verbringen, Dinge für Leute wie Sie zu entwickeln."
332
 
333
- #: inc/php/settings.php:79 inc/php/sidebar.php:39
334
  msgid "Thanks for your support!"
335
  msgstr "Danke für Ihre Unterstützung!"
336
 
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Head and Footer Scripts Inserter\n"
6
+ "POT-Creation-Date: 2018-06-30 20:07+0300\n"
7
+ "PO-Revision-Date: 2018-06-30 20:07+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: German\n"
10
  "Language: de_DE\n"
74
  msgid "F.A.Q."
75
  msgstr "F.A.Q."
76
 
77
+ #: inc/php/page.php:47 inc/php/settings.php:77 inc/php/sidebar.php:30
78
  msgid "Support"
79
  msgstr "Support"
80
 
265
  msgid "Support Me"
266
  msgstr "Unterstützen Sie mich"
267
 
268
+ #: inc/php/page.php:228 inc/php/settings.php:84 inc/php/sidebar.php:37
269
  msgid "Donate with PayPal"
270
  msgstr "Spende mit PayPal"
271
 
290
  msgid "Thank you for your support!"
291
  msgstr "Danke für Ihre Unterstützung!"
292
 
293
+ #: inc/php/settings.php:31
294
  msgid "Head Section"
295
  msgstr ""
296
 
297
+ #: inc/php/settings.php:33
298
  msgid "You can use the fields below to add scripts to HEAD section of your website."
299
  msgstr ""
300
 
301
+ #: inc/php/settings.php:35
302
  msgid "Scripts from this field will be printed in the beginning of <b>HEAD</b> section. Do not place plain text in this!"
303
  msgstr ""
304
 
305
+ #: inc/php/settings.php:39 inc/php/settings.php:46 inc/php/settings.php:62
306
+ #: inc/php/settings.php:69
307
+ msgid "Enter your scripts here"
308
+ msgstr ""
309
+
310
+ #: inc/php/settings.php:42
311
  msgid "Scripts from this field will be printed in the end of <b>HEAD</b> section. Do not place plain text in this!"
312
  msgstr ""
313
 
314
+ #: inc/php/settings.php:49 inc/php/settings.php:72
315
  msgid "Save changes"
316
  msgstr "Änderungen speichern"
317
 
318
+ #: inc/php/settings.php:54
319
  msgid "Footer Section"
320
  msgstr ""
321
 
322
+ #: inc/php/settings.php:56
323
  msgid "You can use the fields below to add scripts to FOOTER section of your website."
324
  msgstr ""
325
 
326
+ #: inc/php/settings.php:58
327
  msgid "Scripts from this field will be printed before a footers scripts. Do not place plain text in this!"
328
  msgstr ""
329
 
330
+ #: inc/php/settings.php:65
331
  msgid "Scripts from this field will be printed after all footers scripts. Do not place plain text in this!"
332
  msgstr ""
333
 
334
+ #: inc/php/settings.php:79 inc/php/sidebar.php:32
335
  msgid "I'm an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
336
  msgstr "Ich bin ein unabhängiger Entwickler ohne regelmäßiges Einkommen. Jeder kleine Beitrag trägt dazu bei, meine Kosten zu decken und ich kann mehr Zeit damit verbringen, Dinge für Leute wie Sie zu entwickeln."
337
 
338
+ #: inc/php/settings.php:86 inc/php/sidebar.php:39
339
  msgid "Thanks for your support!"
340
  msgstr "Danke für Ihre Unterstützung!"
341
 
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-04-20 01:34+0300\n"
7
- "PO-Revision-Date: 2018-04-20 01:34+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Spanish\n"
10
  "Language: es_ES\n"
@@ -74,7 +74,7 @@ msgstr "Uso"
74
  msgid "F.A.Q."
75
  msgstr "Preguntas ?"
76
 
77
- #: inc/php/page.php:47 inc/php/settings.php:70 inc/php/sidebar.php:30
78
  msgid "Support"
79
  msgstr "Soporte"
80
 
@@ -265,7 +265,7 @@ msgstr "Puede hacer tu pregunta en %s la página de soporte del complementos %s.
265
  msgid "Support Me"
266
  msgstr "Apoyarme!"
267
 
268
- #: inc/php/page.php:228 inc/php/settings.php:77 inc/php/sidebar.php:37
269
  msgid "Donate with PayPal"
270
  msgstr "Donar con PayPal"
271
 
@@ -290,47 +290,52 @@ msgstr "Si aprecias mi trabajo, puedes comprarme un café!"
290
  msgid "Thank you for your support!"
291
  msgstr "¡Gracias por tu apoyo!"
292
 
293
- #: inc/php/settings.php:40
294
  msgid "Head Section"
295
  msgstr ""
296
 
297
- #: inc/php/settings.php:42
298
  msgid "You can use the fields below to add scripts to HEAD section of your website."
299
  msgstr ""
300
 
301
- #: inc/php/settings.php:44
302
  msgid "Scripts from this field will be printed in the beginning of <b>HEAD</b> section. Do not place plain text in this!"
303
  msgstr ""
304
 
305
- #: inc/php/settings.php:47
 
 
 
 
 
306
  msgid "Scripts from this field will be printed in the end of <b>HEAD</b> section. Do not place plain text in this!"
307
  msgstr ""
308
 
309
- #: inc/php/settings.php:50 inc/php/settings.php:65
310
  msgid "Save changes"
311
  msgstr "Guardar Cambios"
312
 
313
- #: inc/php/settings.php:55
314
  msgid "Footer Section"
315
  msgstr ""
316
 
317
- #: inc/php/settings.php:57
318
  msgid "You can use the fields below to add scripts to FOOTER section of your website."
319
  msgstr ""
320
 
321
- #: inc/php/settings.php:59
322
  msgid "Scripts from this field will be printed before a footers scripts. Do not place plain text in this!"
323
  msgstr ""
324
 
325
- #: inc/php/settings.php:62
326
  msgid "Scripts from this field will be printed after all footers scripts. Do not place plain text in this!"
327
  msgstr ""
328
 
329
- #: inc/php/settings.php:72 inc/php/sidebar.php:32
330
  msgid "I'm an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
331
  msgstr "Soy un desarrollador independiente, sin un ingreso regular, por lo que cada pequeña contribución ayuda a cubrir mis costos y me deja pasar más tiempo construyendo cosas para que personas como tú las disfruten."
332
 
333
- #: inc/php/settings.php:79 inc/php/sidebar.php:39
334
  msgid "Thanks for your support!"
335
  msgstr "¡Gracias por tu apoyo!"
336
 
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Head and Footer Scripts Inserter\n"
6
+ "POT-Creation-Date: 2018-06-30 20:07+0300\n"
7
+ "PO-Revision-Date: 2018-06-30 20:07+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Spanish\n"
10
  "Language: es_ES\n"
74
  msgid "F.A.Q."
75
  msgstr "Preguntas ?"
76
 
77
+ #: inc/php/page.php:47 inc/php/settings.php:77 inc/php/sidebar.php:30
78
  msgid "Support"
79
  msgstr "Soporte"
80
 
265
  msgid "Support Me"
266
  msgstr "Apoyarme!"
267
 
268
+ #: inc/php/page.php:228 inc/php/settings.php:84 inc/php/sidebar.php:37
269
  msgid "Donate with PayPal"
270
  msgstr "Donar con PayPal"
271
 
290
  msgid "Thank you for your support!"
291
  msgstr "¡Gracias por tu apoyo!"
292
 
293
+ #: inc/php/settings.php:31
294
  msgid "Head Section"
295
  msgstr ""
296
 
297
+ #: inc/php/settings.php:33
298
  msgid "You can use the fields below to add scripts to HEAD section of your website."
299
  msgstr ""
300
 
301
+ #: inc/php/settings.php:35
302
  msgid "Scripts from this field will be printed in the beginning of <b>HEAD</b> section. Do not place plain text in this!"
303
  msgstr ""
304
 
305
+ #: inc/php/settings.php:39 inc/php/settings.php:46 inc/php/settings.php:62
306
+ #: inc/php/settings.php:69
307
+ msgid "Enter your scripts here"
308
+ msgstr ""
309
+
310
+ #: inc/php/settings.php:42
311
  msgid "Scripts from this field will be printed in the end of <b>HEAD</b> section. Do not place plain text in this!"
312
  msgstr ""
313
 
314
+ #: inc/php/settings.php:49 inc/php/settings.php:72
315
  msgid "Save changes"
316
  msgstr "Guardar Cambios"
317
 
318
+ #: inc/php/settings.php:54
319
  msgid "Footer Section"
320
  msgstr ""
321
 
322
+ #: inc/php/settings.php:56
323
  msgid "You can use the fields below to add scripts to FOOTER section of your website."
324
  msgstr ""
325
 
326
+ #: inc/php/settings.php:58
327
  msgid "Scripts from this field will be printed before a footers scripts. Do not place plain text in this!"
328
  msgstr ""
329
 
330
+ #: inc/php/settings.php:65
331
  msgid "Scripts from this field will be printed after all footers scripts. Do not place plain text in this!"
332
  msgstr ""
333
 
334
+ #: inc/php/settings.php:79 inc/php/sidebar.php:32
335
  msgid "I'm an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
336
  msgstr "Soy un desarrollador independiente, sin un ingreso regular, por lo que cada pequeña contribución ayuda a cubrir mis costos y me deja pasar más tiempo construyendo cosas para que personas como tú las disfruten."
337
 
338
+ #: inc/php/settings.php:86 inc/php/sidebar.php:39
339
  msgid "Thanks for your support!"
340
  msgstr "¡Gracias por tu apoyo!"
341
 
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: Header and Footer Scripts Inserter\n"
6
- "POT-Creation-Date: 2018-04-20 01:34+0300\n"
7
- "PO-Revision-Date: 2018-04-20 01:34+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Polish\n"
10
  "Language: pl_PL\n"
@@ -75,7 +75,7 @@ msgstr "Wykorzystanie"
75
  msgid "F.A.Q."
76
  msgstr "FAQ"
77
 
78
- #: inc/php/page.php:47 inc/php/settings.php:70 inc/php/sidebar.php:30
79
  msgid "Support"
80
  msgstr ""
81
 
@@ -266,7 +266,7 @@ msgstr ""
266
  msgid "Support Me"
267
  msgstr ""
268
 
269
- #: inc/php/page.php:228 inc/php/settings.php:77 inc/php/sidebar.php:37
270
  msgid "Donate with PayPal"
271
  msgstr ""
272
 
@@ -291,47 +291,52 @@ msgstr ""
291
  msgid "Thank you for your support!"
292
  msgstr ""
293
 
294
- #: inc/php/settings.php:40
295
  msgid "Head Section"
296
  msgstr "Sekcja: Nagłówek"
297
 
298
- #: inc/php/settings.php:42
299
  msgid "You can use the fields below to add scripts to HEAD section of your website."
300
  msgstr "Pola poniżej można użyć, aby dodać kody skryptów do nagłówka witryny."
301
 
302
- #: inc/php/settings.php:44
303
  msgid "Scripts from this field will be printed in the beginning of <b>HEAD</b> section. Do not place plain text in this!"
304
  msgstr "Skrypty z tego pola zostaną dodane na początku sekcji <b>HEAD</b>. Nie należy tu umieszczać zwykłego tekstu!"
305
 
306
- #: inc/php/settings.php:47
 
 
 
 
 
307
  msgid "Scripts from this field will be printed in the end of <b>HEAD</b> section. Do not place plain text in this!"
308
  msgstr "Skrypty z tego pola zostaną dodane na końcu sekcji <b>HEAD</b>. Nie należy tu umieszczać zwykłego tekstu!"
309
 
310
- #: inc/php/settings.php:50 inc/php/settings.php:65
311
  msgid "Save changes"
312
  msgstr "Zapisz"
313
 
314
- #: inc/php/settings.php:55
315
  msgid "Footer Section"
316
  msgstr "Sekcja: Stopka"
317
 
318
- #: inc/php/settings.php:57
319
  msgid "You can use the fields below to add scripts to FOOTER section of your website."
320
  msgstr "Pola poniżej można użyć, aby dodać kody skryptów do stopki witryny."
321
 
322
- #: inc/php/settings.php:59
323
  msgid "Scripts from this field will be printed before a footers scripts. Do not place plain text in this!"
324
  msgstr "Skrypty z tego pola zostaną dodane przed skryptami ze stopki. Nie należy tu umieszczać zwykłego tekstu!"
325
 
326
- #: inc/php/settings.php:62
327
  msgid "Scripts from this field will be printed after all footers scripts. Do not place plain text in this!"
328
  msgstr "Skrypty z tego pola zostaną dodane za skryptami ze stopki. Nie należy tu umieszczać zwykłego tekstu!"
329
 
330
- #: inc/php/settings.php:72 inc/php/sidebar.php:32
331
  msgid "I'm an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
332
  msgstr ""
333
 
334
- #: inc/php/settings.php:79 inc/php/sidebar.php:39
335
  msgid "Thanks for your support!"
336
  msgstr "Dziękujemy za wsparcie!"
337
 
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Header and Footer Scripts Inserter\n"
6
+ "POT-Creation-Date: 2018-06-30 20:07+0300\n"
7
+ "PO-Revision-Date: 2018-06-30 20:07+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Polish\n"
10
  "Language: pl_PL\n"
75
  msgid "F.A.Q."
76
  msgstr "FAQ"
77
 
78
+ #: inc/php/page.php:47 inc/php/settings.php:77 inc/php/sidebar.php:30
79
  msgid "Support"
80
  msgstr ""
81
 
266
  msgid "Support Me"
267
  msgstr ""
268
 
269
+ #: inc/php/page.php:228 inc/php/settings.php:84 inc/php/sidebar.php:37
270
  msgid "Donate with PayPal"
271
  msgstr ""
272
 
291
  msgid "Thank you for your support!"
292
  msgstr ""
293
 
294
+ #: inc/php/settings.php:31
295
  msgid "Head Section"
296
  msgstr "Sekcja: Nagłówek"
297
 
298
+ #: inc/php/settings.php:33
299
  msgid "You can use the fields below to add scripts to HEAD section of your website."
300
  msgstr "Pola poniżej można użyć, aby dodać kody skryptów do nagłówka witryny."
301
 
302
+ #: inc/php/settings.php:35
303
  msgid "Scripts from this field will be printed in the beginning of <b>HEAD</b> section. Do not place plain text in this!"
304
  msgstr "Skrypty z tego pola zostaną dodane na początku sekcji <b>HEAD</b>. Nie należy tu umieszczać zwykłego tekstu!"
305
 
306
+ #: inc/php/settings.php:39 inc/php/settings.php:46 inc/php/settings.php:62
307
+ #: inc/php/settings.php:69
308
+ msgid "Enter your scripts here"
309
+ msgstr ""
310
+
311
+ #: inc/php/settings.php:42
312
  msgid "Scripts from this field will be printed in the end of <b>HEAD</b> section. Do not place plain text in this!"
313
  msgstr "Skrypty z tego pola zostaną dodane na końcu sekcji <b>HEAD</b>. Nie należy tu umieszczać zwykłego tekstu!"
314
 
315
+ #: inc/php/settings.php:49 inc/php/settings.php:72
316
  msgid "Save changes"
317
  msgstr "Zapisz"
318
 
319
+ #: inc/php/settings.php:54
320
  msgid "Footer Section"
321
  msgstr "Sekcja: Stopka"
322
 
323
+ #: inc/php/settings.php:56
324
  msgid "You can use the fields below to add scripts to FOOTER section of your website."
325
  msgstr "Pola poniżej można użyć, aby dodać kody skryptów do stopki witryny."
326
 
327
+ #: inc/php/settings.php:58
328
  msgid "Scripts from this field will be printed before a footers scripts. Do not place plain text in this!"
329
  msgstr "Skrypty z tego pola zostaną dodane przed skryptami ze stopki. Nie należy tu umieszczać zwykłego tekstu!"
330
 
331
+ #: inc/php/settings.php:65
332
  msgid "Scripts from this field will be printed after all footers scripts. Do not place plain text in this!"
333
  msgstr "Skrypty z tego pola zostaną dodane za skryptami ze stopki. Nie należy tu umieszczać zwykłego tekstu!"
334
 
335
+ #: inc/php/settings.php:79 inc/php/sidebar.php:32
336
  msgid "I'm an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
337
  msgstr ""
338
 
339
+ #: inc/php/settings.php:86 inc/php/sidebar.php:39
340
  msgid "Thanks for your support!"
341
  msgstr "Dziękujemy za wsparcie!"
342
 
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: Header and Footer Scripts Inserter\n"
6
- "POT-Creation-Date: 2018-04-20 01:34+0300\n"
7
- "PO-Revision-Date: 2018-04-20 01:34+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Russian\n"
10
  "Language: ru_RU\n"
@@ -74,7 +74,7 @@ msgstr "Применение"
74
  msgid "F.A.Q."
75
  msgstr "F.A.Q."
76
 
77
- #: inc/php/page.php:47 inc/php/settings.php:70 inc/php/sidebar.php:30
78
  msgid "Support"
79
  msgstr "Поддержка"
80
 
@@ -265,7 +265,7 @@ msgstr "Вы можете задать ваш вопрос на %s этой ст
265
  msgid "Support Me"
266
  msgstr "Поддержать меня"
267
 
268
- #: inc/php/page.php:228 inc/php/settings.php:77 inc/php/sidebar.php:37
269
  msgid "Donate with PayPal"
270
  msgstr "Пожертвовать через PayPal"
271
 
@@ -290,47 +290,52 @@ msgstr "Если вы цените мою работу, то вы можете
290
  msgid "Thank you for your support!"
291
  msgstr "Спасибо за вашу поддержку!"
292
 
293
- #: inc/php/settings.php:40
294
  msgid "Head Section"
295
  msgstr "Верхний колонтитул (HEAD)"
296
 
297
- #: inc/php/settings.php:42
298
  msgid "You can use the fields below to add scripts to HEAD section of your website."
299
  msgstr "Используйте поле расположенное ниже для того, чтобы добавить скрипты в верхний колонтитул вашего вебсайта."
300
 
301
- #: inc/php/settings.php:44
302
  msgid "Scripts from this field will be printed in the beginning of <b>HEAD</b> section. Do not place plain text in this!"
303
  msgstr "Скрипты этой области будут напечатаны в начале верхнего колонтитула (<b>HEAD</b>). Не помещайте сюда обычный текст!"
304
 
305
- #: inc/php/settings.php:47
 
 
 
 
 
306
  msgid "Scripts from this field will be printed in the end of <b>HEAD</b> section. Do not place plain text in this!"
307
  msgstr "Скрипты этой области будут напечатаны в конце верхнего колонтитула (<b>HEAD</b>). Не помещайте сюда обычный текст!"
308
 
309
- #: inc/php/settings.php:50 inc/php/settings.php:65
310
  msgid "Save changes"
311
  msgstr "Сохранить изменения"
312
 
313
- #: inc/php/settings.php:55
314
  msgid "Footer Section"
315
  msgstr "Нижний колонтитул (FOOTER)"
316
 
317
- #: inc/php/settings.php:57
318
  msgid "You can use the fields below to add scripts to FOOTER section of your website."
319
  msgstr "Используйте поле расположенное ниже для того, чтобы добавить скрипты в нижний колонтитул вашего вебсайта."
320
 
321
- #: inc/php/settings.php:59
322
  msgid "Scripts from this field will be printed before a footers scripts. Do not place plain text in this!"
323
  msgstr "Скрипты из этой области будут напечатаны в начале нижнего колонтитула. Не помещайте сюда обычный текст!"
324
 
325
- #: inc/php/settings.php:62
326
  msgid "Scripts from this field will be printed after all footers scripts. Do not place plain text in this!"
327
  msgstr "Скрипты из этой области будут напечатаны в конце нижнего колонтитула. Не помещайте сюда обычный текст!"
328
 
329
- #: inc/php/settings.php:72 inc/php/sidebar.php:32
330
  msgid "I'm an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
331
  msgstr "Я независимый разработчик, без регулярного дохода, так что каждый маленький вклад помогает мне покрыть затраты и позволяет тратить больше времени на создание программ для людей как вы."
332
 
333
- #: inc/php/settings.php:79 inc/php/sidebar.php:39
334
  msgid "Thanks for your support!"
335
  msgstr "Спасибо за вашу поддержку!"
336
 
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Header and Footer Scripts Inserter\n"
6
+ "POT-Creation-Date: 2018-06-30 20:07+0300\n"
7
+ "PO-Revision-Date: 2018-06-30 20:07+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Russian\n"
10
  "Language: ru_RU\n"
74
  msgid "F.A.Q."
75
  msgstr "F.A.Q."
76
 
77
+ #: inc/php/page.php:47 inc/php/settings.php:77 inc/php/sidebar.php:30
78
  msgid "Support"
79
  msgstr "Поддержка"
80
 
265
  msgid "Support Me"
266
  msgstr "Поддержать меня"
267
 
268
+ #: inc/php/page.php:228 inc/php/settings.php:84 inc/php/sidebar.php:37
269
  msgid "Donate with PayPal"
270
  msgstr "Пожертвовать через PayPal"
271
 
290
  msgid "Thank you for your support!"
291
  msgstr "Спасибо за вашу поддержку!"
292
 
293
+ #: inc/php/settings.php:31
294
  msgid "Head Section"
295
  msgstr "Верхний колонтитул (HEAD)"
296
 
297
+ #: inc/php/settings.php:33
298
  msgid "You can use the fields below to add scripts to HEAD section of your website."
299
  msgstr "Используйте поле расположенное ниже для того, чтобы добавить скрипты в верхний колонтитул вашего вебсайта."
300
 
301
+ #: inc/php/settings.php:35
302
  msgid "Scripts from this field will be printed in the beginning of <b>HEAD</b> section. Do not place plain text in this!"
303
  msgstr "Скрипты этой области будут напечатаны в начале верхнего колонтитула (<b>HEAD</b>). Не помещайте сюда обычный текст!"
304
 
305
+ #: inc/php/settings.php:39 inc/php/settings.php:46 inc/php/settings.php:62
306
+ #: inc/php/settings.php:69
307
+ msgid "Enter your scripts here"
308
+ msgstr "Поместите сюда свои скрипты"
309
+
310
+ #: inc/php/settings.php:42
311
  msgid "Scripts from this field will be printed in the end of <b>HEAD</b> section. Do not place plain text in this!"
312
  msgstr "Скрипты этой области будут напечатаны в конце верхнего колонтитула (<b>HEAD</b>). Не помещайте сюда обычный текст!"
313
 
314
+ #: inc/php/settings.php:49 inc/php/settings.php:72
315
  msgid "Save changes"
316
  msgstr "Сохранить изменения"
317
 
318
+ #: inc/php/settings.php:54
319
  msgid "Footer Section"
320
  msgstr "Нижний колонтитул (FOOTER)"
321
 
322
+ #: inc/php/settings.php:56
323
  msgid "You can use the fields below to add scripts to FOOTER section of your website."
324
  msgstr "Используйте поле расположенное ниже для того, чтобы добавить скрипты в нижний колонтитул вашего вебсайта."
325
 
326
+ #: inc/php/settings.php:58
327
  msgid "Scripts from this field will be printed before a footers scripts. Do not place plain text in this!"
328
  msgstr "Скрипты из этой области будут напечатаны в начале нижнего колонтитула. Не помещайте сюда обычный текст!"
329
 
330
+ #: inc/php/settings.php:65
331
  msgid "Scripts from this field will be printed after all footers scripts. Do not place plain text in this!"
332
  msgstr "Скрипты из этой области будут напечатаны в конце нижнего колонтитула. Не помещайте сюда обычный текст!"
333
 
334
+ #: inc/php/settings.php:79 inc/php/sidebar.php:32
335
  msgid "I'm an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
336
  msgstr "Я независимый разработчик, без регулярного дохода, так что каждый маленький вклад помогает мне покрыть затраты и позволяет тратить больше времени на создание программ для людей как вы."
337
 
338
+ #: inc/php/settings.php:86 inc/php/sidebar.php:39
339
  msgid "Thanks for your support!"
340
  msgstr "Спасибо за вашу поддержку!"
341
 
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: Header and Footer Scripts Inserter\n"
6
- "POT-Creation-Date: 2018-04-20 01:15+0300\n"
7
  "PO-Revision-Date: 2016-01-30 11:39+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
@@ -72,7 +72,7 @@ msgstr ""
72
  msgid "F.A.Q."
73
  msgstr ""
74
 
75
- #: inc/php/page.php:47 inc/php/settings.php:70 inc/php/sidebar.php:30
76
  msgid "Support"
77
  msgstr ""
78
 
@@ -263,7 +263,7 @@ msgstr ""
263
  msgid "Support Me"
264
  msgstr ""
265
 
266
- #: inc/php/page.php:228 inc/php/settings.php:77 inc/php/sidebar.php:37
267
  msgid "Donate with PayPal"
268
  msgstr ""
269
 
@@ -288,47 +288,52 @@ msgstr ""
288
  msgid "Thank you for your support!"
289
  msgstr ""
290
 
291
- #: inc/php/settings.php:40
292
  msgid "Head Section"
293
  msgstr ""
294
 
295
- #: inc/php/settings.php:42
296
  msgid "You can use the fields below to add scripts to HEAD section of your website."
297
  msgstr ""
298
 
299
- #: inc/php/settings.php:44
300
  msgid "Scripts from this field will be printed in the beginning of <b>HEAD</b> section. Do not place plain text in this!"
301
  msgstr ""
302
 
303
- #: inc/php/settings.php:47
 
 
 
 
 
304
  msgid "Scripts from this field will be printed in the end of <b>HEAD</b> section. Do not place plain text in this!"
305
  msgstr ""
306
 
307
- #: inc/php/settings.php:50 inc/php/settings.php:65
308
  msgid "Save changes"
309
  msgstr ""
310
 
311
- #: inc/php/settings.php:55
312
  msgid "Footer Section"
313
  msgstr ""
314
 
315
- #: inc/php/settings.php:57
316
  msgid "You can use the fields below to add scripts to FOOTER section of your website."
317
  msgstr ""
318
 
319
- #: inc/php/settings.php:59
320
  msgid "Scripts from this field will be printed before a footers scripts. Do not place plain text in this!"
321
  msgstr ""
322
 
323
- #: inc/php/settings.php:62
324
  msgid "Scripts from this field will be printed after all footers scripts. Do not place plain text in this!"
325
  msgstr ""
326
 
327
- #: inc/php/settings.php:72 inc/php/sidebar.php:32
328
  msgid "I'm an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
329
  msgstr ""
330
 
331
- #: inc/php/settings.php:79 inc/php/sidebar.php:39
332
  msgid "Thanks for your support!"
333
  msgstr ""
334
 
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: Header and Footer Scripts Inserter\n"
6
+ "POT-Creation-Date: 2018-06-30 20:07+0300\n"
7
  "PO-Revision-Date: 2016-01-30 11:39+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
72
  msgid "F.A.Q."
73
  msgstr ""
74
 
75
+ #: inc/php/page.php:47 inc/php/settings.php:77 inc/php/sidebar.php:30
76
  msgid "Support"
77
  msgstr ""
78
 
263
  msgid "Support Me"
264
  msgstr ""
265
 
266
+ #: inc/php/page.php:228 inc/php/settings.php:84 inc/php/sidebar.php:37
267
  msgid "Donate with PayPal"
268
  msgstr ""
269
 
288
  msgid "Thank you for your support!"
289
  msgstr ""
290
 
291
+ #: inc/php/settings.php:31
292
  msgid "Head Section"
293
  msgstr ""
294
 
295
+ #: inc/php/settings.php:33
296
  msgid "You can use the fields below to add scripts to HEAD section of your website."
297
  msgstr ""
298
 
299
+ #: inc/php/settings.php:35
300
  msgid "Scripts from this field will be printed in the beginning of <b>HEAD</b> section. Do not place plain text in this!"
301
  msgstr ""
302
 
303
+ #: inc/php/settings.php:39 inc/php/settings.php:46 inc/php/settings.php:62
304
+ #: inc/php/settings.php:69
305
+ msgid "Enter your scripts here"
306
+ msgstr ""
307
+
308
+ #: inc/php/settings.php:42
309
  msgid "Scripts from this field will be printed in the end of <b>HEAD</b> section. Do not place plain text in this!"
310
  msgstr ""
311
 
312
+ #: inc/php/settings.php:49 inc/php/settings.php:72
313
  msgid "Save changes"
314
  msgstr ""
315
 
316
+ #: inc/php/settings.php:54
317
  msgid "Footer Section"
318
  msgstr ""
319
 
320
+ #: inc/php/settings.php:56
321
  msgid "You can use the fields below to add scripts to FOOTER section of your website."
322
  msgstr ""
323
 
324
+ #: inc/php/settings.php:58
325
  msgid "Scripts from this field will be printed before a footers scripts. Do not place plain text in this!"
326
  msgstr ""
327
 
328
+ #: inc/php/settings.php:65
329
  msgid "Scripts from this field will be printed after all footers scripts. Do not place plain text in this!"
330
  msgstr ""
331
 
332
+ #: inc/php/settings.php:79 inc/php/sidebar.php:32
333
  msgid "I'm an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
334
  msgstr ""
335
 
336
+ #: inc/php/settings.php:86 inc/php/sidebar.php:39
337
  msgid "Thanks for your support!"
338
  msgstr ""
339
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: inject, insert, insert scripts, insert javascript, insert js, insert html,
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.22
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -170,7 +170,7 @@ A. Yes, any contributions are very welcome! Please visit [our donation page](htt
170
  **License**
171
 
172
  This plugin is licensed under the [GNU General Public License, version 3 (GPLv3)](http://www.gnu.org/licenses/gpl-3.0.html) and is distributed free of charge.
173
- Commercial licensing (e.g. for projects that can’t use an open-source licence) is available upon request.
174
 
175
  **Credits**
176
 
@@ -187,6 +187,14 @@ Commercial licensing (e.g. for projects that can’t use an open-source licence)
187
 
188
  == Changelog ==
189
 
 
 
 
 
 
 
 
 
190
  = 4.22 =
191
  * Updated the method of loading the addons of the CodeMirror library.
192
  * Added the addon 'autorefresh.js' to the CodeMirror editor. The code for manual refreshing the CodeMirror editor is deleted.
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.23
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
170
  **License**
171
 
172
  This plugin is licensed under the [GNU General Public License, version 3 (GPLv3)](http://www.gnu.org/licenses/gpl-3.0.html) and is distributed free of charge.
173
+ Commercial licensing (e.g. for projects that can’t use an open-source license) is available upon request.
174
 
175
  **Credits**
176
 
187
 
188
  == Changelog ==
189
 
190
+ = 4.23 =
191
+ * Fixed localization of the word "licence". (Thanks to Garrett Hyder @garrett-eclipse)
192
+ * Settings for the CodeMirror editor are moved to a separate file 'codemirror-settings.js'.
193
+ * Added the addon 'placeholder.js' to the CodeMirror editor. Added a placeholder for code fields.
194
+ * The height of each text field of the editor is changed to 200px.
195
+ * The code that adds lines to the CodeMirror editor, if all lines are less than 10, is deleted.
196
+ * Translations are updated.
197
+
198
  = 4.22 =
199
  * Updated the method of loading the addons of the CodeMirror library.
200
  * Added the addon 'autorefresh.js' to the CodeMirror editor. The code for manual refreshing the CodeMirror editor is deleted.