Head and Footer Scripts Inserter - Version 3.3

Version Description

  • Added the Readme.txt file for translation contribution.
  • Added global constant for plugin text-domain.
  • Translations updated.
  • Ad banner replaced with new.
Download this release

Release Info

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

Code changes from version 3.2 to 3.3

header-and-footer-scripts-inserter.php CHANGED
@@ -5,7 +5,7 @@
5
  * Description: Easily add your scripts to the WordPress website's head and footer sections. This is a must have tool for authors and website's owners.
6
  * Author: Arthur Gareginyan
7
  * Author URI: http://www.arthurgareginyan.com
8
- * Version: 3.2
9
  * License: GPL3
10
  * Text Domain: header-and-footer-scripts-inserter
11
  * Domain Path: /languages/
@@ -40,21 +40,22 @@ defined('ABSPATH') or die("Restricted access!");
40
  /**
41
  * Define global constants
42
  *
43
- * @since 3.2
44
  */
45
  defined('HFSINS_DIR') or define('HFSINS_DIR', dirname(plugin_basename(__FILE__)));
46
  defined('HFSINS_BASE') or define('HFSINS_BASE', plugin_basename(__FILE__));
47
  defined('HFSINS_URL') or define('HFSINS_URL', plugin_dir_url(__FILE__));
48
  defined('HFSINS_PATH') or define('HFSINS_PATH', plugin_dir_path(__FILE__));
49
- defined('HFSINS_VERSION') or define('HFSINS_VERSION', '3.2');
 
50
 
51
  /**
52
  * Register text domain
53
  *
54
- * @since 2.0
55
  */
56
  function HFScriptsIns_textdomain() {
57
- load_plugin_textdomain( 'header-and-footer-scripts-inserter', false, HFSINS_DIR . '/languages/' );
58
  }
59
  add_action( 'init', 'HFScriptsIns_textdomain' );
60
 
@@ -64,24 +65,24 @@ add_action( 'init', 'HFScriptsIns_textdomain' );
64
  * Fetches array of links generated by WP Plugin admin page ( Deactivate | Edit )
65
  * and inserts a link to the "Head and Footer Scripts Inserter" admin page
66
  *
67
- * @since 2.0
68
  * @param array $links Array of links generated by WP in Plugin Admin page.
69
  * @return array Array of links to be output on Plugin Admin page.
70
  */
71
  function HFScriptsIns_settings_link( $links ) {
72
- $settings_page = '<a href="' . admin_url( 'options-general.php?page=header-and-footer-scripts-inserter.php' ) .'">' . __( 'Settings', 'header-and-footer-scripts-inserter' ) . '</a>';
73
  array_unshift( $links, $settings_page );
74
  return $links;
75
  }
76
- add_filter( "plugin_action_links_".HFSINS_BASE, 'HFScriptsIns_settings_link' );
77
 
78
  /**
79
  * Register "Head and Footer Scripts Inserter" submenu in "Settings" Admin Menu
80
  *
81
- * @since 2.0
82
  */
83
  function HFScriptsIns_register_submenu_page() {
84
- add_options_page( __( 'Head and Footer Scripts Inserter', 'header-and-footer-scripts-inserter' ), __( 'Head and Footer Scripts Inserter', 'header-and-footer-scripts-inserter' ), 'manage_options', basename( __FILE__ ), 'HFScriptsIns_render_submenu_page' );
85
  }
86
  add_action( 'admin_menu', 'HFScriptsIns_register_submenu_page' );
87
 
5
  * Description: Easily add your scripts to the WordPress website's head and footer sections. This is a must have tool for authors and website's owners.
6
  * Author: Arthur Gareginyan
7
  * Author URI: http://www.arthurgareginyan.com
8
+ * Version: 3.3
9
  * License: GPL3
10
  * Text Domain: header-and-footer-scripts-inserter
11
  * Domain Path: /languages/
40
  /**
41
  * Define global constants
42
  *
43
+ * @since 3.3
44
  */
45
  defined('HFSINS_DIR') or define('HFSINS_DIR', dirname(plugin_basename(__FILE__)));
46
  defined('HFSINS_BASE') or define('HFSINS_BASE', plugin_basename(__FILE__));
47
  defined('HFSINS_URL') or define('HFSINS_URL', plugin_dir_url(__FILE__));
48
  defined('HFSINS_PATH') or define('HFSINS_PATH', plugin_dir_path(__FILE__));
49
+ defined('HFSINS_TEXT') or define('HFSINS_TEXT', 'header-and-footer-scripts-inserter');
50
+ defined('HFSINS_VERSION') or define('HFSINS_VERSION', '3.3');
51
 
52
  /**
53
  * Register text domain
54
  *
55
+ * @since 3.3
56
  */
57
  function HFScriptsIns_textdomain() {
58
+ load_plugin_textdomain( HFSINS_TEXT, false, HFSINS_DIR . '/languages/' );
59
  }
60
  add_action( 'init', 'HFScriptsIns_textdomain' );
61
 
65
  * Fetches array of links generated by WP Plugin admin page ( Deactivate | Edit )
66
  * and inserts a link to the "Head and Footer Scripts Inserter" admin page
67
  *
68
+ * @since 3.3
69
  * @param array $links Array of links generated by WP in Plugin Admin page.
70
  * @return array Array of links to be output on Plugin Admin page.
71
  */
72
  function HFScriptsIns_settings_link( $links ) {
73
+ $settings_page = '<a href="' . admin_url( 'options-general.php?page=header-and-footer-scripts-inserter.php' ) .'">' . __( 'Settings', HFSINS_TEXT ) . '</a>';
74
  array_unshift( $links, $settings_page );
75
  return $links;
76
  }
77
+ add_filter( 'plugin_action_links_'.HFSINS_BASE, 'HFScriptsIns_settings_link' );
78
 
79
  /**
80
  * Register "Head and Footer Scripts Inserter" submenu in "Settings" Admin Menu
81
  *
82
+ * @since 3.3
83
  */
84
  function HFScriptsIns_register_submenu_page() {
85
+ add_options_page( __( 'Head and Footer Scripts Inserter', HFSINS_TEXT ), __( 'Head and Footer Scripts Inserter', HFSINS_TEXT ), 'manage_options', basename( __FILE__ ), 'HFScriptsIns_render_submenu_page' );
86
  }
87
  add_action( 'admin_menu', 'HFScriptsIns_register_submenu_page' );
88
 
inc/img/banner.png ADDED
Binary file
inc/js/admin.js CHANGED
@@ -5,7 +5,7 @@
5
  * All Rights Reserved.
6
  */
7
 
