Head and Footer Scripts Inserter - Version 4.15

Version Description

  • Texts updated.
  • The year in the copyright text is updated.
  • The sidebar items are rearranged.
  • Translation files updated.
Download this release

Release Info

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

Code changes from version 4.14 to 4.15

header-and-footer-scripts-inserter.php CHANGED
@@ -5,12 +5,12 @@
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.14
9
  * License: GPL3
10
  * Text Domain: header-and-footer-scripts-inserter
11
  * Domain Path: /languages/
12
  *
13
- * Copyright 2016-2017 Space X-Chimp Studio ( website : https://www.spacexchimp.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
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.15
9
  * License: GPL3
10
  * Text Domain: header-and-footer-scripts-inserter
11
  * Domain Path: /languages/
12
  *
13
+ * Copyright 2016-2018 Space X-Chimp ( website : https://www.spacexchimp.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
@@ -4,7 +4,7 @@
4
  * @package Head and Footer Scripts Inserter
5
  * @author Arthur Gareginyan
6
  * @link https://www.spacexchimp.com
7
- * @copyright Copyright (c) 2016-2017 Space X-Chimp Studio. All Rights Reserved.
8
  */
9
 
10
 
4
  * @package Head and Footer Scripts Inserter
5
  * @author Arthur Gareginyan
6
  * @link https://www.spacexchimp.com
7
+ * @copyright Copyright (c) 2016-2018 Space X-Chimp. All Rights Reserved.
8
  */
9
 
10
 
inc/img/avatar.png DELETED
Binary file
inc/img/spacexchimp-logo.png ADDED
Binary file
inc/js/admin.js CHANGED
@@ -4,7 +4,7 @@
4
  * @package Head and Footer Scripts Inserter
5
  * @author Arthur Gareginyan
6
  * @link https://www.spacexchimp.com
7
- * @copyright Copyright (c) 2016-2017 Space X-Chimp Studio. All Rights Reserved.
8
  */
9
 
10
 
4
  * @package Head and Footer Scripts Inserter
5
  * @author Arthur Gareginyan
6
  * @link https://www.spacexchimp.com
7
+ * @copyright Copyright (c) 2016-2018 Space X-Chimp. All Rights Reserved.
8
  */
9
 
10
 
inc/php/core.php CHANGED
@@ -82,7 +82,7 @@ function spacexchimp_p006_admin_footer_text() {
82
  // Filter footer text
83
  function spacexchimp_p006_new_admin_footer_text() {
84
  $year = date('Y');
85
- return "Copyright &copy; " . $year . " <a href='https://www.spacexchimp.com' target='_blank'>Space X-Chimp</a> Studio | Click <a href='https://www.spacexchimp.com/store.html' target='_blank'>here</a> to see my other products.";
86
  }
87
  add_filter( 'admin_footer_text', 'spacexchimp_p006_new_admin_footer_text', 11 );
88
  }
82
  // Filter footer text
83
  function spacexchimp_p006_new_admin_footer_text() {
84
  $year = date('Y');
85
+ return "Copyright &copy; " . $year . " <a href='https://www.spacexchimp.com' target='_blank'>Space X-Chimp</a> | Click <a href='https://www.spacexchimp.com/store.html' target='_blank'>here</a> to see our other products.";
86
  }
87
  add_filter( 'admin_footer_text', 'spacexchimp_p006_new_admin_footer_text', 11 );
88
  }
inc/php/functional.php CHANGED
@@ -41,9 +41,9 @@ function spacexchimp_p006_output( $option ) {
41
  }
42
 
43
  // Add comments to output
44
- $data_out = "\n<!-- [BEGIN] Scripts added via Head-and-Footer-Scripts-Inserter plugin by Space X-Chimp Studio ( https://www.spacexchimp.com ) -->\n";
45
  $data_out .= $data;
46
- $data_out .= "\n<!-- [END] Scripts added via Head-and-Footer-Scripts-Inserter plugin by Space X-Chimp Studio ( https://www.spacexchimp.com ) -->\n\n";
47
 
48
  // Output
49
  echo $data_out;
41
  }
42
 
43
  // Add comments to output
44
+ $data_out = "\n<!-- [BEGIN] Scripts added via Head-and-Footer-Scripts-Inserter plugin by Space X-Chimp ( https://www.spacexchimp.com ) -->\n";
45
  $data_out .= $data;
46
+ $data_out .= "\n<!-- [END] Scripts added via Head-and-Footer-Scripts-Inserter plugin by Space X-Chimp ( https://www.spacexchimp.com ) -->\n\n";
47
 
48
  // Output
49
  echo $data_out;
