Head and Footer Scripts Inserter - Version 3.0.1

Version Description

  • POT file updated.
  • Russian translation updated.
  • Polish translation updated.
  • Image "thanks.png" removed.
  • Advertisement replaced by new.
  • Added the subject with plugin name to email address on settings page.
Download this release

Release Info

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

Code changes from version 3.0 to 3.0.1

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.0
9
  * License: GPL3
10
  * Text Domain: header-and-footer-scripts-inserter
11
  * Domain Path: /languages/
5
  * Description: Easily add your scripts to the WordPress website's head and footer sections. This is a must have tool for authors and website's owners.
6
  * Author: Arthur Gareginyan
7
  * Author URI: http://www.arthurgareginyan.com
8
+ * Version: 3.0.1
9
  * License: GPL3
10
  * Text Domain: header-and-footer-scripts-inserter
11
  * Domain Path: /languages/
inc/css/admin.css CHANGED
@@ -1,7 +1,7 @@
1
  /*
2
  * Header and Footer Scripts Inserter
3
  * Style sheet for plugin's page
4
- * @since 3.0
5
  * @agareginyan
6
  */
7
 
@@ -100,7 +100,7 @@ p.help-text {
100
  text-align: center;
101
  }
102
 
103
- #freelance {
104
  text-align: center;
105
  }
106
 
1
  /*
2
  * Header and Footer Scripts Inserter
3
  * Style sheet for plugin's page
4
+ * @since 3.0.1
5
  * @agareginyan
6
  */
7
 
100
  text-align: center;
101
  }
102
 
103
+ #advertisement {
104
  text-align: center;
105
  }
106
 
inc/img/author.png DELETED
Binary file
inc/img/thanks.png DELETED
Binary file
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
14
  */
