Head and Footer Scripts Inserter - Version 4.29

Version Description

  • Added information about the PRO version of the plugin.
  • The design of the message "Successful" is improved.
  • The "readme.txt" file is updated.
  • Some texts are updated.
  • Translation files are updated.
Download this release

Release Info

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

Code changes from version 4.28 to 4.29

header-and-footer-scripts-inserter.php CHANGED
@@ -2,10 +2,10 @@
2
  /**
3
  * Plugin Name: Head and Footer Scripts Inserter
4
  * Plugin URI: https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter
5
- * Description: Easily and safely add your custom scripts (HTML with JavaScript, CSS, etc.) 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.28
9
  * License: GPL3
10
  * Text Domain: header-and-footer-scripts-inserter
11
  * Domain Path: /languages/
2
  /**
3
  * Plugin Name: Head and Footer Scripts Inserter
4
  * Plugin URI: https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter
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.29
9
  * License: GPL3
10
  * Text Domain: header-and-footer-scripts-inserter
11
  * Domain Path: /languages/
inc/css/admin.css CHANGED
@@ -562,6 +562,12 @@ form .help-text {
562
  #setting-error-settings_updated {
563
  display: none;
564
  }
 
 
 
 
 
 
565
 
566
  /* Submit button */
567
  input[type="submit"] {
562
  #setting-error-settings_updated {
563
  display: none;
564
  }
565
+ #message.updated i {
566
+ padding-right: 5px;
567
+ color: green;
568
+ font-size: 1.5em;
569
+ vertical-align: middle;
570
+ }
571
 
572
  /* Submit button */