inc/php/messages.php CHANGED
@@ -21,11 +21,11 @@ function spacexchimp_p006_hello_message() {
21
  <div class="modal-dialog">
22
  <div class="modal-content">
23
  <div class="modal-body">
24
- <img src="<?php echo SPACEXCHIMP_P006_URL . 'inc/img/avatar.png'; ?>">
25
  <button type="button" class="close" data-dismiss="modal">&times;</button>
26
- <p><?php _e( 'Hello. I\'m Arthur, the author of this plugin.', SPACEXCHIMP_P006_TEXT ); ?></p>
27
  <p><?php printf(
28
- __( 'Thank you for installing my plugin! I hope you will love it! %s', SPACEXCHIMP_P006_TEXT ),
29
  '&#x1F603;'
30
  );
31
  ?></p>
21
  <div class="modal-dialog">
22
  <div class="modal-content">
23
  <div class="modal-body">
24
+ <img src="<?php echo SPACEXCHIMP_P006_URL . 'inc/img/spacexchimp-logo.png'; ?>">
25
  <button type="button" class="close" data-dismiss="modal">&times;</button>
26
+ <p><?php _e( 'Hello. We are the team of Space X-Chimp.', SPACEXCHIMP_P006_TEXT ); ?></p>
27
  <p><?php printf(
28
+ __( 'Thank you for installing our plugin! We hope you will love it! %s', SPACEXCHIMP_P006_TEXT ),
29
  '&#x1F603;'
30
  );
31
  ?></p>
inc/php/page.php CHANGED
@@ -28,7 +28,7 @@ function spacexchimp_p006_render_submenu_page() {
28
  <?php echo $name; ?>
29
  <span>
30
  <?php printf(
31
- __( 'by %s Space X-Chimp Studio %s', $text ),
32
  '<a href="https://www.spacexchimp.com" target="_blank">',
33
  '</a>'
34
  );
@@ -84,7 +84,13 @@ function spacexchimp_p006_render_submenu_page() {
84
  <li><?php _e( 'Click the "Save changes" button.', $text ); ?></li>
85
  <li><?php _e( 'Enjoy the result of applying your scripts.', $text ); ?> <?php _e( 'It\'s that simple!', $text ); ?></li>
86
  </ol>
87
- <p class="note"><b><?php _e( 'Note!', $text ); ?></b> <?php _e( 'If you want more options then tell me and I will be happy to add it.', $text ); ?></p>
 
 
 
 
 
 
88
  </div>
89
  </div>
90
  </div>
@@ -125,9 +131,9 @@ function spacexchimp_p006_render_submenu_page() {
125
  <div class="question-2"><?php _e( 'Can I use this plugin on my language?', $text ); ?></div>
126
  <div class="answer-2"><?php _e( 'Yes. This plugin is ready for translation and has already been translated into several languages.', $text ); ?><br><br>
127
  <?php printf(
128
- __( '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 ),
129
- '<a href="https://translate.wordpress.org/projects/wp-plugins/' . $slug . '" target="_blank">translation page</a>',
130
- '<a href="mailto:arthurgareginyan@gmail.com?subject=New translation of the ' . $name . ' plugin">arthurgareginyan@gmail.com</a>'
131
  );
132
  ?><br><br>
133
  <?php _e( 'Maybe not all existed translations are up to date. You are welcome to contribute corrections!', $text ); ?><br><br>
@@ -137,7 +143,7 @@ function spacexchimp_p006_render_submenu_page() {
137
  <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>
138
 
139
  <div class="question-4"><?php _e( 'How much of scripts I can enter in the field?', $text ); ?></div>
140
- <div class="answer-4"><?php _e( 'I don\'t limit the number of characters.', $text ); ?></div>
141
 
142
  <div class="question-5"><?php _e( 'Does this plugin requires any modification of the theme?', $text ); ?></div>
143
  <div class="answer-5"><?php _e( 'Absolutely not. This plugin is configurable entirely from the plugin settings page.', $text ); ?></div>
@@ -145,7 +151,7 @@ function spacexchimp_p006_render_submenu_page() {
145
  <div class="question-6"><?php _e( 'Does this require any knowledge of HTML or CSS?', $text ); ?></div>
146
  <div class="answer-6"><?php _e( 'This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page. But you need to know the HTML or CSS in order to add/remove/modify the HTML or CSS code by using this plugin.', $text ); ?></div>
147
 
148
- <div class="question-7"><?php _e( 'Can I add my script to a specific page of my website?', $text ); ?></div>
149
  <div class="answer-7"><?php _e( '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 your website, you need to wrap your script in a PHP code that will determine the page you want. You need something like this:', $text ); ?><br><br>
150
  <pre><code>function my_custom_script() {
151
 
@@ -160,34 +166,36 @@ function spacexchimp_p006_render_submenu_page() {
160
  add_action( 'wp_head', 'my_custom_script' );</code></pre>
161
  <?php printf(
162
  __( 'To apply the PHP code on a website, I can recommend you to use another my plugin called %s.', $text ),
163
- '<a href="https://wordpress.org/plugins/my-custom-functions/" target="_blank">My Custom Functions</a>'
164
- ); ?></div>
 
165
 
166
  <div class="question-8 question-red"><?php _e( 'It\'s not working. What could be wrong?', $text ); ?></div>
167
  <div class="answer-8"><?php _e( '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 etc.) to reduce bandwidth usage and server load. This is called the browser\'s cache.​ Clearing your browser\'s cache may solve the problem.', $text ); ?><br><br>
168
- <?php _e( '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 include as much information as possible, including a link to your website where the problem can be seen.', $text ); ?></div>
169
 
170
- <div class="question-9 question-red"><?php _e( 'The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?', $text ); ?></div>
171
  <div class="answer-9"><?php _e( '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 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.', $text ); ?></div>
172
 
173
  <div class="question-10 question-red"><?php _e( 'Where to report bug if found?', $text ); ?></div>
174
  <div class="answer-10"><?php printf(
175
- __( 'Please visit the %s Dedicated Plugin Page on GitHub %s and report.', $text ),
176
- '<a href="https://github.com/ArthurGareginyan/' . $slug . '" target="_blank">',
177
  '</a>'
178
  );
179
  ?></div>
180
 
181
  <div class="question-11"><?php _e( 'Where to share any ideas or suggestions to make the plugin better?', $text ); ?></div>
182
  <div class="answer-11"><?php printf(
183
- __( 'Any suggestions are very welcome! Please send me an email to %s. Thank you!', $text ),
184
- '<a href="mailto:arthurgareginyan@gmail.com?subject=Suggestions about the ' . $name . ' plugin">arthurgareginyan@gmail.com</a>'
 
185
  );
186
  ?></div>
187
 
188
  <div class="question-12"><?php _e( 'I love this plugin! Can I help somehow?', $text ); ?></div>
189
  <div class="answer-12"><?php printf(
190
- __( 'Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate button, and thank you!', $text ),
191
  '<a href="https://www.arthurgareginyan.com/donate.html" target="_blank">',
192
  '</a>'
193
  );
@@ -195,8 +203,9 @@ add_action( 'wp_head', 'my_custom_script' );</code></pre>
195
 
196
  <div class="question-13"><?php _e( 'My question wasn\'t answered here.', $text ); ?></div>
197
  <div class="answer-13"><?php printf(
198
- __( '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.', $text ),
199
- '<a href="https://wordpress.org/support/plugin/' . $slug . '/" target="_blank">here</a>'
 
200
  );
201
  ?></div>
202
 
@@ -221,7 +230,7 @@ add_action( 'wp_head', 'my_custom_script' );</code></pre>
221
  </span>
222
  <p><?php
223
  printf(
224
- __( 'Hello! My name is %s Arthur Gareginyan %s and I\'m the founder of %s Space X-Chimp Studio %s.', $text ),
225
  '<a href="https://www.arthurgareginyan.com" target="_blank">',
226
  '</a>',
227
  '<a href="https://www.spacexchimp.com" target="_blank">',
28
  <?php echo $name; ?>
29
  <span>
30
  <?php printf(
31
+ __( 'by %s Space X-Chimp %s', $text ),
32
  '<a href="https://www.spacexchimp.com" target="_blank">',
33
  '</a>'
34
  );
84
  <li><?php _e( 'Click the "Save changes" button.', $text ); ?></li>
85
  <li><?php _e( 'Enjoy the result of applying your scripts.', $text ); ?> <?php _e( 'It\'s that simple!', $text ); ?></li>
86
  </ol>
87
+ <p class="note"><b><?php _e( 'Note!', $text ); ?></b> <?php printf(
88
+ __( 'If you want more options then %s tell us %s and we will be happy to add it.', $text ),
89
+ '<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
90
+ '</a>'
91
+ );
92
+ ?>
93
+ </p>
94
  </div>
95
  </div>
96
  </div>
131
  <div class="question-2"><?php _e( 'Can I use this plugin on my language?', $text ); ?></div>
132
  <div class="answer-2"><?php _e( 'Yes. This plugin is ready for translation and has already been translated into several languages.', $text ); ?><br><br>
133
  <?php printf(
134
+ __( '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 us at the %s and we will include this translation within the next plugin update.', $text ),
135
+ '<a href="https://translate.wordpress.org/projects/wp-plugins/' . $slug . '" target="_blank">translation page</a>',
136
+ '<a href="mailto:arthurgareginyan@gmail.com?subject=New translation of the ' . $name . ' plugin">arthurgareginyan@gmail.com</a>'
137
  );
138
  ?><br><br>
139
  <?php _e( 'Maybe not all existed translations are up to date. You are welcome to contribute corrections!', $text ); ?><br><br>
143
  <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>
144
 
145
  <div class="question-4"><?php _e( 'How much of scripts I can enter in the field?', $text ); ?></div>
146
+ <div class="answer-4"><?php _e( 'We don\'t limit the number of characters.', $text ); ?></div>
147
 
148
  <div class="question-5"><?php _e( 'Does this plugin requires any modification of the theme?', $text ); ?></div>
149
  <div class="answer-5"><?php _e( 'Absolutely not. This plugin is configurable entirely from the plugin settings page.', $text ); ?></div>
151
  <div class="question-6"><?php _e( 'Does this require any knowledge of HTML or CSS?', $text ); ?></div>
152
  <div class="answer-6"><?php _e( 'This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page. But you need to know the HTML or CSS in order to add/remove/modify the HTML or CSS code by using this plugin.', $text ); ?></div>
153
 
154
+ <div class="question-7"><?php _e( 'Can I add my script to a specific page of the website of the creator?', $text ); ?></div>
155
  <div class="answer-7"><?php _e( 'For now, this plugin does not have an option to apply the custom scripts only on specific pages. I plan to add this feature soon. But for now in order to apply your script only on specific pages of your website, you need to wrap your script in a PHP code that will determine the page you want. You need something like this:', $text ); ?><br><br>
156
  <pre><code>function my_custom_script() {
157
 
166
  add_action( 'wp_head', 'my_custom_script' );</code></pre>
167
  <?php printf(
168
  __( 'To apply the PHP code on a website, I can recommend you to use another my plugin called %s.', $text ),
169
+ '<a href="https://wordpress.org/plugins/my-custom-functions/" target="_blank">My Custom Functions</a>'
170
+ );
171
+ ?></div>
172
 
173
  <div class="question-8 question-red"><?php _e( 'It\'s not working. What could be wrong?', $text ); ?></div>
174
  <div class="answer-8"><?php _e( '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 etc.) to reduce bandwidth usage and server load. This is called the browser\'s cache.​ Clearing your browser\'s cache may solve the problem.', $text ); ?><br><br>
175
+ <?php _e( '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, we\'d be happy to give it a look and try to help out. Please include as much information as possible, including a link to your website where the problem can be seen.', $text ); ?></div>
176
 
177
+ <div class="question-9 question-red"><?php _e( 'The last WordPress update is preventing me from editing the website of the creator that is using this plugin. Why is this?', $text ); ?></div>
178
  <div class="answer-9"><?php _e( '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 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.', $text ); ?></div>
179
 
180
  <div class="question-10 question-red"><?php _e( 'Where to report bug if found?', $text ); ?></div>
181
  <div class="answer-10"><?php printf(
182
+ __( 'Please visit %s this page %s and report. Please do not forget to specify the name of the plugin. Thank you!', $text ),
183
+ '<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
184
  '</a>'
185
  );
186
  ?></div>
187
 
188
  <div class="question-11"><?php _e( 'Where to share any ideas or suggestions to make the plugin better?', $text ); ?></div>
189
  <div class="answer-11"><?php printf(
190
+ __( 'Any suggestions are very welcome! Just contact us %s here %s. Please do not forget to specify the name of the plugin. Thank you!', $text ),
191
+ '<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
192
+ '</a>'
193
  );
194
  ?></div>
195
 
196
  <div class="question-12"><?php _e( 'I love this plugin! Can I help somehow?', $text ); ?></div>
197
  <div class="answer-12"><?php printf(
198
+ __( 'Yes, any financial contributions are welcome! Just visit %s the website of the creator %s, click on the donate button, and thank you!', $text ),
199
  '<a href="https://www.arthurgareginyan.com/donate.html" target="_blank">',
200
  '</a>'
201
  );
203
 
204
  <div class="question-13"><?php _e( 'My question wasn\'t answered here.', $text ); ?></div>
205
  <div class="answer-13"><?php printf(
206
+ __( 'You can ask your question on %s this page %s. But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone.', $text ),
207
+ '<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
208
+ '</a>'
209
  );
210
  ?></div>
211
 
230
  </span>
231
  <p><?php
232
  printf(
233
+ __( 'Hello! My name is %s Arthur Gareginyan %s and I\'m the founder of %s Space X-Chimp %s.', $text ),
234
  '<a href="https://www.arthurgareginyan.com" target="_blank">',
235
  '</a>',
236
  '<a href="https://www.spacexchimp.com" target="_blank">',
inc/php/sidebar.php CHANGED
@@ -19,6 +19,13 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
19
  </div>
20
  </div>
21
 
 
 
 
 
 
 
 
22
  <div class="postbox support">
23
  <h3 class="title"><?php _e( 'Support', $text ); ?></h3>
24
  <div class="inside">
@@ -33,17 +40,10 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
33
  </div>
34
  </div>
35
 
36
- <div class="postbox help">
37
- <h3 class="title"><?php _e( 'Help', $text ); ?></h3>
38
- <div class="inside">
39
- <p><?php _e( 'If you have a question, please read the information in the FAQ section.', $text ); ?></p>
40
- </div>
41
- </div>
42
-
43
  <div class="postbox banner">
44
  <div class="inside">
45
  <a href="https://www.spacexchimp.com/" target="_blank">
46
- <img src="<?php echo SPACEXCHIMP_P006_URL . 'inc/img/banner.png'; ?>" alt="Space X-Chimp Studio">
47
  </a>
48
  </div>
49
  </div>
19
  </div>
20
  </div>
21
 
22
+ <div class="postbox help">
23
+ <h3 class="title"><?php _e( 'Help', $text ); ?></h3>
24
+ <div class="inside">
25
+ <p><?php _e( 'If you have a question, please read the information in the FAQ section.', $text ); ?></p>
26
+ </div>
27
+ </div>
28
+
29
  <div class="postbox support">
30
  <h3 class="title"><?php _e( 'Support', $text ); ?></h3>
31
  <div class="inside">
40
  </div>
41
  </div>
42
 
 
 
 
 
 
 
 
43
  <div class="postbox banner">
44
  <div class="inside">
45
  <a href="https://www.spacexchimp.com/" target="_blank">
46
+ <img src="<?php echo SPACEXCHIMP_P006_URL . 'inc/img/banner.png'; ?>" alt="Space X-Chimp">
47
  </a>
48
  </div>
49
  </div>
languages/Readme.txt CHANGED
@@ -6,7 +6,7 @@ This plugin is ready for translation and has already been translated into severa
6
 
7
  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).
8
 
9
- 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 arthurgareginyan@gmail.com and I will include this translation within the next plugin update.
10
 
11
  Maybe not all existed translations are up to date. You are welcome to contribute corrections!
12
 
6
 
7
  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).
8
 
9
+ 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 us at the arthurgareginyan@gmail.com and we will include this translation within the next plugin update.
10
 
11
  Maybe not all existed translations are up to date. You are welcome to contribute corrections!
12
 
languages/header-and-footer-scripts-inserter-de_DE.mo CHANGED
Binary file
languages/header-and-footer-scripts-inserter-de_DE.po CHANGED
@@ -3,8 +3,8 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Development (trunk)\n"
6
- "POT-Creation-Date: 2017-10-28 15:00+0300\n"
7
- "PO-Revision-Date: 2017-10-28 15:00+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: German\n"
10
  "Language: de_DE\n"
@@ -12,7 +12,7 @@ msgstr ""
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
- "X-Generator: Poedit 1.8.4\n"
16
  "X-Poedit-Basepath: ..\n"
17
  "X-Poedit-WPHeader: header-and-footer-scripts-inserter.php\n"
18
  "X-Poedit-SourceCharset: UTF-8\n"
@@ -35,14 +35,15 @@ msgid "Scripts Inserter"
35
  msgstr ""
36
 
37
  #: inc/php/messages.php:26
38
- msgid "Hello. I'm Arthur, the author of this plugin."
39
- msgstr "Hallo! Ich bin Arthur, der Autor dieses plugins."
40
 
41
  #: inc/php/messages.php:28
42
  #, php-format
43
- msgid "Thank you for installing my plugin! I hope you will love it! %s"
44
  msgstr ""
45
- "Danke, dass Sie mein Plugin installiert haben. Ich hoffe, sie werden es mögen. %s"
 
46
 
47
  #: inc/php/messages.php:68
48
  msgid "You have installed an old version of this plugin."
@@ -50,7 +51,8 @@ msgstr "Sie haben eine veraltete Version dieses Plugin installiert."
50
 
51
  #: inc/php/messages.php:69
52
  msgid "Please update the plugin to the latest version, and all will be fine."
53
- msgstr "Bitte installieren Sie die aktuelle Version des Plugins und alles wir gut."
 
54
 
55
  #: inc/php/messages.php:91
56
  msgid "Scripts updated successfully."
@@ -58,8 +60,8 @@ msgstr ""
58
 
59
  #: inc/php/page.php:31
60
  #, php-format
61
- msgid "by %s Space X-Chimp Studio %s"
62
- msgstr "by %s Space X-Chimp Studio %s"
63
 
64
  #: inc/php/page.php:37
65
  msgid "Version"
@@ -77,7 +79,7 @@ msgstr "Verwendung"
77
  msgid "F.A.Q."
78
  msgstr "F.A.Q."
79
 
80
- #: inc/php/page.php:47 inc/php/settings.php:70 inc/php/sidebar.php:23
81
  msgid "Support"
82
  msgstr "Support"
83
 
@@ -103,10 +105,10 @@ msgstr ""
103
 
104
  #: inc/php/page.php:70
105
  msgid ""
106
- "Note that the fields are for inserting HTML code, so JavaScript and CSS code must "
107
- "be wrapped in the corresponding HTML tag. For JavaScript code use the <code>&lt;"
108
- "script&gt;</code> tag, and for CSS code use the <code>&lt;style&gt;</code> tag. "
109
- "Example:"
110
  msgstr ""
111
 
112
  #: inc/php/page.php:84
@@ -125,285 +127,285 @@ msgstr "Es ist ganz einfach!"
125
  msgid "Note!"
126
  msgstr "Achtung!"
127
 
128
- #: inc/php/page.php:87
129
- msgid "If you want more options then tell me and I will be happy to add it."
 
 
130
  msgstr ""
131
- "Wenn Sie mehr Optionen benötigen, sagen Sie es mir und ich freue mich, diese "
132
- "hinzuzufügen."
133
 
134
- #: inc/php/page.php:96
135
  msgid "Frequently Asked Questions"
136
  msgstr ""
137
 
138
- #: inc/php/page.php:100
139
  msgid ""
140
- "If you have a question, please read the Frequently Asked Questions below to see if "
141
- "the answer is here."
142
  msgstr ""
143
- "Wenn Sie Fragen haben, lesen Sie bitte die F.A.Q.s und schauen Sie nach, ob Ihre "
144
- "Antwort dabei ist."
145
 
146
- #: inc/php/page.php:122
147
  msgid "Will this plugin work on my WordPress.COM website?"
148
  msgstr "Funktioniert dieses Plugin auf meiner WordPress.COM Webseite?"
149
 
150
- #: inc/php/page.php:123
151
  msgid ""
152
  "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) "
153
  "websites."
154
  msgstr ""
155
- "Leider nicht. Dieses Plugin ist nur verfügbar auf self-hosted (WordPress.ORG) "
156
- "Webseiten."
157
 
158
- #: inc/php/page.php:125
159
  msgid "Can I use this plugin on my language?"
160
  msgstr "Kann ich das Plugin in meiner Sprache verwenden?"
161
 
162
- #: inc/php/page.php:126
163
  msgid ""
164
- "Yes. This plugin is ready for translation and has already been translated into "
165
- "several languages."
166
- msgstr "Ja, dieses Plugin übersetzbar und bereits in mehreren Sprachen verfügbar."
 
167
 
168
- #: inc/php/page.php:128
169
  #, php-format
170
  msgid ""
171
- "If you want to help translate this plugin then please visit the %s. You can also "
172
- "use the POT file, that is included and placed in the \"languages\" folder, in "
173
- "order to create a translation PO file. Just send the PO file to me at the %s and I "
174
- "will include this translation within the next plugin update."
 
175
  msgstr ""
176
- "Wenn Sie bei der Übersetzung dieses Plugins helfen wollen, besuchen Sie die Seite "
177
- "%s. Sie können auch die POT Datei, die Sie im \"languages\" Ordner finden, "
178
- "verwenden, um eine PO Übersetzungsdatei zu erstellen. Senden Sie die übersetzte PO "
179
- "Datei direkt an %s und ich werde die Übersetzung beim nächsten Plugin Update "
180
- "hinzufügen."
181
 
182
- #: inc/php/page.php:133
183
  msgid ""
184
- "Maybe not all existed translations are up to date. You are welcome to contribute "
185
- "corrections!"
186
  msgstr ""
187
- "Vielleicht sind nicht alle vorhandenen Übersetzungen aktuell. Gerne können Sie an "
188
- "den Korrekturen mitwirken."
189
 
190
- #: inc/php/page.php:134
191
  msgid ""
192
- "Many of plugin users would be delighted if you share your translation with the "
193
- "community. Thanks for your contribution!"
194
  msgstr ""
195
- "Viele Benutzer des Plugins freuen sich darüber, wenn Sie Ihre Übersetzung mit der "
196
- "Öffentlichkeit teilen. Danke für Ihre Mithilfe!"
197
 
198
- #: inc/php/page.php:136
199
  msgid "How does it work?"
200
  msgstr "Wie arbeitet das Plugin?"
201
 
202
- #: inc/php/page.php:137
203
  msgid ""
204
- "On the \"Settings\" tab, place your scripts in the field and click the \"Save "
205
- "changes\" button. Enjoy the result of applying your scripts. It's that simple!"
 
206
  msgstr ""
207
 
208
- #: inc/php/page.php:139
209
  msgid "How much of scripts I can enter in the field?"
210
  msgstr ""
211
 
212
- #: inc/php/page.php:140
213
- msgid "I don't limit the number of characters."
214
  msgstr ""
215
 
216
- #: inc/php/page.php:142
217
  msgid "Does this plugin requires any modification of the theme?"
218
  msgstr "Benötigt das Plugin Veränderungen am Theme."
219
 
220
- #: inc/php/page.php:143
221
  msgid ""
222
- "Absolutely not. This plugin is configurable entirely from the plugin settings page."
 
223
  msgstr ""
224
- "Absolut nicht. Alle Konfigurationen des Plugins finden Sie auf Einstellungsseite "
225
- "des Plugins."
226
 
227
- #: inc/php/page.php:145
228
  msgid "Does this require any knowledge of HTML or CSS?"
229
  msgstr "Brauche ich HTML oder CCS Kenntnisse?"
230
 
231
- #: inc/php/page.php:146
232
  msgid ""
233
- "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-"
234
- "use plugin settings page. But you need to know the HTML or CSS in order to add/"
235
- "remove/modify the HTML or CSS code by using this plugin."
236
  msgstr ""
237
 
238
- #: inc/php/page.php:148
239
- msgid "Can I add my script to a specific page of my website?"
240
  msgstr ""
241
 
242
- #: inc/php/page.php:149
243
  msgid ""
244
- "For now, this plugin does not have an option to apply the custom scripts only on "
245
- "specific pages. I plan to add this feature soon. But for now in order to apply "
246
- "your script only on specific pages of your website, you need to wrap your script "
247
- "in a PHP code that will determine the page you want. You need something like this:"
 
248
  msgstr ""
249
 
250
- #: inc/php/page.php:162
251
  #, php-format
252
  msgid ""
253
- "To apply the PHP code on a website, I can recommend you to use another my plugin "
254
- "called %s."
255
  msgstr ""
256
 
257
- #: inc/php/page.php:166
258
  msgid "It's not working. What could be wrong?"
259
  msgstr "Es funktioniert nicht. Was könnte falsch sein?"
260
 
261
- #: inc/php/page.php:167
262
  msgid ""
263
- "As with every plugin, it's possible that things don't work. The most common reason "
264
- "for this is a web browser's cache. Every web browser stores a cache of the "
265
- "websites you visit (pages, images, and etc.) to reduce bandwidth usage and server "
266
- "load. This is called the browser's cache.​ Clearing your browser's cache may solve "
267
- "the problem."
268
- msgstr ""
269
- "Wie bei jedem Plugin ist es möglich, dass nicht alles funktioniert. Der häufigste "
270
- "Grund dafür ist der Cache Ihres Webbrowsers. Jeder Webbrowser speichert den Cache "
271
- "der besuchten Webseite (Seiten, Bilder, usw.) um die Bandbreite zu reduzieren. Das "
272
- "nennt man den Browser Cache. Wenn Sie den Cache Ihres Browsers löschen, könnte das "
273
- "Problem behoben sein."
274
 
275
- #: inc/php/page.php:168
276
  msgid ""
277
- "It's impossible to tell what could be wrong exactly, but if you post a support "
278
- "request in the plugin's support forum on WordPress.org, I'd be happy to give it a "
279
- "look and try to help out. Please include as much information as possible, "
280
- "including a link to your website where the problem can be seen."
 
281
  msgstr ""
282
- "Es ist unmöglich genau festzustellen was falsch ist. Wenn Sie jedoch eine Support "
283
- "Anfrage im Plugins Support Forum von WordPress.ORG stellen, helfe ich Ihnen gerne. "
284
- "Bitte fügen Sie so viele Informationen wie möglich und einen Link zu der Webseite "
285
- "hinzu, wo das Problem auftritt."
286
 
287
- #: inc/php/page.php:170
288
  msgid ""
289
- "The last WordPress update is preventing me from editing my website that is using "
290
- "this plugin. Why is this?"
291
  msgstr ""
292
- "Das letzte WordPress-Update hindert mich daran, meine Webseite, die dieses Plugin "
293
- "verwendet, zu bearbeiten. Warum ist das so?"
294
 
295
- #: inc/php/page.php:171
296
  msgid ""
297
- "This plugin can not cause such problem. More likely, the problem are related to "
298
- "the settings of the website. It could just be a cache, so please try to clear your "
299
- "website's cache (may be you using a caching plugin, or some web service such as "
300
- "the CloudFlare) and then the cache of your web browser. Also please try to re-"
301
- "login to the website, this too can help."
302
- msgstr ""
303
- "Dieses Plugin kann ein solches Problem nicht verursachen. Wahrscheinlich hängt das "
304
- "Problem mit den Einstellungen der Webseite zusammen. Es könnte einfach nur ein "
305
- "Cache sein. Versuchen Sie daher, den Cache Ihrer Webseite zu löschen "
306
- "(möglicherweise verwenden Sie ein Caching-Plugin oder einen Webservice wie "
307
- "CloudFlare) und danach den Cache Ihres Webbrowsers. Versuchen Sie auch, sich "
308
- "erneut auf der Webseite anzumelden, auch dies kann helfen."
309
-
310
- #: inc/php/page.php:173
311
  msgid "Where to report bug if found?"
312
  msgstr "Wo kann ich eine Fehler melden?"
313
 
314
- #: inc/php/page.php:175
315
  #, php-format
316
- msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
 
 
317
  msgstr ""
318
- "Besuchen Sie die %s zugehörige Plugin-Seite auf GitHub %s, um Fehler zu melden."
319
 
320
- #: inc/php/page.php:181
321
  msgid "Where to share any ideas or suggestions to make the plugin better?"
322
  msgstr ""
323
- "Wo können Sie Ideen oder Vorschläge loswerden, um das Plugin besser zu machen?"
 
324
 
325
- #: inc/php/page.php:183
326
  #, php-format
327
- msgid "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
 
 
328
  msgstr ""
329
- "Alle Vorschläge sind willkommen! Bitte senden Sie mir eine E-Mail an % s. Vielen "
330
- "Dank!"
331
 
332
- #: inc/php/page.php:188
333
  msgid "I love this plugin! Can I help somehow?"
334
  msgstr "Ich liebe dieses Plugin! Kann ich Irgendwie helfen?"
335
 
336
- #: inc/php/page.php:190
337
  #, php-format
338
  msgid ""
339
- "Yes, any financial contributions are welcome! Just visit %s my website %s, click "
340
- "on the donate button, and thank you!"
341
  msgstr ""
342
- "Ja, jede finanzielle Unterstützung ist Willkommen! Besuchen Sie %s meine Webseite "
343
- "%s, klicken Sie auf den Spenden Button und Danke!"
344
 
345
- #: inc/php/page.php:196
346
  msgid "My question wasn't answered here."
347
  msgstr "Meine Fragen wurden nicht beantwortet."
348
 
349
- #: inc/php/page.php:198
350
  #, php-format
351
  msgid ""
352
- "You can ask your question on the plugin support page %s. But please keep in mind "
353
- "that this plugin is free, and there is no a special support team, so I have no way "
354
- "to answer everyone."
355
  msgstr ""
356
- "Sie können Ihre Frage auf der Plugin Support Seite %s stellen. Aber bitte bedenken "
357
- "Sie, dass dieses Plugin kostenlos ist. Es gibt kein Support Team, deshalb habe ich "
358
- "keine Möglichkeit jedem zu antworten."
359
 
360
- #: inc/php/page.php:211
361
  msgid "Support Me"
362
  msgstr "Unterstützen Sie mich"
363
 
364
- #: inc/php/page.php:219 inc/php/settings.php:77 inc/php/sidebar.php:30
365
  msgid "Donate with PayPal"
366
  msgstr "Spende mit PayPal"
367
 
368
- #: inc/php/page.php:224
369
  #, php-format
370
  msgid ""
371
- "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp "
372
- "Studio %s."
373
  msgstr ""
374
- "Hallo! Meine name ist %s Arthur Gareginyan %s und ich bin der Gründer von %s Space "
375
- "X-Chimp Studio %s."
376
 
377
- #: inc/php/page.php:232
378
  msgid ""
379
- "My intention is to create projects that will make this world a better place. I'm "
380
- "really passionate about my work, I like what I'm doing and hope that you will be "
381
- "enriched by my projects too."
382
  msgstr ""
383
- "Meine Absicht ist es, Projekte zu entwickeln, die diese Welt zu einem besseren Ort "
384
- "machen. Ich bin begeistert von meiner Arbeit, ich mag, was ich tue, und hoffe, "
385
- "dass Sie auch von meinen Projekten bereichert werden."
386
 
387
- #: inc/php/page.php:233
388
  msgid ""
389
- "I spend a lot of time and effort trying to make sure that the themes, plugins and "
390
- "other things I build are useful, and the ultimate proof of that for me is that you "
391
- "actually want to use them. But, I’m an independent developer, without a regular "
392
- "income, so every little contribution helps cover my costs and lets me spend more "
393
- "time building things for people like you to enjoy."
394
- msgstr ""
395
- "Ich habe viel Zeit und Mühe darauf verwendet sicherzustellen, dass die Themes, "
396
- "Plugins und andere Dinge, die ich entwickle, nützlich sind. Der ultimative Beweis "
397
- "für mich ist, dass Sie sie tatsächlich verwenden. Aber ich bin ein unabhängiger "
398
- "Entwickler ohne regelmäßiges Einkommen. Jeder kleine Beitrag trägt dazu bei, meine "
399
- "Kosten zu decken und schenkt mir mehr Zeit damit zu verbringen, Dinge für Leute "
400
- "wie Sie zu gestalten."
401
-
402
- #: inc/php/page.php:234
 
403
  msgid "If you appreciate my work, you can buy me a coffee!"
404
- msgstr "Wenn Ihnen meine Arbeit gefällt, können Sie mir gerne einen Kaffee kaufen!"
 
405
 
406
- #: inc/php/page.php:235
407
  msgid "Thank you for your support!"
408
  msgstr "Danke für Ihre Unterstützung!"
409
 
@@ -412,19 +414,20 @@ msgid "Head Section"
412
  msgstr ""
413
 
414
  #: inc/php/settings.php:42
415
- msgid "You can use the fields below to add scripts to HEAD section of your website."
 
416
  msgstr ""
417
 
418
  #: inc/php/settings.php:44
419
  msgid ""
420
- "Scripts from this field will be printed in the beginning of <b>HEAD</b> section. "
421
- "Do not place plain text in this!"
422
  msgstr ""
423
 
424
  #: inc/php/settings.php:47
425
  msgid ""
426
- "Scripts from this field will be printed in the end of <b>HEAD</b> section. Do not "
427
- "place plain text in this!"
428
  msgstr ""
429
 
430
  #: inc/php/settings.php:50 inc/php/settings.php:65
@@ -437,32 +440,33 @@ msgstr ""
437
 
438
  #: inc/php/settings.php:57
439
  msgid ""
440
- "You can use the fields below to add scripts to FOOTER section of your website."
 
441
  msgstr ""
442
 
443
  #: inc/php/settings.php:59
444
  msgid ""
445
- "Scripts from this field will be printed before a footers scripts. Do not place "
446
- "plain text in this!"
447
  msgstr ""
448
 
449
  #: inc/php/settings.php:62
450
  msgid ""
451
- "Scripts from this field will be printed after all footers scripts. Do not place "
452
- "plain text in this!"
453
  msgstr ""
454
 
455
- #: inc/php/settings.php:72 inc/php/sidebar.php:25
456
  msgid ""
457
  "I'm an independent developer, without a regular income, so every little "
458
- "contribution helps cover my costs and lets me spend more time building things for "
459
- "people like you to enjoy."
460
  msgstr ""
461
- "Ich bin ein unabhängiger Entwickler ohne regelmäßiges Einkommen. Jeder kleine "
462
- "Beitrag trägt dazu bei, meine Kosten zu decken und ich kann mehr Zeit damit "
463
- "verbringen, Dinge für Leute wie Sie zu entwickeln."
464
 
465
- #: inc/php/settings.php:79 inc/php/sidebar.php:32
466
  msgid "Thanks for your support!"
467
  msgstr "Danke für Ihre Unterstützung!"
468
 
@@ -474,11 +478,11 @@ msgstr "Über"
474
  msgid "This plugin allows you to easily insert scripts in your website."
475
  msgstr ""
476
 
477
- #: inc/php/sidebar.php:37
478
  msgid "Help"
479
  msgstr "Hilfe"
480
 
481
- #: inc/php/sidebar.php:39
482
  msgid "If you have a question, please read the information in the FAQ section."
483
  msgstr "Wenn Sie Fragen haben, lesen Sie bitte auch die Fragen im FAQ Bereich."
484
 
@@ -492,8 +496,8 @@ msgstr "https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter"
492
 
493
  #. Description of the plugin/theme
494
  msgid ""
495
- "Easily add your scripts to the WordPress website's head and footer sections. This "
496
- "is a must have tool for authors and website's owners."
497
  msgstr ""
498
 
499
  #. Author of the plugin/theme
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Development (trunk)\n"
6
+ "POT-Creation-Date: 2018-01-20 14:29+0300\n"
7
+ "PO-Revision-Date: 2018-01-20 14:29+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: German\n"
10
  "Language: de_DE\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
15
+ "X-Generator: Poedit 1.8.7\n"
16
  "X-Poedit-Basepath: ..\n"
17
  "X-Poedit-WPHeader: header-and-footer-scripts-inserter.php\n"
18
  "X-Poedit-SourceCharset: UTF-8\n"
35
  msgstr ""
36
 
37
  #: inc/php/messages.php:26
38
+ msgid "Hello. We are the team of Space X-Chimp."
39
+ msgstr "Hallo! Ich bin Space X-Chimp, der Autor dieses plugins."
40
 
41
  #: inc/php/messages.php:28
42
  #, php-format
43
+ msgid "Thank you for installing our plugin! We hope you will love it! %s"
44
  msgstr ""
45
+ "Danke, dass Sie mein Plugin installiert haben. Ich hoffe, sie werden es "
46
+ "mögen. %s"
47
 
48
  #: inc/php/messages.php:68
49
  msgid "You have installed an old version of this plugin."
51
 
52
  #: inc/php/messages.php:69
53
  msgid "Please update the plugin to the latest version, and all will be fine."
54
+ msgstr ""
55
+ "Bitte installieren Sie die aktuelle Version des Plugins und alles wir gut."
56
 
57
  #: inc/php/messages.php:91
58
  msgid "Scripts updated successfully."
60
 
61
  #: inc/php/page.php:31
62
  #, php-format
63
+ msgid "by %s Space X-Chimp %s"
64
+ msgstr "by %s Space X-Chimp %s"
65
 
66
  #: inc/php/page.php:37
67
  msgid "Version"
79
  msgid "F.A.Q."
80
  msgstr "F.A.Q."
81
 
82
+ #: inc/php/page.php:47 inc/php/settings.php:70 inc/php/sidebar.php:30
83
  msgid "Support"
84
  msgstr "Support"
85
 
105
 
106
  #: inc/php/page.php:70
107
  msgid ""
108
+ "Note that the fields are for inserting HTML code, so JavaScript and CSS code "
109
+ "must be wrapped in the corresponding HTML tag. For JavaScript code use the "
110
+ "<code>&lt;script&gt;</code> tag, and for CSS code use the <code>&lt;style&gt;"
111
+ "</code> tag. Example:"
112
  msgstr ""
113
 
114
  #: inc/php/page.php:84
127
  msgid "Note!"
128
  msgstr "Achtung!"
129
 
130
+ #: inc/php/page.php:88
131
+ #, php-format
132
+ msgid ""
133
+ "If you want more options then %s tell us %s and we will be happy to add it."
134
  msgstr ""
135
+ "Wenn Sie mehr Optionen benötigen, %s teilen Sie uns %s dies mit und wir "
136
+ "werden sie gerne hinzufügen."
137
 
138
+ #: inc/php/page.php:102
139
  msgid "Frequently Asked Questions"
140
  msgstr ""
141
 
142
+ #: inc/php/page.php:106
143
  msgid ""
144
+ "If you have a question, please read the Frequently Asked Questions below to "
145
+ "see if the answer is here."
146
  msgstr ""
147
+ "Wenn Sie Fragen haben, lesen Sie bitte die F.A.Q.s und schauen Sie nach, ob "
148
+ "Ihre Antwort dabei ist."
149
 
150
+ #: inc/php/page.php:128
151
  msgid "Will this plugin work on my WordPress.COM website?"
152
  msgstr "Funktioniert dieses Plugin auf meiner WordPress.COM Webseite?"
153
 
154
+ #: inc/php/page.php:129
155
  msgid ""
156
  "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) "
157
  "websites."
158
  msgstr ""
159
+ "Leider nicht. Dieses Plugin ist nur verfügbar auf self-hosted (WordPress."
160
+ "ORG) Webseiten."
161
 
162
+ #: inc/php/page.php:131
163
  msgid "Can I use this plugin on my language?"
164
  msgstr "Kann ich das Plugin in meiner Sprache verwenden?"
165
 
166
+ #: inc/php/page.php:132
167
  msgid ""
168
+ "Yes. This plugin is ready for translation and has already been translated "
169
+ "into several languages."
170
+ msgstr ""
171
+ "Ja, dieses Plugin übersetzbar und bereits in mehreren Sprachen verfügbar."
172
 
173
+ #: inc/php/page.php:134
174
  #, php-format
175
  msgid ""
176
+ "If you want to help translate this plugin then please visit the %s. You can "
177
+ "also use the POT file, that is included and placed in the \"languages\" "
178
+ "folder, in order to create a translation PO file. Just send the PO file to "
179
+ "us at the %s and we will include this translation within the next plugin "
180
+ "update."
181
  msgstr ""
 
 
 
 
 
182
 
183
+ #: inc/php/page.php:139
184
  msgid ""
185
+ "Maybe not all existed translations are up to date. You are welcome to "
186
+ "contribute corrections!"
187
  msgstr ""
188
+ "Vielleicht sind nicht alle vorhandenen Übersetzungen aktuell. Gerne können "
189
+ "Sie an den Korrekturen mitwirken."
190
 
191
+ #: inc/php/page.php:140
192
  msgid ""
193
+ "Many of plugin users would be delighted if you share your translation with "
194
+ "the community. Thanks for your contribution!"
195
  msgstr ""
196
+ "Viele Benutzer des Plugins freuen sich darüber, wenn Sie Ihre Übersetzung "
197
+ "mit der Öffentlichkeit teilen. Danke für Ihre Mithilfe!"
198
 
199
+ #: inc/php/page.php:142
200
  msgid "How does it work?"
201
  msgstr "Wie arbeitet das Plugin?"
202
 
203
+ #: inc/php/page.php:143
204
  msgid ""
205
+ "On the \"Settings\" tab, place your scripts in the field and click the "
206
+ "\"Save changes\" button. Enjoy the result of applying your scripts. It's "
207
+ "that simple!"
208
  msgstr ""
209
 
210
+ #: inc/php/page.php:145
211
  msgid "How much of scripts I can enter in the field?"
212
  msgstr ""
213
 
214
+ #: inc/php/page.php:146
215
+ msgid "We don't limit the number of characters."
216
  msgstr ""
217
 
218
+ #: inc/php/page.php:148
219
  msgid "Does this plugin requires any modification of the theme?"
220
  msgstr "Benötigt das Plugin Veränderungen am Theme."
221
 
222
+ #: inc/php/page.php:149
223
  msgid ""
224
+ "Absolutely not. This plugin is configurable entirely from the plugin "
225
+ "settings page."
226
  msgstr ""
227
+ "Absolut nicht. Alle Konfigurationen des Plugins finden Sie auf "
228
+ "Einstellungsseite des Plugins."
229
 
230
+ #: inc/php/page.php:151
231
  msgid "Does this require any knowledge of HTML or CSS?"
232
  msgstr "Brauche ich HTML oder CCS Kenntnisse?"
233
 
234
+ #: inc/php/page.php:152
235
  msgid ""
236
+ "This plugin can be configured with no knowledge of HTML or CSS, using an "
237
+ "easy-to-use plugin settings page. But you need to know the HTML or CSS in "
238
+ "order to add/remove/modify the HTML or CSS code by using this plugin."
239
  msgstr ""
240
 
241
+ #: inc/php/page.php:154
242
+ msgid "Can I add my script to a specific page of the website of the creator?"
243
  msgstr ""
244
 
245
+ #: inc/php/page.php:155
246
  msgid ""
247
+ "For now, this plugin does not have an option to apply the custom scripts "
248
+ "only on specific pages. I plan to add this feature soon. But for now in "
249
+ "order to apply your script only on specific pages of your website, you need "
250
+ "to wrap your script in a PHP code that will determine the page you want. You "
251
+ "need something like this:"
252
  msgstr ""
253
 
254
+ #: inc/php/page.php:168
255
  #, php-format
256
  msgid ""
257
+ "To apply the PHP code on a website, I can recommend you to use another my "
258
+ "plugin called %s."
259
  msgstr ""
260
 
261
+ #: inc/php/page.php:173
262
  msgid "It's not working. What could be wrong?"
263
  msgstr "Es funktioniert nicht. Was könnte falsch sein?"
264
 
265
+ #: inc/php/page.php:174
266
  msgid ""
267
+ "As with every plugin, it's possible that things don't work. The most common "
268
+ "reason for this is a web browser's cache. Every web browser stores a cache "
269
+ "of the websites you visit (pages, images, and etc.) to reduce bandwidth "
270
+ "usage and server load. This is called the browser's cache.​ Clearing your "
271
+ "browser's cache may solve the problem."
272
+ msgstr ""
273
+ "Wie bei jedem Plugin ist es möglich, dass nicht alles funktioniert. Der "
274
+ "häufigste Grund dafür ist der Cache Ihres Webbrowsers. Jeder Webbrowser "
275
+ "speichert den Cache der besuchten Webseite (Seiten, Bilder, usw.) um die "
276
+ "Bandbreite zu reduzieren. Das nennt man den Browser Cache. Wenn Sie den "
277
+ "Cache Ihres Browsers löschen, könnte das Problem behoben sein."
278
 
279
+ #: inc/php/page.php:175
280
  msgid ""
281
+ "It's impossible to tell what could be wrong exactly, but if you post a "
282
+ "support request in the plugin's support forum on WordPress.org, we'd be "
283
+ "happy to give it a look and try to help out. Please include as much "
284
+ "information as possible, including a link to your website where the problem "
285
+ "can be seen."
286
  msgstr ""
 
 
 
 
287
 
288
+ #: inc/php/page.php:177
289
  msgid ""
290
+ "The last WordPress update is preventing me from editing the website of the "
291
+ "creator that is using this plugin. Why is this?"
292
  msgstr ""
293
+ "Das letzte WordPress-Update hindert mich daran, meine Webseite, die dieses "
294
+ "Plugin verwendet, zu bearbeiten. Warum ist das so?"
295
 
296
+ #: inc/php/page.php:178
297
  msgid ""
298
+ "This plugin can not cause such problem. More likely, the problem are related "
299
+ "to the settings of the website. It could just be a cache, so please try to "
300
+ "clear your website's cache (may be you using a caching plugin, or some web "
301
+ "service such as the CloudFlare) and then the cache of your web browser. Also "
302
+ "please try to re-login to the website, this too can help."
303
+ msgstr ""
304
+ "Dieses Plugin kann ein solches Problem nicht verursachen. Wahrscheinlich "
305
+ "hängt das Problem mit den Einstellungen der Webseite zusammen. Es könnte "
306
+ "einfach nur ein Cache sein. Versuchen Sie daher, den Cache Ihrer Webseite zu "
307
+ "löschen (möglicherweise verwenden Sie ein Caching-Plugin oder einen "
308
+ "Webservice wie CloudFlare) und danach den Cache Ihres Webbrowsers. Versuchen "
309
+ "Sie auch, sich erneut auf der Webseite anzumelden, auch dies kann helfen."
310
+
311
+ #: inc/php/page.php:180
312
  msgid "Where to report bug if found?"
313
  msgstr "Wo kann ich eine Fehler melden?"
314
 
315
+ #: inc/php/page.php:182
316
  #, php-format
317
+ msgid ""
318
+ "Please visit %s this page %s and report. Please do not forget to specify the "
319
+ "name of the plugin. Thank you!"
320
  msgstr ""
 
321
 
322
+ #: inc/php/page.php:188
323
  msgid "Where to share any ideas or suggestions to make the plugin better?"
324
  msgstr ""
325
+ "Wo können Sie Ideen oder Vorschläge loswerden, um das Plugin besser zu "
326
+ "machen?"
327
 
328
+ #: inc/php/page.php:190
329
  #, php-format
330
+ msgid ""
331
+ "Any suggestions are very welcome! Just contact us %s here %s. Please do not "
332
+ "forget to specify the name of the plugin. Thank you!"
333
  msgstr ""
 
 
334
 
335
+ #: inc/php/page.php:196
336
  msgid "I love this plugin! Can I help somehow?"
337
  msgstr "Ich liebe dieses Plugin! Kann ich Irgendwie helfen?"
338
 
339
+ #: inc/php/page.php:198
340
  #, php-format
341
  msgid ""
342
+ "Yes, any financial contributions are welcome! Just visit %s the website of "
343
+ "the creator %s, click on the donate button, and thank you!"
344
  msgstr ""
345
+ "Ja, jede finanzielle Unterstützung ist Willkommen! Besuchen Sie %s meine "
346
+ "Webseite %s, klicken Sie auf den Spenden Button und Danke!"
347
 
348
+ #: inc/php/page.php:204
349
  msgid "My question wasn't answered here."
350
  msgstr "Meine Fragen wurden nicht beantwortet."
351
 
352
+ #: inc/php/page.php:206
353
  #, php-format
354
  msgid ""
355
+ "You can ask your question on %s this page %s. But please keep in mind that "
356
+ "this plugin is free, and there is no a special support team, so we have no "
357
+ "way to answer everyone."
358
  msgstr ""
 
 
 
359
 
360
+ #: inc/php/page.php:220
361
  msgid "Support Me"
362
  msgstr "Unterstützen Sie mich"
363
 
364
+ #: inc/php/page.php:228 inc/php/settings.php:77 inc/php/sidebar.php:37
365
  msgid "Donate with PayPal"
366
  msgstr "Spende mit PayPal"
367
 
368
+ #: inc/php/page.php:233
369
  #, php-format
370
  msgid ""
371
+ "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-"
372
+ "Chimp %s."
373
  msgstr ""
374
+ "Hallo! Meine name ist %s Arthur Gareginyan %s und ich bin der Gründer von %s "
375
+ "Space X-Chimp %s."
376
 
377
+ #: inc/php/page.php:241
378
  msgid ""
379
+ "My intention is to create projects that will make this world a better place. "
380
+ "I'm really passionate about my work, I like what I'm doing and hope that you "
381
+ "will be enriched by my projects too."
382
  msgstr ""
383
+ "Meine Absicht ist es, Projekte zu entwickeln, die diese Welt zu einem "
384
+ "besseren Ort machen. Ich bin begeistert von meiner Arbeit, ich mag, was ich "
385
+ "tue, und hoffe, dass Sie auch von meinen Projekten bereichert werden."
386
 
387
+ #: inc/php/page.php:242
388
  msgid ""
389
+ "I spend a lot of time and effort trying to make sure that the themes, "
390
+ "plugins and other things I build are useful, and the ultimate proof of that "
391
+ "for me is that you actually want to use them. But, I’m an independent "
392
+ "developer, without a regular income, so every little contribution helps "
393
+ "cover my costs and lets me spend more time building things for people like "
394
+ "you to enjoy."
395
+ msgstr ""
396
+ "Ich habe viel Zeit und Mühe darauf verwendet sicherzustellen, dass die "
397
+ "Themes, Plugins und andere Dinge, die ich entwickle, nützlich sind. Der "
398
+ "ultimative Beweis für mich ist, dass Sie sie tatsächlich verwenden. Aber ich "
399
+ "bin ein unabhängiger Entwickler ohne regelmäßiges Einkommen. Jeder kleine "
400
+ "Beitrag trägt dazu bei, meine Kosten zu decken und schenkt mir mehr Zeit "
401
+ "damit zu verbringen, Dinge für Leute wie Sie zu gestalten."
402
+
403
+ #: inc/php/page.php:243
404
  msgid "If you appreciate my work, you can buy me a coffee!"
405
+ msgstr ""
406
+ "Wenn Ihnen meine Arbeit gefällt, können Sie mir gerne einen Kaffee kaufen!"
407
 
408
+ #: inc/php/page.php:244
409
  msgid "Thank you for your support!"
410
  msgstr "Danke für Ihre Unterstützung!"
411
 
414
  msgstr ""
415
 
416
  #: inc/php/settings.php:42
417
+ msgid ""
418
+ "You can use the fields below to add scripts to HEAD section of your website."
419
  msgstr ""
420
 
421
  #: inc/php/settings.php:44
422
  msgid ""
423
+ "Scripts from this field will be printed in the beginning of <b>HEAD</b> "
424
+ "section. Do not place plain text in this!"
425
  msgstr ""
426
 
427
  #: inc/php/settings.php:47
428
  msgid ""
429
+ "Scripts from this field will be printed in the end of <b>HEAD</b> section. "
430
+ "Do not place plain text in this!"
431
  msgstr ""
432
 
433
  #: inc/php/settings.php:50 inc/php/settings.php:65
440
 
441
  #: inc/php/settings.php:57
442
  msgid ""
443
+ "You can use the fields below to add scripts to FOOTER section of your "
444
+ "website."
445
  msgstr ""
446
 
447
  #: inc/php/settings.php:59
448
  msgid ""
449
+ "Scripts from this field will be printed before a footers scripts. Do not "
450
+ "place plain text in this!"
451
  msgstr ""
452
 
453
  #: inc/php/settings.php:62
454
  msgid ""
455
+ "Scripts from this field will be printed after all footers scripts. Do not "
456
+ "place plain text in this!"
457
  msgstr ""
458
 
459
+ #: inc/php/settings.php:72 inc/php/sidebar.php:32
460
  msgid ""
461
  "I'm an independent developer, without a regular income, so every little "
462
+ "contribution helps cover my costs and lets me spend more time building "
463
+ "things for people like you to enjoy."
464
  msgstr ""
465
+ "Ich bin ein unabhängiger Entwickler ohne regelmäßiges Einkommen. Jeder "
466
+ "kleine Beitrag trägt dazu bei, meine Kosten zu decken und ich kann mehr Zeit "
467
+ "damit verbringen, Dinge für Leute wie Sie zu entwickeln."
468
 
469
+ #: inc/php/settings.php:79 inc/php/sidebar.php:39
470
  msgid "Thanks for your support!"
471
  msgstr "Danke für Ihre Unterstützung!"
472
 
478
  msgid "This plugin allows you to easily insert scripts in your website."
479
  msgstr ""
480
 
481
+ #: inc/php/sidebar.php:23
482
  msgid "Help"
483
  msgstr "Hilfe"
484
 
485
+ #: inc/php/sidebar.php:25
486
  msgid "If you have a question, please read the information in the FAQ section."
487
  msgstr "Wenn Sie Fragen haben, lesen Sie bitte auch die Fragen im FAQ Bereich."
488
 
496
 
497
  #. Description of the plugin/theme
498
  msgid ""
499
+ "Easily add your scripts to the WordPress website's head and footer sections. "
500
+ "This is a must have tool for authors and website's owners."
501
  msgstr ""
502
 
503
  #. Author of the plugin/theme
languages/header-and-footer-scripts-inserter-es_ES.mo CHANGED
Binary file
languages/header-and-footer-scripts-inserter-es_ES.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Head and Footer Scripts Inserter\n"
4
- "POT-Creation-Date: 2017-09-23 04:52+0300\n"
5
- "PO-Revision-Date: 2017-09-24 16:22+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: es\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.8.4\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "X-Poedit-WPHeader: header-and-footer-scripts-inserter.php\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@@ -33,30 +33,30 @@ msgid "Scripts Inserter"
33
  msgstr "Scripts Inserter"
34
 
35
  #: inc/php/messages.php:26
36
- msgid "Hello. I'm Arthur, the author of this plugin."
37
- msgstr "Hola! Yo soy Arthur, el autor de este complemento."
38
 
39
  #: inc/php/messages.php:28
40
  #, php-format
41
- msgid "Thank you for installing my plugin! I hope you will love it! %s"
42
  msgstr "Gracias por instalar este complemento! Espero que te encante! %s"
43
 
44
- #: inc/php/messages.php:61
45
  msgid "You have installed an old version of this plugin."
46
  msgstr "Has instalado una versión antigua de este complemento."
47
 
48
- #: inc/php/messages.php:62
49
  msgid "Please update the plugin to the latest version, and all will be fine."
50
  msgstr "Actualiza el complemento a la versión más reciente y todo estará bien."
51
 
52
- #: inc/php/messages.php:84
53
  msgid "Scripts updated successfully."
54
  msgstr ""
55
 
56
  #: inc/php/page.php:31
57
  #, php-format
58
- msgid "by %s Space X-Chimp Studio %s"
59
- msgstr "por %s Space X-Chimp Studio %s"
60
 
61
  #: inc/php/page.php:37
62
  msgid "Version"
@@ -74,7 +74,7 @@ msgstr "Uso"
74
  msgid "F.A.Q."
75
  msgstr "Preguntas ?"
76
 
77
- #: inc/php/page.php:47 inc/php/settings.php:70 inc/php/sidebar.php:23
78
  msgid "Support"
79
  msgstr "Soporte"
80
 
@@ -122,15 +122,18 @@ msgstr "¡Es así de simple!"
122
  msgid "Note!"
123
  msgstr "¡Nota!"
124
 
125
- #: inc/php/page.php:87
126
- msgid "If you want more options then tell me and I will be happy to add it."
127
- msgstr "Si quieres más opciones, dímelo y estaré encantado de añadirlo."
 
 
 
128
 
129
- #: inc/php/page.php:96
130
  msgid "Frequently Asked Questions"
131
  msgstr "Preguntas Frecuentes"
132
 
133
- #: inc/php/page.php:100
134
  msgid ""
135
  "If you have a question, please read the Frequently Asked Questions below to "
136
  "see if the answer is here."
@@ -138,11 +141,11 @@ msgstr ""
138
  "Si tienes alguna pregunta, por favor lee las Preguntas Frecuentes a "
139
  "continuación, para ver si la respuesta está aquí."
140
 
141
- #: inc/php/page.php:122
142
  msgid "Will this plugin work on my WordPress.COM website?"
143
  msgstr "¿Funcionará este complemento en mi sitio web WordPress.COM?"
144
 
145
- #: inc/php/page.php:123
146
  msgid ""
147
  "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) "
148
  "websites."
@@ -150,11 +153,11 @@ msgstr ""
150
  "Lo sentimos, este complemento está disponible para su uso solo en sitios web "
151
  "alojados (WordPress.ORG)."
152
 
153
- #: inc/php/page.php:125
154
  msgid "Can I use this plugin on my language?"
155
  msgstr "¿Puedo usar este complemento en mi idioma?"
156
 
157
- #: inc/php/page.php:126
158
  msgid ""
159
  "Yes. This plugin is ready for translation and has already been translated "
160
  "into several languages."
@@ -162,22 +165,22 @@ msgstr ""
162
  "Sí. Este complemento está listo para ser traducido y ya ha sido traducido a "
163
  "varios idiomas."
164
 
165
- #: inc/php/page.php:128
166
  #, php-format
167
  msgid ""
168
  "If you want to help translate this plugin then please visit the %s. You can "
169
  "also use the POT file, that is included and placed in the \"languages\" "
170
  "folder, in order to create a translation PO file. Just send the PO file to "
171
- "me at the %s and I will include this translation within the next plugin "
172
  "update."
173
  msgstr ""
174
  "Si quieres ayudar a traducir este complemento, visita el %s. También puede "
175
- "utilizar el archivo POT, incluido y colocado en la carpeta \"languages\", "
176
- "para crear un archivo PO de traducción. Simplemente envíeme el archivo PO en "
177
- "el %s e incluiré esta traducción en la siguiente actualización del "
178
  "complemento."
179
 
180
- #: inc/php/page.php:133
181
  msgid ""
182
  "Maybe not all existed translations are up to date. You are welcome to "
183
  "contribute corrections!"
@@ -185,7 +188,7 @@ msgstr ""
185
  "Quizás no todas las traducciones existentes estén actualizadas. Le invitamos "
186
  "a contribuir correcciones!"
187
 
188
- #: inc/php/page.php:134
189
  msgid ""
190
  "Many of plugin users would be delighted if you share your translation with "
191
  "the community. Thanks for your contribution!"
@@ -193,30 +196,30 @@ msgstr ""
193
  "Muchos de los usuarios de este complemento estarían encantados si compartes "
194
  "tu traducción con la comunidad. ¡Gracias por tu contribución!"
195
 
196
- #: inc/php/page.php:136
197
  msgid "How does it work?"
198
  msgstr "¿Como funciona?"
199
 
200
- #: inc/php/page.php:137
201
  msgid ""
202
  "On the \"Settings\" tab, place your scripts in the field and click the "
203
  "\"Save changes\" button. Enjoy the result of applying your scripts. It's "
204
  "that simple!"
205
  msgstr ""
206
 
207
- #: inc/php/page.php:139
208
  msgid "How much of scripts I can enter in the field?"
209
  msgstr ""
210
 
211
- #: inc/php/page.php:140
212
- msgid "I don't limit the number of characters."
213
  msgstr ""
214
 
215
- #: inc/php/page.php:142
216
  msgid "Does this plugin requires any modification of the theme?"
217
  msgstr "¿Este complemento requiere alguna modificación del tema?"
218
 
219
- #: inc/php/page.php:143
220
  msgid ""
221
  "Absolutely not. This plugin is configurable entirely from the plugin "
222
  "settings page."
@@ -224,22 +227,22 @@ msgstr ""
224
  "Absolutamente NO. Este complemento se puede configurar completamente desde "
225
  "su página de configuración."
226
 
227
- #: inc/php/page.php:145
228
  msgid "Does this require any knowledge of HTML or CSS?"
229
  msgstr "¿Esto requiere algún conocimiento de HTML o CSS?"
230
 
231
- #: inc/php/page.php:146
232
  msgid ""
233
  "This plugin can be configured with no knowledge of HTML or CSS, using an "
234
  "easy-to-use plugin settings page. But you need to know the HTML or CSS in "
235
  "order to add/remove/modify the HTML or CSS code by using this plugin."
236
  msgstr ""
237
 
238
- #: inc/php/page.php:148
239
- msgid "Can I add my script to a specific page of my website?"
240
  msgstr ""
241
 
242
- #: inc/php/page.php:149
243
  msgid ""
244
  "For now, this plugin does not have an option to apply the custom scripts "
245
  "only on specific pages. I plan to add this feature soon. But for now in "
@@ -248,18 +251,18 @@ msgid ""
248
  "need something like this:"
249
  msgstr ""
250
 
251
- #: inc/php/page.php:162
252
  #, php-format
253
  msgid ""
254
  "To apply the PHP code on a website, I can recommend you to use another my "
255
  "plugin called %s."
256
  msgstr ""
257
 
258
- #: inc/php/page.php:166
259
  msgid "It's not working. What could be wrong?"
260
  msgstr "No funciona. ¿Qué podría estar mal?"
261
 
262
- #: inc/php/page.php:167
263
  msgid ""
264
  "As with every plugin, it's possible that things don't work. The most common "
265
  "reason for this is a web browser's cache. Every web browser stores a cache "
@@ -274,28 +277,24 @@ msgstr ""
274
  "se denomina caché del navegador. Limpiar la caché del navegador puede "
275
  "resolver el problema."
276
 
277
- #: inc/php/page.php:168
278
  msgid ""
279
  "It's impossible to tell what could be wrong exactly, but if you post a "
280
- "support request in the plugin's support forum on WordPress.org, I'd be happy "
281
- "to give it a look and try to help out. Please include as much information as "
282
- "possible, including a link to your website where the problem can be seen."
 
283
  msgstr ""
284
- "Es imposible decir exactamente lo que podría estar mal, pero si publicas una "
285
- "solicitud de soporte en el foro de soporte del complemento en WordPress.org, "
286
- "estaría encantado de darle un vistazo e intentar ayudarte. Incluye tanta "
287
- "información como sea posible, incluyendo un enlace a tu sitio web donde se "
288
- "pueda ver el problema."
289
 
290
- #: inc/php/page.php:170
291
  msgid ""
292
- "The last WordPress update is preventing me from editing my website that is "
293
- "using this plugin. Why is this?"
294
  msgstr ""
295
  "La última actualización de WordPress me impide editar mi sitio web que está "
296
  "utilizando este complemento. ¿Porqué sucede esto?"
297
 
298
- #: inc/php/page.php:171
299
  msgid ""
300
  "This plugin can not cause such problem. More likely, the problem are related "
301
  "to the settings of the website. It could just be a cache, so please try to "
@@ -310,73 +309,71 @@ msgstr ""
310
  "luego la caché de tu navegador web. También intenta volver a conectarte al "
311
  "sitio web, esto también puede ayudar."
312
 
313
- #: inc/php/page.php:173
314
  msgid "Where to report bug if found?"
315
  msgstr "¿Dónde informar el error si se encuentra?"
316
 
317
- #: inc/php/page.php:175
318
  #, php-format
319
- msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
320
- msgstr "Visita la página dedicada del complemento %s en GitHub %s e informa."
 
 
321
 
322
- #: inc/php/page.php:181
323
  msgid "Where to share any ideas or suggestions to make the plugin better?"
324
  msgstr "¿Dónde compartir ideas o sugerencias para mejorar el complemento?"
325
 
326
- #: inc/php/page.php:183
327
  #, php-format
328
  msgid ""
329
- "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
 
330
  msgstr ""
331
- "¡Cualquier sugerencia es muy bienvenida! Por favor envíame un correo "
332
- "electrónico a %s. ¡Muchas Gracias!"
333
 
334
- #: inc/php/page.php:188
335
  msgid "I love this plugin! Can I help somehow?"
336
  msgstr "Me encanta este complemento! ¿Puedo ayudar de alguna manera?"
337
 
338
- #: inc/php/page.php:190
339
  #, php-format
340
  msgid ""
341
- "Yes, any financial contributions are welcome! Just visit %s my website %s, "
342
- "click on the donate button, and thank you!"
343
  msgstr ""
344
  "Sí, cualquier contribución financiera es bienvenida! Simplemente visita %s "
345
  "mi sitio web %s, has clic en el botón DONAR y gracias!"
346
 
347
- #: inc/php/page.php:196
348
  msgid "My question wasn't answered here."
349
  msgstr "Mi pregunta no fue contestada aquí."
350
 
351
- #: inc/php/page.php:198
352
  #, php-format
353
  msgid ""
354
- "You can ask your question on the plugin support page %s. But please keep in "
355
- "mind that this plugin is free, and there is no a special support team, so I "
356
- "have no way to answer everyone."
357
  msgstr ""
358
- "Puede hacer tu pregunta en la página de soporte del complementos %s. Pero "
359
- "ten en cuenta que este complemento es gratuito, y no hay un equipo de "
360
- "soporte especial, así que no tengo forma de responder a todos."
361
 
362
- #: inc/php/page.php:211
363
  msgid "Support Me"
364
  msgstr "Apoyarme!"
365
 
366
- #: inc/php/page.php:219 inc/php/settings.php:77 inc/php/sidebar.php:30
367
  msgid "Donate with PayPal"
368
  msgstr "Donar con PayPal"
369
 
370
- #: inc/php/page.php:224
371
  #, php-format
372
  msgid ""
373
  "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-"
374
- "Chimp Studio %s."
375
  msgstr ""
376
  "¡Hola! Mi nombre es %s Arthur Gareginyan %s y soy el fundador de %s Space X-"
377
- "Chimp Studio %s."
378
 
379
- #: inc/php/page.php:232
380
  msgid ""
381
  "My intention is to create projects that will make this world a better place. "
382
  "I'm really passionate about my work, I like what I'm doing and hope that you "
@@ -386,7 +383,7 @@ msgstr ""
386
  "realmente apasionado por mi trabajo, me gusta lo que estoy haciendo y espero "
387
  "que tú también te enriquezcas con mis proyectos."
388
 
389
- #: inc/php/page.php:233
390
  msgid ""
391
  "I spend a lot of time and effort trying to make sure that the themes, "
392
  "plugins and other things I build are useful, and the ultimate proof of that "
@@ -402,11 +399,11 @@ msgstr ""
402
  "contribución me ayuda a cubrir mis costos y me deja pasar más tiempo "
403
  "construyendo cosas para que la gente como tú lo disfrute."
404
 
405
- #: inc/php/page.php:234
406
  msgid "If you appreciate my work, you can buy me a coffee!"
407
  msgstr "Si aprecias mi trabajo, puedes comprarme un café!"
408
 
409
- #: inc/php/page.php:235
410
  msgid "Thank you for your support!"
411
  msgstr "¡Gracias por tu apoyo!"
412
 
@@ -457,7 +454,7 @@ msgid ""
457
  "place plain text in this!"
458
  msgstr ""
459
 
460
- #: inc/php/settings.php:72 inc/php/sidebar.php:25
461
  msgid ""
462
  "I'm an independent developer, without a regular income, so every little "
463
  "contribution helps cover my costs and lets me spend more time building "
@@ -467,7 +464,7 @@ msgstr ""
467
  "pequeña contribución ayuda a cubrir mis costos y me deja pasar más tiempo "
468
  "construyendo cosas para que personas como tú las disfruten."
469
 
470
- #: inc/php/settings.php:79 inc/php/sidebar.php:32
471
  msgid "Thanks for your support!"
472
  msgstr "¡Gracias por tu apoyo!"
473
 
@@ -479,11 +476,11 @@ msgstr "Acerca de"
479
  msgid "This plugin allows you to easily insert scripts in your website."
480
  msgstr ""
481
 
482
- #: inc/php/sidebar.php:37
483
  msgid "Help"
484
  msgstr "Ayuda"
485
 
486
- #: inc/php/sidebar.php:39
487
  msgid "If you have a question, please read the information in the FAQ section."
488
  msgstr ""
489
  "Si tiene alguna pregunta, lee la información en la sección de preguntas "
@@ -510,9 +507,3 @@ msgstr "Arthur Gareginyan"
510
  #. Author URI of the plugin/theme
511
  msgid "https://www.arthurgareginyan.com"
512
  msgstr "https://www.arthurgareginyan.com"
513
-
514
- #~ msgid "by %s Arthur Gareginyan %s"
515
- #~ msgstr "por %s Arthur Gareginyan %s"
516
-
517
- #~ msgid "Author"
518
- #~ msgstr "Autor"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Head and Footer Scripts Inserter\n"
4
+ "POT-Creation-Date: 2018-01-20 14:29+0300\n"
5
+ "PO-Revision-Date: 2018-01-20 16:16+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: es\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.8.7\n"
13
  "X-Poedit-Basepath: ..\n"
14
  "X-Poedit-WPHeader: header-and-footer-scripts-inserter.php\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
33
  msgstr "Scripts Inserter"
34
 
35
  #: inc/php/messages.php:26
36
+ msgid "Hello. We are the team of Space X-Chimp."
37
+ msgstr "Hola! Yo soy Space X-Chimp, el autor de este complemento."
38
 
39
  #: inc/php/messages.php:28
40
  #, php-format
41
+ msgid "Thank you for installing our plugin! We hope you will love it! %s"
42
  msgstr "Gracias por instalar este complemento! Espero que te encante! %s"
43
 
44
+ #: inc/php/messages.php:68
45
  msgid "You have installed an old version of this plugin."
46
  msgstr "Has instalado una versión antigua de este complemento."
47
 
48
+ #: inc/php/messages.php:69
49
  msgid "Please update the plugin to the latest version, and all will be fine."
50
  msgstr "Actualiza el complemento a la versión más reciente y todo estará bien."
51
 
52
+ #: inc/php/messages.php:91
53
  msgid "Scripts updated successfully."
54
  msgstr ""
55
 
56
  #: inc/php/page.php:31
57
  #, php-format
58
+ msgid "by %s Space X-Chimp %s"
59
+ msgstr "por %s Space X-Chimp %s"
60
 
61
  #: inc/php/page.php:37
62
  msgid "Version"
74
  msgid "F.A.Q."
75
  msgstr "Preguntas ?"
76
 
77
+ #: inc/php/page.php:47 inc/php/settings.php:70 inc/php/sidebar.php:30
78
  msgid "Support"
79
  msgstr "Soporte"
80
 
122
  msgid "Note!"
123
  msgstr "¡Nota!"
124
 
125
+ #: inc/php/page.php:88
126
+ #, php-format
127
+ msgid ""
128
+ "If you want more options then %s tell us %s and we will be happy to add it."
129
+ msgstr ""
130
+ "Si quieres más opciones, %s díganos %s y estaremos encantados de añadirlo."
131
 
132
+ #: inc/php/page.php:102
133
  msgid "Frequently Asked Questions"
134
  msgstr "Preguntas Frecuentes"
135
 
136
+ #: inc/php/page.php:106
137
  msgid ""
138
  "If you have a question, please read the Frequently Asked Questions below to "
139
  "see if the answer is here."
141
  "Si tienes alguna pregunta, por favor lee las Preguntas Frecuentes a "
142
  "continuación, para ver si la respuesta está aquí."
143
 
144
+ #: inc/php/page.php:128
145
  msgid "Will this plugin work on my WordPress.COM website?"
146
  msgstr "¿Funcionará este complemento en mi sitio web WordPress.COM?"
147
 
148
+ #: inc/php/page.php:129
149
  msgid ""
150
  "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) "
151
  "websites."
153
  "Lo sentimos, este complemento está disponible para su uso solo en sitios web "
154
  "alojados (WordPress.ORG)."
155
 
156
+ #: inc/php/page.php:131
157
  msgid "Can I use this plugin on my language?"
158
  msgstr "¿Puedo usar este complemento en mi idioma?"
159
 
160
+ #: inc/php/page.php:132
161
  msgid ""
162
  "Yes. This plugin is ready for translation and has already been translated "
163
  "into several languages."
165
  "Sí. Este complemento está listo para ser traducido y ya ha sido traducido a "
166
  "varios idiomas."
167
 
168
+ #: inc/php/page.php:134
169
  #, php-format
170
  msgid ""
171
  "If you want to help translate this plugin then please visit the %s. You can "
172
  "also use the POT file, that is included and placed in the \"languages\" "
173
  "folder, in order to create a translation PO file. Just send the PO file to "
174
+ "us at the %s and we will include this translation within the next plugin "
175
  "update."
176
  msgstr ""
177
  "Si quieres ayudar a traducir este complemento, visita el %s. También puede "
178
+ "utilizar el archivo POT, incluido y colocado en la carpeta languages”, para "
179
+ "crear un archivo PO de traducción. Simplemente envíeme el archivo PO en el "
180
+ "%s e incluiremos esta traducción en la siguiente actualización del "
181
  "complemento."
182
 
183
+ #: inc/php/page.php:139
184
  msgid ""
185
  "Maybe not all existed translations are up to date. You are welcome to "
186
  "contribute corrections!"
188
  "Quizás no todas las traducciones existentes estén actualizadas. Le invitamos "
189
  "a contribuir correcciones!"
190
 
191
+ #: inc/php/page.php:140
192
  msgid ""
193
  "Many of plugin users would be delighted if you share your translation with "
194
  "the community. Thanks for your contribution!"
196
  "Muchos de los usuarios de este complemento estarían encantados si compartes "
197
  "tu traducción con la comunidad. ¡Gracias por tu contribución!"
198
 
199
+ #: inc/php/page.php:142
200
  msgid "How does it work?"
201
  msgstr "¿Como funciona?"
202
 
203
+ #: inc/php/page.php:143
204
  msgid ""
205
  "On the \"Settings\" tab, place your scripts in the field and click the "
206
  "\"Save changes\" button. Enjoy the result of applying your scripts. It's "
207
  "that simple!"
208
  msgstr ""
209
 
210
+ #: inc/php/page.php:145
211
  msgid "How much of scripts I can enter in the field?"
212
  msgstr ""
213
 
214
+ #: inc/php/page.php:146
215
+ msgid "We don't limit the number of characters."
216
  msgstr ""
217
 
218
+ #: inc/php/page.php:148
219
  msgid "Does this plugin requires any modification of the theme?"
220
  msgstr "¿Este complemento requiere alguna modificación del tema?"
221
 
222
+ #: inc/php/page.php:149
223
  msgid ""
224
  "Absolutely not. This plugin is configurable entirely from the plugin "
225
  "settings page."
227
  "Absolutamente NO. Este complemento se puede configurar completamente desde "
228
  "su página de configuración."
229
 
230
+ #: inc/php/page.php:151
231
  msgid "Does this require any knowledge of HTML or CSS?"
232
  msgstr "¿Esto requiere algún conocimiento de HTML o CSS?"
233
 
234
+ #: inc/php/page.php:152
235
  msgid ""
236
  "This plugin can be configured with no knowledge of HTML or CSS, using an "
237
  "easy-to-use plugin settings page. But you need to know the HTML or CSS in "
238
  "order to add/remove/modify the HTML or CSS code by using this plugin."
239
  msgstr ""
240
 
241
+ #: inc/php/page.php:154
242
+ msgid "Can I add my script to a specific page of the website of the creator?"
243
  msgstr ""
244
 
245
+ #: inc/php/page.php:155
246
  msgid ""
247
  "For now, this plugin does not have an option to apply the custom scripts "
248
  "only on specific pages. I plan to add this feature soon. But for now in "
251
  "need something like this:"
252
  msgstr ""
253
 
254
+ #: inc/php/page.php:168
255
  #, php-format
256
  msgid ""
257
  "To apply the PHP code on a website, I can recommend you to use another my "
258
  "plugin called %s."
259
  msgstr ""
260
 
261
+ #: inc/php/page.php:173
262
  msgid "It's not working. What could be wrong?"
263
  msgstr "No funciona. ¿Qué podría estar mal?"
264
 
265
+ #: inc/php/page.php:174
266
  msgid ""
267
  "As with every plugin, it's possible that things don't work. The most common "
268
  "reason for this is a web browser's cache. Every web browser stores a cache "
277
  "se denomina caché del navegador. Limpiar la caché del navegador puede "
278
  "resolver el problema."
279
 
280
+ #: inc/php/page.php:175
281
  msgid ""
282
  "It's impossible to tell what could be wrong exactly, but if you post a "
283
+ "support request in the plugin's support forum on WordPress.org, we'd be "
284
+ "happy to give it a look and try to help out. Please include as much "
285
+ "information as possible, including a link to your website where the problem "
286
+ "can be seen."
287
  msgstr ""
 
 
 
 
 
288
 
289
+ #: inc/php/page.php:177
290
  msgid ""
291
+ "The last WordPress update is preventing me from editing the website of the "
292
+ "creator that is using this plugin. Why is this?"
293
  msgstr ""
294
  "La última actualización de WordPress me impide editar mi sitio web que está "
295
  "utilizando este complemento. ¿Porqué sucede esto?"
296
 
297
+ #: inc/php/page.php:178
298
  msgid ""
299
  "This plugin can not cause such problem. More likely, the problem are related "
300
  "to the settings of the website. It could just be a cache, so please try to "
309
  "luego la caché de tu navegador web. También intenta volver a conectarte al "
310
  "sitio web, esto también puede ayudar."
311
 
312
+ #: inc/php/page.php:180
313
  msgid "Where to report bug if found?"
314
  msgstr "¿Dónde informar el error si se encuentra?"
315
 
316
+ #: inc/php/page.php:182
317
  #, php-format
318
+ msgid ""
319
+ "Please visit %s this page %s and report. Please do not forget to specify the "
320
+ "name of the plugin. Thank you!"
321
+ msgstr ""
322
 
323
+ #: inc/php/page.php:188
324
  msgid "Where to share any ideas or suggestions to make the plugin better?"
325
  msgstr "¿Dónde compartir ideas o sugerencias para mejorar el complemento?"
326
 
327
+ #: inc/php/page.php:190
328
  #, php-format
329
  msgid ""
330
+ "Any suggestions are very welcome! Just contact us %s here %s. Please do not "
331
+ "forget to specify the name of the plugin. Thank you!"
332
  msgstr ""
 
 
333
 
334
+ #: inc/php/page.php:196
335
  msgid "I love this plugin! Can I help somehow?"
336
  msgstr "Me encanta este complemento! ¿Puedo ayudar de alguna manera?"
337
 
338
+ #: inc/php/page.php:198
339
  #, php-format
340
  msgid ""
341
+ "Yes, any financial contributions are welcome! Just visit %s the website of "
342
+ "the creator %s, click on the donate button, and thank you!"
343
  msgstr ""
344
  "Sí, cualquier contribución financiera es bienvenida! Simplemente visita %s "
345
  "mi sitio web %s, has clic en el botón DONAR y gracias!"
346
 
347
+ #: inc/php/page.php:204
348
  msgid "My question wasn't answered here."
349
  msgstr "Mi pregunta no fue contestada aquí."
350
 
351
+ #: inc/php/page.php:206
352
  #, php-format
353
  msgid ""
354
+ "You can ask your question on %s this page %s. But please keep in mind that "
355
+ "this plugin is free, and there is no a special support team, so we have no "
356
+ "way to answer everyone."
357
  msgstr ""
 
 
 
358
 
359
+ #: inc/php/page.php:220
360
  msgid "Support Me"
361
  msgstr "Apoyarme!"
362
 
363
+ #: inc/php/page.php:228 inc/php/settings.php:77 inc/php/sidebar.php:37
364
  msgid "Donate with PayPal"
365
  msgstr "Donar con PayPal"
366
 
367
+ #: inc/php/page.php:233
368
  #, php-format
369
  msgid ""
370
  "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-"
371
+ "Chimp %s."
372
  msgstr ""
373
  "¡Hola! Mi nombre es %s Arthur Gareginyan %s y soy el fundador de %s Space X-"
374
+ "Chimp %s."
375
 
376
+ #: inc/php/page.php:241
377
  msgid ""
378
  "My intention is to create projects that will make this world a better place. "
379
  "I'm really passionate about my work, I like what I'm doing and hope that you "
383
  "realmente apasionado por mi trabajo, me gusta lo que estoy haciendo y espero "
384
  "que tú también te enriquezcas con mis proyectos."
385
 
386
+ #: inc/php/page.php:242
387
  msgid ""
388
  "I spend a lot of time and effort trying to make sure that the themes, "
389
  "plugins and other things I build are useful, and the ultimate proof of that "
399
  "contribución me ayuda a cubrir mis costos y me deja pasar más tiempo "
400
  "construyendo cosas para que la gente como tú lo disfrute."
401
 
402
+ #: inc/php/page.php:243
403
  msgid "If you appreciate my work, you can buy me a coffee!"
404
  msgstr "Si aprecias mi trabajo, puedes comprarme un café!"
405
 
406
+ #: inc/php/page.php:244
407
  msgid "Thank you for your support!"
408
  msgstr "¡Gracias por tu apoyo!"
409
 
454
  "place plain text in this!"
455
  msgstr ""
456
 
457
+ #: inc/php/settings.php:72 inc/php/sidebar.php:32
458
  msgid ""
459
  "I'm an independent developer, without a regular income, so every little "
460
  "contribution helps cover my costs and lets me spend more time building "
464
  "pequeña contribución ayuda a cubrir mis costos y me deja pasar más tiempo "
465
  "construyendo cosas para que personas como tú las disfruten."
466
 
467
+ #: inc/php/settings.php:79 inc/php/sidebar.php:39
468
  msgid "Thanks for your support!"
469
  msgstr "¡Gracias por tu apoyo!"
470
 
476
  msgid "This plugin allows you to easily insert scripts in your website."
477
  msgstr ""
478
 
479
+ #: inc/php/sidebar.php:23
480
  msgid "Help"
481
  msgstr "Ayuda"
482
 
483
+ #: inc/php/sidebar.php:25
484
  msgid "If you have a question, please read the information in the FAQ section."
485
  msgstr ""
486
  "Si tiene alguna pregunta, lee la información en la sección de preguntas "
507
  #. Author URI of the plugin/theme
508
  msgid "https://www.arthurgareginyan.com"
509
  msgstr "https://www.arthurgareginyan.com"
 
 
 
 
 
 
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-09-23 04:52+0300\n"
6
- "PO-Revision-Date: 2017-09-23 04:52+0300\n"
7
  "Last-Translator: psouu <koko887@wp.pl>\n"
8
  "Language-Team: \n"
9
  "Language: pl\n"
@@ -13,7 +13,7 @@ msgstr ""
13
  "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10 >= 2 && n%10<=4 &&(n"
14
  "%100<10||n%100 >= 20)? 1 : 2);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Generator: Poedit 1.8.4\n"
17
  "X-Poedit-Basepath: ..\n"
18
  "X-Poedit-WPHeader: header-and-footer-scripts-inserter.php\n"
19
  "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
@@ -38,29 +38,29 @@ msgid "Scripts Inserter"
38
  msgstr ""
39
 
40
  #: inc/php/messages.php:26
41
- msgid "Hello. I'm Arthur, the author of this plugin."
42
  msgstr ""
43
 
44
  #: inc/php/messages.php:28
45
  #, php-format
46
- msgid "Thank you for installing my plugin! I hope you will love it! %s"
47
  msgstr ""
48
 
49
- #: inc/php/messages.php:61
50
  msgid "You have installed an old version of this plugin."
51
  msgstr ""
52
 
53
- #: inc/php/messages.php:62
54
  msgid "Please update the plugin to the latest version, and all will be fine."
55
  msgstr ""
56
 
57
- #: inc/php/messages.php:84
58
  msgid "Scripts updated successfully."
59
  msgstr ""
60
 
61
  #: inc/php/page.php:31
62
  #, php-format
63
- msgid "by %s Space X-Chimp Studio %s"
64
  msgstr ""
65
 
66
  #: inc/php/page.php:37
@@ -79,7 +79,7 @@ msgstr "Wykorzystanie"
79
  msgid "F.A.Q."
80
  msgstr "FAQ"
81
 
82
- #: inc/php/page.php:47 inc/php/settings.php:70 inc/php/sidebar.php:23
83
  msgid "Support"
84
  msgstr ""
85
 
@@ -127,107 +127,109 @@ msgstr ""
127
  msgid "Note!"
128
  msgstr ""
129
 
130
- #: inc/php/page.php:87
131
- msgid "If you want more options then tell me and I will be happy to add it."
132
- msgstr "Jeśli potrzebujesz więcej opcji napisz mi o tym. Chętnie je dodam."
 
 
133
 
134
- #: inc/php/page.php:96
135
  msgid "Frequently Asked Questions"
136
  msgstr "Często zadawane pytania"
137
 
138
- #: inc/php/page.php:100
139
  msgid ""
140
  "If you have a question, please read the Frequently Asked Questions below to "
141
  "see if the answer is here."
142
  msgstr ""
143
 
144
- #: inc/php/page.php:122
145
  msgid "Will this plugin work on my WordPress.COM website?"
146
  msgstr ""
147
 
148
- #: inc/php/page.php:123
149
  msgid ""
150
  "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) "
151
  "websites."
152
  msgstr ""
153
 
154
- #: inc/php/page.php:125
155
  msgid "Can I use this plugin on my language?"
156
  msgstr ""
157
 
158
- #: inc/php/page.php:126
159
  msgid ""
160
  "Yes. This plugin is ready for translation and has already been translated "
161
  "into several languages."
162
  msgstr ""
163
 
164
- #: inc/php/page.php:128
165
  #, php-format
166
  msgid ""
167
  "If you want to help translate this plugin then please visit the %s. You can "
168
  "also use the POT file, that is included and placed in the \"languages\" "
169
  "folder, in order to create a translation PO file. Just send the PO file to "
170
- "me at the %s and I will include this translation within the next plugin "
171
  "update."
172
  msgstr ""
173
 
174
- #: inc/php/page.php:133
175
  msgid ""
176
  "Maybe not all existed translations are up to date. You are welcome to "
177
  "contribute corrections!"
178
  msgstr ""
179
 
180
- #: inc/php/page.php:134
181
  msgid ""
182
  "Many of plugin users would be delighted if you share your translation with "
183
  "the community. Thanks for your contribution!"
184
  msgstr ""
185
 
186
- #: inc/php/page.php:136
187
  msgid "How does it work?"
188
  msgstr ""
189
 
190
- #: inc/php/page.php:137
191
  msgid ""
192
  "On the \"Settings\" tab, place your scripts in the field and click the "
193
  "\"Save changes\" button. Enjoy the result of applying your scripts. It's "
194
  "that simple!"
195
  msgstr ""
196
 
197
- #: inc/php/page.php:139
198
  msgid "How much of scripts I can enter in the field?"
199
  msgstr ""
200
 
201
- #: inc/php/page.php:140
202
- msgid "I don't limit the number of characters."
203
  msgstr ""
204
 
205
- #: inc/php/page.php:142
206
  msgid "Does this plugin requires any modification of the theme?"
207
  msgstr ""
208
 
209
- #: inc/php/page.php:143
210
  msgid ""
211
  "Absolutely not. This plugin is configurable entirely from the plugin "
212
  "settings page."
213
  msgstr ""
214
 
215
- #: inc/php/page.php:145
216
  msgid "Does this require any knowledge of HTML or CSS?"
217
  msgstr ""
218
 
219
- #: inc/php/page.php:146
220
  msgid ""
221
  "This plugin can be configured with no knowledge of HTML or CSS, using an "
222
  "easy-to-use plugin settings page. But you need to know the HTML or CSS in "
223
  "order to add/remove/modify the HTML or CSS code by using this plugin."
224
  msgstr ""
225
 
226
- #: inc/php/page.php:148
227
- msgid "Can I add my script to a specific page of my website?"
228
  msgstr ""
229
 
230
- #: inc/php/page.php:149
231
  msgid ""
232
  "For now, this plugin does not have an option to apply the custom scripts "
233
  "only on specific pages. I plan to add this feature soon. But for now in "
@@ -236,18 +238,18 @@ msgid ""
236
  "need something like this:"
237
  msgstr ""
238
 
239
- #: inc/php/page.php:162
240
  #, php-format
241
  msgid ""
242
  "To apply the PHP code on a website, I can recommend you to use another my "
243
  "plugin called %s."
244
  msgstr ""
245
 
246
- #: inc/php/page.php:166
247
  msgid "It's not working. What could be wrong?"
248
  msgstr ""
249
 
250
- #: inc/php/page.php:167
251
  msgid ""
252
  "As with every plugin, it's possible that things don't work. The most common "
253
  "reason for this is a web browser's cache. Every web browser stores a cache "
@@ -256,21 +258,22 @@ msgid ""
256
  "browser's cache may solve the problem."
257
  msgstr ""
258
 
259
- #: inc/php/page.php:168
260
  msgid ""
261
  "It's impossible to tell what could be wrong exactly, but if you post a "
262
- "support request in the plugin's support forum on WordPress.org, I'd be happy "
263
- "to give it a look and try to help out. Please include as much information as "
264
- "possible, including a link to your website where the problem can be seen."
 
265
  msgstr ""
266
 
267
- #: inc/php/page.php:170
268
  msgid ""
269
- "The last WordPress update is preventing me from editing my website that is "
270
- "using this plugin. Why is this?"
271
  msgstr ""
272
 
273
- #: inc/php/page.php:171
274
  msgid ""
275
  "This plugin can not cause such problem. More likely, the problem are related "
276
  "to the settings of the website. It could just be a cache, so please try to "
@@ -279,71 +282,74 @@ msgid ""
279
  "please try to re-login to the website, this too can help."
280
  msgstr ""
281
 
282
- #: inc/php/page.php:173
283
  msgid "Where to report bug if found?"
284
  msgstr ""
285
 
286
- #: inc/php/page.php:175
287
  #, php-format
288
- msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
 
 
289
  msgstr ""
290
 
291
- #: inc/php/page.php:181
292
  msgid "Where to share any ideas or suggestions to make the plugin better?"
293
  msgstr ""
294
 
295
- #: inc/php/page.php:183
296
  #, php-format
297
  msgid ""
298
- "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
 
299
  msgstr ""
300
 
301
- #: inc/php/page.php:188
302
  msgid "I love this plugin! Can I help somehow?"
303
  msgstr ""
304
 
305
- #: inc/php/page.php:190
306
  #, php-format
307
  msgid ""
308
- "Yes, any financial contributions are welcome! Just visit %s my website %s, "
309
- "click on the donate button, and thank you!"
310
  msgstr ""
311
 
312
- #: inc/php/page.php:196
313
  msgid "My question wasn't answered here."
314
  msgstr ""
315
 
316
- #: inc/php/page.php:198
317
  #, php-format
318
  msgid ""
319
- "You can ask your question on the plugin support page %s. But please keep in "
320
- "mind that this plugin is free, and there is no a special support team, so I "
321
- "have no way to answer everyone."
322
  msgstr ""
323
 
324
- #: inc/php/page.php:211
325
  msgid "Support Me"
326
  msgstr ""
327
 
328
- #: inc/php/page.php:219 inc/php/settings.php:77 inc/php/sidebar.php:30
329
  msgid "Donate with PayPal"
330
  msgstr ""
331
 
332
- #: inc/php/page.php:224
333
  #, php-format
334
  msgid ""
335
  "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-"
336
- "Chimp Studio %s."
337
  msgstr ""
338
 
339
- #: inc/php/page.php:232
340
  msgid ""
341
  "My intention is to create projects that will make this world a better place. "
342
  "I'm really passionate about my work, I like what I'm doing and hope that you "
343
  "will be enriched by my projects too."
344
  msgstr ""
345
 
346
- #: inc/php/page.php:233
347
  msgid ""
348
  "I spend a lot of time and effort trying to make sure that the themes, "
349
  "plugins and other things I build are useful, and the ultimate proof of that "
@@ -353,11 +359,11 @@ msgid ""
353
  "you to enjoy."
354
  msgstr ""
355
 
356
- #: inc/php/page.php:234
357
  msgid "If you appreciate my work, you can buy me a coffee!"
358
  msgstr ""
359
 
360
- #: inc/php/page.php:235
361
  msgid "Thank you for your support!"
362
  msgstr ""
363
 
@@ -416,14 +422,14 @@ msgstr ""
416
  "Skrypty z tego pola zostaną dodane za skryptami ze stopki. Nie należy tu "
417
  "umieszczać zwykłego tekstu!"
418
 
419
- #: inc/php/settings.php:72 inc/php/sidebar.php:25
420
  msgid ""
421
  "I'm an independent developer, without a regular income, so every little "
422
  "contribution helps cover my costs and lets me spend more time building "
423
  "things for people like you to enjoy."
424
  msgstr ""
425
 
426
- #: inc/php/settings.php:79 inc/php/sidebar.php:32
427
  msgid "Thanks for your support!"
428
  msgstr "Dziękujemy za wsparcie!"
429
 
@@ -435,11 +441,11 @@ msgstr "O wtyczce"
435
  msgid "This plugin allows you to easily insert scripts in your website."
436
  msgstr "Ta wtyczka pozwala łatwo wstawić kod skryptów na stronę www."
437
 
438
- #: inc/php/sidebar.php:37
439
  msgid "Help"
440
  msgstr "Pomoc"
441
 
442
- #: inc/php/sidebar.php:39
443
  msgid "If you have a question, please read the information in the FAQ section."
444
  msgstr "Masz coś do powiedzenia? Potrzebujesz pomocy?"
445
 
@@ -467,86 +473,6 @@ msgstr "Arthur Gareginyan"
467
  msgid "https://www.arthurgareginyan.com"
468
  msgstr "https://www.arthurgareginyan.com"
469
 
470
- #~ msgid "by %s Arthur Gareginyan %s"
471
- #~ msgstr "wykonana przez %s Arthur Gareginyan %s"
472
-
473
- #~ msgid "Author"
474
- #~ msgstr "Autor"
475
-
476
- #~ msgid ""
477
- #~ "by <a href=\"https://www.arthurgareginyan.com\" target=\"_blank\">Arthur "
478
- #~ "Gareginyan</a>"
479
- #~ msgstr ""
480
- #~ "wykonana przez <a href=\"https://www.arthurgareginyan.com\" target="
481
- #~ "\"_blank\">Arthur Gareginyan</a>"
482
-
483
- #~ msgid ""
484
- #~ "To use, enter your custom scripts, then click \"Save changes\". It's that "
485
- #~ "simple!"
486
- #~ msgstr ""
487
- #~ "Aby użyć, wprowadź kod skryptów, a następnie kliknij przycisk \"Zapisz\". "
488
- #~ "To takie proste!"
489
-
490
- #~ msgid "Advertisement"
491
- #~ msgstr "Reklama"
492
-
493
- #~ msgid ""
494
- #~ "If you like this plugin and find it useful, please help me to make this "
495
- #~ "plugin even better and keep it up-to-date."
496
- #~ msgstr ""
497
- #~ "Jeśli lubisz tę wtyczkę uważasz że jest przydatna, pomóż mi aby jeszcze "
498
- #~ "lepsza i bądź na bieżąco z aktualizacjami."
499
-
500
- #~ msgid "Advertising"
501
- #~ msgstr "Reklama"
502
-
503
- #~ msgid ""
504
- #~ "If you like this plugin and find it useful, help me to make this plugin "
505
- #~ "even better and keep it up-to-date."
506
- #~ msgstr ""
507
- #~ "Jeśli lubisz tę wtyczkę uważasz że jest przydatna, pomóż mi aby jeszcze "
508
- #~ "lepsza i bądź na bieżąco z aktualizacjami."
509
-
510
- #~ msgid "Header and Footer Scripts Inserter"
511
- #~ msgstr "Wstawianie kodu do nagłówka i stopki"
512
-
513
- #~ msgid ""
514
- #~ "by <a href=\"https://www.arthurgareginyan.com\" target=\"_blank\">Arthur "
515
- #~ "\"Berserkr\" Gareginyan</a>"
516
- #~ msgstr ""
517
- #~ "wykonana przez <a href=\"https://www.arthurgareginyan.com\" target="
518
- #~ "\"_blank\">Arthura \"Berserkra\" Gareginyana</a>"
519
-
520
- #~ msgid "Header Section"
521
- #~ msgstr "Sekcja: Nagłówek"
522
-
523
- #~ msgid ""
524
- #~ "You can use the field below to add scripts to Header of your website."
525
- #~ msgstr ""
526
- #~ "Pola poniżej można użyć, aby dodać kody skryptów do nagłówka witryny."
527
-
528
- #~ msgid "<!-- Beginning of the <head> tag -->"
529
- #~ msgstr "<!-- Początek sekcji <head> -->"
530
-
531
- #~ msgid "<!-- End of the <head> tag -->"
532
- #~ msgstr "<!-- Koniec sekcji <head> -->"
533
-
534
- #~ msgid ""
535
- #~ "You can use the field below to add scripts to Footer of your website."
536
- #~ msgstr "Pola poniżej można użyć, aby dodać kody skryptów do stopki witryny."
537
-
538
- #~ msgid "<!-- Before a footers scripts -->"
539
- #~ msgstr "<!-- Początek stopki -->"
540
-
541
- #~ msgid "<!-- After all footers scripts -->"
542
- #~ msgstr "<!-- Koniec stopki -->"
543
-
544
  #~ msgid ""
545
- #~ "Easily add your scripts to the WordPress website's head or/and footer "
546
- #~ "section. This is a must have tool for authors and website's owners."
547
- #~ msgstr ""
548
- #~ "Łatwe dodawanie kodu skryptów do nagłówka i stopki strony opartej na "
549
- #~ "WordPressie."
550
-
551
- #~ msgid "Arthur \"Berserkr\" Gareginyan"
552
- #~ msgstr "Arthur \"Berserkr\" Gareginyan"
2
  msgstr ""
3
  "Project-Id-Version: Header and Footer Scripts Inserter\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-01-20 14:29+0300\n"
6
+ "PO-Revision-Date: 2018-01-20 14:29+0300\n"
7
  "Last-Translator: psouu <koko887@wp.pl>\n"
8
  "Language-Team: \n"
9
  "Language: pl\n"
13
  "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10 >= 2 && n%10<=4 &&(n"
14
  "%100<10||n%100 >= 20)? 1 : 2);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Poedit 1.8.7\n"
17
  "X-Poedit-Basepath: ..\n"
18
  "X-Poedit-WPHeader: header-and-footer-scripts-inserter.php\n"
19
  "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
38
  msgstr ""
39
 
40
  #: inc/php/messages.php:26
41
+ msgid "Hello. We are the team of Space X-Chimp."
42
  msgstr ""
43
 
44
  #: inc/php/messages.php:28
45
  #, php-format
46
+ msgid "Thank you for installing our plugin! We hope you will love it! %s"
47
  msgstr ""
48
 
49
+ #: inc/php/messages.php:68
50
  msgid "You have installed an old version of this plugin."
51
  msgstr ""
52
 
53
+ #: inc/php/messages.php:69
54
  msgid "Please update the plugin to the latest version, and all will be fine."
55
  msgstr ""
56
 
57
+ #: inc/php/messages.php:91
58
  msgid "Scripts updated successfully."
59
  msgstr ""
60
 
61
  #: inc/php/page.php:31
62
  #, php-format
63
+ msgid "by %s Space X-Chimp %s"
64
  msgstr ""
65
 
66
  #: inc/php/page.php:37
79
  msgid "F.A.Q."
80
  msgstr "FAQ"
81
 
82
+ #: inc/php/page.php:47 inc/php/settings.php:70 inc/php/sidebar.php:30
83
  msgid "Support"
84
  msgstr ""
85
 
127
  msgid "Note!"
128
  msgstr ""
129
 
130
+ #: inc/php/page.php:88
131
+ #, php-format
132
+ msgid ""
133
+ "If you want more options then %s tell us %s and we will be happy to add it."
134
+ msgstr ""
135
 
136
+ #: inc/php/page.php:102
137
  msgid "Frequently Asked Questions"
138
  msgstr "Często zadawane pytania"
139
 
140
+ #: inc/php/page.php:106
141
  msgid ""
142
  "If you have a question, please read the Frequently Asked Questions below to "
143
  "see if the answer is here."
144
  msgstr ""
145
 
146
+ #: inc/php/page.php:128
147
  msgid "Will this plugin work on my WordPress.COM website?"
148
  msgstr ""
149
 
150
+ #: inc/php/page.php:129
151
  msgid ""
152
  "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) "
153
  "websites."
154
  msgstr ""
155
 
156
+ #: inc/php/page.php:131
157
  msgid "Can I use this plugin on my language?"
158
  msgstr ""
159
 
160
+ #: inc/php/page.php:132
161
  msgid ""
162
  "Yes. This plugin is ready for translation and has already been translated "
163
  "into several languages."
164
  msgstr ""
165
 
166
+ #: inc/php/page.php:134
167
  #, php-format
168
  msgid ""
169
  "If you want to help translate this plugin then please visit the %s. You can "
170
  "also use the POT file, that is included and placed in the \"languages\" "
171
  "folder, in order to create a translation PO file. Just send the PO file to "
172
+ "us at the %s and we will include this translation within the next plugin "
173
  "update."
174
  msgstr ""
175
 
176
+ #: inc/php/page.php:139
177
  msgid ""
178
  "Maybe not all existed translations are up to date. You are welcome to "
179
  "contribute corrections!"
180
  msgstr ""
181
 
182
+ #: inc/php/page.php:140
183
  msgid ""
184
  "Many of plugin users would be delighted if you share your translation with "
185
  "the community. Thanks for your contribution!"
186
  msgstr ""
187
 
188
+ #: inc/php/page.php:142
189
  msgid "How does it work?"
190
  msgstr ""
191
 
192
+ #: inc/php/page.php:143
193
  msgid ""
194
  "On the \"Settings\" tab, place your scripts in the field and click the "
195
  "\"Save changes\" button. Enjoy the result of applying your scripts. It's "
196
  "that simple!"
197
  msgstr ""
198
 
199
+ #: inc/php/page.php:145
200
  msgid "How much of scripts I can enter in the field?"
201
  msgstr ""
202
 
203
+ #: inc/php/page.php:146
204
+ msgid "We don't limit the number of characters."
205
  msgstr ""
206
 
207
+ #: inc/php/page.php:148
208
  msgid "Does this plugin requires any modification of the theme?"
209
  msgstr ""
210
 
211
+ #: inc/php/page.php:149
212
  msgid ""
213
  "Absolutely not. This plugin is configurable entirely from the plugin "
214
  "settings page."
215
  msgstr ""
216
 
217
+ #: inc/php/page.php:151
218
  msgid "Does this require any knowledge of HTML or CSS?"
219
  msgstr ""
220
 
221
+ #: inc/php/page.php:152
222
  msgid ""
223
  "This plugin can be configured with no knowledge of HTML or CSS, using an "
224
  "easy-to-use plugin settings page. But you need to know the HTML or CSS in "
225
  "order to add/remove/modify the HTML or CSS code by using this plugin."
226
  msgstr ""
227
 
228
+ #: inc/php/page.php:154
229
+ msgid "Can I add my script to a specific page of the website of the creator?"
230
  msgstr ""
231
 
232
+ #: inc/php/page.php:155
233
  msgid ""
234
  "For now, this plugin does not have an option to apply the custom scripts "
235
  "only on specific pages. I plan to add this feature soon. But for now in "
238
  "need something like this:"
239
  msgstr ""
240
 
241
+ #: inc/php/page.php:168
242
  #, php-format
243
  msgid ""
244
  "To apply the PHP code on a website, I can recommend you to use another my "
245
  "plugin called %s."
246
  msgstr ""
247
 
248
+ #: inc/php/page.php:173
249
  msgid "It's not working. What could be wrong?"
250
  msgstr ""
251
 
252
+ #: inc/php/page.php:174
253
  msgid ""
254
  "As with every plugin, it's possible that things don't work. The most common "
255
  "reason for this is a web browser's cache. Every web browser stores a cache "
258
  "browser's cache may solve the problem."
259
  msgstr ""
260
 
261
+ #: inc/php/page.php:175
262
  msgid ""
263
  "It's impossible to tell what could be wrong exactly, but if you post a "
264
+ "support request in the plugin's support forum on WordPress.org, we'd be "
265
+ "happy to give it a look and try to help out. Please include as much "
266
+ "information as possible, including a link to your website where the problem "
267
+ "can be seen."
268
  msgstr ""
269
 
270
+ #: inc/php/page.php:177
271
  msgid ""
272
+ "The last WordPress update is preventing me from editing the website of the "
273
+ "creator that is using this plugin. Why is this?"
274
  msgstr ""
275
 
276
+ #: inc/php/page.php:178
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:180
286
  msgid "Where to report bug if found?"
287
  msgstr ""
288
 
289
+ #: inc/php/page.php:182
290
  #, php-format
291
+ msgid ""
292
+ "Please visit %s this page %s and report. Please do not forget to specify the "
293
+ "name of the plugin. Thank you!"
294
  msgstr ""
295
 
296
+ #: inc/php/page.php:188
297
  msgid "Where to share any ideas or suggestions to make the plugin better?"
298
  msgstr ""
299
 
300
+ #: inc/php/page.php:190
301
  #, php-format
302
  msgid ""
303
+ "Any suggestions are very welcome! Just contact us %s here %s. Please do not "
304
+ "forget to specify the name of the plugin. Thank you!"
305
  msgstr ""
306
 
307
+ #: inc/php/page.php:196
308
  msgid "I love this plugin! Can I help somehow?"
309
  msgstr ""
310
 
311
+ #: inc/php/page.php:198
312
  #, php-format
313
  msgid ""
314
+ "Yes, any financial contributions are welcome! Just visit %s the website of "
315
+ "the creator %s, click on the donate button, and thank you!"
316
  msgstr ""
317
 
318
+ #: inc/php/page.php:204
319
  msgid "My question wasn't answered here."
320
  msgstr ""
321
 
322
+ #: inc/php/page.php:206
323
  #, php-format
324
  msgid ""
325
+ "You can ask your question on %s this page %s. But please keep in mind that "
326
+ "this plugin is free, and there is no a special support team, so we have no "
327
+ "way to answer everyone."
328
  msgstr ""
329
 
330
+ #: inc/php/page.php:220
331
  msgid "Support Me"
332
  msgstr ""
333
 
334
+ #: inc/php/page.php:228 inc/php/settings.php:77 inc/php/sidebar.php:37
335
  msgid "Donate with PayPal"
336
  msgstr ""
337
 
338
+ #: inc/php/page.php:233
339
  #, php-format
340
  msgid ""
341
  "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-"
342
+ "Chimp %s."
343
  msgstr ""
344
 
345
+ #: inc/php/page.php:241
346
  msgid ""
347
  "My intention is to create projects that will make this world a better place. "
348
  "I'm really passionate about my work, I like what I'm doing and hope that you "
349
  "will be enriched by my projects too."
350
  msgstr ""
351
 
352
+ #: inc/php/page.php:242
353
  msgid ""
354
  "I spend a lot of time and effort trying to make sure that the themes, "
355
  "plugins and other things I build are useful, and the ultimate proof of that "
359
  "you to enjoy."
360
  msgstr ""
361
 
362
+ #: inc/php/page.php:243
363
  msgid "If you appreciate my work, you can buy me a coffee!"
364
  msgstr ""
365
 
366
+ #: inc/php/page.php:244
367
  msgid "Thank you for your support!"
368
  msgstr ""
369
 
422
  "Skrypty z tego pola zostaną dodane za skryptami ze stopki. Nie należy tu "
423
  "umieszczać zwykłego tekstu!"
424
 
425
+ #: inc/php/settings.php:72 inc/php/sidebar.php:32
426
  msgid ""
427
  "I'm an independent developer, without a regular income, so every little "
428
  "contribution helps cover my costs and lets me spend more time building "
429
  "things for people like you to enjoy."
430
  msgstr ""
431
 
432
+ #: inc/php/settings.php:79 inc/php/sidebar.php:39
433
  msgid "Thanks for your support!"
434
  msgstr "Dziękujemy za wsparcie!"
435
 
441
  msgid "This plugin allows you to easily insert scripts in your website."
442
  msgstr "Ta wtyczka pozwala łatwo wstawić kod skryptów na stronę www."
443
 
444
+ #: inc/php/sidebar.php:23
445
  msgid "Help"
446
  msgstr "Pomoc"
447
 
448
+ #: inc/php/sidebar.php:25
449
  msgid "If you have a question, please read the information in the FAQ section."
450
  msgstr "Masz coś do powiedzenia? Potrzebujesz pomocy?"
451
 
473
  msgid "https://www.arthurgareginyan.com"
474
  msgstr "https://www.arthurgareginyan.com"
475
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
476
  #~ msgid ""
477
+ #~ "If you want more options then tell us and we will be happy to add it."
478
+ #~ msgstr "Jeśli potrzebujesz więcej opcji napisz mi o tym. Chętnie je dodam."
 
 
 
 
 
 
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-09-23 04:53+0300\n"
5
- "PO-Revision-Date: 2017-09-23 04:53+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ru\n"
@@ -11,7 +11,7 @@ msgstr ""
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
13
  "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
14
- "X-Generator: Poedit 1.8.4\n"
15
  "X-Poedit-Basepath: ..\n"
16
  "X-Poedit-WPHeader: header-and-footer-scripts-inserter.php\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
@@ -34,30 +34,31 @@ msgid "Scripts Inserter"
34
  msgstr "Scripts Inserter"
35
 
36
  #: inc/php/messages.php:26
37
- msgid "Hello. I'm Arthur, the author of this plugin."
38
- msgstr "Привет! Я Артур, автор этого плагина."
39
 
40
  #: inc/php/messages.php:28
41
  #, php-format
42
- msgid "Thank you for installing my plugin! I hope you will love it! %s"
43
- msgstr "Спасибо, что установили мой плагин! Надеюсь, что он вам полюбится! %s"
 
44
 
45
- #: inc/php/messages.php:61
46
  msgid "You have installed an old version of this plugin."
47
  msgstr "Вы установили устаревшую версию этого плагина."
48
 
49
- #: inc/php/messages.php:62
50
  msgid "Please update the plugin to the latest version, and all will be fine."
51
  msgstr "Пожалуйста, обновите плагин до последней версии и всё будет отлично."
52
 
53
- #: inc/php/messages.php:84
54
  msgid "Scripts updated successfully."
55
  msgstr "Скрипты успешно обновлены."
56
 
57
  #: inc/php/page.php:31
58
  #, php-format
59
- msgid "by %s Space X-Chimp Studio %s"
60
- msgstr "от %s Space X-Chimp Studio %s"
61
 
62
  #: inc/php/page.php:37
63
  msgid "Version"
@@ -75,7 +76,7 @@ msgstr "Применение"
75
  msgid "F.A.Q."
76
  msgstr "F.A.Q."
77
 
78
- #: inc/php/page.php:47 inc/php/settings.php:70 inc/php/sidebar.php:23
79
  msgid "Support"
80
  msgstr "Поддержка"
81
 
@@ -128,27 +129,29 @@ msgstr "Вот так просто!"
128
  msgid "Note!"
129
  msgstr "Примечание!"
130
 
131
- #: inc/php/page.php:87
132
- msgid "If you want more options then tell me and I will be happy to add it."
 
 
133
  msgstr ""
134
- "Если вы хотите больше опций, то скажите мне об этом и я буду счастлив "
135
  "добавить их."
136
 
137
- #: inc/php/page.php:96
138
  msgid "Frequently Asked Questions"
139
  msgstr "Часто задаваемые вопросы"
140
 
141
- #: inc/php/page.php:100
142
  msgid ""
143
  "If you have a question, please read the Frequently Asked Questions below to "
144
  "see if the answer is here."
145
  msgstr "Если у вас есть вопрос, пожалуйста, прочтите часто задаваемые вопросы."
146
 
147
- #: inc/php/page.php:122
148
  msgid "Will this plugin work on my WordPress.COM website?"
149
  msgstr "Этот плагин будет работать на моем сайте WordPress.COM?"
150
 
151
- #: inc/php/page.php:123
152
  msgid ""
153
  "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) "
154
  "websites."
@@ -156,37 +159,37 @@ msgstr ""
156
  "К сожалению, этот плагин доступен для использования только на самостоятельно "
157
  "размещённых веб-сайтах (WordPress.ORG)."
158
 
159
- #: inc/php/page.php:125
160
  msgid "Can I use this plugin on my language?"
161
  msgstr "Можно ли использовать этот плагин на моём языке?"
162
 
163
- #: inc/php/page.php:126
164
  msgid ""
165
  "Yes. This plugin is ready for translation and has already been translated "
166
  "into several languages."
167
  msgstr "Да. Этот плагин готов к переводу и уже переведен на несколько языков."
168
 
169
- #: inc/php/page.php:128
170
  #, php-format
171
  msgid ""
172
  "If you want to help translate this plugin then please visit the %s. You can "
173
  "also use the POT file, that is included and placed in the \"languages\" "
174
  "folder, in order to create a translation PO file. Just send the PO file to "
175
- "me at the %s and I will include this translation within the next plugin "
176
  "update."
177
  msgstr ""
178
  "Если вы хотите помочь перевести этот плагин, пожалуйста, посетите %s. Вы "
179
  "также можете использовать файл POT, который включён в плагин и помещён в "
180
- "папку «languages», чтобы создать PO файл перевода. Просто отправьте мне файл "
181
- "PO на %s и Я включу этот перевод в следующее обновление плагина."
182
 
183
- #: inc/php/page.php:133
184
  msgid ""
185
  "Maybe not all existed translations are up to date. You are welcome to "
186
  "contribute corrections!"
187
  msgstr "Может быть, не все переводы обновлены. Вы можете внести исправления!"
188
 
189
- #: inc/php/page.php:134
190
  msgid ""
191
  "Many of plugin users would be delighted if you share your translation with "
192
  "the community. Thanks for your contribution!"
@@ -194,11 +197,11 @@ msgstr ""
194
  "Многие пользователи плагинов будут рады, если вы поделитесь своим переводом "
195
  "с сообществом. Спасибо за ваш вклад!"
196
 
197
- #: inc/php/page.php:136
198
  msgid "How does it work?"
199
  msgstr "Как оно работает?"
200
 
201
- #: inc/php/page.php:137
202
  msgid ""
203
  "On the \"Settings\" tab, place your scripts in the field and click the "
204
  "\"Save changes\" button. Enjoy the result of applying your scripts. It's "
@@ -208,19 +211,19 @@ msgstr ""
208
  "«Сохранить изменения». Наслаждайтесь результатом применения ваших скриптов. "
209
  "Это так просто!"
210
 
211
- #: inc/php/page.php:139
212
  msgid "How much of scripts I can enter in the field?"
213
  msgstr "Сколько скриптов я могу ввести в текстовое поле?"
214
 
215
- #: inc/php/page.php:140
216
- msgid "I don't limit the number of characters."
217
  msgstr "Я не ограничиваю количество символов."
218
 
219
- #: inc/php/page.php:142
220
  msgid "Does this plugin requires any modification of the theme?"
221
  msgstr "Этот плагин требует изменения темы?"
222
 
223
- #: inc/php/page.php:143
224
  msgid ""
225
  "Absolutely not. This plugin is configurable entirely from the plugin "
226
  "settings page."
@@ -228,11 +231,11 @@ msgstr ""
228
  "Абсолютно нет. Этот плагин настраивается полностью на странице настроек "
229
  "плагина."
230
 
231
- #: inc/php/page.php:145
232
  msgid "Does this require any knowledge of HTML or CSS?"
233
  msgstr "Требуются ли какие-либо знания HTML или CSS?"
234
 
235
- #: inc/php/page.php:146
236
  msgid ""
237
  "This plugin can be configured with no knowledge of HTML or CSS, using an "
238
  "easy-to-use plugin settings page. But you need to know the HTML or CSS in "
@@ -243,12 +246,12 @@ msgstr ""
243
  "для того, чтобы добавить/удалить/изменить код HTML или CSS, используя этот "
244
  "плагин."
245
 
246
- #: inc/php/page.php:148
247
- msgid "Can I add my script to a specific page of my website?"
248
  msgstr ""
249
  "Могу ли я добавить свой скрипт на определенную страницу моего веб-сайта?"
250
 
251
- #: inc/php/page.php:149
252
  msgid ""
253
  "For now, this plugin does not have an option to apply the custom scripts "
254
  "only on specific pages. I plan to add this feature soon. But for now in "
@@ -262,7 +265,7 @@ msgstr ""
262
  "страницах вашего сайта, вам нужно обернуть свой скрипт в PHP-код, который "
263
  "будет определять страницу, которая вам нужна. Вам нужно что-то вроде этого:"
264
 
265
- #: inc/php/page.php:162
266
  #, php-format
267
  msgid ""
268
  "To apply the PHP code on a website, I can recommend you to use another my "
@@ -271,11 +274,11 @@ msgstr ""
271
  "Чтобы применить PHP-код на веб-сайте, я могу порекомендовать вам "
272
  "использовать другой мой плагин, называемый %s."
273
 
274
- #: inc/php/page.php:166
275
  msgid "It's not working. What could be wrong?"
276
  msgstr "Оно не работает. Что может быть не так?"
277
 
278
- #: inc/php/page.php:167
279
  msgid ""
280
  "As with every plugin, it's possible that things don't work. The most common "
281
  "reason for this is a web browser's cache. Every web browser stores a cache "
@@ -290,28 +293,28 @@ msgstr ""
290
  "сервер. Это называется кешем браузера. Очистка кеша браузера может решить "
291
  "проблему."
292
 
293
- #: inc/php/page.php:168
294
  msgid ""
295
  "It's impossible to tell what could be wrong exactly, but if you post a "
296
- "support request in the plugin's support forum on WordPress.org, I'd be happy "
297
- "to give it a look and try to help out. Please include as much information as "
298
- "possible, including a link to your website where the problem can be seen."
 
299
  msgstr ""
300
  "Невозможно точно сказать, что может быть неправильно, но если вы разместите "
301
- "запрос поддержки на форуме поддержки плагинов на WordPress.org, Я с "
302
- "удовольствием посмотрю его и попытаюсь помочь. Пожалуйста, укажите как можно "
303
- "больше информации, включая ссылку на ваш сайт, на котором можно увидеть "
304
- "проблему."
305
 
306
- #: inc/php/page.php:170
307
  msgid ""
308
- "The last WordPress update is preventing me from editing my website that is "
309
- "using this plugin. Why is this?"
310
  msgstr ""
311
  "Последнее обновление WordPress не позволяет мне редактировать мой сайт, "
312
  "который использует этот плагин. Почему так?"
313
 
314
- #: inc/php/page.php:171
315
  msgid ""
316
  "This plugin can not cause such problem. More likely, the problem are related "
317
  "to the settings of the website. It could just be a cache, so please try to "
@@ -325,75 +328,78 @@ msgstr ""
325
  "веб-сервис, такой как CloudFlare), а затем кеш вашего веб-браузера. Также "
326
  "попробуйте повторно войти на сайт, это тоже может помочь."
327
 
328
- #: inc/php/page.php:173
329
  msgid "Where to report bug if found?"
330
  msgstr "Где можно сообщить об ошибке?"
331
 
332
- #: inc/php/page.php:175
333
  #, php-format
334
- msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
 
 
335
  msgstr ""
336
- "Пожалуйста, посетите %s страницу плагина на GitHub %s и сообщите об ошибке."
 
337
 
338
- #: inc/php/page.php:181
339
  msgid "Where to share any ideas or suggestions to make the plugin better?"
340
  msgstr ""
341
  "Где можно поделиться идеями или предложениями, чтобы сделать плагин лучше?"
342
 
343
- #: inc/php/page.php:183
344
  #, php-format
345
  msgid ""
346
- "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
 
347
  msgstr ""
348
- "Любые предложения приветствуются! Пожалуйста, пришлите мне электронное "
349
- "письмо на адрес %s. Спасибо!"
350
 
351
- #: inc/php/page.php:188
352
  msgid "I love this plugin! Can I help somehow?"
353
  msgstr "Мне нравится этот плагин! Могу Я чем-то помочь?"
354
 
355
- #: inc/php/page.php:190
356
  #, php-format
357
  msgid ""
358
- "Yes, any financial contributions are welcome! Just visit %s my website %s, "
359
- "click on the donate button, and thank you!"
360
  msgstr ""
361
  "Да, любые финансовые взносы приветствуются! Просто посетите %s мой сайт %s, "
362
  "нажмите на кнопку пожертвования. Спасибо!"
363
 
364
- #: inc/php/page.php:196
365
  msgid "My question wasn't answered here."
366
  msgstr "Моего вопроса здесь нет."
367
 
368
- #: inc/php/page.php:198
369
  #, php-format
370
  msgid ""
371
- "You can ask your question on the plugin support page %s. But please keep in "
372
- "mind that this plugin is free, and there is no a special support team, so I "
373
- "have no way to answer everyone."
374
  msgstr ""
375
- "Вы можете задать ваш вопрос на странице поддержки плагина %s. Но имейте в "
376
- "виду, что этот плагин является бесплатным и без специальной поддержки, "
377
- "поэтому у меня нет возможности ответить на все вопросы."
378
 
379
- #: inc/php/page.php:211
380
  msgid "Support Me"
381
  msgstr "Поддержать меня"
382
 
383
- #: inc/php/page.php:219 inc/php/settings.php:77 inc/php/sidebar.php:30
384
  msgid "Donate with PayPal"
385
  msgstr "Пожертвовать через PayPal"
386
 
387
- #: inc/php/page.php:224
388
  #, php-format
389
  msgid ""
390
  "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-"
391
- "Chimp Studio %s."
392
  msgstr ""
393
- "Привет! Меня зовут %s Артур Гарегинян %s и Я основатель %s Space X-Chimp "
394
- "Studio %s."
395
 
396
- #: inc/php/page.php:232
397
  msgid ""
398
  "My intention is to create projects that will make this world a better place. "
399
  "I'm really passionate about my work, I like what I'm doing and hope that you "
@@ -403,7 +409,7 @@ msgstr ""
403
  "увлечен своей работой, мне нравится то, что Я делаю и надеюсь, что вы тоже "
404
  "станете лучше благодаря моим проектам."
405
 
406
- #: inc/php/page.php:233
407
  msgid ""
408
  "I spend a lot of time and effort trying to make sure that the themes, "
409
  "plugins and other things I build are useful, and the ultimate proof of that "
@@ -419,11 +425,11 @@ msgstr ""
419
  "вклад помогает мне покрыть расходы и позволяет тратить больше времени на "
420
  "создание программ для людей как вы."
421
 
422
- #: inc/php/page.php:234
423
  msgid "If you appreciate my work, you can buy me a coffee!"
424
  msgstr "Если вы цените мою работу, то вы можете купить мне кофе!"
425
 
426
- #: inc/php/page.php:235
427
  msgid "Thank you for your support!"
428
  msgstr "Спасибо за вашу поддержку!"
429
 
@@ -486,7 +492,7 @@ msgstr ""
486
  "Скрипты из этой области будут напечатаны в конце нижнего колонтитула. Не "
487
  "помещайте сюда обычный текст!"
488
 
489
- #: inc/php/settings.php:72 inc/php/sidebar.php:25
490
  msgid ""
491
  "I'm an independent developer, without a regular income, so every little "
492
  "contribution helps cover my costs and lets me spend more time building "
@@ -496,7 +502,7 @@ msgstr ""
496
  "вклад помогает мне покрыть затраты и позволяет тратить больше времени на "
497
  "создание программ для людей как вы."
498
 
499
- #: inc/php/settings.php:79 inc/php/sidebar.php:32
500
  msgid "Thanks for your support!"
501
  msgstr "Спасибо за вашу поддержку!"
502
 
@@ -508,11 +514,11 @@ msgstr "О плагине"
508
  msgid "This plugin allows you to easily insert scripts in your website."
509
  msgstr "Этот плагин позволяет легко вставлять скрипты в ваш веб-сайте."
510
 
511
- #: inc/php/sidebar.php:37
512
  msgid "Help"
513
  msgstr "Помощь"
514
 
515
- #: inc/php/sidebar.php:39
516
  msgid "If you have a question, please read the information in the FAQ section."
517
  msgstr ""
518
  "Если у вас есть вопрос, пожалуйста ознакомьтесь с информацией в разделе FAQ."
@@ -541,120 +547,3 @@ msgstr "Артур Гарегинян"
541
  #. Author URI of the plugin/theme
542
  msgid "https://www.arthurgareginyan.com"
543
  msgstr "https://www.arthurgareginyan.com"
544
-
545
- #~ msgid "by %s Arthur Gareginyan %s"
546
- #~ msgstr "от %s Артура Гарегинян %s"
547
-
548
- #~ msgid "Author"
549
- #~ msgstr "Автор"
550
-
551
- #~ msgid "Family"
552
- #~ msgstr "Семья"
553
-
554
- #~ msgid "You can contact me by email %s"
555
- #~ msgstr "Вы можете связаться со мной по электронной почте %s"
556
-
557
- #~ msgid "Thank you for installing my plugin! I hope you will love it %s"
558
- #~ msgstr ""
559
- #~ "Спасибо, что установили мой плагин! Надеюсь, что он вам полюбится %s"
560
-
561
- #~ msgid ""
562
- #~ "Note that this fields are for inserting HTML code, so JavaScript and CSS "
563
- #~ "code must be wrapped in the corresponding HTML tag. For JavaScript code "
564
- #~ "use the `&lt;script&gt;` tag, and for CSS code use the `&lt;style&gt;` "
565
- #~ "tag. Example:"
566
- #~ msgstr ""
567
- #~ "Обратите внимание на то, что эти поля рассчитаны на добавление HTML кода, "
568
- #~ "а JavaScript и CSS код необходимо обернуть в соотвествующий HTML тег. Для "
569
- #~ "JavaScript кода используйте `&lt;script&gt;` тег, а для CSS кода "
570
- #~ "используйте `&lt;style&gt;` тег. Пример:"
571
-
572
- #~ msgid ""
573
- #~ "by <a href=\"https://www.arthurgareginyan.com\" target=\"_blank\">Arthur "
574
- #~ "Gareginyan</a>"
575
- #~ msgstr ""
576
- #~ "от <a href=\"https://www.arthurgareginyan.com\" target=\"_blank\">Артур "
577
- #~ "Гарегинян</a>"
578
-
579
- #~ msgid "Using"
580
- #~ msgstr "Как пользоваться"
581
-
582
- #~ msgid ""
583
- #~ "To use, enter your custom scripts, then click \"Save changes\". It's that "
584
- #~ "simple!"
585
- #~ msgstr ""
586
- #~ "Для использования, вставьте ваши пользовательские скрипты, затем нажмите "
587
- #~ "кнопку “Сохранить изменения”. Это так просто!"
588
-
589
- #~ msgid ""
590
- #~ "It's that simple! If you want more options then tell me and I will be "
591
- #~ "happy to add it."
592
- #~ msgstr ""
593
- #~ "Это так просто! Если вы хотите иметь больше опций, то скажите мне об этом "
594
- #~ "и я буду счастлив добавить их."
595
-
596
- #~ msgid "Advertisement"
597
- #~ msgstr "Реклама"
598
-
599
- #~ msgid ""
600
- #~ "If you like this plugin and find it useful, please help me to make this "
601
- #~ "plugin even better and keep it up-to-date."
602
- #~ msgstr ""
603
- #~ "Если вам нравится этот плагин и вы находите его полезным, то пожалуйста "
604
- #~ "помогите мне сделать его ещё лучше."
605
-
606
- #~ msgid "Advertising"
607
- #~ msgstr "Реклама"
608
-
609
- #~ msgid ""
610
- #~ "If you like this plugin and find it useful, help me to make this plugin "
611
- #~ "even better and keep it up-to-date."
612
- #~ msgstr ""
613
- #~ "Если вам нравится этот плагин и вы находите его полезным, то помогите мне "
614
- #~ "сделать его ещё лучше."
615
-
616
- #~ msgid "Freelance"
617
- #~ msgstr "Фриланс"
618
-
619
- #~ msgid ""
620
- #~ "Hello, my name is Arthur and I'm a freelance web designer and developer."
621
- #~ msgstr "Привет, меня зовут Артур и Я внештатный веб-дизайнер и разработчик."
622
-
623
- #~ msgid ""
624
- #~ "Share your thoughts with me. You may have a brilliant idea in your mind "
625
- #~ "and I can make it happen, so let’s get started!"
626
- #~ msgstr ""
627
- #~ "Поделитесь со мной своими мыслями. У вас может быть блестящая идея в уме, "
628
- #~ "а я могу сделать её явью, так что давайте начнём!"
629
-
630
- #~ msgid ""
631
- #~ "by <a href=\"https://www.arthurgareginyan.com\" target=\"_blank\">Arthur "
632
- #~ "\"Berserkr\" Gareginyan</a>"
633
- #~ msgstr ""
634
- #~ "от <a href=“https://www.arthurgareginyan.com” target=“_blank”>Артур "
635
- #~ "“Berserkr” Гарегинян</a>"
636
-
637
- #~ msgid "Header Section"
638
- #~ msgstr "Раздел HEADER"
639
-
640
- #~ msgid ""
641
- #~ "You can use the field below to add scripts to Header of your website."
642
- #~ msgstr ""
643
- #~ "Используйте поле расположение ниже для того, чтобы добавить скрипты в "
644
- #~ "верхний колонтитул вашего сайта."
645
-
646
- #~ msgid ""
647
- #~ "You can use the field below to add scripts to Footer of your website."
648
- #~ msgstr ""
649
- #~ "Используйте поле расположение ниже для того, чтобы добавить скрипты в "
650
- #~ "нижний колонтитул вашего сайта."
651
-
652
- #~ msgid ""
653
- #~ "Easily add your scripts to the WordPress website's head or/and footer "
654
- #~ "section. This is a must have tool for authors and website's owners."
655
- #~ msgstr ""
656
- #~ "Легко добавляйте ваши скрипты в шапку и/или колонтитул вашего WordPress "
657
- #~ "веб-сайта. Это необходимый инструмент для авторов и владельцев веб-сайтов."
658
-
659
- #~ msgid "Arthur \"Berserkr\" Gareginyan"
660
- #~ msgstr "Артур “Берсеркр” Гарегинян"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Header and Footer Scripts Inserter\n"
4
+ "POT-Creation-Date: 2018-01-20 14:31+0300\n"
5
+ "PO-Revision-Date: 2018-01-20 14:31+0300\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: ru\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
13
  "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
14
+ "X-Generator: Poedit 1.8.7\n"
15
  "X-Poedit-Basepath: ..\n"
16
  "X-Poedit-WPHeader: header-and-footer-scripts-inserter.php\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
34
  msgstr "Scripts Inserter"
35
 
36
  #: inc/php/messages.php:26
37
+ msgid "Hello. We are the team of Space X-Chimp."
38
+ msgstr "Привет! Мы - команда Space X-Chimp."
39
 
40
  #: inc/php/messages.php:28
41
  #, php-format
42
+ msgid "Thank you for installing our plugin! We hope you will love it! %s"
43
+ msgstr ""
44
+ "Благодарим вас за установку нашего плагина! Надеемся, он вам полюбится! %s"
45
 
46
+ #: inc/php/messages.php:68
47
  msgid "You have installed an old version of this plugin."
48
  msgstr "Вы установили устаревшую версию этого плагина."
49
 
50
+ #: inc/php/messages.php:69
51
  msgid "Please update the plugin to the latest version, and all will be fine."
52
  msgstr "Пожалуйста, обновите плагин до последней версии и всё будет отлично."
53
 
54
+ #: inc/php/messages.php:91
55
  msgid "Scripts updated successfully."
56
  msgstr "Скрипты успешно обновлены."
57
 
58
  #: inc/php/page.php:31
59
  #, php-format
60
+ msgid "by %s Space X-Chimp %s"
61
+ msgstr "от %s Space X-Chimp %s"
62
 
63
  #: inc/php/page.php:37
64
  msgid "Version"
76
  msgid "F.A.Q."
77
  msgstr "F.A.Q."
78
 
79
+ #: inc/php/page.php:47 inc/php/settings.php:70 inc/php/sidebar.php:30
80
  msgid "Support"
81
  msgstr "Поддержка"
82
 
129
  msgid "Note!"
130
  msgstr "Примечание!"
131
 
132
+ #: inc/php/page.php:88
133
+ #, php-format
134
+ msgid ""
135
+ "If you want more options then %s tell us %s and we will be happy to add it."
136
  msgstr ""
137
+ "Если вы хотите больше вариантов, то %s сообщите нам %s и мы будем рады "
138
  "добавить их."
139
 
140
+ #: inc/php/page.php:102
141
  msgid "Frequently Asked Questions"
142
  msgstr "Часто задаваемые вопросы"
143
 
144
+ #: inc/php/page.php:106
145
  msgid ""
146
  "If you have a question, please read the Frequently Asked Questions below to "
147
  "see if the answer is here."
148
  msgstr "Если у вас есть вопрос, пожалуйста, прочтите часто задаваемые вопросы."
149
 
150
+ #: inc/php/page.php:128
151
  msgid "Will this plugin work on my WordPress.COM website?"
152
  msgstr "Этот плагин будет работать на моем сайте WordPress.COM?"
153
 
154
+ #: inc/php/page.php:129
155
  msgid ""
156
  "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) "
157
  "websites."
159
  "К сожалению, этот плагин доступен для использования только на самостоятельно "
160
  "размещённых веб-сайтах (WordPress.ORG)."
161
 
162
+ #: inc/php/page.php:131
163
  msgid "Can I use this plugin on my language?"
164
  msgstr "Можно ли использовать этот плагин на моём языке?"
165
 
166
+ #: inc/php/page.php:132
167
  msgid ""
168
  "Yes. This plugin is ready for translation and has already been translated "
169
  "into several languages."
170
  msgstr "Да. Этот плагин готов к переводу и уже переведен на несколько языков."
171
 
172
+ #: inc/php/page.php:134
173
  #, php-format
174
  msgid ""
175
  "If you want to help translate this plugin then please visit the %s. You can "
176
  "also use the POT file, that is included and placed in the \"languages\" "
177
  "folder, in order to create a translation PO file. Just send the PO file to "
178
+ "us at the %s and we will include this translation within the next plugin "
179
  "update."
180
  msgstr ""
181
  "Если вы хотите помочь перевести этот плагин, пожалуйста, посетите %s. Вы "
182
  "также можете использовать файл POT, который включён в плагин и помещён в "
183
+ "папку «languages», чтобы создать PO файл перевода. Просто отправьте нам файл "
184
+ "PO на %s и мы включим этот перевод в следующее обновление плагина."
185
 
186
+ #: inc/php/page.php:139
187
  msgid ""
188
  "Maybe not all existed translations are up to date. You are welcome to "
189
  "contribute corrections!"
190
  msgstr "Может быть, не все переводы обновлены. Вы можете внести исправления!"
191
 
192
+ #: inc/php/page.php:140
193
  msgid ""
194
  "Many of plugin users would be delighted if you share your translation with "
195
  "the community. Thanks for your contribution!"
197
  "Многие пользователи плагинов будут рады, если вы поделитесь своим переводом "
198
  "с сообществом. Спасибо за ваш вклад!"
199
 
200
+ #: inc/php/page.php:142
201
  msgid "How does it work?"
202
  msgstr "Как оно работает?"
203
 
204
+ #: inc/php/page.php:143
205
  msgid ""
206
  "On the \"Settings\" tab, place your scripts in the field and click the "
207
  "\"Save changes\" button. Enjoy the result of applying your scripts. It's "
211
  "«Сохранить изменения». Наслаждайтесь результатом применения ваших скриптов. "
212
  "Это так просто!"
213
 
214
+ #: inc/php/page.php:145
215
  msgid "How much of scripts I can enter in the field?"
216
  msgstr "Сколько скриптов я могу ввести в текстовое поле?"
217
 
218
+ #: inc/php/page.php:146
219
+ msgid "We don't limit the number of characters."
220
  msgstr "Я не ограничиваю количество символов."
221
 
222
+ #: inc/php/page.php:148
223
  msgid "Does this plugin requires any modification of the theme?"
224
  msgstr "Этот плагин требует изменения темы?"
225
 
226
+ #: inc/php/page.php:149
227
  msgid ""
228
  "Absolutely not. This plugin is configurable entirely from the plugin "
229
  "settings page."
231
  "Абсолютно нет. Этот плагин настраивается полностью на странице настроек "
232
  "плагина."
233
 
234
+ #: inc/php/page.php:151
235
  msgid "Does this require any knowledge of HTML or CSS?"
236
  msgstr "Требуются ли какие-либо знания HTML или CSS?"
237
 
238
+ #: inc/php/page.php:152
239
  msgid ""
240
  "This plugin can be configured with no knowledge of HTML or CSS, using an "
241
  "easy-to-use plugin settings page. But you need to know the HTML or CSS in "
246
  "для того, чтобы добавить/удалить/изменить код HTML или CSS, используя этот "
247
  "плагин."
248
 
249
+ #: inc/php/page.php:154
250
+ msgid "Can I add my script to a specific page of the website of the creator?"
251
  msgstr ""
252
  "Могу ли я добавить свой скрипт на определенную страницу моего веб-сайта?"
253
 
254
+ #: inc/php/page.php:155
255
  msgid ""
256
  "For now, this plugin does not have an option to apply the custom scripts "
257
  "only on specific pages. I plan to add this feature soon. But for now in "
265
  "страницах вашего сайта, вам нужно обернуть свой скрипт в PHP-код, который "
266
  "будет определять страницу, которая вам нужна. Вам нужно что-то вроде этого:"
267
 
268
+ #: inc/php/page.php:168
269
  #, php-format
270
  msgid ""
271
  "To apply the PHP code on a website, I can recommend you to use another my "
274
  "Чтобы применить PHP-код на веб-сайте, я могу порекомендовать вам "
275
  "использовать другой мой плагин, называемый %s."
276
 
277
+ #: inc/php/page.php:173
278
  msgid "It's not working. What could be wrong?"
279
  msgstr "Оно не работает. Что может быть не так?"
280
 
281
+ #: inc/php/page.php:174
282
  msgid ""
283
  "As with every plugin, it's possible that things don't work. The most common "
284
  "reason for this is a web browser's cache. Every web browser stores a cache "
293
  "сервер. Это называется кешем браузера. Очистка кеша браузера может решить "
294
  "проблему."
295
 
296
+ #: inc/php/page.php:175
297
  msgid ""
298
  "It's impossible to tell what could be wrong exactly, but if you post a "
299
+ "support request in the plugin's support forum on WordPress.org, we'd be "
300
+ "happy to give it a look and try to help out. Please include as much "
301
+ "information as possible, including a link to your website where the problem "
302
+ "can be seen."
303
  msgstr ""
304
  "Невозможно точно сказать, что может быть неправильно, но если вы разместите "
305
+ "запрос поддержки на форуме поддержки плагина на WordPress.org, то мы с "
306
+ "радостью посмотрим и попытаемся помочь. Пожалуйста, укажите как можно больше "
307
+ "информации, включая ссылку на ваш сайт, на котором можно увидеть проблему."
 
308
 
309
+ #: inc/php/page.php:177
310
  msgid ""
311
+ "The last WordPress update is preventing me from editing the website of the "
312
+ "creator that is using this plugin. Why is this?"
313
  msgstr ""
314
  "Последнее обновление WordPress не позволяет мне редактировать мой сайт, "
315
  "который использует этот плагин. Почему так?"
316
 
317
+ #: inc/php/page.php:178
318
  msgid ""
319
  "This plugin can not cause such problem. More likely, the problem are related "
320
  "to the settings of the website. It could just be a cache, so please try to "
328
  "веб-сервис, такой как CloudFlare), а затем кеш вашего веб-браузера. Также "
329
  "попробуйте повторно войти на сайт, это тоже может помочь."
330
 
331
+ #: inc/php/page.php:180
332
  msgid "Where to report bug if found?"
333
  msgstr "Где можно сообщить об ошибке?"
334
 
335
+ #: inc/php/page.php:182
336
  #, php-format
337
+ msgid ""
338
+ "Please visit %s this page %s and report. Please do not forget to specify the "
339
+ "name of the plugin. Thank you!"
340
  msgstr ""
341
+ "Посетите %s эту страницу %s и сообщите. Не забудьте указать название "
342
+ "плагина. Спасибо!"
343
 
344
+ #: inc/php/page.php:188
345
  msgid "Where to share any ideas or suggestions to make the plugin better?"
346
  msgstr ""
347
  "Где можно поделиться идеями или предложениями, чтобы сделать плагин лучше?"
348
 
349
+ #: inc/php/page.php:190
350
  #, php-format
351
  msgid ""
352
+ "Any suggestions are very welcome! Just contact us %s here %s. Please do not "
353
+ "forget to specify the name of the plugin. Thank you!"
354
  msgstr ""
355
+ "Любые предложения приветствуются! Просто свяжитесь с нами %s здесь %s. Не "
356
+ "забудьте указать название плагина. Спасибо!"
357
 
358
+ #: inc/php/page.php:196
359
  msgid "I love this plugin! Can I help somehow?"
360
  msgstr "Мне нравится этот плагин! Могу Я чем-то помочь?"
361
 
362
+ #: inc/php/page.php:198
363
  #, php-format
364
  msgid ""
365
+ "Yes, any financial contributions are welcome! Just visit %s the website of "
366
+ "the creator %s, click on the donate button, and thank you!"
367
  msgstr ""
368
  "Да, любые финансовые взносы приветствуются! Просто посетите %s мой сайт %s, "
369
  "нажмите на кнопку пожертвования. Спасибо!"
370
 
371
+ #: inc/php/page.php:204
372
  msgid "My question wasn't answered here."
373
  msgstr "Моего вопроса здесь нет."
374
 
375
+ #: inc/php/page.php:206
376
  #, php-format
377
  msgid ""
378
+ "You can ask your question on %s this page %s. But please keep in mind that "
379
+ "this plugin is free, and there is no a special support team, so we have no "
380
+ "way to answer everyone."
381
  msgstr ""
382
+ "Вы можете задать ваш вопрос на %s этой странице %s. Но имейте в виду, что "
383
+ "этот плагин является бесплатным и без специальной поддержки, поэтому у нас "
384
+ "нет возможности ответить на все вопросы."
385
 
386
+ #: inc/php/page.php:220
387
  msgid "Support Me"
388
  msgstr "Поддержать меня"
389
 
390
+ #: inc/php/page.php:228 inc/php/settings.php:77 inc/php/sidebar.php:37
391
  msgid "Donate with PayPal"
392
  msgstr "Пожертвовать через PayPal"
393
 
394
+ #: inc/php/page.php:233
395
  #, php-format
396
  msgid ""
397
  "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-"
398
+ "Chimp %s."
399
  msgstr ""
400
+ "Привет! Меня зовут %s Артур Гарегинян %s и Я основатель %s Space X-Chimp %s."
 
401
 
402
+ #: inc/php/page.php:241
403
  msgid ""
404
  "My intention is to create projects that will make this world a better place. "
405
  "I'm really passionate about my work, I like what I'm doing and hope that you "
409
  "увлечен своей работой, мне нравится то, что Я делаю и надеюсь, что вы тоже "
410
  "станете лучше благодаря моим проектам."
411
 
412
+ #: inc/php/page.php:242
413
  msgid ""
414
  "I spend a lot of time and effort trying to make sure that the themes, "
415
  "plugins and other things I build are useful, and the ultimate proof of that "
425
  "вклад помогает мне покрыть расходы и позволяет тратить больше времени на "
426
  "создание программ для людей как вы."
427
 
428
+ #: inc/php/page.php:243
429
  msgid "If you appreciate my work, you can buy me a coffee!"
430
  msgstr "Если вы цените мою работу, то вы можете купить мне кофе!"
431
 
432
+ #: inc/php/page.php:244
433
  msgid "Thank you for your support!"
434
  msgstr "Спасибо за вашу поддержку!"
435
 
492
  "Скрипты из этой области будут напечатаны в конце нижнего колонтитула. Не "
493
  "помещайте сюда обычный текст!"
494
 
495
+ #: inc/php/settings.php:72 inc/php/sidebar.php:32
496
  msgid ""
497
  "I'm an independent developer, without a regular income, so every little "
498
  "contribution helps cover my costs and lets me spend more time building "
502
  "вклад помогает мне покрыть затраты и позволяет тратить больше времени на "
503
  "создание программ для людей как вы."
504
 
505
+ #: inc/php/settings.php:79 inc/php/sidebar.php:39
506
  msgid "Thanks for your support!"
507
  msgstr "Спасибо за вашу поддержку!"
508
 
514
  msgid "This plugin allows you to easily insert scripts in your website."
515
  msgstr "Этот плагин позволяет легко вставлять скрипты в ваш веб-сайте."
516
 
517
+ #: inc/php/sidebar.php:23
518
  msgid "Help"
519
  msgstr "Помощь"
520
 
521
+ #: inc/php/sidebar.php:25
522
  msgid "If you have a question, please read the information in the FAQ section."
523
  msgstr ""
524
  "Если у вас есть вопрос, пожалуйста ознакомьтесь с информацией в разделе FAQ."
547
  #. Author URI of the plugin/theme
548
  msgid "https://www.arthurgareginyan.com"
549
  msgstr "https://www.arthurgareginyan.com"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/header-and-footer-scripts-inserter.pot CHANGED
@@ -3,14 +3,14 @@ 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-10-28 14:41+0300\n"
7
  "PO-Revision-Date: 2016-01-30 11:39+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Generator: Poedit 1.8.4\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-WPHeader: header-and-footer-scripts-inserter.php\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
@@ -31,12 +31,12 @@ msgid "Scripts Inserter"
31
  msgstr ""
32
 
33
  #: inc/php/messages.php:26
34
- msgid "Hello. I'm Arthur, the author of this plugin."
35
  msgstr ""
36
 
37
  #: inc/php/messages.php:28
38
  #, php-format
39
- msgid "Thank you for installing my plugin! I hope you will love it! %s"
40
  msgstr ""
41
 
42
  #: inc/php/messages.php:68
@@ -53,7 +53,7 @@ msgstr ""
53
 
54
  #: inc/php/page.php:31
55
  #, php-format
56
- msgid "by %s Space X-Chimp Studio %s"
57
  msgstr ""
58
 
59
  #: inc/php/page.php:37
@@ -72,7 +72,7 @@ msgstr ""
72
  msgid "F.A.Q."
73
  msgstr ""
74
 
75
- #: inc/php/page.php:47 inc/php/settings.php:70 inc/php/sidebar.php:23
76
  msgid "Support"
77
  msgstr ""
78
 
@@ -118,188 +118,189 @@ msgstr ""
118
  msgid "Note!"
119
  msgstr ""
120
 
121
- #: inc/php/page.php:87
122
- msgid "If you want more options then tell me and I will be happy to add it."
 
123
  msgstr ""
124
 
125
- #: inc/php/page.php:96
126
  msgid "Frequently Asked Questions"
127
  msgstr ""
128
 
129
- #: inc/php/page.php:100
130
  msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
131
  msgstr ""
132
 
133
- #: inc/php/page.php:122
134
  msgid "Will this plugin work on my WordPress.COM website?"
135
  msgstr ""
136
 
137
- #: inc/php/page.php:123
138
  msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
139
  msgstr ""
140
 
141
- #: inc/php/page.php:125
142
  msgid "Can I use this plugin on my language?"
143
  msgstr ""
144
 
145
- #: inc/php/page.php:126
146
  msgid "Yes. This plugin is ready for translation and has already been translated into several languages."
147
  msgstr ""
148
 
149
- #: inc/php/page.php:128
150
  #, php-format
151
  msgid ""
152
  "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. "
153
- "Just send the PO file to me at the %s and I will include this translation within the next plugin update."
154
  msgstr ""
155
 
156
- #: inc/php/page.php:133
157
  msgid "Maybe not all existed translations are up to date. You are welcome to contribute corrections!"
158
  msgstr ""
159
 
160
- #: inc/php/page.php:134
161
  msgid "Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!"
162
  msgstr ""
163
 
164
- #: inc/php/page.php:136
165
  msgid "How does it work?"
166
  msgstr ""
167
 
168
- #: inc/php/page.php:137
169
  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!"
170
  msgstr ""
171
 
172
- #: inc/php/page.php:139
173
  msgid "How much of scripts I can enter in the field?"
174
  msgstr ""
175
 
176
- #: inc/php/page.php:140
177
- msgid "I don't limit the number of characters."
178
  msgstr ""
179
 
180
- #: inc/php/page.php:142
181
  msgid "Does this plugin requires any modification of the theme?"
182
  msgstr ""
183
 
184
- #: inc/php/page.php:143
185
  msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
186
  msgstr ""
187
 
188
- #: inc/php/page.php:145
189
  msgid "Does this require any knowledge of HTML or CSS?"
190
  msgstr ""
191
 
192
- #: inc/php/page.php:146
193
  msgid ""
194
  "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 "
195
  "using this plugin."
196
  msgstr ""
197
 
198
- #: inc/php/page.php:148
199
- msgid "Can I add my script to a specific page of my website?"
200
  msgstr ""
201
 
202
- #: inc/php/page.php:149
203
  msgid ""
204
  "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 "
205
  "your website, you need to wrap your script in a PHP code that will determine the page you want. You need something like this:"
206
  msgstr ""
207
 
208
- #: inc/php/page.php:162
209
  #, php-format
210
  msgid "To apply the PHP code on a website, I can recommend you to use another my plugin called %s."
211
  msgstr ""
212
 
213
- #: inc/php/page.php:166
214
  msgid "It's not working. What could be wrong?"
215
  msgstr ""
216
 
217
- #: inc/php/page.php:167
218
  msgid ""
219
  "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 "
220
  "etc.) to reduce bandwidth usage and server load. This is called the browser's cache.​ Clearing your browser's cache may solve the problem."
221
  msgstr ""
222
 
223
- #: inc/php/page.php:168
224
  msgid ""
225
- "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 "
226
  "include as much information as possible, including a link to your website where the problem can be seen."
227
  msgstr ""
228
 
229
- #: inc/php/page.php:170
230
- msgid "The last WordPress update is preventing me from editing my website that is using this plugin. Why is this?"
231
  msgstr ""
232
 
233
- #: inc/php/page.php:171
234
  msgid ""
235
  "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 "
236
  "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."
237
  msgstr ""
238
 
239
- #: inc/php/page.php:173
240
  msgid "Where to report bug if found?"
241
  msgstr ""
242
 
243
- #: inc/php/page.php:175
244
  #, php-format
245
- msgid "Please visit the %s Dedicated Plugin Page on GitHub %s and report."
246
  msgstr ""
247
 
248
- #: inc/php/page.php:181
249
  msgid "Where to share any ideas or suggestions to make the plugin better?"
250
  msgstr ""
251
 
252
- #: inc/php/page.php:183
253
  #, php-format
254
- msgid "Any suggestions are very welcome! Please send me an email to %s. Thank you!"
255
  msgstr ""
256
 
257
- #: inc/php/page.php:188
258
  msgid "I love this plugin! Can I help somehow?"
259
  msgstr ""
260
 
261
- #: inc/php/page.php:190
262
  #, php-format
263
- msgid "Yes, any financial contributions are welcome! Just visit %s my website %s, click on the donate button, and thank you!"
264
  msgstr ""
265
 
266
- #: inc/php/page.php:196
267
  msgid "My question wasn't answered here."
268
  msgstr ""
269
 
270
- #: inc/php/page.php:198
271
  #, php-format
272
- 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."
273
  msgstr ""
274
 
275
- #: inc/php/page.php:211
276
  msgid "Support Me"
277
  msgstr ""
278
 
279
- #: inc/php/page.php:219 inc/php/settings.php:77 inc/php/sidebar.php:30
280
  msgid "Donate with PayPal"
281
  msgstr ""
282
 
283
- #: inc/php/page.php:224
284
  #, php-format
285
- msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp Studio %s."
286
  msgstr ""
287
 
288
- #: inc/php/page.php:232
289
  msgid "My intention is to create projects that will make this world a better place. I'm really passionate about my work, I like what I'm doing and hope that you will be enriched by my projects too."
290
  msgstr ""
291
 
292
- #: inc/php/page.php:233
293
  msgid ""
294
  "I spend a lot of time and effort trying to make sure that the themes, plugins and other things I build are useful, and the ultimate proof of that for me is that you actually want to use them. But, "
295
  "I’m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
296
  msgstr ""
297
 
298
- #: inc/php/page.php:234
299
  msgid "If you appreciate my work, you can buy me a coffee!"
300
  msgstr ""
301
 
302
- #: inc/php/page.php:235
303
  msgid "Thank you for your support!"
304
  msgstr ""
305
 
@@ -339,11 +340,11 @@ msgstr ""
339
  msgid "Scripts from this field will be printed after all footers scripts. Do not place plain text in this!"
340
  msgstr ""
341
 
342
- #: inc/php/settings.php:72 inc/php/sidebar.php:25
343
  msgid "I'm an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
344
  msgstr ""
345
 
346
- #: inc/php/settings.php:79 inc/php/sidebar.php:32
347
  msgid "Thanks for your support!"
348
  msgstr ""
349
 
@@ -355,11 +356,11 @@ msgstr ""
355
  msgid "This plugin allows you to easily insert scripts in your website."
356
  msgstr ""
357
 
358
- #: inc/php/sidebar.php:37
359
  msgid "Help"
360
  msgstr ""
361
 
362
- #: inc/php/sidebar.php:39
363
  msgid "If you have a question, please read the information in the FAQ section."
364
  msgstr ""
365
 
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: Header and Footer Scripts Inserter\n"
6
+ "POT-Creation-Date: 2018-01-20 14:27+0300\n"
7
  "PO-Revision-Date: 2016-01-30 11:39+0300\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 1.8.7\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-WPHeader: header-and-footer-scripts-inserter.php\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
31
  msgstr ""
32
 
33
  #: inc/php/messages.php:26
34
+ msgid "Hello. We are the team of Space X-Chimp."
35
  msgstr ""
36
 
37
  #: inc/php/messages.php:28
38
  #, php-format
39
+ msgid "Thank you for installing our plugin! We hope you will love it! %s"
40
  msgstr ""
41
 
42
  #: inc/php/messages.php:68
53
 
54
  #: inc/php/page.php:31
55
  #, php-format
56
+ msgid "by %s Space X-Chimp %s"
57
  msgstr ""
58
 
59
  #: inc/php/page.php:37
72
  msgid "F.A.Q."
73
  msgstr ""
74
 
75
+ #: inc/php/page.php:47 inc/php/settings.php:70 inc/php/sidebar.php:30
76
  msgid "Support"
77
  msgstr ""
78
 
118
  msgid "Note!"
119
  msgstr ""
120
 
121
+ #: inc/php/page.php:88
122
+ #, php-format
123
+ msgid "If you want more options then %s tell us %s and we will be happy to add it."
124
  msgstr ""
125
 
126
+ #: inc/php/page.php:102
127
  msgid "Frequently Asked Questions"
128
  msgstr ""
129
 
130
+ #: inc/php/page.php:106
131
  msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
132
  msgstr ""
133
 
134
+ #: inc/php/page.php:128
135
  msgid "Will this plugin work on my WordPress.COM website?"
136
  msgstr ""
137
 
138
+ #: inc/php/page.php:129
139
  msgid "Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites."
140
  msgstr ""
141
 
142
+ #: inc/php/page.php:131
143
  msgid "Can I use this plugin on my language?"
144
  msgstr ""
145
 
146
+ #: inc/php/page.php:132
147
  msgid "Yes. This plugin is ready for translation and has already been translated into several languages."
148
  msgstr ""
149
 
150
+ #: inc/php/page.php:134
151
  #, php-format
152
  msgid ""
153
  "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. "
154
+ "Just send the PO file to us at the %s and we will include this translation within the next plugin update."
155
  msgstr ""
156
 
157
+ #: inc/php/page.php:139
158
  msgid "Maybe not all existed translations are up to date. You are welcome to contribute corrections!"
159
  msgstr ""
160
 
161
+ #: inc/php/page.php:140
162
  msgid "Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!"
163
  msgstr ""
164
 
165
+ #: inc/php/page.php:142
166
  msgid "How does it work?"
167
  msgstr ""
168
 
169
+ #: inc/php/page.php:143
170
  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!"
171
  msgstr ""
172
 
173
+ #: inc/php/page.php:145
174
  msgid "How much of scripts I can enter in the field?"
175
  msgstr ""
176
 
177
+ #: inc/php/page.php:146
178
+ msgid "We don't limit the number of characters."
179
  msgstr ""
180
 
181
+ #: inc/php/page.php:148
182
  msgid "Does this plugin requires any modification of the theme?"
183
  msgstr ""
184
 
185
+ #: inc/php/page.php:149
186
  msgid "Absolutely not. This plugin is configurable entirely from the plugin settings page."
187
  msgstr ""
188
 
189
+ #: inc/php/page.php:151
190
  msgid "Does this require any knowledge of HTML or CSS?"
191
  msgstr ""
192
 
193
+ #: inc/php/page.php:152
194
  msgid ""
195
  "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 "
196
  "using this plugin."
197
  msgstr ""
198
 
199
+ #: inc/php/page.php:154
200
+ msgid "Can I add my script to a specific page of the website of the creator?"
201
  msgstr ""
202
 
203
+ #: inc/php/page.php:155
204
  msgid ""
205
  "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 "
206
  "your website, you need to wrap your script in a PHP code that will determine the page you want. You need something like this:"
207
  msgstr ""
208
 
209
+ #: inc/php/page.php:168
210
  #, php-format
211
  msgid "To apply the PHP code on a website, I can recommend you to use another my plugin called %s."
212
  msgstr ""
213
 
214
+ #: inc/php/page.php:173
215
  msgid "It's not working. What could be wrong?"
216
  msgstr ""
217
 
218
+ #: inc/php/page.php:174
219
  msgid ""
220
  "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 "
221
  "etc.) to reduce bandwidth usage and server load. This is called the browser's cache.​ Clearing your browser's cache may solve the problem."
222
  msgstr ""
223
 
224
+ #: inc/php/page.php:175
225
  msgid ""
226
+ "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, we'd be happy to give it a look and try to help out. Please "
227
  "include as much information as possible, including a link to your website where the problem can be seen."
228
  msgstr ""
229
 
230
+ #: inc/php/page.php:177
231
+ msgid "The last WordPress update is preventing me from editing the website of the creator that is using this plugin. Why is this?"
232
  msgstr ""
233
 
234
+ #: inc/php/page.php:178
235
  msgid ""
236
  "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 "
237
  "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."
238
  msgstr ""
239
 
240
+ #: inc/php/page.php:180
241
  msgid "Where to report bug if found?"
242
  msgstr ""
243
 
244
+ #: inc/php/page.php:182
245
  #, php-format
246
+ msgid "Please visit %s this page %s and report. Please do not forget to specify the name of the plugin. Thank you!"
247
  msgstr ""
248
 
249
+ #: inc/php/page.php:188
250
  msgid "Where to share any ideas or suggestions to make the plugin better?"
251
  msgstr ""
252
 
253
+ #: inc/php/page.php:190
254
  #, php-format
255
+ msgid "Any suggestions are very welcome! Just contact us %s here %s. Please do not forget to specify the name of the plugin. Thank you!"
256
  msgstr ""
257
 
258
+ #: inc/php/page.php:196
259
  msgid "I love this plugin! Can I help somehow?"
260
  msgstr ""
261
 
262
+ #: inc/php/page.php:198
263
  #, php-format
264
+ msgid "Yes, any financial contributions are welcome! Just visit %s the website of the creator %s, click on the donate button, and thank you!"
265
  msgstr ""
266
 
267
+ #: inc/php/page.php:204
268
  msgid "My question wasn't answered here."
269
  msgstr ""
270
 
271
+ #: inc/php/page.php:206
272
  #, php-format
273
+ msgid "You can ask your question on %s this page %s. But please keep in mind that this plugin is free, and there is no a special support team, so we have no way to answer everyone."
274
  msgstr ""
275
 
276
+ #: inc/php/page.php:220
277
  msgid "Support Me"
278
  msgstr ""
279
 
280
+ #: inc/php/page.php:228 inc/php/settings.php:77 inc/php/sidebar.php:37
281
  msgid "Donate with PayPal"
282
  msgstr ""
283
 
284
+ #: inc/php/page.php:233
285
  #, php-format
286
+ msgid "Hello! My name is %s Arthur Gareginyan %s and I'm the founder of %s Space X-Chimp %s."
287
  msgstr ""
288
 
289
+ #: inc/php/page.php:241
290
  msgid "My intention is to create projects that will make this world a better place. I'm really passionate about my work, I like what I'm doing and hope that you will be enriched by my projects too."
291
  msgstr ""
292
 
293
+ #: inc/php/page.php:242
294
  msgid ""
295
  "I spend a lot of time and effort trying to make sure that the themes, plugins and other things I build are useful, and the ultimate proof of that for me is that you actually want to use them. But, "
296
  "I’m an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
297
  msgstr ""
298
 
299
+ #: inc/php/page.php:243
300
  msgid "If you appreciate my work, you can buy me a coffee!"
301
  msgstr ""
302
 
303
+ #: inc/php/page.php:244
304
  msgid "Thank you for your support!"
305
  msgstr ""
306
 
340
  msgid "Scripts from this field will be printed after all footers scripts. Do not place plain text in this!"
341
  msgstr ""
342
 
343
+ #: inc/php/settings.php:72 inc/php/sidebar.php:32
344
  msgid "I'm an independent developer, without a regular income, so every little contribution helps cover my costs and lets me spend more time building things for people like you to enjoy."
345
  msgstr ""
346
 
347
+ #: inc/php/settings.php:79 inc/php/sidebar.php:39
348
  msgid "Thanks for your support!"
349
  msgstr ""
350
 
356
  msgid "This plugin allows you to easily insert scripts in your website."
357
  msgstr ""
358
 
359
+ #: inc/php/sidebar.php:23
360
  msgid "Help"
361
  msgstr ""
362
 
363
+ #: inc/php/sidebar.php:25
364
  msgid "If you have a question, please read the information in the FAQ section."
365
  msgstr ""
366
 
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.9
7
- Stable tag: 4.14
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -19,7 +19,7 @@ No need anymore to editing a files of your theme or plugins in order to add cust
19
 
20
  Third-party services like Google Webmaster Tools, Alexa, Pinterest and Google+ require you to verify your domain. This makes sure that you are the correct owner of your blog or store before they provide their services to you. You can use this plugin to easily verify your website or domain and get a more effective and efficient sharing results. Example with Pinterest. Once you completed the verification process, people will see a checkmark next to your domain in your Pinterest profile and in pinner search results. That check mark emphasis you have confirmed the ownership of your blog or website on Pinterest. This will help your website to rank better in google and other search engines. You can easily increase your blog traffic using this plugin. "Head and Footer Scripts Inserter" is a simple but effective SEO plugin.
21
 
22
- If you want more options then tell me and I will be happy to add it.
23
 
24
  **Features**
25
 
@@ -104,14 +104,14 @@ After installation and activation, the "`Scripts Inserter`" menu item will appe
104
  A. Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites.
105
 
106
  = Q. Can I use this plugin on my language? =
107
- A. Yes. This plugin is ready for translation and has already been translated into several languages. But If your language is not available then you can make one. The POT file is included and placed in the "`languages`" folder. Just send the PO file to me at the arthurgareginyan@gmail.com 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!
108
 
109
  = Q. How does it work? =
110
  A. Simply go to the plugin settings page, place your scripts in the field and click the "Save changes" button. Enjoy the result of applying your scripts. It's that simple!
111
  You can find the plugin settings page at "`WP Admin Panel`" -> "`Settings`" -> "`Scripts Inserter`".
112
 
113
  = Q. How much of scripts I can enter in the field? =
114
- A. I don't limit the number of characters.
115
 
116
  = Q. Does this plugin requires any modification of the theme? =
117
  A. Absolutely not. This plugin is configurable entirely from the plugin settings page that you can find in the Admin Panel of your WordPress website.
@@ -119,7 +119,7 @@ A. Absolutely not. This plugin is configurable entirely from the plugin settings
119
  = Q. Does this require any knowledge of HTML or CSS? =
120
  A. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page. But you need to know the HTML or CSS in order to add/remove/modify the HTML or CSS code by using this plugin.
121
 
122
- = Q. Can I add my script to a specific page of my website? =
123
  A. 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 your website, you need to wrap your script in a PHP code that will determine the page you want. You need something like this:
124
  `function my_custom_script() {
125
 
@@ -138,19 +138,19 @@ To apply the PHP code on a website, I can recommend you to use another my plugin
138
  = Q. It's not working. What could be wrong? =
139
  A. 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 etc.) to reduce bandwidth usage and server load. This is called the browser's cache.​ Clearing your browser's cache may solve the problem.
140
 
141
- 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 include as much information as possible, including a link to your website where the problem can be seen.
142
 
143
- = Q. The last WordPress update is preventing me from editing my website that is using this plugin. Why is this? =
144
  A. 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 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.
145
 
146
  = Q. Where to report bug if found? =
147
  A. Please visit the [Dedicated Plugin Page on GitHub](https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter) and report.
148
 
149
  = Q. Where to share any ideas or suggestions to make the plugin better? =
150
- A. Any suggestions are very welcome! Please send me an email to [arthurgareginyan@gmail.com](mailto:arthurgareginyan@gmail.com). Thank you!
151
 
152
  = Q. I love this plugin! Can I help somehow? =
153
- 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!
154
 
155
 
156
  == Screenshots ==
@@ -186,6 +186,12 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
186
 
187
  == Changelog ==
188
 
 
 
 
 
 
 
189
  = 4.14 =
190
  * The plugin is fully tested for compatibility with WordPress version 4.9.
191
  * CSS code improved.
@@ -212,7 +218,7 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
212
  * The menu item of the plugin is renamed.
213
  * The "Author" tab on the settings page is removed.
214
  * Content of the "Support" tab on the settings page is updated.
215
- * Copyright of plugin files is changed to the "Space X-Chimp Studio".
216
  * The "Support" tab renamed to the "Support Me".
217
  * The "Usage" tab renamed to the "Usage Instructions".
218
 
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.9
7
+ Stable tag: 4.15
8
  License: GPL3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
19
 
20
  Third-party services like Google Webmaster Tools, Alexa, Pinterest and Google+ require you to verify your domain. This makes sure that you are the correct owner of your blog or store before they provide their services to you. You can use this plugin to easily verify your website or domain and get a more effective and efficient sharing results. Example with Pinterest. Once you completed the verification process, people will see a checkmark next to your domain in your Pinterest profile and in pinner search results. That check mark emphasis you have confirmed the ownership of your blog or website on Pinterest. This will help your website to rank better in google and other search engines. You can easily increase your blog traffic using this plugin. "Head and Footer Scripts Inserter" is a simple but effective SEO plugin.
21
 
22
+ If you want more options then tell us and we will be happy to add it.
23
 
24
  **Features**
25
 
104
  A. Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites.
105
 
106
  = Q. Can I use this plugin on my language? =
107
+ A. Yes. This plugin is ready for translation and has already been translated into several languages. But If your language is not available then you can make one. The POT file is included and placed in the "`languages`" folder. Just send the PO file to us at the arthurgareginyan@gmail.com and we will include this translation within the next plugin update. Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!
108
 
109
  = Q. How does it work? =
110
  A. Simply go to the plugin settings page, place your scripts in the field and click the "Save changes" button. Enjoy the result of applying your scripts. It's that simple!
111
  You can find the plugin settings page at "`WP Admin Panel`" -> "`Settings`" -> "`Scripts Inserter`".
112
 
113
  = Q. How much of scripts I can enter in the field? =
114
+ A. We don't limit the number of characters.
115
 
116
  = Q. Does this plugin requires any modification of the theme? =
117
  A. Absolutely not. This plugin is configurable entirely from the plugin settings page that you can find in the Admin Panel of your WordPress website.
119
  = Q. Does this require any knowledge of HTML or CSS? =
120
  A. This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page. But you need to know the HTML or CSS in order to add/remove/modify the HTML or CSS code by using this plugin.
121
 
122
+ = Q. Can I add my script to a specific page of the website of the creator? =
123
  A. 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 your website, you need to wrap your script in a PHP code that will determine the page you want. You need something like this:
124
  `function my_custom_script() {
125
 
138
  = Q. It's not working. What could be wrong? =
139
  A. 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 etc.) to reduce bandwidth usage and server load. This is called the browser's cache.​ Clearing your browser's cache may solve the problem.
140
 
141
+ 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, we'd be happy to give it a look and try to help out. Please include as much information as possible, including a link to your website where the problem can be seen.
142
 
143
+ = Q. The last WordPress update is preventing me from editing the website of the creator that is using this plugin. Why is this? =
144
  A. 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 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.
145
 
146
  = Q. Where to report bug if found? =
147
  A. Please visit the [Dedicated Plugin Page on GitHub](https://github.com/ArthurGareginyan/header-and-footer-scripts-inserter) and report.
148
 
149
  = Q. Where to share any ideas or suggestions to make the plugin better? =
150
+ A. Any suggestions are very welcome! Please send us an email to [arthurgareginyan@gmail.com](mailto:arthurgareginyan@gmail.com). Thank you!
151
 
152
  = Q. I love this plugin! Can I help somehow? =
153
+ A. Yes, any financial contributions are welcome! Just visit [the website of the creator](https://www.arthurgareginyan.com/donate.html), click on the donate button, and thank you!
154
 
155
 
156
  == Screenshots ==
186
 
187
  == Changelog ==
188
 
189
+ = 4.15 =
190
+ * Texts updated.
191
+ * The year in the copyright text is updated.
192
+ * The sidebar items are rearranged.
193
+ * Translation files updated.
194
+
195
  = 4.14 =
196
  * The plugin is fully tested for compatibility with WordPress version 4.9.
197
  * CSS code improved.
218
  * The menu item of the plugin is renamed.
219
  * The "Author" tab on the settings page is removed.
220
  * Content of the "Support" tab on the settings page is updated.
221
+ * Copyright of plugin files is changed to the "Space X-Chimp".
222
  * The "Support" tab renamed to the "Support Me".
223
  * The "Usage" tab renamed to the "Usage Instructions".
224