15
  function HFScriptsIns_render_submenu_page() {
16
 
@@ -43,14 +43,14 @@ 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="using" class="postbox">
53
- <h3 class="title"><?php _e( 'Using', 'header-and-footer-scripts-inserter' ) ?></a></h3>
54
  <div class="inside">
55
  <p><?php _e( 'To use, enter your custom scripts, then click "Save Changes". It\'s that simple!', 'header-and-footer-scripts-inserter' ); ?></p>
56
  </div>
@@ -65,10 +65,9 @@ function HFScriptsIns_render_submenu_page() {
65
  </div>
66
 
67
  <div id="donate" class="postbox">
68
- <h3 class="title"><?php _e( 'Donate', 'header-and-footer-scripts-inserter' ) ?></h3>
69
  <div class="inside">
70
- <img src="<?php echo plugins_url('../img/thanks.png', __FILE__); ?>">
71
- <p><?php _e( 'If you like this plugin and find it useful, help me to make this plugin even better and keep it up-to-date.', 'header-and-footer-scripts-inserter' ); ?></p>
72
  <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" rel="nofollow">
73
  <img src="<?php echo plugins_url('../img/btn_donateCC_LG.gif', __FILE__); ?>" alt="Make a donation">
74
  </a>
@@ -76,13 +75,10 @@ function HFScriptsIns_render_submenu_page() {
76
  </div>
77
  </div>
78
 
79
- <div id="freelance" class="postbox">
80
- <h3 class="title"><?php _e( 'Freelance', 'header-and-footer-scripts-inserter' ) ?></h3>
81
  <div class="inside">
82
- <img src="<?php echo plugins_url('../img/author.png', __FILE__); ?>">
83
- <p><?php _e( 'Hello, my name is Arthur and I\'m a freelance web designer and developer.', 'header-and-footer-scripts-inserter' ); ?></p>
84
- <p><?php _e( 'Share your thoughts with me. You may have a brilliant idea in your mind and I can make it happen, so let’s get started!', 'header-and-footer-scripts-inserter' ); ?></p>
85
- <p><a href="http://www.arthurgareginyan.com/" target="_blank">www.arthurgareginyan.com</a></p>
86
  </div>
87
  </div>
88
 
@@ -117,7 +113,7 @@ function HFScriptsIns_render_submenu_page() {
117
  ?>
118
 
119
  <div class="postbox" id="Head">
120
- <h3 class="title"><?php _e( 'Head Section', 'header-and-footer-scripts-inserter' ) ?></h3>
121
  <div class="inside">
122
  <p><?php _e( 'You can use the fields below to add scripts to Head of your website.', 'header-and-footer-scripts-inserter' ); ?></p>
123
  <textarea name="HFScriptsIns_settings[header_beginning]" id="HFScriptsIns_settings[header_beginning]" ><?php echo $header_beginning; ?></textarea>
@@ -129,7 +125,7 @@ function HFScriptsIns_render_submenu_page() {
129
  </div>
130
 
131
  <div class="postbox" id="Footer">
132
- <h3 class="title"><?php _e( 'Footer Section', 'header-and-footer-scripts-inserter' ) ?></h3>
133
  <div class="inside">
134
  <p><?php _e( 'You can use the fields below to add scripts to Footer of your website.', 'header-and-footer-scripts-inserter' ); ?></p>
135
  <textarea name="HFScriptsIns_settings[footer_beginning]" id="HFScriptsIns_settings[footer_beginning]" ><?php echo $footer_beginning; ?></textarea>
10
  /**
11
  * Render Settings Page
12
  *
13
+ * @since 3.0.1
14
  */
15
  function HFScriptsIns_render_submenu_page() {
16
 
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="using" class="postbox">
53
+ <h3 class="title"><?php _e( 'Using', 'header-and-footer-scripts-inserter' ); ?></a></h3>
54
  <div class="inside">
55
  <p><?php _e( 'To use, enter your custom scripts, then click "Save Changes". It\'s that simple!', 'header-and-footer-scripts-inserter' ); ?></p>
56
  </div>
65
  </div>
66
 
67
  <div id="donate" class="postbox">
68
+ <h3 class="title"><?php _e( 'Donate', 'header-and-footer-scripts-inserter' ); ?></h3>
69
  <div class="inside">
70
+ <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>
 
71
  <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" rel="nofollow">
72
  <img src="<?php echo plugins_url('../img/btn_donateCC_LG.gif', __FILE__); ?>" alt="Make a donation">
73
  </a>
75
  </div>
76
  </div>
77
 
78
+ <div id="advertisement" class="postbox">
79
+ <h3 class="title"><?php _e( 'Advertisement', 'header-and-footer-scripts-inserter' ); ?></h3>
80
  <div class="inside">
81
+ <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>
 
 
 
82
  </div>
83
  </div>
84
 
113
  ?>
114
 
115
  <div class="postbox" id="Head">
116
+ <h3 class="title"><?php _e( 'Head Section', 'header-and-footer-scripts-inserter' ); ?></h3>
117
  <div class="inside">
118
  <p><?php _e( 'You can use the fields below to add scripts to Head of your website.', 'header-and-footer-scripts-inserter' ); ?></p>
119
  <textarea name="HFScriptsIns_settings[header_beginning]" id="HFScriptsIns_settings[header_beginning]" ><?php echo $header_beginning; ?></textarea>
125
  </div>
126
 
127
  <div class="postbox" id="Footer">
128
+ <h3 class="title"><?php _e( 'Footer Section', 'header-and-footer-scripts-inserter' ); ?></h3>
129
  <div class="inside">
130
  <p><?php _e( 'You can use the fields below to add scripts to Footer of your website.', 'header-and-footer-scripts-inserter' ); ?></p>
131
  <textarea name="HFScriptsIns_settings[footer_beginning]" id="HFScriptsIns_settings[footer_beginning]" ><?php echo $footer_beginning; ?></textarea>
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-07-29 21:20+0300\n"
6
- "PO-Revision-Date: 2016-07-29 21:29+0300\n"
7
  "Last-Translator: psouu <koko887@wp.pl>\n"
8
  "Language-Team: \n"
9
  "Language: pl\n"
@@ -30,15 +30,15 @@ msgid "Settings"
30
  msgstr "Ustawienia"
31
 
32
  #. Plugin Name of the plugin/theme
33
- #: header-and-footer-scripts-inserter.php:82 inc/settings_page.php:32
34
  msgid "Head and Footer Scripts Inserter"
35
  msgstr "Wstawianie kodu do nagłówka i stopki"
36
 
37
- #: inc/settings_page.php:23
38
  msgid "Scripts updated successfully."
39
  msgstr ""
40
 
41
- #: inc/settings_page.php:35
42
  msgid ""
43
  "by <a href=\"http://www.arthurgareginyan.com\" target=\"_blank\">Arthur "
44
  "Gareginyan</a>"
@@ -46,19 +46,19 @@ msgstr ""
46
  "wykonana przez <a href=\"http://www.arthurgareginyan.com\" target=\"_blank"
47
  "\">Arthur Gareginyan</a>"
48
 
49
- #: inc/settings_page.php:46
50
  msgid "About"
51
  msgstr "O wtyczce"
52
 
53
- #: inc/settings_page.php:48
54
  msgid "This plugin allows you to easily insert scripts in your website."
55
  msgstr "Ta wtyczka pozwala łatwo wstawić kod skryptów na stronę www."
56
 
57
- #: inc/settings_page.php:53
58
  msgid "Using"
59
  msgstr ""
60
 
61
- #: inc/settings_page.php:55
62
  msgid ""
63
  "To use, enter your custom scripts, then click \"Save Changes\". It's that "
64
  "simple!"
@@ -66,54 +66,43 @@ msgstr ""
66
  "Aby użyć, wprowadź kod skryptów, a następnie kliknij przycisk \"Zapisz\". To "
67
  "takie proste!"
68
 
69
- #: inc/settings_page.php:60
70
  msgid "Help"
71
  msgstr "Pomoc"
72
 
73
- #: inc/settings_page.php:62
74
  msgid "Got something to say? Need help?"
75
  msgstr "Masz coś do powiedzenia? Potrzebujesz pomocy?"
76
 
77
- #: inc/settings_page.php:68
78
  msgid "Donate"
79
  msgstr "Wesprzyj"
80
 
81
- #: inc/settings_page.php:71
82
  msgid ""
83
- "If you like this plugin and find it useful, help me to make this plugin even "
84
- "better and keep it up-to-date."
85
  msgstr ""
86
  "Jeśli lubisz tę wtyczkę uważasz że jest przydatna, pomóż mi aby jeszcze "
87
  "lepsza i bądź na bieżąco z aktualizacjami."
88
 
89
- #: inc/settings_page.php:75
90
  msgid "Thanks for your support!"
91
  msgstr "Dziękujemy za wsparcie!"
92
 
93
- #: inc/settings_page.php:80
94
- msgid "Freelance"
95
- msgstr ""
96
-
97
- #: inc/settings_page.php:83
98
- msgid ""
99
- "Hello, my name is Arthur and I'm a freelance web designer and developer."
100
- msgstr ""
101
 
102
- #: inc/settings_page.php:84
103
- msgid ""
104
- "Share your thoughts with me. You may have a brilliant idea in your mind and "
105
- "I can make it happen, so let’s get started!"
106
- msgstr ""
107
-
108
- #: inc/settings_page.php:120
109
  msgid "Head Section"
110
  msgstr "Sekcja: Nagłówek"
111
 
112
- #: inc/settings_page.php:122
113
  msgid "You can use the fields below to add scripts to Head of your website."
114
  msgstr "Pola poniżej można użyć, aby dodać kody skryptów do nagłówka witryny."
115
 
116
- #: inc/settings_page.php:124
117
  msgid ""
118
  "Scripts from this field will be printed in the beginning of <b>HEAD</b> "
119
  "section. Do not place plain text in this!"
@@ -121,7 +110,7 @@ msgstr ""
121
  "Skrypty z tego pola zostaną dodane na początku sekcji <b>HEAD</b>. Nie "
122
  "należy tu umieszczać zwykłego tekstu!"
123
 
124
- #: inc/settings_page.php:126
125
  msgid ""
126
  "Scripts from this field will be printed in the end of <b>HEAD</b> section. "
127
  "Do not place plain text in this!"
@@ -129,19 +118,19 @@ msgstr ""
129
  "Skrypty z tego pola zostaną dodane na końcu sekcji <b>HEAD</b>. Nie należy "
130
  "tu umieszczać zwykłego tekstu!"
131
 
132
- #: inc/settings_page.php:127 inc/settings_page.php:139
133
  msgid "Save Changes"
134
  msgstr "Zapisz"
135
 
136
- #: inc/settings_page.php:132
137
  msgid "Footer Section"
138
  msgstr "Sekcja: Stopka"
139
 
140
- #: inc/settings_page.php:134
141
  msgid "You can use the fields below to add scripts to Footer of your website."
142
  msgstr "Pola poniżej można użyć, aby dodać kody skryptów do stopki witryny."
143
 
144
- #: inc/settings_page.php:136
145
  msgid ""
146
  "Scripts from this field will be printed before a footers scripts. Do not "
147
  "place plain text in this!"
@@ -149,7 +138,7 @@ msgstr ""
149
  "Skrypty z tego pola zostaną dodane przed skryptami ze stopki. Nie należy tu "
150
  "umieszczać zwykłego tekstu!"
151
 
152
- #: inc/settings_page.php:138
153
  msgid ""
154
  "Scripts from this field will be printed after all footers scripts. Do not "
155
  "place plain text in this!"
@@ -177,6 +166,16 @@ msgstr "Arthur Gareginyan"
177
  msgid "http://www.arthurgareginyan.com"
178
  msgstr "http://www.arthurgareginyan.com"
179
 
 
 
 
 
 
 
 
 
 
 
180
  #~ msgid "Header and Footer Scripts Inserter"
181
  #~ msgstr "Wstawianie kodu do nagłówka i stopki"
182
 
2
  msgstr ""
3
  "Project-Id-Version: Header and Footer Scripts Inserter\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-08-23 07:16+0300\n"
6
+ "PO-Revision-Date: 2016-08-23 07:16+0300\n"
7
  "Last-Translator: psouu <koko887@wp.pl>\n"
8
  "Language-Team: \n"
9
  "Language: pl\n"
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
 
37
+ #: inc/php/settings_page.php:23
38
  msgid "Scripts updated successfully."
39
  msgstr ""
40
 
41
+ #: inc/php/settings_page.php:35
42
  msgid ""
43
  "by <a href=\"http://www.arthurgareginyan.com\" target=\"_blank\">Arthur "
44
  "Gareginyan</a>"
46
  "wykonana przez <a href=\"http://www.arthurgareginyan.com\" target=\"_blank"
47
  "\">Arthur Gareginyan</a>"
48
 
49
+ #: inc/php/settings_page.php:46
50
  msgid "About"
51
  msgstr "O wtyczce"
52
 
53
+ #: inc/php/settings_page.php:48
54
  msgid "This plugin allows you to easily insert scripts in your website."
55
  msgstr "Ta wtyczka pozwala łatwo wstawić kod skryptów na stronę www."
56
 
57
+ #: inc/php/settings_page.php:53
58
  msgid "Using"
59
  msgstr ""
60
 
61
+ #: inc/php/settings_page.php:55
62
  msgid ""
63
  "To use, enter your custom scripts, then click \"Save Changes\". It's that "
64
  "simple!"
66
  "Aby użyć, wprowadź kod skryptów, a następnie kliknij przycisk \"Zapisz\". To "
67
  "takie proste!"
68
 
69
+ #: inc/php/settings_page.php:60
70
  msgid "Help"
71
  msgstr "Pomoc"
72
 
73
+ #: inc/php/settings_page.php:62
74
  msgid "Got something to say? Need help?"
75
  msgstr "Masz coś do powiedzenia? Potrzebujesz pomocy?"
76
 
77
+ #: inc/php/settings_page.php:68
78
  msgid "Donate"
79
  msgstr "Wesprzyj"
80
 
81
+ #: inc/php/settings_page.php:70
82
  msgid ""
83
+ "If you like this plugin and find it useful, please help me to make this "
84
+ "plugin even better and keep it up-to-date."
85
  msgstr ""
86
  "Jeśli lubisz tę wtyczkę uważasz że jest przydatna, pomóż mi aby jeszcze "
87
  "lepsza i bądź na bieżąco z aktualizacjami."
88
 
89
+ #: inc/php/settings_page.php:74
90
  msgid "Thanks for your support!"
91
  msgstr "Dziękujemy za wsparcie!"
92
 
93
+ #: inc/php/settings_page.php:79
94
+ msgid "Advertisement"
95
+ msgstr "Reklama"
 
 
 
 
 
96
 
97
+ #: inc/php/settings_page.php:116
 
 
 
 
 
 
98
  msgid "Head Section"
99
  msgstr "Sekcja: Nagłówek"
100
 
101
+ #: inc/php/settings_page.php:118
102
  msgid "You can use the fields below to add scripts to Head of your website."
103
  msgstr "Pola poniżej można użyć, aby dodać kody skryptów do nagłówka witryny."
104
 
105
+ #: inc/php/settings_page.php:120
106
  msgid ""
107
  "Scripts from this field will be printed in the beginning of <b>HEAD</b> "
108
  "section. Do not place plain text in this!"
110
  "Skrypty z tego pola zostaną dodane na początku sekcji <b>HEAD</b>. Nie "
111
  "należy tu umieszczać zwykłego tekstu!"
112
 
113
+ #: inc/php/settings_page.php:122
114
  msgid ""
115
  "Scripts from this field will be printed in the end of <b>HEAD</b> section. "
116
  "Do not place plain text in this!"
118
  "Skrypty z tego pola zostaną dodane na końcu sekcji <b>HEAD</b>. Nie należy "
119
  "tu umieszczać zwykłego tekstu!"
120
 
121
+ #: inc/php/settings_page.php:123 inc/php/settings_page.php:135
122
  msgid "Save Changes"
123
  msgstr "Zapisz"
124
 
125
+ #: inc/php/settings_page.php:128
126
  msgid "Footer Section"
127
  msgstr "Sekcja: Stopka"
128
 
129
+ #: inc/php/settings_page.php:130
130
  msgid "You can use the fields below to add scripts to Footer of your website."
131
  msgstr "Pola poniżej można użyć, aby dodać kody skryptów do stopki witryny."
132
 
133
+ #: inc/php/settings_page.php:132
134
  msgid ""
135
  "Scripts from this field will be printed before a footers scripts. Do not "
136
  "place plain text in this!"
138
  "Skrypty z tego pola zostaną dodane przed skryptami ze stopki. Nie należy tu "
139
  "umieszczać zwykłego tekstu!"
140
 
141
+ #: inc/php/settings_page.php:134
142
  msgid ""
143
  "Scripts from this field will be printed after all footers scripts. Do not "
144
  "place plain text in this!"
166
  msgid "http://www.arthurgareginyan.com"
167
  msgstr "http://www.arthurgareginyan.com"
168
 
169
+ #~ msgid "Advertising"
170
+ #~ msgstr "Reklama"
171
+
172
+ #~ msgid ""
173
+ #~ "If you like this plugin and find it useful, help me to make this plugin "
174
+ #~ "even better and keep it up-to-date."
175
+ #~ msgstr ""
176
+ #~ "Jeśli lubisz tę wtyczkę uważasz że jest przydatna, pomóż mi aby jeszcze "
177
+ #~ "lepsza i bądź na bieżąco z aktualizacjami."
178
+
179
  #~ msgid "Header and Footer Scripts Inserter"
180
  #~ msgstr "Wstawianie kodu do nagłówka i stopki"
181
 
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-07-29 21:00+0300\n"
5
- "PO-Revision-Date: 2016-07-29 21:20+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ru\n"
@@ -26,15 +26,15 @@ msgid "Settings"
26
  msgstr "Настройки"
27
 
28
  #. Plugin Name of the plugin/theme
29
- #: header-and-footer-scripts-inserter.php:82 inc/settings_page.php:32
30
  msgid "Head and Footer Scripts Inserter"
31
  msgstr ""
32
 
33
- #: inc/settings_page.php:23
34
  msgid "Scripts updated successfully."
35
  msgstr "Скрипты успешно обновлены."
36
 
37
- #: inc/settings_page.php:35
38
  msgid ""
39
  "by <a href=\"http://www.arthurgareginyan.com\" target=\"_blank\">Arthur "
40
  "Gareginyan</a>"
@@ -42,19 +42,19 @@ msgstr ""
42
  "от <a href=\"http://www.arthurgareginyan.com\" target=\"_blank\">Артур "
43
  "Гарегинян</a>"
44
 
45
- #: inc/settings_page.php:46
46
  msgid "About"
47
  msgstr "О платине"
48
 
49
- #: inc/settings_page.php:48
50
  msgid "This plugin allows you to easily insert scripts in your website."
51
  msgstr "Этот плагин позволяет легко вставлять скрипты в ваш веб-сайте."
52
 
53
- #: inc/settings_page.php:53
54
  msgid "Using"
55
  msgstr "Использование:"
56
 
57
- #: inc/settings_page.php:55
58
  msgid ""
59
  "To use, enter your custom scripts, then click \"Save Changes\". It's that "
60
  "simple!"
@@ -62,58 +62,45 @@ msgstr ""
62
  "Для использования, вставьте ваши пользовательские скрипты, затем нажмите "
63
  "кнопку “Сохранить изменения”. Это так просто!"
64
 
65
- #: inc/settings_page.php:60
66
  msgid "Help"
67
  msgstr "Помощь"
68
 
69
- #: inc/settings_page.php:62
70
  msgid "Got something to say? Need help?"
71
  msgstr "Есть что сказать? Нужна помощь?"
72
 
73
- #: inc/settings_page.php:68
74
  msgid "Donate"
75
  msgstr "Пожертвование"
76
 
77
- #: inc/settings_page.php:71
78
  msgid ""
79
- "If you like this plugin and find it useful, help me to make this plugin even "
80
- "better and keep it up-to-date."
81
  msgstr ""
82
- "Если вам нравится этот плагин и вы находите его полезным, то помогите мне "
83
- "сделать его ещё лучше."
84
 
85
- #: inc/settings_page.php:75
86
  msgid "Thanks for your support!"
87
  msgstr "Спасибо за вашу поддержку!"
88
 
89
- #: inc/settings_page.php:80
90
- msgid "Freelance"
91
- msgstr "Фриланс"
92
 
93
- #: inc/settings_page.php:83
94
- msgid ""
95
- "Hello, my name is Arthur and I'm a freelance web designer and developer."
96
- msgstr "Привет, меня зовут Артур и Я внештатный веб-дизайнер и разработчик."
97
-
98
- #: inc/settings_page.php:84
99
- msgid ""
100
- "Share your thoughts with me. You may have a brilliant idea in your mind and "
101
- "I can make it happen, so let’s get started!"
102
- msgstr ""
103
- "Поделитесь со мной своими мыслями. У вас может быть блестящая идея в уме, а "
104
- "я могу сделать её явью, так что давайте начнём!"
105
-
106
- #: inc/settings_page.php:120
107
  msgid "Head Section"
108
  msgstr "Верхний колонтитул (HEAD)"
109
 
110
- #: inc/settings_page.php:122
111
  msgid "You can use the fields below to add scripts to Head of your website."
112
  msgstr ""
113
  "Используйте поле расположенное ниже для того, чтобы добавить скрипты в "
114
  "верхний колонтитул вашего вебсайта."
115
 
116
- #: inc/settings_page.php:124
117
  msgid ""
118
  "Scripts from this field will be printed in the beginning of <b>HEAD</b> "
119
  "section. Do not place plain text in this!"
@@ -121,7 +108,7 @@ msgstr ""
121
  "Скрипты этой области будут напечатаны в начале верхнего колонтитула. Не "
122
  "помещайте сюда обычный текст!"
123
 
124
- #: inc/settings_page.php:126
125
  msgid ""
126
  "Scripts from this field will be printed in the end of <b>HEAD</b> section. "
127
  "Do not place plain text in this!"
@@ -129,21 +116,21 @@ msgstr ""
129
  "Скрипты этой области будут напечатаны в конце верхнего колонтитула. Не "
130
  "помещайте сюда обычный текст!"
131
 
132
- #: inc/settings_page.php:127 inc/settings_page.php:139
133
  msgid "Save Changes"
134
  msgstr "Сохранить Изменения"
135
 
136
- #: inc/settings_page.php:132
137
  msgid "Footer Section"
138
  msgstr "Нижний колонтитул (FOOTER)"
139
 
140
- #: inc/settings_page.php:134
141
  msgid "You can use the fields below to add scripts to Footer of your website."
142
  msgstr ""
143
  "Используйте поле расположенное ниже для того, чтобы добавить скрипты в "
144
  "нижний колонтитул вашего вебсайта."
145
 
146
- #: inc/settings_page.php:136
147
  msgid ""
148
  "Scripts from this field will be printed before a footers scripts. Do not "
149
  "place plain text in this!"
@@ -151,7 +138,7 @@ msgstr ""
151
  "Скрипты из этой области будут напечатаны в начале нижнего колонтитула. Не "
152
  "помещайте сюда обычный текст!"
153
 
154
- #: inc/settings_page.php:138
155
  msgid ""
156
  "Scripts from this field will be printed after all footers scripts. Do not "
157
  "place plain text in this!"
@@ -180,6 +167,30 @@ msgstr "Артур Гарегинян"
180
  msgid "http://www.arthurgareginyan.com"
181
  msgstr ""
182
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
183
  #~ msgid ""
184
  #~ "by <a href=\"http://www.arthurgareginyan.com\" target=\"_blank\">Arthur "
185
  #~ "\"Berserkr\" Gareginyan</a>"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Header and Footer Scripts Inserter\n"
4
+ "POT-Creation-Date: 2016-08-23 07:15+0300\n"
5
+ "PO-Revision-Date: 2016-08-23 07:15+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ru\n"
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
 
33
+ #: inc/php/settings_page.php:23
34
  msgid "Scripts updated successfully."
35
  msgstr "Скрипты успешно обновлены."
36
 
37
+ #: inc/php/settings_page.php:35
38
  msgid ""
39
  "by <a href=\"http://www.arthurgareginyan.com\" target=\"_blank\">Arthur "
40
  "Gareginyan</a>"
42
  "от <a href=\"http://www.arthurgareginyan.com\" target=\"_blank\">Артур "
43
  "Гарегинян</a>"
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."
51
  msgstr "Этот плагин позволяет легко вставлять скрипты в ваш веб-сайте."
52
 
53
+ #: inc/php/settings_page.php:53
54
  msgid "Using"
55
  msgstr "Использование:"
56
 
57
+ #: inc/php/settings_page.php:55
58
  msgid ""
59
  "To use, enter your custom scripts, then click \"Save Changes\". It's that "
60
  "simple!"
62
  "Для использования, вставьте ваши пользовательские скрипты, затем нажмите "
63
  "кнопку “Сохранить изменения”. Это так просто!"
64
 
65
+ #: inc/php/settings_page.php:60
66
  msgid "Help"
67
  msgstr "Помощь"
68
 
69
+ #: inc/php/settings_page.php:62
70
  msgid "Got something to say? Need help?"
71
  msgstr "Есть что сказать? Нужна помощь?"
72
 
73
+ #: inc/php/settings_page.php:68
74
  msgid "Donate"
75
  msgstr "Пожертвование"
76
 
77
+ #: inc/php/settings_page.php:70
78
  msgid ""
79
+ "If you like this plugin and find it useful, please help me to make this "
80
+ "plugin even better and keep it up-to-date."
81
  msgstr ""
82
+ "Если вам нравится этот плагин и вы находите его полезным, то пожалуйста "
83
+ "помогите мне сделать его ещё лучше."
84
 
85
+ #: inc/php/settings_page.php:74
86
  msgid "Thanks for your support!"
87
  msgstr "Спасибо за вашу поддержку!"
88
 
89
+ #: inc/php/settings_page.php:79
90
+ msgid "Advertisement"
91
+ msgstr "Реклама"
92
 
93
+ #: inc/php/settings_page.php:116
 
 
 
 
 
 
 
 
 
 
 
 
 
94
  msgid "Head Section"
95
  msgstr "Верхний колонтитул (HEAD)"
96
 
97
+ #: inc/php/settings_page.php:118
98
  msgid "You can use the fields below to add scripts to Head of your website."
99
  msgstr ""
100
  "Используйте поле расположенное ниже для того, чтобы добавить скрипты в "
101
  "верхний колонтитул вашего вебсайта."
102
 
103
+ #: inc/php/settings_page.php:120
104
  msgid ""
105
  "Scripts from this field will be printed in the beginning of <b>HEAD</b> "
106
  "section. Do not place plain text in this!"
108
  "Скрипты этой области будут напечатаны в начале верхнего колонтитула. Не "
109
  "помещайте сюда обычный текст!"
110
 
111
+ #: inc/php/settings_page.php:122
112
  msgid ""
113
  "Scripts from this field will be printed in the end of <b>HEAD</b> section. "
114
  "Do not place plain text in this!"
116
  "Скрипты этой области будут напечатаны в конце верхнего колонтитула. Не "
117
  "помещайте сюда обычный текст!"
118
 
119
+ #: inc/php/settings_page.php:123 inc/php/settings_page.php:135
120
  msgid "Save Changes"
121
  msgstr "Сохранить Изменения"
122
 
123
+ #: inc/php/settings_page.php:128
124
  msgid "Footer Section"
125
  msgstr "Нижний колонтитул (FOOTER)"
126
 
127
+ #: inc/php/settings_page.php:130
128
  msgid "You can use the fields below to add scripts to Footer of your website."
129
  msgstr ""
130
  "Используйте поле расположенное ниже для того, чтобы добавить скрипты в "
131
  "нижний колонтитул вашего вебсайта."
132
 
133
+ #: inc/php/settings_page.php:132
134
  msgid ""
135
  "Scripts from this field will be printed before a footers scripts. Do not "
136
  "place plain text in this!"
138
  "Скрипты из этой области будут напечатаны в начале нижнего колонтитула. Не "
139
  "помещайте сюда обычный текст!"
140
 
141
+ #: inc/php/settings_page.php:134
142
  msgid ""
143
  "Scripts from this field will be printed after all footers scripts. Do not "
144
  "place plain text in this!"
167
  msgid "http://www.arthurgareginyan.com"
168
  msgstr ""
169
 
170
+ #~ msgid "Advertising"
171
+ #~ msgstr "Реклама"
172
+
173
+ #~ msgid ""
174
+ #~ "If you like this plugin and find it useful, help me to make this plugin "
175
+ #~ "even better and keep it up-to-date."
176
+ #~ msgstr ""
177
+ #~ "Если вам нравится этот плагин и вы находите его полезным, то помогите мне "
178
+ #~ "сделать его ещё лучше."
179
+
180
+ #~ msgid "Freelance"
181
+ #~ msgstr "Фриланс"
182
+
183
+ #~ msgid ""
184
+ #~ "Hello, my name is Arthur and I'm a freelance web designer and developer."
185
+ #~ msgstr "Привет, меня зовут Артур и Я внештатный веб-дизайнер и разработчик."
186
+
187
+ #~ msgid ""
188
+ #~ "Share your thoughts with me. You may have a brilliant idea in your mind "
189
+ #~ "and I can make it happen, so let’s get started!"
190
+ #~ msgstr ""
191
+ #~ "Поделитесь со мной своими мыслями. У вас может быть блестящая идея в уме, "
192
+ #~ "а я могу сделать её явью, так что давайте начнём!"
193
+
194
  #~ msgid ""
195
  #~ "by <a href=\"http://www.arthurgareginyan.com\" target=\"_blank\">Arthur "
196
  #~ "\"Berserkr\" Gareginyan</a>"
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-07-29 23:22+0300\n"
7
  "PO-Revision-Date: 2016-01-30 11:39+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
@@ -64,60 +64,52 @@ msgstr ""
64
  msgid "Donate"
65
  msgstr ""
66
 
67
- #: inc/php/settings_page.php:71
68
- msgid "If you like this plugin and find it useful, help me to make this plugin even better and keep it up-to-date."
 
69
  msgstr ""
70
 
71
- #: inc/php/settings_page.php:75
72
  msgid "Thanks for your support!"
73
  msgstr ""
74
 
75
- #: inc/php/settings_page.php:80
76
- msgid "Freelance"
77
- msgstr ""
78
-
79
- #: inc/php/settings_page.php:83
80
- msgid "Hello, my name is Arthur and I'm a freelance web designer and developer."
81
  msgstr ""
82
 
83
- #: inc/php/settings_page.php:84
84
- msgid ""
85
- "Share your thoughts with me. You may have a brilliant idea in your mind and I can make it happen, so let’s get started!"
86
- msgstr ""
87
-
88
- #: inc/php/settings_page.php:120
89
  msgid "Head Section"
90
  msgstr ""
91
 
92
- #: inc/php/settings_page.php:122
93
  msgid "You can use the fields below to add scripts to Head of your website."
94
  msgstr ""
95
 
96
- #: inc/php/settings_page.php:124
97
  msgid "Scripts from this field will be printed in the beginning of <b>HEAD</b> section. Do not place plain text in this!"
98
  msgstr ""
99
 
100
- #: inc/php/settings_page.php:126
101
  msgid "Scripts from this field will be printed in the end of <b>HEAD</b> section. Do not place plain text in this!"
102
  msgstr ""
103
 
104
- #: inc/php/settings_page.php:127 inc/php/settings_page.php:139
105
  msgid "Save Changes"
106
  msgstr ""
107
 
108
- #: inc/php/settings_page.php:132
109
  msgid "Footer Section"
110
  msgstr ""
111
 
112
- #: inc/php/settings_page.php:134
113
  msgid "You can use the fields below to add scripts to Footer of your website."
114
  msgstr ""
115
 
116
- #: inc/php/settings_page.php:136
117
  msgid "Scripts from this field will be printed before a footers scripts. Do not place plain text in this!"
118
  msgstr ""
119
 
120
- #: inc/php/settings_page.php:138
121
  msgid "Scripts from this field will be printed after all footers scripts. Do not place plain text in this!"
122
  msgstr ""
123
 
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-23 07:13+0300\n"
7
  "PO-Revision-Date: 2016-01-30 11:39+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
64
  msgid "Donate"
65
  msgstr ""
66
 
67
+ #: inc/php/settings_page.php:70
68
+ msgid ""
69
+ "If you like this plugin and find it useful, please help me to make this plugin even better and keep it up-to-date."
70
  msgstr ""
71
 
72
+ #: inc/php/settings_page.php:74
73
  msgid "Thanks for your support!"
74
  msgstr ""
75
 
76
+ #: inc/php/settings_page.php:79
77
+ msgid "Advertisement"
 
 
 
 
78
  msgstr ""
79
 
80
+ #: inc/php/settings_page.php:116
 
 
 
 
 
81
  msgid "Head Section"
82
  msgstr ""
83
 
84
+ #: inc/php/settings_page.php:118
85
  msgid "You can use the fields below to add scripts to Head of your website."
86
  msgstr ""
87
 
88
+ #: inc/php/settings_page.php:120
89
  msgid "Scripts from this field will be printed in the beginning of <b>HEAD</b> section. Do not place plain text in this!"
90
  msgstr ""
91
 
92
+ #: inc/php/settings_page.php:122
93
  msgid "Scripts from this field will be printed in the end of <b>HEAD</b> section. Do not place plain text in this!"
94
  msgstr ""
95
 
96
+ #: inc/php/settings_page.php:123 inc/php/settings_page.php:135
97
  msgid "Save Changes"
98
  msgstr ""
99
 
100
+ #: inc/php/settings_page.php:128
101
  msgid "Footer Section"
102
  msgstr ""
103
 
104
+ #: inc/php/settings_page.php:130
105
  msgid "You can use the fields below to add scripts to Footer of your website."
106
  msgstr ""
107
 
108
+ #: inc/php/settings_page.php:132
109
  msgid "Scripts from this field will be printed before a footers scripts. Do not place plain text in this!"
110
  msgstr ""
111
 
112
+ #: inc/php/settings_page.php:134
113
  msgid "Scripts from this field will be printed after all footers scripts. Do not place plain text in this!"
114
  msgstr ""
115
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: inject, insert, insert scripts, insert javascript, insert js, insert html,
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: 2.0
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -25,11 +25,13 @@ Third-party services like Google Webmaster Tools, Alexa, Pinterest and Google+ r
25
  * No configuration required
26
  * Inserts scripts in beginning or/and end of <head> tag
27
  * Inserts scripts in beginning or/and end of footer
28
- * Ready for translation (.pot file included)
29
 
30
  = Translation =
31
 
32
- * English
 
 
33
  * Russian
34
  * Polish
35
 
@@ -45,7 +47,7 @@ Third-party services like Google Webmaster Tools, Alexa, Pinterest and Google+ r
45
  >
46
  >* [Donate](http://www.arthurgareginyan.com/donate.html) to support ongoing development. Your contribution would be greatly appreciated.
47
  >* [Rate and Review](https://wordpress.org/support/view/plugin-reviews/header-and-footer-scripts-inserter?rate=5#postform) this plugin.
48
- >* [Share with me](mailto:arthurgareginyan@gmail.com) if you have any ideas or suggestions to make this plugin better.
49
 
50
 
51
  == Installation ==
@@ -102,8 +104,8 @@ A. Yes, any financial contributions are welcome! Just visit my website and click
102
 
103
 
104
  == Screenshots ==
105
- 1. Plugin’s page.
106
- 2. Plugin’s page with Google Tag Manager code added.
107
  3. Success message.
108
 
109
  == Other Notes ==
@@ -125,6 +127,13 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
125
  * [Dedicated Plugin Page on GitHub](https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter)
126
 
127
  == Changelog ==
 
 
 
 
 
 
 
128
  = 3.0 =
129
  * Plugin renamed to "Head and Footer Scripts Inserter".
130
  * Styles of settings page optimized for mobile devices.
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.0.1
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
25
  * No configuration required
26
  * Inserts scripts in beginning or/and end of <head> tag
27
  * Inserts scripts in beginning or/and end of footer
28
+ * Ready for translation (POT file included)
29
 
30
  = Translation =
31
 
32
+ Please keep in mind that not all translations are up to date. You are welcome to contribute!
33
+
34
+ * English (default)
35
  * Russian
36
  * Polish
37
 
47
  >
48
  >* [Donate](http://www.arthurgareginyan.com/donate.html) to support ongoing development. Your contribution would be greatly appreciated.
49
  >* [Rate and Review](https://wordpress.org/support/view/plugin-reviews/header-and-footer-scripts-inserter?rate=5#postform) this plugin.
50
+ >* [Share with me](mailto:arthurgareginyan@gmail.com) or view the [GitHub Repo](https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter) if you have any ideas or suggestions to make this plugin better.
51
 
52
 
53
  == Installation ==
104
 
105
 
106
  == Screenshots ==
107
+ 1. Plugin page.
108
+ 2. Plugin page with Google Tag Manager code added.
109
  3. Success message.
110
 
111
  == Other Notes ==
127
  * [Dedicated Plugin Page on GitHub](https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter)
128
 
129
  == Changelog ==
130
+ = 3.0.1 =
131
+ * POT file updated.
132
+ * Russian translation updated.
133
+ * Polish translation updated.
134
+ * Image "thanks.png" removed.
135
+ * Advertisement replaced by new.
136
+ * Added the subject with plugin name to email address on settings page.
137
  = 3.0 =
138
  * Plugin renamed to "Head and Footer Scripts Inserter".
139
  * Styles of settings page optimized for mobile devices.