573
  input[type="submit"] {
inc/img/upgrade.png ADDED
Binary file
inc/php/core.php CHANGED
@@ -26,6 +26,16 @@ function spacexchimp_p006_settings_link( $links ) {
26
  }
27
  add_filter( 'plugin_action_links_' . SPACEXCHIMP_P006_BASE, 'spacexchimp_p006_settings_link' );
28
 
 
 
 
 
 
 
 
 
 
 
29
  /**
30
  * Print additional links to plugin meta row
31
  */
@@ -34,7 +44,8 @@ function spacexchimp_p006_plugin_row_meta( $links, $file ) {
34
  if ( strpos( $file, SPACEXCHIMP_P006_SLUG . '.php' ) !== false ) {
35
 
36
  $new_links = array(
37
- 'donate' => '<a href="https://www.spacexchimp.com/donate.html" target="_blank"><span class="dashicons dashicons-heart"></span> ' . __( 'Donate', SPACEXCHIMP_P006_TEXT ) . '</a>'
 
38
  );
39
  $links = array_merge( $links, $new_links );
40
  }
26
  }
27
  add_filter( 'plugin_action_links_' . SPACEXCHIMP_P006_BASE, 'spacexchimp_p006_settings_link' );
28
 
29
+ /**
30
+ * Print link to Head and Footer Scripts Inserter PRO page
31
+ */
32
+ function spacexchimp_p006_upgrade_link( $links ) {
33
+ $upgrade_page = '<a href="https://www.spacexchimp.com/plugins/header-and-footer-scripts-inserter-pro.html" target="_blank"><b style="color:red;">' . __( 'Upgrade to PRO', SPACEXCHIMP_P006_TEXT ) . '</b></a>';
34
+ array_unshift( $links, $upgrade_page );
35
+ return $links;
36
+ }
37
+ add_filter( 'plugin_action_links_' . SPACEXCHIMP_P006_BASE, 'spacexchimp_p006_upgrade_link' );
38
+
39
  /**
40
  * Print additional links to plugin meta row
41
  */
44
  if ( strpos( $file, SPACEXCHIMP_P006_SLUG . '.php' ) !== false ) {
45
 
46
  $new_links = array(
47
+ 'donate' => '<a href="https://www.spacexchimp.com/donate.html" target="_blank"><span class="dashicons dashicons-heart"></span> ' . __( 'Donate', SPACEXCHIMP_P006_TEXT ) . '</a>',
48
+ 'upgrage' => '<a href="https://www.spacexchimp.com/plugins/header-and-footer-scripts-inserter-pro.html" target="_blank"><span class="dashicons dashicons-star-filled"></span> ' . __( 'Upgrade to PRO', SPACEXCHIMP_P006_TEXT ) . '</a>'
49
  );
50
  $links = array_merge( $links, $new_links );
51
  }
inc/php/messages.php CHANGED
@@ -88,7 +88,7 @@ function spacexchimp_p006_successfull_message() {
88
  if ( isset( $_GET['settings-updated'] ) ) {
89
  ?>
90
  <div id="message" class="updated">
91
- <p><?php _e( 'Custom code updated successfully.', SPACEXCHIMP_P006_TEXT ); ?></p>
92
  </div>
93
  <?php
94
  }
88
  if ( isset( $_GET['settings-updated'] ) ) {
89
  ?>
90
  <div id="message" class="updated">
91
+ <p><i class="fa fa-check" aria-hidden="true"></i> <?php _e( 'Custom code updated successfully.', SPACEXCHIMP_P006_TEXT ); ?></p>
92
  </div>
93
  <?php
94
  }
inc/php/page.php CHANGED
@@ -63,10 +63,10 @@ function spacexchimp_p006_render_submenu_page() {
63
  <div class="postbox">
64
  <h3 class="title"><?php _e( 'Usage Instructions', $text ); ?></h3>
65
  <div class="inside">
66
- <p><?php _e( 'To add your custom scripts (HTML+CSS+JS code) to your website, simply follow these steps:', $text ); ?></p>
67
  <ol class="custom-counter">
68
  <li><?php _e( 'Go to the "Main" tab.', $text ); ?></li>
69
- <li><?php _e( 'Place your custom scripts in the field.', $text ); ?><br><br>
70
  <p><?php _e( 'Note that the fields are for inserting HTML code, so JavaScript and CSS code must be wrapped in the corresponding HTML tag. For JavaScript code use the <code>&lt;script&gt;</code> tag, and for CSS code use the <code>&lt;style&gt;</code> tag. Example:', $text ); ?></p>
71
  <?php $ExampleCode = '&lt;script&gt;
72
  function myFunction() {
@@ -82,7 +82,7 @@ function spacexchimp_p006_render_submenu_page() {
82
  <pre><code><?php echo $ExampleCode; ?></code></pre>
83
  </li>
84
  <li><?php _e( 'Click the "Save changes" button.', $text ); ?></li>
85
- <li><?php _e( 'Enjoy the result of applying your custom scripts.', $text ); ?> <?php _e( 'It\'s that simple!', $text ); ?></li>
86
  </ol>
87
  <p class="note"><b><?php _e( 'Note!', $text ); ?></b> <?php printf(
88
  __( 'If you want more options then %s tell us %s and we will be happy to add it.', $text ),
@@ -140,9 +140,9 @@ function spacexchimp_p006_render_submenu_page() {
140
  <?php _e( 'Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!', $text ); ?></div>
141
 
142
  <div class="question-3"><?php _e( 'How does it work?', $text ); ?></div>
143
- <div class="answer-3"><?php _e( 'On the "Main" tab, place your custom scripts in the field and click the "Save changes" button. Enjoy the result of applying your custom scripts. It\'s that simple!', $text ); ?></div>
144
 
145
- <div class="question-4"><?php _e( 'How much of scripts (characters) I can enter in the text field?', $text ); ?></div>
146
  <div class="answer-4"><?php _e( 'We don\'t limit the number of characters.', $text ); ?></div>
147
 
148
  <div class="question-5"><?php _e( 'Does this plugin requires any modification of the theme?', $text ); ?></div>
@@ -151,19 +151,19 @@ function spacexchimp_p006_render_submenu_page() {
151
  <div class="question-6"><?php _e( 'Does this require any knowledge of HTML or CSS?', $text ); ?></div>
152
  <div class="answer-6"><?php _e( 'This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page. But you need to know the HTML or CSS in order to add/remove/modify the HTML or CSS code by using this plugin.', $text ); ?></div>
153
 
154
- <div class="question-7"><?php _e( 'Can I add my custom script to a specific page of my website?', $text ); ?></div>
155
- <div class="answer-7"><?php _e( 'For now, this plugin does not have an option to apply the custom scripts only on specific pages. We plan to add this feature soon. But for now in order to apply your custom script only on specific pages of your website, you need to wrap your custom script in a PHP code that will determine the page you want. You need something like this:', $text ); ?><br><br>
156
- <pre><code>function my_custom_script() {
157
 
158
  // Stop the function if this is not the Home page of website
159
  if ( !is_home() ) {
160
  return;
161
  }
162
 
163
- // Print the custom script
164
- echo '&lt;script&gt;YOUR CUSTOM SCRIPT&lt;/script&gt;';
165
  }
166
- add_action( 'wp_head', 'my_custom_script' );</code></pre>
167
  <?php printf(
168
  __( 'To apply the PHP code on a website, we can recommend you to use another our plugin called %s.', $text ),
169
  '<a href="https://wordpress.org/plugins/my-custom-functions/" target="_blank">My Custom Functions</a>'
63
  <div class="postbox">
64
  <h3 class="title"><?php _e( 'Usage Instructions', $text ); ?></h3>
65
  <div class="inside">
66
+ <p><?php _e( 'To add your custom HTML code (plus JavaScript, CSS, etc.) to your website, simply follow these steps:', $text ); ?></p>
67
  <ol class="custom-counter">
68
  <li><?php _e( 'Go to the "Main" tab.', $text ); ?></li>
69
+ <li><?php _e( 'Place your custom HTML code in the field.', $text ); ?><br><br>
70
  <p><?php _e( 'Note that the fields are for inserting HTML code, so JavaScript and CSS code must be wrapped in the corresponding HTML tag. For JavaScript code use the <code>&lt;script&gt;</code> tag, and for CSS code use the <code>&lt;style&gt;</code> tag. Example:', $text ); ?></p>
71
  <?php $ExampleCode = '&lt;script&gt;
72
  function myFunction() {
82
  <pre><code><?php echo $ExampleCode; ?></code></pre>
83
  </li>
84
  <li><?php _e( 'Click the "Save changes" button.', $text ); ?></li>
85
+ <li><?php _e( 'Enjoy the result of applying your custom HTML code.', $text ); ?> <?php _e( 'It\'s that simple!', $text ); ?></li>
86
  </ol>
87
  <p class="note"><b><?php _e( 'Note!', $text ); ?></b> <?php printf(
88
  __( 'If you want more options then %s tell us %s and we will be happy to add it.', $text ),
140
  <?php _e( 'Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!', $text ); ?></div>
141
 
142
  <div class="question-3"><?php _e( 'How does it work?', $text ); ?></div>
143
+ <div class="answer-3"><?php _e( 'On the "Main" tab, place your custom HTML code in the field and click the "Save changes" button. Enjoy the result of applying your custom HTML code. It\'s that simple!', $text ); ?></div>
144
 
145
+ <div class="question-4"><?php _e( 'How much of HTML code (characters) I can enter in the code editor?', $text ); ?></div>
146
  <div class="answer-4"><?php _e( 'We don\'t limit the number of characters.', $text ); ?></div>
147
 
148
  <div class="question-5"><?php _e( 'Does this plugin requires any modification of the theme?', $text ); ?></div>
151
  <div class="question-6"><?php _e( 'Does this require any knowledge of HTML or CSS?', $text ); ?></div>
152
  <div class="answer-6"><?php _e( 'This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page. But you need to know the HTML or CSS in order to add/remove/modify the HTML or CSS code by using this plugin.', $text ); ?></div>
153
 
154
+ <div class="question-7"><?php _e( 'Can I add my custom HTML code to a specific page of my website?', $text ); ?></div>
155
+ <div class="answer-7"><?php _e( 'For now, this plugin does not have an option to apply the custom HTML code only on specific pages. We plan to add this feature soon. But for now in order to apply your custom HTML code only on specific pages of your website, you need to wrap your custom HTML code in a PHP code that will determine the page you want. You need something like this:', $text ); ?><br><br>
156
+ <pre><code>function my_custom_html_code() {
157
 
158
  // Stop the function if this is not the Home page of website
159
  if ( !is_home() ) {
160
  return;
161
  }
162
 
163
+ // Print the custom HTML code
164
+ echo '&lt;script&gt;YOUR CUSTOM HTML CODE&lt;/script&gt;';
165
  }
166
+ add_action( 'wp_head', 'my_custom_html_code' );</code></pre>
167
  <?php printf(
168
  __( 'To apply the PHP code on a website, we can recommend you to use another our plugin called %s.', $text ),
169
  '<a href="https://wordpress.org/plugins/my-custom-functions/" target="_blank">My Custom Functions</a>'
inc/php/settings.php CHANGED
@@ -30,20 +30,20 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
30
  <div class="postbox" id="head">
31
  <h3 class="title"><?php _e( 'Head Section', $text ); ?></h3>
32
  <div class="inside">
33
- <p class="note"><?php _e( 'You can use the fields below to add your custom 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 HEAD 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 custom 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 HEAD 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 custom 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 ); ?>">
@@ -53,20 +53,20 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
53
  <div class="postbox" id="footer">
54
  <h3 class="title"><?php _e( 'Footer Section', $text ); ?></h3>
55
  <div class="inside">
56
- <p class="note"><?php _e( 'You can use the fields below to add your custom 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 footer 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 custom 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 custom 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 ); ?>">
30
  <div class="postbox" id="head">
31
  <h3 class="title"><?php _e( 'Head Section', $text ); ?></h3>
32
  <div class="inside">
33
+ <p class="note"><?php _e( 'You can use the fields below to add your custom HTML code to the HEAD section of your website.', $text ); ?></p>
34
 
35
+ <p class='help-text'><?php _e( 'The HTML code from this field will be printed at the beginning of the HEAD 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 custom HTML code here', $text ); ?>"
40
  ><?php echo $header_beginning; ?></textarea>
41
 
42
+ <p class='help-text'><?php _e( 'The HTML code from this field will be printed at the end of the HEAD 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 custom HTML code 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 ); ?>">
53
  <div class="postbox" id="footer">
54
  <h3 class="title"><?php _e( 'Footer Section', $text ); ?></h3>
55
  <div class="inside">
56
+ <p class="note"><?php _e( 'You can use the fields below to add your custom HTML code to the FOOTER section of your website.', $text ); ?></p>
57
 
58
+ <p class='help-text'><?php _e( 'The HTML code from this field will be printed at the beginning of the FOOTER section. 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 custom HTML code here', $text ); ?>"
63
  ><?php echo $footer_beginning; ?></textarea>
64
 
65
+ <p class='help-text'><?php _e( 'The HTML code from this field will be printed at the end of the FOOTER section. 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 custom HTML code 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 ); ?>">
inc/php/sidebar.php CHANGED
@@ -24,7 +24,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
24
  <div class="postbox about">
25
  <h3 class="title"><?php _e( 'About', $text ); ?></h3>
26
  <div class="inside">
27
- <p><?php _e( 'This plugin allows you to easily and safely insert your custom scripts (HTML+CSS+JS code) in your website directly out of your WordPress Admin Area, without the need to have an external editor.', $text ); ?></p>
28
  </div>
29
  </div>
30
 
@@ -35,6 +35,14 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
35
  </div>
36
  </div>
37
 
 
 
 
 
 
 
 
 
38
  <div class="postbox support">
39
  <h3 class="title"><?php _e( 'Support', $text ); ?></h3>
40
  <div class="inside">
24
  <div class="postbox about">
25
  <h3 class="title"><?php _e( 'About', $text ); ?></h3>
26
  <div class="inside">
27
+ <p><?php _e( '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.', $text ); ?></p>
28
  </div>
29
  </div>
30
 
35
  </div>
36
  </div>
37
 
38
+ <div class="postbox banner">
39
+ <div class="inside">
40
+ <a href="https://www.spacexchimp.com/plugins/header-and-footer-scripts-inserter-pro.html" target="_blank">
41
+ <img src="<?php echo SPACEXCHIMP_P006_URL . 'inc/img/upgrade.png'; ?>" alt="Upgrade" style="margin-top:-16px;">
42
+ </a>
43
+ </div>
44
+ </div>
45
+
46
  <div class="postbox support">
47
  <h3 class="title"><?php _e( 'Support', $text ); ?></h3>
48
  <div class="inside">
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-08-18 18:15+0300\n"
7
- "PO-Revision-Date: 2018-08-18 18:15+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: German\n"
10
  "Language: de_DE\n"
@@ -24,11 +24,15 @@ msgstr ""
24
  msgid "Settings"
25
  msgstr "Einstellungen"
26
 
27
- #: inc/php/core.php:37
 
 
 
 
28
  msgid "Donate"
29
  msgstr "Spende"
30
 
31
- #: inc/php/core.php:52
32
  msgid "Scripts Inserter"
33
  msgstr "Scripts Inserter"
34
 
@@ -74,7 +78,7 @@ msgstr "Verwendung"
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:39
78
  msgid "Support"
79
  msgstr "Support"
80
 
@@ -87,7 +91,7 @@ msgid "Usage Instructions"
87
  msgstr "Anleitung"
88
 
89
  #: inc/php/page.php:66
90
- msgid "To add your custom scripts (HTML+CSS+JS code) to your website, simply follow these steps:"
91
  msgstr ""
92
 
93
  #: inc/php/page.php:68
@@ -95,7 +99,7 @@ msgid "Go to the \"Main\" tab."
95
  msgstr ""
96
 
97
  #: inc/php/page.php:69
98
- msgid "Place your custom scripts in the field."
99
  msgstr ""
100
 
101
  #: inc/php/page.php:70
@@ -107,7 +111,7 @@ msgid "Click the \"Save changes\" button."
107
  msgstr "Klicken Sie den \"Änderungen speichern\" button."
108
 
109
  #: inc/php/page.php:85
110
- msgid "Enjoy the result of applying your custom scripts."
111
  msgstr ""
112
 
113
  #: inc/php/page.php:85
@@ -165,11 +169,11 @@ msgid "How does it work?"
165
  msgstr "Wie arbeitet das Plugin?"
166
 
167
  #: inc/php/page.php:143
168
- msgid "On the \"Main\" tab, place your custom scripts in the field and click the \"Save changes\" button. Enjoy the result of applying your custom scripts. It's that simple!"
169
  msgstr ""
170
 
171
  #: inc/php/page.php:145
172
- msgid "How much of scripts (characters) I can enter in the text field?"
173
  msgstr ""
174
 
175
  #: inc/php/page.php:146
@@ -193,11 +197,11 @@ msgid "This plugin can be configured with no knowledge of HTML or CSS, using an
193
  msgstr ""
194
 
195
  #: inc/php/page.php:154
196
- msgid "Can I add my custom script to a specific page of my website?"
197
  msgstr ""
198
 
199
  #: inc/php/page.php:155
200
- msgid "For now, this plugin does not have an option to apply the custom scripts only on specific pages. We plan to add this feature soon. But for now in order to apply your custom script only on specific pages of your website, you need to wrap your custom script in a PHP code that will determine the page you want. You need something like this:"
201
  msgstr ""
202
 
203
  #: inc/php/page.php:168
@@ -265,7 +269,7 @@ msgstr ""
265
  msgid "Support Us"
266
  msgstr "Unterstütze uns"
267
 
268
- #: inc/php/page.php:228 inc/php/settings.php:84 inc/php/sidebar.php:46
269
  msgid "Donate with PayPal"
270
  msgstr "Spende mit PayPal"
271
 
@@ -295,20 +299,20 @@ msgid "Head Section"
295
  msgstr ""
296
 
297
  #: inc/php/settings.php:33
298
- msgid "You can use the fields below to add your custom 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 HEAD 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 custom scripts here"
308
  msgstr ""
309
 
310
  #: inc/php/settings.php:42
311
- msgid "Scripts from this field will be printed in the end of HEAD section. Do not place plain text in this!"
312
  msgstr ""
313
 
314
  #: inc/php/settings.php:49 inc/php/settings.php:72
@@ -320,22 +324,22 @@ msgid "Footer Section"
320
  msgstr ""
321
 
322
  #: inc/php/settings.php:56
323
- msgid "You can use the fields below to add your custom 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 footer 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:41
335
  msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
336
  msgstr "Jeder kleine Beitrag trägt dazu bei, unsere Kosten zu decken und wir kann mehr Zeit damit verbringen, Dinge für Leute wie Sie zu entwickeln."
337
 
338
- #: inc/php/settings.php:86 inc/php/sidebar.php:48
339
  msgid "Thanks for your support!"
340
  msgstr "Danke für Ihre Unterstützung!"
341
 
@@ -348,7 +352,7 @@ msgid "About"
348
  msgstr "Über"
349
 
350
  #: inc/php/sidebar.php:27
351
- msgid "This plugin allows you to easily and safely insert your custom scripts (HTML+CSS+JS code) in your website directly out of your WordPress Admin Area, without the need to have an external editor."
352
  msgstr ""
353
 
354
  #: inc/php/sidebar.php:32
@@ -368,7 +372,7 @@ msgid "https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter"
368
  msgstr "https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter"
369
 
370
  #. Description of the plugin/theme
371
- msgid "Easily and safely add your custom scripts (HTML with JavaScript, CSS, etc.) to the WordPress website's head and footer sections. This is a must have tool for authors and website's owners."
372
  msgstr ""
373
 
374
  #. Author of the plugin/theme
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Head and Footer Scripts Inserter\n"
6
+ "POT-Creation-Date: 2018-09-12 17:17+0300\n"
7
+ "PO-Revision-Date: 2018-09-12 17:17+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: German\n"
10
  "Language: de_DE\n"
24
  msgid "Settings"
25
  msgstr "Einstellungen"
26
 
27
+ #: inc/php/core.php:33 inc/php/core.php:48
28
+ msgid "Upgrade to PRO"
29
+ msgstr ""
30
+
31
+ #: inc/php/core.php:47
32
  msgid "Donate"
33
  msgstr "Spende"
34
 
35
+ #: inc/php/core.php:63
36
  msgid "Scripts Inserter"
37
  msgstr "Scripts Inserter"
38
 
78
  msgid "F.A.Q."
79
  msgstr "F.A.Q."
80
 
81
+ #: inc/php/page.php:47 inc/php/settings.php:77 inc/php/sidebar.php:47
82
  msgid "Support"
83
  msgstr "Support"
84
 
91
  msgstr "Anleitung"
92
 
93
  #: inc/php/page.php:66
94
+ msgid "To add your custom HTML code (plus JavaScript, CSS, etc.) to your website, simply follow these steps:"
95
  msgstr ""
96
 
97
  #: inc/php/page.php:68
99
  msgstr ""
100
 
101
  #: inc/php/page.php:69
102
+ msgid "Place your custom HTML code in the field."
103
  msgstr ""
104
 
105
  #: inc/php/page.php:70
111
  msgstr "Klicken Sie den \"Änderungen speichern\" button."
112
 
113
  #: inc/php/page.php:85
114
+ msgid "Enjoy the result of applying your custom HTML code."
115
  msgstr ""
116
 
117
  #: inc/php/page.php:85
169
  msgstr "Wie arbeitet das Plugin?"
170
 
171
  #: inc/php/page.php:143
172
+ msgid "On the \"Main\" tab, place your custom HTML code in the field and click the \"Save changes\" button. Enjoy the result of applying your custom HTML code. It's that simple!"
173
  msgstr ""
174
 
175
  #: inc/php/page.php:145
176
+ msgid "How much of HTML code (characters) I can enter in the code editor?"
177
  msgstr ""
178
 
179
  #: inc/php/page.php:146
197
  msgstr ""
198
 
199
  #: inc/php/page.php:154
200
+ msgid "Can I add my custom HTML code to a specific page of my website?"
201
  msgstr ""
202
 
203
  #: inc/php/page.php:155
204
+ msgid "For now, this plugin does not have an option to apply the custom HTML code only on specific pages. We plan to add this feature soon. But for now in order to apply your custom HTML code only on specific pages of your website, you need to wrap your custom HTML code in a PHP code that will determine the page you want. You need something like this:"
205
  msgstr ""
206
 
207
  #: inc/php/page.php:168
269
  msgid "Support Us"
270
  msgstr "Unterstütze uns"
271
 
272
+ #: inc/php/page.php:228 inc/php/settings.php:84 inc/php/sidebar.php:54
273
  msgid "Donate with PayPal"
274
  msgstr "Spende mit PayPal"
275
 
299
  msgstr ""
300
 
301
  #: inc/php/settings.php:33
302
+ msgid "You can use the fields below to add your custom HTML code to the HEAD section of your website."
303
  msgstr ""
304
 
305
  #: inc/php/settings.php:35
306
+ msgid "The HTML code from this field will be printed at the beginning of the HEAD section. Do not place plain text in this!"
307
  msgstr ""
308
 
309
  #: inc/php/settings.php:39 inc/php/settings.php:46 inc/php/settings.php:62
310
  #: inc/php/settings.php:69
311
+ msgid "Enter your custom HTML code here"
312
  msgstr ""
313
 
314
  #: inc/php/settings.php:42
315
+ msgid "The HTML code from this field will be printed at the end of the HEAD section. Do not place plain text in this!"
316
  msgstr ""
317
 
318
  #: inc/php/settings.php:49 inc/php/settings.php:72
324
  msgstr ""
325
 
326
  #: inc/php/settings.php:56
327
+ msgid "You can use the fields below to add your custom HTML code to the FOOTER section of your website."
328
  msgstr ""
329
 
330
  #: inc/php/settings.php:58
331
+ msgid "The HTML code from this field will be printed at the beginning of the FOOTER section. Do not place plain text in this!"
332
  msgstr ""
333
 
334
  #: inc/php/settings.php:65
335
+ msgid "The HTML code from this field will be printed at the end of the FOOTER section. Do not place plain text in this!"
336
  msgstr ""
337
 
338
+ #: inc/php/settings.php:79 inc/php/sidebar.php:49
339
  msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
340
  msgstr "Jeder kleine Beitrag trägt dazu bei, unsere Kosten zu decken und wir kann mehr Zeit damit verbringen, Dinge für Leute wie Sie zu entwickeln."
341
 
342
+ #: inc/php/settings.php:86 inc/php/sidebar.php:56
343
  msgid "Thanks for your support!"
344
  msgstr "Danke für Ihre Unterstützung!"
345
 
352
  msgstr "Über"
353
 
354
  #: inc/php/sidebar.php:27
355
+ 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."
356
  msgstr ""
357
 
358
  #: inc/php/sidebar.php:32
372
  msgstr "https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter"
373
 
374
  #. Description of the plugin/theme
375
+ msgid "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."
376
  msgstr ""
377
 
378
  #. Author of the plugin/theme
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-08-18 18:15+0300\n"
7
- "PO-Revision-Date: 2018-08-18 18:15+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Spanish\n"
10
  "Language: es_ES\n"
@@ -24,11 +24,15 @@ msgstr ""
24
  msgid "Settings"
25
  msgstr "Ajustes"
26
 
27
- #: inc/php/core.php:37
 
 
 
 
28
  msgid "Donate"
29
  msgstr "Donar"
30
 
31
- #: inc/php/core.php:52
32
  msgid "Scripts Inserter"
33
  msgstr "Scripts Inserter"
34
 
@@ -74,7 +78,7 @@ msgstr "Uso"
74
  msgid "F.A.Q."
75
  msgstr "Preguntas ?"
76
 
77
- #: inc/php/page.php:47 inc/php/settings.php:77 inc/php/sidebar.php:39
78
  msgid "Support"
79
  msgstr "Soporte"
80
 
@@ -87,7 +91,7 @@ msgid "Usage Instructions"
87
  msgstr "Instrucciones de uso"
88
 
89
  #: inc/php/page.php:66
90
- msgid "To add your custom scripts (HTML+CSS+JS code) to your website, simply follow these steps:"
91
  msgstr ""
92
 
93
  #: inc/php/page.php:68
@@ -95,7 +99,7 @@ msgid "Go to the \"Main\" tab."
95
  msgstr "Debes ir a la pestaña “Principal”."
96
 
97
  #: inc/php/page.php:69
98
- msgid "Place your custom scripts in the field."
99
  msgstr ""
100
 
101
  #: inc/php/page.php:70
@@ -107,7 +111,7 @@ msgid "Click the \"Save changes\" button."
107
  msgstr "Clic en el botón \"Guardar Cambios\"."
108
 
109
  #: inc/php/page.php:85
110
- msgid "Enjoy the result of applying your custom scripts."
111
  msgstr ""
112
 
113
  #: inc/php/page.php:85
@@ -165,11 +169,11 @@ msgid "How does it work?"
165
  msgstr "¿Como funciona?"
166
 
167
  #: inc/php/page.php:143
168
- msgid "On the \"Main\" tab, place your custom scripts in the field and click the \"Save changes\" button. Enjoy the result of applying your custom scripts. It's that simple!"
169
  msgstr ""
170
 
171
  #: inc/php/page.php:145
172
- msgid "How much of scripts (characters) I can enter in the text field?"
173
  msgstr ""
174
 
175
  #: inc/php/page.php:146
@@ -193,11 +197,11 @@ msgid "This plugin can be configured with no knowledge of HTML or CSS, using an
193
  msgstr ""
194
 
195
  #: inc/php/page.php:154
196
- msgid "Can I add my custom script to a specific page of my website?"
197
  msgstr ""
198
 
199
  #: inc/php/page.php:155
200
- msgid "For now, this plugin does not have an option to apply the custom scripts only on specific pages. We plan to add this feature soon. But for now in order to apply your custom script only on specific pages of your website, you need to wrap your custom script in a PHP code that will determine the page you want. You need something like this:"
201
  msgstr ""
202
 
203
  #: inc/php/page.php:168
@@ -265,7 +269,7 @@ msgstr "Puede hacer tu pregunta en %s la página de soporte del complementos %s.
265
  msgid "Support Us"
266
  msgstr "¡Apoyanos!"
267
 
268
- #: inc/php/page.php:228 inc/php/settings.php:84 inc/php/sidebar.php:46
269
  msgid "Donate with PayPal"
270
  msgstr "Donar con PayPal"
271
 
@@ -295,20 +299,20 @@ msgid "Head Section"
295
  msgstr ""
296
 
297
  #: inc/php/settings.php:33
298
- msgid "You can use the fields below to add your custom 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 HEAD 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 custom scripts here"
308
  msgstr ""
309
 
310
  #: inc/php/settings.php:42
311
- msgid "Scripts from this field will be printed in the end of HEAD section. Do not place plain text in this!"
312
  msgstr ""
313
 
314
  #: inc/php/settings.php:49 inc/php/settings.php:72
@@ -320,22 +324,22 @@ msgid "Footer Section"
320
  msgstr ""
321
 
322
  #: inc/php/settings.php:56
323
- msgid "You can use the fields below to add your custom 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 footer 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:41
335
  msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
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:48
339
  msgid "Thanks for your support!"
340
  msgstr "¡Gracias por tu apoyo!"
341
 
@@ -348,7 +352,7 @@ msgid "About"
348
  msgstr "Acerca de"
349
 
350
  #: inc/php/sidebar.php:27
351
- msgid "This plugin allows you to easily and safely insert your custom scripts (HTML+CSS+JS code) in your website directly out of your WordPress Admin Area, without the need to have an external editor."
352
  msgstr ""
353
 
354
  #: inc/php/sidebar.php:32
@@ -368,7 +372,7 @@ msgid "https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter"
368
  msgstr "https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter"
369
 
370
  #. Description of the plugin/theme
371
- msgid "Easily and safely add your custom scripts (HTML with JavaScript, CSS, etc.) to the WordPress website's head and footer sections. This is a must have tool for authors and website's owners."
372
  msgstr ""
373
 
374
  #. Author of the plugin/theme
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Head and Footer Scripts Inserter\n"
6
+ "POT-Creation-Date: 2018-09-12 17:17+0300\n"
7
+ "PO-Revision-Date: 2018-09-12 17:17+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Spanish\n"
10
  "Language: es_ES\n"
24
  msgid "Settings"
25
  msgstr "Ajustes"
26
 
27
+ #: inc/php/core.php:33 inc/php/core.php:48
28
+ msgid "Upgrade to PRO"
29
+ msgstr ""
30
+
31
+ #: inc/php/core.php:47
32
  msgid "Donate"
33
  msgstr "Donar"
34
 
35
+ #: inc/php/core.php:63
36
  msgid "Scripts Inserter"
37
  msgstr "Scripts Inserter"
38
 
78
  msgid "F.A.Q."
79
  msgstr "Preguntas ?"
80
 
81
+ #: inc/php/page.php:47 inc/php/settings.php:77 inc/php/sidebar.php:47
82
  msgid "Support"
83
  msgstr "Soporte"
84
 
91
  msgstr "Instrucciones de uso"
92
 
93
  #: inc/php/page.php:66
94
+ msgid "To add your custom HTML code (plus JavaScript, CSS, etc.) to your website, simply follow these steps:"
95
  msgstr ""
96
 
97
  #: inc/php/page.php:68
99
  msgstr "Debes ir a la pestaña “Principal”."
100
 
101
  #: inc/php/page.php:69
102
+ msgid "Place your custom HTML code in the field."
103
  msgstr ""
104
 
105
  #: inc/php/page.php:70
111
  msgstr "Clic en el botón \"Guardar Cambios\"."
112
 
113
  #: inc/php/page.php:85
114
+ msgid "Enjoy the result of applying your custom HTML code."
115
  msgstr ""
116
 
117
  #: inc/php/page.php:85
169
  msgstr "¿Como funciona?"
170
 
171
  #: inc/php/page.php:143
172
+ msgid "On the \"Main\" tab, place your custom HTML code in the field and click the \"Save changes\" button. Enjoy the result of applying your custom HTML code. It's that simple!"
173
  msgstr ""
174
 
175
  #: inc/php/page.php:145
176
+ msgid "How much of HTML code (characters) I can enter in the code editor?"
177
  msgstr ""
178
 
179
  #: inc/php/page.php:146
197
  msgstr ""
198
 
199
  #: inc/php/page.php:154
200
+ msgid "Can I add my custom HTML code to a specific page of my website?"
201
  msgstr ""
202
 
203
  #: inc/php/page.php:155
204
+ msgid "For now, this plugin does not have an option to apply the custom HTML code only on specific pages. We plan to add this feature soon. But for now in order to apply your custom HTML code only on specific pages of your website, you need to wrap your custom HTML code in a PHP code that will determine the page you want. You need something like this:"
205
  msgstr ""
206
 
207
  #: inc/php/page.php:168
269
  msgid "Support Us"
270
  msgstr "¡Apoyanos!"
271
 
272
+ #: inc/php/page.php:228 inc/php/settings.php:84 inc/php/sidebar.php:54
273
  msgid "Donate with PayPal"
274
  msgstr "Donar con PayPal"
275
 
299
  msgstr ""
300
 
301
  #: inc/php/settings.php:33
302
+ msgid "You can use the fields below to add your custom HTML code to the HEAD section of your website."
303
  msgstr ""
304
 
305
  #: inc/php/settings.php:35
306
+ msgid "The HTML code from this field will be printed at the beginning of the HEAD section. Do not place plain text in this!"
307
  msgstr ""
308
 
309
  #: inc/php/settings.php:39 inc/php/settings.php:46 inc/php/settings.php:62
310
  #: inc/php/settings.php:69
311
+ msgid "Enter your custom HTML code here"
312
  msgstr ""
313
 
314
  #: inc/php/settings.php:42
315
+ msgid "The HTML code from this field will be printed at the end of the HEAD section. Do not place plain text in this!"
316
  msgstr ""
317
 
318
  #: inc/php/settings.php:49 inc/php/settings.php:72
324
  msgstr ""
325
 
326
  #: inc/php/settings.php:56
327
+ msgid "You can use the fields below to add your custom HTML code to the FOOTER section of your website."
328
  msgstr ""
329
 
330
  #: inc/php/settings.php:58
331
+ msgid "The HTML code from this field will be printed at the beginning of the FOOTER section. Do not place plain text in this!"
332
  msgstr ""
333
 
334
  #: inc/php/settings.php:65
335
+ msgid "The HTML code from this field will be printed at the end of the FOOTER section. Do not place plain text in this!"
336
  msgstr ""
337
 
338
+ #: inc/php/settings.php:79 inc/php/sidebar.php:49
339
  msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
340
  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."
341
 
342
+ #: inc/php/settings.php:86 inc/php/sidebar.php:56
343
  msgid "Thanks for your support!"
344
  msgstr "¡Gracias por tu apoyo!"
345
 
352
  msgstr "Acerca de"
353
 
354
  #: inc/php/sidebar.php:27
355
+ 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."
356
  msgstr ""
357
 
358
  #: inc/php/sidebar.php:32
372
  msgstr "https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter"
373
 
374
  #. Description of the plugin/theme
375
+ msgid "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."
376
  msgstr ""
377
 
378
  #. Author of the plugin/theme
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-08-18 18:15+0300\n"
7
- "PO-Revision-Date: 2018-08-18 18:15+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Dutch\n"
10
  "Language: nl_NL\n"
@@ -24,11 +24,15 @@ msgstr ""
24
  msgid "Settings"
25
  msgstr "Instellingen"
26
 
27
- #: inc/php/core.php:37
 
 
 
 
28
  msgid "Donate"
29
  msgstr "Doe een gift"
30
 
31
- #: inc/php/core.php:52
32
  msgid "Scripts Inserter"
33
  msgstr "Scripts Inserter"
34
 
@@ -74,7 +78,7 @@ msgstr "Gebruik"
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:39
78
  msgid "Support"
79
  msgstr "Ondersteuning"
80
 
@@ -87,7 +91,7 @@ msgid "Usage Instructions"
87
  msgstr "Gebruiksinstructies"
88
 
89
  #: inc/php/page.php:66
90
- msgid "To add your custom scripts (HTML+CSS+JS code) to your website, simply follow these steps:"
91
  msgstr ""
92
 
93
  #: inc/php/page.php:68
@@ -95,7 +99,7 @@ msgid "Go to the \"Main\" tab."
95
  msgstr "Ga naar het tabblad “Hoofd”."
96
 
97
  #: inc/php/page.php:69
98
- msgid "Place your custom scripts in the field."
99
  msgstr ""
100
 
101
  #: inc/php/page.php:70
@@ -107,7 +111,7 @@ msgid "Click the \"Save changes\" button."
107
  msgstr "Klik op de knop \"Wijzigingen opslaan\"."
108
 
109
  #: inc/php/page.php:85
110
- msgid "Enjoy the result of applying your custom scripts."
111
  msgstr ""
112
 
113
  #: inc/php/page.php:85
@@ -165,11 +169,11 @@ msgid "How does it work?"
165
  msgstr "Hoe werkt het?"
166
 
167
  #: inc/php/page.php:143
168
- msgid "On the \"Main\" tab, place your custom scripts in the field and click the \"Save changes\" button. Enjoy the result of applying your custom scripts. It's that simple!"
169
  msgstr ""
170
 
171
  #: inc/php/page.php:145
172
- msgid "How much of scripts (characters) I can enter in the text field?"
173
  msgstr ""
174
 
175
  #: inc/php/page.php:146
@@ -193,11 +197,11 @@ msgid "This plugin can be configured with no knowledge of HTML or CSS, using an
193
  msgstr "Deze plug-in kan worden geconfigureerd zonder kennis van HTML of CSS, met behulp van de eenvoudig te gebruiken plugin-instellingenpagina. Maar u moet de HTML of CSS kennen om de HTML- of CSS-code toe te voegen / te verwijderen / wijzigen met behulp van deze plug-in."
194
 
195
  #: inc/php/page.php:154
196
- msgid "Can I add my custom script to a specific page of my website?"
197
  msgstr ""
198
 
199
  #: inc/php/page.php:155
200
- msgid "For now, this plugin does not have an option to apply the custom scripts only on specific pages. We plan to add this feature soon. But for now in order to apply your custom script only on specific pages of your website, you need to wrap your custom script in a PHP code that will determine the page you want. You need something like this:"
201
  msgstr ""
202
 
203
  #: inc/php/page.php:168
@@ -265,7 +269,7 @@ msgstr "Je kunt je vraag op %s deze pagina %s stellen. Maar houd er rekening mee
265
  msgid "Support Us"
266
  msgstr "Ondersteun ons"
267
 
268
- #: inc/php/page.php:228 inc/php/settings.php:84 inc/php/sidebar.php:46
269
  msgid "Donate with PayPal"
270
  msgstr "Doneer via PayPal"
271
 
@@ -295,20 +299,20 @@ msgid "Head Section"
295
  msgstr ""
296
 
297
  #: inc/php/settings.php:33
298
- msgid "You can use the fields below to add your custom 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 HEAD 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 custom scripts here"
308
  msgstr ""
309
 
310
  #: inc/php/settings.php:42
311
- msgid "Scripts from this field will be printed in the end of HEAD section. Do not place plain text in this!"
312
  msgstr ""
313
 
314
  #: inc/php/settings.php:49 inc/php/settings.php:72
@@ -320,22 +324,22 @@ msgid "Footer Section"
320
  msgstr ""
321
 
322
  #: inc/php/settings.php:56
323
- msgid "You can use the fields below to add your custom 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 footer 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:41
335
  msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
336
  msgstr "Ik ben een onafhankelijke ontwikkelaar, zonder een vast inkomen, dus elke kleine bijdrage helpt mij mijn kosten te dekken en laat me meer tijd spenderen aan het bouwen van dingen voor mensen zoals jij om van te genieten."
337
 
338
- #: inc/php/settings.php:86 inc/php/sidebar.php:48
339
  msgid "Thanks for your support!"
340
  msgstr "Bedankt voor uw steun!"
341
 
@@ -348,7 +352,7 @@ msgid "About"
348
  msgstr "Over"
349
 
350
  #: inc/php/sidebar.php:27
351
- msgid "This plugin allows you to easily and safely insert your custom scripts (HTML+CSS+JS code) in your website directly out of your WordPress Admin Area, without the need to have an external editor."
352
  msgstr ""
353
 
354
  #: inc/php/sidebar.php:32
@@ -368,7 +372,7 @@ msgid "https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter"
368
  msgstr "https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter"
369
 
370
  #. Description of the plugin/theme
371
- msgid "Easily and safely add your custom scripts (HTML with JavaScript, CSS, etc.) to the WordPress website's head and footer sections. This is a must have tool for authors and website's owners."
372
  msgstr ""
373
 
374
  #. Author of the plugin/theme
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Head and Footer Scripts Inserter\n"
6
+ "POT-Creation-Date: 2018-09-12 17:17+0300\n"
7
+ "PO-Revision-Date: 2018-09-12 17:18+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Dutch\n"
10
  "Language: nl_NL\n"
24
  msgid "Settings"
25
  msgstr "Instellingen"
26
 
27
+ #: inc/php/core.php:33 inc/php/core.php:48
28
+ msgid "Upgrade to PRO"
29
+ msgstr ""
30
+
31
+ #: inc/php/core.php:47
32
  msgid "Donate"
33
  msgstr "Doe een gift"
34
 
35
+ #: inc/php/core.php:63
36
  msgid "Scripts Inserter"
37
  msgstr "Scripts Inserter"
38
 
78
  msgid "F.A.Q."
79
  msgstr "F.A.Q."
80
 
81
+ #: inc/php/page.php:47 inc/php/settings.php:77 inc/php/sidebar.php:47
82
  msgid "Support"
83
  msgstr "Ondersteuning"
84
 
91
  msgstr "Gebruiksinstructies"
92
 
93
  #: inc/php/page.php:66
94
+ msgid "To add your custom HTML code (plus JavaScript, CSS, etc.) to your website, simply follow these steps:"
95
  msgstr ""
96
 
97
  #: inc/php/page.php:68
99
  msgstr "Ga naar het tabblad “Hoofd”."
100
 
101
  #: inc/php/page.php:69
102
+ msgid "Place your custom HTML code in the field."
103
  msgstr ""
104
 
105
  #: inc/php/page.php:70
111
  msgstr "Klik op de knop \"Wijzigingen opslaan\"."
112
 
113
  #: inc/php/page.php:85
114
+ msgid "Enjoy the result of applying your custom HTML code."
115
  msgstr ""
116
 
117
  #: inc/php/page.php:85
169
  msgstr "Hoe werkt het?"
170
 
171
  #: inc/php/page.php:143
172
+ msgid "On the \"Main\" tab, place your custom HTML code in the field and click the \"Save changes\" button. Enjoy the result of applying your custom HTML code. It's that simple!"
173
  msgstr ""
174
 
175
  #: inc/php/page.php:145
176
+ msgid "How much of HTML code (characters) I can enter in the code editor?"
177
  msgstr ""
178
 
179
  #: inc/php/page.php:146
197
  msgstr "Deze plug-in kan worden geconfigureerd zonder kennis van HTML of CSS, met behulp van de eenvoudig te gebruiken plugin-instellingenpagina. Maar u moet de HTML of CSS kennen om de HTML- of CSS-code toe te voegen / te verwijderen / wijzigen met behulp van deze plug-in."
198
 
199
  #: inc/php/page.php:154
200
+ msgid "Can I add my custom HTML code to a specific page of my website?"
201
  msgstr ""
202
 
203
  #: inc/php/page.php:155
204
+ msgid "For now, this plugin does not have an option to apply the custom HTML code only on specific pages. We plan to add this feature soon. But for now in order to apply your custom HTML code only on specific pages of your website, you need to wrap your custom HTML code in a PHP code that will determine the page you want. You need something like this:"
205
  msgstr ""
206
 
207
  #: inc/php/page.php:168
269
  msgid "Support Us"
270
  msgstr "Ondersteun ons"
271
 
272
+ #: inc/php/page.php:228 inc/php/settings.php:84 inc/php/sidebar.php:54
273
  msgid "Donate with PayPal"
274
  msgstr "Doneer via PayPal"
275
 
299
  msgstr ""
300
 
301
  #: inc/php/settings.php:33
302
+ msgid "You can use the fields below to add your custom HTML code to the HEAD section of your website."
303
  msgstr ""
304
 
305
  #: inc/php/settings.php:35
306
+ msgid "The HTML code from this field will be printed at the beginning of the HEAD section. Do not place plain text in this!"
307
  msgstr ""
308
 
309
  #: inc/php/settings.php:39 inc/php/settings.php:46 inc/php/settings.php:62
310
  #: inc/php/settings.php:69
311
+ msgid "Enter your custom HTML code here"
312
  msgstr ""
313
 
314
  #: inc/php/settings.php:42
315
+ msgid "The HTML code from this field will be printed at the end of the HEAD section. Do not place plain text in this!"
316
  msgstr ""
317
 
318
  #: inc/php/settings.php:49 inc/php/settings.php:72
324
  msgstr ""
325
 
326
  #: inc/php/settings.php:56
327
+ msgid "You can use the fields below to add your custom HTML code to the FOOTER section of your website."
328
  msgstr ""
329
 
330
  #: inc/php/settings.php:58
331
+ msgid "The HTML code from this field will be printed at the beginning of the FOOTER section. Do not place plain text in this!"
332
  msgstr ""
333
 
334
  #: inc/php/settings.php:65
335
+ msgid "The HTML code from this field will be printed at the end of the FOOTER section. Do not place plain text in this!"
336
  msgstr ""
337
 
338
+ #: inc/php/settings.php:79 inc/php/sidebar.php:49
339
  msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
340
  msgstr "Ik ben een onafhankelijke ontwikkelaar, zonder een vast inkomen, dus elke kleine bijdrage helpt mij mijn kosten te dekken en laat me meer tijd spenderen aan het bouwen van dingen voor mensen zoals jij om van te genieten."
341
 
342
+ #: inc/php/settings.php:86 inc/php/sidebar.php:56
343
  msgid "Thanks for your support!"
344
  msgstr "Bedankt voor uw steun!"
345
 
352
  msgstr "Over"
353
 
354
  #: inc/php/sidebar.php:27
355
+ 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."
356
  msgstr ""
357
 
358
  #: inc/php/sidebar.php:32
372
  msgstr "https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter"
373
 
374
  #. Description of the plugin/theme
375
+ msgid "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."
376
  msgstr ""
377
 
378
  #. Author of the plugin/theme
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-08-18 18:16+0300\n"
7
- "PO-Revision-Date: 2018-08-18 18:16+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Polish\n"
10
  "Language: pl_PL\n"
@@ -25,11 +25,15 @@ msgstr ""
25
  msgid "Settings"
26
  msgstr "Ustawienia"
27
 
28
- #: inc/php/core.php:37
 
 
 
 
29
  msgid "Donate"
30
  msgstr "Wesprzyj"
31
 
32
- #: inc/php/core.php:52
33
  msgid "Scripts Inserter"
34
  msgstr "Scripts Inserter"
35
 
@@ -75,7 +79,7 @@ msgstr "Wykorzystanie"
75
  msgid "F.A.Q."
76
  msgstr "FAQ"
77
 
78
- #: inc/php/page.php:47 inc/php/settings.php:77 inc/php/sidebar.php:39
79
  msgid "Support"
80
  msgstr ""
81
 
@@ -88,7 +92,7 @@ msgid "Usage Instructions"
88
  msgstr ""
89
 
90
  #: inc/php/page.php:66
91
- msgid "To add your custom scripts (HTML+CSS+JS code) to your website, simply follow these steps:"
92
  msgstr ""
93
 
94
  #: inc/php/page.php:68
@@ -96,7 +100,7 @@ msgid "Go to the \"Main\" tab."
96
  msgstr ""
97
 
98
  #: inc/php/page.php:69
99
- msgid "Place your custom scripts in the field."
100
  msgstr ""
101
 
102
  #: inc/php/page.php:70
@@ -108,7 +112,7 @@ msgid "Click the \"Save changes\" button."
108
  msgstr ""
109
 
110
  #: inc/php/page.php:85
111
- msgid "Enjoy the result of applying your custom scripts."
112
  msgstr ""
113
 
114
  #: inc/php/page.php:85
@@ -166,11 +170,11 @@ msgid "How does it work?"
166
  msgstr ""
167
 
168
  #: inc/php/page.php:143
169
- msgid "On the \"Main\" tab, place your custom scripts in the field and click the \"Save changes\" button. Enjoy the result of applying your custom scripts. It's that simple!"
170
  msgstr ""
171
 
172
  #: inc/php/page.php:145
173
- msgid "How much of scripts (characters) I can enter in the text field?"
174
  msgstr ""
175
 
176
  #: inc/php/page.php:146
@@ -194,11 +198,11 @@ msgid "This plugin can be configured with no knowledge of HTML or CSS, using an
194
  msgstr ""
195
 
196
  #: inc/php/page.php:154
197
- msgid "Can I add my custom script to a specific page of my website?"
198
  msgstr ""
199
 
200
  #: inc/php/page.php:155
201
- msgid "For now, this plugin does not have an option to apply the custom scripts only on specific pages. We plan to add this feature soon. But for now in order to apply your custom script only on specific pages of your website, you need to wrap your custom script in a PHP code that will determine the page you want. You need something like this:"
202
  msgstr ""
203
 
204
  #: inc/php/page.php:168
@@ -266,7 +270,7 @@ msgstr ""
266
  msgid "Support Us"
267
  msgstr ""
268
 
269
- #: inc/php/page.php:228 inc/php/settings.php:84 inc/php/sidebar.php:46
270
  msgid "Donate with PayPal"
271
  msgstr ""
272
 
@@ -296,20 +300,20 @@ 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 your custom 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 HEAD 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 custom scripts here"
309
  msgstr ""
310
 
311
  #: inc/php/settings.php:42
312
- msgid "Scripts from this field will be printed in the end of HEAD 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
@@ -321,22 +325,22 @@ msgid "Footer Section"
321
  msgstr "Sekcja: Stopka"
322
 
323
  #: inc/php/settings.php:56
324
- msgid "You can use the fields below to add your custom 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 footer 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:41
336
  msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
337
  msgstr ""
338
 
339
- #: inc/php/settings.php:86 inc/php/sidebar.php:48
340
  msgid "Thanks for your support!"
341
  msgstr "Dziękujemy za wsparcie!"
342
 
@@ -349,7 +353,7 @@ msgid "About"
349
  msgstr "O wtyczce"
350
 
351
  #: inc/php/sidebar.php:27
352
- msgid "This plugin allows you to easily and safely insert your custom scripts (HTML+CSS+JS code) in your website directly out of your WordPress Admin Area, without the need to have an external editor."
353
  msgstr "Ta wtyczka pozwala łatwo wstawić kod skryptów na stronę www."
354
 
355
  #: inc/php/sidebar.php:32
@@ -369,7 +373,7 @@ msgid "https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter"
369
  msgstr "https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter"
370
 
371
  #. Description of the plugin/theme
372
- msgid "Easily and safely add your custom scripts (HTML with JavaScript, CSS, etc.) to the WordPress website's head and footer sections. This is a must have tool for authors and website's owners."
373
  msgstr ""
374
 
375
  #. Author of the plugin/theme
@@ -380,7 +384,7 @@ msgstr ""
380
  msgid "https://www.spacexchimp.com"
381
  msgstr "https://www.spacexchimp.com"
382
 
383
- #~ msgid "Easily add your custom scripts to the WordPress website's head and footer sections. This is a must have tool for authors and website's owners."
384
  #~ msgstr "Łatwe dodawanie kodu skryptów do nagłówka i stopki strony opartej na WordPressie."
385
 
386
  #~ msgid "If you want more options, let us know and we will be happy to add them."
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Header and Footer Scripts Inserter\n"
6
+ "POT-Creation-Date: 2018-09-12 17:18+0300\n"
7
+ "PO-Revision-Date: 2018-09-12 17:18+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Polish\n"
10
  "Language: pl_PL\n"
25
  msgid "Settings"
26
  msgstr "Ustawienia"
27
 
28
+ #: inc/php/core.php:33 inc/php/core.php:48
29
+ msgid "Upgrade to PRO"
30
+ msgstr ""
31
+
32
+ #: inc/php/core.php:47
33
  msgid "Donate"
34
  msgstr "Wesprzyj"
35
 
36
+ #: inc/php/core.php:63
37
  msgid "Scripts Inserter"
38
  msgstr "Scripts Inserter"
39
 
79
  msgid "F.A.Q."
80
  msgstr "FAQ"
81
 
82
+ #: inc/php/page.php:47 inc/php/settings.php:77 inc/php/sidebar.php:47
83
  msgid "Support"
84
  msgstr ""
85
 
92
  msgstr ""
93
 
94
  #: inc/php/page.php:66
95
+ msgid "To add your custom HTML code (plus JavaScript, CSS, etc.) to your website, simply follow these steps:"
96
  msgstr ""
97
 
98
  #: inc/php/page.php:68
100
  msgstr ""
101
 
102
  #: inc/php/page.php:69
103
+ msgid "Place your custom HTML code in the field."
104
  msgstr ""
105
 
106
  #: inc/php/page.php:70
112
  msgstr ""
113
 
114
  #: inc/php/page.php:85
115
+ msgid "Enjoy the result of applying your custom HTML code."
116
  msgstr ""
117
 
118
  #: inc/php/page.php:85
170
  msgstr ""
171
 
172
  #: inc/php/page.php:143
173
+ msgid "On the \"Main\" tab, place your custom HTML code in the field and click the \"Save changes\" button. Enjoy the result of applying your custom HTML code. It's that simple!"
174
  msgstr ""
175
 
176
  #: inc/php/page.php:145
177
+ msgid "How much of HTML code (characters) I can enter in the code editor?"
178
  msgstr ""
179
 
180
  #: inc/php/page.php:146
198
  msgstr ""
199
 
200
  #: inc/php/page.php:154
201
+ msgid "Can I add my custom HTML code to a specific page of my website?"
202
  msgstr ""
203
 
204
  #: inc/php/page.php:155
205
+ msgid "For now, this plugin does not have an option to apply the custom HTML code only on specific pages. We plan to add this feature soon. But for now in order to apply your custom HTML code only on specific pages of your website, you need to wrap your custom HTML code in a PHP code that will determine the page you want. You need something like this:"
206
  msgstr ""
207
 
208
  #: inc/php/page.php:168
270
  msgid "Support Us"
271
  msgstr ""
272
 
273
+ #: inc/php/page.php:228 inc/php/settings.php:84 inc/php/sidebar.php:54
274
  msgid "Donate with PayPal"
275
  msgstr ""
276
 
300
  msgstr "Sekcja: Nagłówek"
301
 
302
  #: inc/php/settings.php:33
303
+ msgid "You can use the fields below to add your custom HTML code to the HEAD section of your website."
304
  msgstr "Pola poniżej można użyć, aby dodać kody skryptów do nagłówka witryny."
305
 
306
  #: inc/php/settings.php:35
307
+ msgid "The HTML code from this field will be printed at the beginning of the HEAD section. Do not place plain text in this!"
308
  msgstr "Skrypty z tego pola zostaną dodane na początku sekcji <b>HEAD</b>. Nie należy tu umieszczać zwykłego tekstu!"
309
 
310
  #: inc/php/settings.php:39 inc/php/settings.php:46 inc/php/settings.php:62
311
  #: inc/php/settings.php:69
312
+ msgid "Enter your custom HTML code here"
313
  msgstr ""
314
 
315
  #: inc/php/settings.php:42
316
+ msgid "The HTML code from this field will be printed at the end of the HEAD section. Do not place plain text in this!"
317
  msgstr "Skrypty z tego pola zostaną dodane na końcu sekcji <b>HEAD</b>. Nie należy tu umieszczać zwykłego tekstu!"
318
 
319
  #: inc/php/settings.php:49 inc/php/settings.php:72
325
  msgstr "Sekcja: Stopka"
326
 
327
  #: inc/php/settings.php:56
328
+ msgid "You can use the fields below to add your custom HTML code to the FOOTER section of your website."
329
  msgstr "Pola poniżej można użyć, aby dodać kody skryptów do stopki witryny."
330
 
331
  #: inc/php/settings.php:58
332
+ msgid "The HTML code from this field will be printed at the beginning of the FOOTER section. Do not place plain text in this!"
333
  msgstr "Skrypty z tego pola zostaną dodane przed skryptami ze stopki. Nie należy tu umieszczać zwykłego tekstu!"
334
 
335
  #: inc/php/settings.php:65
336
+ msgid "The HTML code from this field will be printed at the end of the FOOTER section. Do not place plain text in this!"
337
  msgstr "Skrypty z tego pola zostaną dodane za skryptami ze stopki. Nie należy tu umieszczać zwykłego tekstu!"
338
 
339
+ #: inc/php/settings.php:79 inc/php/sidebar.php:49
340
  msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
341
  msgstr ""
342
 
343
+ #: inc/php/settings.php:86 inc/php/sidebar.php:56
344
  msgid "Thanks for your support!"
345
  msgstr "Dziękujemy za wsparcie!"
346
 
353
  msgstr "O wtyczce"
354
 
355
  #: inc/php/sidebar.php:27
356
+ 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."
357
  msgstr "Ta wtyczka pozwala łatwo wstawić kod skryptów na stronę www."
358
 
359
  #: inc/php/sidebar.php:32
373
  msgstr "https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter"
374
 
375
  #. Description of the plugin/theme
376
+ msgid "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."
377
  msgstr ""
378
 
379
  #. Author of the plugin/theme
384
  msgid "https://www.spacexchimp.com"
385
  msgstr "https://www.spacexchimp.com"
386
 
387
+ #~ msgid "Easily add your custom HTML code to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
388
  #~ msgstr "Łatwe dodawanie kodu skryptów do nagłówka i stopki strony opartej na WordPressie."
389
 
390
  #~ msgid "If you want more options, let us know and we will be happy to add them."
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-08-18 18:16+0300\n"
7
- "PO-Revision-Date: 2018-08-18 18:16+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Russian\n"
10
  "Language: ru_RU\n"
@@ -24,11 +24,15 @@ msgstr ""
24
  msgid "Settings"
25
  msgstr "Настройки"
26
 
27
- #: inc/php/core.php:37
 
 
 
 
28
  msgid "Donate"
29
  msgstr "Поддержать"
30
 
31
- #: inc/php/core.php:52
32
  msgid "Scripts Inserter"
33
  msgstr "Scripts Inserter"
34
 
@@ -74,7 +78,7 @@ msgstr "Применение"
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:39
78
  msgid "Support"
79
  msgstr "Поддержка"
80
 
@@ -87,7 +91,7 @@ msgid "Usage Instructions"
87
  msgstr "Инструкция по использованию"
88
 
89
  #: inc/php/page.php:66
90
- msgid "To add your custom scripts (HTML+CSS+JS code) to your website, simply follow these steps:"
91
  msgstr "Для того чтобы добавить скрипт на ваш веб-сайт, выполните следующие действия:"
92
 
93
  #: inc/php/page.php:68
@@ -95,7 +99,7 @@ msgid "Go to the \"Main\" tab."
95
  msgstr "Перейдите на вкладку «Главная»."
96
 
97
  #: inc/php/page.php:69
98
- msgid "Place your custom scripts in the field."
99
  msgstr "Поместите свои скрипты в поле."
100
 
101
  #: inc/php/page.php:70
@@ -107,7 +111,7 @@ msgid "Click the \"Save changes\" button."
107
  msgstr "Нажмите кнопку «Сохранить изменения»."
108
 
109
  #: inc/php/page.php:85
110
- msgid "Enjoy the result of applying your custom scripts."
111
  msgstr "Наслаждайтесь результатом применения ваших скриптов."
112
 
113
  #: inc/php/page.php:85
@@ -165,11 +169,11 @@ msgid "How does it work?"
165
  msgstr "Как оно работает?"
166
 
167
  #: inc/php/page.php:143
168
- msgid "On the \"Main\" tab, place your custom scripts in the field and click the \"Save changes\" button. Enjoy the result of applying your custom scripts. It's that simple!"
169
  msgstr ""
170
 
171
  #: inc/php/page.php:145
172
- msgid "How much of scripts (characters) I can enter in the text field?"
173
  msgstr "Сколько скриптов я могу ввести в текстовое поле?"
174
 
175
  #: inc/php/page.php:146
@@ -193,11 +197,11 @@ msgid "This plugin can be configured with no knowledge of HTML or CSS, using an
193
  msgstr "Этот плагин можно настроить без знания HTML или CSS, с помощью простой в использовании страницы настройки плагина. Но вам нужно знать HTML или CSS для того, чтобы добавить/удалить/изменить код HTML или CSS, используя этот плагин."
194
 
195
  #: inc/php/page.php:154
196
- msgid "Can I add my custom script to a specific page of my website?"
197
  msgstr "Могу ли я добавить свой скрипт на определенную страницу моего веб-сайта?"
198
 
199
  #: inc/php/page.php:155
200
- msgid "For now, this plugin does not have an option to apply the custom scripts only on specific pages. We plan to add this feature soon. But for now in order to apply your custom script only on specific pages of your website, you need to wrap your custom script in a PHP code that will determine the page you want. You need something like this:"
201
  msgstr "Пока этот плагин не имеет возможности применять собственные скрипты только на определенных страницах. Я планирую добавить эту функцию в ближайшее время. Но сейчас, чтобы применить ваш скрипт только на определенных страницах вашего сайта, вам нужно обернуть свой скрипт в PHP-код, который будет определять страницу, которая вам нужна. Вам нужно что-то вроде этого:"
202
 
203
  #: inc/php/page.php:168
@@ -265,7 +269,7 @@ msgstr "Вы можете задать ваш вопрос на %s этой ст
265
  msgid "Support Us"
266
  msgstr "Поддержать нас"
267
 
268
- #: inc/php/page.php:228 inc/php/settings.php:84 inc/php/sidebar.php:46
269
  msgid "Donate with PayPal"
270
  msgstr "Пожертвовать через PayPal"
271
 
@@ -295,20 +299,20 @@ msgid "Head Section"
295
  msgstr "Верхний колонтитул (HEAD)"
296
 
297
  #: inc/php/settings.php:33
298
- msgid "You can use the fields below to add your custom 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 HEAD 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 custom scripts here"
308
  msgstr "Поместите сюда свои скрипты"
309
 
310
  #: inc/php/settings.php:42
311
- msgid "Scripts from this field will be printed in the end of HEAD 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
@@ -320,22 +324,22 @@ msgid "Footer Section"
320
  msgstr "Нижний колонтитул (FOOTER)"
321
 
322
  #: inc/php/settings.php:56
323
- msgid "You can use the fields below to add your custom 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 footer 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:41
335
  msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
336
  msgstr "Я независимый разработчик, без регулярного дохода, так что каждый маленький вклад помогает мне покрыть затраты и позволяет тратить больше времени на создание программ для людей как вы."
337
 
338
- #: inc/php/settings.php:86 inc/php/sidebar.php:48
339
  msgid "Thanks for your support!"
340
  msgstr "Спасибо за вашу поддержку!"
341
 
@@ -348,7 +352,7 @@ msgid "About"
348
  msgstr "О плагине"
349
 
350
  #: inc/php/sidebar.php:27
351
- msgid "This plugin allows you to easily and safely insert your custom scripts (HTML+CSS+JS code) in your website directly out of your WordPress Admin Area, without the need to have an external editor."
352
  msgstr "Этот плагин позволяет легко вставлять скрипты в ваш веб-сайте."
353
 
354
  #: inc/php/sidebar.php:32
@@ -368,7 +372,7 @@ msgid "https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter"
368
  msgstr "https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter"
369
 
370
  #. Description of the plugin/theme
371
- msgid "Easily and safely add your custom scripts (HTML with JavaScript, CSS, etc.) to the WordPress website's head and footer sections. This is a must have tool for authors and website's owners."
372
  msgstr ""
373
 
374
  #. Author of the plugin/theme
@@ -379,10 +383,10 @@ msgstr "Space X-Chimp"
379
  msgid "https://www.spacexchimp.com"
380
  msgstr "https://www.spacexchimp.com"
381
 
382
- #~ msgid "On the \"Settings\" tab, place your custom scripts in the field and click the \"Save changes\" button. Enjoy the result of applying your custom scripts. It's that simple!"
383
  #~ msgstr "На вкладке «Настройки» поместите свои скрипты в поле и нажмите кнопку «Сохранить изменения». Наслаждайтесь результатом применения ваших скриптов. Это так просто!"
384
 
385
- #~ msgid "Easily add your custom scripts to the WordPress website's head and footer sections. This is a must have tool for authors and website's owners."
386
  #~ msgstr "Легко добавляйте ваши скрипты в верхний (HEAD) и нижний (FOOTER) колонтитулы вашего WordPress веб-сайта. Это необходимый инструмент для авторов и владельцев веб-сайтов."
387
 
388
  #~ msgid "Hello! My name is %s Arthur %s and I'm the founder of %s Space X-Chimp %s."
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Header and Footer Scripts Inserter\n"
6
+ "POT-Creation-Date: 2018-09-12 17:18+0300\n"
7
+ "PO-Revision-Date: 2018-09-12 17:18+0300\n"
8
  "Last-Translator: Arthur Gareginyan\n"
9
  "Language-Team: Russian\n"
10
  "Language: ru_RU\n"
24
  msgid "Settings"
25
  msgstr "Настройки"
26
 
27
+ #: inc/php/core.php:33 inc/php/core.php:48
28
+ msgid "Upgrade to PRO"
29
+ msgstr ""
30
+
31
+ #: inc/php/core.php:47
32
  msgid "Donate"
33
  msgstr "Поддержать"
34
 
35
+ #: inc/php/core.php:63
36
  msgid "Scripts Inserter"
37
  msgstr "Scripts Inserter"
38
 
78
  msgid "F.A.Q."
79
  msgstr "F.A.Q."
80
 
81
+ #: inc/php/page.php:47 inc/php/settings.php:77 inc/php/sidebar.php:47
82
  msgid "Support"
83
  msgstr "Поддержка"
84
 
91
  msgstr "Инструкция по использованию"
92
 
93
  #: inc/php/page.php:66
94
+ msgid "To add your custom HTML code (plus JavaScript, CSS, etc.) to your website, simply follow these steps:"
95
  msgstr "Для того чтобы добавить скрипт на ваш веб-сайт, выполните следующие действия:"
96
 
97
  #: inc/php/page.php:68
99
  msgstr "Перейдите на вкладку «Главная»."
100
 
101
  #: inc/php/page.php:69
102
+ msgid "Place your custom HTML code in the field."
103
  msgstr "Поместите свои скрипты в поле."
104
 
105
  #: inc/php/page.php:70
111
  msgstr "Нажмите кнопку «Сохранить изменения»."
112
 
113
  #: inc/php/page.php:85
114
+ msgid "Enjoy the result of applying your custom HTML code."
115
  msgstr "Наслаждайтесь результатом применения ваших скриптов."
116
 
117
  #: inc/php/page.php:85
169
  msgstr "Как оно работает?"
170
 
171
  #: inc/php/page.php:143
172
+ msgid "On the \"Main\" tab, place your custom HTML code in the field and click the \"Save changes\" button. Enjoy the result of applying your custom HTML code. It's that simple!"
173
  msgstr ""
174
 
175
  #: inc/php/page.php:145
176
+ msgid "How much of HTML code (characters) I can enter in the code editor?"
177
  msgstr "Сколько скриптов я могу ввести в текстовое поле?"
178
 
179
  #: inc/php/page.php:146
197
  msgstr "Этот плагин можно настроить без знания HTML или CSS, с помощью простой в использовании страницы настройки плагина. Но вам нужно знать HTML или CSS для того, чтобы добавить/удалить/изменить код HTML или CSS, используя этот плагин."
198
 
199
  #: inc/php/page.php:154
200
+ msgid "Can I add my custom HTML code to a specific page of my website?"
201
  msgstr "Могу ли я добавить свой скрипт на определенную страницу моего веб-сайта?"
202
 
203
  #: inc/php/page.php:155
204
+ msgid "For now, this plugin does not have an option to apply the custom HTML code only on specific pages. We plan to add this feature soon. But for now in order to apply your custom HTML code only on specific pages of your website, you need to wrap your custom HTML code in a PHP code that will determine the page you want. You need something like this:"
205
  msgstr "Пока этот плагин не имеет возможности применять собственные скрипты только на определенных страницах. Я планирую добавить эту функцию в ближайшее время. Но сейчас, чтобы применить ваш скрипт только на определенных страницах вашего сайта, вам нужно обернуть свой скрипт в PHP-код, который будет определять страницу, которая вам нужна. Вам нужно что-то вроде этого:"
206
 
207
  #: inc/php/page.php:168
269
  msgid "Support Us"
270
  msgstr "Поддержать нас"
271
 
272
+ #: inc/php/page.php:228 inc/php/settings.php:84 inc/php/sidebar.php:54
273
  msgid "Donate with PayPal"
274
  msgstr "Пожертвовать через PayPal"
275
 
299
  msgstr "Верхний колонтитул (HEAD)"
300
 
301
  #: inc/php/settings.php:33
302
+ msgid "You can use the fields below to add your custom HTML code to the HEAD section of your website."
303
  msgstr "Используйте поле расположенное ниже для того, чтобы добавить скрипты в верхний колонтитул вашего вебсайта."
304
 
305
  #: inc/php/settings.php:35
306
+ msgid "The HTML code from this field will be printed at the beginning of the HEAD section. Do not place plain text in this!"
307
  msgstr "Скрипты этой области будут напечатаны в начале верхнего колонтитула (<b>HEAD</b>). Не помещайте сюда обычный текст!"
308
 
309
  #: inc/php/settings.php:39 inc/php/settings.php:46 inc/php/settings.php:62
310
  #: inc/php/settings.php:69
311
+ msgid "Enter your custom HTML code here"
312
  msgstr "Поместите сюда свои скрипты"
313
 
314
  #: inc/php/settings.php:42
315
+ msgid "The HTML code from this field will be printed at the end of the HEAD section. Do not place plain text in this!"
316
  msgstr "Скрипты этой области будут напечатаны в конце верхнего колонтитула (<b>HEAD</b>). Не помещайте сюда обычный текст!"
317
 
318
  #: inc/php/settings.php:49 inc/php/settings.php:72
324
  msgstr "Нижний колонтитул (FOOTER)"
325
 
326
  #: inc/php/settings.php:56
327
+ msgid "You can use the fields below to add your custom HTML code to the FOOTER section of your website."
328
  msgstr "Используйте поле расположенное ниже для того, чтобы добавить скрипты в нижний колонтитул вашего вебсайта."
329
 
330
  #: inc/php/settings.php:58
331
+ msgid "The HTML code from this field will be printed at the beginning of the FOOTER section. Do not place plain text in this!"
332
  msgstr "Скрипты из этой области будут напечатаны в начале нижнего колонтитула. Не помещайте сюда обычный текст!"
333
 
334
  #: inc/php/settings.php:65
335
+ msgid "The HTML code from this field will be printed at the end of the FOOTER section. Do not place plain text in this!"
336
  msgstr "Скрипты из этой области будут напечатаны в конце нижнего колонтитула. Не помещайте сюда обычный текст!"
337
 
338
+ #: inc/php/settings.php:79 inc/php/sidebar.php:49
339
  msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
340
  msgstr "Я независимый разработчик, без регулярного дохода, так что каждый маленький вклад помогает мне покрыть затраты и позволяет тратить больше времени на создание программ для людей как вы."
341
 
342
+ #: inc/php/settings.php:86 inc/php/sidebar.php:56
343
  msgid "Thanks for your support!"
344
  msgstr "Спасибо за вашу поддержку!"
345
 
352
  msgstr "О плагине"
353
 
354
  #: inc/php/sidebar.php:27
355
+ 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."
356
  msgstr "Этот плагин позволяет легко вставлять скрипты в ваш веб-сайте."
357
 
358
  #: inc/php/sidebar.php:32
372
  msgstr "https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter"
373
 
374
  #. Description of the plugin/theme
375
+ msgid "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."
376
  msgstr ""
377
 
378
  #. Author of the plugin/theme
383
  msgid "https://www.spacexchimp.com"
384
  msgstr "https://www.spacexchimp.com"
385
 
386
+ #~ msgid "On the \"Settings\" tab, place your custom HTML code in the field and click the \"Save changes\" button. Enjoy the result of applying your custom HTML code. It's that simple!"
387
  #~ msgstr "На вкладке «Настройки» поместите свои скрипты в поле и нажмите кнопку «Сохранить изменения». Наслаждайтесь результатом применения ваших скриптов. Это так просто!"
388
 
389
+ #~ msgid "Easily add your custom HTML code to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
390
  #~ msgstr "Легко добавляйте ваши скрипты в верхний (HEAD) и нижний (FOOTER) колонтитулы вашего WordPress веб-сайта. Это необходимый инструмент для авторов и владельцев веб-сайтов."
391
 
392
  #~ msgid "Hello! My name is %s Arthur %s and I'm the founder of %s Space X-Chimp %s."
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-08-18 18:16+0300\n"
7
  "PO-Revision-Date: 2016-01-30 11:39+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
@@ -22,11 +22,15 @@ msgstr ""
22
  msgid "Settings"
23
  msgstr ""
24
 
25
- #: inc/php/core.php:37
 
 
 
 
26
  msgid "Donate"
27
  msgstr ""
28
 
29
- #: inc/php/core.php:52
30
  msgid "Scripts Inserter"
31
  msgstr ""
32
 
@@ -72,7 +76,7 @@ msgstr ""
72
  msgid "F.A.Q."
73
  msgstr ""
74
 
75
- #: inc/php/page.php:47 inc/php/settings.php:77 inc/php/sidebar.php:39
76
  msgid "Support"
77
  msgstr ""
78
 
@@ -85,7 +89,7 @@ msgid "Usage Instructions"
85
  msgstr ""
86
 
87
  #: inc/php/page.php:66
88
- msgid "To add your custom scripts (HTML+CSS+JS code) to your website, simply follow these steps:"
89
  msgstr ""
90
 
91
  #: inc/php/page.php:68
@@ -93,7 +97,7 @@ msgid "Go to the \"Main\" tab."
93
  msgstr ""
94
 
95
  #: inc/php/page.php:69
96
- msgid "Place your custom scripts in the field."
97
  msgstr ""
98
 
99
  #: inc/php/page.php:70
@@ -105,7 +109,7 @@ msgid "Click the \"Save changes\" button."
105
  msgstr ""
106
 
107
  #: inc/php/page.php:85
108
- msgid "Enjoy the result of applying your custom scripts."
109
  msgstr ""
110
 
111
  #: inc/php/page.php:85
@@ -163,11 +167,11 @@ msgid "How does it work?"
163
  msgstr ""
164
 
165
  #: inc/php/page.php:143
166
- msgid "On the \"Main\" tab, place your custom scripts in the field and click the \"Save changes\" button. Enjoy the result of applying your custom scripts. It's that simple!"
167
  msgstr ""
168
 
169
  #: inc/php/page.php:145
170
- msgid "How much of scripts (characters) I can enter in the text field?"
171
  msgstr ""
172
 
173
  #: inc/php/page.php:146
@@ -191,11 +195,11 @@ msgid "This plugin can be configured with no knowledge of HTML or CSS, using an
191
  msgstr ""
192
 
193
  #: inc/php/page.php:154
194
- msgid "Can I add my custom script to a specific page of my website?"
195
  msgstr ""
196
 
197
  #: inc/php/page.php:155
198
- msgid "For now, this plugin does not have an option to apply the custom scripts only on specific pages. We plan to add this feature soon. But for now in order to apply your custom script only on specific pages of your website, you need to wrap your custom script in a PHP code that will determine the page you want. You need something like this:"
199
  msgstr ""
200
 
201
  #: inc/php/page.php:168
@@ -263,7 +267,7 @@ msgstr ""
263
  msgid "Support Us"
264
  msgstr ""
265
 
266
- #: inc/php/page.php:228 inc/php/settings.php:84 inc/php/sidebar.php:46
267
  msgid "Donate with PayPal"
268
  msgstr ""
269
 
@@ -293,20 +297,20 @@ msgid "Head Section"
293
  msgstr ""
294
 
295
  #: inc/php/settings.php:33
296
- msgid "You can use the fields below to add your custom 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 HEAD 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 custom scripts here"
306
  msgstr ""
307
 
308
  #: inc/php/settings.php:42
309
- msgid "Scripts from this field will be printed in the end of HEAD section. Do not place plain text in this!"
310
  msgstr ""
311
 
312
  #: inc/php/settings.php:49 inc/php/settings.php:72
@@ -318,22 +322,22 @@ msgid "Footer Section"
318
  msgstr ""
319
 
320
  #: inc/php/settings.php:56
321
- msgid "You can use the fields below to add your custom 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 footer 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:41
333
  msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
334
  msgstr ""
335
 
336
- #: inc/php/settings.php:86 inc/php/sidebar.php:48
337
  msgid "Thanks for your support!"
338
  msgstr ""
339
 
@@ -346,7 +350,7 @@ msgid "About"
346
  msgstr ""
347
 
348
  #: inc/php/sidebar.php:27
349
- msgid "This plugin allows you to easily and safely insert your custom scripts (HTML+CSS+JS code) in your website directly out of your WordPress Admin Area, without the need to have an external editor."
350
  msgstr ""
351
 
352
  #: inc/php/sidebar.php:32
@@ -366,7 +370,7 @@ msgid "https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter"
366
  msgstr ""
367
 
368
  #. Description of the plugin/theme
369
- msgid "Easily and safely add your custom scripts (HTML with JavaScript, CSS, etc.) to the WordPress website's head and footer sections. This is a must have tool for authors and website's owners."
370
  msgstr ""
371
 
372
  #. Author of the plugin/theme
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-09-12 17:18+0300\n"
7
  "PO-Revision-Date: 2016-01-30 11:39+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
22
  msgid "Settings"
23
  msgstr ""
24
 
25
+ #: inc/php/core.php:33 inc/php/core.php:48
26
+ msgid "Upgrade to PRO"
27
+ msgstr ""
28
+
29
+ #: inc/php/core.php:47
30
  msgid "Donate"
31
  msgstr ""
32
 
33
+ #: inc/php/core.php:63
34
  msgid "Scripts Inserter"
35
  msgstr ""
36
 
76
  msgid "F.A.Q."
77
  msgstr ""
78
 
79
+ #: inc/php/page.php:47 inc/php/settings.php:77 inc/php/sidebar.php:47
80
  msgid "Support"
81
  msgstr ""
82
 
89
  msgstr ""
90
 
91
  #: inc/php/page.php:66
92
+ msgid "To add your custom HTML code (plus JavaScript, CSS, etc.) to your website, simply follow these steps:"
93
  msgstr ""
94
 
95
  #: inc/php/page.php:68
97
  msgstr ""
98
 
99
  #: inc/php/page.php:69
100
+ msgid "Place your custom HTML code in the field."
101
  msgstr ""
102
 
103
  #: inc/php/page.php:70
109
  msgstr ""
110
 
111
  #: inc/php/page.php:85
112
+ msgid "Enjoy the result of applying your custom HTML code."
113
  msgstr ""
114
 
115
  #: inc/php/page.php:85
167
  msgstr ""
168
 
169
  #: inc/php/page.php:143
170
+ msgid "On the \"Main\" tab, place your custom HTML code in the field and click the \"Save changes\" button. Enjoy the result of applying your custom HTML code. It's that simple!"
171
  msgstr ""
172
 
173
  #: inc/php/page.php:145
174
+ msgid "How much of HTML code (characters) I can enter in the code editor?"
175
  msgstr ""
176
 
177
  #: inc/php/page.php:146
195
  msgstr ""
196
 
197
  #: inc/php/page.php:154
198
+ msgid "Can I add my custom HTML code to a specific page of my website?"
199
  msgstr ""
200
 
201
  #: inc/php/page.php:155
202
+ msgid "For now, this plugin does not have an option to apply the custom HTML code only on specific pages. We plan to add this feature soon. But for now in order to apply your custom HTML code only on specific pages of your website, you need to wrap your custom HTML code in a PHP code that will determine the page you want. You need something like this:"
203
  msgstr ""
204
 
205
  #: inc/php/page.php:168
267
  msgid "Support Us"
268
  msgstr ""
269
 
270
+ #: inc/php/page.php:228 inc/php/settings.php:84 inc/php/sidebar.php:54
271
  msgid "Donate with PayPal"
272
  msgstr ""
273
 
297
  msgstr ""
298
 
299
  #: inc/php/settings.php:33
300
+ msgid "You can use the fields below to add your custom HTML code to the HEAD section of your website."
301
  msgstr ""
302
 
303
  #: inc/php/settings.php:35
304
+ msgid "The HTML code from this field will be printed at the beginning of the HEAD section. Do not place plain text in this!"
305
  msgstr ""
306
 
307
  #: inc/php/settings.php:39 inc/php/settings.php:46 inc/php/settings.php:62
308
  #: inc/php/settings.php:69
309
+ msgid "Enter your custom HTML code here"
310
  msgstr ""
311
 
312
  #: inc/php/settings.php:42
313
+ msgid "The HTML code from this field will be printed at the end of the HEAD section. Do not place plain text in this!"
314
  msgstr ""
315
 
316
  #: inc/php/settings.php:49 inc/php/settings.php:72
322
  msgstr ""
323
 
324
  #: inc/php/settings.php:56
325
+ msgid "You can use the fields below to add your custom HTML code to the FOOTER section of your website."
326
  msgstr ""
327
 
328
  #: inc/php/settings.php:58
329
+ msgid "The HTML code from this field will be printed at the beginning of the FOOTER section. Do not place plain text in this!"
330
  msgstr ""
331
 
332
  #: inc/php/settings.php:65
333
+ msgid "The HTML code from this field will be printed at the end of the FOOTER section. Do not place plain text in this!"
334
  msgstr ""
335
 
336
+ #: inc/php/settings.php:79 inc/php/sidebar.php:49
337
  msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
338
  msgstr ""
339
 
340
+ #: inc/php/settings.php:86 inc/php/sidebar.php:56
341
  msgid "Thanks for your support!"
342
  msgstr ""
343
 
350
  msgstr ""
351
 
352
  #: inc/php/sidebar.php:27
353
+ 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."
354
  msgstr ""
355
 
356
  #: inc/php/sidebar.php:32
370
  msgstr ""
371
 
372
  #. Description of the plugin/theme
373
+ msgid "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."
374
  msgstr ""
375
 
376
  #. Author of the plugin/theme
readme.txt CHANGED
@@ -1,33 +1,31 @@
1
  === Head and Footer Scripts Inserter ===
2
  Contributors: Arthur Gareginyan
3
- Tags: inject, insert, insert scripts, insert javascript, insert js, insert html, insert css, insert custom scripts, insert custom code, 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.28
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
11
- Easily and safely add your custom scripts (HTML with JavaScript, CSS, etc.) to the WordPress website's head and footer sections. This is a must have tool for authors and website's owners.
12
 
13
 
14
  == Description ==
15
 
16
- An easy to use, with intuitive interface, WordPress plugin that gives you the ability to easily and safely add your custom scripts (HTML with JavaScript, CSS, etc.) in the head or/and footer section of your website.
17
 
18
- This is a must have tool for authors and website's owners. Its purpose is to provide a familiar experience to WordPress users. There is no need for any more editing of the files of your theme or plugins for to add custom scripts (HTML with JavaScript, CSS, etc.). Just add your custom scripts in the field on the plugin page and this plugin will do the rest for you. It adds required scripts to the head section of your website automatically, without changing any of your themes file and without slowing down your website.
19
 
20
- The plugin works completely independently of the theme, so you can use it with any theme. The code you place on the plugin page will be entirely unaffected if you edit the contents of the theme’s files, or even completely change the theme. This is really useful in case of updating theme or plugins, because your custom scripts would never be overwritten. Your custom scripts will keep on working, no matter how many times you upgrade or switch your theme and plugins.
21
 
22
  On the plugin page you find the code editor powered by CodeMirror. This code editor has options such as syntax highlighting, line numbering, and more. And if you want more options, let us know and we will be happy to add them.
23
 
24
- Third-party services like Google Webmaster Tools, Alexa, Pinterest and Google+ require you to verify your domain. This makes sure that you are the correct owner of your blog or store before they provide their services to you. You can use this plugin to easily verify your website or domain and get a more effective and efficient sharing results. Example with Pinterest. Once you completed the verification process, people will see a checkmark next to your domain in your Pinterest profile and in pinner search results. That check mark emphasis you have confirmed the ownership of your blog or website on Pinterest. This will help your website to rank better in google and other search engines. You can easily increase your blog traffic using this plugin. "Head and Footer Scripts Inserter" is a simple but effective SEO plugin.
25
-
26
  **Features**
27
 
28
  * Lightweight and fast
29
  * Secure code with using clear coding standards
30
- * Intuitive interface with many settings
31
  * Cross browser compatible (work smooth in any modern browser)
32
  * Compatible with all WordPress themes
33
  * RTL compatible (right to left)
@@ -35,14 +33,32 @@ Third-party services like Google Webmaster Tools, Alexa, Pinterest and Google+ r
35
 
36
  **Key features include...**
37
 
38
- * Inserts custom scripts in beginning or/and end of HEAD tag
39
- * Inserts custom scripts in beginning or/and end of footer
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
40
 
41
- **Supported**
42
 
43
  * HTML
44
- * JavaScript (in HTML tag)
45
- * CSS (in HTML tag)
46
 
47
  **Translation**
48
 
@@ -109,10 +125,10 @@ A. Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) w
109
  A. Yes. This plugin is ready for translation and has already been translated into several languages. But If your language is not available then you can make one. The POT file is included and placed in the "`languages`" folder. Just [send the PO file to us](https://www.spacexchimp.com/contact.html) and we will include this translation within the next plugin update. Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!
110
 
111
  = Q. How does it work? =
112
- A. Simply go to the plugin settings page, place your custom scripts in the field and click the "Save changes" button. Enjoy the result of applying your custom scripts. It's that simple!
113
  You can find the plugin settings page at "`WordPress Admin Area`" -> "`Settings`" -> "`Scripts Inserter`".
114
 
115
- = Q. How much of scripts (characters) I can enter in the text field? =
116
  A. We don't limit the number of characters.
117
 
118
  = Q. Does this plugin requires any modification of the theme? =
@@ -121,20 +137,20 @@ A. Absolutely not. This plugin is configurable entirely from the plugin settings
121
  = Q. Does this require any knowledge of HTML or CSS? =
122
  A. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page. But you need to know the HTML or CSS in order to add/remove/modify the HTML or CSS code by using this plugin.
123
 
124
- = Q. Can I add my custom script to a specific page of my website? =
125
- A. For now, this plugin does not have an option to apply the custom scripts only on specific pages. We plan to add this feature soon. But for now in order to apply your custom script only on specific pages of your website, you need to wrap your custom script in a PHP code that will determine the page you want. You need something like this:
126
 
127
- `function my_custom_script() {
128
 
129
  // Stop the function if this is not the Home page of website
130
  if ( !is_home() ) {
131
  return;
132
  }
133
 
134
- // Print the custom script
135
- echo '<script>YOUR CUSTOM SCRIPT</script>';
136
  }
137
- add_action( 'wp_head', 'my_custom_script' );`
138
 
139
  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/).
140
 
@@ -185,10 +201,19 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
185
 
186
  * [Developer website](https://www.spacexchimp.com)
187
  * [Dedicated plugin page on GitHub](https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter)
 
 
188
 
189
 
190
  == Changelog ==
191
 
 
 
 
 
 
 
 
192
  = 4.28 =
193
  * Changed the sorting of functions in the file 'functional.php'.
194
  * The '_output' function renamed to '_prepare'.
1
  === Head and Footer Scripts Inserter ===
2
  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.29
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
11
+ 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.
12
 
13
 
14
  == Description ==
15
 
16
+ An easy to use, with intuitive interface, WordPress plugin that gives you the ability 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.
17
 
18
+ This is a must have tool for authors and website's owners. Its purpose is to provide a familiar experience to WordPress users. There is no need for any more editing of the files of your theme or plugins for to add custom HTML code (plus JavaScript, CSS, etc.). Just add your custom HTML code in the field on the plugin page and this plugin will do the rest for you. It will automatically add your HTML code to the desired section of your website, without changing any of your theme files and without slowing down your website.
19
 
20
+ The plugin works completely independently of the theme, so you can use it with any theme. The code you place on the plugin page will be entirely unaffected if you edit the contents of the theme’s files, or even completely change the theme. This is really useful in case of updating theme or plugins, because your custom HTML code would never be overwritten. Your custom HTML code will keep on working, no matter how many times you upgrade or switch your theme and plugins.
21
 
22
  On the plugin page you find the code editor powered by CodeMirror. This code editor has options such as syntax highlighting, line numbering, and more. And if you want more options, let us know and we will be happy to add them.
23
 
 
 
24
  **Features**
25
 
26
  * Lightweight and fast
27
  * Secure code with using clear coding standards
28
+ * Intuitive interface
29
  * Cross browser compatible (work smooth in any modern browser)
30
  * Compatible with all WordPress themes
31
  * RTL compatible (right to left)
33
 
34
  **Key features include...**
35
 
36
+ * Insert custom HTML code into the site
37
+ * Manage which HTML code load on HEAD or FOOTER
38
+ * Controlling the priority of loading HTML code
39
+ * Code syntax highlighting
40
+ * Line numbering
41
+ * Active line highlighting
42
+ * Editor allow for Tab indentation
43
+ * And much, much more!
44
+
45
+ **PRO features include...**
46
+
47
+ * Ability to easily customize the code editor by selecting the desired settings
48
+ * 56 themes for syntax highlighting
49
+ * Unlimited number of fields for snippets
50
+ * Automatic backup of all snippets to a downloadable text file
51
+ * Separate activation and deactivation of snippets
52
+ * Ability to collapse/expand the certain fields with code
53
+ * Well documented
54
+
55
+ [Get the PRO version now!](https://www.spacexchimp.com/plugins/header-and-footer-scripts-inserter-pro.html)
56
 
57
+ **Supported languages**
58
 
59
  * HTML
60
+ * JavaScript (wrapped in an HTML tag)
61
+ * CSS (wrapped in an HTML tag)
62
 
63
  **Translation**
64
 
125
  A. Yes. This plugin is ready for translation and has already been translated into several languages. But If your language is not available then you can make one. The POT file is included and placed in the "`languages`" folder. Just [send the PO file to us](https://www.spacexchimp.com/contact.html) and we will include this translation within the next plugin update. Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!
126
 
127
  = Q. How does it work? =
128
+ A. Simply go to the plugin settings page, place your custom HTML code in the field and click the "Save changes" button. Enjoy the result of applying your custom HTML code. It's that simple!
129
  You can find the plugin settings page at "`WordPress Admin Area`" -> "`Settings`" -> "`Scripts Inserter`".
130
 
131
+ = Q. How much of HTML code (characters) I can enter in the code editor? =
132
  A. We don't limit the number of characters.
133
 
134
  = Q. Does this plugin requires any modification of the theme? =
137
  = Q. Does this require any knowledge of HTML or CSS? =
138
  A. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page. But you need to know the HTML or CSS in order to add/remove/modify the HTML or CSS code by using this plugin.
139
 
140
+ = Q. Can I add my custom HTML code to a specific page of my website? =
141
+ A. For now, this plugin does not have an option to apply the custom HTML code only on specific pages. We plan to add this feature soon. But for now in order to apply your custom HTML code only on specific pages of your website, you need to wrap your custom HTML code in a PHP code that will determine the page you want. You need something like this:
142
 
143
+ `function my_custom_html_code() {
144
 
145
  // Stop the function if this is not the Home page of website
146
  if ( !is_home() ) {
147
  return;
148
  }
149
 
150
+ // Print the custom HTML code
151
+ echo '<script>YOUR CUSTOM HTML CODE</script>';
152
  }
153
+ add_action( 'wp_head', 'my_custom_html_code' );`
154
 
155
  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/).
156
 
201
 
202
  * [Developer website](https://www.spacexchimp.com)
203
  * [Dedicated plugin page on GitHub](https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter)
204
+ * [Dedicated plugin page on WordPress.org](https://wordpress.org/plugins/header-and-footer-scripts-inserter/)
205
+ * [Premium Version](https://www.spacexchimp.com/plugins/header-and-footer-scripts-inserter-pro.html)
206
 
207
 
208
  == Changelog ==
209
 
210
+ = 4.29 =
211
+ * Added information about the PRO version of the plugin.
212
+ * The design of the message "Successful" is improved.
213
+ * The "readme.txt" file is updated.
214
+ * Some texts are updated.
215
+ * Translation files are updated.
216
+
217
  = 4.28 =
218
  * Changed the sorting of functions in the file 'functional.php'.
219
  * The '_output' function renamed to '_prepare'.