8
-
9
  jQuery(document).ready(function($) {
10
 
11
  "use strict";
@@ -25,14 +25,14 @@ jQuery(document).ready(function($) {
25
 
26
  // Refresh CodeMirror editor after 1 second
27
  setTimeout(function() {
28
- editor.refresh();
29
  },1);
30
  });
31
 
32
  // Remove the "successful" message after 3 seconds
33
  if (".updated") {
34
  setTimeout(function() {
35
- $(".updated").fadeOut();
36
  }, 3000);
37
  }
38
 
5
  * All Rights Reserved.
6
  */
7
 
8
+
9
  jQuery(document).ready(function($) {
10
 
11
  "use strict";
25
 
26
  // Refresh CodeMirror editor after 1 second
27
  setTimeout(function() {
28
+ editor.refresh();
29
  },1);
30
  });
31
 
32
  // Remove the "successful" message after 3 seconds
33
  if (".updated") {
34
  setTimeout(function() {
35
+ $(".updated").fadeOut();
36
  }, 3000);
37
  }
38
 
inc/php/settings_page.php CHANGED
@@ -10,7 +10,7 @@ defined('ABSPATH') or die("Restricted access!");
10
  /**
11
  * Render Settings Page
12
  *
13
- * @since 3.0.2
14
  */
15
  function HFScriptsIns_render_submenu_page() {
16
 
@@ -20,7 +20,7 @@ function HFScriptsIns_render_submenu_page() {
20
  // Successful message
21
  ?>
22
  <div id="message" class="updated">
23
- <p><?php _e( 'Scripts updated successfully.', 'header-and-footer-scripts-inserter' ); ?></p>
24
  </div>
25
  <?php
26
  }
@@ -29,10 +29,10 @@ function HFScriptsIns_render_submenu_page() {
29
  ?>
30
  <div class="wrap">
31
  <h2>
32
- <?php _e( 'Head and Footer Scripts Inserter', 'header-and-footer-scripts-inserter' ); ?>
33
  <br/>
34
  <span>
35
- <?php _e( 'by <a href="http://www.arthurgareginyan.com" target="_blank">Arthur Gareginyan</a>', 'header-and-footer-scripts-inserter' ); ?>
36
  <span/>
37
  </h2>
38
 
@@ -43,37 +43,34 @@ function HFScriptsIns_render_submenu_page() {
43
  <div id="side-sortables" class="meta-box-sortabless ui-sortable">
44
 
45
  <div id="about" class="postbox">
46
- <h3 class="title"><?php _e( 'About', 'header-and-footer-scripts-inserter' ); ?></a></h3>
47
  <div class="inside">
48
- <p><?php _e( 'This plugin allows you to easily insert scripts in your website.', 'header-and-footer-scripts-inserter' ); ?></p>
49
  </div>
50
  </div>
51
 
52
  <div id="help" class="postbox">
53
- <h3 class="title"><?php _e( 'Help', 'header-and-footer-scripts-inserter' ); ?></h3>
54
  <div class="inside">
55
- <p><?php _e( 'Got something to say? Need help?', 'header-and-footer-scripts-inserter' ); ?></p>
56
  <p><a href="mailto:arthurgareginyan@gmail.com?subject=Head and Footer Scripts Inserter">arthurgareginyan@gmail.com</a></p>
57
  </div>
58
  </div>
59
 
60
  <div id="donate" class="postbox">
61
- <h3 class="title"><?php _e( 'Donate', 'header-and-footer-scripts-inserter' ); ?></h3>
62
  <div class="inside">
63
- <p><?php _e( 'If you like this plugin and find it useful, please help me to make this plugin even better and keep it up-to-date.', 'header-and-footer-scripts-inserter' ); ?></p>
64
  <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" rel="nofollow">
65
  <img src="<?php echo plugins_url('../img/btn_donateCC_LG.gif', __FILE__); ?>" alt="Make a donation">
66
  </a>
67
- <p><?php _e( 'Thanks for your support!', 'header-and-footer-scripts-inserter' ); ?></p>
68
  </div>
69
  </div>
70
 
71
- <div id="advertisement" class="postbox">
72
- <h3 class="title"><?php _e( 'Advertisement', 'header-and-footer-scripts-inserter' ); ?></h3>
73
- <div class="inside">
74
- <a href="http://www.elegantthemes.com/affiliates/idevaffiliate.php?id=36439_5_1_21" target="_blank" rel="nofollow"><img style="border:0px" src="http://www.elegantthemes.com/affiliates/media/banners/divi_250x250.jpg" width="250" height="250" alt="Divi WordPress Theme"></a>
75
- </div>
76
- </div>
77
 
78
  </div>
79
  </div>
@@ -106,34 +103,34 @@ function HFScriptsIns_render_submenu_page() {
106
  ?>
107
 
108
  <div class="postbox" id="Head">
109
- <h3 class="title"><?php _e( 'Head Section', 'header-and-footer-scripts-inserter' ); ?></h3>
110
  <div class="inside">
111
- <p><?php _e( 'You can use the fields below to add scripts to Head of your website.', 'header-and-footer-scripts-inserter' ); ?></p>
112
  <textarea name="HFScriptsIns_settings[header_beginning]" id="HFScriptsIns_settings[header_beginning]" ><?php echo $header_beginning; ?></textarea>
113
- <p class='help-text'><?php _e( 'Scripts from this field will be printed in the beginning of <b>HEAD</b> section. Do not place plain text in this!', 'header-and-footer-scripts-inserter' ); ?></p>
114
  <textarea name="HFScriptsIns_settings[header_end]" id="HFScriptsIns_settings[header_end]" ><?php echo $header_end; ?></textarea>
115
- <p class='help-text'><?php _e( 'Scripts from this field will be printed in the end of <b>HEAD</b> section. Do not place plain text in this!', 'header-and-footer-scripts-inserter' ); ?></p>
116
- <?php submit_button( __( 'Save Changes', 'header-and-footer-scripts-inserter' ), 'primary', 'submit', true ); ?>
117
  </div>
118
  </div>
119
 
120
  <div class="postbox" id="Footer">
121
- <h3 class="title"><?php _e( 'Footer Section', 'header-and-footer-scripts-inserter' ); ?></h3>
122
  <div class="inside">
123
- <p><?php _e( 'You can use the fields below to add scripts to Footer of your website.', 'header-and-footer-scripts-inserter' ); ?></p>
124
  <textarea name="HFScriptsIns_settings[footer_beginning]" id="HFScriptsIns_settings[footer_beginning]" ><?php echo $footer_beginning; ?></textarea>
125
- <p class='help-text'><?php _e( 'Scripts from this field will be printed before a footers scripts. Do not place plain text in this!', 'header-and-footer-scripts-inserter' ); ?></p>
126
  <textarea name="HFScriptsIns_settings[footer_end]" id="HFScriptsIns_settings[footer_end]" ><?php echo $footer_end; ?></textarea>
127
- <p class='help-text'><?php _e( 'Scripts from this field will be printed after all footers scripts. Do not place plain text in this!', 'header-and-footer-scripts-inserter' ); ?></p>
128
- <?php submit_button( __( 'Save Changes', 'header-and-footer-scripts-inserter' ), 'primary', 'submit', true ); ?>
129
  </div>
130
  </div>
131
 
132
  <div class="postbox" id="Using">
133
- <h3 class="title"><?php _e( 'Using', 'header-and-footer-scripts-inserter' ); ?></h3>
134
  <div class="inside">
135
- <p><?php _e( 'To use, enter your custom scripts, then click "Save Changes". It\'s that simple!', 'header-and-footer-scripts-inserter' ); ?></p>
136
- <p><?php _e( 'Note that this fields are for inserting HTML code, so JavaScript and CSS code must be wrapped in the corresponding HTML tag. For JavaScript code use the `&lt;script&gt;` tag, and for CSS code use the `&lt;style&gt;` tag. Example:', 'header-and-footer-scripts-inserter' ); ?></p>
137
  <?php $ExampleCode = '&lt;script&gt;
138
  function myFunction() {
139
  document.getElementById(&quot;demo&quot;).innerHTML = &quot;Hello World!&quot;;
10
  /**
11
  * Render Settings Page
12
  *
13
+ * @since 3.3
14
  */
15
  function HFScriptsIns_render_submenu_page() {
16
 
20
  // Successful message
21
  ?>
22
  <div id="message" class="updated">
23
+ <p><?php _e( 'Scripts updated successfully.', HFSINS_TEXT ); ?></p>
24
  </div>
25
  <?php
26
  }
29
  ?>
30
  <div class="wrap">
31
  <h2>
32
+ <?php _e( 'Head and Footer Scripts Inserter', HFSINS_TEXT ); ?>
33
  <br/>
34
  <span>
35
+ <?php _e( 'by <a href="http://www.arthurgareginyan.com" target="_blank">Arthur Gareginyan</a>', HFSINS_TEXT ); ?>
36
  <span/>
37
  </h2>
38
 
43
  <div id="side-sortables" class="meta-box-sortabless ui-sortable">
44
 
45
  <div id="about" class="postbox">
46
+ <h3 class="title"><?php _e( 'About', HFSINS_TEXT ); ?></a></h3>
47
  <div class="inside">
48
+ <p><?php _e( 'This plugin allows you to easily insert scripts in your website.', HFSINS_TEXT ); ?></p>
49
  </div>
50
  </div>
51
 
52
  <div id="help" class="postbox">
53
+ <h3 class="title"><?php _e( 'Help', HFSINS_TEXT ); ?></h3>
54
  <div class="inside">
55
+ <p><?php _e( 'Got something to say? Need help?', HFSINS_TEXT ); ?></p>
56
  <p><a href="mailto:arthurgareginyan@gmail.com?subject=Head and Footer Scripts Inserter">arthurgareginyan@gmail.com</a></p>
57
  </div>
58
  </div>
59
 
60
  <div id="donate" class="postbox">
61
+ <h3 class="title"><?php _e( 'Donate', HFSINS_TEXT ); ?></h3>
62
  <div class="inside">
63
+ <p><?php _e( 'I\'m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy.', HFSINS_TEXT ); ?></p>
64
  <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" rel="nofollow">
65
  <img src="<?php echo plugins_url('../img/btn_donateCC_LG.gif', __FILE__); ?>" alt="Make a donation">
66
  </a>
67
+ <p><?php _e( 'Thanks for your support!', HFSINS_TEXT ); ?></p>
68
  </div>
69
  </div>
70
 
71
+ <a href="//www.iconfinder.com/?ref=ArthurGareginyan" target="_blank" rel="nofollow">
72
+ <img style="border:0px" src="<?php echo plugins_url('../img/banner.png', __FILE__); ?>" width="280" height="180" alt="">
73
+ </a>
 
 
 
74
 
75
  </div>
76
  </div>
103
  ?>
104
 
105
  <div class="postbox" id="Head">
106
+ <h3 class="title"><?php _e( 'Head Section', HFSINS_TEXT ); ?></h3>
107
  <div class="inside">
108
+ <p><?php _e( 'You can use the fields below to add scripts to Head of your website.', HFSINS_TEXT ); ?></p>
109
  <textarea name="HFScriptsIns_settings[header_beginning]" id="HFScriptsIns_settings[header_beginning]" ><?php echo $header_beginning; ?></textarea>
110
+ <p class='help-text'><?php _e( 'Scripts from this field will be printed in the beginning of <b>HEAD</b> section. Do not place plain text in this!', HFSINS_TEXT ); ?></p>
111
  <textarea name="HFScriptsIns_settings[header_end]" id="HFScriptsIns_settings[header_end]" ><?php echo $header_end; ?></textarea>
112
+ <p class='help-text'><?php _e( 'Scripts from this field will be printed in the end of <b>HEAD</b> section. Do not place plain text in this!', HFSINS_TEXT ); ?></p>
113
+ <?php submit_button( __( 'Save Changes', HFSINS_TEXT ), 'primary', 'submit', true ); ?>
114
  </div>
115
  </div>
116
 
117
  <div class="postbox" id="Footer">
118
+ <h3 class="title"><?php _e( 'Footer Section', HFSINS_TEXT ); ?></h3>
119
  <div class="inside">
120
+ <p><?php _e( 'You can use the fields below to add scripts to Footer of your website.', HFSINS_TEXT ); ?></p>
121
  <textarea name="HFScriptsIns_settings[footer_beginning]" id="HFScriptsIns_settings[footer_beginning]" ><?php echo $footer_beginning; ?></textarea>
122
+ <p class='help-text'><?php _e( 'Scripts from this field will be printed before a footers scripts. Do not place plain text in this!', HFSINS_TEXT ); ?></p>
123
  <textarea name="HFScriptsIns_settings[footer_end]" id="HFScriptsIns_settings[footer_end]" ><?php echo $footer_end; ?></textarea>
124
+ <p class='help-text'><?php _e( 'Scripts from this field will be printed after all footers scripts. Do not place plain text in this!', HFSINS_TEXT ); ?></p>
125
+ <?php submit_button( __( 'Save Changes', HFSINS_TEXT ), 'primary', 'submit', true ); ?>
126
  </div>
127
  </div>
128
 
129
  <div class="postbox" id="Using">
130
+ <h3 class="title"><?php _e( 'Using', HFSINS_TEXT ); ?></h3>
131
  <div class="inside">
132
+ <p><?php _e( 'To use, enter your custom scripts, then click "Save Changes". It\'s that simple!', HFSINS_TEXT ); ?></p>
133
+ <p><?php _e( 'Note that this fields are for inserting HTML code, so JavaScript and CSS code must be wrapped in the corresponding HTML tag. For JavaScript code use the `&lt;script&gt;` tag, and for CSS code use the `&lt;style&gt;` tag. Example:', HFSINS_TEXT ); ?></p>
134
  <?php $ExampleCode = '&lt;script&gt;
135
  function myFunction() {
136
  document.getElementById(&quot;demo&quot;).innerHTML = &quot;Hello World!&quot;;
languages/Readme.txt ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+
2
+ CONTRIBUTING YOUR TRANSLATION
3
+
4
+ If you want to help translate this plugin, please visit the [translation page](https://translate.wordpress.org/projects/wp-plugins/header-and-footer-scripts-inserter).
5
+
6
+ Thanks for your contribution!
languages/header-and-footer-scripts-inserter-pl_PL.mo CHANGED
Binary file
languages/header-and-footer-scripts-inserter-pl_PL.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Header and Footer Scripts Inserter\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-08-25 22:27+0300\n"
6
- "PO-Revision-Date: 2016-08-25 22:27+0300\n"
7
  "Last-Translator: psouu <koko887@wp.pl>\n"
8
  "Language-Team: \n"
9
  "Language: pl\n"
@@ -25,12 +25,12 @@ msgstr ""
25
  "X-Poedit-SearchPath-0: .\n"
26
  "X-Poedit-SearchPathExcluded-0: *.js\n"
27
 
28
- #: header-and-footer-scripts-inserter.php:70
29
  msgid "Settings"
30
  msgstr "Ustawienia"
31
 
32
  #. Plugin Name of the plugin/theme
33
- #: header-and-footer-scripts-inserter.php:82 inc/php/settings_page.php:32
34
  msgid "Head and Footer Scripts Inserter"
35
  msgstr "Wstawianie kodu do nagłówka i stopki"
36
 
@@ -68,29 +68,24 @@ msgstr "Wesprzyj"
68
 
69
  #: inc/php/settings_page.php:63
70
  msgid ""
71
- "If you like this plugin and find it useful, please help me to make this "
72
- "plugin even better and keep it up-to-date."
 
73
  msgstr ""
74
- "Jeśli lubisz tę wtyczkę uważasz że jest przydatna, pomóż mi aby jeszcze "
75
- "lepsza i bądź na bieżąco z aktualizacjami."
76
 
77
  #: inc/php/settings_page.php:67
78
  msgid "Thanks for your support!"
79
  msgstr "Dziękujemy za wsparcie!"
80
 
81
- #: inc/php/settings_page.php:72
82
- msgid "Advertisement"
83
- msgstr "Reklama"
84
-
85
- #: inc/php/settings_page.php:109
86
  msgid "Head Section"
87
  msgstr "Sekcja: Nagłówek"
88
 
89
- #: inc/php/settings_page.php:111
90
  msgid "You can use the fields below to add scripts to Head of your website."
91
  msgstr "Pola poniżej można użyć, aby dodać kody skryptów do nagłówka witryny."
92
 
93
- #: inc/php/settings_page.php:113
94
  msgid ""
95
  "Scripts from this field will be printed in the beginning of <b>HEAD</b> "
96
  "section. Do not place plain text in this!"
@@ -98,7 +93,7 @@ msgstr ""
98
  "Skrypty z tego pola zostaną dodane na początku sekcji <b>HEAD</b>. Nie "
99
  "należy tu umieszczać zwykłego tekstu!"
100
 
101
- #: inc/php/settings_page.php:115
102
  msgid ""
103
  "Scripts from this field will be printed in the end of <b>HEAD</b> section. "
104
  "Do not place plain text in this!"
@@ -106,19 +101,19 @@ msgstr ""
106
  "Skrypty z tego pola zostaną dodane na końcu sekcji <b>HEAD</b>. Nie należy "
107
  "tu umieszczać zwykłego tekstu!"
108
 
109
- #: inc/php/settings_page.php:116 inc/php/settings_page.php:128
110
  msgid "Save Changes"
111
  msgstr "Zapisz"
112
 
113
- #: inc/php/settings_page.php:121
114
  msgid "Footer Section"
115
  msgstr "Sekcja: Stopka"
116
 
117
- #: inc/php/settings_page.php:123
118
  msgid "You can use the fields below to add scripts to Footer of your website."
119
  msgstr "Pola poniżej można użyć, aby dodać kody skryptów do stopki witryny."
120
 
121
- #: inc/php/settings_page.php:125
122
  msgid ""
123
  "Scripts from this field will be printed before a footers scripts. Do not "
124
  "place plain text in this!"
@@ -126,7 +121,7 @@ msgstr ""
126
  "Skrypty z tego pola zostaną dodane przed skryptami ze stopki. Nie należy tu "
127
  "umieszczać zwykłego tekstu!"
128
 
129
- #: inc/php/settings_page.php:127
130
  msgid ""
131
  "Scripts from this field will be printed after all footers scripts. Do not "
132
  "place plain text in this!"
@@ -134,11 +129,11 @@ msgstr ""
134
  "Skrypty z tego pola zostaną dodane za skryptami ze stopki. Nie należy tu "
135
  "umieszczać zwykłego tekstu!"
136
 
137
- #: inc/php/settings_page.php:133
138
  msgid "Using"
139
  msgstr ""
140
 
141
- #: inc/php/settings_page.php:135
142
  msgid ""
143
  "To use, enter your custom scripts, then click \"Save Changes\". It's that "
144
  "simple!"
@@ -146,7 +141,7 @@ msgstr ""
146
  "Aby użyć, wprowadź kod skryptów, a następnie kliknij przycisk \"Zapisz\". To "
147
  "takie proste!"
148
 
149
- #: inc/php/settings_page.php:136
150
  msgid ""
151
  "Note that this fields are for inserting HTML code, so JavaScript and CSS "
152
  "code must be wrapped in the corresponding HTML tag. For JavaScript code use "
@@ -174,6 +169,16 @@ msgstr "Arthur Gareginyan"
174
  msgid "http://www.arthurgareginyan.com"
175
  msgstr "http://www.arthurgareginyan.com"
176
 
 
 
 
 
 
 
 
 
 
 
177
  #~ msgid "Advertising"
178
  #~ msgstr "Reklama"
179
 
2
  msgstr ""
3
  "Project-Id-Version: Header and Footer Scripts Inserter\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-11-01 18:43+0300\n"
6
+ "PO-Revision-Date: 2016-11-01 18:43+0300\n"
7
  "Last-Translator: psouu <koko887@wp.pl>\n"
8
  "Language-Team: \n"
9
  "Language: pl\n"
25
  "X-Poedit-SearchPath-0: .\n"
26
  "X-Poedit-SearchPathExcluded-0: *.js\n"
27
 
28
+ #: header-and-footer-scripts-inserter.php:73
29
  msgid "Settings"
30
  msgstr "Ustawienia"
31
 
32
  #. Plugin Name of the plugin/theme
33
+ #: header-and-footer-scripts-inserter.php:85 inc/php/settings_page.php:32
34
  msgid "Head and Footer Scripts Inserter"
35
  msgstr "Wstawianie kodu do nagłówka i stopki"
36
 
68
 
69
  #: inc/php/settings_page.php:63
70
  msgid ""
71
+ "I'm an independent developer, without a regular income, so every little "
72
+ "contribution helps cover my costs and lets me spend more time building "
73
+ "things for people like you to enjoy."
74
  msgstr ""
 
 
75
 
76
  #: inc/php/settings_page.php:67
77
  msgid "Thanks for your support!"
78
  msgstr "Dziękujemy za wsparcie!"
79
 
80
+ #: inc/php/settings_page.php:106
 
 
 
 
81
  msgid "Head Section"
82
  msgstr "Sekcja: Nagłówek"
83
 
84
+ #: inc/php/settings_page.php:108
85
  msgid "You can use the fields below to add scripts to Head of your website."
86
  msgstr "Pola poniżej można użyć, aby dodać kody skryptów do nagłówka witryny."
87
 
88
+ #: inc/php/settings_page.php:110
89
  msgid ""
90
  "Scripts from this field will be printed in the beginning of <b>HEAD</b> "
91
  "section. Do not place plain text in this!"
93
  "Skrypty z tego pola zostaną dodane na początku sekcji <b>HEAD</b>. Nie "
94
  "należy tu umieszczać zwykłego tekstu!"
95
 
96
+ #: inc/php/settings_page.php:112
97
  msgid ""
98
  "Scripts from this field will be printed in the end of <b>HEAD</b> section. "
99
  "Do not place plain text in this!"
101
  "Skrypty z tego pola zostaną dodane na końcu sekcji <b>HEAD</b>. Nie należy "
102
  "tu umieszczać zwykłego tekstu!"
103
 
104
+ #: inc/php/settings_page.php:113 inc/php/settings_page.php:125
105
  msgid "Save Changes"
106
  msgstr "Zapisz"
107
 
108
+ #: inc/php/settings_page.php:118
109
  msgid "Footer Section"
110
  msgstr "Sekcja: Stopka"
111
 
112
+ #: inc/php/settings_page.php:120
113
  msgid "You can use the fields below to add scripts to Footer of your website."
114
  msgstr "Pola poniżej można użyć, aby dodać kody skryptów do stopki witryny."
115
 
116
+ #: inc/php/settings_page.php:122
117
  msgid ""
118
  "Scripts from this field will be printed before a footers scripts. Do not "
119
  "place plain text in this!"
121
  "Skrypty z tego pola zostaną dodane przed skryptami ze stopki. Nie należy tu "
122
  "umieszczać zwykłego tekstu!"
123
 
124
+ #: inc/php/settings_page.php:124
125
  msgid ""
126
  "Scripts from this field will be printed after all footers scripts. Do not "
127
  "place plain text in this!"
129
  "Skrypty z tego pola zostaną dodane za skryptami ze stopki. Nie należy tu "
130
  "umieszczać zwykłego tekstu!"
131
 
132
+ #: inc/php/settings_page.php:130
133
  msgid "Using"
134
  msgstr ""
135
 
136
+ #: inc/php/settings_page.php:132
137
  msgid ""
138
  "To use, enter your custom scripts, then click \"Save Changes\". It's that "
139
  "simple!"
141
  "Aby użyć, wprowadź kod skryptów, a następnie kliknij przycisk \"Zapisz\". To "
142
  "takie proste!"
143
 
144
+ #: inc/php/settings_page.php:133
145
  msgid ""
146
  "Note that this fields are for inserting HTML code, so JavaScript and CSS "
147
  "code must be wrapped in the corresponding HTML tag. For JavaScript code use "
169
  msgid "http://www.arthurgareginyan.com"
170
  msgstr "http://www.arthurgareginyan.com"
171
 
172
+ #~ msgid "Advertisement"
173
+ #~ msgstr "Reklama"
174
+
175
+ #~ msgid ""
176
+ #~ "If you like this plugin and find it useful, please help me to make this "
177
+ #~ "plugin even better and keep it up-to-date."
178
+ #~ msgstr ""
179
+ #~ "Jeśli lubisz tę wtyczkę uważasz że jest przydatna, pomóż mi aby jeszcze "
180
+ #~ "lepsza i bądź na bieżąco z aktualizacjami."
181
+
182
  #~ msgid "Advertising"
183
  #~ msgstr "Reklama"
184
 
languages/header-and-footer-scripts-inserter-ru_RU.mo CHANGED
Binary file
languages/header-and-footer-scripts-inserter-ru_RU.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Header and Footer Scripts Inserter\n"
4
- "POT-Creation-Date: 2016-08-25 19:01+0300\n"
5
- "PO-Revision-Date: 2016-08-25 22:30+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ru\n"
@@ -21,12 +21,12 @@ msgstr ""
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
- #: header-and-footer-scripts-inserter.php:70
25
  msgid "Settings"
26
  msgstr "Настройки"
27
 
28
  #. Plugin Name of the plugin/theme
29
- #: header-and-footer-scripts-inserter.php:82 inc/php/settings_page.php:32
30
  msgid "Head and Footer Scripts Inserter"
31
  msgstr ""
32
 
@@ -44,7 +44,7 @@ msgstr ""
44
 
45
  #: inc/php/settings_page.php:46
46
  msgid "About"
47
- msgstr "О платине"
48
 
49
  #: inc/php/settings_page.php:48
50
  msgid "This plugin allows you to easily insert scripts in your website."
@@ -60,65 +60,63 @@ msgstr "Есть что сказать? Нужна помощь?"
60
 
61
  #: inc/php/settings_page.php:61
62
  msgid "Donate"
63
- msgstr "Пожертвование"
64
 
65
  #: inc/php/settings_page.php:63
66
  msgid ""
67
- "If you like this plugin and find it useful, please help me to make this "
68
- "plugin even better and keep it up-to-date."
 
69
  msgstr ""
70
- "Если вам нравится этот плагин и вы находите его полезным, то пожалуйста "
71
- "помогите мне сделать его ещё лучше."
 
72
 
73
  #: inc/php/settings_page.php:67
74
  msgid "Thanks for your support!"
75
  msgstr "Спасибо за вашу поддержку!"
76
 
77
- #: inc/php/settings_page.php:72
78
- msgid "Advertisement"
79
- msgstr "Реклама"
80
-
81
- #: inc/php/settings_page.php:109
82
  msgid "Head Section"
83
  msgstr "Верхний колонтитул (HEAD)"
84
 
85
- #: inc/php/settings_page.php:111
86
  msgid "You can use the fields below to add scripts to Head of your website."
87
  msgstr ""
88
  "Используйте поле расположенное ниже для того, чтобы добавить скрипты в "
89
  "верхний колонтитул вашего вебсайта."
90
 
91
- #: inc/php/settings_page.php:113
92
  msgid ""
93
  "Scripts from this field will be printed in the beginning of <b>HEAD</b> "
94
  "section. Do not place plain text in this!"
95
  msgstr ""
96
- "Скрипты этой области будут напечатаны в начале верхнего колонтитула. Не "
97
- "помещайте сюда обычный текст!"
98
 
99
- #: inc/php/settings_page.php:115
100
  msgid ""
101
  "Scripts from this field will be printed in the end of <b>HEAD</b> section. "
102
  "Do not place plain text in this!"
103
  msgstr ""
104
- "Скрипты этой области будут напечатаны в конце верхнего колонтитула. Не "
105
- "помещайте сюда обычный текст!"
106
 
107
- #: inc/php/settings_page.php:116 inc/php/settings_page.php:128
108
  msgid "Save Changes"
109
- msgstr "Сохранить Изменения"
110
 
111
- #: inc/php/settings_page.php:121
112
  msgid "Footer Section"
113
  msgstr "Нижний колонтитул (FOOTER)"
114
 
115
- #: inc/php/settings_page.php:123
116
  msgid "You can use the fields below to add scripts to Footer of your website."
117
  msgstr ""
118
  "Используйте поле расположенное ниже для того, чтобы добавить скрипты в "
119
  "нижний колонтитул вашего вебсайта."
120
 
121
- #: inc/php/settings_page.php:125
122
  msgid ""
123
  "Scripts from this field will be printed before a footers scripts. Do not "
124
  "place plain text in this!"
@@ -126,7 +124,7 @@ msgstr ""
126
  "Скрипты из этой области будут напечатаны в начале нижнего колонтитула. Не "
127
  "помещайте сюда обычный текст!"
128
 
129
- #: inc/php/settings_page.php:127
130
  msgid ""
131
  "Scripts from this field will be printed after all footers scripts. Do not "
132
  "place plain text in this!"
@@ -134,11 +132,11 @@ msgstr ""
134
  "Скрипты из этой области будут напечатаны в конце нижнего колонтитула. Не "
135
  "помещайте сюда обычный текст!"
136
 
137
- #: inc/php/settings_page.php:133
138
  msgid "Using"
139
- msgstr "Использование:"
140
 
141
- #: inc/php/settings_page.php:135
142
  msgid ""
143
  "To use, enter your custom scripts, then click \"Save Changes\". It's that "
144
  "simple!"
@@ -146,7 +144,7 @@ msgstr ""
146
  "Для использования, вставьте ваши пользовательские скрипты, затем нажмите "
147
  "кнопку “Сохранить изменения”. Это так просто!"
148
 
149
- #: inc/php/settings_page.php:136
150
  msgid ""
151
  "Note that this fields are for inserting HTML code, so JavaScript and CSS "
152
  "code must be wrapped in the corresponding HTML tag. For JavaScript code use "
@@ -179,6 +177,16 @@ msgstr "Артур Гарегинян"
179
  msgid "http://www.arthurgareginyan.com"
180
  msgstr ""
181
 
 
 
 
 
 
 
 
 
 
 
182
  #~ msgid "Advertising"
183
  #~ msgstr "Реклама"
184
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Header and Footer Scripts Inserter\n"
4
+ "POT-Creation-Date: 2016-11-01 18:42+0300\n"
5
+ "PO-Revision-Date: 2016-11-01 18:43+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ru\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
+ #: header-and-footer-scripts-inserter.php:73
25
  msgid "Settings"
26
  msgstr "Настройки"
27
 
28
  #. Plugin Name of the plugin/theme
29
+ #: header-and-footer-scripts-inserter.php:85 inc/php/settings_page.php:32
30
  msgid "Head and Footer Scripts Inserter"
31
  msgstr ""
32
 
44
 
45
  #: inc/php/settings_page.php:46
46
  msgid "About"
47
+ msgstr "О плагине"
48
 
49
  #: inc/php/settings_page.php:48
50
  msgid "This plugin allows you to easily insert scripts in your website."
60
 
61
  #: inc/php/settings_page.php:61
62
  msgid "Donate"
63
+ msgstr "Поддержать разработку"
64
 
65
  #: inc/php/settings_page.php:63
66
  msgid ""
67
+ "I'm an independent developer, without a regular income, so every little "
68
+ "contribution helps cover my costs and lets me spend more time building "
69
+ "things for people like you to enjoy."
70
  msgstr ""
71
+ "Я независимый разработчик, без регулярного дохода, так что каждый маленький "
72
+ "вклад помогает мне покрыть затраты и позволяет тратить больше времени на "
73
+ "создание программ для людей как вы."
74
 
75
  #: inc/php/settings_page.php:67
76
  msgid "Thanks for your support!"
77
  msgstr "Спасибо за вашу поддержку!"
78
 
79
+ #: inc/php/settings_page.php:106
 
 
 
 
80
  msgid "Head Section"
81
  msgstr "Верхний колонтитул (HEAD)"
82
 
83
+ #: inc/php/settings_page.php:108
84
  msgid "You can use the fields below to add scripts to Head of your website."
85
  msgstr ""
86
  "Используйте поле расположенное ниже для того, чтобы добавить скрипты в "
87
  "верхний колонтитул вашего вебсайта."
88
 
89
+ #: inc/php/settings_page.php:110
90
  msgid ""
91
  "Scripts from this field will be printed in the beginning of <b>HEAD</b> "
92
  "section. Do not place plain text in this!"
93
  msgstr ""
94
+ "Скрипты этой области будут напечатаны в начале верхнего колонтитула "
95
+ "(<b>HEAD</b>). Не помещайте сюда обычный текст!"
96
 
97
+ #: inc/php/settings_page.php:112
98
  msgid ""
99
  "Scripts from this field will be printed in the end of <b>HEAD</b> section. "
100
  "Do not place plain text in this!"
101
  msgstr ""
102
+ "Скрипты этой области будут напечатаны в конце верхнего колонтитула (<b>HEAD</"
103
+ "b>). Не помещайте сюда обычный текст!"
104
 
105
+ #: inc/php/settings_page.php:113 inc/php/settings_page.php:125
106
  msgid "Save Changes"
107
+ msgstr "Сохранить изменения"
108
 
109
+ #: inc/php/settings_page.php:118
110
  msgid "Footer Section"
111
  msgstr "Нижний колонтитул (FOOTER)"
112
 
113
+ #: inc/php/settings_page.php:120
114
  msgid "You can use the fields below to add scripts to Footer of your website."
115
  msgstr ""
116
  "Используйте поле расположенное ниже для того, чтобы добавить скрипты в "
117
  "нижний колонтитул вашего вебсайта."
118
 
119
+ #: inc/php/settings_page.php:122
120
  msgid ""
121
  "Scripts from this field will be printed before a footers scripts. Do not "
122
  "place plain text in this!"
124
  "Скрипты из этой области будут напечатаны в начале нижнего колонтитула. Не "
125
  "помещайте сюда обычный текст!"
126
 
127
+ #: inc/php/settings_page.php:124
128
  msgid ""
129
  "Scripts from this field will be printed after all footers scripts. Do not "
130
  "place plain text in this!"
132
  "Скрипты из этой области будут напечатаны в конце нижнего колонтитула. Не "
133
  "помещайте сюда обычный текст!"
134
 
135
+ #: inc/php/settings_page.php:130
136
  msgid "Using"
137
+ msgstr "Как пользоваться"
138
 
139
+ #: inc/php/settings_page.php:132
140
  msgid ""
141
  "To use, enter your custom scripts, then click \"Save Changes\". It's that "
142
  "simple!"
144
  "Для использования, вставьте ваши пользовательские скрипты, затем нажмите "
145
  "кнопку “Сохранить изменения”. Это так просто!"
146
 
147
+ #: inc/php/settings_page.php:133
148
  msgid ""
149
  "Note that this fields are for inserting HTML code, so JavaScript and CSS "
150
  "code must be wrapped in the corresponding HTML tag. For JavaScript code use "
177
  msgid "http://www.arthurgareginyan.com"
178
  msgstr ""
179
 
180
+ #~ msgid "Advertisement"
181
+ #~ msgstr "Реклама"
182
+
183
+ #~ msgid ""
184
+ #~ "If you like this plugin and find it useful, please help me to make this "
185
+ #~ "plugin even better and keep it up-to-date."
186
+ #~ msgstr ""
187
+ #~ "Если вам нравится этот плагин и вы находите его полезным, то пожалуйста "
188
+ #~ "помогите мне сделать его ещё лучше."
189
+
190
  #~ msgid "Advertising"
191
  #~ msgstr "Реклама"
192
 
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: 2016-08-25 19:00+0300\n"
7
  "PO-Revision-Date: 2016-01-30 11:39+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
@@ -19,12 +19,12 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Poedit-SearchPathExcluded-0: *.js\n"
21
 
22
- #: header-and-footer-scripts-inserter.php:70
23
  msgid "Settings"
24
  msgstr ""
25
 
26
  #. Plugin Name of the plugin/theme
27
- #: header-and-footer-scripts-inserter.php:82 inc/php/settings_page.php:32
28
  msgid "Head and Footer Scripts Inserter"
29
  msgstr ""
30
 
@@ -58,62 +58,59 @@ msgstr ""
58
 
59
  #: inc/php/settings_page.php:63
60
  msgid ""
61
- "If you like this plugin and find it useful, please help me to make this plugin even better and keep it up-to-date."
 
62
  msgstr ""
63
 
64
  #: inc/php/settings_page.php:67
65
  msgid "Thanks for your support!"
66
  msgstr ""
67
 
68
- #: inc/php/settings_page.php:72
69
- msgid "Advertisement"
70
- msgstr ""
71
-
72
- #: inc/php/settings_page.php:109
73
  msgid "Head Section"
74
  msgstr ""
75
 
76
- #: inc/php/settings_page.php:111
77
  msgid "You can use the fields below to add scripts to Head of your website."
78
  msgstr ""
79
 
80
- #: inc/php/settings_page.php:113
81
  msgid "Scripts from this field will be printed in the beginning of <b>HEAD</b> section. Do not place plain text in this!"
82
  msgstr ""
83
 
84
- #: inc/php/settings_page.php:115
85
  msgid "Scripts from this field will be printed in the end of <b>HEAD</b> section. Do not place plain text in this!"
86
  msgstr ""
87
 
88
- #: inc/php/settings_page.php:116 inc/php/settings_page.php:128
89
  msgid "Save Changes"
90
  msgstr ""
91
 
92
- #: inc/php/settings_page.php:121
93
  msgid "Footer Section"
94
  msgstr ""
95
 
96
- #: inc/php/settings_page.php:123
97
  msgid "You can use the fields below to add scripts to Footer of your website."
98
  msgstr ""
99
 
100
- #: inc/php/settings_page.php:125
101
  msgid "Scripts from this field will be printed before a footers scripts. Do not place plain text in this!"
102
  msgstr ""
103
 
104
- #: inc/php/settings_page.php:127
105
  msgid "Scripts from this field will be printed after all footers scripts. Do not place plain text in this!"
106
  msgstr ""
107
 
108
- #: inc/php/settings_page.php:133
109
  msgid "Using"
110
  msgstr ""
111
 
112
- #: inc/php/settings_page.php:135
113
  msgid "To use, enter your custom scripts, then click \"Save Changes\". It's that simple!"
114
  msgstr ""
115
 
116
- #: inc/php/settings_page.php:136
117
  msgid ""
118
  "Note that this fields are for inserting HTML code, so JavaScript and CSS code must be wrapped in the corresponding "
119
  "HTML tag. For JavaScript code use the `&lt;script&gt;` tag, and for CSS code use the `&lt;style&gt;` tag. Example:"
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: Header and Footer Scripts Inserter\n"
6
+ "POT-Creation-Date: 2016-11-01 18:40+0300\n"
7
  "PO-Revision-Date: 2016-01-30 11:39+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Poedit-SearchPathExcluded-0: *.js\n"
21
 
22
+ #: header-and-footer-scripts-inserter.php:73
23
  msgid "Settings"
24
  msgstr ""
25
 
26
  #. Plugin Name of the plugin/theme
27
+ #: header-and-footer-scripts-inserter.php:85 inc/php/settings_page.php:32
28
  msgid "Head and Footer Scripts Inserter"
29
  msgstr ""
30
 
58
 
59
  #: inc/php/settings_page.php:63
60
  msgid ""
61
+ "I'm an independent developer, without a regular income, so every little contribution helps cover my costs and lets me "
62
+ "spend more time building things for people like you to enjoy."
63
  msgstr ""
64
 
65
  #: inc/php/settings_page.php:67
66
  msgid "Thanks for your support!"
67
  msgstr ""
68
 
69
+ #: inc/php/settings_page.php:106
 
 
 
 
70
  msgid "Head Section"
71
  msgstr ""
72
 
73
+ #: inc/php/settings_page.php:108
74
  msgid "You can use the fields below to add scripts to Head of your website."
75
  msgstr ""
76
 
77
+ #: inc/php/settings_page.php:110
78
  msgid "Scripts from this field will be printed in the beginning of <b>HEAD</b> section. Do not place plain text in this!"
79
  msgstr ""
80
 
81
+ #: inc/php/settings_page.php:112
82
  msgid "Scripts from this field will be printed in the end of <b>HEAD</b> section. Do not place plain text in this!"
83
  msgstr ""
84
 
85
+ #: inc/php/settings_page.php:113 inc/php/settings_page.php:125
86
  msgid "Save Changes"
87
  msgstr ""
88
 
89
+ #: inc/php/settings_page.php:118
90
  msgid "Footer Section"
91
  msgstr ""
92
 
93
+ #: inc/php/settings_page.php:120
94
  msgid "You can use the fields below to add scripts to Footer of your website."
95
  msgstr ""
96
 
97
+ #: inc/php/settings_page.php:122
98
  msgid "Scripts from this field will be printed before a footers scripts. Do not place plain text in this!"
99
  msgstr ""
100
 
101
+ #: inc/php/settings_page.php:124
102
  msgid "Scripts from this field will be printed after all footers scripts. Do not place plain text in this!"
103
  msgstr ""
104
 
105
+ #: inc/php/settings_page.php:130
106
  msgid "Using"
107
  msgstr ""
108
 
109
+ #: inc/php/settings_page.php:132
110
  msgid "To use, enter your custom scripts, then click \"Save Changes\". It's that simple!"
111
  msgstr ""
112
 
113
+ #: inc/php/settings_page.php:133
114
  msgid ""
115
  "Note that this fields are for inserting HTML code, so JavaScript and CSS code must be wrapped in the corresponding "
116
  "HTML tag. For JavaScript code use the `&lt;script&gt;` tag, and for CSS code use the `&lt;style&gt;` tag. Example:"
readme.txt CHANGED
@@ -3,8 +3,8 @@ 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.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS
5
  Requires at least: 3.9
6
- Tested up to: 4.6
7
- Stable tag: 3.2
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -55,17 +55,17 @@ Install "Head and Footer Scripts Inserter" just as you would any other WordPress
55
 
56
  Automatically via WordPress:
57
 
58
- 1. Log into WordPress Dashboard of your website.
59
- 2. Go to "`Plugins`" —> "`add new plugins`".
60
  3. Find this plugin and click install.
61
  4. Activate this plugin through the "`Plugins`" tab.
62
 
63
  Manual via FTP:
64
 
65
- 1. Download a copy (zip file) of this plugin from WordPress.org.
66
- 2. Unzip the zip file.
67
- 3. Upload the unzipped directory to your website's plugin directory (`/wp-content/plugins/`).
68
- 4. Log into WordPress Dashboard of your website.
69
  5. Activate this plugin through the "`Plugins`" tab.
70
 
71
  After installation, a "`Head and Footer Scripts Inserter`" menu item will appear in the "`Settings`" section. Click on this in order to view plugin's administration page.
@@ -74,7 +74,7 @@ After installation, a "`Head and Footer Scripts Inserter`" menu item will appea
74
 
75
 
76
  == Frequently Asked Questions ==
77
- = Q. Will this Plugin work on my WordPress.COM website? =
78
  A. Sorry, this plugin is available for use only on self-hosted (WordPress.org) websites.
79
 
80
  = Q. Can I use this plugin on my language? =
@@ -127,6 +127,11 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
127
  * [Dedicated Plugin Page on GitHub](https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter)
128
 
129
  == Changelog ==
 
 
 
 
 
130
  = 3.2 =
131
  * Added prefixes to the stylesheet and script names when using wp_enqueue_style() and wp_enqueue_script().
132
  * Added constant for storing the plugin version number.
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.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS
5
  Requires at least: 3.9
6
+ Tested up to: 4.7
7
+ Stable tag: 3.3
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
55
 
56
  Automatically via WordPress:
57
 
58
+ 1. Log into Dashboard of your WordPress website.
59
+ 2. Go to "`Plugins`" —> "`Add New`".
60
  3. Find this plugin and click install.
61
  4. Activate this plugin through the "`Plugins`" tab.
62
 
63
  Manual via FTP:
64
 
65
+ 1. Download a copy (ZIP file) of this plugin from WordPress.org.
66
+ 2. Unzip the ZIP file.
67
+ 3. Upload the unzipped catalog to your website's plugin directory (`/wp-content/plugins/`).
68
+ 4. Log into Dashboard of your WordPress website.
69
  5. Activate this plugin through the "`Plugins`" tab.
70
 
71
  After installation, a "`Head and Footer Scripts Inserter`" menu item will appear in the "`Settings`" section. Click on this in order to view plugin's administration page.
74
 
75
 
76
  == Frequently Asked Questions ==
77
+ = Q. Will this plugin work on my WordPress.COM website? =
78
  A. Sorry, this plugin is available for use only on self-hosted (WordPress.org) websites.
79
 
80
  = Q. Can I use this plugin on my language? =
127
  * [Dedicated Plugin Page on GitHub](https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter)
128
 
129
  == Changelog ==
130
+ = 3.3 =
131
+ * Added the Readme.txt file for translation contribution.
132
+ * Added global constant for plugin text-domain.
133
+ * Translations updated.
134
+ * Ad banner replaced with new.
135
  = 3.2 =
136
  * Added prefixes to the stylesheet and script names when using wp_enqueue_style() and wp_enqueue_script().
137
  * Added constant for storing the plugin version number.