Head and Footer Scripts Inserter - Version 4.4.1

Version Description

  • The HTTPS mixed content issue fixed by changing all links to HTTPS.
  • Content of the "FAQ" section updated.
Download this release

Release Info

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

Code changes from version 4.4 to 4.4.1

header-and-footer-scripts-inserter.php CHANGED
@@ -4,13 +4,13 @@
4
  * Plugin URI: https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter
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: 4.4
9
  * License: GPL3
10
  * Text Domain: header-and-footer-scripts-inserter
11
  * Domain Path: /languages/
12
  *
13
- * Copyright 2016-2017 Arthur Gareginyan ( website : http://www.arthurgareginyan.com )
14
  *
15
  * This plugin is free software: you can redistribute it and/or modify
16
  * it under the terms of the GNU General Public License as published by
4
  * Plugin URI: https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter
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: https://www.arthurgareginyan.com
8
+ * Version: 4.4.1
9
  * License: GPL3
10
  * Text Domain: header-and-footer-scripts-inserter
11
  * Domain Path: /languages/
12
  *
13
+ * Copyright 2016-2017 Arthur Gareginyan ( website : https://www.arthurgareginyan.com )
14
  *
15
  * This plugin is free software: you can redistribute it and/or modify
16
  * it under the terms of the GNU General Public License as published by
inc/css/admin.css CHANGED
@@ -3,7 +3,7 @@
3
  *
4
  * @package Head and Footer Scripts Inserter
5
  * @uthor Arthur Gareginyan
6
- * @link http://www.arthurgareginyan.com
7
  * @copyright Copyright (c) 2016-2017 Arthur Gareginyan. All Rights Reserved.
8
  * @since 4.4
9
  */
3
  *
4
  * @package Head and Footer Scripts Inserter
5
  * @uthor Arthur Gareginyan
6
+ * @link https://www.arthurgareginyan.com
7
  * @copyright Copyright (c) 2016-2017 Arthur Gareginyan. All Rights Reserved.
8
  * @since 4.4
9
  */
inc/js/admin.js CHANGED
@@ -3,9 +3,9 @@
3
  *
4
  * @package Head and Footer Scripts Inserter
5
  * @uthor Arthur Gareginyan
6
- * @link http://www.arthurgareginyan.com
7
  * @copyright Copyright (c) 2016-2017 Arthur Gareginyan. All Rights Reserved.
8
- * @since 4.0
9
  */
10
 
11
 
@@ -40,10 +40,10 @@ jQuery(document).ready(function($) {
40
  }
41
 
42
  // Dynamic content
43
- $( ".include-tab-author" ).load( "http://mycyberuniverse.com/public-files/dynamic-content/page-for-include.html #include-tab-author" );
44
- $( ".include-tab-support" ).load( "http://mycyberuniverse.com/public-files/dynamic-content/page-for-include.html #include-tab-support" );
45
- $( ".include-tab-family" ).load( "http://mycyberuniverse.com/public-files/dynamic-content/page-for-include.html #include-tab-family" );
46
- $( ".additional-css" ).load( "http://mycyberuniverse.com/public-files/dynamic-content/styles.html" );
47
 
48
  // Add questions and answers into spoilers and color them in different colors
49
  $(".panel-group .panel").each(function(i) {
3
  *
4
  * @package Head and Footer Scripts Inserter
5
  * @uthor Arthur Gareginyan
6
+ * @link https://www.arthurgareginyan.com
7
  * @copyright Copyright (c) 2016-2017 Arthur Gareginyan. All Rights Reserved.
8
+ * @since 4.4.1
9
  */
10
 
11
 
40
  }
41
 
42
  // Dynamic content
43
+ $( ".include-tab-author" ).load( "https://mycyberuniverse.com/public-files/dynamic-content/page-for-include.html #include-tab-author" );
44
+ $( ".include-tab-support" ).load( "https://mycyberuniverse.com/public-files/dynamic-content/page-for-include.html #include-tab-support" );
45
+ $( ".include-tab-family" ).load( "https://mycyberuniverse.com/public-files/dynamic-content/page-for-include.html #include-tab-family" );
46
+ $( ".additional-css" ).load( "https://mycyberuniverse.com/public-files/dynamic-content/styles.html" );
47
 
48
  // Add questions and answers into spoilers and color them in different colors
49
  $(".panel-group .panel").each(function(i) {
inc/php/messages.php CHANGED
@@ -10,7 +10,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
10
  /**
11
  * Hello message - Bootstrap Modal
12
  *
13
- * @since 4.3
14
  */
15
  function HFScriptsIns_hello_message() {
16
 
@@ -25,7 +25,7 @@ function HFScriptsIns_hello_message() {
25
  <div class="modal-dialog">
26
  <div class="modal-content">
27
  <div class="modal-body">
28
- <img src="http://mycyberuniverse.com/public-files/images/Arthur.png">
29
  <button type="button" class="close" data-dismiss="modal">&times;</button>
30
  <p><?php _e( 'Hello. I\'m Arthur, the author of this plugin.', HFSINS_TEXT ); ?></p>
31
  <p><?php printf(
10
  /**
11
  * Hello message - Bootstrap Modal
12
  *
13
+ * @since 4.4.1
14
  */
15
  function HFScriptsIns_hello_message() {
16
 
25
  <div class="modal-dialog">
26
  <div class="modal-content">
27
  <div class="modal-body">
28
+ <img src="https://mycyberuniverse.com/public-files/images/Arthur.png">
29
  <button type="button" class="close" data-dismiss="modal">&times;</button>
30
  <p><?php _e( 'Hello. I\'m Arthur, the author of this plugin.', HFSINS_TEXT ); ?></p>
31
  <p><?php printf(
inc/php/page.php CHANGED
@@ -10,7 +10,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
10
  /**
11
  * Render Settings Page
12
  *
13
- * @since 4.4
14
  */
15
  function HFScriptsIns_render_submenu_page() {
16
 
@@ -33,7 +33,7 @@ function HFScriptsIns_render_submenu_page() {
33
  <span>
34
  <?php printf(
35
  __( 'by %s Arthur Gareginyan %s', $text ),
36
- '<a href="http://www.arthurgareginyan.com" target="_blank">',
37
  '</a>'
38
  );
39
  ?>
@@ -127,12 +127,15 @@ function HFScriptsIns_render_submenu_page() {
127
  <div class="answer-1"><?php _e( 'Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites.', $text ); ?></div>
128
 
129
  <div class="question-2"><?php _e( 'Can I use this plugin on my language?', $text ); ?></div>
130
- <div class="answer-2"><?php printf(
131
- __( '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 <code>languages</code> folder. Just send the PO file to me at the %s and I 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!', $text ),
132
- '<a href="mailto:arthurgareginyan@gmail.com?subject=New translation of the ' . $name . ' plugin">arthurgareginyan@gmail.com</a>'
133
- );
 
 
134
  ?><br><br>
135
- <?php _e( 'Maybe not all existed translations are up to date. You are welcome to contribute corrections!', $text ); ?></div>
 
136
 
137
  <div class="question-3"><?php _e( 'How does it work?', $text ); ?></div>
138
  <div class="answer-3"><?php _e( 'On the "Settings" tab, place your scripts in the field and click the "Save changes" button. Enjoy the result of applying your scripts. It\'s that simple!', $text ); ?></div>
@@ -161,7 +164,7 @@ function HFScriptsIns_render_submenu_page() {
161
  add_action( 'wp_head', 'my_custom_script' );</code></pre>
162
  <?php printf(
163
  __( 'To apply the PHP code on a website, I can recommend you to use another my plugin called %s.', $text ),
164
- '<a href="//wordpress.org/plugins/my-custom-functions/" target="_blank">My Custom Functions</a>'
165
  ); ?></div>
166
 
167
  <div class="question-8 question-red"><?php _e( 'It\'s not working. What could be wrong?', $text ); ?></div>
@@ -182,14 +185,14 @@ add_action( 'wp_head', 'my_custom_script' );</code></pre>
182
  <div class="question-11"><?php _e( 'Where to share any ideas or suggestions to make the plugin better?', $text ); ?></div>
183
  <div class="answer-11"><?php printf(
184
  __( 'Any suggestions are very welcome! Please send me an email to %s. Thank you!', $text ),
185
- '<a href="mailto:arthurgareginyan@gmail.com?subject=Suggestions about the ' . $name . '">arthurgareginyan@gmail.com</a>'
186
  );
187
  ?></div>
188
 
189
  <div class="question-12"><?php _e( 'I love this plugin! Can I help somehow?', $text ); ?></div>
190
  <div class="answer-12"><?php printf(
191
  __( 'Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate button, and thank you!', $text ),
192
- '<a href="http://www.arthurgareginyan.com/donate.html" target="_blank">',
193
  '</a>'
194
  );
195
  ?></div>
10
  /**
11
  * Render Settings Page
12
  *
13
+ * @since 4.4.1
14
  */
15
  function HFScriptsIns_render_submenu_page() {
16
 
33
  <span>
34
  <?php printf(
35
  __( 'by %s Arthur Gareginyan %s', $text ),
36
+ '<a href="https://www.arthurgareginyan.com" target="_blank">',
37
  '</a>'
38
  );
39
  ?>
127
  <div class="answer-1"><?php _e( 'Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites.', $text ); ?></div>
128
 
129
  <div class="question-2"><?php _e( 'Can I use this plugin on my language?', $text ); ?></div>
130
+ <div class="answer-2"><?php _e( 'Yes. This plugin is ready for translation and has already been translated into several languages.', $text ); ?><br><br>
131
+ <?php printf(
132
+ __( 'If you want to help translate this plugin then please visit the %s. You can also use the POT file, that is included and placed in the "languages" folder, in order to create a translation PO file. Just send the PO file to me at the %s and I will include this translation within the next plugin update.', $text ),
133
+ '<a href="https://translate.wordpress.org/projects/wp-plugins/' . $slug . '" target="_blank">translation page</a>',
134
+ '<a href="mailto:arthurgareginyan@gmail.com?subject=New translation of the ' . $name . ' plugin">arthurgareginyan@gmail.com</a>'
135
+ );
136
  ?><br><br>
137
+ <?php _e( 'Maybe not all existed translations are up to date. You are welcome to contribute corrections!', $text ); ?><br><br>
138
+ <?php _e( 'Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!', $text ); ?></div>
139
 
140
  <div class="question-3"><?php _e( 'How does it work?', $text ); ?></div>
141
  <div class="answer-3"><?php _e( 'On the "Settings" tab, place your scripts in the field and click the "Save changes" button. Enjoy the result of applying your scripts. It\'s that simple!', $text ); ?></div>
164
  add_action( 'wp_head', 'my_custom_script' );</code></pre>
165
  <?php printf(
166
  __( 'To apply the PHP code on a website, I can recommend you to use another my plugin called %s.', $text ),
167
+ '<a href="https://wordpress.org/plugins/my-custom-functions/" target="_blank">My Custom Functions</a>'
168
  ); ?></div>
169
 
170
  <div class="question-8 question-red"><?php _e( 'It\'s not working. What could be wrong?', $text ); ?></div>
185
  <div class="question-11"><?php _e( 'Where to share any ideas or suggestions to make the plugin better?', $text ); ?></div>
186
  <div class="answer-11"><?php printf(
187
  __( 'Any suggestions are very welcome! Please send me an email to %s. Thank you!', $text ),
188
+ '<a href="mailto:arthurgareginyan@gmail.com?subject=Suggestions about the ' . $name . ' plugin">arthurgareginyan@gmail.com</a>'
189
  );
190
  ?></div>
191
 
192
  <div class="question-12"><?php _e( 'I love this plugin! Can I help somehow?', $text ); ?></div>
193
  <div class="answer-12"><?php printf(
194
  __( 'Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate button, and thank you!', $text ),
195
+ '<a href="https://www.arthurgareginyan.com/donate.html" target="_blank">',
196
  '</a>'
197
  );
198
  ?></div>
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: 2017-06-16 03:34+0300\n"
6
- "PO-Revision-Date: 2017-06-16 03:34+0300\n"
7
  "Last-Translator: psouu <koko887@wp.pl>\n"
8
  "Language-Team: \n"
9
  "Language: pl\n"
@@ -75,11 +75,11 @@ msgstr "Wykorzystanie"
75
  msgid "F.A.Q."
76
  msgstr "FAQ"
77
 
78
- #: inc/php/page.php:51 inc/php/page.php:212
79
  msgid "Author"
80
  msgstr "Autor"
81
 
82
- #: inc/php/page.php:52 inc/php/page.php:221 inc/php/settings.php:28
83
  #: inc/php/settings.php:110
84
  msgid "Support"
85
  msgstr ""
@@ -152,69 +152,79 @@ msgstr ""
152
  msgid "Can I use this plugin on my language?"
153
  msgstr ""
154
 
155
- #: inc/php/page.php:131
156
- #, php-format
157
  msgid ""
158
  "Yes. This plugin is ready for translation and has already been translated "
159
- "into several languages. But If your language is not available then you can "
160
- "make one. The POT file is included and placed in the <code>languages</code> "
161
- "folder. Just send the PO file to me at the %s and I will include this "
162
- "translation within the next plugin update. Many of plugin users would be "
163
- "delighted if you share your translation with the community. Thanks for your "
164
- "contribution!"
165
  msgstr ""
166
 
167
- #: inc/php/page.php:135
 
 
 
 
 
 
 
 
 
 
168
  msgid ""
169
  "Maybe not all existed translations are up to date. You are welcome to "
170
  "contribute corrections!"
171
  msgstr ""
172
 
173
- #: inc/php/page.php:137
 
 
 
 
 
 
174
  msgid "How does it work?"
175
  msgstr ""
176
 
177
- #: inc/php/page.php:138
178
  msgid ""
179
  "On the \"Settings\" tab, place your scripts in the field and click the "
180
  "\"Save changes\" button. Enjoy the result of applying your scripts. It's "
181
  "that simple!"
182
  msgstr ""
183
 
184
- #: inc/php/page.php:140
185
  msgid "How much of scripts I can enter in the field?"
186
  msgstr ""
187
 
188
- #: inc/php/page.php:141
189
  msgid "I don't limit the number of characters."
190
  msgstr ""
191
 
192
- #: inc/php/page.php:143
193
  msgid "Does this plugin requires any modification of the theme?"
194
  msgstr ""
195
 
196
- #: inc/php/page.php:144
197
  msgid ""
198
  "Absolutely not. This plugin is configurable entirely from the plugin "
199
  "settings page."
200
  msgstr ""
201
 
202
- #: inc/php/page.php:146
203
  msgid "Does this require any knowledge of HTML or CSS?"
204
  msgstr ""
205
 
206
- #: inc/php/page.php:147
207
  msgid ""
208
  "This plugin can be configured with no knowledge of HTML or CSS, using an "
209
  "easy-to-use plugin settings page. But you need to know the HTML or CSS in "
210
  "order to add/remove/modify the HTML or CSS code by using this plugin."
211
  msgstr ""
212
 
213
- #: inc/php/page.php:149
214
  msgid "Can I add my script to a specific page of my website?"
215
  msgstr ""
216
 
217
- #: inc/php/page.php:150
218
  msgid ""
219
  "For now, this plugin does not have an option to apply the custom scripts "
220
  "only on specific pages. I plan to add this feature soon. But for now in "
@@ -223,18 +233,18 @@ msgid ""
223
  "need something like this:"
224
  msgstr ""
225
 
226
- #: inc/php/page.php:163
227
  #, php-format
228
  msgid ""
229
  "To apply the PHP code on a website, I can recommend you to use another my "
230
  "plugin called %s."
231
  msgstr ""
232
 
233
- #: inc/php/page.php:167
234
  msgid "It's not working. What could be wrong?"
235
  msgstr ""
236
 
237
- #: inc/php/page.php:168
238
  msgid ""
239
  "As with every plugin, it's possible that things don't work. The most common "
240
  "reason for this is a web browser's cache. Every web browser stores a cache "
@@ -243,7 +253,7 @@ msgid ""
243
  "browser's cache may solve the problem."
244
  msgstr ""
245
 
246
- #: inc/php/page.php:169
247
  msgid ""
248
  "It's impossible to tell what could be wrong exactly, but if you post a "
249
  "support request in the plugin's support forum on WordPress.org, I'd be happy "
@@ -251,13 +261,13 @@ msgid ""
251
  "possible, including a link to your website where the problem can be seen."
252
  msgstr ""
253
 
254
- #: inc/php/page.php:171
255
  msgid ""
256
  "The last WordPress update is preventing me from editing my website that is "
257
  "using this plugin. Why is this?"
258
  msgstr ""
259
 
260
- #: inc/php/page.php:172
261
  msgid ""
262
  "This plugin can not cause such problem. More likely, the problem are related "
263
  "to the settings of the website. It could just be a cache, so please try to "
@@ -266,41 +276,41 @@ msgid ""
266
  "please try to re-login to the website, this too can help."
267
  msgstr ""
268
 
269
- #: inc/php/page.php:174
270
  msgid "Where to report bug if found?"
271
  msgstr ""
272
 
273
- #: inc/php/page.php:176
274
  #, php-format
275
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
276
  msgstr ""
277
 
278
- #: inc/php/page.php:182
279
  msgid "Where to share any ideas or suggestions to make the plugin better?"
280
  msgstr ""
281
 
282
- #: inc/php/page.php:184
283
  #, php-format
284
  msgid ""
285
  "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
286
  msgstr ""
287
 
288
- #: inc/php/page.php:189
289
  msgid "I love this plugin! Can I help somehow?"
290
  msgstr ""
291
 
292
- #: inc/php/page.php:191
293
  #, php-format
294
  msgid ""
295
  "Yes, any financial contributions are welcome! Just visit %s my website %s, "
296
  "click on the donate button, and thank you!"
297
  msgstr ""
298
 
299
- #: inc/php/page.php:197
300
  msgid "My question wasn't answered here."
301
  msgstr ""
302
 
303
- #: inc/php/page.php:199
304
  #, php-format
305
  msgid ""
306
  "You can ask your question on the plugin support page %s. But please keep in "
@@ -415,15 +425,15 @@ msgid "Arthur Gareginyan"
415
  msgstr "Arthur Gareginyan"
416
 
417
  #. Author URI of the plugin/theme
418
- msgid "http://www.arthurgareginyan.com"
419
- msgstr "http://www.arthurgareginyan.com"
420
 
421
  #~ msgid ""
422
- #~ "by <a href=\"http://www.arthurgareginyan.com\" target=\"_blank\">Arthur "
423
  #~ "Gareginyan</a>"
424
  #~ msgstr ""
425
- #~ "wykonana przez <a href=\"http://www.arthurgareginyan.com\" target=\"_blank"
426
- #~ "\">Arthur Gareginyan</a>"
427
 
428
  #~ msgid ""
429
  #~ "To use, enter your custom scripts, then click \"Save changes\". It's that "
@@ -456,11 +466,11 @@ msgstr "http://www.arthurgareginyan.com"
456
  #~ msgstr "Wstawianie kodu do nagłówka i stopki"
457
 
458
  #~ msgid ""
459
- #~ "by <a href=\"http://www.arthurgareginyan.com\" target=\"_blank\">Arthur "
460
  #~ "\"Berserkr\" Gareginyan</a>"
461
  #~ msgstr ""
462
- #~ "wykonana przez <a href=\"http://www.arthurgareginyan.com\" target=\"_blank"
463
- #~ "\">Arthura \"Berserkra\" Gareginyana</a>"
464
 
465
  #~ msgid "Header Section"
466
  #~ msgstr "Sekcja: Nagłówek"
@@ -497,8 +507,8 @@ msgstr "http://www.arthurgareginyan.com"
497
  #~ msgstr "Arthur \"Berserkr\" Gareginyan"
498
 
499
  #~ msgid ""
500
- #~ "http://mycyberuniverse.com/my_programs/wp-plugin-header-and-footer-"
501
  #~ "scripts-inserter.html"
502
  #~ msgstr ""
503
- #~ "http://mycyberuniverse.com/my_programs/wp-plugin-header-and-footer-"
504
  #~ "scripts-inserter.html"
2
  msgstr ""
3
  "Project-Id-Version: Header and Footer Scripts Inserter\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-06-21 14:13+0300\n"
6
+ "PO-Revision-Date: 2017-06-21 14:13+0300\n"
7
  "Last-Translator: psouu <koko887@wp.pl>\n"
8
  "Language-Team: \n"
9
  "Language: pl\n"
75
  msgid "F.A.Q."
76
  msgstr "FAQ"
77
 
78
+ #: inc/php/page.php:51 inc/php/page.php:215
79
  msgid "Author"
80
  msgstr "Autor"
81
 
82
+ #: inc/php/page.php:52 inc/php/page.php:224 inc/php/settings.php:28
83
  #: inc/php/settings.php:110
84
  msgid "Support"
85
  msgstr ""
152
  msgid "Can I use this plugin on my language?"
153
  msgstr ""
154
 
155
+ #: inc/php/page.php:130
 
156
  msgid ""
157
  "Yes. This plugin is ready for translation and has already been translated "
158
+ "into several languages."
 
 
 
 
 
159
  msgstr ""
160
 
161
+ #: inc/php/page.php:132
162
+ #, php-format
163
+ msgid ""
164
+ "If you want to help translate this plugin then please visit the %s. You can "
165
+ "also use the POT file, that is included and placed in the \"languages\" "
166
+ "folder, in order to create a translation PO file. Just send the PO file to "
167
+ "me at the %s and I will include this translation within the next plugin "
168
+ "update."
169
+ msgstr ""
170
+
171
+ #: inc/php/page.php:137
172
  msgid ""
173
  "Maybe not all existed translations are up to date. You are welcome to "
174
  "contribute corrections!"
175
  msgstr ""
176
 
177
+ #: inc/php/page.php:138
178
+ msgid ""
179
+ "Many of plugin users would be delighted if you share your translation with "
180
+ "the community. Thanks for your contribution!"
181
+ msgstr ""
182
+
183
+ #: inc/php/page.php:140
184
  msgid "How does it work?"
185
  msgstr ""
186
 
187
+ #: inc/php/page.php:141
188
  msgid ""
189
  "On the \"Settings\" tab, place your scripts in the field and click the "
190
  "\"Save changes\" button. Enjoy the result of applying your scripts. It's "
191
  "that simple!"
192
  msgstr ""
193
 
194
+ #: inc/php/page.php:143
195
  msgid "How much of scripts I can enter in the field?"
196
  msgstr ""
197
 
198
+ #: inc/php/page.php:144
199
  msgid "I don't limit the number of characters."
200
  msgstr ""
201
 
202
+ #: inc/php/page.php:146
203
  msgid "Does this plugin requires any modification of the theme?"
204
  msgstr ""
205
 
206
+ #: inc/php/page.php:147
207
  msgid ""
208
  "Absolutely not. This plugin is configurable entirely from the plugin "
209
  "settings page."
210
  msgstr ""
211
 
212
+ #: inc/php/page.php:149
213
  msgid "Does this require any knowledge of HTML or CSS?"
214
  msgstr ""
215
 
216
+ #: inc/php/page.php:150
217
  msgid ""
218
  "This plugin can be configured with no knowledge of HTML or CSS, using an "
219
  "easy-to-use plugin settings page. But you need to know the HTML or CSS in "
220
  "order to add/remove/modify the HTML or CSS code by using this plugin."
221
  msgstr ""
222
 
223
+ #: inc/php/page.php:152
224
  msgid "Can I add my script to a specific page of my website?"
225
  msgstr ""
226
 
227
+ #: inc/php/page.php:153
228
  msgid ""
229
  "For now, this plugin does not have an option to apply the custom scripts "
230
  "only on specific pages. I plan to add this feature soon. But for now in "
233
  "need something like this:"
234
  msgstr ""
235
 
236
+ #: inc/php/page.php:166
237
  #, php-format
238
  msgid ""
239
  "To apply the PHP code on a website, I can recommend you to use another my "
240
  "plugin called %s."
241
  msgstr ""
242
 
243
+ #: inc/php/page.php:170
244
  msgid "It's not working. What could be wrong?"
245
  msgstr ""
246
 
247
+ #: inc/php/page.php:171
248
  msgid ""
249
  "As with every plugin, it's possible that things don't work. The most common "
250
  "reason for this is a web browser's cache. Every web browser stores a cache "
253
  "browser's cache may solve the problem."
254
  msgstr ""
255
 
256
+ #: inc/php/page.php:172
257
  msgid ""
258
  "It's impossible to tell what could be wrong exactly, but if you post a "
259
  "support request in the plugin's support forum on WordPress.org, I'd be happy "
261
  "possible, including a link to your website where the problem can be seen."
262
  msgstr ""
263
 
264
+ #: inc/php/page.php:174
265
  msgid ""
266
  "The last WordPress update is preventing me from editing my website that is "
267
  "using this plugin. Why is this?"
268
  msgstr ""
269
 
270
+ #: inc/php/page.php:175
271
  msgid ""
272
  "This plugin can not cause such problem. More likely, the problem are related "
273
  "to the settings of the website. It could just be a cache, so please try to "
276
  "please try to re-login to the website, this too can help."
277
  msgstr ""
278
 
279
+ #: inc/php/page.php:177
280
  msgid "Where to report bug if found?"
281
  msgstr ""
282
 
283
+ #: inc/php/page.php:179
284
  #, php-format
285
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
286
  msgstr ""
287
 
288
+ #: inc/php/page.php:185
289
  msgid "Where to share any ideas or suggestions to make the plugin better?"
290
  msgstr ""
291
 
292
+ #: inc/php/page.php:187
293
  #, php-format
294
  msgid ""
295
  "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
296
  msgstr ""
297
 
298
+ #: inc/php/page.php:192
299
  msgid "I love this plugin! Can I help somehow?"
300
  msgstr ""
301
 
302
+ #: inc/php/page.php:194
303
  #, php-format
304
  msgid ""
305
  "Yes, any financial contributions are welcome! Just visit %s my website %s, "
306
  "click on the donate button, and thank you!"
307
  msgstr ""
308
 
309
+ #: inc/php/page.php:200
310
  msgid "My question wasn't answered here."
311
  msgstr ""
312
 
313
+ #: inc/php/page.php:202
314
  #, php-format
315
  msgid ""
316
  "You can ask your question on the plugin support page %s. But please keep in "
425
  msgstr "Arthur Gareginyan"
426
 
427
  #. Author URI of the plugin/theme
428
+ msgid "https://www.arthurgareginyan.com"
429
+ msgstr "https://www.arthurgareginyan.com"
430
 
431
  #~ msgid ""
432
+ #~ "by <a href=\"https://www.arthurgareginyan.com\" target=\"_blank\">Arthur "
433
  #~ "Gareginyan</a>"
434
  #~ msgstr ""
435
+ #~ "wykonana przez <a href=\"https://www.arthurgareginyan.com\" target="
436
+ #~ "\"_blank\">Arthur Gareginyan</a>"
437
 
438
  #~ msgid ""
439
  #~ "To use, enter your custom scripts, then click \"Save changes\". It's that "
466
  #~ msgstr "Wstawianie kodu do nagłówka i stopki"
467
 
468
  #~ msgid ""
469
+ #~ "by <a href=\"https://www.arthurgareginyan.com\" target=\"_blank\">Arthur "
470
  #~ "\"Berserkr\" Gareginyan</a>"
471
  #~ msgstr ""
472
+ #~ "wykonana przez <a href=\"https://www.arthurgareginyan.com\" target="
473
+ #~ "\"_blank\">Arthura \"Berserkra\" Gareginyana</a>"
474
 
475
  #~ msgid "Header Section"
476
  #~ msgstr "Sekcja: Nagłówek"
507
  #~ msgstr "Arthur \"Berserkr\" Gareginyan"
508
 
509
  #~ msgid ""
510
+ #~ "https://mycyberuniverse.com/my_programs/wp-plugin-header-and-footer-"
511
  #~ "scripts-inserter.html"
512
  #~ msgstr ""
513
+ #~ "https://mycyberuniverse.com/my_programs/wp-plugin-header-and-footer-"
514
  #~ "scripts-inserter.html"
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: 2017-06-16 03:34+0300\n"
5
- "PO-Revision-Date: 2017-06-16 03:34+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ru\n"
@@ -71,11 +71,11 @@ msgstr "Применение"
71
  msgid "F.A.Q."
72
  msgstr "F.A.Q."
73
 
74
- #: inc/php/page.php:51 inc/php/page.php:212
75
  msgid "Author"
76
  msgstr "Автор"
77
 
78
- #: inc/php/page.php:52 inc/php/page.php:221 inc/php/settings.php:28
79
  #: inc/php/settings.php:110
80
  msgid "Support"
81
  msgstr "Поддержка"
@@ -152,48 +152,58 @@ msgstr ""
152
  msgid "Can I use this plugin on my language?"
153
  msgstr "Можно ли использовать этот плагин на моём языке?"
154
 
155
- #: inc/php/page.php:131
156
- #, php-format
157
  msgid ""
158
  "Yes. This plugin is ready for translation and has already been translated "
159
- "into several languages. But If your language is not available then you can "
160
- "make one. The POT file is included and placed in the <code>languages</code> "
161
- "folder. Just send the PO file to me at the %s and I will include this "
162
- "translation within the next plugin update. Many of plugin users would be "
163
- "delighted if you share your translation with the community. Thanks for your "
164
- "contribution!"
165
  msgstr ""
166
 
167
- #: inc/php/page.php:135
 
 
 
 
 
 
 
 
 
 
168
  msgid ""
169
  "Maybe not all existed translations are up to date. You are welcome to "
170
  "contribute corrections!"
171
  msgstr ""
172
 
173
- #: inc/php/page.php:137
 
 
 
 
 
 
174
  msgid "How does it work?"
175
  msgstr "Как оно работает?"
176
 
177
- #: inc/php/page.php:138
178
  msgid ""
179
  "On the \"Settings\" tab, place your scripts in the field and click the "
180
  "\"Save changes\" button. Enjoy the result of applying your scripts. It's "
181
  "that simple!"
182
  msgstr ""
183
 
184
- #: inc/php/page.php:140
185
  msgid "How much of scripts I can enter in the field?"
186
  msgstr ""
187
 
188
- #: inc/php/page.php:141
189
  msgid "I don't limit the number of characters."
190
  msgstr ""
191
 
192
- #: inc/php/page.php:143
193
  msgid "Does this plugin requires any modification of the theme?"
194
  msgstr "Этот плагин требует изменения темы?"
195
 
196
- #: inc/php/page.php:144
197
  msgid ""
198
  "Absolutely not. This plugin is configurable entirely from the plugin "
199
  "settings page."
@@ -201,11 +211,11 @@ msgstr ""
201
  "Абсолютно нет. Этот плагин настраивается полностью на странице настроек "
202
  "плагина."
203
 
204
- #: inc/php/page.php:146
205
  msgid "Does this require any knowledge of HTML or CSS?"
206
  msgstr "Требуются ли какие-либо знания HTML или CSS?"
207
 
208
- #: inc/php/page.php:147
209
  msgid ""
210
  "This plugin can be configured with no knowledge of HTML or CSS, using an "
211
  "easy-to-use plugin settings page. But you need to know the HTML or CSS in "
@@ -216,11 +226,11 @@ msgstr ""
216
  "для того, чтобы добавить/удалить/изменить код HTML или CSS, используя этот "
217
  "плагин."
218
 
219
- #: inc/php/page.php:149
220
  msgid "Can I add my script to a specific page of my website?"
221
  msgstr ""
222
 
223
- #: inc/php/page.php:150
224
  msgid ""
225
  "For now, this plugin does not have an option to apply the custom scripts "
226
  "only on specific pages. I plan to add this feature soon. But for now in "
@@ -229,18 +239,18 @@ msgid ""
229
  "need something like this:"
230
  msgstr ""
231
 
232
- #: inc/php/page.php:163
233
  #, php-format
234
  msgid ""
235
  "To apply the PHP code on a website, I can recommend you to use another my "
236
  "plugin called %s."
237
  msgstr ""
238
 
239
- #: inc/php/page.php:167
240
  msgid "It's not working. What could be wrong?"
241
  msgstr "Оно не работает. Что может быть не так?"
242
 
243
- #: inc/php/page.php:168
244
  msgid ""
245
  "As with every plugin, it's possible that things don't work. The most common "
246
  "reason for this is a web browser's cache. Every web browser stores a cache "
@@ -249,7 +259,7 @@ msgid ""
249
  "browser's cache may solve the problem."
250
  msgstr ""
251
 
252
- #: inc/php/page.php:169
253
  msgid ""
254
  "It's impossible to tell what could be wrong exactly, but if you post a "
255
  "support request in the plugin's support forum on WordPress.org, I'd be happy "
@@ -257,13 +267,13 @@ msgid ""
257
  "possible, including a link to your website where the problem can be seen."
258
  msgstr ""
259
 
260
- #: inc/php/page.php:171
261
  msgid ""
262
  "The last WordPress update is preventing me from editing my website that is "
263
  "using this plugin. Why is this?"
264
  msgstr ""
265
 
266
- #: inc/php/page.php:172
267
  msgid ""
268
  "This plugin can not cause such problem. More likely, the problem are related "
269
  "to the settings of the website. It could just be a cache, so please try to "
@@ -272,43 +282,43 @@ msgid ""
272
  "please try to re-login to the website, this too can help."
273
  msgstr ""
274
 
275
- #: inc/php/page.php:174
276
  msgid "Where to report bug if found?"
277
  msgstr "Где можно сообщить об ошибке?"
278
 
279
- #: inc/php/page.php:176
280
  #, php-format
281
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
282
  msgstr ""
283
  "Пожалуйста, посетите %s страницу плагина на GitHub %s и сообщите об ошибке."
284
 
285
- #: inc/php/page.php:182
286
  msgid "Where to share any ideas or suggestions to make the plugin better?"
287
  msgstr ""
288
  "Где можно поделиться идеями или предложениями, чтобы сделать плагин лучше?"
289
 
290
- #: inc/php/page.php:184
291
  #, php-format
292
  msgid ""
293
  "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
294
  msgstr ""
295
 
296
- #: inc/php/page.php:189
297
  msgid "I love this plugin! Can I help somehow?"
298
  msgstr "Мне нравится этот плагин! Могу Я чем-то помочь?"
299
 
300
- #: inc/php/page.php:191
301
  #, php-format
302
  msgid ""
303
  "Yes, any financial contributions are welcome! Just visit %s my website %s, "
304
  "click on the donate button, and thank you!"
305
  msgstr ""
306
 
307
- #: inc/php/page.php:197
308
  msgid "My question wasn't answered here."
309
  msgstr "Моего вопроса здесь нет."
310
 
311
- #: inc/php/page.php:199
312
  #, php-format
313
  msgid ""
314
  "You can ask your question on the plugin support page %s. But please keep in "
@@ -431,8 +441,8 @@ msgid "Arthur Gareginyan"
431
  msgstr "Артур Гарегинян"
432
 
433
  #. Author URI of the plugin/theme
434
- msgid "http://www.arthurgareginyan.com"
435
- msgstr "http://www.arthurgareginyan.com"
436
 
437
  #~ msgid "You can contact me by email %s"
438
  #~ msgstr "Вы можете связаться со мной по электронной почте %s"
@@ -453,10 +463,10 @@ msgstr "http://www.arthurgareginyan.com"
453
  #~ "используйте `&lt;style&gt;` тег. Пример:"
454
 
455
  #~ msgid ""
456
- #~ "by <a href=\"http://www.arthurgareginyan.com\" target=\"_blank\">Arthur "
457
  #~ "Gareginyan</a>"
458
  #~ msgstr ""
459
- #~ "от <a href=\"http://www.arthurgareginyan.com\" target=\"_blank\">Артур "
460
  #~ "Гарегинян</a>"
461
 
462
  #~ msgid "Using"
@@ -511,10 +521,10 @@ msgstr "http://www.arthurgareginyan.com"
511
  #~ "а я могу сделать её явью, так что давайте начнём!"
512
 
513
  #~ msgid ""
514
- #~ "by <a href=\"http://www.arthurgareginyan.com\" target=\"_blank\">Arthur "
515
  #~ "\"Berserkr\" Gareginyan</a>"
516
  #~ msgstr ""
517
- #~ "от <a href=“http://www.arthurgareginyan.com” target=“_blank”>Артур "
518
  #~ "“Berserkr” Гарегинян</a>"
519
 
520
  #~ msgid "Header Section"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Header and Footer Scripts Inserter\n"
4
+ "POT-Creation-Date: 2017-06-21 14:12+0300\n"
5
+ "PO-Revision-Date: 2017-06-21 14:12+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ru\n"
71
  msgid "F.A.Q."
72
  msgstr "F.A.Q."
73
 
74
+ #: inc/php/page.php:51 inc/php/page.php:215
75
  msgid "Author"
76
  msgstr "Автор"
77
 
78
+ #: inc/php/page.php:52 inc/php/page.php:224 inc/php/settings.php:28
79
  #: inc/php/settings.php:110
80
  msgid "Support"
81
  msgstr "Поддержка"
152
  msgid "Can I use this plugin on my language?"
153
  msgstr "Можно ли использовать этот плагин на моём языке?"
154
 
155
+ #: inc/php/page.php:130
 
156
  msgid ""
157
  "Yes. This plugin is ready for translation and has already been translated "
158
+ "into several languages."
 
 
 
 
 
159
  msgstr ""
160
 
161
+ #: inc/php/page.php:132
162
+ #, php-format
163
+ msgid ""
164
+ "If you want to help translate this plugin then please visit the %s. You can "
165
+ "also use the POT file, that is included and placed in the \"languages\" "
166
+ "folder, in order to create a translation PO file. Just send the PO file to "
167
+ "me at the %s and I will include this translation within the next plugin "
168
+ "update."
169
+ msgstr ""
170
+
171
+ #: inc/php/page.php:137
172
  msgid ""
173
  "Maybe not all existed translations are up to date. You are welcome to "
174
  "contribute corrections!"
175
  msgstr ""
176
 
177
+ #: inc/php/page.php:138
178
+ msgid ""
179
+ "Many of plugin users would be delighted if you share your translation with "
180
+ "the community. Thanks for your contribution!"
181
+ msgstr ""
182
+
183
+ #: inc/php/page.php:140
184
  msgid "How does it work?"
185
  msgstr "Как оно работает?"
186
 
187
+ #: inc/php/page.php:141
188
  msgid ""
189
  "On the \"Settings\" tab, place your scripts in the field and click the "
190
  "\"Save changes\" button. Enjoy the result of applying your scripts. It's "
191
  "that simple!"
192
  msgstr ""
193
 
194
+ #: inc/php/page.php:143
195
  msgid "How much of scripts I can enter in the field?"
196
  msgstr ""
197
 
198
+ #: inc/php/page.php:144
199
  msgid "I don't limit the number of characters."
200
  msgstr ""
201
 
202
+ #: inc/php/page.php:146
203
  msgid "Does this plugin requires any modification of the theme?"
204
  msgstr "Этот плагин требует изменения темы?"
205
 
206
+ #: inc/php/page.php:147
207
  msgid ""
208
  "Absolutely not. This plugin is configurable entirely from the plugin "
209
  "settings page."
211
  "Абсолютно нет. Этот плагин настраивается полностью на странице настроек "
212
  "плагина."
213
 
214
+ #: inc/php/page.php:149
215
  msgid "Does this require any knowledge of HTML or CSS?"
216
  msgstr "Требуются ли какие-либо знания HTML или CSS?"
217
 
218
+ #: inc/php/page.php:150
219
  msgid ""
220
  "This plugin can be configured with no knowledge of HTML or CSS, using an "
221
  "easy-to-use plugin settings page. But you need to know the HTML or CSS in "
226
  "для того, чтобы добавить/удалить/изменить код HTML или CSS, используя этот "
227
  "плагин."
228
 
229
+ #: inc/php/page.php:152
230
  msgid "Can I add my script to a specific page of my website?"
231
  msgstr ""
232
 
233
+ #: inc/php/page.php:153
234
  msgid ""
235
  "For now, this plugin does not have an option to apply the custom scripts "
236
  "only on specific pages. I plan to add this feature soon. But for now in "
239
  "need something like this:"
240
  msgstr ""
241
 
242
+ #: inc/php/page.php:166
243
  #, php-format
244
  msgid ""
245
  "To apply the PHP code on a website, I can recommend you to use another my "
246
  "plugin called %s."
247
  msgstr ""
248
 
249
+ #: inc/php/page.php:170
250
  msgid "It's not working. What could be wrong?"
251
  msgstr "Оно не работает. Что может быть не так?"
252
 
253
+ #: inc/php/page.php:171
254
  msgid ""
255
  "As with every plugin, it's possible that things don't work. The most common "
256
  "reason for this is a web browser's cache. Every web browser stores a cache "
259
  "browser's cache may solve the problem."
260
  msgstr ""
261
 
262
+ #: inc/php/page.php:172
263
  msgid ""
264
  "It's impossible to tell what could be wrong exactly, but if you post a "
265
  "support request in the plugin's support forum on WordPress.org, I'd be happy "
267
  "possible, including a link to your website where the problem can be seen."
268
  msgstr ""
269
 
270
+ #: inc/php/page.php:174
271
  msgid ""
272
  "The last WordPress update is preventing me from editing my website that is "
273
  "using this plugin. Why is this?"
274
  msgstr ""
275
 
276
+ #: inc/php/page.php:175
277
  msgid ""
278
  "This plugin can not cause such problem. More likely, the problem are related "
279
  "to the settings of the website. It could just be a cache, so please try to "
282
  "please try to re-login to the website, this too can help."
283
  msgstr ""
284
 
285
+ #: inc/php/page.php:177
286
  msgid "Where to report bug if found?"
287
  msgstr "Где можно сообщить об ошибке?"
288
 
289
+ #: inc/php/page.php:179
290
  #, php-format
291
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
292
  msgstr ""
293
  "Пожалуйста, посетите %s страницу плагина на GitHub %s и сообщите об ошибке."
294
 
295
+ #: inc/php/page.php:185
296
  msgid "Where to share any ideas or suggestions to make the plugin better?"
297
  msgstr ""
298
  "Где можно поделиться идеями или предложениями, чтобы сделать плагин лучше?"
299
 
300
+ #: inc/php/page.php:187
301
  #, php-format
302
  msgid ""
303
  "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
304
  msgstr ""
305
 
306
+ #: inc/php/page.php:192
307
  msgid "I love this plugin! Can I help somehow?"
308
  msgstr "Мне нравится этот плагин! Могу Я чем-то помочь?"
309
 
310
+ #: inc/php/page.php:194
311
  #, php-format
312
  msgid ""
313
  "Yes, any financial contributions are welcome! Just visit %s my website %s, "
314
  "click on the donate button, and thank you!"
315
  msgstr ""
316
 
317
+ #: inc/php/page.php:200
318
  msgid "My question wasn't answered here."
319
  msgstr "Моего вопроса здесь нет."
320
 
321
+ #: inc/php/page.php:202
322
  #, php-format
323
  msgid ""
324
  "You can ask your question on the plugin support page %s. But please keep in "
441
  msgstr "Артур Гарегинян"
442
 
443
  #. Author URI of the plugin/theme
444
+ msgid "https://www.arthurgareginyan.com"
445
+ msgstr "https://www.arthurgareginyan.com"
446
 
447
  #~ msgid "You can contact me by email %s"
448
  #~ msgstr "Вы можете связаться со мной по электронной почте %s"
463
  #~ "используйте `&lt;style&gt;` тег. Пример:"
464
 
465
  #~ msgid ""
466
+ #~ "by <a href=\"https://www.arthurgareginyan.com\" target=\"_blank\">Arthur "
467
  #~ "Gareginyan</a>"
468
  #~ msgstr ""
469
+ #~ "от <a href=\"https://www.arthurgareginyan.com\" target=\"_blank\">Артур "
470
  #~ "Гарегинян</a>"
471
 
472
  #~ msgid "Using"
521
  #~ "а я могу сделать её явью, так что давайте начнём!"
522
 
523
  #~ msgid ""
524
+ #~ "by <a href=\"https://www.arthurgareginyan.com\" target=\"_blank\">Arthur "
525
  #~ "\"Berserkr\" Gareginyan</a>"
526
  #~ msgstr ""
527
+ #~ "от <a href=“https://www.arthurgareginyan.com” target=“_blank”>Артур "
528
  #~ "“Berserkr” Гарегинян</a>"
529
 
530
  #~ msgid "Header Section"
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: 2017-06-16 03:33+0300\n"
7
  "PO-Revision-Date: 2016-01-30 11:39+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
@@ -68,11 +68,11 @@ msgstr ""
68
  msgid "F.A.Q."
69
  msgstr ""
70
 
71
- #: inc/php/page.php:51 inc/php/page.php:212
72
  msgid "Author"
73
  msgstr ""
74
 
75
- #: inc/php/page.php:52 inc/php/page.php:221 inc/php/settings.php:28 inc/php/settings.php:110
76
  msgid "Support"
77
  msgstr ""
78
 
@@ -138,125 +138,132 @@ msgstr ""
138
  msgid "Can I use this plugin on my language?"
139
  msgstr ""
140
 
141
- #: inc/php/page.php:131
 
 
 
 
142
  #, php-format
143
  msgid ""
144
- "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 "
145
- "the <code>languages</code> folder. Just send the PO file to me at the %s and I will include this translation within the next plugin update. Many of plugin users would be delighted if you share your "
146
- "translation with the community. Thanks for your contribution!"
147
  msgstr ""
148
 
149
- #: inc/php/page.php:135
150
  msgid "Maybe not all existed translations are up to date. You are welcome to contribute corrections!"
151
  msgstr ""
152
 
153
- #: inc/php/page.php:137
 
 
 
 
154
  msgid "How does it work?"
155
  msgstr ""
156
 
157
- #: inc/php/page.php:138
158
  msgid "On the \"Settings\" tab, place your scripts in the field and click the \"Save changes\" button. Enjoy the result of applying your scripts. It's that simple!"
159
  msgstr ""
160
 
161
- #: inc/php/page.php:140
162
  msgid "How much of scripts I can enter in the field?"
163
  msgstr ""
164
 
165
- #: inc/php/page.php:141
166
  msgid "I don't limit the number of characters."
167
  msgstr ""
168
 
169
- #: inc/php/page.php:143
170
  msgid "Does this plugin requires any modification of the theme?"
171
  msgstr ""
172
 
173
- #: inc/php/page.php:144
174
  msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
175
  msgstr ""
176
 
177
- #: inc/php/page.php:146
178
  msgid "Does this require any knowledge of HTML or CSS?"
179
  msgstr ""
180
 
181
- #: inc/php/page.php:147
182
  msgid ""
183
  "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 "
184
  "using this plugin."
185
  msgstr ""
186
 
187
- #: inc/php/page.php:149
188
  msgid "Can I add my script to a specific page of my website?"
189
  msgstr ""
190
 
191
- #: inc/php/page.php:150
192
  msgid ""
193
  "For now, this plugin does not have an option to apply the custom scripts only on specific pages. I plan to add this feature soon. But for now in order to apply your script only on specific pages of "
194
  "your website, you need to wrap your script in a PHP code that will determine the page you want. You need something like this:"
195
  msgstr ""
196
 
197
- #: inc/php/page.php:163
198
  #, php-format
199
  msgid "To apply the PHP code on a website, I can recommend you to use another my plugin called %s."
200
  msgstr ""
201
 
202
- #: inc/php/page.php:167
203
  msgid "It's not working. What could be wrong?"
204
  msgstr ""
205
 
206
- #: inc/php/page.php:168
207
  msgid ""
208
  "As with every plugin, it's possible that things don't work. The most common reason for this is a web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and "
209
  "etc.) to reduce bandwidth usage and server load. This is called the browser's cache.​ Clearing your browser's cache may solve the problem."
210
  msgstr ""
211
 
212
- #: inc/php/page.php:169
213
  msgid ""
214
  "It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's support forum on WordPress.org, I'd be happy to give it a look and try to help out. Please "
215
  "include as much information as possible, including a link to your website where the problem can be seen."
216
  msgstr ""
217
 
218
- #: inc/php/page.php:171
219
  msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
220
  msgstr ""
221
 
222
- #: inc/php/page.php:172
223
  msgid ""
224
  "This plugin can not cause such problem. More likely, the problem are related to the settings of the website. It could just be a cache, so please try to clear your website's cache (may be you using a "
225
  "caching plugin, or some web service such as the CloudFlare) and then the cache of your web browser. Also please try to re-login to the website, this too can help."
226
  msgstr ""
227
 
228
- #: inc/php/page.php:174
229
  msgid "Where to report bug if found?"
230
  msgstr ""
231
 
232
- #: inc/php/page.php:176
233
  #, php-format
234
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
235
  msgstr ""
236
 
237
- #: inc/php/page.php:182
238
  msgid "Where to share any ideas or suggestions to make the plugin better?"
239
  msgstr ""
240
 
241
- #: inc/php/page.php:184
242
  #, php-format
243
  msgid "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
244
  msgstr ""
245
 
246
- #: inc/php/page.php:189
247
  msgid "I love this plugin! Can I help somehow?"
248
  msgstr ""
249
 
250
- #: inc/php/page.php:191
251
  #, php-format
252
  msgid "Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate button, and thank you!"
253
  msgstr ""
254
 
255
- #: inc/php/page.php:197
256
  msgid "My question wasn't answered here."
257
  msgstr ""
258
 
259
- #: inc/php/page.php:199
260
  #, php-format
261
  msgid "You can ask your question on the plugin support page %s. But please keep in mind that this plugin is free, and there is no a special support team, so I have no way to answer everyone."
262
  msgstr ""
@@ -342,5 +349,5 @@ msgid "Arthur Gareginyan"
342
  msgstr ""
343
 
344
  #. Author URI of the plugin/theme
345
- msgid "http://www.arthurgareginyan.com"
346
  msgstr ""
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: Header and Footer Scripts Inserter\n"
6
+ "POT-Creation-Date: 2017-06-21 14:12+0300\n"
7
  "PO-Revision-Date: 2016-01-30 11:39+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
68
  msgid "F.A.Q."
69
  msgstr ""
70
 
71
+ #: inc/php/page.php:51 inc/php/page.php:215
72
  msgid "Author"
73
  msgstr ""
74
 
75
+ #: inc/php/page.php:52 inc/php/page.php:224 inc/php/settings.php:28 inc/php/settings.php:110
76
  msgid "Support"
77
  msgstr ""
78
 
138
  msgid "Can I use this plugin on my language?"
139
  msgstr ""
140
 
141
+ #: inc/php/page.php:130
142
+ msgid "Yes. This plugin is ready for translation and has already been translated into several languages."
143
+ msgstr ""
144
+
145
+ #: inc/php/page.php:132
146
  #, php-format
147
  msgid ""
148
+ "If you want to help translate this plugin then please visit the %s. You can also use the POT file, that is included and placed in the \"languages\" folder, in order to create a translation PO file. "
149
+ "Just send the PO file to me at the %s and I will include this translation within the next plugin update."
 
150
  msgstr ""
151
 
152
+ #: inc/php/page.php:137
153
  msgid "Maybe not all existed translations are up to date. You are welcome to contribute corrections!"
154
  msgstr ""
155
 
156
+ #: inc/php/page.php:138
157
+ msgid "Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!"
158
+ msgstr ""
159
+
160
+ #: inc/php/page.php:140
161
  msgid "How does it work?"
162
  msgstr ""
163
 
164
+ #: inc/php/page.php:141
165
  msgid "On the \"Settings\" tab, place your scripts in the field and click the \"Save changes\" button. Enjoy the result of applying your scripts. It's that simple!"
166
  msgstr ""
167
 
168
+ #: inc/php/page.php:143
169
  msgid "How much of scripts I can enter in the field?"
170
  msgstr ""
171
 
172
+ #: inc/php/page.php:144
173
  msgid "I don't limit the number of characters."
174
  msgstr ""
175
 
176
+ #: inc/php/page.php:146
177
  msgid "Does this plugin requires any modification of the theme?"
178
  msgstr ""
179
 
180
+ #: inc/php/page.php:147
181
  msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
182
  msgstr ""
183
 
184
+ #: inc/php/page.php:149
185
  msgid "Does this require any knowledge of HTML or CSS?"
186
  msgstr ""
187
 
188
+ #: inc/php/page.php:150
189
  msgid ""
190
  "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 "
191
  "using this plugin."
192
  msgstr ""
193
 
194
+ #: inc/php/page.php:152
195
  msgid "Can I add my script to a specific page of my website?"
196
  msgstr ""
197
 
198
+ #: inc/php/page.php:153
199
  msgid ""
200
  "For now, this plugin does not have an option to apply the custom scripts only on specific pages. I plan to add this feature soon. But for now in order to apply your script only on specific pages of "
201
  "your website, you need to wrap your 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:166
205
  #, php-format
206
  msgid "To apply the PHP code on a website, I can recommend you to use another my plugin called %s."
207
  msgstr ""
208
 
209
+ #: inc/php/page.php:170
210
  msgid "It's not working. What could be wrong?"
211
  msgstr ""
212
 
213
+ #: inc/php/page.php:171
214
  msgid ""
215
  "As with every plugin, it's possible that things don't work. The most common reason for this is a web browser's cache. Every web browser stores a cache of the websites you visit (pages, images, and "
216
  "etc.) to reduce bandwidth usage and server load. This is called the browser's cache.​ Clearing your browser's cache may solve the problem."
217
  msgstr ""
218
 
219
+ #: inc/php/page.php:172
220
  msgid ""
221
  "It's impossible to tell what could be wrong exactly, but if you post a support request in the plugin's support forum on WordPress.org, I'd be happy to give it a look and try to help out. Please "
222
  "include as much information as possible, including a link to your website where the problem can be seen."
223
  msgstr ""
224
 
225
+ #: inc/php/page.php:174
226
  msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
227
  msgstr ""
228
 
229
+ #: inc/php/page.php:175
230
  msgid ""
231
  "This plugin can not cause such problem. More likely, the problem are related to the settings of the website. It could just be a cache, so please try to clear your website's cache (may be you using a "
232
  "caching plugin, or some web service such as the CloudFlare) and then the cache of your web browser. Also please try to re-login to the website, this too can help."
233
  msgstr ""
234
 
235
+ #: inc/php/page.php:177
236
  msgid "Where to report bug if found?"
237
  msgstr ""
238
 
239
+ #: inc/php/page.php:179
240
  #, php-format
241
  msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
242
  msgstr ""
243
 
244
+ #: inc/php/page.php:185
245
  msgid "Where to share any ideas or suggestions to make the plugin better?"
246
  msgstr ""
247
 
248
+ #: inc/php/page.php:187
249
  #, php-format
250
  msgid "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
251
  msgstr ""
252
 
253
+ #: inc/php/page.php:192
254
  msgid "I love this plugin! Can I help somehow?"
255
  msgstr ""
256
 
257
+ #: inc/php/page.php:194
258
  #, php-format
259
  msgid "Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate button, and thank you!"
260
  msgstr ""
261
 
262
+ #: inc/php/page.php:200
263
  msgid "My question wasn't answered here."
264
  msgstr ""
265
 
266
+ #: inc/php/page.php:202
267
  #, php-format
268
  msgid "You can ask your question on the plugin support page %s. But please keep in mind that this plugin is free, and there is no a special support team, so I have no way to answer everyone."
269
  msgstr ""
349
  msgstr ""
350
 
351
  #. Author URI of the plugin/theme
352
+ msgid "https://www.arthurgareginyan.com"
353
  msgstr ""
readme.txt CHANGED
@@ -4,15 +4,16 @@ 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.8
7
- Stable tag: 4.4
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
11
  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.
12
 
13
 
14
- == Description ==
15
- An easy to use, with intuitive interface WordPress plugin that gives you the ability to easily insert custom scripts (HTML, JavaScript, and CSS) in the head or/and footer section of your website.
 
16
 
17
  No need anymore to editing a files of your theme or plugins in order to add custom scripts (HTML with JavaScript, CSS and else). You can add they on the plugin settings page. Just add your scripts in the field on the plugin settings 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. It's really useful in case of any theme update, because your scripts would never be lost! Your scripts will keep on working, no matter how many times you upgrade or switch your theme and plugins.
18
 
@@ -20,7 +21,7 @@ Third-party services like Google Webmaster Tools, Alexa, Pinterest and Google+ r
20
 
21
  If you want more options then tell me and I will be happy to add it.
22
 
23
- = Features =
24
 
25
  * Lightweight and fast
26
  * Secure code with using clear coding standards
@@ -36,7 +37,7 @@ If you want more options then tell me and I will be happy to add it.
36
  * Inserts scripts in beginning or/and end of footer
37
  * And much, much more!
38
 
39
- = Translation =
40
 
41
  This plugin is ready for translation and has already been translated into several languages.
42
 
@@ -44,26 +45,25 @@ This plugin is ready for translation and has already been translated into severa
44
  * Russian
45
  * Polish
46
 
47
- Maybe not all existed translations are up to date. You are welcome to contribute corrections!
48
-
49
  If you want to help translate this plugin then please visit the [translation page](https://translate.wordpress.org/projects/wp-plugins/header-and-footer-scripts-inserter).
50
 
51
- = Supported =
52
 
53
  * HTML
54
  * JavaScript (in HTML tag)
55
  * CSS (in HTML tag)
56
 
57
- >**Contribution**
58
- >
59
- >Developing plugins is long and tedious work. If you benefit or enjoy this plugin please take the time to:
60
- >
61
- >* [Donate](http://www.arthurgareginyan.com/donate.html) to support ongoing development. Your contribution would be greatly appreciated.
62
- >* [Rate and Review](https://wordpress.org/support/view/plugin-reviews/header-and-footer-scripts-inserter?rate=5#postform) this plugin.
63
- >* [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.
64
 
 
 
 
 
 
 
65
 
66
- == Installation ==
67
  Install "Head and Footer Scripts Inserter" just as you would any other WordPress Plugin.
68
 
69
  Automatically via WordPress Admin Panel:
@@ -86,7 +86,8 @@ After installation and activation, the "`Head and Footer Scripts Inserter`" men
86
  [More help installing plugins](http://codex.wordpress.org/Managing_Plugins#Installing_Plugins "WordPress Codex: Installing Plugins")
87
 
88
 
89
- == Frequently Asked Questions ==
 
90
  = Q. Will this plugin work on my WordPress.COM website? =
91
  A. Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites.
92
 
@@ -137,17 +138,21 @@ A. Please visit the [Dedicated Plugin Page on GitHub](https://github.com/ArthurG
137
  A. Any suggestions are very welcome! Please send me an email to [arthurgareginyan@gmail.com](mailto:arthurgareginyan@gmail.com). Thank you!
138
 
139
  = Q. I love this plugin! Can I help somehow? =
140
- A. Yes, any financial contributions are welcome! Just visit [my website](http://www.arthurgareginyan.com/donate.html), click on the donate button, and thank you!
 
141
 
 
142
 
143
- == Screenshots ==
144
  1. Plugin page.
145
  2. Plugin page with Google Tag Manager code added.
146
  3. Plugin page with Google Analytics tracking code added.
 
147
 
148
  == Other Notes ==
 
 
149
 
150
- "Head and Footer Scripts Inserter" is one of the personal software projects of [Arthur Gareginyan](http://www.arthurgareginyan.com). Earlier the project was called "Header and Footer Scripts Inserter".
151
 
152
  **License**
153
 
@@ -156,19 +161,23 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
156
 
157
  **Credits**
158
 
159
- * The icon of plugin is a copyrighted image created by [Arthur Gareginyan](http://www.arthurgareginyan.com). (C) All rights reserved.
160
- * The banner of plugin is a copyrighted image created by [Arthur Gareginyan](http://www.arthurgareginyan.com). (C) All rights reserved.
161
  * [CodeMirror](https://codemirror.net/) is an open-source project shared under the [MIT license](https://codemirror.net/LICENSE).
162
  * [Bootstrap](http://getbootstrap.com) by Twitter, Inc. released under the [MIT license](https://github.com/twbs/bootstrap/blob/master/LICENSE).
163
 
164
  **Links**
165
 
166
- * [Developer Website](http://www.arthurgareginyan.com)
167
  * [Dedicated Plugin Page on GitHub](https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter)
168
 
169
 
170
  == Changelog ==
171
 
 
 
 
 
172
  = 4.4 =
173
  * On the plugin settings page, text of buttons are corrected.
174
  * On the plugin settings page, the information about the plugin version number moved to header section.
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.8
7
+ Stable tag: 4.4.1
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
11
  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.
12
 
13
 
14
+ == Description ==
15
+
16
+ An easy to use, with intuitive interface, WordPress plugin that gives you the ability to easily insert custom scripts (HTML, JavaScript, and CSS) in the head or/and footer section of your website.
17
 
18
  No need anymore to editing a files of your theme or plugins in order to add custom scripts (HTML with JavaScript, CSS and else). You can add they on the plugin settings page. Just add your scripts in the field on the plugin settings 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. It's really useful in case of any theme update, because your scripts would never be lost! Your scripts will keep on working, no matter how many times you upgrade or switch your theme and plugins.
19
 
21
 
22
  If you want more options then tell me and I will be happy to add it.
23
 
24
+ **Features**
25
 
26
  * Lightweight and fast
27
  * Secure code with using clear coding standards
37
  * Inserts scripts in beginning or/and end of footer
38
  * And much, much more!
39
 
40
+ **Translation**
41
 
42
  This plugin is ready for translation and has already been translated into several languages.
43
 
45
  * Russian
46
  * Polish
47
 
 
 
48
  If you want to help translate this plugin then please visit the [translation page](https://translate.wordpress.org/projects/wp-plugins/header-and-footer-scripts-inserter).
49
 
50
+ **Supported**
51
 
52
  * HTML
53
  * JavaScript (in HTML tag)
54
  * CSS (in HTML tag)
55
 
56
+ **Contribution**
57
+
58
+ Developing plugins is long and tedious work. If you benefit or enjoy this plugin please take the time to:
 
 
 
 
59
 
60
+ * [Donate](https://www.arthurgareginyan.com/donate.html) to support ongoing development. Your contribution would be greatly appreciated.
61
+ * [Rate and Review](https://wordpress.org/support/view/plugin-reviews/header-and-footer-scripts-inserter?rate=5#postform) this plugin.
62
+ * [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.
63
+
64
+
65
+ == Installation ==
66
 
 
67
  Install "Head and Footer Scripts Inserter" just as you would any other WordPress Plugin.
68
 
69
  Automatically via WordPress Admin Panel:
86
  [More help installing plugins](http://codex.wordpress.org/Managing_Plugins#Installing_Plugins "WordPress Codex: Installing Plugins")
87
 
88
 
89
+ == Frequently Asked Questions ==
90
+
91
  = Q. Will this plugin work on my WordPress.COM website? =
92
  A. Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites.
93
 
138
  A. Any suggestions are very welcome! Please send me an email to [arthurgareginyan@gmail.com](mailto:arthurgareginyan@gmail.com). Thank you!
139
 
140
  = Q. I love this plugin! Can I help somehow? =
141
+ A. Yes, any financial contributions are welcome! Just visit [my website](https://www.arthurgareginyan.com/donate.html), click on the donate button, and thank you!
142
+
143
 
144
+ == Screenshots ==
145
 
 
146
  1. Plugin page.
147
  2. Plugin page with Google Tag Manager code added.
148
  3. Plugin page with Google Analytics tracking code added.
149
+
150
 
151
  == Other Notes ==
152
+
153
+ ****
154
 
155
+ "Head and Footer Scripts Inserter" is one of the personal software projects of [Arthur Gareginyan](https://www.arthurgareginyan.com). Earlier the project was called "Header and Footer Scripts Inserter".
156
 
157
  **License**
158
 
161
 
162
  **Credits**
163
 
164
+ * The icon of plugin is a copyrighted image created by [Arthur Gareginyan](https://www.arthurgareginyan.com). (C) All rights reserved.
165
+ * The banner of plugin is a copyrighted image created by [Arthur Gareginyan](https://www.arthurgareginyan.com). (C) All rights reserved.
166
  * [CodeMirror](https://codemirror.net/) is an open-source project shared under the [MIT license](https://codemirror.net/LICENSE).
167
  * [Bootstrap](http://getbootstrap.com) by Twitter, Inc. released under the [MIT license](https://github.com/twbs/bootstrap/blob/master/LICENSE).
168
 
169
  **Links**
170
 
171
+ * [Developer Website](https://www.arthurgareginyan.com)
172
  * [Dedicated Plugin Page on GitHub](https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter)
173
 
174
 
175
  == Changelog ==
176
 
177
+ = 4.4.1 =
178
+ * The HTTPS mixed content issue fixed by changing all links to HTTPS.
179
+ * Content of the "FAQ" section updated.
180
+
181
  = 4.4 =
182
  * On the plugin settings page, text of buttons are corrected.
183
  * On the plugin settings page, the information about the plugin version number moved to header section.