Version Description
- 2019-03-01 =
- Framework updated: The file "page.php" is divided into the following parts: "page.php", "usage.php", "faq.php", "support.php".
- Framework updated: The files "settings.php", "usage.php", "faq.php", "support.php" are moved to the subfolder "tabs".
Download this release
Release Info
Developer | Arthur Gareginyan |
Plugin | Head and Footer Scripts Inserter |
Version | 4.37 |
Comparing to | |
See all releases |
Code changes from version 4.36 to 4.37
- header-and-footer-scripts-inserter.php +1 -1
- inc/php/page.php +7 -398
- inc/php/tabs/faq.php +338 -0
- inc/php/{settings.php → tabs/settings.php} +0 -0
- inc/php/tabs/support.php +53 -0
- inc/php/tabs/usage.php +41 -0
- languages/header-and-footer-scripts-inserter-de_DE.mo +0 -0
- languages/header-and-footer-scripts-inserter-de_DE.po +217 -216
- languages/header-and-footer-scripts-inserter-es_ES.mo +0 -0
- languages/header-and-footer-scripts-inserter-es_ES.po +217 -216
- languages/header-and-footer-scripts-inserter-fr_FR.mo +0 -0
- languages/header-and-footer-scripts-inserter-fr_FR.po +219 -218
- languages/header-and-footer-scripts-inserter-nl_NL.mo +0 -0
- languages/header-and-footer-scripts-inserter-nl_NL.po +216 -215
- languages/header-and-footer-scripts-inserter-pl_PL.mo +0 -0
- languages/header-and-footer-scripts-inserter-pl_PL.po +211 -210
- languages/header-and-footer-scripts-inserter-ru_RU.mo +0 -0
- languages/header-and-footer-scripts-inserter-ru_RU.po +219 -218
- languages/header-and-footer-scripts-inserter.pot +195 -194
- readme.txt +5 -1
header-and-footer-scripts-inserter.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: Easily and safely add your custom HTML code (plus JavaScript, CSS, etc.) to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor.
|
6 |
* Author: Space X-Chimp
|
7 |
* Author URI: https://www.spacexchimp.com
|
8 |
-
* Version: 4.
|
9 |
* License: GPL3
|
10 |
* Text Domain: header-and-footer-scripts-inserter
|
11 |
* Domain Path: /languages/
|
5 |
* Description: Easily and safely add your custom HTML code (plus JavaScript, CSS, etc.) to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor.
|
6 |
* Author: Space X-Chimp
|
7 |
* Author URI: https://www.spacexchimp.com
|
8 |
+
* Version: 4.37
|
9 |
* License: GPL3
|
10 |
* Text Domain: header-and-footer-scripts-inserter
|
11 |
* Domain Path: /languages/
|
inc/php/page.php
CHANGED
@@ -15,6 +15,7 @@ function spacexchimp_p006_render_submenu_page() {
|
|
15 |
$slug = SPACEXCHIMP_P006_SLUG;
|
16 |
$version = SPACEXCHIMP_P006_VERSION;
|
17 |
$text = SPACEXCHIMP_P006_TEXT;
|
|
|
18 |
|
19 |
// Call messages
|
20 |
spacexchimp_p006_hello_message();
|
@@ -24,6 +25,7 @@ function spacexchimp_p006_render_submenu_page() {
|
|
24 |
// Layout of page
|
25 |
?>
|
26 |
<div class="wrap">
|
|
|
27 |
<h2 class="sxc-header">
|
28 |
<?php echo $name; ?>
|
29 |
<span>
|
@@ -53,420 +55,27 @@ function spacexchimp_p006_render_submenu_page() {
|
|
53 |
<!-- TAB 1 -->
|
54 |
<div class="tab-page fade active in" id="tab-core">
|
55 |
<!-- INCLUDE SIDEBAR -->
|
56 |
-
<?php require_once(
|
57 |
<!-- INCLUDE SETTINGS -->
|
58 |
-
<?php require_once(
|
59 |
</div>
|
60 |
<!-- END-TAB 1 -->
|
61 |
|
62 |
<!-- TAB 2 -->
|
63 |
<div class="tab-page fade" id="tab-usage">
|
64 |
-
|
65 |
-
<h3 class="title"><?php _e( 'Usage Instructions', $text ); ?></h3>
|
66 |
-
<div class="inside">
|
67 |
-
<p><?php _e( 'To add your custom HTML code (plus JavaScript, CSS, etc.) to your website, simply follow these steps:', $text ); ?></p>
|
68 |
-
<ol class="custom-counter">
|
69 |
-
<li><?php _e( 'Go to the "Main" tab on this page.', $text ); ?></li>
|
70 |
-
<li>
|
71 |
-
<?php _e( 'Place your custom HTML code in the code editor field.', $text ); ?>
|
72 |
-
<br><br>
|
73 |
-
<p class="note">
|
74 |
-
<b><?php _e( 'Note!', $text ); ?></b>
|
75 |
-
<?php _e( 'The JavaScript and CSS code must be wrapped in HTML tags.', $text ); ?>
|
76 |
-
<?php _e( 'For JavaScript code use the <code><script></code> tag, and for CSS code use the <code><style></code> tag.', $text ); ?>
|
77 |
-
</p>
|
78 |
-
</li>
|
79 |
-
<li><?php _e( 'Click the "Save changes" button.', $text ); ?></li>
|
80 |
-
<li><?php _e( 'Enjoy the result of applying your custom HTML code.', $text ); ?> <?php _e( 'It\'s that simple!', $text ); ?></li>
|
81 |
-
</ol>
|
82 |
-
<p class="note">
|
83 |
-
<?php
|
84 |
-
printf(
|
85 |
-
__( 'If you want more options, then %s let us know %s and we will be happy to add them.', $text ),
|
86 |
-
'<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
|
87 |
-
'</a>'
|
88 |
-
);
|
89 |
-
?>
|
90 |
-
</p>
|
91 |
-
</div>
|
92 |
-
</div>
|
93 |
</div>
|
94 |
<!-- END-TAB 2 -->
|
95 |
|
96 |
<!-- TAB 3 -->
|
97 |
<div class="tab-page fade" id="tab-faq">
|
98 |
-
|
99 |
-
<h3 class="title"><?php _e( 'Frequently Asked Questions', $text ); ?></h3>
|
100 |
-
<div class="inside">
|
101 |
-
|
102 |
-
<p class="note">
|
103 |
-
<?php _e( 'If you have a question, please read the Frequently Asked Questions below to see if the answer is here.', $text ); ?>
|
104 |
-
</p>
|
105 |
-
|
106 |
-
<div class="panel-group" id="collapse-group">
|
107 |
-
<?php
|
108 |
-
$loopvalue = '20';
|
109 |
-
for ( $i = 1; $i <= $loopvalue; $i++ ) {
|
110 |
-
echo '<div class="panel panel-default">
|
111 |
-
<div class="panel-heading">
|
112 |
-
<a data-toggle="collapse" data-parent="#collapse-group" href="#element' . $i . '">
|
113 |
-
<h4 class="panel-title"></h4>
|
114 |
-
</a>
|
115 |
-
</div>
|
116 |
-
<div id="element' . $i . '" class="panel-collapse collapse">
|
117 |
-
<div class="panel-body">
|
118 |
-
</div>
|
119 |
-
</div>
|
120 |
-
</div>';
|
121 |
-
}
|
122 |
-
?>
|
123 |
-
</div>
|
124 |
-
|
125 |
-
<?php $i = 1; ?>
|
126 |
-
|
127 |
-
<div class="question-<?php echo $i; ?>">
|
128 |
-
<?php _e( 'Where can I find a documentation for this plugin?', $text ); ?>
|
129 |
-
</div>
|
130 |
-
<div class="answer-<?php echo $i; $i++ ?>">
|
131 |
-
<?php
|
132 |
-
printf(
|
133 |
-
__( 'Please visit our %s Documentation site %s to view documentation.', $text ),
|
134 |
-
'<a href="https://docs.spacexchimp.com" target="_blank">',
|
135 |
-
'</a>'
|
136 |
-
);
|
137 |
-
?>
|
138 |
-
</div>
|
139 |
-
|
140 |
-
<div class="question-<?php echo $i; ?>">
|
141 |
-
<?php _e( 'Will this plugin work on my wordpress.COM website?', $text ); ?>
|
142 |
-
</div>
|
143 |
-
<div class="answer-<?php echo $i; $i++ ?>">
|
144 |
-
<?php _e( 'Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites.', $text ); ?>
|
145 |
-
<br><br>
|
146 |
-
<?php _e( 'Please note that there is a difference between wordpress.COM and wordpress.ORG.', $text ); ?>
|
147 |
-
<?php _e( 'The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software.', $text ); ?>
|
148 |
-
<?php
|
149 |
-
printf(
|
150 |
-
__( 'You can learn more about the difference here: %s .', $text ),
|
151 |
-
'<a href="https://en.support.wordpress.com/com-vs-org/" target="_blank">https://en.support.wordpress.com/com-vs-org/</a>'
|
152 |
-
);
|
153 |
-
?>
|
154 |
-
</div>
|
155 |
-
|
156 |
-
<div class="question-<?php echo $i; ?>">
|
157 |
-
<?php _e( 'Will this plugin work/compatible with the theme I use?', $text ); ?>
|
158 |
-
</div>
|
159 |
-
<div class="answer-<?php echo $i; $i++ ?>">
|
160 |
-
<?php _e( 'This plugin is compatible with most themes.', $text ); ?>
|
161 |
-
<?php _e( 'But, unfortunately, we cannot check it with all third-party themes (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party theme.', $text ); ?>
|
162 |
-
<?php _e( 'We constantly check this plugin for compatibility with third-party themes.', $text ); ?>
|
163 |
-
<?php _e( 'If we find that this plugin is incompatible with a third-party theme, and if we can fix it on our part, we release an update of our plugin to fix the problem.', $text ); ?>
|
164 |
-
<br><br>
|
165 |
-
<?php _e( 'If you find a conflict between our plugin and a third-party theme, please let us know and we will definitely release an update of our plugin to fix the problem.', $text ); ?>
|
166 |
-
</div>
|
167 |
-
|
168 |
-
<div class="question-<?php echo $i; ?>">
|
169 |
-
<?php _e( 'Will this plugin work/compatible with other plugins that I use?', $text ); ?>
|
170 |
-
</div>
|
171 |
-
<div class="answer-<?php echo $i; $i++ ?>">
|
172 |
-
<?php _e( 'This plugin is compatible with most plugins.', $text ); ?>
|
173 |
-
<?php _e( 'But, unfortunately, we cannot check it with all third-party plugins (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party plugin.', $text ); ?>
|
174 |
-
<?php _e( 'We constantly check this plugin for compatibility with third-party plugins.', $text ); ?>
|
175 |
-
<?php _e( 'If we find that this plugin is incompatible with a third-party plugin, and if we can fix it on our part, we release an update of our plugin to fix the problem.', $text ); ?>
|
176 |
-
<br><br>
|
177 |
-
<?php _e( 'If you find a conflict between our plugin and a third-party plugin, please let us know and we will definitely release an update of our plugin to fix the problem.', $text ); ?>
|
178 |
-
</div>
|
179 |
-
|
180 |
-
<div class="question-<?php echo $i; ?>">
|
181 |
-
<?php _e( 'Can I use this plugin on my language?', $text ); ?>
|
182 |
-
</div>
|
183 |
-
<div class="answer-<?php echo $i; $i++ ?>">
|
184 |
-
<?php _e( 'Yes.', $text ); ?>
|
185 |
-
<?php _e( 'This plugin is ready for translation and has already been translated into several languages.', $text ); ?>
|
186 |
-
<?php _e( 'But If your language is not available then you can make one.', $text ); ?>
|
187 |
-
<?php _e( 'It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections.', $text ); ?>
|
188 |
-
<?php _e( 'Many of plugin users would be delighted if you share your translation with the community.', $text ); ?>
|
189 |
-
<?php _e( 'Thanks for your contribution!', $text ); ?>
|
190 |
-
<br><br>
|
191 |
-
<?php
|
192 |
-
printf(
|
193 |
-
__( 'If you want to help translate this plugin, please visit the %s.', $text ),
|
194 |
-
'<a href="https://translate.wordpress.org/projects/wp-plugins/' . $slug . '" target="_blank">translation page</a>'
|
195 |
-
);
|
196 |
-
?>
|
197 |
-
<?php _e( 'You can also use the POT file that is included and placed in the "languages" folder to create a translation PO file.', $text ); ?>
|
198 |
-
<?php
|
199 |
-
printf(
|
200 |
-
__( 'Just send the PO file to us ( %s ) and we will include this translation within the next plugin update.', $text ),
|
201 |
-
'<a href="mailto:support@spacexchimp.com?subject=New translation of the ' . $name . ' plugin">support@spacexchimp.com</a>'
|
202 |
-
);
|
203 |
-
?>
|
204 |
-
</div>
|
205 |
-
|
206 |
-
<div class="question-<?php echo $i; ?>">
|
207 |
-
<?php _e( 'How does it work?', $text ); ?>
|
208 |
-
</div>
|
209 |
-
<div class="answer-<?php echo $i; $i++ ?>">
|
210 |
-
<?php _e( 'On the "Main" tab, place your custom HTML code in the code editor field and click the "Save changes" button.', $text ); ?>
|
211 |
-
<?php _e( 'Enjoy the result of applying your custom HTML code.', $text ); ?>
|
212 |
-
<?php _e( 'It\'s that simple!', $text ); ?>
|
213 |
-
</div>
|
214 |
-
|
215 |
-
<div class="question-<?php echo $i; ?>">
|
216 |
-
<?php _e( 'How much of HTML code (characters) I can enter in the code editor?', $text ); ?>
|
217 |
-
</div>
|
218 |
-
<div class="answer-<?php echo $i; $i++ ?>">
|
219 |
-
<?php _e( 'We don\'t limit the number of characters.', $text ); ?>
|
220 |
-
</div>
|
221 |
-
|
222 |
-
<div class="question-<?php echo $i; ?>">
|
223 |
-
<?php _e( 'Does this plugin requires any modification of the theme?', $text ); ?>
|
224 |
-
</div>
|
225 |
-
<div class="answer-<?php echo $i; $i++ ?>">
|
226 |
-
<?php _e( 'Absolutely not.', $text ); ?>
|
227 |
-
<?php _e( 'This plugin is configurable entirely from the plugin settings page.', $text ); ?>
|
228 |
-
</div>
|
229 |
-
|
230 |
-
<div class="question-<?php echo $i; ?>">
|
231 |
-
<?php _e( 'Does this require any knowledge of HTML or CSS?', $text ); ?>
|
232 |
-
</div>
|
233 |
-
<div class="answer-<?php echo $i; $i++ ?>">
|
234 |
-
<?php _e( 'This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page.', $text ); ?>
|
235 |
-
<?php _e( '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 ); ?>
|
236 |
-
</div>
|
237 |
-
|
238 |
-
<div class="question-<?php echo $i; ?>">
|
239 |
-
<?php _e( 'Can I add my custom HTML code to a specific page of my website?', $text ); ?>
|
240 |
-
</div>
|
241 |
-
<div class="answer-<?php echo $i; $i++ ?>">
|
242 |
-
<?php _e( 'For now, this plugin does not have an option to apply the custom HTML code only on specific pages.', $text ); ?>
|
243 |
-
<?php _e( 'We plan to add this feature soon.', $text ); ?>
|
244 |
-
<?php _e( 'But for now in order to apply your custom HTML code only on specific pages of your website, you need to wrap your custom HTML code in a PHP code that will determine the page you want.', $text ); ?>
|
245 |
-
<?php _e( 'You need something like this:', $text ); ?>
|
246 |
-
<br><br>
|
247 |
-
<pre><code>function my_custom_html_code() {
|
248 |
-
|
249 |
-
// Stop the function if this is not the Home page of website
|
250 |
-
if ( !is_home() ) {
|
251 |
-
return;
|
252 |
-
}
|
253 |
-
|
254 |
-
// Print the custom HTML code
|
255 |
-
echo '<script>YOUR CUSTOM HTML CODE HERE</script>';
|
256 |
-
|
257 |
-
}
|
258 |
-
add_action( 'wp_head', 'my_custom_html_code' );</code></pre>
|
259 |
-
<?php
|
260 |
-
printf(
|
261 |
-
__( 'To apply the PHP code on a website, we can recommend you to use another our plugin called %s.', $text ),
|
262 |
-
'<a href="https://wordpress.org/plugins/my-custom-functions/" target="_blank">My Custom Functions</a>'
|
263 |
-
);
|
264 |
-
?>
|
265 |
-
</div>
|
266 |
-
|
267 |
-
<div class="question-<?php echo $i; ?> question-red">
|
268 |
-
<?php _e( 'It\'s not working.', $text ); ?>
|
269 |
-
<?php _e( 'What could be wrong?', $text ); ?>
|
270 |
-
</div>
|
271 |
-
<div class="answer-<?php echo $i; $i++ ?>">
|
272 |
-
<?php _e( 'As with every plugin, it\'s possible that things don\'t work.', $text ); ?>
|
273 |
-
<?php _e( 'It\'s impossible to tell what could be wrong exactly.', $text ); ?>
|
274 |
-
<?php _e( 'The most common reason for this is a web browser\'s cache.', $text ); ?>
|
275 |
-
<?php _e( 'Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load.', $text ); ?>
|
276 |
-
<?php _e( 'This is called the browser\'s cache.', $text ); ?>
|
277 |
-
<?php _e( 'Clearing your browser\'s cache may solve the problem.', $text ); ?>
|
278 |
-
<br><br>
|
279 |
-
<?php _e( '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.', $text ); ?>
|
280 |
-
<?php _e( 'Please include as much information as possible, including a link to your website where the problem can be seen.', $text ); ?>
|
281 |
-
</div>
|
282 |
-
|
283 |
-
<div class="question-<?php echo $i; ?> question-red">
|
284 |
-
<?php _e( 'My custom HTML code is not working.', $text ); ?>
|
285 |
-
<?php _e( 'What could be wrong?', $text ); ?>
|
286 |
-
</div>
|
287 |
-
<div class="answer-<?php echo $i; $i++ ?>">
|
288 |
-
<?php _e( 'It happens that your custom HTML code that you insert on the plugin page does not work, even if an error message does not appear.', $text ); ?>
|
289 |
-
<?php _e( 'Here are a few of the most likely causes of the issue:', $text ); ?>
|
290 |
-
<ol class="custom-list">
|
291 |
-
<li><?php _e( 'You have a typo during the insertion of your custom HTML code.', $text ); ?></li>
|
292 |
-
<li><?php _e( 'Your custom HTML code has a syntax error.', $text ); ?></li>
|
293 |
-
<li><?php _e( 'Your custom HTML code is incorrect and may not work.', $text ); ?></li>
|
294 |
-
</ol>
|
295 |
-
</div>
|
296 |
-
|
297 |
-
<div class="question-<?php echo $i; ?> question-red">
|
298 |
-
<?php _e( 'The last WordPress update is preventing me from editing my website that is using this plugin.', $text ); ?>
|
299 |
-
<?php _e( 'Why is this?', $text ); ?>
|
300 |
-
</div>
|
301 |
-
<div class="answer-<?php echo $i; $i++ ?>">
|
302 |
-
<?php _e( 'This plugin can not cause such problem.', $text ); ?>
|
303 |
-
<?php _e( 'More likely, the problem are related to the settings of the website.', $text ); ?>
|
304 |
-
<?php _e( '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.', $text ); ?>
|
305 |
-
<?php _e( 'Also please try to re-login to the website, this too can help.', $text ); ?>
|
306 |
-
</div>
|
307 |
-
|
308 |
-
<div class="question-<?php echo $i; ?> question-red">
|
309 |
-
<?php _e( 'Where to report bug if found?', $text ); ?>
|
310 |
-
</div>
|
311 |
-
<div class="answer-<?php echo $i; $i++ ?>">
|
312 |
-
<?php _e( 'Bug reports are very welcome!', $text ); ?>
|
313 |
-
<?php
|
314 |
-
printf(
|
315 |
-
__( 'Please visit our %s contact page %s and report.', $text ),
|
316 |
-
'<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
|
317 |
-
'</a>'
|
318 |
-
);
|
319 |
-
?>
|
320 |
-
<?php _e( 'Please do not forget to specify the name of the plugin.', $text ); ?>
|
321 |
-
<?php _e( 'Thank you!', $text ); ?>
|
322 |
-
<br><br>
|
323 |
-
<?php _e( 'Please include as much information as possible, including a link to your website where the problem can be seen.', $text ); ?>
|
324 |
-
<?php _e( 'Describe in more detail what exactly you are seeing.', $text ); ?>
|
325 |
-
<?php _e( 'Here are some examples:', $text ); ?>
|
326 |
-
<br><br>
|
327 |
-
<ul class="custom-list">
|
328 |
-
<li><?php _e( 'Elements of the plugin settings page are not working.', $text ); ?></li>
|
329 |
-
<li><?php _e( 'An error message is displayed on the plugin settings page.', $text ); ?></li>
|
330 |
-
<li><?php _e( 'An error message is displayed on the front end of website.', $text ); ?></li>
|
331 |
-
<li><?php _e( 'An error message is displayed on the back end of website.', $text ); ?></li>
|
332 |
-
<li><?php _e( 'Custom code is inserted on the plugin settings page, but it is not applied on the website.', $text ); ?></li>
|
333 |
-
<li><?php _e( 'Website is crashed.', $text ); ?></li>
|
334 |
-
</ul>
|
335 |
-
</div>
|
336 |
-
|
337 |
-
<div class="question-<?php echo $i; ?>">
|
338 |
-
<?php _e( 'Where to share any ideas or suggestions to make the plugin better?', $text ); ?>
|
339 |
-
</div>
|
340 |
-
<div class="answer-<?php echo $i; $i++ ?>">
|
341 |
-
<?php _e( 'Any suggestions are very welcome!', $text ); ?>
|
342 |
-
<?php
|
343 |
-
printf(
|
344 |
-
__( 'Please visit our %s contact page %s.', $text ),
|
345 |
-
'<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
|
346 |
-
'</a>'
|
347 |
-
);
|
348 |
-
?>
|
349 |
-
<?php _e( 'Please do not forget to specify the name of the plugin.', $text ); ?>
|
350 |
-
<?php _e( 'Thank you!', $text ); ?>
|
351 |
-
</div>
|
352 |
-
|
353 |
-
<div class="question-<?php echo $i; ?>">
|
354 |
-
<?php _e( 'I love this plugin!', $text ); ?>
|
355 |
-
<?php _e( 'Can I help somehow?', $text ); ?>
|
356 |
-
</div>
|
357 |
-
<div class="answer-<?php echo $i; $i++ ?>">
|
358 |
-
<?php _e( 'Yes, any contributions are very welcome!', $text ); ?>
|
359 |
-
<?php
|
360 |
-
printf(
|
361 |
-
__( 'Please visit our %s Support Us %s page.', $text ),
|
362 |
-
'<a href="https://www.spacexchimp.com/donate.html" target="_blank">',
|
363 |
-
'</a>'
|
364 |
-
);
|
365 |
-
?>
|
366 |
-
<?php _e( 'Thank you!', $text ); ?>
|
367 |
-
</div>
|
368 |
-
|
369 |
-
<div class="question-<?php echo $i; ?>">
|
370 |
-
<?php _e( 'Where can I find information about your licenses, payment process and refunds?', $text ); ?>
|
371 |
-
</div>
|
372 |
-
<div class="answer-<?php echo $i; $i++ ?>">
|
373 |
-
<?php
|
374 |
-
printf(
|
375 |
-
__( 'Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page.', $text ),
|
376 |
-
'<a href="https://www.spacexchimp.com/faq.html" target="_blank">',
|
377 |
-
'</a>'
|
378 |
-
);
|
379 |
-
?>
|
380 |
-
</div>
|
381 |
-
|
382 |
-
<div class="question-<?php echo $i; ?>">
|
383 |
-
<?php _e( 'Where can I find information about your customer support?', $text ); ?>
|
384 |
-
</div>
|
385 |
-
<div class="answer-<?php echo $i; $i++ ?>">
|
386 |
-
<?php
|
387 |
-
printf(
|
388 |
-
__( 'Answers to common questions about our customer support can be found on our %s Common Questions %s page.', $text ),
|
389 |
-
'<a href="https://www.spacexchimp.com/faq.html" target="_blank">',
|
390 |
-
'</a>'
|
391 |
-
);
|
392 |
-
?>
|
393 |
-
</div>
|
394 |
-
|
395 |
-
<div class="question-<?php echo $i; ?>">
|
396 |
-
<?php _e( 'Where can I find information about your affiliate program?', $text ); ?>
|
397 |
-
</div>
|
398 |
-
<div class="answer-<?php echo $i; $i++ ?>">
|
399 |
-
<?php
|
400 |
-
printf(
|
401 |
-
__( 'Answers to common questions about our affiliate program can be found on our %s Common Questions %s page.', $text ),
|
402 |
-
'<a href="https://www.spacexchimp.com/faq.html" target="_blank">',
|
403 |
-
'</a>'
|
404 |
-
);
|
405 |
-
?>
|
406 |
-
</div>
|
407 |
-
|
408 |
-
<div class="question-<?php echo $i; ?>">
|
409 |
-
<?php _e( 'My question wasn\'t answered here.', $text ); ?>
|
410 |
-
</div>
|
411 |
-
<div class="answer-<?php echo $i; $i++ ?>">
|
412 |
-
<?php
|
413 |
-
printf(
|
414 |
-
__( 'You can ask your question on %s this page %s.', $text ),
|
415 |
-
'<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
|
416 |
-
'</a>'
|
417 |
-
);
|
418 |
-
?>
|
419 |
-
<?php _e( '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 ); ?>
|
420 |
-
</div>
|
421 |
-
|
422 |
-
</div>
|
423 |
-
</div>
|
424 |
</div>
|
425 |
<!-- END-TAB 3 -->
|
426 |
|
427 |
<!-- TAB 4 -->
|
428 |
<div class="tab-page fade" id="tab-support">
|
429 |
-
|
430 |
-
<h3 class="title"><?php _e( 'Support Us', $text ); ?></h3>
|
431 |
-
<div class="inside">
|
432 |
-
<span class="image-with-button pull-left">
|
433 |
-
<img src="<?php echo SPACEXCHIMP_P006_URL . 'inc/img/thanks.png'; ?>" alt="Thanks!">
|
434 |
-
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="btn btn-default button-labeled">
|
435 |
-
<span class="btn-label">
|
436 |
-
<img src="<?php echo SPACEXCHIMP_P006_URL . 'inc/img/paypal.svg'; ?>" alt="PayPal">
|
437 |
-
</span>
|
438 |
-
<?php _e( 'Donate with PayPal', $text ); ?>
|
439 |
-
</a>
|
440 |
-
</span>
|
441 |
-
<p>
|
442 |
-
<?php _e( 'Hello!', $text ); ?>
|
443 |
-
<?php
|
444 |
-
printf(
|
445 |
-
__( 'My name is %s Arthur %s, I\'m the founder of %s Space X-Chimp %s, which unites a small international team of young people.', $text ),
|
446 |
-
'<a href="https://www.instagram.com/arthur_gareginyan/" target="_blank">',
|
447 |
-
'</a>',
|
448 |
-
'<a href="https://www.spacexchimp.com" target="_blank">',
|
449 |
-
'</a>'
|
450 |
-
);
|
451 |
-
?>
|
452 |
-
</p>
|
453 |
-
<p>
|
454 |
-
<?php _e( 'Our intention is to create projects that will make this world a better place.', $text ); ?>
|
455 |
-
<?php _e( 'Our motto is - «Follow your dreams and don’t give up».', $text ); ?>
|
456 |
-
<?php _e( 'We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too.', $text ); ?>
|
457 |
-
</p>
|
458 |
-
<p>
|
459 |
-
<?php _e( 'We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them.', $text ); ?>
|
460 |
-
<?php _e( 'But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy.', $text ); ?>
|
461 |
-
</p>
|
462 |
-
<p>
|
463 |
-
<?php _e( 'If you appreciate our work, you can buy us a cup of coffee!', $text ); ?>
|
464 |
-
</p>
|
465 |
-
<p>
|
466 |
-
<?php _e( 'Thank you for your support!', $text ); ?>
|
467 |
-
</p>
|
468 |
-
</div>
|
469 |
-
</div>
|
470 |
</div>
|
471 |
<!-- END-TAB 4 -->
|
472 |
|
15 |
$slug = SPACEXCHIMP_P006_SLUG;
|
16 |
$version = SPACEXCHIMP_P006_VERSION;
|
17 |
$text = SPACEXCHIMP_P006_TEXT;
|
18 |
+
$path = SPACEXCHIMP_P006_PATH;
|
19 |
|
20 |
// Call messages
|
21 |
spacexchimp_p006_hello_message();
|
25 |
// Layout of page
|
26 |
?>
|
27 |
<div class="wrap">
|
28 |
+
|
29 |
<h2 class="sxc-header">
|
30 |
<?php echo $name; ?>
|
31 |
<span>
|
55 |
<!-- TAB 1 -->
|
56 |
<div class="tab-page fade active in" id="tab-core">
|
57 |
<!-- INCLUDE SIDEBAR -->
|
58 |
+
<?php require_once( $path . 'inc/php/sidebar.php' ); ?>
|
59 |
<!-- INCLUDE SETTINGS -->
|
60 |
+
<?php require_once( $path . 'inc/php/tabs/settings.php' ); ?>
|
61 |
</div>
|
62 |
<!-- END-TAB 1 -->
|
63 |
|
64 |
<!-- TAB 2 -->
|
65 |
<div class="tab-page fade" id="tab-usage">
|
66 |
+
<?php require_once( $path . 'inc/php/tabs/usage.php' ); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
</div>
|
68 |
<!-- END-TAB 2 -->
|
69 |
|
70 |
<!-- TAB 3 -->
|
71 |
<div class="tab-page fade" id="tab-faq">
|
72 |
+
<?php require_once( $path . 'inc/php/tabs/faq.php' ); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
73 |
</div>
|
74 |
<!-- END-TAB 3 -->
|
75 |
|
76 |
<!-- TAB 4 -->
|
77 |
<div class="tab-page fade" id="tab-support">
|
78 |
+
<?php require_once( $path . 'inc/php/tabs/support.php' ); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
</div>
|
80 |
<!-- END-TAB 4 -->
|
81 |
|
inc/php/tabs/faq.php
ADDED
@@ -0,0 +1,338 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/**
|
4 |
+
* Prevent Direct Access
|
5 |
+
*/
|
6 |
+
defined( 'ABSPATH' ) or die( "Restricted access!" );
|
7 |
+
|
8 |
+
/**
|
9 |
+
* Render FAQ Tab Content
|
10 |
+
*/
|
11 |
+
?>
|
12 |
+
<div class="postbox">
|
13 |
+
<h3 class="title"><?php _e( 'Frequently Asked Questions', $text ); ?></h3>
|
14 |
+
<div class="inside">
|
15 |
+
|
16 |
+
<p class="note">
|
17 |
+
<?php _e( 'If you have a question, please read the Frequently Asked Questions below to see if the answer is here.', $text ); ?>
|
18 |
+
</p>
|
19 |
+
|
20 |
+
<div class="panel-group" id="collapse-group">
|
21 |
+
<?php
|
22 |
+
$loopvalue = '20';
|
23 |
+
for ( $i = 1; $i <= $loopvalue; $i++ ) {
|
24 |
+
echo '<div class="panel panel-default">
|
25 |
+
<div class="panel-heading">
|
26 |
+
<a data-toggle="collapse" data-parent="#collapse-group" href="#element' . $i . '">
|
27 |
+
<h4 class="panel-title"></h4>
|
28 |
+
</a>
|
29 |
+
</div>
|
30 |
+
<div id="element' . $i . '" class="panel-collapse collapse">
|
31 |
+
<div class="panel-body">
|
32 |
+
</div>
|
33 |
+
</div>
|
34 |
+
</div>';
|
35 |
+
}
|
36 |
+
?>
|
37 |
+
</div>
|
38 |
+
|
39 |
+
<?php $i = 1; ?>
|
40 |
+
|
41 |
+
<div class="question-<?php echo $i; ?>">
|
42 |
+
<?php _e( 'Where can I find a documentation for this plugin?', $text ); ?>
|
43 |
+
</div>
|
44 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
45 |
+
<?php
|
46 |
+
printf(
|
47 |
+
__( 'Please visit our %s Documentation site %s to view documentation.', $text ),
|
48 |
+
'<a href="https://docs.spacexchimp.com" target="_blank">',
|
49 |
+
'</a>'
|
50 |
+
);
|
51 |
+
?>
|
52 |
+
</div>
|
53 |
+
|
54 |
+
<div class="question-<?php echo $i; ?>">
|
55 |
+
<?php _e( 'Will this plugin work on my wordpress.COM website?', $text ); ?>
|
56 |
+
</div>
|
57 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
58 |
+
<?php _e( 'Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites.', $text ); ?>
|
59 |
+
<br><br>
|
60 |
+
<?php _e( 'Please note that there is a difference between wordpress.COM and wordpress.ORG.', $text ); ?>
|
61 |
+
<?php _e( 'The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software.', $text ); ?>
|
62 |
+
<?php
|
63 |
+
printf(
|
64 |
+
__( 'You can learn more about the difference here: %s .', $text ),
|
65 |
+
'<a href="https://en.support.wordpress.com/com-vs-org/" target="_blank">https://en.support.wordpress.com/com-vs-org/</a>'
|
66 |
+
);
|
67 |
+
?>
|
68 |
+
</div>
|
69 |
+
|
70 |
+
<div class="question-<?php echo $i; ?>">
|
71 |
+
<?php _e( 'Will this plugin work/compatible with the theme I use?', $text ); ?>
|
72 |
+
</div>
|
73 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
74 |
+
<?php _e( 'This plugin is compatible with most themes.', $text ); ?>
|
75 |
+
<?php _e( 'But, unfortunately, we cannot check it with all third-party themes (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party theme.', $text ); ?>
|
76 |
+
<?php _e( 'We constantly check this plugin for compatibility with third-party themes.', $text ); ?>
|
77 |
+
<?php _e( 'If we find that this plugin is incompatible with a third-party theme, and if we can fix it on our part, we release an update of our plugin to fix the problem.', $text ); ?>
|
78 |
+
<br><br>
|
79 |
+
<?php _e( 'If you find a conflict between our plugin and a third-party theme, please let us know and we will definitely release an update of our plugin to fix the problem.', $text ); ?>
|
80 |
+
</div>
|
81 |
+
|
82 |
+
<div class="question-<?php echo $i; ?>">
|
83 |
+
<?php _e( 'Will this plugin work/compatible with other plugins that I use?', $text ); ?>
|
84 |
+
</div>
|
85 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
86 |
+
<?php _e( 'This plugin is compatible with most plugins.', $text ); ?>
|
87 |
+
<?php _e( 'But, unfortunately, we cannot check it with all third-party plugins (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party plugin.', $text ); ?>
|
88 |
+
<?php _e( 'We constantly check this plugin for compatibility with third-party plugins.', $text ); ?>
|
89 |
+
<?php _e( 'If we find that this plugin is incompatible with a third-party plugin, and if we can fix it on our part, we release an update of our plugin to fix the problem.', $text ); ?>
|
90 |
+
<br><br>
|
91 |
+
<?php _e( 'If you find a conflict between our plugin and a third-party plugin, please let us know and we will definitely release an update of our plugin to fix the problem.', $text ); ?>
|
92 |
+
</div>
|
93 |
+
|
94 |
+
<div class="question-<?php echo $i; ?>">
|
95 |
+
<?php _e( 'Can I use this plugin on my language?', $text ); ?>
|
96 |
+
</div>
|
97 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
98 |
+
<?php _e( 'Yes.', $text ); ?>
|
99 |
+
<?php _e( 'This plugin is ready for translation and has already been translated into several languages.', $text ); ?>
|
100 |
+
<?php _e( 'But If your language is not available then you can make one.', $text ); ?>
|
101 |
+
<?php _e( 'It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections.', $text ); ?>
|
102 |
+
<?php _e( 'Many of plugin users would be delighted if you share your translation with the community.', $text ); ?>
|
103 |
+
<?php _e( 'Thanks for your contribution!', $text ); ?>
|
104 |
+
<br><br>
|
105 |
+
<?php
|
106 |
+
printf(
|
107 |
+
__( 'If you want to help translate this plugin, please visit the %s.', $text ),
|
108 |
+
'<a href="https://translate.wordpress.org/projects/wp-plugins/' . $slug . '" target="_blank">translation page</a>'
|
109 |
+
);
|
110 |
+
?>
|
111 |
+
<?php _e( 'You can also use the POT file that is included and placed in the "languages" folder to create a translation PO file.', $text ); ?>
|
112 |
+
<?php
|
113 |
+
printf(
|
114 |
+
__( 'Just send the PO file to us ( %s ) and we will include this translation within the next plugin update.', $text ),
|
115 |
+
'<a href="mailto:support@spacexchimp.com?subject=New translation of the ' . $name . ' plugin">support@spacexchimp.com</a>'
|
116 |
+
);
|
117 |
+
?>
|
118 |
+
</div>
|
119 |
+
|
120 |
+
<div class="question-<?php echo $i; ?>">
|
121 |
+
<?php _e( 'How does it work?', $text ); ?>
|
122 |
+
</div>
|
123 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
124 |
+
<?php _e( 'On the "Main" tab, place your custom HTML code in the code editor field and click the "Save changes" button.', $text ); ?>
|
125 |
+
<?php _e( 'Enjoy the result of applying your custom HTML code.', $text ); ?>
|
126 |
+
<?php _e( 'It\'s that simple!', $text ); ?>
|
127 |
+
</div>
|
128 |
+
|
129 |
+
<div class="question-<?php echo $i; ?>">
|
130 |
+
<?php _e( 'How much of HTML code (characters) I can enter in the code editor?', $text ); ?>
|
131 |
+
</div>
|
132 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
133 |
+
<?php _e( 'We don\'t limit the number of characters.', $text ); ?>
|
134 |
+
</div>
|
135 |
+
|
136 |
+
<div class="question-<?php echo $i; ?>">
|
137 |
+
<?php _e( 'Does this plugin requires any modification of the theme?', $text ); ?>
|
138 |
+
</div>
|
139 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
140 |
+
<?php _e( 'Absolutely not.', $text ); ?>
|
141 |
+
<?php _e( 'This plugin is configurable entirely from the plugin settings page.', $text ); ?>
|
142 |
+
</div>
|
143 |
+
|
144 |
+
<div class="question-<?php echo $i; ?>">
|
145 |
+
<?php _e( 'Does this require any knowledge of HTML or CSS?', $text ); ?>
|
146 |
+
</div>
|
147 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
148 |
+
<?php _e( 'This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page.', $text ); ?>
|
149 |
+
<?php _e( '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 ); ?>
|
150 |
+
</div>
|
151 |
+
|
152 |
+
<div class="question-<?php echo $i; ?>">
|
153 |
+
<?php _e( 'Can I add my custom HTML code to a specific page of my website?', $text ); ?>
|
154 |
+
</div>
|
155 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
156 |
+
<?php _e( 'For now, this plugin does not have an option to apply the custom HTML code only on specific pages.', $text ); ?>
|
157 |
+
<?php _e( 'We plan to add this feature soon.', $text ); ?>
|
158 |
+
<?php _e( 'But for now in order to apply your custom HTML code only on specific pages of your website, you need to wrap your custom HTML code in a PHP code that will determine the page you want.', $text ); ?>
|
159 |
+
<?php _e( 'You need something like this:', $text ); ?>
|
160 |
+
<br><br>
|
161 |
+
<pre><code>function my_custom_html_code() {
|
162 |
+
|
163 |
+
// Stop the function if this is not the Home page of website
|
164 |
+
if ( !is_home() ) {
|
165 |
+
return;
|
166 |
+
}
|
167 |
+
|
168 |
+
// Print the custom HTML code
|
169 |
+
echo '<script>YOUR CUSTOM HTML CODE HERE</script>';
|
170 |
+
|
171 |
+
}
|
172 |
+
add_action( 'wp_head', 'my_custom_html_code' );</code></pre>
|
173 |
+
<?php
|
174 |
+
printf(
|
175 |
+
__( 'To apply the PHP code on a website, we can recommend you to use another our plugin called %s.', $text ),
|
176 |
+
'<a href="https://wordpress.org/plugins/my-custom-functions/" target="_blank">My Custom Functions</a>'
|
177 |
+
);
|
178 |
+
?>
|
179 |
+
</div>
|
180 |
+
|
181 |
+
<div class="question-<?php echo $i; ?> question-red">
|
182 |
+
<?php _e( 'It\'s not working.', $text ); ?>
|
183 |
+
<?php _e( 'What could be wrong?', $text ); ?>
|
184 |
+
</div>
|
185 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
186 |
+
<?php _e( 'As with every plugin, it\'s possible that things don\'t work.', $text ); ?>
|
187 |
+
<?php _e( 'It\'s impossible to tell what could be wrong exactly.', $text ); ?>
|
188 |
+
<?php _e( 'The most common reason for this is a web browser\'s cache.', $text ); ?>
|
189 |
+
<?php _e( 'Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load.', $text ); ?>
|
190 |
+
<?php _e( 'This is called the browser\'s cache.', $text ); ?>
|
191 |
+
<?php _e( 'Clearing your browser\'s cache may solve the problem.', $text ); ?>
|
192 |
+
<br><br>
|
193 |
+
<?php _e( '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.', $text ); ?>
|
194 |
+
<?php _e( 'Please include as much information as possible, including a link to your website where the problem can be seen.', $text ); ?>
|
195 |
+
</div>
|
196 |
+
|
197 |
+
<div class="question-<?php echo $i; ?> question-red">
|
198 |
+
<?php _e( 'My custom HTML code is not working.', $text ); ?>
|
199 |
+
<?php _e( 'What could be wrong?', $text ); ?>
|
200 |
+
</div>
|
201 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
202 |
+
<?php _e( 'It happens that your custom HTML code that you insert on the plugin page does not work, even if an error message does not appear.', $text ); ?>
|
203 |
+
<?php _e( 'Here are a few of the most likely causes of the issue:', $text ); ?>
|
204 |
+
<ol class="custom-list">
|
205 |
+
<li><?php _e( 'You have a typo during the insertion of your custom HTML code.', $text ); ?></li>
|
206 |
+
<li><?php _e( 'Your custom HTML code has a syntax error.', $text ); ?></li>
|
207 |
+
<li><?php _e( 'Your custom HTML code is incorrect and may not work.', $text ); ?></li>
|
208 |
+
</ol>
|
209 |
+
</div>
|
210 |
+
|
211 |
+
<div class="question-<?php echo $i; ?> question-red">
|
212 |
+
<?php _e( 'The last WordPress update is preventing me from editing my website that is using this plugin.', $text ); ?>
|
213 |
+
<?php _e( 'Why is this?', $text ); ?>
|
214 |
+
</div>
|
215 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
216 |
+
<?php _e( 'This plugin can not cause such problem.', $text ); ?>
|
217 |
+
<?php _e( 'More likely, the problem are related to the settings of the website.', $text ); ?>
|
218 |
+
<?php _e( '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.', $text ); ?>
|
219 |
+
<?php _e( 'Also please try to re-login to the website, this too can help.', $text ); ?>
|
220 |
+
</div>
|
221 |
+
|
222 |
+
<div class="question-<?php echo $i; ?> question-red">
|
223 |
+
<?php _e( 'Where to report bug if found?', $text ); ?>
|
224 |
+
</div>
|
225 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
226 |
+
<?php _e( 'Bug reports are very welcome!', $text ); ?>
|
227 |
+
<?php
|
228 |
+
printf(
|
229 |
+
__( 'Please visit our %s contact page %s and report.', $text ),
|
230 |
+
'<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
|
231 |
+
'</a>'
|
232 |
+
);
|
233 |
+
?>
|
234 |
+
<?php _e( 'Please do not forget to specify the name of the plugin.', $text ); ?>
|
235 |
+
<?php _e( 'Thank you!', $text ); ?>
|
236 |
+
<br><br>
|
237 |
+
<?php _e( 'Please include as much information as possible, including a link to your website where the problem can be seen.', $text ); ?>
|
238 |
+
<?php _e( 'Describe in more detail what exactly you are seeing.', $text ); ?>
|
239 |
+
<?php _e( 'Here are some examples:', $text ); ?>
|
240 |
+
<br><br>
|
241 |
+
<ul class="custom-list">
|
242 |
+
<li><?php _e( 'Elements of the plugin settings page are not working.', $text ); ?></li>
|
243 |
+
<li><?php _e( 'An error message is displayed on the plugin settings page.', $text ); ?></li>
|
244 |
+
<li><?php _e( 'An error message is displayed on the front end of website.', $text ); ?></li>
|
245 |
+
<li><?php _e( 'An error message is displayed on the back end of website.', $text ); ?></li>
|
246 |
+
<li><?php _e( 'Custom code is inserted on the plugin settings page, but it is not applied on the website.', $text ); ?></li>
|
247 |
+
<li><?php _e( 'Website is crashed.', $text ); ?></li>
|
248 |
+
</ul>
|
249 |
+
</div>
|
250 |
+
|
251 |
+
<div class="question-<?php echo $i; ?>">
|
252 |
+
<?php _e( 'Where to share any ideas or suggestions to make the plugin better?', $text ); ?>
|
253 |
+
</div>
|
254 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
255 |
+
<?php _e( 'Any suggestions are very welcome!', $text ); ?>
|
256 |
+
<?php
|
257 |
+
printf(
|
258 |
+
__( 'Please visit our %s contact page %s.', $text ),
|
259 |
+
'<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
|
260 |
+
'</a>'
|
261 |
+
);
|
262 |
+
?>
|
263 |
+
<?php _e( 'Please do not forget to specify the name of the plugin.', $text ); ?>
|
264 |
+
<?php _e( 'Thank you!', $text ); ?>
|
265 |
+
</div>
|
266 |
+
|
267 |
+
<div class="question-<?php echo $i; ?>">
|
268 |
+
<?php _e( 'I love this plugin!', $text ); ?>
|
269 |
+
<?php _e( 'Can I help somehow?', $text ); ?>
|
270 |
+
</div>
|
271 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
272 |
+
<?php _e( 'Yes, any contributions are very welcome!', $text ); ?>
|
273 |
+
<?php
|
274 |
+
printf(
|
275 |
+
__( 'Please visit our %s Support Us %s page.', $text ),
|
276 |
+
'<a href="https://www.spacexchimp.com/donate.html" target="_blank">',
|
277 |
+
'</a>'
|
278 |
+
);
|
279 |
+
?>
|
280 |
+
<?php _e( 'Thank you!', $text ); ?>
|
281 |
+
</div>
|
282 |
+
|
283 |
+
<div class="question-<?php echo $i; ?>">
|
284 |
+
<?php _e( 'Where can I find information about your licenses, payment process and refunds?', $text ); ?>
|
285 |
+
</div>
|
286 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
287 |
+
<?php
|
288 |
+
printf(
|
289 |
+
__( 'Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page.', $text ),
|
290 |
+
'<a href="https://www.spacexchimp.com/faq.html" target="_blank">',
|
291 |
+
'</a>'
|
292 |
+
);
|
293 |
+
?>
|
294 |
+
</div>
|
295 |
+
|
296 |
+
<div class="question-<?php echo $i; ?>">
|
297 |
+
<?php _e( 'Where can I find information about your customer support?', $text ); ?>
|
298 |
+
</div>
|
299 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
300 |
+
<?php
|
301 |
+
printf(
|
302 |
+
__( 'Answers to common questions about our customer support can be found on our %s Common Questions %s page.', $text ),
|
303 |
+
'<a href="https://www.spacexchimp.com/faq.html" target="_blank">',
|
304 |
+
'</a>'
|
305 |
+
);
|
306 |
+
?>
|
307 |
+
</div>
|
308 |
+
|
309 |
+
<div class="question-<?php echo $i; ?>">
|
310 |
+
<?php _e( 'Where can I find information about your affiliate program?', $text ); ?>
|
311 |
+
</div>
|
312 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
313 |
+
<?php
|
314 |
+
printf(
|
315 |
+
__( 'Answers to common questions about our affiliate program can be found on our %s Common Questions %s page.', $text ),
|
316 |
+
'<a href="https://www.spacexchimp.com/faq.html" target="_blank">',
|
317 |
+
'</a>'
|
318 |
+
);
|
319 |
+
?>
|
320 |
+
</div>
|
321 |
+
|
322 |
+
<div class="question-<?php echo $i; ?>">
|
323 |
+
<?php _e( 'My question wasn\'t answered here.', $text ); ?>
|
324 |
+
</div>
|
325 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
326 |
+
<?php
|
327 |
+
printf(
|
328 |
+
__( 'You can ask your question on %s this page %s.', $text ),
|
329 |
+
'<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
|
330 |
+
'</a>'
|
331 |
+
);
|
332 |
+
?>
|
333 |
+
<?php _e( '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 ); ?>
|
334 |
+
</div>
|
335 |
+
|
336 |
+
</div>
|
337 |
+
</div>
|
338 |
+
<?php
|
inc/php/{settings.php → tabs/settings.php}
RENAMED
File without changes
|
inc/php/tabs/support.php
ADDED
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/**
|
4 |
+
* Prevent Direct Access
|
5 |
+
*/
|
6 |
+
defined( 'ABSPATH' ) or die( "Restricted access!" );
|
7 |
+
|
8 |
+
/**
|
9 |
+
* Render Support Us Tab Content
|
10 |
+
*/
|
11 |
+
?>
|
12 |
+
<div class="postbox">
|
13 |
+
<h3 class="title"><?php _e( 'Support Us', $text ); ?></h3>
|
14 |
+
<div class="inside">
|
15 |
+
<span class="image-with-button pull-left">
|
16 |
+
<img src="<?php echo SPACEXCHIMP_P006_URL . 'inc/img/thanks.png'; ?>" alt="Thanks!">
|
17 |
+
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="btn btn-default button-labeled">
|
18 |
+
<span class="btn-label">
|
19 |
+
<img src="<?php echo SPACEXCHIMP_P006_URL . 'inc/img/paypal.svg'; ?>" alt="PayPal">
|
20 |
+
</span>
|
21 |
+
<?php _e( 'Donate with PayPal', $text ); ?>
|
22 |
+
</a>
|
23 |
+
</span>
|
24 |
+
<p>
|
25 |
+
<?php _e( 'Hello!', $text ); ?>
|
26 |
+
<?php
|
27 |
+
printf(
|
28 |
+
__( 'My name is %s Arthur %s, I\'m the founder of %s Space X-Chimp %s, which unites a small international team of young people.', $text ),
|
29 |
+
'<a href="https://www.instagram.com/arthur_gareginyan/" target="_blank">',
|
30 |
+
'</a>',
|
31 |
+
'<a href="https://www.spacexchimp.com" target="_blank">',
|
32 |
+
'</a>'
|
33 |
+
);
|
34 |
+
?>
|
35 |
+
</p>
|
36 |
+
<p>
|
37 |
+
<?php _e( 'Our intention is to create projects that will make this world a better place.', $text ); ?>
|
38 |
+
<?php _e( 'Our motto is - «Follow your dreams and don’t give up».', $text ); ?>
|
39 |
+
<?php _e( 'We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too.', $text ); ?>
|
40 |
+
</p>
|
41 |
+
<p>
|
42 |
+
<?php _e( 'We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them.', $text ); ?>
|
43 |
+
<?php _e( 'But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy.', $text ); ?>
|
44 |
+
</p>
|
45 |
+
<p>
|
46 |
+
<?php _e( 'If you appreciate our work, you can buy us a cup of coffee!', $text ); ?>
|
47 |
+
</p>
|
48 |
+
<p>
|
49 |
+
<?php _e( 'Thank you for your support!', $text ); ?>
|
50 |
+
</p>
|
51 |
+
</div>
|
52 |
+
</div>
|
53 |
+
<?php
|
inc/php/tabs/usage.php
ADDED
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/**
|
4 |
+
* Prevent Direct Access
|
5 |
+
*/
|
6 |
+
defined( 'ABSPATH' ) or die( "Restricted access!" );
|
7 |
+
|
8 |
+
/**
|
9 |
+
* Render Usage Tab Content
|
10 |
+
*/
|
11 |
+
?>
|
12 |
+
<div class="postbox">
|
13 |
+
<h3 class="title"><?php _e( 'Usage Instructions', $text ); ?></h3>
|
14 |
+
<div class="inside">
|
15 |
+
<p><?php _e( 'To add your custom HTML code (plus JavaScript, CSS, etc.) to your website, simply follow these steps:', $text ); ?></p>
|
16 |
+
<ol class="custom-counter">
|
17 |
+
<li><?php _e( 'Go to the "Main" tab on this page.', $text ); ?></li>
|
18 |
+
<li>
|
19 |
+
<?php _e( 'Place your custom HTML code in the code editor field.', $text ); ?>
|
20 |
+
<br><br>
|
21 |
+
<p class="note">
|
22 |
+
<b><?php _e( 'Note!', $text ); ?></b>
|
23 |
+
<?php _e( 'The JavaScript and CSS code must be wrapped in HTML tags.', $text ); ?>
|
24 |
+
<?php _e( 'For JavaScript code use the <code><script></code> tag, and for CSS code use the <code><style></code> tag.', $text ); ?>
|
25 |
+
</p>
|
26 |
+
</li>
|
27 |
+
<li><?php _e( 'Click the "Save changes" button.', $text ); ?></li>
|
28 |
+
<li><?php _e( 'Enjoy the result of applying your custom HTML code.', $text ); ?> <?php _e( 'It\'s that simple!', $text ); ?></li>
|
29 |
+
</ol>
|
30 |
+
<p class="note">
|
31 |
+
<?php
|
32 |
+
printf(
|
33 |
+
__( 'If you want more options, then %s let us know %s and we will be happy to add them.', $text ),
|
34 |
+
'<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
|
35 |
+
'</a>'
|
36 |
+
);
|
37 |
+
?>
|
38 |
+
</p>
|
39 |
+
</div>
|
40 |
+
</div>
|
41 |
+
<?php
|
languages/header-and-footer-scripts-inserter-de_DE.mo
CHANGED
Binary file
|
languages/header-and-footer-scripts-inserter-de_DE.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Head and Footer Scripts Inserter\n"
|
6 |
-
"POT-Creation-Date: 2019-
|
7 |
-
"PO-Revision-Date: 2019-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: German\n"
|
10 |
"Language: de_DE\n"
|
@@ -36,7 +36,7 @@ msgstr "Spende"
|
|
36 |
msgid "Scripts Inserter"
|
37 |
msgstr "Scripts Inserter"
|
38 |
|
39 |
-
#: inc/php/messages.php:27 inc/php/
|
40 |
msgid "Hello!"
|
41 |
msgstr "Hallo!"
|
42 |
|
@@ -61,597 +61,598 @@ msgstr "Bitte installieren Sie die aktuelle Version des Plugins und alles wir gu
|
|
61 |
msgid "Custom code updated successfully."
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: inc/php/page.php:
|
65 |
#, php-format
|
66 |
msgid "by %s Space X-Chimp %s"
|
67 |
msgstr "by %s Space X-Chimp %s"
|
68 |
|
69 |
-
#: inc/php/page.php:
|
70 |
msgid "Version"
|
71 |
msgstr "Version"
|
72 |
|
73 |
-
#: inc/php/page.php:
|
74 |
msgid "Main"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: inc/php/page.php:
|
78 |
msgid "Usage"
|
79 |
msgstr "Verwendung"
|
80 |
|
81 |
-
#: inc/php/page.php:
|
82 |
msgid "F.A.Q."
|
83 |
msgstr "F.A.Q."
|
84 |
|
85 |
-
#: inc/php/page.php:
|
86 |
msgid "Support"
|
87 |
msgstr "Unterstützung"
|
88 |
|
89 |
-
#: inc/php/page.php:
|
90 |
msgid "Store"
|
91 |
msgstr "Geschäft"
|
92 |
|
93 |
-
#: inc/php/
|
94 |
-
msgid "
|
95 |
-
msgstr "
|
96 |
-
|
97 |
-
#: inc/php/page.php:67
|
98 |
-
msgid "To add your custom HTML code (plus JavaScript, CSS, etc.) to your website, simply follow these steps:"
|
99 |
-
msgstr ""
|
100 |
-
|
101 |
-
#: inc/php/page.php:69
|
102 |
-
msgid "Go to the \"Main\" tab on this page."
|
103 |
-
msgstr ""
|
104 |
-
|
105 |
-
#: inc/php/page.php:71
|
106 |
-
msgid "Place your custom HTML code in the code editor field."
|
107 |
-
msgstr ""
|
108 |
|
109 |
-
#: inc/php/
|
110 |
-
msgid "
|
111 |
-
msgstr "
|
112 |
|
113 |
-
#: inc/php/
|
114 |
-
msgid "
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: inc/php/
|
118 |
-
msgid "
|
119 |
-
msgstr ""
|
120 |
|
121 |
-
#: inc/php/
|
122 |
-
msgid "
|
123 |
-
msgstr "
|
124 |
|
125 |
-
#: inc/php/
|
126 |
-
msgid "
|
127 |
-
msgstr ""
|
128 |
|
129 |
-
#: inc/php/
|
130 |
-
|
131 |
-
|
|
|
132 |
|
133 |
-
#: inc/php/
|
134 |
-
|
135 |
-
|
136 |
-
msgstr "Wenn Sie mehr Optionen benötigen, %s teilen Sie uns %s dies mit und wir werden sie gerne hinzufügen."
|
137 |
|
138 |
-
#: inc/php/
|
139 |
msgid "Frequently Asked Questions"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: inc/php/
|
143 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
144 |
msgstr "Wenn Sie Fragen haben, lesen Sie bitte die F.A.Q.s und schauen Sie nach, ob Ihre Antwort dabei ist."
|
145 |
|
146 |
-
#: inc/php/
|
147 |
msgid "Where can I find a documentation for this plugin?"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: inc/php/
|
151 |
#, php-format
|
152 |
msgid "Please visit our %s Documentation site %s to view documentation."
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: inc/php/
|
156 |
msgid "Will this plugin work on my wordpress.COM website?"
|
157 |
msgstr "Funktioniert dieses Plugin auf meiner wordpress.COM Webseite?"
|
158 |
|
159 |
-
#: inc/php/
|
160 |
msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
|
161 |
msgstr "Leider nicht. Dieses Plugin ist nur verfügbar auf self-hosted (wordpress.ORG) Webseiten."
|
162 |
|
163 |
-
#: inc/php/
|
164 |
msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: inc/php/
|
168 |
msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: inc/php/
|
172 |
#, php-format
|
173 |
msgid "You can learn more about the difference here: %s ."
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: inc/php/
|
177 |
msgid "Will this plugin work/compatible with the theme I use?"
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: inc/php/
|
181 |
msgid "This plugin is compatible with most themes."
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: inc/php/
|
185 |
msgid "But, unfortunately, we cannot check it with all third-party themes (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party theme."
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: inc/php/
|
189 |
msgid "We constantly check this plugin for compatibility with third-party themes."
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: inc/php/
|
193 |
msgid "If we find that this plugin is incompatible with a third-party theme, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: inc/php/
|
197 |
msgid "If you find a conflict between our plugin and a third-party theme, please let us know and we will definitely release an update of our plugin to fix the problem."
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: inc/php/
|
201 |
msgid "Will this plugin work/compatible with other plugins that I use?"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: inc/php/
|
205 |
msgid "This plugin is compatible with most plugins."
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: inc/php/
|
209 |
msgid "But, unfortunately, we cannot check it with all third-party plugins (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party plugin."
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: inc/php/
|
213 |
msgid "We constantly check this plugin for compatibility with third-party plugins."
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: inc/php/
|
217 |
msgid "If we find that this plugin is incompatible with a third-party plugin, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: inc/php/
|
221 |
msgid "If you find a conflict between our plugin and a third-party plugin, please let us know and we will definitely release an update of our plugin to fix the problem."
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: inc/php/
|
225 |
msgid "Can I use this plugin on my language?"
|
226 |
msgstr "Kann ich das Plugin in meiner Sprache verwenden?"
|
227 |
|
228 |
-
#: inc/php/
|
229 |
msgid "Yes."
|
230 |
msgstr "Ja."
|
231 |
|
232 |
-
#: inc/php/
|
233 |
msgid "This plugin is ready for translation and has already been translated into several languages."
|
234 |
msgstr "Dieses Plugin übersetzbar und bereits in mehreren Sprachen verfügbar."
|
235 |
|
236 |
-
#: inc/php/
|
237 |
msgid "But If your language is not available then you can make one."
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: inc/php/
|
241 |
msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
|
242 |
msgstr "Vielleicht sind nicht alle vorhandenen Übersetzungen aktuell. Gerne können Sie an den Korrekturen mitwirken."
|
243 |
|
244 |
-
#: inc/php/
|
245 |
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
246 |
msgstr "Viele Benutzer des Plugins freuen sich darüber, wenn Sie Ihre Übersetzung mit der Öffentlichkeit teilen."
|
247 |
|
248 |
-
#: inc/php/
|
249 |
msgid "Thanks for your contribution!"
|
250 |
msgstr "Danke für Ihre Mithilfe!"
|
251 |
|
252 |
-
#: inc/php/
|
253 |
#, php-format
|
254 |
msgid "If you want to help translate this plugin, please visit the %s."
|
255 |
msgstr "Wenn Sie bei der Übersetzung dieses Plugins helfen wollen, bitte besuchen Sie %s."
|
256 |
|
257 |
-
#: inc/php/
|
258 |
msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
|
259 |
msgstr "Sie können auch die POT Datei, die Sie im “languages” Ordner finden, verwenden, um eine PO Übersetzungsdatei zu erstellen."
|
260 |
|
261 |
-
#: inc/php/
|
262 |
#, php-format
|
263 |
msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
|
264 |
msgstr "Senden Sie die übersetzte PO Datei an uns ( %s ) und wir werde die Übersetzung beim nächsten Plugin Update hinzufügen."
|
265 |
|
266 |
-
#: inc/php/
|
267 |
msgid "How does it work?"
|
268 |
msgstr "Wie arbeitet das Plugin?"
|
269 |
|
270 |
-
#: inc/php/
|
271 |
msgid "On the \"Main\" tab, place your custom HTML code in the code editor field and click the \"Save changes\" button."
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: inc/php/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
275 |
msgid "How much of HTML code (characters) I can enter in the code editor?"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: inc/php/
|
279 |
msgid "We don't limit the number of characters."
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: inc/php/
|
283 |
msgid "Does this plugin requires any modification of the theme?"
|
284 |
msgstr "Benötigt das Plugin Veränderungen am Theme?"
|
285 |
|
286 |
-
#: inc/php/
|
287 |
msgid "Absolutely not."
|
288 |
msgstr "Absolut nicht."
|
289 |
|
290 |
-
#: inc/php/
|
291 |
msgid "This plugin is configurable entirely from the plugin settings page."
|
292 |
msgstr "Alle Konfigurationen des Plugins finden Sie auf Einstellungsseite des Plugins."
|
293 |
|
294 |
-
#: inc/php/
|
295 |
msgid "Does this require any knowledge of HTML or CSS?"
|
296 |
msgstr "Brauche ich HTML oder CSS Kenntnisse?"
|
297 |
|
298 |
-
#: inc/php/
|
299 |
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: inc/php/
|
303 |
msgid "But you need to know the HTML or CSS in order to add/remove/modify the HTML or CSS code by using this plugin."
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: inc/php/
|
307 |
msgid "Can I add my custom HTML code to a specific page of my website?"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: inc/php/
|
311 |
msgid "For now, this plugin does not have an option to apply the custom HTML code only on specific pages."
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: inc/php/
|
315 |
msgid "We plan to add this feature soon."
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: inc/php/
|
319 |
msgid "But for now in order to apply your custom HTML code only on specific pages of your website, you need to wrap your custom HTML code in a PHP code that will determine the page you want."
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: inc/php/
|
323 |
msgid "You need something like this:"
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: inc/php/
|
327 |
#, php-format
|
328 |
msgid "To apply the PHP code on a website, we can recommend you to use another our plugin called %s."
|
329 |
msgstr ""
|
330 |
|
331 |
-
#: inc/php/
|
332 |
msgid "It's not working."
|
333 |
msgstr "Es funktioniert nicht."
|
334 |
|
335 |
-
#: inc/php/
|
336 |
msgid "What could be wrong?"
|
337 |
msgstr "Was könnte falsch sein?"
|
338 |
|
339 |
-
#: inc/php/
|
340 |
msgid "As with every plugin, it's possible that things don't work."
|
341 |
msgstr "Wie bei jedem Plugin ist es möglich, dass nicht alles funktioniert."
|
342 |
|
343 |
-
#: inc/php/
|
344 |
msgid "It's impossible to tell what could be wrong exactly."
|
345 |
msgstr "Es ist unmöglich genau festzustellen was falsch ist."
|
346 |
|
347 |
-
#: inc/php/
|
348 |
msgid "The most common reason for this is a web browser's cache."
|
349 |
msgstr "Der häufigste Grund dafür ist der Cache Ihres Webbrowsers."
|
350 |
|
351 |
-
#: inc/php/
|
352 |
msgid "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load."
|
353 |
msgstr "Jeder Webbrowser speichert den Cache der besuchten Webseite (Seiten, Bilder, usw.) um die Bandbreite zu reduzieren."
|
354 |
|
355 |
-
#: inc/php/
|
356 |
msgid "This is called the browser's cache."
|
357 |
msgstr "Das nennt man den Browser Cache."
|
358 |
|
359 |
-
#: inc/php/
|
360 |
msgid "Clearing your browser's cache may solve the problem."
|
361 |
msgstr "Wenn Sie den Cache Ihres Browsers löschen, könnte das Problem behoben sein."
|
362 |
|
363 |
-
#: inc/php/
|
364 |
msgid "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."
|
365 |
msgstr "Wenn Sie jedoch eine Support Anfrage im Plugins Support Forum von wordpress.ORG stellen, helfe wir Ihnen gerne."
|
366 |
|
367 |
-
#: inc/php/
|
368 |
msgid "Please include as much information as possible, including a link to your website where the problem can be seen."
|
369 |
msgstr "Bitte fügen Sie so viele Informationen wie möglich und einen Link zu der Webseite hinzu, wo das Problem auftritt."
|
370 |
|
371 |
-
#: inc/php/
|
372 |
msgid "My custom HTML code is not working."
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: inc/php/
|
376 |
msgid "It happens that your custom HTML code that you insert on the plugin page does not work, even if an error message does not appear."
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: inc/php/
|
380 |
msgid "Here are a few of the most likely causes of the issue:"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: inc/php/
|
384 |
msgid "You have a typo during the insertion of your custom HTML code."
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: inc/php/
|
388 |
msgid "Your custom HTML code has a syntax error."
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: inc/php/
|
392 |
msgid "Your custom HTML code is incorrect and may not work."
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: inc/php/
|
396 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
|
397 |
msgstr "Das letzte WordPress-Update hindert mich daran, meine Webseite, die dieses Plugin verwendet, zu bearbeiten."
|
398 |
|
399 |
-
#: inc/php/
|
400 |
msgid "Why is this?"
|
401 |
msgstr "Warum ist das so?"
|
402 |
|
403 |
-
#: inc/php/
|
404 |
msgid "This plugin can not cause such problem."
|
405 |
msgstr "Dieses Plugin kann ein solches Problem nicht verursachen."
|
406 |
|
407 |
-
#: inc/php/
|
408 |
msgid "More likely, the problem are related to the settings of the website."
|
409 |
msgstr "Wahrscheinlich hängt das Problem mit den Einstellungen der Webseite zusammen."
|
410 |
|
411 |
-
#: inc/php/
|
412 |
msgid "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."
|
413 |
msgstr "Es könnte einfach nur ein Cache sein. Versuchen Sie daher, den Cache Ihrer Webseite zu löschen (möglicherweise verwenden Sie ein Caching-Plugin oder einen Webservice wie CloudFlare) und danach den Cache Ihres Webbrowsers."
|
414 |
|
415 |
-
#: inc/php/
|
416 |
msgid "Also please try to re-login to the website, this too can help."
|
417 |
msgstr "Versuchen Sie auch, sich erneut auf der Webseite anzumelden, auch dies kann helfen."
|
418 |
|
419 |
-
#: inc/php/
|
420 |
msgid "Where to report bug if found?"
|
421 |
msgstr "Wo kann ich eine Fehler melden?"
|
422 |
|
423 |
-
#: inc/php/
|
424 |
msgid "Bug reports are very welcome!"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: inc/php/
|
428 |
#, php-format
|
429 |
msgid "Please visit our %s contact page %s and report."
|
430 |
msgstr "Bitte besuchen Sie unsere %s Kontaktseite %s und berichten Sie."
|
431 |
|
432 |
-
#: inc/php/
|
433 |
msgid "Please do not forget to specify the name of the plugin."
|
434 |
msgstr "Bitte vergiss nicht den Namen des Plugins anzugeben."
|
435 |
|
436 |
-
#: inc/php/
|
437 |
msgid "Thank you!"
|
438 |
msgstr "Danke!"
|
439 |
|
440 |
-
#: inc/php/
|
441 |
msgid "Describe in more detail what exactly you are seeing."
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: inc/php/
|
445 |
msgid "Here are some examples:"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: inc/php/
|
449 |
msgid "Elements of the plugin settings page are not working."
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: inc/php/
|
453 |
msgid "An error message is displayed on the plugin settings page."
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: inc/php/
|
457 |
msgid "An error message is displayed on the front end of website."
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: inc/php/
|
461 |
msgid "An error message is displayed on the back end of website."
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: inc/php/
|
465 |
msgid "Custom code is inserted on the plugin settings page, but it is not applied on the website."
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: inc/php/
|
469 |
msgid "Website is crashed."
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: inc/php/
|
473 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
474 |
msgstr "Wo können Sie Ideen oder Vorschläge loswerden, um das Plugin besser zu machen?"
|
475 |
|
476 |
-
#: inc/php/
|
477 |
msgid "Any suggestions are very welcome!"
|
478 |
msgstr "Irgendwelche Vorschläge sind sehr willkommen!"
|
479 |
|
480 |
-
#: inc/php/
|
481 |
#, php-format
|
482 |
msgid "Please visit our %s contact page %s."
|
483 |
msgstr "Bitte besuchen Sie unsere %s Kontaktseite %s."
|
484 |
|
485 |
-
#: inc/php/
|
486 |
msgid "I love this plugin!"
|
487 |
msgstr "Ich liebe dieses Plugin!"
|
488 |
|
489 |
-
#: inc/php/
|
490 |
msgid "Can I help somehow?"
|
491 |
msgstr "Kann ich Irgendwie helfen?"
|
492 |
|
493 |
-
#: inc/php/
|
494 |
msgid "Yes, any contributions are very welcome!"
|
495 |
msgstr "Ja, jede Mithilfe ist sehr willkommen!"
|
496 |
|
497 |
-
#: inc/php/
|
498 |
#, php-format
|
499 |
msgid "Please visit our %s Support Us %s page."
|
500 |
msgstr "Bitte besuchen Sie unsere %s Support Us %s Seite."
|
501 |
|
502 |
-
#: inc/php/
|
503 |
msgid "Where can I find information about your licenses, payment process and refunds?"
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: inc/php/
|
507 |
#, php-format
|
508 |
msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: inc/php/
|
512 |
msgid "Where can I find information about your customer support?"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: inc/php/
|
516 |
#, php-format
|
517 |
msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
|
518 |
msgstr ""
|
519 |
|
520 |
-
#: inc/php/
|
521 |
msgid "Where can I find information about your affiliate program?"
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: inc/php/
|
525 |
#, php-format
|
526 |
msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: inc/php/
|
530 |
msgid "My question wasn't answered here."
|
531 |
msgstr "Meine Fragen wurden nicht beantwortet."
|
532 |
|
533 |
-
#: inc/php/
|
534 |
#, php-format
|
535 |
msgid "You can ask your question on %s this page %s."
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: inc/php/
|
539 |
msgid "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."
|
540 |
msgstr "Aber bitte bedenken Sie, dass dieses Plugin kostenlos ist. Es gibt kein Support Team, deshalb habe wir keine Möglichkeit jedem zu antworten."
|
541 |
|
542 |
-
#: inc/php/
|
543 |
-
msgid "Support Us"
|
544 |
-
msgstr "Unterstütze uns"
|
545 |
-
|
546 |
-
#: inc/php/page.php:438 inc/php/settings.php:94 inc/php/sidebar.php:54
|
547 |
-
msgid "Donate with PayPal"
|
548 |
-
msgstr "Spende mit PayPal"
|
549 |
-
|
550 |
-
#: inc/php/page.php:445
|
551 |
-
#, php-format
|
552 |
-
msgid "My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
553 |
-
msgstr "Meine name ist %s Arthur %s und ich bin der Gründer von %s Space X-Chimp %s, which unites a small international team of young people."
|
554 |
-
|
555 |
-
#: inc/php/page.php:454
|
556 |
-
msgid "Our intention is to create projects that will make this world a better place."
|
557 |
-
msgstr "Unser Absicht ist es, Projekte zu entwickeln, die diese Welt zu einem besseren Ort machen."
|
558 |
-
|
559 |
-
#: inc/php/page.php:455
|
560 |
-
msgid "Our motto is - «Follow your dreams and don’t give up»."
|
561 |
-
msgstr ""
|
562 |
-
|
563 |
-
#: inc/php/page.php:456
|
564 |
-
msgid "We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
565 |
-
msgstr "Wir sind begeistert von unserer Arbeit, wir mag, was wir tue, und hoffe, dass Sie auch von unsere Projekten bereichert werden."
|
566 |
-
|
567 |
-
#: inc/php/page.php:459
|
568 |
-
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them."
|
569 |
-
msgstr "Wir haben viel Zeit und Mühe darauf verwendet sicherzustellen, dass die Themes, Plugins und andere Dinge, die wir entwickeln, nützlich sind. Der ultimative Beweis für uns ist, dass Sie sie tatsächlich verwenden."
|
570 |
-
|
571 |
-
#: inc/php/page.php:460
|
572 |
-
msgid "But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
573 |
-
msgstr ""
|
574 |
-
|
575 |
-
#: inc/php/page.php:463
|
576 |
-
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
577 |
-
msgstr "Wenn Ihnen unsere Arbeit gefällt, können Sie uns gerne einen Kaffee kaufen!"
|
578 |
-
|
579 |
-
#: inc/php/page.php:466
|
580 |
-
msgid "Thank you for your support!"
|
581 |
-
msgstr "Danke für Ihre Unterstützung!"
|
582 |
-
|
583 |
-
#: inc/php/settings.php:32
|
584 |
msgid "Head Section"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: inc/php/settings.php:34 inc/php/settings.php:62
|
588 |
msgid "NOT SAVED!"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: inc/php/settings.php:38
|
592 |
msgid "You can use the fields below to add your custom HTML code to the HEAD section of your website's front end."
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: inc/php/settings.php:40
|
596 |
msgid "The HTML code from this field will be printed at the beginning of the HEAD section. Do not place plain text in this!"
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: inc/php/settings.php:44 inc/php/settings.php:51
|
600 |
-
#: inc/php/settings.php:79
|
601 |
msgid "Enter your custom HTML code here"
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: inc/php/settings.php:47
|
605 |
msgid "The HTML code from this field will be printed at the end of the HEAD section. Do not place plain text in this!"
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: inc/php/settings.php:54 inc/php/settings.php:82
|
609 |
msgid "Save changes"
|
610 |
msgstr "Änderungen speichern"
|
611 |
|
612 |
-
#: inc/php/settings.php:60
|
613 |
msgid "Footer Section"
|
614 |
msgstr ""
|
615 |
|
616 |
-
#: inc/php/settings.php:66
|
617 |
msgid "You can use the fields below to add your custom HTML code to the FOOTER section of your website's front end."
|
618 |
msgstr ""
|
619 |
|
620 |
-
#: inc/php/settings.php:68
|
621 |
msgid "The HTML code from this field will be printed at the beginning of the FOOTER section. Do not place plain text in this!"
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: inc/php/settings.php:75
|
625 |
msgid "The HTML code from this field will be printed at the end of the FOOTER section. Do not place plain text in this!"
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: inc/php/
|
629 |
-
msgid "
|
630 |
-
msgstr "
|
631 |
|
632 |
-
#: inc/php/
|
633 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
634 |
msgstr "Danke für Ihre Unterstützung!"
|
635 |
|
636 |
-
#: inc/php/
|
637 |
-
msgid "
|
638 |
-
msgstr "
|
639 |
|
640 |
-
#: inc/php/
|
641 |
-
msgid "
|
642 |
-
msgstr "
|
643 |
|
644 |
-
#: inc/php/
|
645 |
-
msgid "
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: inc/php/
|
649 |
-
msgid "
|
650 |
-
msgstr "
|
651 |
|
652 |
-
#: inc/php/
|
653 |
-
msgid "
|
654 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
655 |
|
656 |
#. Plugin Name of the plugin/theme
|
657 |
msgid "Head and Footer Scripts Inserter"
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Head and Footer Scripts Inserter\n"
|
6 |
+
"POT-Creation-Date: 2019-03-01 06:40+0300\n"
|
7 |
+
"PO-Revision-Date: 2019-03-01 06:40+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: German\n"
|
10 |
"Language: de_DE\n"
|
36 |
msgid "Scripts Inserter"
|
37 |
msgstr "Scripts Inserter"
|
38 |
|
39 |
+
#: inc/php/messages.php:27 inc/php/tabs/support.php:25
|
40 |
msgid "Hello!"
|
41 |
msgstr "Hallo!"
|
42 |
|
61 |
msgid "Custom code updated successfully."
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: inc/php/page.php:34
|
65 |
#, php-format
|
66 |
msgid "by %s Space X-Chimp %s"
|
67 |
msgstr "by %s Space X-Chimp %s"
|
68 |
|
69 |
+
#: inc/php/page.php:40
|
70 |
msgid "Version"
|
71 |
msgstr "Version"
|
72 |
|
73 |
+
#: inc/php/page.php:47
|
74 |
msgid "Main"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: inc/php/page.php:48
|
78 |
msgid "Usage"
|
79 |
msgstr "Verwendung"
|
80 |
|
81 |
+
#: inc/php/page.php:49
|
82 |
msgid "F.A.Q."
|
83 |
msgstr "F.A.Q."
|
84 |
|
85 |
+
#: inc/php/page.php:50 inc/php/sidebar.php:47 inc/php/tabs/settings.php:87
|
86 |
msgid "Support"
|
87 |
msgstr "Unterstützung"
|
88 |
|
89 |
+
#: inc/php/page.php:51
|
90 |
msgid "Store"
|
91 |
msgstr "Geschäft"
|
92 |
|
93 |
+
#: inc/php/sidebar.php:16
|
94 |
+
msgid "We are «Space X-Chimp»"
|
95 |
+
msgstr "Wir sind «Space X-Chimp»"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
96 |
|
97 |
+
#: inc/php/sidebar.php:33
|
98 |
+
msgid "About"
|
99 |
+
msgstr "Über"
|
100 |
|
101 |
+
#: inc/php/sidebar.php:35
|
102 |
+
msgid "This plugin gives you the ability to easily and safely add your custom HTML code (plus JavaScript, CSS, etc.) to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: inc/php/sidebar.php:40
|
106 |
+
msgid "Help"
|
107 |
+
msgstr "Hilfe"
|
108 |
|
109 |
+
#: inc/php/sidebar.php:42
|
110 |
+
msgid "If you have a question, please read the information in the FAQ section."
|
111 |
+
msgstr "Wenn Sie Fragen haben, lesen Sie bitte auch die Fragen im FAQ Bereich."
|
112 |
|
113 |
+
#: inc/php/sidebar.php:49 inc/php/tabs/settings.php:89
|
114 |
+
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
115 |
+
msgstr "Jeder kleine Beitrag trägt dazu bei, unsere Kosten zu decken und wir kann mehr Zeit damit verbringen, Dinge für Leute wie Sie zu entwickeln."
|
116 |
|
117 |
+
#: inc/php/sidebar.php:54 inc/php/tabs/settings.php:94
|
118 |
+
#: inc/php/tabs/support.php:21
|
119 |
+
msgid "Donate with PayPal"
|
120 |
+
msgstr "Spende mit PayPal"
|
121 |
|
122 |
+
#: inc/php/sidebar.php:56 inc/php/tabs/settings.php:96
|
123 |
+
msgid "Thanks for your support!"
|
124 |
+
msgstr "Danke für Ihre Unterstützung!"
|
|
|
125 |
|
126 |
+
#: inc/php/tabs/faq.php:13
|
127 |
msgid "Frequently Asked Questions"
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: inc/php/tabs/faq.php:17
|
131 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
132 |
msgstr "Wenn Sie Fragen haben, lesen Sie bitte die F.A.Q.s und schauen Sie nach, ob Ihre Antwort dabei ist."
|
133 |
|
134 |
+
#: inc/php/tabs/faq.php:42
|
135 |
msgid "Where can I find a documentation for this plugin?"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: inc/php/tabs/faq.php:47
|
139 |
#, php-format
|
140 |
msgid "Please visit our %s Documentation site %s to view documentation."
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: inc/php/tabs/faq.php:55
|
144 |
msgid "Will this plugin work on my wordpress.COM website?"
|
145 |
msgstr "Funktioniert dieses Plugin auf meiner wordpress.COM Webseite?"
|
146 |
|
147 |
+
#: inc/php/tabs/faq.php:58
|
148 |
msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
|
149 |
msgstr "Leider nicht. Dieses Plugin ist nur verfügbar auf self-hosted (wordpress.ORG) Webseiten."
|
150 |
|
151 |
+
#: inc/php/tabs/faq.php:60
|
152 |
msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: inc/php/tabs/faq.php:61
|
156 |
msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: inc/php/tabs/faq.php:64
|
160 |
#, php-format
|
161 |
msgid "You can learn more about the difference here: %s ."
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: inc/php/tabs/faq.php:71
|
165 |
msgid "Will this plugin work/compatible with the theme I use?"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: inc/php/tabs/faq.php:74
|
169 |
msgid "This plugin is compatible with most themes."
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: inc/php/tabs/faq.php:75
|
173 |
msgid "But, unfortunately, we cannot check it with all third-party themes (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party theme."
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: inc/php/tabs/faq.php:76
|
177 |
msgid "We constantly check this plugin for compatibility with third-party themes."
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: inc/php/tabs/faq.php:77
|
181 |
msgid "If we find that this plugin is incompatible with a third-party theme, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: inc/php/tabs/faq.php:79
|
185 |
msgid "If you find a conflict between our plugin and a third-party theme, please let us know and we will definitely release an update of our plugin to fix the problem."
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: inc/php/tabs/faq.php:83
|
189 |
msgid "Will this plugin work/compatible with other plugins that I use?"
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: inc/php/tabs/faq.php:86
|
193 |
msgid "This plugin is compatible with most plugins."
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: inc/php/tabs/faq.php:87
|
197 |
msgid "But, unfortunately, we cannot check it with all third-party plugins (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party plugin."
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: inc/php/tabs/faq.php:88
|
201 |
msgid "We constantly check this plugin for compatibility with third-party plugins."
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: inc/php/tabs/faq.php:89
|
205 |
msgid "If we find that this plugin is incompatible with a third-party plugin, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: inc/php/tabs/faq.php:91
|
209 |
msgid "If you find a conflict between our plugin and a third-party plugin, please let us know and we will definitely release an update of our plugin to fix the problem."
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: inc/php/tabs/faq.php:95
|
213 |
msgid "Can I use this plugin on my language?"
|
214 |
msgstr "Kann ich das Plugin in meiner Sprache verwenden?"
|
215 |
|
216 |
+
#: inc/php/tabs/faq.php:98
|
217 |
msgid "Yes."
|
218 |
msgstr "Ja."
|
219 |
|
220 |
+
#: inc/php/tabs/faq.php:99
|
221 |
msgid "This plugin is ready for translation and has already been translated into several languages."
|
222 |
msgstr "Dieses Plugin übersetzbar und bereits in mehreren Sprachen verfügbar."
|
223 |
|
224 |
+
#: inc/php/tabs/faq.php:100
|
225 |
msgid "But If your language is not available then you can make one."
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: inc/php/tabs/faq.php:101
|
229 |
msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
|
230 |
msgstr "Vielleicht sind nicht alle vorhandenen Übersetzungen aktuell. Gerne können Sie an den Korrekturen mitwirken."
|
231 |
|
232 |
+
#: inc/php/tabs/faq.php:102
|
233 |
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
234 |
msgstr "Viele Benutzer des Plugins freuen sich darüber, wenn Sie Ihre Übersetzung mit der Öffentlichkeit teilen."
|
235 |
|
236 |
+
#: inc/php/tabs/faq.php:103
|
237 |
msgid "Thanks for your contribution!"
|
238 |
msgstr "Danke für Ihre Mithilfe!"
|
239 |
|
240 |
+
#: inc/php/tabs/faq.php:107
|
241 |
#, php-format
|
242 |
msgid "If you want to help translate this plugin, please visit the %s."
|
243 |
msgstr "Wenn Sie bei der Übersetzung dieses Plugins helfen wollen, bitte besuchen Sie %s."
|
244 |
|
245 |
+
#: inc/php/tabs/faq.php:111
|
246 |
msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
|
247 |
msgstr "Sie können auch die POT Datei, die Sie im “languages” Ordner finden, verwenden, um eine PO Übersetzungsdatei zu erstellen."
|
248 |
|
249 |
+
#: inc/php/tabs/faq.php:114
|
250 |
#, php-format
|
251 |
msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
|
252 |
msgstr "Senden Sie die übersetzte PO Datei an uns ( %s ) und wir werde die Übersetzung beim nächsten Plugin Update hinzufügen."
|
253 |
|
254 |
+
#: inc/php/tabs/faq.php:121
|
255 |
msgid "How does it work?"
|
256 |
msgstr "Wie arbeitet das Plugin?"
|
257 |
|
258 |
+
#: inc/php/tabs/faq.php:124
|
259 |
msgid "On the \"Main\" tab, place your custom HTML code in the code editor field and click the \"Save changes\" button."
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: inc/php/tabs/faq.php:125 inc/php/tabs/usage.php:28
|
263 |
+
msgid "Enjoy the result of applying your custom HTML code."
|
264 |
+
msgstr ""
|
265 |
+
|
266 |
+
#: inc/php/tabs/faq.php:126 inc/php/tabs/usage.php:28
|
267 |
+
msgid "It's that simple!"
|
268 |
+
msgstr "Es ist ganz einfach!"
|
269 |
+
|
270 |
+
#: inc/php/tabs/faq.php:130
|
271 |
msgid "How much of HTML code (characters) I can enter in the code editor?"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: inc/php/tabs/faq.php:133
|
275 |
msgid "We don't limit the number of characters."
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: inc/php/tabs/faq.php:137
|
279 |
msgid "Does this plugin requires any modification of the theme?"
|
280 |
msgstr "Benötigt das Plugin Veränderungen am Theme?"
|
281 |
|
282 |
+
#: inc/php/tabs/faq.php:140
|
283 |
msgid "Absolutely not."
|
284 |
msgstr "Absolut nicht."
|
285 |
|
286 |
+
#: inc/php/tabs/faq.php:141
|
287 |
msgid "This plugin is configurable entirely from the plugin settings page."
|
288 |
msgstr "Alle Konfigurationen des Plugins finden Sie auf Einstellungsseite des Plugins."
|
289 |
|
290 |
+
#: inc/php/tabs/faq.php:145
|
291 |
msgid "Does this require any knowledge of HTML or CSS?"
|
292 |
msgstr "Brauche ich HTML oder CSS Kenntnisse?"
|
293 |
|
294 |
+
#: inc/php/tabs/faq.php:148
|
295 |
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: inc/php/tabs/faq.php:149
|
299 |
msgid "But you need to know the HTML or CSS in order to add/remove/modify the HTML or CSS code by using this plugin."
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: inc/php/tabs/faq.php:153
|
303 |
msgid "Can I add my custom HTML code to a specific page of my website?"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: inc/php/tabs/faq.php:156
|
307 |
msgid "For now, this plugin does not have an option to apply the custom HTML code only on specific pages."
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: inc/php/tabs/faq.php:157
|
311 |
msgid "We plan to add this feature soon."
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: inc/php/tabs/faq.php:158
|
315 |
msgid "But for now in order to apply your custom HTML code only on specific pages of your website, you need to wrap your custom HTML code in a PHP code that will determine the page you want."
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: inc/php/tabs/faq.php:159
|
319 |
msgid "You need something like this:"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: inc/php/tabs/faq.php:175
|
323 |
#, php-format
|
324 |
msgid "To apply the PHP code on a website, we can recommend you to use another our plugin called %s."
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: inc/php/tabs/faq.php:182
|
328 |
msgid "It's not working."
|
329 |
msgstr "Es funktioniert nicht."
|
330 |
|
331 |
+
#: inc/php/tabs/faq.php:183 inc/php/tabs/faq.php:199
|
332 |
msgid "What could be wrong?"
|
333 |
msgstr "Was könnte falsch sein?"
|
334 |
|
335 |
+
#: inc/php/tabs/faq.php:186
|
336 |
msgid "As with every plugin, it's possible that things don't work."
|
337 |
msgstr "Wie bei jedem Plugin ist es möglich, dass nicht alles funktioniert."
|
338 |
|
339 |
+
#: inc/php/tabs/faq.php:187
|
340 |
msgid "It's impossible to tell what could be wrong exactly."
|
341 |
msgstr "Es ist unmöglich genau festzustellen was falsch ist."
|
342 |
|
343 |
+
#: inc/php/tabs/faq.php:188
|
344 |
msgid "The most common reason for this is a web browser's cache."
|
345 |
msgstr "Der häufigste Grund dafür ist der Cache Ihres Webbrowsers."
|
346 |
|
347 |
+
#: inc/php/tabs/faq.php:189
|
348 |
msgid "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load."
|
349 |
msgstr "Jeder Webbrowser speichert den Cache der besuchten Webseite (Seiten, Bilder, usw.) um die Bandbreite zu reduzieren."
|
350 |
|
351 |
+
#: inc/php/tabs/faq.php:190
|
352 |
msgid "This is called the browser's cache."
|
353 |
msgstr "Das nennt man den Browser Cache."
|
354 |
|
355 |
+
#: inc/php/tabs/faq.php:191
|
356 |
msgid "Clearing your browser's cache may solve the problem."
|
357 |
msgstr "Wenn Sie den Cache Ihres Browsers löschen, könnte das Problem behoben sein."
|
358 |
|
359 |
+
#: inc/php/tabs/faq.php:193
|
360 |
msgid "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."
|
361 |
msgstr "Wenn Sie jedoch eine Support Anfrage im Plugins Support Forum von wordpress.ORG stellen, helfe wir Ihnen gerne."
|
362 |
|
363 |
+
#: inc/php/tabs/faq.php:194 inc/php/tabs/faq.php:237
|
364 |
msgid "Please include as much information as possible, including a link to your website where the problem can be seen."
|
365 |
msgstr "Bitte fügen Sie so viele Informationen wie möglich und einen Link zu der Webseite hinzu, wo das Problem auftritt."
|
366 |
|
367 |
+
#: inc/php/tabs/faq.php:198
|
368 |
msgid "My custom HTML code is not working."
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: inc/php/tabs/faq.php:202
|
372 |
msgid "It happens that your custom HTML code that you insert on the plugin page does not work, even if an error message does not appear."
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: inc/php/tabs/faq.php:203
|
376 |
msgid "Here are a few of the most likely causes of the issue:"
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: inc/php/tabs/faq.php:205
|
380 |
msgid "You have a typo during the insertion of your custom HTML code."
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: inc/php/tabs/faq.php:206
|
384 |
msgid "Your custom HTML code has a syntax error."
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: inc/php/tabs/faq.php:207
|
388 |
msgid "Your custom HTML code is incorrect and may not work."
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: inc/php/tabs/faq.php:212
|
392 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
|
393 |
msgstr "Das letzte WordPress-Update hindert mich daran, meine Webseite, die dieses Plugin verwendet, zu bearbeiten."
|
394 |
|
395 |
+
#: inc/php/tabs/faq.php:213
|
396 |
msgid "Why is this?"
|
397 |
msgstr "Warum ist das so?"
|
398 |
|
399 |
+
#: inc/php/tabs/faq.php:216
|
400 |
msgid "This plugin can not cause such problem."
|
401 |
msgstr "Dieses Plugin kann ein solches Problem nicht verursachen."
|
402 |
|
403 |
+
#: inc/php/tabs/faq.php:217
|
404 |
msgid "More likely, the problem are related to the settings of the website."
|
405 |
msgstr "Wahrscheinlich hängt das Problem mit den Einstellungen der Webseite zusammen."
|
406 |
|
407 |
+
#: inc/php/tabs/faq.php:218
|
408 |
msgid "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."
|
409 |
msgstr "Es könnte einfach nur ein Cache sein. Versuchen Sie daher, den Cache Ihrer Webseite zu löschen (möglicherweise verwenden Sie ein Caching-Plugin oder einen Webservice wie CloudFlare) und danach den Cache Ihres Webbrowsers."
|
410 |
|
411 |
+
#: inc/php/tabs/faq.php:219
|
412 |
msgid "Also please try to re-login to the website, this too can help."
|
413 |
msgstr "Versuchen Sie auch, sich erneut auf der Webseite anzumelden, auch dies kann helfen."
|
414 |
|
415 |
+
#: inc/php/tabs/faq.php:223
|
416 |
msgid "Where to report bug if found?"
|
417 |
msgstr "Wo kann ich eine Fehler melden?"
|
418 |
|
419 |
+
#: inc/php/tabs/faq.php:226
|
420 |
msgid "Bug reports are very welcome!"
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: inc/php/tabs/faq.php:229
|
424 |
#, php-format
|
425 |
msgid "Please visit our %s contact page %s and report."
|
426 |
msgstr "Bitte besuchen Sie unsere %s Kontaktseite %s und berichten Sie."
|
427 |
|
428 |
+
#: inc/php/tabs/faq.php:234 inc/php/tabs/faq.php:263
|
429 |
msgid "Please do not forget to specify the name of the plugin."
|
430 |
msgstr "Bitte vergiss nicht den Namen des Plugins anzugeben."
|
431 |
|
432 |
+
#: inc/php/tabs/faq.php:235 inc/php/tabs/faq.php:264 inc/php/tabs/faq.php:280
|
433 |
msgid "Thank you!"
|
434 |
msgstr "Danke!"
|
435 |
|
436 |
+
#: inc/php/tabs/faq.php:238
|
437 |
msgid "Describe in more detail what exactly you are seeing."
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: inc/php/tabs/faq.php:239
|
441 |
msgid "Here are some examples:"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: inc/php/tabs/faq.php:242
|
445 |
msgid "Elements of the plugin settings page are not working."
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: inc/php/tabs/faq.php:243
|
449 |
msgid "An error message is displayed on the plugin settings page."
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: inc/php/tabs/faq.php:244
|
453 |
msgid "An error message is displayed on the front end of website."
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: inc/php/tabs/faq.php:245
|
457 |
msgid "An error message is displayed on the back end of website."
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: inc/php/tabs/faq.php:246
|
461 |
msgid "Custom code is inserted on the plugin settings page, but it is not applied on the website."
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: inc/php/tabs/faq.php:247
|
465 |
msgid "Website is crashed."
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: inc/php/tabs/faq.php:252
|
469 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
470 |
msgstr "Wo können Sie Ideen oder Vorschläge loswerden, um das Plugin besser zu machen?"
|
471 |
|
472 |
+
#: inc/php/tabs/faq.php:255
|
473 |
msgid "Any suggestions are very welcome!"
|
474 |
msgstr "Irgendwelche Vorschläge sind sehr willkommen!"
|
475 |
|
476 |
+
#: inc/php/tabs/faq.php:258
|
477 |
#, php-format
|
478 |
msgid "Please visit our %s contact page %s."
|
479 |
msgstr "Bitte besuchen Sie unsere %s Kontaktseite %s."
|
480 |
|
481 |
+
#: inc/php/tabs/faq.php:268
|
482 |
msgid "I love this plugin!"
|
483 |
msgstr "Ich liebe dieses Plugin!"
|
484 |
|
485 |
+
#: inc/php/tabs/faq.php:269
|
486 |
msgid "Can I help somehow?"
|
487 |
msgstr "Kann ich Irgendwie helfen?"
|
488 |
|
489 |
+
#: inc/php/tabs/faq.php:272
|
490 |
msgid "Yes, any contributions are very welcome!"
|
491 |
msgstr "Ja, jede Mithilfe ist sehr willkommen!"
|
492 |
|
493 |
+
#: inc/php/tabs/faq.php:275
|
494 |
#, php-format
|
495 |
msgid "Please visit our %s Support Us %s page."
|
496 |
msgstr "Bitte besuchen Sie unsere %s Support Us %s Seite."
|
497 |
|
498 |
+
#: inc/php/tabs/faq.php:284
|
499 |
msgid "Where can I find information about your licenses, payment process and refunds?"
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: inc/php/tabs/faq.php:289
|
503 |
#, php-format
|
504 |
msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: inc/php/tabs/faq.php:297
|
508 |
msgid "Where can I find information about your customer support?"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: inc/php/tabs/faq.php:302
|
512 |
#, php-format
|
513 |
msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: inc/php/tabs/faq.php:310
|
517 |
msgid "Where can I find information about your affiliate program?"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: inc/php/tabs/faq.php:315
|
521 |
#, php-format
|
522 |
msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: inc/php/tabs/faq.php:323
|
526 |
msgid "My question wasn't answered here."
|
527 |
msgstr "Meine Fragen wurden nicht beantwortet."
|
528 |
|
529 |
+
#: inc/php/tabs/faq.php:328
|
530 |
#, php-format
|
531 |
msgid "You can ask your question on %s this page %s."
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: inc/php/tabs/faq.php:333
|
535 |
msgid "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."
|
536 |
msgstr "Aber bitte bedenken Sie, dass dieses Plugin kostenlos ist. Es gibt kein Support Team, deshalb habe wir keine Möglichkeit jedem zu antworten."
|
537 |
|
538 |
+
#: inc/php/tabs/settings.php:32
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
539 |
msgid "Head Section"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: inc/php/tabs/settings.php:34 inc/php/tabs/settings.php:62
|
543 |
msgid "NOT SAVED!"
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: inc/php/tabs/settings.php:38
|
547 |
msgid "You can use the fields below to add your custom HTML code to the HEAD section of your website's front end."
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: inc/php/tabs/settings.php:40
|
551 |
msgid "The HTML code from this field will be printed at the beginning of the HEAD section. Do not place plain text in this!"
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: inc/php/tabs/settings.php:44 inc/php/tabs/settings.php:51
|
555 |
+
#: inc/php/tabs/settings.php:72 inc/php/tabs/settings.php:79
|
556 |
msgid "Enter your custom HTML code here"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: inc/php/tabs/settings.php:47
|
560 |
msgid "The HTML code from this field will be printed at the end of the HEAD section. Do not place plain text in this!"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: inc/php/tabs/settings.php:54 inc/php/tabs/settings.php:82
|
564 |
msgid "Save changes"
|
565 |
msgstr "Änderungen speichern"
|
566 |
|
567 |
+
#: inc/php/tabs/settings.php:60
|
568 |
msgid "Footer Section"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: inc/php/tabs/settings.php:66
|
572 |
msgid "You can use the fields below to add your custom HTML code to the FOOTER section of your website's front end."
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: inc/php/tabs/settings.php:68
|
576 |
msgid "The HTML code from this field will be printed at the beginning of the FOOTER section. Do not place plain text in this!"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: inc/php/tabs/settings.php:75
|
580 |
msgid "The HTML code from this field will be printed at the end of the FOOTER section. Do not place plain text in this!"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: inc/php/tabs/support.php:13
|
584 |
+
msgid "Support Us"
|
585 |
+
msgstr "Unterstütze uns"
|
586 |
|
587 |
+
#: inc/php/tabs/support.php:28
|
588 |
+
#, php-format
|
589 |
+
msgid "My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
590 |
+
msgstr "Meine name ist %s Arthur %s und ich bin der Gründer von %s Space X-Chimp %s, which unites a small international team of young people."
|
591 |
+
|
592 |
+
#: inc/php/tabs/support.php:37
|
593 |
+
msgid "Our intention is to create projects that will make this world a better place."
|
594 |
+
msgstr "Unser Absicht ist es, Projekte zu entwickeln, die diese Welt zu einem besseren Ort machen."
|
595 |
+
|
596 |
+
#: inc/php/tabs/support.php:38
|
597 |
+
msgid "Our motto is - «Follow your dreams and don’t give up»."
|
598 |
+
msgstr ""
|
599 |
+
|
600 |
+
#: inc/php/tabs/support.php:39
|
601 |
+
msgid "We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
602 |
+
msgstr "Wir sind begeistert von unserer Arbeit, wir mag, was wir tue, und hoffe, dass Sie auch von unsere Projekten bereichert werden."
|
603 |
+
|
604 |
+
#: inc/php/tabs/support.php:42
|
605 |
+
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them."
|
606 |
+
msgstr "Wir haben viel Zeit und Mühe darauf verwendet sicherzustellen, dass die Themes, Plugins und andere Dinge, die wir entwickeln, nützlich sind. Der ultimative Beweis für uns ist, dass Sie sie tatsächlich verwenden."
|
607 |
+
|
608 |
+
#: inc/php/tabs/support.php:43
|
609 |
+
msgid "But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
610 |
+
msgstr ""
|
611 |
+
|
612 |
+
#: inc/php/tabs/support.php:46
|
613 |
+
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
614 |
+
msgstr "Wenn Ihnen unsere Arbeit gefällt, können Sie uns gerne einen Kaffee kaufen!"
|
615 |
+
|
616 |
+
#: inc/php/tabs/support.php:49
|
617 |
+
msgid "Thank you for your support!"
|
618 |
msgstr "Danke für Ihre Unterstützung!"
|
619 |
|
620 |
+
#: inc/php/tabs/usage.php:13
|
621 |
+
msgid "Usage Instructions"
|
622 |
+
msgstr "Anleitung"
|
623 |
|
624 |
+
#: inc/php/tabs/usage.php:15
|
625 |
+
msgid "To add your custom HTML code (plus JavaScript, CSS, etc.) to your website, simply follow these steps:"
|
626 |
+
msgstr ""
|
627 |
|
628 |
+
#: inc/php/tabs/usage.php:17
|
629 |
+
msgid "Go to the \"Main\" tab on this page."
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: inc/php/tabs/usage.php:19
|
633 |
+
msgid "Place your custom HTML code in the code editor field."
|
634 |
+
msgstr ""
|
635 |
|
636 |
+
#: inc/php/tabs/usage.php:22
|
637 |
+
msgid "Note!"
|
638 |
+
msgstr "Achtung!"
|
639 |
+
|
640 |
+
#: inc/php/tabs/usage.php:23
|
641 |
+
msgid "The JavaScript and CSS code must be wrapped in HTML tags."
|
642 |
+
msgstr ""
|
643 |
+
|
644 |
+
#: inc/php/tabs/usage.php:24
|
645 |
+
msgid "For JavaScript code use the <code><script></code> tag, and for CSS code use the <code><style></code> tag."
|
646 |
+
msgstr ""
|
647 |
+
|
648 |
+
#: inc/php/tabs/usage.php:27
|
649 |
+
msgid "Click the \"Save changes\" button."
|
650 |
+
msgstr "Klicken Sie den \"Änderungen speichern\" button."
|
651 |
+
|
652 |
+
#: inc/php/tabs/usage.php:33
|
653 |
+
#, php-format
|
654 |
+
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
655 |
+
msgstr "Wenn Sie mehr Optionen benötigen, %s teilen Sie uns %s dies mit und wir werden sie gerne hinzufügen."
|
656 |
|
657 |
#. Plugin Name of the plugin/theme
|
658 |
msgid "Head and Footer Scripts Inserter"
|
languages/header-and-footer-scripts-inserter-es_ES.mo
CHANGED
Binary file
|
languages/header-and-footer-scripts-inserter-es_ES.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Head and Footer Scripts Inserter\n"
|
6 |
-
"POT-Creation-Date: 2019-
|
7 |
-
"PO-Revision-Date: 2019-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Spanish\n"
|
10 |
"Language: es_ES\n"
|
@@ -36,7 +36,7 @@ msgstr "Donar"
|
|
36 |
msgid "Scripts Inserter"
|
37 |
msgstr "Scripts Inserter"
|
38 |
|
39 |
-
#: inc/php/messages.php:27 inc/php/
|
40 |
msgid "Hello!"
|
41 |
msgstr "¡Hola!"
|
42 |
|
@@ -61,597 +61,598 @@ msgstr "Actualiza el complemento a la versión más reciente y todo estará bien
|
|
61 |
msgid "Custom code updated successfully."
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: inc/php/page.php:
|
65 |
#, php-format
|
66 |
msgid "by %s Space X-Chimp %s"
|
67 |
msgstr "por %s Space X-Chimp %s"
|
68 |
|
69 |
-
#: inc/php/page.php:
|
70 |
msgid "Version"
|
71 |
msgstr "Versión"
|
72 |
|
73 |
-
#: inc/php/page.php:
|
74 |
msgid "Main"
|
75 |
msgstr "Principal"
|
76 |
|
77 |
-
#: inc/php/page.php:
|
78 |
msgid "Usage"
|
79 |
msgstr "Uso"
|
80 |
|
81 |
-
#: inc/php/page.php:
|
82 |
msgid "F.A.Q."
|
83 |
msgstr "Preguntas ?"
|
84 |
|
85 |
-
#: inc/php/page.php:
|
86 |
msgid "Support"
|
87 |
msgstr "Soporte"
|
88 |
|
89 |
-
#: inc/php/page.php:
|
90 |
msgid "Store"
|
91 |
msgstr "Tienda"
|
92 |
|
93 |
-
#: inc/php/
|
94 |
-
msgid "
|
95 |
-
msgstr "Instrucciones de uso"
|
96 |
-
|
97 |
-
#: inc/php/page.php:67
|
98 |
-
msgid "To add your custom HTML code (plus JavaScript, CSS, etc.) to your website, simply follow these steps:"
|
99 |
-
msgstr ""
|
100 |
-
|
101 |
-
#: inc/php/page.php:69
|
102 |
-
msgid "Go to the \"Main\" tab on this page."
|
103 |
-
msgstr "Debes ir a la pestaña “Principal”."
|
104 |
-
|
105 |
-
#: inc/php/page.php:71
|
106 |
-
msgid "Place your custom HTML code in the code editor field."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: inc/php/
|
110 |
-
msgid "
|
111 |
-
msgstr "
|
112 |
|
113 |
-
#: inc/php/
|
114 |
-
msgid "
|
115 |
-
msgstr ""
|
116 |
|
117 |
-
#: inc/php/
|
118 |
-
msgid "
|
119 |
-
msgstr ""
|
120 |
|
121 |
-
#: inc/php/
|
122 |
-
msgid "
|
123 |
-
msgstr "
|
124 |
|
125 |
-
#: inc/php/
|
126 |
-
msgid "
|
127 |
-
msgstr ""
|
128 |
|
129 |
-
#: inc/php/
|
130 |
-
|
131 |
-
|
|
|
132 |
|
133 |
-
#: inc/php/
|
134 |
-
|
135 |
-
|
136 |
-
msgstr "Si quieres más opciones, %s díganos %s y estaremos encantados de añadirlo."
|
137 |
|
138 |
-
#: inc/php/
|
139 |
msgid "Frequently Asked Questions"
|
140 |
msgstr "Preguntas Frecuentes"
|
141 |
|
142 |
-
#: inc/php/
|
143 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
144 |
msgstr "Si tienes alguna pregunta, por favor lee las Preguntas Frecuentes a continuación, para ver si la respuesta está aquí."
|
145 |
|
146 |
-
#: inc/php/
|
147 |
msgid "Where can I find a documentation for this plugin?"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: inc/php/
|
151 |
#, php-format
|
152 |
msgid "Please visit our %s Documentation site %s to view documentation."
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: inc/php/
|
156 |
msgid "Will this plugin work on my wordpress.COM website?"
|
157 |
msgstr "¿Funcionará este complemento en mi sitio web wordpress.COM?"
|
158 |
|
159 |
-
#: inc/php/
|
160 |
msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
|
161 |
msgstr "Lo sentimos, este complemento está disponible para su uso solo en sitios web alojados (wordpress.ORG)."
|
162 |
|
163 |
-
#: inc/php/
|
164 |
msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: inc/php/
|
168 |
msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: inc/php/
|
172 |
#, php-format
|
173 |
msgid "You can learn more about the difference here: %s ."
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: inc/php/
|
177 |
msgid "Will this plugin work/compatible with the theme I use?"
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: inc/php/
|
181 |
msgid "This plugin is compatible with most themes."
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: inc/php/
|
185 |
msgid "But, unfortunately, we cannot check it with all third-party themes (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party theme."
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: inc/php/
|
189 |
msgid "We constantly check this plugin for compatibility with third-party themes."
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: inc/php/
|
193 |
msgid "If we find that this plugin is incompatible with a third-party theme, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: inc/php/
|
197 |
msgid "If you find a conflict between our plugin and a third-party theme, please let us know and we will definitely release an update of our plugin to fix the problem."
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: inc/php/
|
201 |
msgid "Will this plugin work/compatible with other plugins that I use?"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: inc/php/
|
205 |
msgid "This plugin is compatible with most plugins."
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: inc/php/
|
209 |
msgid "But, unfortunately, we cannot check it with all third-party plugins (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party plugin."
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: inc/php/
|
213 |
msgid "We constantly check this plugin for compatibility with third-party plugins."
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: inc/php/
|
217 |
msgid "If we find that this plugin is incompatible with a third-party plugin, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: inc/php/
|
221 |
msgid "If you find a conflict between our plugin and a third-party plugin, please let us know and we will definitely release an update of our plugin to fix the problem."
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: inc/php/
|
225 |
msgid "Can I use this plugin on my language?"
|
226 |
msgstr "¿Puedo usar este complemento en mi idioma?"
|
227 |
|
228 |
-
#: inc/php/
|
229 |
msgid "Yes."
|
230 |
msgstr "Sí."
|
231 |
|
232 |
-
#: inc/php/
|
233 |
msgid "This plugin is ready for translation and has already been translated into several languages."
|
234 |
msgstr "Este complemento está listo para ser traducido y ya ha sido traducido a varios idiomas."
|
235 |
|
236 |
-
#: inc/php/
|
237 |
msgid "But If your language is not available then you can make one."
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: inc/php/
|
241 |
msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
|
242 |
msgstr "Quizás no todas las traducciones existentes estén actualizadas. Le invitamos a contribuir correcciones!"
|
243 |
|
244 |
-
#: inc/php/
|
245 |
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
246 |
msgstr "Muchos de los usuarios de este complemento estarían encantados si compartes tu traducción con la comunidad."
|
247 |
|
248 |
-
#: inc/php/
|
249 |
msgid "Thanks for your contribution!"
|
250 |
msgstr "¡Gracias por tu contribución!"
|
251 |
|
252 |
-
#: inc/php/
|
253 |
#, php-format
|
254 |
msgid "If you want to help translate this plugin, please visit the %s."
|
255 |
msgstr "Si quieres ayudar a traducir este complemento, por favor visite el %s."
|
256 |
|
257 |
-
#: inc/php/
|
258 |
msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
|
259 |
msgstr "También puede utilizar el archivo POT, incluido y colocado en la carpeta “languages”, para crear un archivo PO de traducción."
|
260 |
|
261 |
-
#: inc/php/
|
262 |
#, php-format
|
263 |
msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
|
264 |
msgstr "Simplemente envíenos ( %s ) el archivo PO e incluiremos esta traducción en la siguiente actualización del complemento."
|
265 |
|
266 |
-
#: inc/php/
|
267 |
msgid "How does it work?"
|
268 |
msgstr "¿Como funciona?"
|
269 |
|
270 |
-
#: inc/php/
|
271 |
msgid "On the \"Main\" tab, place your custom HTML code in the code editor field and click the \"Save changes\" button."
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: inc/php/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
275 |
msgid "How much of HTML code (characters) I can enter in the code editor?"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: inc/php/
|
279 |
msgid "We don't limit the number of characters."
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: inc/php/
|
283 |
msgid "Does this plugin requires any modification of the theme?"
|
284 |
msgstr "¿Este complemento requiere alguna modificación del tema?"
|
285 |
|
286 |
-
#: inc/php/
|
287 |
msgid "Absolutely not."
|
288 |
msgstr "Absolutamente no."
|
289 |
|
290 |
-
#: inc/php/
|
291 |
msgid "This plugin is configurable entirely from the plugin settings page."
|
292 |
msgstr "Este complemento se puede configurar completamente desde su página de configuración."
|
293 |
|
294 |
-
#: inc/php/
|
295 |
msgid "Does this require any knowledge of HTML or CSS?"
|
296 |
msgstr "¿Esto requiere algún conocimiento de HTML o CSS?"
|
297 |
|
298 |
-
#: inc/php/
|
299 |
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
300 |
msgstr "Este complemento se puede configurar sin conocimientos de HTML o CSS, utilizando su página de configuración la cual es fácil de usar."
|
301 |
|
302 |
-
#: inc/php/
|
303 |
msgid "But you need to know the HTML or CSS in order to add/remove/modify the HTML or CSS code by using this plugin."
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: inc/php/
|
307 |
msgid "Can I add my custom HTML code to a specific page of my website?"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: inc/php/
|
311 |
msgid "For now, this plugin does not have an option to apply the custom HTML code only on specific pages."
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: inc/php/
|
315 |
msgid "We plan to add this feature soon."
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: inc/php/
|
319 |
msgid "But for now in order to apply your custom HTML code only on specific pages of your website, you need to wrap your custom HTML code in a PHP code that will determine the page you want."
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: inc/php/
|
323 |
msgid "You need something like this:"
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: inc/php/
|
327 |
#, php-format
|
328 |
msgid "To apply the PHP code on a website, we can recommend you to use another our plugin called %s."
|
329 |
msgstr ""
|
330 |
|
331 |
-
#: inc/php/
|
332 |
msgid "It's not working."
|
333 |
msgstr "No funciona."
|
334 |
|
335 |
-
#: inc/php/
|
336 |
msgid "What could be wrong?"
|
337 |
msgstr "¿Qué podría estar mal?"
|
338 |
|
339 |
-
#: inc/php/
|
340 |
msgid "As with every plugin, it's possible that things don't work."
|
341 |
msgstr "Como con todos los complementos, es posible que las cosas no funcionen."
|
342 |
|
343 |
-
#: inc/php/
|
344 |
msgid "It's impossible to tell what could be wrong exactly."
|
345 |
msgstr "Es imposible decir exactamente lo que podría estar mal."
|
346 |
|
347 |
-
#: inc/php/
|
348 |
msgid "The most common reason for this is a web browser's cache."
|
349 |
msgstr "La razón más común para esto es la caché de un navegador web."
|
350 |
|
351 |
-
#: inc/php/
|
352 |
msgid "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load."
|
353 |
msgstr "Cada navegador web almacena una caché de los sitios web que visitas (páginas, imágenes y etc.) para reducir el uso del ancho de banda y la carga del servidor."
|
354 |
|
355 |
-
#: inc/php/
|
356 |
msgid "This is called the browser's cache."
|
357 |
msgstr "Esto se denomina caché del navegador."
|
358 |
|
359 |
-
#: inc/php/
|
360 |
msgid "Clearing your browser's cache may solve the problem."
|
361 |
msgstr "Limpiar la caché del navegador puede resolver el problema."
|
362 |
|
363 |
-
#: inc/php/
|
364 |
msgid "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."
|
365 |
msgstr "Si publicas una solicitud de soporte en el foro de soporte del complemento en WordPress.org, estaría encantado de darle un vistazo e intentar ayudarte."
|
366 |
|
367 |
-
#: inc/php/
|
368 |
msgid "Please include as much information as possible, including a link to your website where the problem can be seen."
|
369 |
msgstr "Incluye tanta información como sea posible, incluyendo un enlace a tu sitio web donde se pueda ver el problema."
|
370 |
|
371 |
-
#: inc/php/
|
372 |
msgid "My custom HTML code is not working."
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: inc/php/
|
376 |
msgid "It happens that your custom HTML code that you insert on the plugin page does not work, even if an error message does not appear."
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: inc/php/
|
380 |
msgid "Here are a few of the most likely causes of the issue:"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: inc/php/
|
384 |
msgid "You have a typo during the insertion of your custom HTML code."
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: inc/php/
|
388 |
msgid "Your custom HTML code has a syntax error."
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: inc/php/
|
392 |
msgid "Your custom HTML code is incorrect and may not work."
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: inc/php/
|
396 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
|
397 |
msgstr "La última actualización de WordPress me impide editar mi sitio web que está utilizando este complemento."
|
398 |
|
399 |
-
#: inc/php/
|
400 |
msgid "Why is this?"
|
401 |
msgstr "¿Porqué sucede esto?"
|
402 |
|
403 |
-
#: inc/php/
|
404 |
msgid "This plugin can not cause such problem."
|
405 |
msgstr "Este complemento no puede causar este problema."
|
406 |
|
407 |
-
#: inc/php/
|
408 |
msgid "More likely, the problem are related to the settings of the website."
|
409 |
msgstr "Lo más probable es que el problema esté relacionado con la configuración del sitio web."
|
410 |
|
411 |
-
#: inc/php/
|
412 |
msgid "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."
|
413 |
msgstr "Podría ser sólo la caché, así que intenta borrar la caché de tu sitio web (puede ser que utilices un complemento de caché o algún servicio web como CloudFlare) y luego la caché de tu navegador web."
|
414 |
|
415 |
-
#: inc/php/
|
416 |
msgid "Also please try to re-login to the website, this too can help."
|
417 |
msgstr "También intenta volver a conectarte al sitio web, esto también puede ayudar."
|
418 |
|
419 |
-
#: inc/php/
|
420 |
msgid "Where to report bug if found?"
|
421 |
msgstr "¿Dónde informar el error si se encuentra?"
|
422 |
|
423 |
-
#: inc/php/
|
424 |
msgid "Bug reports are very welcome!"
|
425 |
msgstr "¡Informes de errores son bienvenidos!"
|
426 |
|
427 |
-
#: inc/php/
|
428 |
#, php-format
|
429 |
msgid "Please visit our %s contact page %s and report."
|
430 |
msgstr "Por favor visite nuestra %s página de contacto %s e informa."
|
431 |
|
432 |
-
#: inc/php/
|
433 |
msgid "Please do not forget to specify the name of the plugin."
|
434 |
msgstr "No olvides especificar el nombre del complemento."
|
435 |
|
436 |
-
#: inc/php/
|
437 |
msgid "Thank you!"
|
438 |
msgstr "¡Gracias!"
|
439 |
|
440 |
-
#: inc/php/
|
441 |
msgid "Describe in more detail what exactly you are seeing."
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: inc/php/
|
445 |
msgid "Here are some examples:"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: inc/php/
|
449 |
msgid "Elements of the plugin settings page are not working."
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: inc/php/
|
453 |
msgid "An error message is displayed on the plugin settings page."
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: inc/php/
|
457 |
msgid "An error message is displayed on the front end of website."
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: inc/php/
|
461 |
msgid "An error message is displayed on the back end of website."
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: inc/php/
|
465 |
msgid "Custom code is inserted on the plugin settings page, but it is not applied on the website."
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: inc/php/
|
469 |
msgid "Website is crashed."
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: inc/php/
|
473 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
474 |
msgstr "¿Dónde compartir ideas o sugerencias para mejorar el complemento?"
|
475 |
|
476 |
-
#: inc/php/
|
477 |
msgid "Any suggestions are very welcome!"
|
478 |
msgstr "Cualquier sugerencia es muy bienvenida!"
|
479 |
|
480 |
-
#: inc/php/
|
481 |
#, php-format
|
482 |
msgid "Please visit our %s contact page %s."
|
483 |
msgstr "Por favor visite nuestra %s página de contacto %s."
|
484 |
|
485 |
-
#: inc/php/
|
486 |
msgid "I love this plugin!"
|
487 |
msgstr "Me encanta este complemento!"
|
488 |
|
489 |
-
#: inc/php/
|
490 |
msgid "Can I help somehow?"
|
491 |
msgstr "¿Puedo ayudar de alguna manera?"
|
492 |
|
493 |
-
#: inc/php/
|
494 |
msgid "Yes, any contributions are very welcome!"
|
495 |
msgstr "Sí, cualquier contribución es muy bienvenida!"
|
496 |
|
497 |
-
#: inc/php/
|
498 |
#, php-format
|
499 |
msgid "Please visit our %s Support Us %s page."
|
500 |
msgstr "Por favor visite nuestra página de %s Apóyenos %s."
|
501 |
|
502 |
-
#: inc/php/
|
503 |
msgid "Where can I find information about your licenses, payment process and refunds?"
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: inc/php/
|
507 |
#, php-format
|
508 |
msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: inc/php/
|
512 |
msgid "Where can I find information about your customer support?"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: inc/php/
|
516 |
#, php-format
|
517 |
msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
|
518 |
msgstr ""
|
519 |
|
520 |
-
#: inc/php/
|
521 |
msgid "Where can I find information about your affiliate program?"
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: inc/php/
|
525 |
#, php-format
|
526 |
msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: inc/php/
|
530 |
msgid "My question wasn't answered here."
|
531 |
msgstr "Mi pregunta no fue contestada aquí."
|
532 |
|
533 |
-
#: inc/php/
|
534 |
#, php-format
|
535 |
msgid "You can ask your question on %s this page %s."
|
536 |
msgstr "Puede hacer su pregunta en %s esta página %s."
|
537 |
|
538 |
-
#: inc/php/
|
539 |
msgid "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."
|
540 |
msgstr "Pero ten en cuenta que este complemento es gratuito, y no hay un equipo de soporte especial, así que no tenemos forma de responder a todos."
|
541 |
|
542 |
-
#: inc/php/
|
543 |
-
msgid "Support Us"
|
544 |
-
msgstr "¡Apoyanos!"
|
545 |
-
|
546 |
-
#: inc/php/page.php:438 inc/php/settings.php:94 inc/php/sidebar.php:54
|
547 |
-
msgid "Donate with PayPal"
|
548 |
-
msgstr "Donar con PayPal"
|
549 |
-
|
550 |
-
#: inc/php/page.php:445
|
551 |
-
#, php-format
|
552 |
-
msgid "My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
553 |
-
msgstr "Mi nombre es %s Arthur %s y soy el fundador de %s Space X-Chimp %s, which unites a small international team of young people."
|
554 |
-
|
555 |
-
#: inc/php/page.php:454
|
556 |
-
msgid "Our intention is to create projects that will make this world a better place."
|
557 |
-
msgstr "Nuestra intención es crear proyectos que hagan de este mundo un lugar mejor."
|
558 |
-
|
559 |
-
#: inc/php/page.php:455
|
560 |
-
msgid "Our motto is - «Follow your dreams and don’t give up»."
|
561 |
-
msgstr ""
|
562 |
-
|
563 |
-
#: inc/php/page.php:456
|
564 |
-
msgid "We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
565 |
-
msgstr "Nos realmente apasionado por nuestro trabajo, nos gusta lo que estamos haciendo y esperamos que tú también te enriquezcas con nos proyectos."
|
566 |
-
|
567 |
-
#: inc/php/page.php:459
|
568 |
-
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them."
|
569 |
-
msgstr "Gastamos mucho tiempo y esfuerzo tratando de asegurarme que los temas, complementos y otras cosas que construyamos sean útiles, y la prueba definitiva para nosotros de que son útiles, es que realmente desea utilizarlos."
|
570 |
-
|
571 |
-
#: inc/php/page.php:460
|
572 |
-
msgid "But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
573 |
-
msgstr "Pero, somos desarrolladores independientes, sin un ingreso regular, por lo que cada pequeña contribución nos ayuda a cubrir nuestros costos y nos permite dedicar más tiempo a construir cosas para que las personas como usted las disfruten."
|
574 |
-
|
575 |
-
#: inc/php/page.php:463
|
576 |
-
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
577 |
-
msgstr "Si aprecias mi trabajo, puedes comprarme un café!"
|
578 |
-
|
579 |
-
#: inc/php/page.php:466
|
580 |
-
msgid "Thank you for your support!"
|
581 |
-
msgstr "¡Gracias por tu apoyo!"
|
582 |
-
|
583 |
-
#: inc/php/settings.php:32
|
584 |
msgid "Head Section"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: inc/php/settings.php:34 inc/php/settings.php:62
|
588 |
msgid "NOT SAVED!"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: inc/php/settings.php:38
|
592 |
msgid "You can use the fields below to add your custom HTML code to the HEAD section of your website's front end."
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: inc/php/settings.php:40
|
596 |
msgid "The HTML code from this field will be printed at the beginning of the HEAD section. Do not place plain text in this!"
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: inc/php/settings.php:44 inc/php/settings.php:51
|
600 |
-
#: inc/php/settings.php:79
|
601 |
msgid "Enter your custom HTML code here"
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: inc/php/settings.php:47
|
605 |
msgid "The HTML code from this field will be printed at the end of the HEAD section. Do not place plain text in this!"
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: inc/php/settings.php:54 inc/php/settings.php:82
|
609 |
msgid "Save changes"
|
610 |
msgstr "Guardar cambios"
|
611 |
|
612 |
-
#: inc/php/settings.php:60
|
613 |
msgid "Footer Section"
|
614 |
msgstr ""
|
615 |
|
616 |
-
#: inc/php/settings.php:66
|
617 |
msgid "You can use the fields below to add your custom HTML code to the FOOTER section of your website's front end."
|
618 |
msgstr ""
|
619 |
|
620 |
-
#: inc/php/settings.php:68
|
621 |
msgid "The HTML code from this field will be printed at the beginning of the FOOTER section. Do not place plain text in this!"
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: inc/php/settings.php:75
|
625 |
msgid "The HTML code from this field will be printed at the end of the FOOTER section. Do not place plain text in this!"
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: inc/php/
|
629 |
-
msgid "
|
630 |
-
msgstr "
|
631 |
|
632 |
-
#: inc/php/
|
633 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
634 |
msgstr "¡Gracias por tu apoyo!"
|
635 |
|
636 |
-
#: inc/php/
|
637 |
-
msgid "
|
|
|
|
|
|
|
|
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: inc/php/
|
641 |
-
msgid "
|
642 |
-
msgstr "
|
643 |
|
644 |
-
#: inc/php/
|
645 |
-
msgid "
|
646 |
-
msgstr "
|
647 |
|
648 |
-
#: inc/php/
|
649 |
-
msgid "
|
650 |
-
msgstr "
|
651 |
|
652 |
-
#: inc/php/
|
653 |
-
msgid "
|
654 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
655 |
|
656 |
#. Plugin Name of the plugin/theme
|
657 |
msgid "Head and Footer Scripts Inserter"
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Head and Footer Scripts Inserter\n"
|
6 |
+
"POT-Creation-Date: 2019-03-01 06:40+0300\n"
|
7 |
+
"PO-Revision-Date: 2019-03-01 06:40+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Spanish\n"
|
10 |
"Language: es_ES\n"
|
36 |
msgid "Scripts Inserter"
|
37 |
msgstr "Scripts Inserter"
|
38 |
|
39 |
+
#: inc/php/messages.php:27 inc/php/tabs/support.php:25
|
40 |
msgid "Hello!"
|
41 |
msgstr "¡Hola!"
|
42 |
|
61 |
msgid "Custom code updated successfully."
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: inc/php/page.php:34
|
65 |
#, php-format
|
66 |
msgid "by %s Space X-Chimp %s"
|
67 |
msgstr "por %s Space X-Chimp %s"
|
68 |
|
69 |
+
#: inc/php/page.php:40
|
70 |
msgid "Version"
|
71 |
msgstr "Versión"
|
72 |
|
73 |
+
#: inc/php/page.php:47
|
74 |
msgid "Main"
|
75 |
msgstr "Principal"
|
76 |
|
77 |
+
#: inc/php/page.php:48
|
78 |
msgid "Usage"
|
79 |
msgstr "Uso"
|
80 |
|
81 |
+
#: inc/php/page.php:49
|
82 |
msgid "F.A.Q."
|
83 |
msgstr "Preguntas ?"
|
84 |
|
85 |
+
#: inc/php/page.php:50 inc/php/sidebar.php:47 inc/php/tabs/settings.php:87
|
86 |
msgid "Support"
|
87 |
msgstr "Soporte"
|
88 |
|
89 |
+
#: inc/php/page.php:51
|
90 |
msgid "Store"
|
91 |
msgstr "Tienda"
|
92 |
|
93 |
+
#: inc/php/sidebar.php:16
|
94 |
+
msgid "We are «Space X-Chimp»"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: inc/php/sidebar.php:33
|
98 |
+
msgid "About"
|
99 |
+
msgstr "Acerca de"
|
100 |
|
101 |
+
#: inc/php/sidebar.php:35
|
102 |
+
msgid "This plugin gives you the ability to easily and safely add your custom HTML code (plus JavaScript, CSS, etc.) to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
|
103 |
+
msgstr "Este complemento le brinda la posibilidad de agregar de forma fácil y segura sus código HTML (más JavaScript, CSS, etc.) personalizado a su sitio web de WordPress, directamente fuera del área de administración de WordPress, sin la necesidad de tener un editor externo."
|
104 |
|
105 |
+
#: inc/php/sidebar.php:40
|
106 |
+
msgid "Help"
|
107 |
+
msgstr "Ayuda"
|
108 |
|
109 |
+
#: inc/php/sidebar.php:42
|
110 |
+
msgid "If you have a question, please read the information in the FAQ section."
|
111 |
+
msgstr "Si tiene alguna pregunta, lee la información en la sección de preguntas frecuentes."
|
112 |
|
113 |
+
#: inc/php/sidebar.php:49 inc/php/tabs/settings.php:89
|
114 |
+
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
115 |
+
msgstr "Soy un desarrollador independiente, sin un ingreso regular, por lo que cada pequeña contribución ayuda a cubrir mis costos y me deja pasar más tiempo construyendo cosas para que personas como tú las disfruten."
|
116 |
|
117 |
+
#: inc/php/sidebar.php:54 inc/php/tabs/settings.php:94
|
118 |
+
#: inc/php/tabs/support.php:21
|
119 |
+
msgid "Donate with PayPal"
|
120 |
+
msgstr "Donar con PayPal"
|
121 |
|
122 |
+
#: inc/php/sidebar.php:56 inc/php/tabs/settings.php:96
|
123 |
+
msgid "Thanks for your support!"
|
124 |
+
msgstr "¡Gracias por tu apoyo!"
|
|
|
125 |
|
126 |
+
#: inc/php/tabs/faq.php:13
|
127 |
msgid "Frequently Asked Questions"
|
128 |
msgstr "Preguntas Frecuentes"
|
129 |
|
130 |
+
#: inc/php/tabs/faq.php:17
|
131 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
132 |
msgstr "Si tienes alguna pregunta, por favor lee las Preguntas Frecuentes a continuación, para ver si la respuesta está aquí."
|
133 |
|
134 |
+
#: inc/php/tabs/faq.php:42
|
135 |
msgid "Where can I find a documentation for this plugin?"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: inc/php/tabs/faq.php:47
|
139 |
#, php-format
|
140 |
msgid "Please visit our %s Documentation site %s to view documentation."
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: inc/php/tabs/faq.php:55
|
144 |
msgid "Will this plugin work on my wordpress.COM website?"
|
145 |
msgstr "¿Funcionará este complemento en mi sitio web wordpress.COM?"
|
146 |
|
147 |
+
#: inc/php/tabs/faq.php:58
|
148 |
msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
|
149 |
msgstr "Lo sentimos, este complemento está disponible para su uso solo en sitios web alojados (wordpress.ORG)."
|
150 |
|
151 |
+
#: inc/php/tabs/faq.php:60
|
152 |
msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: inc/php/tabs/faq.php:61
|
156 |
msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: inc/php/tabs/faq.php:64
|
160 |
#, php-format
|
161 |
msgid "You can learn more about the difference here: %s ."
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: inc/php/tabs/faq.php:71
|
165 |
msgid "Will this plugin work/compatible with the theme I use?"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: inc/php/tabs/faq.php:74
|
169 |
msgid "This plugin is compatible with most themes."
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: inc/php/tabs/faq.php:75
|
173 |
msgid "But, unfortunately, we cannot check it with all third-party themes (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party theme."
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: inc/php/tabs/faq.php:76
|
177 |
msgid "We constantly check this plugin for compatibility with third-party themes."
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: inc/php/tabs/faq.php:77
|
181 |
msgid "If we find that this plugin is incompatible with a third-party theme, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: inc/php/tabs/faq.php:79
|
185 |
msgid "If you find a conflict between our plugin and a third-party theme, please let us know and we will definitely release an update of our plugin to fix the problem."
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: inc/php/tabs/faq.php:83
|
189 |
msgid "Will this plugin work/compatible with other plugins that I use?"
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: inc/php/tabs/faq.php:86
|
193 |
msgid "This plugin is compatible with most plugins."
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: inc/php/tabs/faq.php:87
|
197 |
msgid "But, unfortunately, we cannot check it with all third-party plugins (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party plugin."
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: inc/php/tabs/faq.php:88
|
201 |
msgid "We constantly check this plugin for compatibility with third-party plugins."
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: inc/php/tabs/faq.php:89
|
205 |
msgid "If we find that this plugin is incompatible with a third-party plugin, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: inc/php/tabs/faq.php:91
|
209 |
msgid "If you find a conflict between our plugin and a third-party plugin, please let us know and we will definitely release an update of our plugin to fix the problem."
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: inc/php/tabs/faq.php:95
|
213 |
msgid "Can I use this plugin on my language?"
|
214 |
msgstr "¿Puedo usar este complemento en mi idioma?"
|
215 |
|
216 |
+
#: inc/php/tabs/faq.php:98
|
217 |
msgid "Yes."
|
218 |
msgstr "Sí."
|
219 |
|
220 |
+
#: inc/php/tabs/faq.php:99
|
221 |
msgid "This plugin is ready for translation and has already been translated into several languages."
|
222 |
msgstr "Este complemento está listo para ser traducido y ya ha sido traducido a varios idiomas."
|
223 |
|
224 |
+
#: inc/php/tabs/faq.php:100
|
225 |
msgid "But If your language is not available then you can make one."
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: inc/php/tabs/faq.php:101
|
229 |
msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
|
230 |
msgstr "Quizás no todas las traducciones existentes estén actualizadas. Le invitamos a contribuir correcciones!"
|
231 |
|
232 |
+
#: inc/php/tabs/faq.php:102
|
233 |
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
234 |
msgstr "Muchos de los usuarios de este complemento estarían encantados si compartes tu traducción con la comunidad."
|
235 |
|
236 |
+
#: inc/php/tabs/faq.php:103
|
237 |
msgid "Thanks for your contribution!"
|
238 |
msgstr "¡Gracias por tu contribución!"
|
239 |
|
240 |
+
#: inc/php/tabs/faq.php:107
|
241 |
#, php-format
|
242 |
msgid "If you want to help translate this plugin, please visit the %s."
|
243 |
msgstr "Si quieres ayudar a traducir este complemento, por favor visite el %s."
|
244 |
|
245 |
+
#: inc/php/tabs/faq.php:111
|
246 |
msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
|
247 |
msgstr "También puede utilizar el archivo POT, incluido y colocado en la carpeta “languages”, para crear un archivo PO de traducción."
|
248 |
|
249 |
+
#: inc/php/tabs/faq.php:114
|
250 |
#, php-format
|
251 |
msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
|
252 |
msgstr "Simplemente envíenos ( %s ) el archivo PO e incluiremos esta traducción en la siguiente actualización del complemento."
|
253 |
|
254 |
+
#: inc/php/tabs/faq.php:121
|
255 |
msgid "How does it work?"
|
256 |
msgstr "¿Como funciona?"
|
257 |
|
258 |
+
#: inc/php/tabs/faq.php:124
|
259 |
msgid "On the \"Main\" tab, place your custom HTML code in the code editor field and click the \"Save changes\" button."
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: inc/php/tabs/faq.php:125 inc/php/tabs/usage.php:28
|
263 |
+
msgid "Enjoy the result of applying your custom HTML code."
|
264 |
+
msgstr ""
|
265 |
+
|
266 |
+
#: inc/php/tabs/faq.php:126 inc/php/tabs/usage.php:28
|
267 |
+
msgid "It's that simple!"
|
268 |
+
msgstr "¡Es así de simple!"
|
269 |
+
|
270 |
+
#: inc/php/tabs/faq.php:130
|
271 |
msgid "How much of HTML code (characters) I can enter in the code editor?"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: inc/php/tabs/faq.php:133
|
275 |
msgid "We don't limit the number of characters."
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: inc/php/tabs/faq.php:137
|
279 |
msgid "Does this plugin requires any modification of the theme?"
|
280 |
msgstr "¿Este complemento requiere alguna modificación del tema?"
|
281 |
|
282 |
+
#: inc/php/tabs/faq.php:140
|
283 |
msgid "Absolutely not."
|
284 |
msgstr "Absolutamente no."
|
285 |
|
286 |
+
#: inc/php/tabs/faq.php:141
|
287 |
msgid "This plugin is configurable entirely from the plugin settings page."
|
288 |
msgstr "Este complemento se puede configurar completamente desde su página de configuración."
|
289 |
|
290 |
+
#: inc/php/tabs/faq.php:145
|
291 |
msgid "Does this require any knowledge of HTML or CSS?"
|
292 |
msgstr "¿Esto requiere algún conocimiento de HTML o CSS?"
|
293 |
|
294 |
+
#: inc/php/tabs/faq.php:148
|
295 |
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
296 |
msgstr "Este complemento se puede configurar sin conocimientos de HTML o CSS, utilizando su página de configuración la cual es fácil de usar."
|
297 |
|
298 |
+
#: inc/php/tabs/faq.php:149
|
299 |
msgid "But you need to know the HTML or CSS in order to add/remove/modify the HTML or CSS code by using this plugin."
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: inc/php/tabs/faq.php:153
|
303 |
msgid "Can I add my custom HTML code to a specific page of my website?"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: inc/php/tabs/faq.php:156
|
307 |
msgid "For now, this plugin does not have an option to apply the custom HTML code only on specific pages."
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: inc/php/tabs/faq.php:157
|
311 |
msgid "We plan to add this feature soon."
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: inc/php/tabs/faq.php:158
|
315 |
msgid "But for now in order to apply your custom HTML code only on specific pages of your website, you need to wrap your custom HTML code in a PHP code that will determine the page you want."
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: inc/php/tabs/faq.php:159
|
319 |
msgid "You need something like this:"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: inc/php/tabs/faq.php:175
|
323 |
#, php-format
|
324 |
msgid "To apply the PHP code on a website, we can recommend you to use another our plugin called %s."
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: inc/php/tabs/faq.php:182
|
328 |
msgid "It's not working."
|
329 |
msgstr "No funciona."
|
330 |
|
331 |
+
#: inc/php/tabs/faq.php:183 inc/php/tabs/faq.php:199
|
332 |
msgid "What could be wrong?"
|
333 |
msgstr "¿Qué podría estar mal?"
|
334 |
|
335 |
+
#: inc/php/tabs/faq.php:186
|
336 |
msgid "As with every plugin, it's possible that things don't work."
|
337 |
msgstr "Como con todos los complementos, es posible que las cosas no funcionen."
|
338 |
|
339 |
+
#: inc/php/tabs/faq.php:187
|
340 |
msgid "It's impossible to tell what could be wrong exactly."
|
341 |
msgstr "Es imposible decir exactamente lo que podría estar mal."
|
342 |
|
343 |
+
#: inc/php/tabs/faq.php:188
|
344 |
msgid "The most common reason for this is a web browser's cache."
|
345 |
msgstr "La razón más común para esto es la caché de un navegador web."
|
346 |
|
347 |
+
#: inc/php/tabs/faq.php:189
|
348 |
msgid "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load."
|
349 |
msgstr "Cada navegador web almacena una caché de los sitios web que visitas (páginas, imágenes y etc.) para reducir el uso del ancho de banda y la carga del servidor."
|
350 |
|
351 |
+
#: inc/php/tabs/faq.php:190
|
352 |
msgid "This is called the browser's cache."
|
353 |
msgstr "Esto se denomina caché del navegador."
|
354 |
|
355 |
+
#: inc/php/tabs/faq.php:191
|
356 |
msgid "Clearing your browser's cache may solve the problem."
|
357 |
msgstr "Limpiar la caché del navegador puede resolver el problema."
|
358 |
|
359 |
+
#: inc/php/tabs/faq.php:193
|
360 |
msgid "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."
|
361 |
msgstr "Si publicas una solicitud de soporte en el foro de soporte del complemento en WordPress.org, estaría encantado de darle un vistazo e intentar ayudarte."
|
362 |
|
363 |
+
#: inc/php/tabs/faq.php:194 inc/php/tabs/faq.php:237
|
364 |
msgid "Please include as much information as possible, including a link to your website where the problem can be seen."
|
365 |
msgstr "Incluye tanta información como sea posible, incluyendo un enlace a tu sitio web donde se pueda ver el problema."
|
366 |
|
367 |
+
#: inc/php/tabs/faq.php:198
|
368 |
msgid "My custom HTML code is not working."
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: inc/php/tabs/faq.php:202
|
372 |
msgid "It happens that your custom HTML code that you insert on the plugin page does not work, even if an error message does not appear."
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: inc/php/tabs/faq.php:203
|
376 |
msgid "Here are a few of the most likely causes of the issue:"
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: inc/php/tabs/faq.php:205
|
380 |
msgid "You have a typo during the insertion of your custom HTML code."
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: inc/php/tabs/faq.php:206
|
384 |
msgid "Your custom HTML code has a syntax error."
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: inc/php/tabs/faq.php:207
|
388 |
msgid "Your custom HTML code is incorrect and may not work."
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: inc/php/tabs/faq.php:212
|
392 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
|
393 |
msgstr "La última actualización de WordPress me impide editar mi sitio web que está utilizando este complemento."
|
394 |
|
395 |
+
#: inc/php/tabs/faq.php:213
|
396 |
msgid "Why is this?"
|
397 |
msgstr "¿Porqué sucede esto?"
|
398 |
|
399 |
+
#: inc/php/tabs/faq.php:216
|
400 |
msgid "This plugin can not cause such problem."
|
401 |
msgstr "Este complemento no puede causar este problema."
|
402 |
|
403 |
+
#: inc/php/tabs/faq.php:217
|
404 |
msgid "More likely, the problem are related to the settings of the website."
|
405 |
msgstr "Lo más probable es que el problema esté relacionado con la configuración del sitio web."
|
406 |
|
407 |
+
#: inc/php/tabs/faq.php:218
|
408 |
msgid "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."
|
409 |
msgstr "Podría ser sólo la caché, así que intenta borrar la caché de tu sitio web (puede ser que utilices un complemento de caché o algún servicio web como CloudFlare) y luego la caché de tu navegador web."
|
410 |
|
411 |
+
#: inc/php/tabs/faq.php:219
|
412 |
msgid "Also please try to re-login to the website, this too can help."
|
413 |
msgstr "También intenta volver a conectarte al sitio web, esto también puede ayudar."
|
414 |
|
415 |
+
#: inc/php/tabs/faq.php:223
|
416 |
msgid "Where to report bug if found?"
|
417 |
msgstr "¿Dónde informar el error si se encuentra?"
|
418 |
|
419 |
+
#: inc/php/tabs/faq.php:226
|
420 |
msgid "Bug reports are very welcome!"
|
421 |
msgstr "¡Informes de errores son bienvenidos!"
|
422 |
|
423 |
+
#: inc/php/tabs/faq.php:229
|
424 |
#, php-format
|
425 |
msgid "Please visit our %s contact page %s and report."
|
426 |
msgstr "Por favor visite nuestra %s página de contacto %s e informa."
|
427 |
|
428 |
+
#: inc/php/tabs/faq.php:234 inc/php/tabs/faq.php:263
|
429 |
msgid "Please do not forget to specify the name of the plugin."
|
430 |
msgstr "No olvides especificar el nombre del complemento."
|
431 |
|
432 |
+
#: inc/php/tabs/faq.php:235 inc/php/tabs/faq.php:264 inc/php/tabs/faq.php:280
|
433 |
msgid "Thank you!"
|
434 |
msgstr "¡Gracias!"
|
435 |
|
436 |
+
#: inc/php/tabs/faq.php:238
|
437 |
msgid "Describe in more detail what exactly you are seeing."
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: inc/php/tabs/faq.php:239
|
441 |
msgid "Here are some examples:"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: inc/php/tabs/faq.php:242
|
445 |
msgid "Elements of the plugin settings page are not working."
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: inc/php/tabs/faq.php:243
|
449 |
msgid "An error message is displayed on the plugin settings page."
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: inc/php/tabs/faq.php:244
|
453 |
msgid "An error message is displayed on the front end of website."
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: inc/php/tabs/faq.php:245
|
457 |
msgid "An error message is displayed on the back end of website."
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: inc/php/tabs/faq.php:246
|
461 |
msgid "Custom code is inserted on the plugin settings page, but it is not applied on the website."
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: inc/php/tabs/faq.php:247
|
465 |
msgid "Website is crashed."
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: inc/php/tabs/faq.php:252
|
469 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
470 |
msgstr "¿Dónde compartir ideas o sugerencias para mejorar el complemento?"
|
471 |
|
472 |
+
#: inc/php/tabs/faq.php:255
|
473 |
msgid "Any suggestions are very welcome!"
|
474 |
msgstr "Cualquier sugerencia es muy bienvenida!"
|
475 |
|
476 |
+
#: inc/php/tabs/faq.php:258
|
477 |
#, php-format
|
478 |
msgid "Please visit our %s contact page %s."
|
479 |
msgstr "Por favor visite nuestra %s página de contacto %s."
|
480 |
|
481 |
+
#: inc/php/tabs/faq.php:268
|
482 |
msgid "I love this plugin!"
|
483 |
msgstr "Me encanta este complemento!"
|
484 |
|
485 |
+
#: inc/php/tabs/faq.php:269
|
486 |
msgid "Can I help somehow?"
|
487 |
msgstr "¿Puedo ayudar de alguna manera?"
|
488 |
|
489 |
+
#: inc/php/tabs/faq.php:272
|
490 |
msgid "Yes, any contributions are very welcome!"
|
491 |
msgstr "Sí, cualquier contribución es muy bienvenida!"
|
492 |
|
493 |
+
#: inc/php/tabs/faq.php:275
|
494 |
#, php-format
|
495 |
msgid "Please visit our %s Support Us %s page."
|
496 |
msgstr "Por favor visite nuestra página de %s Apóyenos %s."
|
497 |
|
498 |
+
#: inc/php/tabs/faq.php:284
|
499 |
msgid "Where can I find information about your licenses, payment process and refunds?"
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: inc/php/tabs/faq.php:289
|
503 |
#, php-format
|
504 |
msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: inc/php/tabs/faq.php:297
|
508 |
msgid "Where can I find information about your customer support?"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: inc/php/tabs/faq.php:302
|
512 |
#, php-format
|
513 |
msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: inc/php/tabs/faq.php:310
|
517 |
msgid "Where can I find information about your affiliate program?"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: inc/php/tabs/faq.php:315
|
521 |
#, php-format
|
522 |
msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: inc/php/tabs/faq.php:323
|
526 |
msgid "My question wasn't answered here."
|
527 |
msgstr "Mi pregunta no fue contestada aquí."
|
528 |
|
529 |
+
#: inc/php/tabs/faq.php:328
|
530 |
#, php-format
|
531 |
msgid "You can ask your question on %s this page %s."
|
532 |
msgstr "Puede hacer su pregunta en %s esta página %s."
|
533 |
|
534 |
+
#: inc/php/tabs/faq.php:333
|
535 |
msgid "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."
|
536 |
msgstr "Pero ten en cuenta que este complemento es gratuito, y no hay un equipo de soporte especial, así que no tenemos forma de responder a todos."
|
537 |
|
538 |
+
#: inc/php/tabs/settings.php:32
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
539 |
msgid "Head Section"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: inc/php/tabs/settings.php:34 inc/php/tabs/settings.php:62
|
543 |
msgid "NOT SAVED!"
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: inc/php/tabs/settings.php:38
|
547 |
msgid "You can use the fields below to add your custom HTML code to the HEAD section of your website's front end."
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: inc/php/tabs/settings.php:40
|
551 |
msgid "The HTML code from this field will be printed at the beginning of the HEAD section. Do not place plain text in this!"
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: inc/php/tabs/settings.php:44 inc/php/tabs/settings.php:51
|
555 |
+
#: inc/php/tabs/settings.php:72 inc/php/tabs/settings.php:79
|
556 |
msgid "Enter your custom HTML code here"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: inc/php/tabs/settings.php:47
|
560 |
msgid "The HTML code from this field will be printed at the end of the HEAD section. Do not place plain text in this!"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: inc/php/tabs/settings.php:54 inc/php/tabs/settings.php:82
|
564 |
msgid "Save changes"
|
565 |
msgstr "Guardar cambios"
|
566 |
|
567 |
+
#: inc/php/tabs/settings.php:60
|
568 |
msgid "Footer Section"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: inc/php/tabs/settings.php:66
|
572 |
msgid "You can use the fields below to add your custom HTML code to the FOOTER section of your website's front end."
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: inc/php/tabs/settings.php:68
|
576 |
msgid "The HTML code from this field will be printed at the beginning of the FOOTER section. Do not place plain text in this!"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: inc/php/tabs/settings.php:75
|
580 |
msgid "The HTML code from this field will be printed at the end of the FOOTER section. Do not place plain text in this!"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: inc/php/tabs/support.php:13
|
584 |
+
msgid "Support Us"
|
585 |
+
msgstr "¡Apoyanos!"
|
586 |
|
587 |
+
#: inc/php/tabs/support.php:28
|
588 |
+
#, php-format
|
589 |
+
msgid "My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
590 |
+
msgstr "Mi nombre es %s Arthur %s y soy el fundador de %s Space X-Chimp %s, which unites a small international team of young people."
|
591 |
+
|
592 |
+
#: inc/php/tabs/support.php:37
|
593 |
+
msgid "Our intention is to create projects that will make this world a better place."
|
594 |
+
msgstr "Nuestra intención es crear proyectos que hagan de este mundo un lugar mejor."
|
595 |
+
|
596 |
+
#: inc/php/tabs/support.php:38
|
597 |
+
msgid "Our motto is - «Follow your dreams and don’t give up»."
|
598 |
+
msgstr ""
|
599 |
+
|
600 |
+
#: inc/php/tabs/support.php:39
|
601 |
+
msgid "We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
602 |
+
msgstr "Nos realmente apasionado por nuestro trabajo, nos gusta lo que estamos haciendo y esperamos que tú también te enriquezcas con nos proyectos."
|
603 |
+
|
604 |
+
#: inc/php/tabs/support.php:42
|
605 |
+
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them."
|
606 |
+
msgstr "Gastamos mucho tiempo y esfuerzo tratando de asegurarme que los temas, complementos y otras cosas que construyamos sean útiles, y la prueba definitiva para nosotros de que son útiles, es que realmente desea utilizarlos."
|
607 |
+
|
608 |
+
#: inc/php/tabs/support.php:43
|
609 |
+
msgid "But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
610 |
+
msgstr "Pero, somos desarrolladores independientes, sin un ingreso regular, por lo que cada pequeña contribución nos ayuda a cubrir nuestros costos y nos permite dedicar más tiempo a construir cosas para que las personas como usted las disfruten."
|
611 |
+
|
612 |
+
#: inc/php/tabs/support.php:46
|
613 |
+
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
614 |
+
msgstr "Si aprecias mi trabajo, puedes comprarme un café!"
|
615 |
+
|
616 |
+
#: inc/php/tabs/support.php:49
|
617 |
+
msgid "Thank you for your support!"
|
618 |
msgstr "¡Gracias por tu apoyo!"
|
619 |
|
620 |
+
#: inc/php/tabs/usage.php:13
|
621 |
+
msgid "Usage Instructions"
|
622 |
+
msgstr "Instrucciones de uso"
|
623 |
+
|
624 |
+
#: inc/php/tabs/usage.php:15
|
625 |
+
msgid "To add your custom HTML code (plus JavaScript, CSS, etc.) to your website, simply follow these steps:"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: inc/php/tabs/usage.php:17
|
629 |
+
msgid "Go to the \"Main\" tab on this page."
|
630 |
+
msgstr "Debes ir a la pestaña “Principal”."
|
631 |
|
632 |
+
#: inc/php/tabs/usage.php:19
|
633 |
+
msgid "Place your custom HTML code in the code editor field."
|
634 |
+
msgstr ""
|
635 |
|
636 |
+
#: inc/php/tabs/usage.php:22
|
637 |
+
msgid "Note!"
|
638 |
+
msgstr "¡Nota!"
|
639 |
|
640 |
+
#: inc/php/tabs/usage.php:23
|
641 |
+
msgid "The JavaScript and CSS code must be wrapped in HTML tags."
|
642 |
+
msgstr ""
|
643 |
+
|
644 |
+
#: inc/php/tabs/usage.php:24
|
645 |
+
msgid "For JavaScript code use the <code><script></code> tag, and for CSS code use the <code><style></code> tag."
|
646 |
+
msgstr ""
|
647 |
+
|
648 |
+
#: inc/php/tabs/usage.php:27
|
649 |
+
msgid "Click the \"Save changes\" button."
|
650 |
+
msgstr "Clic en el botón \"Guardar cambios\"."
|
651 |
+
|
652 |
+
#: inc/php/tabs/usage.php:33
|
653 |
+
#, php-format
|
654 |
+
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
655 |
+
msgstr "Si quieres más opciones, %s díganos %s y estaremos encantados de añadirlo."
|
656 |
|
657 |
#. Plugin Name of the plugin/theme
|
658 |
msgid "Head and Footer Scripts Inserter"
|
languages/header-and-footer-scripts-inserter-fr_FR.mo
CHANGED
Binary file
|
languages/header-and-footer-scripts-inserter-fr_FR.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Head and Footer Scripts Inserter\n"
|
6 |
-
"POT-Creation-Date: 2019-
|
7 |
-
"PO-Revision-Date: 2019-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: French\n"
|
10 |
"Language: fr_FR\n"
|
@@ -36,7 +36,7 @@ msgstr "Faire un don"
|
|
36 |
msgid "Scripts Inserter"
|
37 |
msgstr "Scripts Inserter"
|
38 |
|
39 |
-
#: inc/php/messages.php:27 inc/php/
|
40 |
msgid "Hello!"
|
41 |
msgstr "Salut."
|
42 |
|
@@ -61,597 +61,598 @@ msgstr ""
|
|
61 |
msgid "Custom code updated successfully."
|
62 |
msgstr "Code personnalisé mis à jour avec succès."
|
63 |
|
64 |
-
#: inc/php/page.php:
|
65 |
#, php-format
|
66 |
msgid "by %s Space X-Chimp %s"
|
67 |
msgstr "par %s Space X-Chimp %s"
|
68 |
|
69 |
-
#: inc/php/page.php:
|
70 |
msgid "Version"
|
71 |
msgstr "Version"
|
72 |
|
73 |
-
#: inc/php/page.php:
|
74 |
msgid "Main"
|
75 |
msgstr "Principal"
|
76 |
|
77 |
-
#: inc/php/page.php:
|
78 |
msgid "Usage"
|
79 |
msgstr "Utilisation"
|
80 |
|
81 |
-
#: inc/php/page.php:
|
82 |
msgid "F.A.Q."
|
83 |
msgstr "FAQ."
|
84 |
|
85 |
-
#: inc/php/page.php:
|
86 |
msgid "Support"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: inc/php/page.php:
|
90 |
msgid "Store"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: inc/php/
|
94 |
-
msgid "
|
95 |
-
msgstr "
|
96 |
-
|
97 |
-
#: inc/php/page.php:67
|
98 |
-
msgid "To add your custom HTML code (plus JavaScript, CSS, etc.) to your website, simply follow these steps:"
|
99 |
-
msgstr "Pour ajouter votre code HTML (plus JavaScript, CSS, etc.) personnalisé à votre site Web, il suffit de suivre ces étapes:"
|
100 |
-
|
101 |
-
#: inc/php/page.php:69
|
102 |
-
msgid "Go to the \"Main\" tab on this page."
|
103 |
-
msgstr "Accédez à l'onglet \"Principal\" de cette page."
|
104 |
-
|
105 |
-
#: inc/php/page.php:71
|
106 |
-
msgid "Place your custom HTML code in the code editor field."
|
107 |
-
msgstr "Placez votre code HTML personnalisé dans le champ de l'éditeur de code."
|
108 |
|
109 |
-
#: inc/php/
|
110 |
-
msgid "
|
111 |
-
msgstr "
|
112 |
|
113 |
-
#: inc/php/
|
114 |
-
msgid "
|
115 |
-
msgstr ""
|
116 |
|
117 |
-
#: inc/php/
|
118 |
-
msgid "
|
119 |
-
msgstr ""
|
120 |
|
121 |
-
#: inc/php/
|
122 |
-
msgid "
|
123 |
-
msgstr "
|
124 |
|
125 |
-
#: inc/php/
|
126 |
-
msgid "
|
127 |
-
msgstr "
|
128 |
|
129 |
-
#: inc/php/
|
130 |
-
|
131 |
-
|
|
|
132 |
|
133 |
-
#: inc/php/
|
134 |
-
|
135 |
-
|
136 |
-
msgstr "Si vous voulez plus d'options, alors %s nous le faire savoir %s et nous serons heureux de les ajouter."
|
137 |
|
138 |
-
#: inc/php/
|
139 |
msgid "Frequently Asked Questions"
|
140 |
msgstr "Questions fréquentes"
|
141 |
|
142 |
-
#: inc/php/
|
143 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
144 |
msgstr "Si vous avez une question, veuillez lire la Foire aux questions ci-dessous pour voir si la réponse est ici."
|
145 |
|
146 |
-
#: inc/php/
|
147 |
msgid "Where can I find a documentation for this plugin?"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: inc/php/
|
151 |
#, php-format
|
152 |
msgid "Please visit our %s Documentation site %s to view documentation."
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: inc/php/
|
156 |
msgid "Will this plugin work on my wordpress.COM website?"
|
157 |
msgstr "Ce plugin fonctionnera-t-il sur mon site wordpress.COM?"
|
158 |
|
159 |
-
#: inc/php/
|
160 |
msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
|
161 |
msgstr "Désolé, ce plugin est disponible pour une utilisation uniquement sur les sites auto-hébergés (wordpress.ORG)."
|
162 |
|
163 |
-
#: inc/php/
|
164 |
msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: inc/php/
|
168 |
msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: inc/php/
|
172 |
#, php-format
|
173 |
msgid "You can learn more about the difference here: %s ."
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: inc/php/
|
177 |
msgid "Will this plugin work/compatible with the theme I use?"
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: inc/php/
|
181 |
msgid "This plugin is compatible with most themes."
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: inc/php/
|
185 |
msgid "But, unfortunately, we cannot check it with all third-party themes (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party theme."
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: inc/php/
|
189 |
msgid "We constantly check this plugin for compatibility with third-party themes."
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: inc/php/
|
193 |
msgid "If we find that this plugin is incompatible with a third-party theme, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: inc/php/
|
197 |
msgid "If you find a conflict between our plugin and a third-party theme, please let us know and we will definitely release an update of our plugin to fix the problem."
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: inc/php/
|
201 |
msgid "Will this plugin work/compatible with other plugins that I use?"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: inc/php/
|
205 |
msgid "This plugin is compatible with most plugins."
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: inc/php/
|
209 |
msgid "But, unfortunately, we cannot check it with all third-party plugins (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party plugin."
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: inc/php/
|
213 |
msgid "We constantly check this plugin for compatibility with third-party plugins."
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: inc/php/
|
217 |
msgid "If we find that this plugin is incompatible with a third-party plugin, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: inc/php/
|
221 |
msgid "If you find a conflict between our plugin and a third-party plugin, please let us know and we will definitely release an update of our plugin to fix the problem."
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: inc/php/
|
225 |
msgid "Can I use this plugin on my language?"
|
226 |
msgstr "Puis-je utiliser ce plugin sur ma langue?"
|
227 |
|
228 |
-
#: inc/php/
|
229 |
msgid "Yes."
|
230 |
msgstr "Oui."
|
231 |
|
232 |
-
#: inc/php/
|
233 |
msgid "This plugin is ready for translation and has already been translated into several languages."
|
234 |
msgstr "Ce plugin est prêt pour la traduction et a déjà été traduit en plusieurs langues."
|
235 |
|
236 |
-
#: inc/php/
|
237 |
msgid "But If your language is not available then you can make one."
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: inc/php/
|
241 |
msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
|
242 |
msgstr "Peut-être que toutes les traductions existantes ne sont pas à jour. Vous êtes invités à apporter des corrections!"
|
243 |
|
244 |
-
#: inc/php/
|
245 |
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
246 |
msgstr "Beaucoup d'utilisateurs de plugin serait ravi si vous partagez votre traduction avec la communauté."
|
247 |
|
248 |
-
#: inc/php/
|
249 |
msgid "Thanks for your contribution!"
|
250 |
msgstr "Merci pour votre contribution!"
|
251 |
|
252 |
-
#: inc/php/
|
253 |
#, php-format
|
254 |
msgid "If you want to help translate this plugin, please visit the %s."
|
255 |
msgstr "Si vous voulez aider à traduire ce plugin alors s'il vous plaît visitez le %s."
|
256 |
|
257 |
-
#: inc/php/
|
258 |
msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
|
259 |
msgstr "Vous pouvez également utiliser le fichier POT, qui est inclus et placé dans le dossier «Languages», afin de créer un fichier PO de traduction."
|
260 |
|
261 |
-
#: inc/php/
|
262 |
#, php-format
|
263 |
msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
|
264 |
msgstr "Il suffit d'envoyer le fichier PO pour nous ( %s ) et nous inclurons cette traduction dans la prochaine mise à jour du plugin."
|
265 |
|
266 |
-
#: inc/php/
|
267 |
msgid "How does it work?"
|
268 |
msgstr "Comment cela fonctionne?"
|
269 |
|
270 |
-
#: inc/php/
|
271 |
msgid "On the \"Main\" tab, place your custom HTML code in the code editor field and click the \"Save changes\" button."
|
272 |
msgstr "Dans l'onglet \"Principal\", placez votre code HTML personnalisé dans le champ de l'éditeur de code et cliquez sur le bouton \"Enregistrer les modifications\"."
|
273 |
|
274 |
-
#: inc/php/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
275 |
msgid "How much of HTML code (characters) I can enter in the code editor?"
|
276 |
msgstr "Quelle quantité de code HTML (caractères) je peux entrer dans l'éditeur de code?"
|
277 |
|
278 |
-
#: inc/php/
|
279 |
msgid "We don't limit the number of characters."
|
280 |
msgstr "Nous ne limitons pas le nombre de caractères."
|
281 |
|
282 |
-
#: inc/php/
|
283 |
msgid "Does this plugin requires any modification of the theme?"
|
284 |
msgstr "Ce plugin nécessite-t-il une modification du thème?"
|
285 |
|
286 |
-
#: inc/php/
|
287 |
msgid "Absolutely not."
|
288 |
msgstr "Absolument pas."
|
289 |
|
290 |
-
#: inc/php/
|
291 |
msgid "This plugin is configurable entirely from the plugin settings page."
|
292 |
msgstr "Ce plugin est entièrement configurable à partir de la page des paramètres du plugin."
|
293 |
|
294 |
-
#: inc/php/
|
295 |
msgid "Does this require any knowledge of HTML or CSS?"
|
296 |
msgstr "Est-ce que cela nécessite une connaissance de HTML ou CSS?"
|
297 |
|
298 |
-
#: inc/php/
|
299 |
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
300 |
msgstr "Ce plugin peut être configuré sans connaissance de HTML ou CSS, en utilisant une page de paramètres de plugin facile à utiliser."
|
301 |
|
302 |
-
#: inc/php/
|
303 |
msgid "But you need to know the HTML or CSS in order to add/remove/modify the HTML or CSS code by using this plugin."
|
304 |
msgstr "Mais vous devez connaître le HTML ou CSS afin d'ajouter/supprimer/modifier le code HTML ou CSS en utilisant ce plugin."
|
305 |
|
306 |
-
#: inc/php/
|
307 |
msgid "Can I add my custom HTML code to a specific page of my website?"
|
308 |
msgstr "Puis-je ajouter mon code HTML personnalisé à une page spécifique de mon site Web?"
|
309 |
|
310 |
-
#: inc/php/
|
311 |
msgid "For now, this plugin does not have an option to apply the custom HTML code only on specific pages."
|
312 |
msgstr "Pour l'instant, ce plugin n'a pas la possibilité d'appliquer le code HTML personnalisé uniquement sur des pages spécifiques."
|
313 |
|
314 |
-
#: inc/php/
|
315 |
msgid "We plan to add this feature soon."
|
316 |
msgstr "Nous prévoyons d'ajouter cette fonctionnalité bientôt."
|
317 |
|
318 |
-
#: inc/php/
|
319 |
msgid "But for now in order to apply your custom HTML code only on specific pages of your website, you need to wrap your custom HTML code in a PHP code that will determine the page you want."
|
320 |
msgstr "Mais pour l'instant afin d'appliquer votre code HTML personnalisé uniquement sur des pages spécifiques de votre site Web, vous devez envelopper votre code HTML personnalisé dans une fonction PHP qui déterminera la page que vous voulez."
|
321 |
|
322 |
-
#: inc/php/
|
323 |
msgid "You need something like this:"
|
324 |
msgstr "Vous avez besoin de quelque chose comme ça:"
|
325 |
|
326 |
-
#: inc/php/
|
327 |
#, php-format
|
328 |
msgid "To apply the PHP code on a website, we can recommend you to use another our plugin called %s."
|
329 |
msgstr ""
|
330 |
|
331 |
-
#: inc/php/
|
332 |
msgid "It's not working."
|
333 |
msgstr "Ça marche pas."
|
334 |
|
335 |
-
#: inc/php/
|
336 |
msgid "What could be wrong?"
|
337 |
msgstr "Qu'est-ce qui peut être erroné?"
|
338 |
|
339 |
-
#: inc/php/
|
340 |
msgid "As with every plugin, it's possible that things don't work."
|
341 |
msgstr "Comme avec chaque plugin, il est possible que les choses ne fonctionnent pas."
|
342 |
|
343 |
-
#: inc/php/
|
344 |
msgid "It's impossible to tell what could be wrong exactly."
|
345 |
msgstr "Il est impossible de dire ce qui pourrait être erroné exactement."
|
346 |
|
347 |
-
#: inc/php/
|
348 |
msgid "The most common reason for this is a web browser's cache."
|
349 |
msgstr "La raison la plus courante pour cela est le cache d'un navigateur Web."
|
350 |
|
351 |
-
#: inc/php/
|
352 |
msgid "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load."
|
353 |
msgstr "Chaque navigateur Web stocke un cache des sites Web que vous visitez (pages, images, etc.) pour réduire l'utilisation de la bande passante et la charge du serveur."
|
354 |
|
355 |
-
#: inc/php/
|
356 |
msgid "This is called the browser's cache."
|
357 |
msgstr "C'est ce qu'on appelle le cache du navigateur."
|
358 |
|
359 |
-
#: inc/php/
|
360 |
msgid "Clearing your browser's cache may solve the problem."
|
361 |
msgstr "L'effacement du cache de votre navigateur peut résoudre le problème."
|
362 |
|
363 |
-
#: inc/php/
|
364 |
msgid "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."
|
365 |
msgstr "Si vous publiez une demande de support dans le Forum de soutien du plugin sur WordPress.org, nous serions heureux de lui donner un coup d’œil et essayer d'aider."
|
366 |
|
367 |
-
#: inc/php/
|
368 |
msgid "Please include as much information as possible, including a link to your website where the problem can be seen."
|
369 |
msgstr "Veuillez inclure autant d'informations que possible, y compris un lien vers votre site Web où le problème peut être vu."
|
370 |
|
371 |
-
#: inc/php/
|
372 |
msgid "My custom HTML code is not working."
|
373 |
msgstr "Mon code HTML personnalisé ne fonctionne pas."
|
374 |
|
375 |
-
#: inc/php/
|
376 |
msgid "It happens that your custom HTML code that you insert on the plugin page does not work, even if an error message does not appear."
|
377 |
msgstr "Il arrive que votre code HTML personnalisé que vous insérez sur la page du plugin ne fonctionne pas, même si un message d'erreur n'apparaît pas."
|
378 |
|
379 |
-
#: inc/php/
|
380 |
msgid "Here are a few of the most likely causes of the issue:"
|
381 |
msgstr "Voici quelques-unes des causes les plus probables de la question:"
|
382 |
|
383 |
-
#: inc/php/
|
384 |
msgid "You have a typo during the insertion of your custom HTML code."
|
385 |
msgstr "Vous avez une faute de frappe lors de l'insertion de votre code HTML personnalisé."
|
386 |
|
387 |
-
#: inc/php/
|
388 |
msgid "Your custom HTML code has a syntax error."
|
389 |
msgstr "Votre code HTML personnalisé a une erreur de syntaxe."
|
390 |
|
391 |
-
#: inc/php/
|
392 |
msgid "Your custom HTML code is incorrect and may not work."
|
393 |
msgstr "Votre code HTML personnalisé est incorrect et peut ne pas fonctionner."
|
394 |
|
395 |
-
#: inc/php/
|
396 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
|
397 |
msgstr "La dernière mise à jour de WordPress m'empêche de modifier mon site Web qui utilise ce plugin."
|
398 |
|
399 |
-
#: inc/php/
|
400 |
msgid "Why is this?"
|
401 |
msgstr "Pourquoi?"
|
402 |
|
403 |
-
#: inc/php/
|
404 |
msgid "This plugin can not cause such problem."
|
405 |
msgstr "Ce plugin ne peut pas causer un tel problème."
|
406 |
|
407 |
-
#: inc/php/
|
408 |
msgid "More likely, the problem are related to the settings of the website."
|
409 |
msgstr "Plus probablement, le problème est lié aux paramètres du site Web."
|
410 |
|
411 |
-
#: inc/php/
|
412 |
msgid "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."
|
413 |
msgstr "Il pourrait juste être un cache, donc s'il vous plaît essayer de vider le cache de votre site Web (peut-être vous utilisez un plugin de mise en cache, ou certains services Web tels que le CloudFlare), puis le cache de votre navigateur Web."
|
414 |
|
415 |
-
#: inc/php/
|
416 |
msgid "Also please try to re-login to the website, this too can help."
|
417 |
msgstr "Aussi s'il vous plaît essayer de re-login sur le site, cela aussi peut vous aider."
|
418 |
|
419 |
-
#: inc/php/
|
420 |
msgid "Where to report bug if found?"
|
421 |
msgstr "Où signaler un bug ?"
|
422 |
|
423 |
-
#: inc/php/
|
424 |
msgid "Bug reports are very welcome!"
|
425 |
msgstr "Les rapports de bogues sont les bienvenus!"
|
426 |
|
427 |
-
#: inc/php/
|
428 |
#, php-format
|
429 |
msgid "Please visit our %s contact page %s and report."
|
430 |
msgstr "S'il vous plaît visitez notre %s page de contact %s et le rapport."
|
431 |
|
432 |
-
#: inc/php/
|
433 |
msgid "Please do not forget to specify the name of the plugin."
|
434 |
msgstr "S'il vous plaît n'oubliez pas de spécifier le nom du plugin."
|
435 |
|
436 |
-
#: inc/php/
|
437 |
msgid "Thank you!"
|
438 |
msgstr "Merci!"
|
439 |
|
440 |
-
#: inc/php/
|
441 |
msgid "Describe in more detail what exactly you are seeing."
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: inc/php/
|
445 |
msgid "Here are some examples:"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: inc/php/
|
449 |
msgid "Elements of the plugin settings page are not working."
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: inc/php/
|
453 |
msgid "An error message is displayed on the plugin settings page."
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: inc/php/
|
457 |
msgid "An error message is displayed on the front end of website."
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: inc/php/
|
461 |
msgid "An error message is displayed on the back end of website."
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: inc/php/
|
465 |
msgid "Custom code is inserted on the plugin settings page, but it is not applied on the website."
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: inc/php/
|
469 |
msgid "Website is crashed."
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: inc/php/
|
473 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
474 |
msgstr "Où partager des idées ou des suggestions pour rendre le plugin meilleure?"
|
475 |
|
476 |
-
#: inc/php/
|
477 |
msgid "Any suggestions are very welcome!"
|
478 |
msgstr "Toutes les suggestions sont les bienvenus!"
|
479 |
|
480 |
-
#: inc/php/
|
481 |
#, php-format
|
482 |
msgid "Please visit our %s contact page %s."
|
483 |
msgstr "Veuillez visiter notre %s page de contact %s."
|
484 |
|
485 |
-
#: inc/php/
|
486 |
msgid "I love this plugin!"
|
487 |
msgstr "J'aime ce plugin!"
|
488 |
|
489 |
-
#: inc/php/
|
490 |
msgid "Can I help somehow?"
|
491 |
msgstr "Puis-je aider ?"
|
492 |
|
493 |
-
#: inc/php/
|
494 |
msgid "Yes, any contributions are very welcome!"
|
495 |
msgstr "Oui, toutes les contributions sont les bienvenus!"
|
496 |
|
497 |
-
#: inc/php/
|
498 |
#, php-format
|
499 |
msgid "Please visit our %s Support Us %s page."
|
500 |
msgstr "Veuillez visiter notre page de %s Support Us %s."
|
501 |
|
502 |
-
#: inc/php/
|
503 |
msgid "Where can I find information about your licenses, payment process and refunds?"
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: inc/php/
|
507 |
#, php-format
|
508 |
msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: inc/php/
|
512 |
msgid "Where can I find information about your customer support?"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: inc/php/
|
516 |
#, php-format
|
517 |
msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
|
518 |
msgstr ""
|
519 |
|
520 |
-
#: inc/php/
|
521 |
msgid "Where can I find information about your affiliate program?"
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: inc/php/
|
525 |
#, php-format
|
526 |
msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: inc/php/
|
530 |
msgid "My question wasn't answered here."
|
531 |
msgstr "Ma question n'a pas été répondue ici."
|
532 |
|
533 |
-
#: inc/php/
|
534 |
#, php-format
|
535 |
msgid "You can ask your question on %s this page %s."
|
536 |
msgstr "Vous pouvez poser votre question sur %s cette page %s."
|
537 |
|
538 |
-
#: inc/php/
|
539 |
msgid "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."
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: inc/php/
|
543 |
-
msgid "Support Us"
|
544 |
-
msgstr ""
|
545 |
-
|
546 |
-
#: inc/php/page.php:438 inc/php/settings.php:94 inc/php/sidebar.php:54
|
547 |
-
msgid "Donate with PayPal"
|
548 |
-
msgstr "Faire un don avec PayPal"
|
549 |
-
|
550 |
-
#: inc/php/page.php:445
|
551 |
-
#, php-format
|
552 |
-
msgid "My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
553 |
-
msgstr ""
|
554 |
-
|
555 |
-
#: inc/php/page.php:454
|
556 |
-
msgid "Our intention is to create projects that will make this world a better place."
|
557 |
-
msgstr ""
|
558 |
-
|
559 |
-
#: inc/php/page.php:455
|
560 |
-
msgid "Our motto is - «Follow your dreams and don’t give up»."
|
561 |
-
msgstr ""
|
562 |
-
|
563 |
-
#: inc/php/page.php:456
|
564 |
-
msgid "We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
565 |
-
msgstr ""
|
566 |
-
|
567 |
-
#: inc/php/page.php:459
|
568 |
-
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them."
|
569 |
-
msgstr ""
|
570 |
-
|
571 |
-
#: inc/php/page.php:460
|
572 |
-
msgid "But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
573 |
-
msgstr "Nous sommes des développeurs indépendants, sans revenus réguliers, aussi toute contribution même minime nous aident à couvrir nos frais et nous laisse plus de temps pour ajouter des fonctionnalités que les utilisateurs comme vous apprécient."
|
574 |
-
|
575 |
-
#: inc/php/page.php:463
|
576 |
-
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
577 |
-
msgstr ""
|
578 |
-
|
579 |
-
#: inc/php/page.php:466
|
580 |
-
msgid "Thank you for your support!"
|
581 |
-
msgstr ""
|
582 |
-
|
583 |
-
#: inc/php/settings.php:32
|
584 |
msgid "Head Section"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: inc/php/settings.php:34 inc/php/settings.php:62
|
588 |
msgid "NOT SAVED!"
|
589 |
msgstr "N'EST PAS SAUVÉ!"
|
590 |
|
591 |
-
#: inc/php/settings.php:38
|
592 |
msgid "You can use the fields below to add your custom HTML code to the HEAD section of your website's front end."
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: inc/php/settings.php:40
|
596 |
msgid "The HTML code from this field will be printed at the beginning of the HEAD section. Do not place plain text in this!"
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: inc/php/settings.php:44 inc/php/settings.php:51
|
600 |
-
#: inc/php/settings.php:79
|
601 |
msgid "Enter your custom HTML code here"
|
602 |
msgstr "Entrez votre extrait de code HTML ici"
|
603 |
|
604 |
-
#: inc/php/settings.php:47
|
605 |
msgid "The HTML code from this field will be printed at the end of the HEAD section. Do not place plain text in this!"
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: inc/php/settings.php:54 inc/php/settings.php:82
|
609 |
msgid "Save changes"
|
610 |
msgstr "Enregistrer les modifications"
|
611 |
|
612 |
-
#: inc/php/settings.php:60
|
613 |
msgid "Footer Section"
|
614 |
msgstr ""
|
615 |
|
616 |
-
#: inc/php/settings.php:66
|
617 |
msgid "You can use the fields below to add your custom HTML code to the FOOTER section of your website's front end."
|
618 |
msgstr ""
|
619 |
|
620 |
-
#: inc/php/settings.php:68
|
621 |
msgid "The HTML code from this field will be printed at the beginning of the FOOTER section. Do not place plain text in this!"
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: inc/php/settings.php:75
|
625 |
msgid "The HTML code from this field will be printed at the end of the FOOTER section. Do not place plain text in this!"
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: inc/php/
|
629 |
-
msgid "
|
630 |
-
msgstr "
|
631 |
|
632 |
-
#: inc/php/
|
633 |
-
|
634 |
-
|
|
|
635 |
|
636 |
-
#: inc/php/
|
637 |
-
msgid "
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: inc/php/
|
641 |
-
msgid "
|
642 |
-
msgstr "
|
643 |
|
644 |
-
#: inc/php/
|
645 |
-
msgid "
|
646 |
-
msgstr "
|
647 |
|
648 |
-
#: inc/php/
|
649 |
-
msgid "
|
650 |
-
msgstr "
|
651 |
|
652 |
-
#: inc/php/
|
653 |
-
msgid "
|
654 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
655 |
|
656 |
#. Plugin Name of the plugin/theme
|
657 |
msgid "Head and Footer Scripts Inserter"
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Head and Footer Scripts Inserter\n"
|
6 |
+
"POT-Creation-Date: 2019-03-01 06:41+0300\n"
|
7 |
+
"PO-Revision-Date: 2019-03-01 06:41+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: French\n"
|
10 |
"Language: fr_FR\n"
|
36 |
msgid "Scripts Inserter"
|
37 |
msgstr "Scripts Inserter"
|
38 |
|
39 |
+
#: inc/php/messages.php:27 inc/php/tabs/support.php:25
|
40 |
msgid "Hello!"
|
41 |
msgstr "Salut."
|
42 |
|
61 |
msgid "Custom code updated successfully."
|
62 |
msgstr "Code personnalisé mis à jour avec succès."
|
63 |
|
64 |
+
#: inc/php/page.php:34
|
65 |
#, php-format
|
66 |
msgid "by %s Space X-Chimp %s"
|
67 |
msgstr "par %s Space X-Chimp %s"
|
68 |
|
69 |
+
#: inc/php/page.php:40
|
70 |
msgid "Version"
|
71 |
msgstr "Version"
|
72 |
|
73 |
+
#: inc/php/page.php:47
|
74 |
msgid "Main"
|
75 |
msgstr "Principal"
|
76 |
|
77 |
+
#: inc/php/page.php:48
|
78 |
msgid "Usage"
|
79 |
msgstr "Utilisation"
|
80 |
|
81 |
+
#: inc/php/page.php:49
|
82 |
msgid "F.A.Q."
|
83 |
msgstr "FAQ."
|
84 |
|
85 |
+
#: inc/php/page.php:50 inc/php/sidebar.php:47 inc/php/tabs/settings.php:87
|
86 |
msgid "Support"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: inc/php/page.php:51
|
90 |
msgid "Store"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: inc/php/sidebar.php:16
|
94 |
+
msgid "We are «Space X-Chimp»"
|
95 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
96 |
|
97 |
+
#: inc/php/sidebar.php:33
|
98 |
+
msgid "About"
|
99 |
+
msgstr "A propos"
|
100 |
|
101 |
+
#: inc/php/sidebar.php:35
|
102 |
+
msgid "This plugin gives you the ability to easily and safely add your custom HTML code (plus JavaScript, CSS, etc.) to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
|
103 |
+
msgstr "Ce plugin vous permet d'ajouter facilement et en toute sécurité votre code HTML (plus JavaScript, CSS, etc.) personnalisé à votre site WordPress, directement hors de la zone d'administration de WordPress, sans avoir besoin d'avoir un éditeur externe."
|
104 |
|
105 |
+
#: inc/php/sidebar.php:40
|
106 |
+
msgid "Help"
|
107 |
+
msgstr "Aide"
|
108 |
|
109 |
+
#: inc/php/sidebar.php:42
|
110 |
+
msgid "If you have a question, please read the information in the FAQ section."
|
111 |
+
msgstr "Si vous avez une question, veuillez lire les informations dans la section FAQ."
|
112 |
|
113 |
+
#: inc/php/sidebar.php:49 inc/php/tabs/settings.php:89
|
114 |
+
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
115 |
+
msgstr "Toute contribution même minime nous aident à couvrir nos frais et nous laisse plus de temps pour ajouter des fonctionnalités que les utilisateurs comme vous apprécient."
|
116 |
|
117 |
+
#: inc/php/sidebar.php:54 inc/php/tabs/settings.php:94
|
118 |
+
#: inc/php/tabs/support.php:21
|
119 |
+
msgid "Donate with PayPal"
|
120 |
+
msgstr "Faire un don avec PayPal"
|
121 |
|
122 |
+
#: inc/php/sidebar.php:56 inc/php/tabs/settings.php:96
|
123 |
+
msgid "Thanks for your support!"
|
124 |
+
msgstr "Merci pour votre soutien!"
|
|
|
125 |
|
126 |
+
#: inc/php/tabs/faq.php:13
|
127 |
msgid "Frequently Asked Questions"
|
128 |
msgstr "Questions fréquentes"
|
129 |
|
130 |
+
#: inc/php/tabs/faq.php:17
|
131 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
132 |
msgstr "Si vous avez une question, veuillez lire la Foire aux questions ci-dessous pour voir si la réponse est ici."
|
133 |
|
134 |
+
#: inc/php/tabs/faq.php:42
|
135 |
msgid "Where can I find a documentation for this plugin?"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: inc/php/tabs/faq.php:47
|
139 |
#, php-format
|
140 |
msgid "Please visit our %s Documentation site %s to view documentation."
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: inc/php/tabs/faq.php:55
|
144 |
msgid "Will this plugin work on my wordpress.COM website?"
|
145 |
msgstr "Ce plugin fonctionnera-t-il sur mon site wordpress.COM?"
|
146 |
|
147 |
+
#: inc/php/tabs/faq.php:58
|
148 |
msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
|
149 |
msgstr "Désolé, ce plugin est disponible pour une utilisation uniquement sur les sites auto-hébergés (wordpress.ORG)."
|
150 |
|
151 |
+
#: inc/php/tabs/faq.php:60
|
152 |
msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: inc/php/tabs/faq.php:61
|
156 |
msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: inc/php/tabs/faq.php:64
|
160 |
#, php-format
|
161 |
msgid "You can learn more about the difference here: %s ."
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: inc/php/tabs/faq.php:71
|
165 |
msgid "Will this plugin work/compatible with the theme I use?"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: inc/php/tabs/faq.php:74
|
169 |
msgid "This plugin is compatible with most themes."
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: inc/php/tabs/faq.php:75
|
173 |
msgid "But, unfortunately, we cannot check it with all third-party themes (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party theme."
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: inc/php/tabs/faq.php:76
|
177 |
msgid "We constantly check this plugin for compatibility with third-party themes."
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: inc/php/tabs/faq.php:77
|
181 |
msgid "If we find that this plugin is incompatible with a third-party theme, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: inc/php/tabs/faq.php:79
|
185 |
msgid "If you find a conflict between our plugin and a third-party theme, please let us know and we will definitely release an update of our plugin to fix the problem."
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: inc/php/tabs/faq.php:83
|
189 |
msgid "Will this plugin work/compatible with other plugins that I use?"
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: inc/php/tabs/faq.php:86
|
193 |
msgid "This plugin is compatible with most plugins."
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: inc/php/tabs/faq.php:87
|
197 |
msgid "But, unfortunately, we cannot check it with all third-party plugins (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party plugin."
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: inc/php/tabs/faq.php:88
|
201 |
msgid "We constantly check this plugin for compatibility with third-party plugins."
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: inc/php/tabs/faq.php:89
|
205 |
msgid "If we find that this plugin is incompatible with a third-party plugin, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: inc/php/tabs/faq.php:91
|
209 |
msgid "If you find a conflict between our plugin and a third-party plugin, please let us know and we will definitely release an update of our plugin to fix the problem."
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: inc/php/tabs/faq.php:95
|
213 |
msgid "Can I use this plugin on my language?"
|
214 |
msgstr "Puis-je utiliser ce plugin sur ma langue?"
|
215 |
|
216 |
+
#: inc/php/tabs/faq.php:98
|
217 |
msgid "Yes."
|
218 |
msgstr "Oui."
|
219 |
|
220 |
+
#: inc/php/tabs/faq.php:99
|
221 |
msgid "This plugin is ready for translation and has already been translated into several languages."
|
222 |
msgstr "Ce plugin est prêt pour la traduction et a déjà été traduit en plusieurs langues."
|
223 |
|
224 |
+
#: inc/php/tabs/faq.php:100
|
225 |
msgid "But If your language is not available then you can make one."
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: inc/php/tabs/faq.php:101
|
229 |
msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
|
230 |
msgstr "Peut-être que toutes les traductions existantes ne sont pas à jour. Vous êtes invités à apporter des corrections!"
|
231 |
|
232 |
+
#: inc/php/tabs/faq.php:102
|
233 |
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
234 |
msgstr "Beaucoup d'utilisateurs de plugin serait ravi si vous partagez votre traduction avec la communauté."
|
235 |
|
236 |
+
#: inc/php/tabs/faq.php:103
|
237 |
msgid "Thanks for your contribution!"
|
238 |
msgstr "Merci pour votre contribution!"
|
239 |
|
240 |
+
#: inc/php/tabs/faq.php:107
|
241 |
#, php-format
|
242 |
msgid "If you want to help translate this plugin, please visit the %s."
|
243 |
msgstr "Si vous voulez aider à traduire ce plugin alors s'il vous plaît visitez le %s."
|
244 |
|
245 |
+
#: inc/php/tabs/faq.php:111
|
246 |
msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
|
247 |
msgstr "Vous pouvez également utiliser le fichier POT, qui est inclus et placé dans le dossier «Languages», afin de créer un fichier PO de traduction."
|
248 |
|
249 |
+
#: inc/php/tabs/faq.php:114
|
250 |
#, php-format
|
251 |
msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
|
252 |
msgstr "Il suffit d'envoyer le fichier PO pour nous ( %s ) et nous inclurons cette traduction dans la prochaine mise à jour du plugin."
|
253 |
|
254 |
+
#: inc/php/tabs/faq.php:121
|
255 |
msgid "How does it work?"
|
256 |
msgstr "Comment cela fonctionne?"
|
257 |
|
258 |
+
#: inc/php/tabs/faq.php:124
|
259 |
msgid "On the \"Main\" tab, place your custom HTML code in the code editor field and click the \"Save changes\" button."
|
260 |
msgstr "Dans l'onglet \"Principal\", placez votre code HTML personnalisé dans le champ de l'éditeur de code et cliquez sur le bouton \"Enregistrer les modifications\"."
|
261 |
|
262 |
+
#: inc/php/tabs/faq.php:125 inc/php/tabs/usage.php:28
|
263 |
+
msgid "Enjoy the result of applying your custom HTML code."
|
264 |
+
msgstr "Profitez du résultat de l'application de votre code HTML personnalisé."
|
265 |
+
|
266 |
+
#: inc/php/tabs/faq.php:126 inc/php/tabs/usage.php:28
|
267 |
+
msgid "It's that simple!"
|
268 |
+
msgstr "C'est si simple!"
|
269 |
+
|
270 |
+
#: inc/php/tabs/faq.php:130
|
271 |
msgid "How much of HTML code (characters) I can enter in the code editor?"
|
272 |
msgstr "Quelle quantité de code HTML (caractères) je peux entrer dans l'éditeur de code?"
|
273 |
|
274 |
+
#: inc/php/tabs/faq.php:133
|
275 |
msgid "We don't limit the number of characters."
|
276 |
msgstr "Nous ne limitons pas le nombre de caractères."
|
277 |
|
278 |
+
#: inc/php/tabs/faq.php:137
|
279 |
msgid "Does this plugin requires any modification of the theme?"
|
280 |
msgstr "Ce plugin nécessite-t-il une modification du thème?"
|
281 |
|
282 |
+
#: inc/php/tabs/faq.php:140
|
283 |
msgid "Absolutely not."
|
284 |
msgstr "Absolument pas."
|
285 |
|
286 |
+
#: inc/php/tabs/faq.php:141
|
287 |
msgid "This plugin is configurable entirely from the plugin settings page."
|
288 |
msgstr "Ce plugin est entièrement configurable à partir de la page des paramètres du plugin."
|
289 |
|
290 |
+
#: inc/php/tabs/faq.php:145
|
291 |
msgid "Does this require any knowledge of HTML or CSS?"
|
292 |
msgstr "Est-ce que cela nécessite une connaissance de HTML ou CSS?"
|
293 |
|
294 |
+
#: inc/php/tabs/faq.php:148
|
295 |
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
296 |
msgstr "Ce plugin peut être configuré sans connaissance de HTML ou CSS, en utilisant une page de paramètres de plugin facile à utiliser."
|
297 |
|
298 |
+
#: inc/php/tabs/faq.php:149
|
299 |
msgid "But you need to know the HTML or CSS in order to add/remove/modify the HTML or CSS code by using this plugin."
|
300 |
msgstr "Mais vous devez connaître le HTML ou CSS afin d'ajouter/supprimer/modifier le code HTML ou CSS en utilisant ce plugin."
|
301 |
|
302 |
+
#: inc/php/tabs/faq.php:153
|
303 |
msgid "Can I add my custom HTML code to a specific page of my website?"
|
304 |
msgstr "Puis-je ajouter mon code HTML personnalisé à une page spécifique de mon site Web?"
|
305 |
|
306 |
+
#: inc/php/tabs/faq.php:156
|
307 |
msgid "For now, this plugin does not have an option to apply the custom HTML code only on specific pages."
|
308 |
msgstr "Pour l'instant, ce plugin n'a pas la possibilité d'appliquer le code HTML personnalisé uniquement sur des pages spécifiques."
|
309 |
|
310 |
+
#: inc/php/tabs/faq.php:157
|
311 |
msgid "We plan to add this feature soon."
|
312 |
msgstr "Nous prévoyons d'ajouter cette fonctionnalité bientôt."
|
313 |
|
314 |
+
#: inc/php/tabs/faq.php:158
|
315 |
msgid "But for now in order to apply your custom HTML code only on specific pages of your website, you need to wrap your custom HTML code in a PHP code that will determine the page you want."
|
316 |
msgstr "Mais pour l'instant afin d'appliquer votre code HTML personnalisé uniquement sur des pages spécifiques de votre site Web, vous devez envelopper votre code HTML personnalisé dans une fonction PHP qui déterminera la page que vous voulez."
|
317 |
|
318 |
+
#: inc/php/tabs/faq.php:159
|
319 |
msgid "You need something like this:"
|
320 |
msgstr "Vous avez besoin de quelque chose comme ça:"
|
321 |
|
322 |
+
#: inc/php/tabs/faq.php:175
|
323 |
#, php-format
|
324 |
msgid "To apply the PHP code on a website, we can recommend you to use another our plugin called %s."
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: inc/php/tabs/faq.php:182
|
328 |
msgid "It's not working."
|
329 |
msgstr "Ça marche pas."
|
330 |
|
331 |
+
#: inc/php/tabs/faq.php:183 inc/php/tabs/faq.php:199
|
332 |
msgid "What could be wrong?"
|
333 |
msgstr "Qu'est-ce qui peut être erroné?"
|
334 |
|
335 |
+
#: inc/php/tabs/faq.php:186
|
336 |
msgid "As with every plugin, it's possible that things don't work."
|
337 |
msgstr "Comme avec chaque plugin, il est possible que les choses ne fonctionnent pas."
|
338 |
|
339 |
+
#: inc/php/tabs/faq.php:187
|
340 |
msgid "It's impossible to tell what could be wrong exactly."
|
341 |
msgstr "Il est impossible de dire ce qui pourrait être erroné exactement."
|
342 |
|
343 |
+
#: inc/php/tabs/faq.php:188
|
344 |
msgid "The most common reason for this is a web browser's cache."
|
345 |
msgstr "La raison la plus courante pour cela est le cache d'un navigateur Web."
|
346 |
|
347 |
+
#: inc/php/tabs/faq.php:189
|
348 |
msgid "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load."
|
349 |
msgstr "Chaque navigateur Web stocke un cache des sites Web que vous visitez (pages, images, etc.) pour réduire l'utilisation de la bande passante et la charge du serveur."
|
350 |
|
351 |
+
#: inc/php/tabs/faq.php:190
|
352 |
msgid "This is called the browser's cache."
|
353 |
msgstr "C'est ce qu'on appelle le cache du navigateur."
|
354 |
|
355 |
+
#: inc/php/tabs/faq.php:191
|
356 |
msgid "Clearing your browser's cache may solve the problem."
|
357 |
msgstr "L'effacement du cache de votre navigateur peut résoudre le problème."
|
358 |
|
359 |
+
#: inc/php/tabs/faq.php:193
|
360 |
msgid "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."
|
361 |
msgstr "Si vous publiez une demande de support dans le Forum de soutien du plugin sur WordPress.org, nous serions heureux de lui donner un coup d’œil et essayer d'aider."
|
362 |
|
363 |
+
#: inc/php/tabs/faq.php:194 inc/php/tabs/faq.php:237
|
364 |
msgid "Please include as much information as possible, including a link to your website where the problem can be seen."
|
365 |
msgstr "Veuillez inclure autant d'informations que possible, y compris un lien vers votre site Web où le problème peut être vu."
|
366 |
|
367 |
+
#: inc/php/tabs/faq.php:198
|
368 |
msgid "My custom HTML code is not working."
|
369 |
msgstr "Mon code HTML personnalisé ne fonctionne pas."
|
370 |
|
371 |
+
#: inc/php/tabs/faq.php:202
|
372 |
msgid "It happens that your custom HTML code that you insert on the plugin page does not work, even if an error message does not appear."
|
373 |
msgstr "Il arrive que votre code HTML personnalisé que vous insérez sur la page du plugin ne fonctionne pas, même si un message d'erreur n'apparaît pas."
|
374 |
|
375 |
+
#: inc/php/tabs/faq.php:203
|
376 |
msgid "Here are a few of the most likely causes of the issue:"
|
377 |
msgstr "Voici quelques-unes des causes les plus probables de la question:"
|
378 |
|
379 |
+
#: inc/php/tabs/faq.php:205
|
380 |
msgid "You have a typo during the insertion of your custom HTML code."
|
381 |
msgstr "Vous avez une faute de frappe lors de l'insertion de votre code HTML personnalisé."
|
382 |
|
383 |
+
#: inc/php/tabs/faq.php:206
|
384 |
msgid "Your custom HTML code has a syntax error."
|
385 |
msgstr "Votre code HTML personnalisé a une erreur de syntaxe."
|
386 |
|
387 |
+
#: inc/php/tabs/faq.php:207
|
388 |
msgid "Your custom HTML code is incorrect and may not work."
|
389 |
msgstr "Votre code HTML personnalisé est incorrect et peut ne pas fonctionner."
|
390 |
|
391 |
+
#: inc/php/tabs/faq.php:212
|
392 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
|
393 |
msgstr "La dernière mise à jour de WordPress m'empêche de modifier mon site Web qui utilise ce plugin."
|
394 |
|
395 |
+
#: inc/php/tabs/faq.php:213
|
396 |
msgid "Why is this?"
|
397 |
msgstr "Pourquoi?"
|
398 |
|
399 |
+
#: inc/php/tabs/faq.php:216
|
400 |
msgid "This plugin can not cause such problem."
|
401 |
msgstr "Ce plugin ne peut pas causer un tel problème."
|
402 |
|
403 |
+
#: inc/php/tabs/faq.php:217
|
404 |
msgid "More likely, the problem are related to the settings of the website."
|
405 |
msgstr "Plus probablement, le problème est lié aux paramètres du site Web."
|
406 |
|
407 |
+
#: inc/php/tabs/faq.php:218
|
408 |
msgid "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."
|
409 |
msgstr "Il pourrait juste être un cache, donc s'il vous plaît essayer de vider le cache de votre site Web (peut-être vous utilisez un plugin de mise en cache, ou certains services Web tels que le CloudFlare), puis le cache de votre navigateur Web."
|
410 |
|
411 |
+
#: inc/php/tabs/faq.php:219
|
412 |
msgid "Also please try to re-login to the website, this too can help."
|
413 |
msgstr "Aussi s'il vous plaît essayer de re-login sur le site, cela aussi peut vous aider."
|
414 |
|
415 |
+
#: inc/php/tabs/faq.php:223
|
416 |
msgid "Where to report bug if found?"
|
417 |
msgstr "Où signaler un bug ?"
|
418 |
|
419 |
+
#: inc/php/tabs/faq.php:226
|
420 |
msgid "Bug reports are very welcome!"
|
421 |
msgstr "Les rapports de bogues sont les bienvenus!"
|
422 |
|
423 |
+
#: inc/php/tabs/faq.php:229
|
424 |
#, php-format
|
425 |
msgid "Please visit our %s contact page %s and report."
|
426 |
msgstr "S'il vous plaît visitez notre %s page de contact %s et le rapport."
|
427 |
|
428 |
+
#: inc/php/tabs/faq.php:234 inc/php/tabs/faq.php:263
|
429 |
msgid "Please do not forget to specify the name of the plugin."
|
430 |
msgstr "S'il vous plaît n'oubliez pas de spécifier le nom du plugin."
|
431 |
|
432 |
+
#: inc/php/tabs/faq.php:235 inc/php/tabs/faq.php:264 inc/php/tabs/faq.php:280
|
433 |
msgid "Thank you!"
|
434 |
msgstr "Merci!"
|
435 |
|
436 |
+
#: inc/php/tabs/faq.php:238
|
437 |
msgid "Describe in more detail what exactly you are seeing."
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: inc/php/tabs/faq.php:239
|
441 |
msgid "Here are some examples:"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: inc/php/tabs/faq.php:242
|
445 |
msgid "Elements of the plugin settings page are not working."
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: inc/php/tabs/faq.php:243
|
449 |
msgid "An error message is displayed on the plugin settings page."
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: inc/php/tabs/faq.php:244
|
453 |
msgid "An error message is displayed on the front end of website."
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: inc/php/tabs/faq.php:245
|
457 |
msgid "An error message is displayed on the back end of website."
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: inc/php/tabs/faq.php:246
|
461 |
msgid "Custom code is inserted on the plugin settings page, but it is not applied on the website."
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: inc/php/tabs/faq.php:247
|
465 |
msgid "Website is crashed."
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: inc/php/tabs/faq.php:252
|
469 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
470 |
msgstr "Où partager des idées ou des suggestions pour rendre le plugin meilleure?"
|
471 |
|
472 |
+
#: inc/php/tabs/faq.php:255
|
473 |
msgid "Any suggestions are very welcome!"
|
474 |
msgstr "Toutes les suggestions sont les bienvenus!"
|
475 |
|
476 |
+
#: inc/php/tabs/faq.php:258
|
477 |
#, php-format
|
478 |
msgid "Please visit our %s contact page %s."
|
479 |
msgstr "Veuillez visiter notre %s page de contact %s."
|
480 |
|
481 |
+
#: inc/php/tabs/faq.php:268
|
482 |
msgid "I love this plugin!"
|
483 |
msgstr "J'aime ce plugin!"
|
484 |
|
485 |
+
#: inc/php/tabs/faq.php:269
|
486 |
msgid "Can I help somehow?"
|
487 |
msgstr "Puis-je aider ?"
|
488 |
|
489 |
+
#: inc/php/tabs/faq.php:272
|
490 |
msgid "Yes, any contributions are very welcome!"
|
491 |
msgstr "Oui, toutes les contributions sont les bienvenus!"
|
492 |
|
493 |
+
#: inc/php/tabs/faq.php:275
|
494 |
#, php-format
|
495 |
msgid "Please visit our %s Support Us %s page."
|
496 |
msgstr "Veuillez visiter notre page de %s Support Us %s."
|
497 |
|
498 |
+
#: inc/php/tabs/faq.php:284
|
499 |
msgid "Where can I find information about your licenses, payment process and refunds?"
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: inc/php/tabs/faq.php:289
|
503 |
#, php-format
|
504 |
msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: inc/php/tabs/faq.php:297
|
508 |
msgid "Where can I find information about your customer support?"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: inc/php/tabs/faq.php:302
|
512 |
#, php-format
|
513 |
msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: inc/php/tabs/faq.php:310
|
517 |
msgid "Where can I find information about your affiliate program?"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: inc/php/tabs/faq.php:315
|
521 |
#, php-format
|
522 |
msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: inc/php/tabs/faq.php:323
|
526 |
msgid "My question wasn't answered here."
|
527 |
msgstr "Ma question n'a pas été répondue ici."
|
528 |
|
529 |
+
#: inc/php/tabs/faq.php:328
|
530 |
#, php-format
|
531 |
msgid "You can ask your question on %s this page %s."
|
532 |
msgstr "Vous pouvez poser votre question sur %s cette page %s."
|
533 |
|
534 |
+
#: inc/php/tabs/faq.php:333
|
535 |
msgid "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."
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: inc/php/tabs/settings.php:32
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
539 |
msgid "Head Section"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: inc/php/tabs/settings.php:34 inc/php/tabs/settings.php:62
|
543 |
msgid "NOT SAVED!"
|
544 |
msgstr "N'EST PAS SAUVÉ!"
|
545 |
|
546 |
+
#: inc/php/tabs/settings.php:38
|
547 |
msgid "You can use the fields below to add your custom HTML code to the HEAD section of your website's front end."
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: inc/php/tabs/settings.php:40
|
551 |
msgid "The HTML code from this field will be printed at the beginning of the HEAD section. Do not place plain text in this!"
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: inc/php/tabs/settings.php:44 inc/php/tabs/settings.php:51
|
555 |
+
#: inc/php/tabs/settings.php:72 inc/php/tabs/settings.php:79
|
556 |
msgid "Enter your custom HTML code here"
|
557 |
msgstr "Entrez votre extrait de code HTML ici"
|
558 |
|
559 |
+
#: inc/php/tabs/settings.php:47
|
560 |
msgid "The HTML code from this field will be printed at the end of the HEAD section. Do not place plain text in this!"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: inc/php/tabs/settings.php:54 inc/php/tabs/settings.php:82
|
564 |
msgid "Save changes"
|
565 |
msgstr "Enregistrer les modifications"
|
566 |
|
567 |
+
#: inc/php/tabs/settings.php:60
|
568 |
msgid "Footer Section"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: inc/php/tabs/settings.php:66
|
572 |
msgid "You can use the fields below to add your custom HTML code to the FOOTER section of your website's front end."
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: inc/php/tabs/settings.php:68
|
576 |
msgid "The HTML code from this field will be printed at the beginning of the FOOTER section. Do not place plain text in this!"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: inc/php/tabs/settings.php:75
|
580 |
msgid "The HTML code from this field will be printed at the end of the FOOTER section. Do not place plain text in this!"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: inc/php/tabs/support.php:13
|
584 |
+
msgid "Support Us"
|
585 |
+
msgstr ""
|
586 |
|
587 |
+
#: inc/php/tabs/support.php:28
|
588 |
+
#, php-format
|
589 |
+
msgid "My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
590 |
+
msgstr ""
|
591 |
|
592 |
+
#: inc/php/tabs/support.php:37
|
593 |
+
msgid "Our intention is to create projects that will make this world a better place."
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: inc/php/tabs/support.php:38
|
597 |
+
msgid "Our motto is - «Follow your dreams and don’t give up»."
|
598 |
+
msgstr ""
|
599 |
|
600 |
+
#: inc/php/tabs/support.php:39
|
601 |
+
msgid "We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
602 |
+
msgstr ""
|
603 |
|
604 |
+
#: inc/php/tabs/support.php:42
|
605 |
+
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them."
|
606 |
+
msgstr ""
|
607 |
|
608 |
+
#: inc/php/tabs/support.php:43
|
609 |
+
msgid "But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
610 |
+
msgstr "Nous sommes des développeurs indépendants, sans revenus réguliers, aussi toute contribution même minime nous aident à couvrir nos frais et nous laisse plus de temps pour ajouter des fonctionnalités que les utilisateurs comme vous apprécient."
|
611 |
+
|
612 |
+
#: inc/php/tabs/support.php:46
|
613 |
+
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
614 |
+
msgstr ""
|
615 |
+
|
616 |
+
#: inc/php/tabs/support.php:49
|
617 |
+
msgid "Thank you for your support!"
|
618 |
+
msgstr ""
|
619 |
+
|
620 |
+
#: inc/php/tabs/usage.php:13
|
621 |
+
msgid "Usage Instructions"
|
622 |
+
msgstr "Instructions d'utilisation"
|
623 |
+
|
624 |
+
#: inc/php/tabs/usage.php:15
|
625 |
+
msgid "To add your custom HTML code (plus JavaScript, CSS, etc.) to your website, simply follow these steps:"
|
626 |
+
msgstr "Pour ajouter votre code HTML (plus JavaScript, CSS, etc.) personnalisé à votre site Web, il suffit de suivre ces étapes:"
|
627 |
+
|
628 |
+
#: inc/php/tabs/usage.php:17
|
629 |
+
msgid "Go to the \"Main\" tab on this page."
|
630 |
+
msgstr "Accédez à l'onglet \"Principal\" de cette page."
|
631 |
+
|
632 |
+
#: inc/php/tabs/usage.php:19
|
633 |
+
msgid "Place your custom HTML code in the code editor field."
|
634 |
+
msgstr "Placez votre code HTML personnalisé dans le champ de l'éditeur de code."
|
635 |
+
|
636 |
+
#: inc/php/tabs/usage.php:22
|
637 |
+
msgid "Note!"
|
638 |
+
msgstr "Observations!"
|
639 |
+
|
640 |
+
#: inc/php/tabs/usage.php:23
|
641 |
+
msgid "The JavaScript and CSS code must be wrapped in HTML tags."
|
642 |
+
msgstr ""
|
643 |
+
|
644 |
+
#: inc/php/tabs/usage.php:24
|
645 |
+
msgid "For JavaScript code use the <code><script></code> tag, and for CSS code use the <code><style></code> tag."
|
646 |
+
msgstr ""
|
647 |
+
|
648 |
+
#: inc/php/tabs/usage.php:27
|
649 |
+
msgid "Click the \"Save changes\" button."
|
650 |
+
msgstr "Cliquez sur le bouton \"Enregistrer les modifications\"."
|
651 |
+
|
652 |
+
#: inc/php/tabs/usage.php:33
|
653 |
+
#, php-format
|
654 |
+
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
655 |
+
msgstr "Si vous voulez plus d'options, alors %s nous le faire savoir %s et nous serons heureux de les ajouter."
|
656 |
|
657 |
#. Plugin Name of the plugin/theme
|
658 |
msgid "Head and Footer Scripts Inserter"
|
languages/header-and-footer-scripts-inserter-nl_NL.mo
CHANGED
Binary file
|
languages/header-and-footer-scripts-inserter-nl_NL.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Head and Footer Scripts Inserter\n"
|
6 |
-
"POT-Creation-Date: 2019-
|
7 |
-
"PO-Revision-Date: 2019-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Dutch\n"
|
10 |
"Language: nl_NL\n"
|
@@ -36,7 +36,7 @@ msgstr "Doe een gift"
|
|
36 |
msgid "Scripts Inserter"
|
37 |
msgstr "Scripts Inserter"
|
38 |
|
39 |
-
#: inc/php/messages.php:27 inc/php/
|
40 |
msgid "Hello!"
|
41 |
msgstr "Hallo!"
|
42 |
|
@@ -61,597 +61,598 @@ msgstr "Update de plug-in naar de nieuwste versie en alles komt goed."
|
|
61 |
msgid "Custom code updated successfully."
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: inc/php/page.php:
|
65 |
#, php-format
|
66 |
msgid "by %s Space X-Chimp %s"
|
67 |
msgstr "door %s Space X-Chimp %s"
|
68 |
|
69 |
-
#: inc/php/page.php:
|
70 |
msgid "Version"
|
71 |
msgstr "Versie"
|
72 |
|
73 |
-
#: inc/php/page.php:
|
74 |
msgid "Main"
|
75 |
msgstr "Hoofd"
|
76 |
|
77 |
-
#: inc/php/page.php:
|
78 |
msgid "Usage"
|
79 |
msgstr "Gebruik"
|
80 |
|
81 |
-
#: inc/php/page.php:
|
82 |
msgid "F.A.Q."
|
83 |
msgstr "F.A.Q."
|
84 |
|
85 |
-
#: inc/php/page.php:
|
86 |
msgid "Support"
|
87 |
msgstr "Ondersteuning"
|
88 |
|
89 |
-
#: inc/php/page.php:
|
90 |
msgid "Store"
|
91 |
msgstr "Winkel"
|
92 |
|
93 |
-
#: inc/php/
|
94 |
-
msgid "
|
95 |
-
msgstr "
|
96 |
-
|
97 |
-
#: inc/php/page.php:67
|
98 |
-
msgid "To add your custom HTML code (plus JavaScript, CSS, etc.) to your website, simply follow these steps:"
|
99 |
-
msgstr ""
|
100 |
-
|
101 |
-
#: inc/php/page.php:69
|
102 |
-
msgid "Go to the \"Main\" tab on this page."
|
103 |
-
msgstr "Ga naar het tabblad “Hoofd”."
|
104 |
-
|
105 |
-
#: inc/php/page.php:71
|
106 |
-
msgid "Place your custom HTML code in the code editor field."
|
107 |
-
msgstr ""
|
108 |
|
109 |
-
#: inc/php/
|
110 |
-
msgid "
|
111 |
-
msgstr "
|
112 |
|
113 |
-
#: inc/php/
|
114 |
-
msgid "
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: inc/php/
|
118 |
-
msgid "
|
119 |
-
msgstr ""
|
120 |
|
121 |
-
#: inc/php/
|
122 |
-
msgid "
|
123 |
-
msgstr "
|
124 |
|
125 |
-
#: inc/php/
|
126 |
-
msgid "
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: inc/php/
|
130 |
-
|
131 |
-
|
|
|
132 |
|
133 |
-
#: inc/php/
|
134 |
-
|
135 |
-
|
136 |
-
msgstr "Wilt u meer opties dan %s vertel ons %s en wij zullen graag toevoegen."
|
137 |
|
138 |
-
#: inc/php/
|
139 |
msgid "Frequently Asked Questions"
|
140 |
msgstr "Veel voorkomende vragen (FAQ)"
|
141 |
|
142 |
-
#: inc/php/
|
143 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
144 |
msgstr "Als je een vraag hebt, lees dan eerst de Veel voorkomende vragen (FAQ) hieronder. Misschien staat het antwoord ertussen."
|
145 |
|
146 |
-
#: inc/php/
|
147 |
msgid "Where can I find a documentation for this plugin?"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: inc/php/
|
151 |
#, php-format
|
152 |
msgid "Please visit our %s Documentation site %s to view documentation."
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: inc/php/
|
156 |
msgid "Will this plugin work on my wordpress.COM website?"
|
157 |
msgstr "Werkt deze plugin op mijn wordpress.COM website?"
|
158 |
|
159 |
-
#: inc/php/
|
160 |
msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
|
161 |
msgstr "Sorry, deze plug-in is alleen beschikbaar voor gebruik op zelf-gehoste (wordpress.ORG) websites."
|
162 |
|
163 |
-
#: inc/php/
|
164 |
msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: inc/php/
|
168 |
msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: inc/php/
|
172 |
#, php-format
|
173 |
msgid "You can learn more about the difference here: %s ."
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: inc/php/
|
177 |
msgid "Will this plugin work/compatible with the theme I use?"
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: inc/php/
|
181 |
msgid "This plugin is compatible with most themes."
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: inc/php/
|
185 |
msgid "But, unfortunately, we cannot check it with all third-party themes (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party theme."
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: inc/php/
|
189 |
msgid "We constantly check this plugin for compatibility with third-party themes."
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: inc/php/
|
193 |
msgid "If we find that this plugin is incompatible with a third-party theme, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: inc/php/
|
197 |
msgid "If you find a conflict between our plugin and a third-party theme, please let us know and we will definitely release an update of our plugin to fix the problem."
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: inc/php/
|
201 |
msgid "Will this plugin work/compatible with other plugins that I use?"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: inc/php/
|
205 |
msgid "This plugin is compatible with most plugins."
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: inc/php/
|
209 |
msgid "But, unfortunately, we cannot check it with all third-party plugins (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party plugin."
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: inc/php/
|
213 |
msgid "We constantly check this plugin for compatibility with third-party plugins."
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: inc/php/
|
217 |
msgid "If we find that this plugin is incompatible with a third-party plugin, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: inc/php/
|
221 |
msgid "If you find a conflict between our plugin and a third-party plugin, please let us know and we will definitely release an update of our plugin to fix the problem."
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: inc/php/
|
225 |
msgid "Can I use this plugin on my language?"
|
226 |
msgstr "Kan ik deze plug-in in mijn eigen taal gebruiken?"
|
227 |
|
228 |
-
#: inc/php/
|
229 |
msgid "Yes."
|
230 |
msgstr "Ja."
|
231 |
|
232 |
-
#: inc/php/
|
233 |
msgid "This plugin is ready for translation and has already been translated into several languages."
|
234 |
msgstr "Deze plug-in is klaar voor vertaling en is reeds in verschillende talen vertaald."
|
235 |
|
236 |
-
#: inc/php/
|
237 |
msgid "But If your language is not available then you can make one."
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: inc/php/
|
241 |
msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
|
242 |
msgstr "Misschien zijn niet alle bestaande vertalingen up-to-date of correct. Je bent van harte welkom om correcties bij te dragen!"
|
243 |
|
244 |
-
#: inc/php/
|
245 |
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
246 |
msgstr "Veel plugin-gebruikers zouden blij zijn als je je vertaling met de community deelt."
|
247 |
|
248 |
-
#: inc/php/
|
249 |
msgid "Thanks for your contribution!"
|
250 |
msgstr "Bedankt voor je bijdrage!"
|
251 |
|
252 |
-
#: inc/php/
|
253 |
#, php-format
|
254 |
msgid "If you want to help translate this plugin, please visit the %s."
|
255 |
msgstr "Als je wilt helpen deze plug-in te vertalen, bezoek dan de %s."
|
256 |
|
257 |
-
#: inc/php/
|
258 |
msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
|
259 |
msgstr "Je kunt ook het POT-bestand gebruiken, dat is inbegrepen en in de map “languages” is geplaatst om een PO-bestand met vertalingen te maken."
|
260 |
|
261 |
-
#: inc/php/
|
262 |
#, php-format
|
263 |
msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
|
264 |
msgstr "Stuur het PO-bestand naar ons ( %s ) en we zullen deze vertaling opnemen in de volgende plug-in update."
|
265 |
|
266 |
-
#: inc/php/
|
267 |
msgid "How does it work?"
|
268 |
msgstr "Hoe werkt het?"
|
269 |
|
270 |
-
#: inc/php/
|
271 |
msgid "On the \"Main\" tab, place your custom HTML code in the code editor field and click the \"Save changes\" button."
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: inc/php/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
275 |
msgid "How much of HTML code (characters) I can enter in the code editor?"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: inc/php/
|
279 |
msgid "We don't limit the number of characters."
|
280 |
msgstr "Er is geen beperking op het aantal tekens."
|
281 |
|
282 |
-
#: inc/php/
|
283 |
msgid "Does this plugin requires any modification of the theme?"
|
284 |
msgstr "Heeft deze plug-in enige aanpassing van het thema nodig?"
|
285 |
|
286 |
-
#: inc/php/
|
287 |
msgid "Absolutely not."
|
288 |
msgstr "Absoluut niet."
|
289 |
|
290 |
-
#: inc/php/
|
291 |
msgid "This plugin is configurable entirely from the plugin settings page."
|
292 |
msgstr "Deze plug-in kan volledig worden geconfigureerd via de pagina met plugin-instellingen."
|
293 |
|
294 |
-
#: inc/php/
|
295 |
msgid "Does this require any knowledge of HTML or CSS?"
|
296 |
msgstr "Vereist dit enige kennis van HTML of CSS?"
|
297 |
|
298 |
-
#: inc/php/
|
299 |
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
300 |
msgstr "Deze plug-in kan worden geconfigureerd zonder kennis van HTML of CSS, met behulp van de eenvoudig te gebruiken plugin-instellingenpagina."
|
301 |
|
302 |
-
#: inc/php/
|
303 |
msgid "But you need to know the HTML or CSS in order to add/remove/modify the HTML or CSS code by using this plugin."
|
304 |
msgstr "Maar u moet de HTML of CSS kennen om de HTML- of CSS-code toe te voegen / te verwijderen / wijzigen met behulp van deze plug-in."
|
305 |
|
306 |
-
#: inc/php/
|
307 |
msgid "Can I add my custom HTML code to a specific page of my website?"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: inc/php/
|
311 |
msgid "For now, this plugin does not have an option to apply the custom HTML code only on specific pages."
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: inc/php/
|
315 |
msgid "We plan to add this feature soon."
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: inc/php/
|
319 |
msgid "But for now in order to apply your custom HTML code only on specific pages of your website, you need to wrap your custom HTML code in a PHP code that will determine the page you want."
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: inc/php/
|
323 |
msgid "You need something like this:"
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: inc/php/
|
327 |
#, php-format
|
328 |
msgid "To apply the PHP code on a website, we can recommend you to use another our plugin called %s."
|
329 |
msgstr ""
|
330 |
|
331 |
-
#: inc/php/
|
332 |
msgid "It's not working."
|
333 |
msgstr "Het werkt niet."
|
334 |
|
335 |
-
#: inc/php/
|
336 |
msgid "What could be wrong?"
|
337 |
msgstr "Wat kan er fout zijn?"
|
338 |
|
339 |
-
#: inc/php/
|
340 |
msgid "As with every plugin, it's possible that things don't work."
|
341 |
msgstr "Zoals met elke plug-in, is het mogelijk dat dingen niet werken."
|
342 |
|
343 |
-
#: inc/php/
|
344 |
msgid "It's impossible to tell what could be wrong exactly."
|
345 |
msgstr "Het is onmogelijk om precies te vertellen wat er precies mis zou kunnen zijn."
|
346 |
|
347 |
-
#: inc/php/
|
348 |
msgid "The most common reason for this is a web browser's cache."
|
349 |
msgstr "De meest voorkomende reden hiervoor is de cache van een webbrowser."
|
350 |
|
351 |
-
#: inc/php/
|
352 |
msgid "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load."
|
353 |
msgstr "Elke webbrowser slaat een cache op van de websites die u bezoekt (pagina's, afbeeldingen en enz.) Om het bandbreedte-gebruik en de serverbelasting te verminderen."
|
354 |
|
355 |
-
#: inc/php/
|
356 |
msgid "This is called the browser's cache."
|
357 |
msgstr "Dit wordt de cache van de browser genoemd."
|
358 |
|
359 |
-
#: inc/php/
|
360 |
msgid "Clearing your browser's cache may solve the problem."
|
361 |
msgstr "Het wissen van de cache van uw browser kan het probleem oplossen."
|
362 |
|
363 |
-
#: inc/php/
|
364 |
msgid "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."
|
365 |
msgstr "Als je een ondersteuningsverzoek post in het ondersteuningsforum van de plug-in op WordPress.org, willen we graag een kijkje nemen en proberen te helpen."
|
366 |
|
367 |
-
#: inc/php/
|
368 |
msgid "Please include as much information as possible, including a link to your website where the problem can be seen."
|
369 |
msgstr "Voeg zoveel mogelijk informatie toe, inclusief een link naar uw website waar het probleem kan worden gezien."
|
370 |
|
371 |
-
#: inc/php/
|
372 |
msgid "My custom HTML code is not working."
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: inc/php/
|
376 |
msgid "It happens that your custom HTML code that you insert on the plugin page does not work, even if an error message does not appear."
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: inc/php/
|
380 |
msgid "Here are a few of the most likely causes of the issue:"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: inc/php/
|
384 |
msgid "You have a typo during the insertion of your custom HTML code."
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: inc/php/
|
388 |
msgid "Your custom HTML code has a syntax error."
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: inc/php/
|
392 |
msgid "Your custom HTML code is incorrect and may not work."
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: inc/php/
|
396 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
|
397 |
msgstr "De laatste Wordpress update zorgt ervoor dat ik mijn website niet kan bewerken als ik deze plugin gebruik."
|
398 |
|
399 |
-
#: inc/php/
|
400 |
msgid "Why is this?"
|
401 |
msgstr "Waarom is dit?"
|
402 |
|
403 |
-
#: inc/php/
|
404 |
msgid "This plugin can not cause such problem."
|
405 |
msgstr "Deze plug-in kan zo’n probleem niet veroorzaken."
|
406 |
|
407 |
-
#: inc/php/
|
408 |
msgid "More likely, the problem are related to the settings of the website."
|
409 |
msgstr "Waarschijnlijker is het probleem gerelateerd aan de instellingen van de website."
|
410 |
|
411 |
-
#: inc/php/
|
412 |
msgid "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."
|
413 |
msgstr "Het kan gewoon een cache-probleem zijn, dus probeer de cache van je website te wissen (mogelijk gebruik je een caching-plug-in of een webservice zoals de CloudFlare) en vervolgens de cache van je webbrowser."
|
414 |
|
415 |
-
#: inc/php/
|
416 |
msgid "Also please try to re-login to the website, this too can help."
|
417 |
msgstr "Probeer ook opnieuw in te loggen op de website, ook dit kan helpen."
|
418 |
|
419 |
-
#: inc/php/
|
420 |
msgid "Where to report bug if found?"
|
421 |
msgstr "Waar kan een bug gerapporteerd worden indien gevonden?"
|
422 |
|
423 |
-
#: inc/php/
|
424 |
msgid "Bug reports are very welcome!"
|
425 |
msgstr "Bugrapporten zijn van harte welkom!"
|
426 |
|
427 |
-
#: inc/php/
|
428 |
#, php-format
|
429 |
msgid "Please visit our %s contact page %s and report."
|
430 |
msgstr "Ga naar onze %s contactpagina %s en rapporteer."
|
431 |
|
432 |
-
#: inc/php/
|
433 |
msgid "Please do not forget to specify the name of the plugin."
|
434 |
msgstr "Vergeet alsjeblieft niet om de naam van de plug-in te specificeren."
|
435 |
|
436 |
-
#: inc/php/
|
437 |
msgid "Thank you!"
|
438 |
msgstr "Dank je!"
|
439 |
|
440 |
-
#: inc/php/
|
441 |
msgid "Describe in more detail what exactly you are seeing."
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: inc/php/
|
445 |
msgid "Here are some examples:"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: inc/php/
|
449 |
msgid "Elements of the plugin settings page are not working."
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: inc/php/
|
453 |
msgid "An error message is displayed on the plugin settings page."
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: inc/php/
|
457 |
msgid "An error message is displayed on the front end of website."
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: inc/php/
|
461 |
msgid "An error message is displayed on the back end of website."
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: inc/php/
|
465 |
msgid "Custom code is inserted on the plugin settings page, but it is not applied on the website."
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: inc/php/
|
469 |
msgid "Website is crashed."
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: inc/php/
|
473 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
474 |
msgstr "Waar kan ik ideeën of suggesties delen om de plug-in beter te maken?"
|
475 |
|
476 |
-
#: inc/php/
|
477 |
msgid "Any suggestions are very welcome!"
|
478 |
msgstr "Alle suggesties zijn van harte welkom!"
|
479 |
|
480 |
-
#: inc/php/
|
481 |
#, php-format
|
482 |
msgid "Please visit our %s contact page %s."
|
483 |
msgstr "Ga naar onze %s contactpagina %s."
|
484 |
|
485 |
-
#: inc/php/
|
486 |
msgid "I love this plugin!"
|
487 |
msgstr "Ik ben dol op deze plug-in!"
|
488 |
|
489 |
-
#: inc/php/
|
490 |
msgid "Can I help somehow?"
|
491 |
msgstr "Kan ik op de een of andere manier helpen?"
|
492 |
|
493 |
-
#: inc/php/
|
494 |
msgid "Yes, any contributions are very welcome!"
|
495 |
msgstr "Ja, alle bijdragen zijn van harte welkom!"
|
496 |
|
497 |
-
#: inc/php/
|
498 |
#, php-format
|
499 |
msgid "Please visit our %s Support Us %s page."
|
500 |
msgstr "Ga naar onze %s Support Us %s."
|
501 |
|
502 |
-
#: inc/php/
|
503 |
msgid "Where can I find information about your licenses, payment process and refunds?"
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: inc/php/
|
507 |
#, php-format
|
508 |
msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: inc/php/
|
512 |
msgid "Where can I find information about your customer support?"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: inc/php/
|
516 |
#, php-format
|
517 |
msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
|
518 |
msgstr ""
|
519 |
|
520 |
-
#: inc/php/
|
521 |
msgid "Where can I find information about your affiliate program?"
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: inc/php/
|
525 |
#, php-format
|
526 |
msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: inc/php/
|
530 |
msgid "My question wasn't answered here."
|
531 |
msgstr "Mij vraag is hier niet beantwoord."
|
532 |
|
533 |
-
#: inc/php/
|
534 |
#, php-format
|
535 |
msgid "You can ask your question on %s this page %s."
|
536 |
msgstr "Je kunt je vraag op %s deze pagina %s stellen."
|
537 |
|
538 |
-
#: inc/php/
|
539 |
msgid "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."
|
540 |
msgstr "Maar houd er rekening mee dat deze plug-in gratis is en er geen speciaal ondersteuningsteam is, dus we kunnen niet iedereen antwoorden."
|
541 |
|
542 |
-
#: inc/php/
|
543 |
-
msgid "Support Us"
|
544 |
-
msgstr "Ondersteun ons"
|
545 |
-
|
546 |
-
#: inc/php/page.php:438 inc/php/settings.php:94 inc/php/sidebar.php:54
|
547 |
-
msgid "Donate with PayPal"
|
548 |
-
msgstr "Doneer via PayPal"
|
549 |
-
|
550 |
-
#: inc/php/page.php:445
|
551 |
-
#, php-format
|
552 |
-
msgid "My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
553 |
-
msgstr "Mijn naam is %s Arthur %s en ik ben de oprichter van %s Space X-Chimp %s, which unites a small international team of young people."
|
554 |
-
|
555 |
-
#: inc/php/page.php:454
|
556 |
-
msgid "Our intention is to create projects that will make this world a better place."
|
557 |
-
msgstr "Het is onze bedoeling om projecten te maken die van deze wereld een betere plek maken."
|
558 |
-
|
559 |
-
#: inc/php/page.php:455
|
560 |
-
msgid "Our motto is - «Follow your dreams and don’t give up»."
|
561 |
-
msgstr ""
|
562 |
-
|
563 |
-
#: inc/php/page.php:456
|
564 |
-
msgid "We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
565 |
-
msgstr "We zijn echt gepassioneerd over ons werk, we vind het leuk wat we doe en hoop dat je ook verrijkt zult worden door ons projecten."
|
566 |
-
|
567 |
-
#: inc/php/page.php:459
|
568 |
-
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them."
|
569 |
-
msgstr "We besteden veel tijd en moeite om ervoor te zorgen dat de thema's, plug-ins en andere dingen die we maak nuttig zijn, en het ultieme bewijs daarvan is dat je ze echt wilt gebruiken."
|
570 |
-
|
571 |
-
#: inc/php/page.php:460
|
572 |
-
msgid "But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
573 |
-
msgstr "We zijn een onafhankelijke ontwikkelaar, zonder een vast inkomen, dus elke kleine bijdrage helpt ons onze kosten te dekken en laat ons meer tijd spenderen aan het bouwen van dingen voor mensen zoals jij om van te genieten."
|
574 |
-
|
575 |
-
#: inc/php/page.php:463
|
576 |
-
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
577 |
-
msgstr "Als je ons werk waardeert, kun je een koffie voor ons kopen!"
|
578 |
-
|
579 |
-
#: inc/php/page.php:466
|
580 |
-
msgid "Thank you for your support!"
|
581 |
-
msgstr "Bedankt voor je ondersteuning!"
|
582 |
-
|
583 |
-
#: inc/php/settings.php:32
|
584 |
msgid "Head Section"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: inc/php/settings.php:34 inc/php/settings.php:62
|
588 |
msgid "NOT SAVED!"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: inc/php/settings.php:38
|
592 |
msgid "You can use the fields below to add your custom HTML code to the HEAD section of your website's front end."
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: inc/php/settings.php:40
|
596 |
msgid "The HTML code from this field will be printed at the beginning of the HEAD section. Do not place plain text in this!"
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: inc/php/settings.php:44 inc/php/settings.php:51
|
600 |
-
#: inc/php/settings.php:79
|
601 |
msgid "Enter your custom HTML code here"
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: inc/php/settings.php:47
|
605 |
msgid "The HTML code from this field will be printed at the end of the HEAD section. Do not place plain text in this!"
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: inc/php/settings.php:54 inc/php/settings.php:82
|
609 |
msgid "Save changes"
|
610 |
msgstr "Wijzigingen opslaan"
|
611 |
|
612 |
-
#: inc/php/settings.php:60
|
613 |
msgid "Footer Section"
|
614 |
msgstr ""
|
615 |
|
616 |
-
#: inc/php/settings.php:66
|
617 |
msgid "You can use the fields below to add your custom HTML code to the FOOTER section of your website's front end."
|
618 |
msgstr ""
|
619 |
|
620 |
-
#: inc/php/settings.php:68
|
621 |
msgid "The HTML code from this field will be printed at the beginning of the FOOTER section. Do not place plain text in this!"
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: inc/php/settings.php:75
|
625 |
msgid "The HTML code from this field will be printed at the end of the FOOTER section. Do not place plain text in this!"
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: inc/php/
|
629 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: inc/php/
|
633 |
-
msgid "
|
634 |
-
msgstr "
|
635 |
|
636 |
-
#: inc/php/
|
637 |
-
msgid "We are
|
638 |
-
msgstr "
|
639 |
|
640 |
-
#: inc/php/
|
641 |
-
msgid "
|
642 |
-
msgstr "
|
643 |
|
644 |
-
#: inc/php/
|
645 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: inc/php/
|
649 |
-
msgid "
|
650 |
-
msgstr "
|
651 |
|
652 |
-
#: inc/php/
|
653 |
-
msgid "
|
654 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
655 |
|
656 |
#. Plugin Name of the plugin/theme
|
657 |
msgid "Head and Footer Scripts Inserter"
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Head and Footer Scripts Inserter\n"
|
6 |
+
"POT-Creation-Date: 2019-03-01 06:41+0300\n"
|
7 |
+
"PO-Revision-Date: 2019-03-01 06:41+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Dutch\n"
|
10 |
"Language: nl_NL\n"
|
36 |
msgid "Scripts Inserter"
|
37 |
msgstr "Scripts Inserter"
|
38 |
|
39 |
+
#: inc/php/messages.php:27 inc/php/tabs/support.php:25
|
40 |
msgid "Hello!"
|
41 |
msgstr "Hallo!"
|
42 |
|
61 |
msgid "Custom code updated successfully."
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: inc/php/page.php:34
|
65 |
#, php-format
|
66 |
msgid "by %s Space X-Chimp %s"
|
67 |
msgstr "door %s Space X-Chimp %s"
|
68 |
|
69 |
+
#: inc/php/page.php:40
|
70 |
msgid "Version"
|
71 |
msgstr "Versie"
|
72 |
|
73 |
+
#: inc/php/page.php:47
|
74 |
msgid "Main"
|
75 |
msgstr "Hoofd"
|
76 |
|
77 |
+
#: inc/php/page.php:48
|
78 |
msgid "Usage"
|
79 |
msgstr "Gebruik"
|
80 |
|
81 |
+
#: inc/php/page.php:49
|
82 |
msgid "F.A.Q."
|
83 |
msgstr "F.A.Q."
|
84 |
|
85 |
+
#: inc/php/page.php:50 inc/php/sidebar.php:47 inc/php/tabs/settings.php:87
|
86 |
msgid "Support"
|
87 |
msgstr "Ondersteuning"
|
88 |
|
89 |
+
#: inc/php/page.php:51
|
90 |
msgid "Store"
|
91 |
msgstr "Winkel"
|
92 |
|
93 |
+
#: inc/php/sidebar.php:16
|
94 |
+
msgid "We are «Space X-Chimp»"
|
95 |
+
msgstr "Wij zijn «Space X-Chimp»"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
96 |
|
97 |
+
#: inc/php/sidebar.php:33
|
98 |
+
msgid "About"
|
99 |
+
msgstr "Over"
|
100 |
|
101 |
+
#: inc/php/sidebar.php:35
|
102 |
+
msgid "This plugin gives you the ability to easily and safely add your custom HTML code (plus JavaScript, CSS, etc.) to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: inc/php/sidebar.php:40
|
106 |
+
msgid "Help"
|
107 |
+
msgstr "Helpen"
|
108 |
|
109 |
+
#: inc/php/sidebar.php:42
|
110 |
+
msgid "If you have a question, please read the information in the FAQ section."
|
111 |
+
msgstr "Als je een vraag hebt, lees dan de informatie in de FAQ-sectie."
|
112 |
|
113 |
+
#: inc/php/sidebar.php:49 inc/php/tabs/settings.php:89
|
114 |
+
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: inc/php/sidebar.php:54 inc/php/tabs/settings.php:94
|
118 |
+
#: inc/php/tabs/support.php:21
|
119 |
+
msgid "Donate with PayPal"
|
120 |
+
msgstr "Doneer via PayPal"
|
121 |
|
122 |
+
#: inc/php/sidebar.php:56 inc/php/tabs/settings.php:96
|
123 |
+
msgid "Thanks for your support!"
|
124 |
+
msgstr "Bedankt voor uw steun!"
|
|
|
125 |
|
126 |
+
#: inc/php/tabs/faq.php:13
|
127 |
msgid "Frequently Asked Questions"
|
128 |
msgstr "Veel voorkomende vragen (FAQ)"
|
129 |
|
130 |
+
#: inc/php/tabs/faq.php:17
|
131 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
132 |
msgstr "Als je een vraag hebt, lees dan eerst de Veel voorkomende vragen (FAQ) hieronder. Misschien staat het antwoord ertussen."
|
133 |
|
134 |
+
#: inc/php/tabs/faq.php:42
|
135 |
msgid "Where can I find a documentation for this plugin?"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: inc/php/tabs/faq.php:47
|
139 |
#, php-format
|
140 |
msgid "Please visit our %s Documentation site %s to view documentation."
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: inc/php/tabs/faq.php:55
|
144 |
msgid "Will this plugin work on my wordpress.COM website?"
|
145 |
msgstr "Werkt deze plugin op mijn wordpress.COM website?"
|
146 |
|
147 |
+
#: inc/php/tabs/faq.php:58
|
148 |
msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
|
149 |
msgstr "Sorry, deze plug-in is alleen beschikbaar voor gebruik op zelf-gehoste (wordpress.ORG) websites."
|
150 |
|
151 |
+
#: inc/php/tabs/faq.php:60
|
152 |
msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: inc/php/tabs/faq.php:61
|
156 |
msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: inc/php/tabs/faq.php:64
|
160 |
#, php-format
|
161 |
msgid "You can learn more about the difference here: %s ."
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: inc/php/tabs/faq.php:71
|
165 |
msgid "Will this plugin work/compatible with the theme I use?"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: inc/php/tabs/faq.php:74
|
169 |
msgid "This plugin is compatible with most themes."
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: inc/php/tabs/faq.php:75
|
173 |
msgid "But, unfortunately, we cannot check it with all third-party themes (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party theme."
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: inc/php/tabs/faq.php:76
|
177 |
msgid "We constantly check this plugin for compatibility with third-party themes."
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: inc/php/tabs/faq.php:77
|
181 |
msgid "If we find that this plugin is incompatible with a third-party theme, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: inc/php/tabs/faq.php:79
|
185 |
msgid "If you find a conflict between our plugin and a third-party theme, please let us know and we will definitely release an update of our plugin to fix the problem."
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: inc/php/tabs/faq.php:83
|
189 |
msgid "Will this plugin work/compatible with other plugins that I use?"
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: inc/php/tabs/faq.php:86
|
193 |
msgid "This plugin is compatible with most plugins."
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: inc/php/tabs/faq.php:87
|
197 |
msgid "But, unfortunately, we cannot check it with all third-party plugins (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party plugin."
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: inc/php/tabs/faq.php:88
|
201 |
msgid "We constantly check this plugin for compatibility with third-party plugins."
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: inc/php/tabs/faq.php:89
|
205 |
msgid "If we find that this plugin is incompatible with a third-party plugin, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: inc/php/tabs/faq.php:91
|
209 |
msgid "If you find a conflict between our plugin and a third-party plugin, please let us know and we will definitely release an update of our plugin to fix the problem."
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: inc/php/tabs/faq.php:95
|
213 |
msgid "Can I use this plugin on my language?"
|
214 |
msgstr "Kan ik deze plug-in in mijn eigen taal gebruiken?"
|
215 |
|
216 |
+
#: inc/php/tabs/faq.php:98
|
217 |
msgid "Yes."
|
218 |
msgstr "Ja."
|
219 |
|
220 |
+
#: inc/php/tabs/faq.php:99
|
221 |
msgid "This plugin is ready for translation and has already been translated into several languages."
|
222 |
msgstr "Deze plug-in is klaar voor vertaling en is reeds in verschillende talen vertaald."
|
223 |
|
224 |
+
#: inc/php/tabs/faq.php:100
|
225 |
msgid "But If your language is not available then you can make one."
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: inc/php/tabs/faq.php:101
|
229 |
msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
|
230 |
msgstr "Misschien zijn niet alle bestaande vertalingen up-to-date of correct. Je bent van harte welkom om correcties bij te dragen!"
|
231 |
|
232 |
+
#: inc/php/tabs/faq.php:102
|
233 |
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
234 |
msgstr "Veel plugin-gebruikers zouden blij zijn als je je vertaling met de community deelt."
|
235 |
|
236 |
+
#: inc/php/tabs/faq.php:103
|
237 |
msgid "Thanks for your contribution!"
|
238 |
msgstr "Bedankt voor je bijdrage!"
|
239 |
|
240 |
+
#: inc/php/tabs/faq.php:107
|
241 |
#, php-format
|
242 |
msgid "If you want to help translate this plugin, please visit the %s."
|
243 |
msgstr "Als je wilt helpen deze plug-in te vertalen, bezoek dan de %s."
|
244 |
|
245 |
+
#: inc/php/tabs/faq.php:111
|
246 |
msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
|
247 |
msgstr "Je kunt ook het POT-bestand gebruiken, dat is inbegrepen en in de map “languages” is geplaatst om een PO-bestand met vertalingen te maken."
|
248 |
|
249 |
+
#: inc/php/tabs/faq.php:114
|
250 |
#, php-format
|
251 |
msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
|
252 |
msgstr "Stuur het PO-bestand naar ons ( %s ) en we zullen deze vertaling opnemen in de volgende plug-in update."
|
253 |
|
254 |
+
#: inc/php/tabs/faq.php:121
|
255 |
msgid "How does it work?"
|
256 |
msgstr "Hoe werkt het?"
|
257 |
|
258 |
+
#: inc/php/tabs/faq.php:124
|
259 |
msgid "On the \"Main\" tab, place your custom HTML code in the code editor field and click the \"Save changes\" button."
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: inc/php/tabs/faq.php:125 inc/php/tabs/usage.php:28
|
263 |
+
msgid "Enjoy the result of applying your custom HTML code."
|
264 |
+
msgstr ""
|
265 |
+
|
266 |
+
#: inc/php/tabs/faq.php:126 inc/php/tabs/usage.php:28
|
267 |
+
msgid "It's that simple!"
|
268 |
+
msgstr "Zo eenvoudig is het!"
|
269 |
+
|
270 |
+
#: inc/php/tabs/faq.php:130
|
271 |
msgid "How much of HTML code (characters) I can enter in the code editor?"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: inc/php/tabs/faq.php:133
|
275 |
msgid "We don't limit the number of characters."
|
276 |
msgstr "Er is geen beperking op het aantal tekens."
|
277 |
|
278 |
+
#: inc/php/tabs/faq.php:137
|
279 |
msgid "Does this plugin requires any modification of the theme?"
|
280 |
msgstr "Heeft deze plug-in enige aanpassing van het thema nodig?"
|
281 |
|
282 |
+
#: inc/php/tabs/faq.php:140
|
283 |
msgid "Absolutely not."
|
284 |
msgstr "Absoluut niet."
|
285 |
|
286 |
+
#: inc/php/tabs/faq.php:141
|
287 |
msgid "This plugin is configurable entirely from the plugin settings page."
|
288 |
msgstr "Deze plug-in kan volledig worden geconfigureerd via de pagina met plugin-instellingen."
|
289 |
|
290 |
+
#: inc/php/tabs/faq.php:145
|
291 |
msgid "Does this require any knowledge of HTML or CSS?"
|
292 |
msgstr "Vereist dit enige kennis van HTML of CSS?"
|
293 |
|
294 |
+
#: inc/php/tabs/faq.php:148
|
295 |
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
296 |
msgstr "Deze plug-in kan worden geconfigureerd zonder kennis van HTML of CSS, met behulp van de eenvoudig te gebruiken plugin-instellingenpagina."
|
297 |
|
298 |
+
#: inc/php/tabs/faq.php:149
|
299 |
msgid "But you need to know the HTML or CSS in order to add/remove/modify the HTML or CSS code by using this plugin."
|
300 |
msgstr "Maar u moet de HTML of CSS kennen om de HTML- of CSS-code toe te voegen / te verwijderen / wijzigen met behulp van deze plug-in."
|
301 |
|
302 |
+
#: inc/php/tabs/faq.php:153
|
303 |
msgid "Can I add my custom HTML code to a specific page of my website?"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: inc/php/tabs/faq.php:156
|
307 |
msgid "For now, this plugin does not have an option to apply the custom HTML code only on specific pages."
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: inc/php/tabs/faq.php:157
|
311 |
msgid "We plan to add this feature soon."
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: inc/php/tabs/faq.php:158
|
315 |
msgid "But for now in order to apply your custom HTML code only on specific pages of your website, you need to wrap your custom HTML code in a PHP code that will determine the page you want."
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: inc/php/tabs/faq.php:159
|
319 |
msgid "You need something like this:"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: inc/php/tabs/faq.php:175
|
323 |
#, php-format
|
324 |
msgid "To apply the PHP code on a website, we can recommend you to use another our plugin called %s."
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: inc/php/tabs/faq.php:182
|
328 |
msgid "It's not working."
|
329 |
msgstr "Het werkt niet."
|
330 |
|
331 |
+
#: inc/php/tabs/faq.php:183 inc/php/tabs/faq.php:199
|
332 |
msgid "What could be wrong?"
|
333 |
msgstr "Wat kan er fout zijn?"
|
334 |
|
335 |
+
#: inc/php/tabs/faq.php:186
|
336 |
msgid "As with every plugin, it's possible that things don't work."
|
337 |
msgstr "Zoals met elke plug-in, is het mogelijk dat dingen niet werken."
|
338 |
|
339 |
+
#: inc/php/tabs/faq.php:187
|
340 |
msgid "It's impossible to tell what could be wrong exactly."
|
341 |
msgstr "Het is onmogelijk om precies te vertellen wat er precies mis zou kunnen zijn."
|
342 |
|
343 |
+
#: inc/php/tabs/faq.php:188
|
344 |
msgid "The most common reason for this is a web browser's cache."
|
345 |
msgstr "De meest voorkomende reden hiervoor is de cache van een webbrowser."
|
346 |
|
347 |
+
#: inc/php/tabs/faq.php:189
|
348 |
msgid "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load."
|
349 |
msgstr "Elke webbrowser slaat een cache op van de websites die u bezoekt (pagina's, afbeeldingen en enz.) Om het bandbreedte-gebruik en de serverbelasting te verminderen."
|
350 |
|
351 |
+
#: inc/php/tabs/faq.php:190
|
352 |
msgid "This is called the browser's cache."
|
353 |
msgstr "Dit wordt de cache van de browser genoemd."
|
354 |
|
355 |
+
#: inc/php/tabs/faq.php:191
|
356 |
msgid "Clearing your browser's cache may solve the problem."
|
357 |
msgstr "Het wissen van de cache van uw browser kan het probleem oplossen."
|
358 |
|
359 |
+
#: inc/php/tabs/faq.php:193
|
360 |
msgid "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."
|
361 |
msgstr "Als je een ondersteuningsverzoek post in het ondersteuningsforum van de plug-in op WordPress.org, willen we graag een kijkje nemen en proberen te helpen."
|
362 |
|
363 |
+
#: inc/php/tabs/faq.php:194 inc/php/tabs/faq.php:237
|
364 |
msgid "Please include as much information as possible, including a link to your website where the problem can be seen."
|
365 |
msgstr "Voeg zoveel mogelijk informatie toe, inclusief een link naar uw website waar het probleem kan worden gezien."
|
366 |
|
367 |
+
#: inc/php/tabs/faq.php:198
|
368 |
msgid "My custom HTML code is not working."
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: inc/php/tabs/faq.php:202
|
372 |
msgid "It happens that your custom HTML code that you insert on the plugin page does not work, even if an error message does not appear."
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: inc/php/tabs/faq.php:203
|
376 |
msgid "Here are a few of the most likely causes of the issue:"
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: inc/php/tabs/faq.php:205
|
380 |
msgid "You have a typo during the insertion of your custom HTML code."
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: inc/php/tabs/faq.php:206
|
384 |
msgid "Your custom HTML code has a syntax error."
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: inc/php/tabs/faq.php:207
|
388 |
msgid "Your custom HTML code is incorrect and may not work."
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: inc/php/tabs/faq.php:212
|
392 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
|
393 |
msgstr "De laatste Wordpress update zorgt ervoor dat ik mijn website niet kan bewerken als ik deze plugin gebruik."
|
394 |
|
395 |
+
#: inc/php/tabs/faq.php:213
|
396 |
msgid "Why is this?"
|
397 |
msgstr "Waarom is dit?"
|
398 |
|
399 |
+
#: inc/php/tabs/faq.php:216
|
400 |
msgid "This plugin can not cause such problem."
|
401 |
msgstr "Deze plug-in kan zo’n probleem niet veroorzaken."
|
402 |
|
403 |
+
#: inc/php/tabs/faq.php:217
|
404 |
msgid "More likely, the problem are related to the settings of the website."
|
405 |
msgstr "Waarschijnlijker is het probleem gerelateerd aan de instellingen van de website."
|
406 |
|
407 |
+
#: inc/php/tabs/faq.php:218
|
408 |
msgid "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."
|
409 |
msgstr "Het kan gewoon een cache-probleem zijn, dus probeer de cache van je website te wissen (mogelijk gebruik je een caching-plug-in of een webservice zoals de CloudFlare) en vervolgens de cache van je webbrowser."
|
410 |
|
411 |
+
#: inc/php/tabs/faq.php:219
|
412 |
msgid "Also please try to re-login to the website, this too can help."
|
413 |
msgstr "Probeer ook opnieuw in te loggen op de website, ook dit kan helpen."
|
414 |
|
415 |
+
#: inc/php/tabs/faq.php:223
|
416 |
msgid "Where to report bug if found?"
|
417 |
msgstr "Waar kan een bug gerapporteerd worden indien gevonden?"
|
418 |
|
419 |
+
#: inc/php/tabs/faq.php:226
|
420 |
msgid "Bug reports are very welcome!"
|
421 |
msgstr "Bugrapporten zijn van harte welkom!"
|
422 |
|
423 |
+
#: inc/php/tabs/faq.php:229
|
424 |
#, php-format
|
425 |
msgid "Please visit our %s contact page %s and report."
|
426 |
msgstr "Ga naar onze %s contactpagina %s en rapporteer."
|
427 |
|
428 |
+
#: inc/php/tabs/faq.php:234 inc/php/tabs/faq.php:263
|
429 |
msgid "Please do not forget to specify the name of the plugin."
|
430 |
msgstr "Vergeet alsjeblieft niet om de naam van de plug-in te specificeren."
|
431 |
|
432 |
+
#: inc/php/tabs/faq.php:235 inc/php/tabs/faq.php:264 inc/php/tabs/faq.php:280
|
433 |
msgid "Thank you!"
|
434 |
msgstr "Dank je!"
|
435 |
|
436 |
+
#: inc/php/tabs/faq.php:238
|
437 |
msgid "Describe in more detail what exactly you are seeing."
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: inc/php/tabs/faq.php:239
|
441 |
msgid "Here are some examples:"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: inc/php/tabs/faq.php:242
|
445 |
msgid "Elements of the plugin settings page are not working."
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: inc/php/tabs/faq.php:243
|
449 |
msgid "An error message is displayed on the plugin settings page."
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: inc/php/tabs/faq.php:244
|
453 |
msgid "An error message is displayed on the front end of website."
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: inc/php/tabs/faq.php:245
|
457 |
msgid "An error message is displayed on the back end of website."
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: inc/php/tabs/faq.php:246
|
461 |
msgid "Custom code is inserted on the plugin settings page, but it is not applied on the website."
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: inc/php/tabs/faq.php:247
|
465 |
msgid "Website is crashed."
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: inc/php/tabs/faq.php:252
|
469 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
470 |
msgstr "Waar kan ik ideeën of suggesties delen om de plug-in beter te maken?"
|
471 |
|
472 |
+
#: inc/php/tabs/faq.php:255
|
473 |
msgid "Any suggestions are very welcome!"
|
474 |
msgstr "Alle suggesties zijn van harte welkom!"
|
475 |
|
476 |
+
#: inc/php/tabs/faq.php:258
|
477 |
#, php-format
|
478 |
msgid "Please visit our %s contact page %s."
|
479 |
msgstr "Ga naar onze %s contactpagina %s."
|
480 |
|
481 |
+
#: inc/php/tabs/faq.php:268
|
482 |
msgid "I love this plugin!"
|
483 |
msgstr "Ik ben dol op deze plug-in!"
|
484 |
|
485 |
+
#: inc/php/tabs/faq.php:269
|
486 |
msgid "Can I help somehow?"
|
487 |
msgstr "Kan ik op de een of andere manier helpen?"
|
488 |
|
489 |
+
#: inc/php/tabs/faq.php:272
|
490 |
msgid "Yes, any contributions are very welcome!"
|
491 |
msgstr "Ja, alle bijdragen zijn van harte welkom!"
|
492 |
|
493 |
+
#: inc/php/tabs/faq.php:275
|
494 |
#, php-format
|
495 |
msgid "Please visit our %s Support Us %s page."
|
496 |
msgstr "Ga naar onze %s Support Us %s."
|
497 |
|
498 |
+
#: inc/php/tabs/faq.php:284
|
499 |
msgid "Where can I find information about your licenses, payment process and refunds?"
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: inc/php/tabs/faq.php:289
|
503 |
#, php-format
|
504 |
msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: inc/php/tabs/faq.php:297
|
508 |
msgid "Where can I find information about your customer support?"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: inc/php/tabs/faq.php:302
|
512 |
#, php-format
|
513 |
msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: inc/php/tabs/faq.php:310
|
517 |
msgid "Where can I find information about your affiliate program?"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: inc/php/tabs/faq.php:315
|
521 |
#, php-format
|
522 |
msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: inc/php/tabs/faq.php:323
|
526 |
msgid "My question wasn't answered here."
|
527 |
msgstr "Mij vraag is hier niet beantwoord."
|
528 |
|
529 |
+
#: inc/php/tabs/faq.php:328
|
530 |
#, php-format
|
531 |
msgid "You can ask your question on %s this page %s."
|
532 |
msgstr "Je kunt je vraag op %s deze pagina %s stellen."
|
533 |
|
534 |
+
#: inc/php/tabs/faq.php:333
|
535 |
msgid "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."
|
536 |
msgstr "Maar houd er rekening mee dat deze plug-in gratis is en er geen speciaal ondersteuningsteam is, dus we kunnen niet iedereen antwoorden."
|
537 |
|
538 |
+
#: inc/php/tabs/settings.php:32
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
539 |
msgid "Head Section"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: inc/php/tabs/settings.php:34 inc/php/tabs/settings.php:62
|
543 |
msgid "NOT SAVED!"
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: inc/php/tabs/settings.php:38
|
547 |
msgid "You can use the fields below to add your custom HTML code to the HEAD section of your website's front end."
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: inc/php/tabs/settings.php:40
|
551 |
msgid "The HTML code from this field will be printed at the beginning of the HEAD section. Do not place plain text in this!"
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: inc/php/tabs/settings.php:44 inc/php/tabs/settings.php:51
|
555 |
+
#: inc/php/tabs/settings.php:72 inc/php/tabs/settings.php:79
|
556 |
msgid "Enter your custom HTML code here"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: inc/php/tabs/settings.php:47
|
560 |
msgid "The HTML code from this field will be printed at the end of the HEAD section. Do not place plain text in this!"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: inc/php/tabs/settings.php:54 inc/php/tabs/settings.php:82
|
564 |
msgid "Save changes"
|
565 |
msgstr "Wijzigingen opslaan"
|
566 |
|
567 |
+
#: inc/php/tabs/settings.php:60
|
568 |
msgid "Footer Section"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: inc/php/tabs/settings.php:66
|
572 |
msgid "You can use the fields below to add your custom HTML code to the FOOTER section of your website's front end."
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: inc/php/tabs/settings.php:68
|
576 |
msgid "The HTML code from this field will be printed at the beginning of the FOOTER section. Do not place plain text in this!"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: inc/php/tabs/settings.php:75
|
580 |
msgid "The HTML code from this field will be printed at the end of the FOOTER section. Do not place plain text in this!"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: inc/php/tabs/support.php:13
|
584 |
+
msgid "Support Us"
|
585 |
+
msgstr "Ondersteun ons"
|
586 |
+
|
587 |
+
#: inc/php/tabs/support.php:28
|
588 |
+
#, php-format
|
589 |
+
msgid "My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
590 |
+
msgstr "Mijn naam is %s Arthur %s en ik ben de oprichter van %s Space X-Chimp %s, which unites a small international team of young people."
|
591 |
+
|
592 |
+
#: inc/php/tabs/support.php:37
|
593 |
+
msgid "Our intention is to create projects that will make this world a better place."
|
594 |
+
msgstr "Het is onze bedoeling om projecten te maken die van deze wereld een betere plek maken."
|
595 |
+
|
596 |
+
#: inc/php/tabs/support.php:38
|
597 |
+
msgid "Our motto is - «Follow your dreams and don’t give up»."
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: inc/php/tabs/support.php:39
|
601 |
+
msgid "We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
602 |
+
msgstr "We zijn echt gepassioneerd over ons werk, we vind het leuk wat we doe en hoop dat je ook verrijkt zult worden door ons projecten."
|
603 |
|
604 |
+
#: inc/php/tabs/support.php:42
|
605 |
+
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them."
|
606 |
+
msgstr "We besteden veel tijd en moeite om ervoor te zorgen dat de thema's, plug-ins en andere dingen die we maak nuttig zijn, en het ultieme bewijs daarvan is dat je ze echt wilt gebruiken."
|
607 |
|
608 |
+
#: inc/php/tabs/support.php:43
|
609 |
+
msgid "But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
610 |
+
msgstr "We zijn een onafhankelijke ontwikkelaar, zonder een vast inkomen, dus elke kleine bijdrage helpt ons onze kosten te dekken en laat ons meer tijd spenderen aan het bouwen van dingen voor mensen zoals jij om van te genieten."
|
611 |
|
612 |
+
#: inc/php/tabs/support.php:46
|
613 |
+
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
614 |
+
msgstr "Als je ons werk waardeert, kun je een koffie voor ons kopen!"
|
615 |
+
|
616 |
+
#: inc/php/tabs/support.php:49
|
617 |
+
msgid "Thank you for your support!"
|
618 |
+
msgstr "Bedankt voor je ondersteuning!"
|
619 |
+
|
620 |
+
#: inc/php/tabs/usage.php:13
|
621 |
+
msgid "Usage Instructions"
|
622 |
+
msgstr "Gebruiksinstructies"
|
623 |
+
|
624 |
+
#: inc/php/tabs/usage.php:15
|
625 |
+
msgid "To add your custom HTML code (plus JavaScript, CSS, etc.) to your website, simply follow these steps:"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: inc/php/tabs/usage.php:17
|
629 |
+
msgid "Go to the \"Main\" tab on this page."
|
630 |
+
msgstr "Ga naar het tabblad “Hoofd”."
|
631 |
|
632 |
+
#: inc/php/tabs/usage.php:19
|
633 |
+
msgid "Place your custom HTML code in the code editor field."
|
634 |
+
msgstr ""
|
635 |
+
|
636 |
+
#: inc/php/tabs/usage.php:22
|
637 |
+
msgid "Note!"
|
638 |
+
msgstr "Opmerking!"
|
639 |
+
|
640 |
+
#: inc/php/tabs/usage.php:23
|
641 |
+
msgid "The JavaScript and CSS code must be wrapped in HTML tags."
|
642 |
+
msgstr ""
|
643 |
+
|
644 |
+
#: inc/php/tabs/usage.php:24
|
645 |
+
msgid "For JavaScript code use the <code><script></code> tag, and for CSS code use the <code><style></code> tag."
|
646 |
+
msgstr ""
|
647 |
+
|
648 |
+
#: inc/php/tabs/usage.php:27
|
649 |
+
msgid "Click the \"Save changes\" button."
|
650 |
+
msgstr "Klik op de knop \"Wijzigingen opslaan\"."
|
651 |
+
|
652 |
+
#: inc/php/tabs/usage.php:33
|
653 |
+
#, php-format
|
654 |
+
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
655 |
+
msgstr "Wilt u meer opties dan %s vertel ons %s en wij zullen graag toevoegen."
|
656 |
|
657 |
#. Plugin Name of the plugin/theme
|
658 |
msgid "Head and Footer Scripts Inserter"
|
languages/header-and-footer-scripts-inserter-pl_PL.mo
CHANGED
Binary file
|
languages/header-and-footer-scripts-inserter-pl_PL.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Head and Footer Scripts Inserter\n"
|
6 |
-
"POT-Creation-Date: 2019-
|
7 |
-
"PO-Revision-Date: 2019-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Polish\n"
|
10 |
"Language: pl_PL\n"
|
@@ -37,7 +37,7 @@ msgstr "Wesprzyj"
|
|
37 |
msgid "Scripts Inserter"
|
38 |
msgstr "Scripts Inserter"
|
39 |
|
40 |
-
#: inc/php/messages.php:27 inc/php/
|
41 |
msgid "Hello!"
|
42 |
msgstr ""
|
43 |
|
@@ -62,598 +62,599 @@ msgstr ""
|
|
62 |
msgid "Custom code updated successfully."
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: inc/php/page.php:
|
66 |
#, php-format
|
67 |
msgid "by %s Space X-Chimp %s"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: inc/php/page.php:
|
71 |
msgid "Version"
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: inc/php/page.php:
|
75 |
msgid "Main"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: inc/php/page.php:
|
79 |
msgid "Usage"
|
80 |
msgstr "Wykorzystanie"
|
81 |
|
82 |
-
#: inc/php/page.php:
|
83 |
msgid "F.A.Q."
|
84 |
msgstr "FAQ"
|
85 |
|
86 |
-
#: inc/php/page.php:
|
87 |
msgid "Support"
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: inc/php/page.php:
|
91 |
msgid "Store"
|
92 |
msgstr "Rodzina"
|
93 |
|
94 |
-
#: inc/php/
|
95 |
-
msgid "
|
96 |
-
msgstr ""
|
97 |
-
|
98 |
-
#: inc/php/page.php:67
|
99 |
-
msgid "To add your custom HTML code (plus JavaScript, CSS, etc.) to your website, simply follow these steps:"
|
100 |
-
msgstr ""
|
101 |
-
|
102 |
-
#: inc/php/page.php:69
|
103 |
-
msgid "Go to the \"Main\" tab on this page."
|
104 |
-
msgstr ""
|
105 |
-
|
106 |
-
#: inc/php/page.php:71
|
107 |
-
msgid "Place your custom HTML code in the code editor field."
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: inc/php/
|
111 |
-
msgid "
|
112 |
-
msgstr ""
|
113 |
|
114 |
-
#: inc/php/
|
115 |
-
msgid "
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: inc/php/
|
119 |
-
msgid "
|
120 |
-
msgstr ""
|
121 |
|
122 |
-
#: inc/php/
|
123 |
-
msgid "
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: inc/php/
|
127 |
-
msgid "
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: inc/php/
|
131 |
-
|
|
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: inc/php/
|
135 |
-
|
136 |
-
|
137 |
-
msgstr "Jeśli potrzebujesz więcej opcji %s napisz do nas %s o tym. Chętnie je dodamy."
|
138 |
|
139 |
-
#: inc/php/
|
140 |
msgid "Frequently Asked Questions"
|
141 |
msgstr "Często zadawane pytania"
|
142 |
|
143 |
-
#: inc/php/
|
144 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: inc/php/
|
148 |
msgid "Where can I find a documentation for this plugin?"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: inc/php/
|
152 |
#, php-format
|
153 |
msgid "Please visit our %s Documentation site %s to view documentation."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: inc/php/
|
157 |
msgid "Will this plugin work on my wordpress.COM website?"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: inc/php/
|
161 |
msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: inc/php/
|
165 |
msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: inc/php/
|
169 |
msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: inc/php/
|
173 |
#, php-format
|
174 |
msgid "You can learn more about the difference here: %s ."
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: inc/php/
|
178 |
msgid "Will this plugin work/compatible with the theme I use?"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: inc/php/
|
182 |
msgid "This plugin is compatible with most themes."
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: inc/php/
|
186 |
msgid "But, unfortunately, we cannot check it with all third-party themes (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party theme."
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: inc/php/
|
190 |
msgid "We constantly check this plugin for compatibility with third-party themes."
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: inc/php/
|
194 |
msgid "If we find that this plugin is incompatible with a third-party theme, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: inc/php/
|
198 |
msgid "If you find a conflict between our plugin and a third-party theme, please let us know and we will definitely release an update of our plugin to fix the problem."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: inc/php/
|
202 |
msgid "Will this plugin work/compatible with other plugins that I use?"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: inc/php/
|
206 |
msgid "This plugin is compatible with most plugins."
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: inc/php/
|
210 |
msgid "But, unfortunately, we cannot check it with all third-party plugins (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party plugin."
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: inc/php/
|
214 |
msgid "We constantly check this plugin for compatibility with third-party plugins."
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: inc/php/
|
218 |
msgid "If we find that this plugin is incompatible with a third-party plugin, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: inc/php/
|
222 |
msgid "If you find a conflict between our plugin and a third-party plugin, please let us know and we will definitely release an update of our plugin to fix the problem."
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: inc/php/
|
226 |
msgid "Can I use this plugin on my language?"
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: inc/php/
|
230 |
msgid "Yes."
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: inc/php/
|
234 |
msgid "This plugin is ready for translation and has already been translated into several languages."
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: inc/php/
|
238 |
msgid "But If your language is not available then you can make one."
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: inc/php/
|
242 |
msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: inc/php/
|
246 |
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: inc/php/
|
250 |
msgid "Thanks for your contribution!"
|
251 |
msgstr "Dziękujemy za Twój wkład!"
|
252 |
|
253 |
-
#: inc/php/
|
254 |
#, php-format
|
255 |
msgid "If you want to help translate this plugin, please visit the %s."
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: inc/php/
|
259 |
msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: inc/php/
|
263 |
#, php-format
|
264 |
msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: inc/php/
|
268 |
msgid "How does it work?"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: inc/php/
|
272 |
msgid "On the \"Main\" tab, place your custom HTML code in the code editor field and click the \"Save changes\" button."
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: inc/php/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
276 |
msgid "How much of HTML code (characters) I can enter in the code editor?"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: inc/php/
|
280 |
msgid "We don't limit the number of characters."
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: inc/php/
|
284 |
msgid "Does this plugin requires any modification of the theme?"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: inc/php/
|
288 |
msgid "Absolutely not."
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: inc/php/
|
292 |
msgid "This plugin is configurable entirely from the plugin settings page."
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: inc/php/
|
296 |
msgid "Does this require any knowledge of HTML or CSS?"
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: inc/php/
|
300 |
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: inc/php/
|
304 |
msgid "But you need to know the HTML or CSS in order to add/remove/modify the HTML or CSS code by using this plugin."
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: inc/php/
|
308 |
msgid "Can I add my custom HTML code to a specific page of my website?"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: inc/php/
|
312 |
msgid "For now, this plugin does not have an option to apply the custom HTML code only on specific pages."
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: inc/php/
|
316 |
msgid "We plan to add this feature soon."
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: inc/php/
|
320 |
msgid "But for now in order to apply your custom HTML code only on specific pages of your website, you need to wrap your custom HTML code in a PHP code that will determine the page you want."
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: inc/php/
|
324 |
msgid "You need something like this:"
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: inc/php/
|
328 |
#, php-format
|
329 |
msgid "To apply the PHP code on a website, we can recommend you to use another our plugin called %s."
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: inc/php/
|
333 |
msgid "It's not working."
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: inc/php/
|
337 |
msgid "What could be wrong?"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: inc/php/
|
341 |
msgid "As with every plugin, it's possible that things don't work."
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: inc/php/
|
345 |
msgid "It's impossible to tell what could be wrong exactly."
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: inc/php/
|
349 |
msgid "The most common reason for this is a web browser's cache."
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: inc/php/
|
353 |
msgid "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load."
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: inc/php/
|
357 |
msgid "This is called the browser's cache."
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: inc/php/
|
361 |
msgid "Clearing your browser's cache may solve the problem."
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: inc/php/
|
365 |
msgid "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."
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: inc/php/
|
369 |
msgid "Please include as much information as possible, including a link to your website where the problem can be seen."
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: inc/php/
|
373 |
msgid "My custom HTML code is not working."
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: inc/php/
|
377 |
msgid "It happens that your custom HTML code that you insert on the plugin page does not work, even if an error message does not appear."
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: inc/php/
|
381 |
msgid "Here are a few of the most likely causes of the issue:"
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: inc/php/
|
385 |
msgid "You have a typo during the insertion of your custom HTML code."
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: inc/php/
|
389 |
msgid "Your custom HTML code has a syntax error."
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: inc/php/
|
393 |
msgid "Your custom HTML code is incorrect and may not work."
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: inc/php/
|
397 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: inc/php/
|
401 |
msgid "Why is this?"
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: inc/php/
|
405 |
msgid "This plugin can not cause such problem."
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: inc/php/
|
409 |
msgid "More likely, the problem are related to the settings of the website."
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: inc/php/
|
413 |
msgid "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."
|
414 |
msgstr ""
|
415 |
|
416 |
-
#: inc/php/
|
417 |
msgid "Also please try to re-login to the website, this too can help."
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: inc/php/
|
421 |
msgid "Where to report bug if found?"
|
422 |
msgstr ""
|
423 |
|
424 |
-
#: inc/php/
|
425 |
msgid "Bug reports are very welcome!"
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: inc/php/
|
429 |
#, php-format
|
430 |
msgid "Please visit our %s contact page %s and report."
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: inc/php/
|
434 |
msgid "Please do not forget to specify the name of the plugin."
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: inc/php/
|
438 |
msgid "Thank you!"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: inc/php/
|
442 |
msgid "Describe in more detail what exactly you are seeing."
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: inc/php/
|
446 |
msgid "Here are some examples:"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: inc/php/
|
450 |
msgid "Elements of the plugin settings page are not working."
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: inc/php/
|
454 |
msgid "An error message is displayed on the plugin settings page."
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: inc/php/
|
458 |
msgid "An error message is displayed on the front end of website."
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: inc/php/
|
462 |
msgid "An error message is displayed on the back end of website."
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: inc/php/
|
466 |
msgid "Custom code is inserted on the plugin settings page, but it is not applied on the website."
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: inc/php/
|
470 |
msgid "Website is crashed."
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: inc/php/
|
474 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: inc/php/
|
478 |
msgid "Any suggestions are very welcome!"
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: inc/php/
|
482 |
#, php-format
|
483 |
msgid "Please visit our %s contact page %s."
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: inc/php/
|
487 |
msgid "I love this plugin!"
|
488 |
msgstr ""
|
489 |
|
490 |
-
#: inc/php/
|
491 |
msgid "Can I help somehow?"
|
492 |
msgstr ""
|
493 |
|
494 |
-
#: inc/php/
|
495 |
msgid "Yes, any contributions are very welcome!"
|
496 |
msgstr ""
|
497 |
|
498 |
-
#: inc/php/
|
499 |
#, php-format
|
500 |
msgid "Please visit our %s Support Us %s page."
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: inc/php/
|
504 |
msgid "Where can I find information about your licenses, payment process and refunds?"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: inc/php/
|
508 |
#, php-format
|
509 |
msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: inc/php/
|
513 |
msgid "Where can I find information about your customer support?"
|
514 |
msgstr ""
|
515 |
|
516 |
-
#: inc/php/
|
517 |
#, php-format
|
518 |
msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: inc/php/
|
522 |
msgid "Where can I find information about your affiliate program?"
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: inc/php/
|
526 |
#, php-format
|
527 |
msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: inc/php/
|
531 |
msgid "My question wasn't answered here."
|
532 |
msgstr ""
|
533 |
|
534 |
-
#: inc/php/
|
535 |
#, php-format
|
536 |
msgid "You can ask your question on %s this page %s."
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: inc/php/
|
540 |
msgid "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."
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: inc/php/
|
544 |
-
msgid "Support Us"
|
545 |
-
msgstr ""
|
546 |
-
|
547 |
-
#: inc/php/page.php:438 inc/php/settings.php:94 inc/php/sidebar.php:54
|
548 |
-
msgid "Donate with PayPal"
|
549 |
-
msgstr ""
|
550 |
-
|
551 |
-
#: inc/php/page.php:445
|
552 |
-
#, php-format
|
553 |
-
msgid "My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
554 |
-
msgstr ""
|
555 |
-
|
556 |
-
#: inc/php/page.php:454
|
557 |
-
msgid "Our intention is to create projects that will make this world a better place."
|
558 |
-
msgstr ""
|
559 |
-
|
560 |
-
#: inc/php/page.php:455
|
561 |
-
msgid "Our motto is - «Follow your dreams and don’t give up»."
|
562 |
-
msgstr ""
|
563 |
-
|
564 |
-
#: inc/php/page.php:456
|
565 |
-
msgid "We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
566 |
-
msgstr ""
|
567 |
-
|
568 |
-
#: inc/php/page.php:459
|
569 |
-
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them."
|
570 |
-
msgstr ""
|
571 |
-
|
572 |
-
#: inc/php/page.php:460
|
573 |
-
msgid "But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
574 |
-
msgstr ""
|
575 |
-
|
576 |
-
#: inc/php/page.php:463
|
577 |
-
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
578 |
-
msgstr ""
|
579 |
-
|
580 |
-
#: inc/php/page.php:466
|
581 |
-
msgid "Thank you for your support!"
|
582 |
-
msgstr ""
|
583 |
-
|
584 |
-
#: inc/php/settings.php:32
|
585 |
msgid "Head Section"
|
586 |
msgstr "Sekcja: Nagłówek"
|
587 |
|
588 |
-
#: inc/php/settings.php:34 inc/php/settings.php:62
|
589 |
msgid "NOT SAVED!"
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: inc/php/settings.php:38
|
593 |
msgid "You can use the fields below to add your custom HTML code to the HEAD section of your website's front end."
|
594 |
msgstr "Pola poniżej można użyć, aby dodać kod HTML do nagłówka witryny."
|
595 |
|
596 |
-
#: inc/php/settings.php:40
|
597 |
msgid "The HTML code from this field will be printed at the beginning of the HEAD section. Do not place plain text in this!"
|
598 |
msgstr "Kod HTML z tego pola zostaną dodane na początku sekcji HEAD. Nie należy tu umieszczać zwykłego tekstu!"
|
599 |
|
600 |
-
#: inc/php/settings.php:44 inc/php/settings.php:51
|
601 |
-
#: inc/php/settings.php:79
|
602 |
msgid "Enter your custom HTML code here"
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: inc/php/settings.php:47
|
606 |
msgid "The HTML code from this field will be printed at the end of the HEAD section. Do not place plain text in this!"
|
607 |
msgstr "Kod HTML z tego pola zostaną dodane na końcu sekcji HEAD. Nie należy tu umieszczać zwykłego tekstu!"
|
608 |
|
609 |
-
#: inc/php/settings.php:54 inc/php/settings.php:82
|
610 |
msgid "Save changes"
|
611 |
msgstr "Zapisz"
|
612 |
|
613 |
-
#: inc/php/settings.php:60
|
614 |
msgid "Footer Section"
|
615 |
msgstr "Sekcja: Stopka"
|
616 |
|
617 |
-
#: inc/php/settings.php:66
|
618 |
msgid "You can use the fields below to add your custom HTML code to the FOOTER section of your website's front end."
|
619 |
msgstr "Pola poniżej można użyć, aby dodać kod HTML do stopki witryny."
|
620 |
|
621 |
-
#: inc/php/settings.php:68
|
622 |
msgid "The HTML code from this field will be printed at the beginning of the FOOTER section. Do not place plain text in this!"
|
623 |
msgstr "Kod HTML z tego pola zostaną dodane przed skryptami ze stopki. Nie należy tu umieszczać zwykłego tekstu!"
|
624 |
|
625 |
-
#: inc/php/settings.php:75
|
626 |
msgid "The HTML code from this field will be printed at the end of the FOOTER section. Do not place plain text in this!"
|
627 |
msgstr "Kod HTML z tego pola zostaną dodane za skryptami ze stopki. Nie należy tu umieszczać zwykłego tekstu!"
|
628 |
|
629 |
-
#: inc/php/
|
630 |
-
msgid "
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: inc/php/
|
634 |
-
|
635 |
-
|
|
|
636 |
|
637 |
-
#: inc/php/
|
638 |
-
msgid "
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: inc/php/
|
642 |
-
msgid "
|
643 |
-
msgstr "
|
644 |
|
645 |
-
#: inc/php/
|
646 |
-
msgid "
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: inc/php/
|
650 |
-
msgid "
|
651 |
-
msgstr "
|
652 |
|
653 |
-
#: inc/php/
|
654 |
-
msgid "
|
655 |
msgstr ""
|
656 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
657 |
#. Plugin Name of the plugin/theme
|
658 |
msgid "Head and Footer Scripts Inserter"
|
659 |
msgstr "Head and Footer Scripts Inserter"
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Head and Footer Scripts Inserter\n"
|
6 |
+
"POT-Creation-Date: 2019-03-01 06:41+0300\n"
|
7 |
+
"PO-Revision-Date: 2019-03-01 06:41+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Polish\n"
|
10 |
"Language: pl_PL\n"
|
37 |
msgid "Scripts Inserter"
|
38 |
msgstr "Scripts Inserter"
|
39 |
|
40 |
+
#: inc/php/messages.php:27 inc/php/tabs/support.php:25
|
41 |
msgid "Hello!"
|
42 |
msgstr ""
|
43 |
|
62 |
msgid "Custom code updated successfully."
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: inc/php/page.php:34
|
66 |
#, php-format
|
67 |
msgid "by %s Space X-Chimp %s"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: inc/php/page.php:40
|
71 |
msgid "Version"
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: inc/php/page.php:47
|
75 |
msgid "Main"
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: inc/php/page.php:48
|
79 |
msgid "Usage"
|
80 |
msgstr "Wykorzystanie"
|
81 |
|
82 |
+
#: inc/php/page.php:49
|
83 |
msgid "F.A.Q."
|
84 |
msgstr "FAQ"
|
85 |
|
86 |
+
#: inc/php/page.php:50 inc/php/sidebar.php:47 inc/php/tabs/settings.php:87
|
87 |
msgid "Support"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: inc/php/page.php:51
|
91 |
msgid "Store"
|
92 |
msgstr "Rodzina"
|
93 |
|
94 |
+
#: inc/php/sidebar.php:16
|
95 |
+
msgid "We are «Space X-Chimp»"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: inc/php/sidebar.php:33
|
99 |
+
msgid "About"
|
100 |
+
msgstr "O wtyczce"
|
101 |
|
102 |
+
#: inc/php/sidebar.php:35
|
103 |
+
msgid "This plugin gives you the ability to easily and safely add your custom HTML code (plus JavaScript, CSS, etc.) to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: inc/php/sidebar.php:40
|
107 |
+
msgid "Help"
|
108 |
+
msgstr "Pomoc"
|
109 |
|
110 |
+
#: inc/php/sidebar.php:42
|
111 |
+
msgid "If you have a question, please read the information in the FAQ section."
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: inc/php/sidebar.php:49 inc/php/tabs/settings.php:89
|
115 |
+
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: inc/php/sidebar.php:54 inc/php/tabs/settings.php:94
|
119 |
+
#: inc/php/tabs/support.php:21
|
120 |
+
msgid "Donate with PayPal"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: inc/php/sidebar.php:56 inc/php/tabs/settings.php:96
|
124 |
+
msgid "Thanks for your support!"
|
125 |
+
msgstr "Dziękujemy za wsparcie!"
|
|
|
126 |
|
127 |
+
#: inc/php/tabs/faq.php:13
|
128 |
msgid "Frequently Asked Questions"
|
129 |
msgstr "Często zadawane pytania"
|
130 |
|
131 |
+
#: inc/php/tabs/faq.php:17
|
132 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: inc/php/tabs/faq.php:42
|
136 |
msgid "Where can I find a documentation for this plugin?"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: inc/php/tabs/faq.php:47
|
140 |
#, php-format
|
141 |
msgid "Please visit our %s Documentation site %s to view documentation."
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: inc/php/tabs/faq.php:55
|
145 |
msgid "Will this plugin work on my wordpress.COM website?"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: inc/php/tabs/faq.php:58
|
149 |
msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: inc/php/tabs/faq.php:60
|
153 |
msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: inc/php/tabs/faq.php:61
|
157 |
msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: inc/php/tabs/faq.php:64
|
161 |
#, php-format
|
162 |
msgid "You can learn more about the difference here: %s ."
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: inc/php/tabs/faq.php:71
|
166 |
msgid "Will this plugin work/compatible with the theme I use?"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: inc/php/tabs/faq.php:74
|
170 |
msgid "This plugin is compatible with most themes."
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: inc/php/tabs/faq.php:75
|
174 |
msgid "But, unfortunately, we cannot check it with all third-party themes (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party theme."
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: inc/php/tabs/faq.php:76
|
178 |
msgid "We constantly check this plugin for compatibility with third-party themes."
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: inc/php/tabs/faq.php:77
|
182 |
msgid "If we find that this plugin is incompatible with a third-party theme, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: inc/php/tabs/faq.php:79
|
186 |
msgid "If you find a conflict between our plugin and a third-party theme, please let us know and we will definitely release an update of our plugin to fix the problem."
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: inc/php/tabs/faq.php:83
|
190 |
msgid "Will this plugin work/compatible with other plugins that I use?"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: inc/php/tabs/faq.php:86
|
194 |
msgid "This plugin is compatible with most plugins."
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: inc/php/tabs/faq.php:87
|
198 |
msgid "But, unfortunately, we cannot check it with all third-party plugins (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party plugin."
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: inc/php/tabs/faq.php:88
|
202 |
msgid "We constantly check this plugin for compatibility with third-party plugins."
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: inc/php/tabs/faq.php:89
|
206 |
msgid "If we find that this plugin is incompatible with a third-party plugin, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: inc/php/tabs/faq.php:91
|
210 |
msgid "If you find a conflict between our plugin and a third-party plugin, please let us know and we will definitely release an update of our plugin to fix the problem."
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: inc/php/tabs/faq.php:95
|
214 |
msgid "Can I use this plugin on my language?"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: inc/php/tabs/faq.php:98
|
218 |
msgid "Yes."
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: inc/php/tabs/faq.php:99
|
222 |
msgid "This plugin is ready for translation and has already been translated into several languages."
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: inc/php/tabs/faq.php:100
|
226 |
msgid "But If your language is not available then you can make one."
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: inc/php/tabs/faq.php:101
|
230 |
msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: inc/php/tabs/faq.php:102
|
234 |
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: inc/php/tabs/faq.php:103
|
238 |
msgid "Thanks for your contribution!"
|
239 |
msgstr "Dziękujemy za Twój wkład!"
|
240 |
|
241 |
+
#: inc/php/tabs/faq.php:107
|
242 |
#, php-format
|
243 |
msgid "If you want to help translate this plugin, please visit the %s."
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: inc/php/tabs/faq.php:111
|
247 |
msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: inc/php/tabs/faq.php:114
|
251 |
#, php-format
|
252 |
msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: inc/php/tabs/faq.php:121
|
256 |
msgid "How does it work?"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: inc/php/tabs/faq.php:124
|
260 |
msgid "On the \"Main\" tab, place your custom HTML code in the code editor field and click the \"Save changes\" button."
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: inc/php/tabs/faq.php:125 inc/php/tabs/usage.php:28
|
264 |
+
msgid "Enjoy the result of applying your custom HTML code."
|
265 |
+
msgstr ""
|
266 |
+
|
267 |
+
#: inc/php/tabs/faq.php:126 inc/php/tabs/usage.php:28
|
268 |
+
msgid "It's that simple!"
|
269 |
+
msgstr ""
|
270 |
+
|
271 |
+
#: inc/php/tabs/faq.php:130
|
272 |
msgid "How much of HTML code (characters) I can enter in the code editor?"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: inc/php/tabs/faq.php:133
|
276 |
msgid "We don't limit the number of characters."
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: inc/php/tabs/faq.php:137
|
280 |
msgid "Does this plugin requires any modification of the theme?"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: inc/php/tabs/faq.php:140
|
284 |
msgid "Absolutely not."
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: inc/php/tabs/faq.php:141
|
288 |
msgid "This plugin is configurable entirely from the plugin settings page."
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: inc/php/tabs/faq.php:145
|
292 |
msgid "Does this require any knowledge of HTML or CSS?"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: inc/php/tabs/faq.php:148
|
296 |
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: inc/php/tabs/faq.php:149
|
300 |
msgid "But you need to know the HTML or CSS in order to add/remove/modify the HTML or CSS code by using this plugin."
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: inc/php/tabs/faq.php:153
|
304 |
msgid "Can I add my custom HTML code to a specific page of my website?"
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: inc/php/tabs/faq.php:156
|
308 |
msgid "For now, this plugin does not have an option to apply the custom HTML code only on specific pages."
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: inc/php/tabs/faq.php:157
|
312 |
msgid "We plan to add this feature soon."
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: inc/php/tabs/faq.php:158
|
316 |
msgid "But for now in order to apply your custom HTML code only on specific pages of your website, you need to wrap your custom HTML code in a PHP code that will determine the page you want."
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: inc/php/tabs/faq.php:159
|
320 |
msgid "You need something like this:"
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: inc/php/tabs/faq.php:175
|
324 |
#, php-format
|
325 |
msgid "To apply the PHP code on a website, we can recommend you to use another our plugin called %s."
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: inc/php/tabs/faq.php:182
|
329 |
msgid "It's not working."
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: inc/php/tabs/faq.php:183 inc/php/tabs/faq.php:199
|
333 |
msgid "What could be wrong?"
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: inc/php/tabs/faq.php:186
|
337 |
msgid "As with every plugin, it's possible that things don't work."
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: inc/php/tabs/faq.php:187
|
341 |
msgid "It's impossible to tell what could be wrong exactly."
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: inc/php/tabs/faq.php:188
|
345 |
msgid "The most common reason for this is a web browser's cache."
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: inc/php/tabs/faq.php:189
|
349 |
msgid "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load."
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: inc/php/tabs/faq.php:190
|
353 |
msgid "This is called the browser's cache."
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: inc/php/tabs/faq.php:191
|
357 |
msgid "Clearing your browser's cache may solve the problem."
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: inc/php/tabs/faq.php:193
|
361 |
msgid "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."
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: inc/php/tabs/faq.php:194 inc/php/tabs/faq.php:237
|
365 |
msgid "Please include as much information as possible, including a link to your website where the problem can be seen."
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: inc/php/tabs/faq.php:198
|
369 |
msgid "My custom HTML code is not working."
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: inc/php/tabs/faq.php:202
|
373 |
msgid "It happens that your custom HTML code that you insert on the plugin page does not work, even if an error message does not appear."
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: inc/php/tabs/faq.php:203
|
377 |
msgid "Here are a few of the most likely causes of the issue:"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: inc/php/tabs/faq.php:205
|
381 |
msgid "You have a typo during the insertion of your custom HTML code."
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: inc/php/tabs/faq.php:206
|
385 |
msgid "Your custom HTML code has a syntax error."
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: inc/php/tabs/faq.php:207
|
389 |
msgid "Your custom HTML code is incorrect and may not work."
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: inc/php/tabs/faq.php:212
|
393 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: inc/php/tabs/faq.php:213
|
397 |
msgid "Why is this?"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: inc/php/tabs/faq.php:216
|
401 |
msgid "This plugin can not cause such problem."
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: inc/php/tabs/faq.php:217
|
405 |
msgid "More likely, the problem are related to the settings of the website."
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: inc/php/tabs/faq.php:218
|
409 |
msgid "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."
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: inc/php/tabs/faq.php:219
|
413 |
msgid "Also please try to re-login to the website, this too can help."
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: inc/php/tabs/faq.php:223
|
417 |
msgid "Where to report bug if found?"
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: inc/php/tabs/faq.php:226
|
421 |
msgid "Bug reports are very welcome!"
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: inc/php/tabs/faq.php:229
|
425 |
#, php-format
|
426 |
msgid "Please visit our %s contact page %s and report."
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: inc/php/tabs/faq.php:234 inc/php/tabs/faq.php:263
|
430 |
msgid "Please do not forget to specify the name of the plugin."
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: inc/php/tabs/faq.php:235 inc/php/tabs/faq.php:264 inc/php/tabs/faq.php:280
|
434 |
msgid "Thank you!"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: inc/php/tabs/faq.php:238
|
438 |
msgid "Describe in more detail what exactly you are seeing."
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: inc/php/tabs/faq.php:239
|
442 |
msgid "Here are some examples:"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: inc/php/tabs/faq.php:242
|
446 |
msgid "Elements of the plugin settings page are not working."
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: inc/php/tabs/faq.php:243
|
450 |
msgid "An error message is displayed on the plugin settings page."
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: inc/php/tabs/faq.php:244
|
454 |
msgid "An error message is displayed on the front end of website."
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: inc/php/tabs/faq.php:245
|
458 |
msgid "An error message is displayed on the back end of website."
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: inc/php/tabs/faq.php:246
|
462 |
msgid "Custom code is inserted on the plugin settings page, but it is not applied on the website."
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: inc/php/tabs/faq.php:247
|
466 |
msgid "Website is crashed."
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: inc/php/tabs/faq.php:252
|
470 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: inc/php/tabs/faq.php:255
|
474 |
msgid "Any suggestions are very welcome!"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: inc/php/tabs/faq.php:258
|
478 |
#, php-format
|
479 |
msgid "Please visit our %s contact page %s."
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: inc/php/tabs/faq.php:268
|
483 |
msgid "I love this plugin!"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: inc/php/tabs/faq.php:269
|
487 |
msgid "Can I help somehow?"
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: inc/php/tabs/faq.php:272
|
491 |
msgid "Yes, any contributions are very welcome!"
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: inc/php/tabs/faq.php:275
|
495 |
#, php-format
|
496 |
msgid "Please visit our %s Support Us %s page."
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: inc/php/tabs/faq.php:284
|
500 |
msgid "Where can I find information about your licenses, payment process and refunds?"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: inc/php/tabs/faq.php:289
|
504 |
#, php-format
|
505 |
msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: inc/php/tabs/faq.php:297
|
509 |
msgid "Where can I find information about your customer support?"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: inc/php/tabs/faq.php:302
|
513 |
#, php-format
|
514 |
msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: inc/php/tabs/faq.php:310
|
518 |
msgid "Where can I find information about your affiliate program?"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: inc/php/tabs/faq.php:315
|
522 |
#, php-format
|
523 |
msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: inc/php/tabs/faq.php:323
|
527 |
msgid "My question wasn't answered here."
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: inc/php/tabs/faq.php:328
|
531 |
#, php-format
|
532 |
msgid "You can ask your question on %s this page %s."
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: inc/php/tabs/faq.php:333
|
536 |
msgid "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."
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: inc/php/tabs/settings.php:32
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
540 |
msgid "Head Section"
|
541 |
msgstr "Sekcja: Nagłówek"
|
542 |
|
543 |
+
#: inc/php/tabs/settings.php:34 inc/php/tabs/settings.php:62
|
544 |
msgid "NOT SAVED!"
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: inc/php/tabs/settings.php:38
|
548 |
msgid "You can use the fields below to add your custom HTML code to the HEAD section of your website's front end."
|
549 |
msgstr "Pola poniżej można użyć, aby dodać kod HTML do nagłówka witryny."
|
550 |
|
551 |
+
#: inc/php/tabs/settings.php:40
|
552 |
msgid "The HTML code from this field will be printed at the beginning of the HEAD section. Do not place plain text in this!"
|
553 |
msgstr "Kod HTML z tego pola zostaną dodane na początku sekcji HEAD. Nie należy tu umieszczać zwykłego tekstu!"
|
554 |
|
555 |
+
#: inc/php/tabs/settings.php:44 inc/php/tabs/settings.php:51
|
556 |
+
#: inc/php/tabs/settings.php:72 inc/php/tabs/settings.php:79
|
557 |
msgid "Enter your custom HTML code here"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: inc/php/tabs/settings.php:47
|
561 |
msgid "The HTML code from this field will be printed at the end of the HEAD section. Do not place plain text in this!"
|
562 |
msgstr "Kod HTML z tego pola zostaną dodane na końcu sekcji HEAD. Nie należy tu umieszczać zwykłego tekstu!"
|
563 |
|
564 |
+
#: inc/php/tabs/settings.php:54 inc/php/tabs/settings.php:82
|
565 |
msgid "Save changes"
|
566 |
msgstr "Zapisz"
|
567 |
|
568 |
+
#: inc/php/tabs/settings.php:60
|
569 |
msgid "Footer Section"
|
570 |
msgstr "Sekcja: Stopka"
|
571 |
|
572 |
+
#: inc/php/tabs/settings.php:66
|
573 |
msgid "You can use the fields below to add your custom HTML code to the FOOTER section of your website's front end."
|
574 |
msgstr "Pola poniżej można użyć, aby dodać kod HTML do stopki witryny."
|
575 |
|
576 |
+
#: inc/php/tabs/settings.php:68
|
577 |
msgid "The HTML code from this field will be printed at the beginning of the FOOTER section. Do not place plain text in this!"
|
578 |
msgstr "Kod HTML z tego pola zostaną dodane przed skryptami ze stopki. Nie należy tu umieszczać zwykłego tekstu!"
|
579 |
|
580 |
+
#: inc/php/tabs/settings.php:75
|
581 |
msgid "The HTML code from this field will be printed at the end of the FOOTER section. Do not place plain text in this!"
|
582 |
msgstr "Kod HTML z tego pola zostaną dodane za skryptami ze stopki. Nie należy tu umieszczać zwykłego tekstu!"
|
583 |
|
584 |
+
#: inc/php/tabs/support.php:13
|
585 |
+
msgid "Support Us"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: inc/php/tabs/support.php:28
|
589 |
+
#, php-format
|
590 |
+
msgid "My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
591 |
+
msgstr ""
|
592 |
|
593 |
+
#: inc/php/tabs/support.php:37
|
594 |
+
msgid "Our intention is to create projects that will make this world a better place."
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: inc/php/tabs/support.php:38
|
598 |
+
msgid "Our motto is - «Follow your dreams and don’t give up»."
|
599 |
+
msgstr ""
|
600 |
|
601 |
+
#: inc/php/tabs/support.php:39
|
602 |
+
msgid "We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: inc/php/tabs/support.php:42
|
606 |
+
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them."
|
607 |
+
msgstr ""
|
608 |
|
609 |
+
#: inc/php/tabs/support.php:43
|
610 |
+
msgid "But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: inc/php/tabs/support.php:46
|
614 |
+
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
615 |
+
msgstr ""
|
616 |
+
|
617 |
+
#: inc/php/tabs/support.php:49
|
618 |
+
msgid "Thank you for your support!"
|
619 |
+
msgstr ""
|
620 |
+
|
621 |
+
#: inc/php/tabs/usage.php:13
|
622 |
+
msgid "Usage Instructions"
|
623 |
+
msgstr ""
|
624 |
+
|
625 |
+
#: inc/php/tabs/usage.php:15
|
626 |
+
msgid "To add your custom HTML code (plus JavaScript, CSS, etc.) to your website, simply follow these steps:"
|
627 |
+
msgstr ""
|
628 |
+
|
629 |
+
#: inc/php/tabs/usage.php:17
|
630 |
+
msgid "Go to the \"Main\" tab on this page."
|
631 |
+
msgstr ""
|
632 |
+
|
633 |
+
#: inc/php/tabs/usage.php:19
|
634 |
+
msgid "Place your custom HTML code in the code editor field."
|
635 |
+
msgstr ""
|
636 |
+
|
637 |
+
#: inc/php/tabs/usage.php:22
|
638 |
+
msgid "Note!"
|
639 |
+
msgstr ""
|
640 |
+
|
641 |
+
#: inc/php/tabs/usage.php:23
|
642 |
+
msgid "The JavaScript and CSS code must be wrapped in HTML tags."
|
643 |
+
msgstr ""
|
644 |
+
|
645 |
+
#: inc/php/tabs/usage.php:24
|
646 |
+
msgid "For JavaScript code use the <code><script></code> tag, and for CSS code use the <code><style></code> tag."
|
647 |
+
msgstr ""
|
648 |
+
|
649 |
+
#: inc/php/tabs/usage.php:27
|
650 |
+
msgid "Click the \"Save changes\" button."
|
651 |
+
msgstr ""
|
652 |
+
|
653 |
+
#: inc/php/tabs/usage.php:33
|
654 |
+
#, php-format
|
655 |
+
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
656 |
+
msgstr "Jeśli potrzebujesz więcej opcji %s napisz do nas %s o tym. Chętnie je dodamy."
|
657 |
+
|
658 |
#. Plugin Name of the plugin/theme
|
659 |
msgid "Head and Footer Scripts Inserter"
|
660 |
msgstr "Head and Footer Scripts Inserter"
|
languages/header-and-footer-scripts-inserter-ru_RU.mo
CHANGED
Binary file
|
languages/header-and-footer-scripts-inserter-ru_RU.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Head and Footer Scripts Inserter\n"
|
6 |
-
"POT-Creation-Date: 2019-
|
7 |
-
"PO-Revision-Date: 2019-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Russian\n"
|
10 |
"Language: ru_RU\n"
|
@@ -36,7 +36,7 @@ msgstr "Поддержать"
|
|
36 |
msgid "Scripts Inserter"
|
37 |
msgstr "Scripts Inserter"
|
38 |
|
39 |
-
#: inc/php/messages.php:27 inc/php/
|
40 |
msgid "Hello!"
|
41 |
msgstr "Привет!"
|
42 |
|
@@ -61,597 +61,598 @@ msgstr "Пожалуйста, обновите плагин до последн
|
|
61 |
msgid "Custom code updated successfully."
|
62 |
msgstr "Пользовательский код успешно обновлён."
|
63 |
|
64 |
-
#: inc/php/page.php:
|
65 |
#, php-format
|
66 |
msgid "by %s Space X-Chimp %s"
|
67 |
msgstr "от %s Space X-Chimp %s"
|
68 |
|
69 |
-
#: inc/php/page.php:
|
70 |
msgid "Version"
|
71 |
msgstr "Версия"
|
72 |
|
73 |
-
#: inc/php/page.php:
|
74 |
msgid "Main"
|
75 |
msgstr "Главная"
|
76 |
|
77 |
-
#: inc/php/page.php:
|
78 |
msgid "Usage"
|
79 |
msgstr "Применение"
|
80 |
|
81 |
-
#: inc/php/page.php:
|
82 |
msgid "F.A.Q."
|
83 |
msgstr "F.A.Q."
|
84 |
|
85 |
-
#: inc/php/page.php:
|
86 |
msgid "Support"
|
87 |
msgstr "Поддержка"
|
88 |
|
89 |
-
#: inc/php/page.php:
|
90 |
msgid "Store"
|
91 |
msgstr "Магазин"
|
92 |
|
93 |
-
#: inc/php/
|
94 |
-
msgid "
|
95 |
-
msgstr "
|
96 |
-
|
97 |
-
#: inc/php/page.php:67
|
98 |
-
msgid "To add your custom HTML code (plus JavaScript, CSS, etc.) to your website, simply follow these steps:"
|
99 |
-
msgstr "Для того чтобы добавить ваш пользовательсктй HTML код (плюс JavaScript, CSS, и т.д.) на ваш веб-сайт, выполните следующие действия:"
|
100 |
-
|
101 |
-
#: inc/php/page.php:69
|
102 |
-
msgid "Go to the \"Main\" tab on this page."
|
103 |
-
msgstr "Перейдите на вкладку «Главная»."
|
104 |
-
|
105 |
-
#: inc/php/page.php:71
|
106 |
-
msgid "Place your custom HTML code in the code editor field."
|
107 |
-
msgstr "Поместите ваш HTML код в поле."
|
108 |
|
109 |
-
#: inc/php/
|
110 |
-
msgid "
|
111 |
-
msgstr "
|
112 |
|
113 |
-
#: inc/php/
|
114 |
-
msgid "
|
115 |
-
msgstr ""
|
116 |
|
117 |
-
#: inc/php/
|
118 |
-
msgid "
|
119 |
-
msgstr "
|
120 |
|
121 |
-
#: inc/php/
|
122 |
-
msgid "
|
123 |
-
msgstr "
|
124 |
|
125 |
-
#: inc/php/
|
126 |
-
msgid "
|
127 |
-
msgstr "
|
128 |
|
129 |
-
#: inc/php/
|
130 |
-
|
131 |
-
|
|
|
132 |
|
133 |
-
#: inc/php/
|
134 |
-
|
135 |
-
|
136 |
-
msgstr "Если вы хотите больше вариантов, то %s сообщите нам %s и мы будем рады добавить их."
|
137 |
|
138 |
-
#: inc/php/
|
139 |
msgid "Frequently Asked Questions"
|
140 |
msgstr "Часто задаваемые вопросы"
|
141 |
|
142 |
-
#: inc/php/
|
143 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
144 |
msgstr "Если у вас есть вопрос, пожалуйста, прочтите часто задаваемые вопросы."
|
145 |
|
146 |
-
#: inc/php/
|
147 |
msgid "Where can I find a documentation for this plugin?"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: inc/php/
|
151 |
#, php-format
|
152 |
msgid "Please visit our %s Documentation site %s to view documentation."
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: inc/php/
|
156 |
msgid "Will this plugin work on my wordpress.COM website?"
|
157 |
msgstr "Будет ли этот плагин работать на моем веб-сайте wordpress.COM?"
|
158 |
|
159 |
-
#: inc/php/
|
160 |
msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
|
161 |
msgstr "К сожалению, этот плагин доступен для использования только на самостоятельно размещённых веб-сайтах (wordpress.ORG)."
|
162 |
|
163 |
-
#: inc/php/
|
164 |
msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: inc/php/
|
168 |
msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: inc/php/
|
172 |
#, php-format
|
173 |
msgid "You can learn more about the difference here: %s ."
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: inc/php/
|
177 |
msgid "Will this plugin work/compatible with the theme I use?"
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: inc/php/
|
181 |
msgid "This plugin is compatible with most themes."
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: inc/php/
|
185 |
msgid "But, unfortunately, we cannot check it with all third-party themes (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party theme."
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: inc/php/
|
189 |
msgid "We constantly check this plugin for compatibility with third-party themes."
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: inc/php/
|
193 |
msgid "If we find that this plugin is incompatible with a third-party theme, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: inc/php/
|
197 |
msgid "If you find a conflict between our plugin and a third-party theme, please let us know and we will definitely release an update of our plugin to fix the problem."
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: inc/php/
|
201 |
msgid "Will this plugin work/compatible with other plugins that I use?"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: inc/php/
|
205 |
msgid "This plugin is compatible with most plugins."
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: inc/php/
|
209 |
msgid "But, unfortunately, we cannot check it with all third-party plugins (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party plugin."
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: inc/php/
|
213 |
msgid "We constantly check this plugin for compatibility with third-party plugins."
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: inc/php/
|
217 |
msgid "If we find that this plugin is incompatible with a third-party plugin, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: inc/php/
|
221 |
msgid "If you find a conflict between our plugin and a third-party plugin, please let us know and we will definitely release an update of our plugin to fix the problem."
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: inc/php/
|
225 |
msgid "Can I use this plugin on my language?"
|
226 |
msgstr "Можно ли использовать этот плагин на моём языке?"
|
227 |
|
228 |
-
#: inc/php/
|
229 |
msgid "Yes."
|
230 |
msgstr "Да."
|
231 |
|
232 |
-
#: inc/php/
|
233 |
msgid "This plugin is ready for translation and has already been translated into several languages."
|
234 |
msgstr "Этот плагин готов к переводу и уже переведен на несколько языков."
|
235 |
|
236 |
-
#: inc/php/
|
237 |
msgid "But If your language is not available then you can make one."
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: inc/php/
|
241 |
msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: inc/php/
|
245 |
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
246 |
msgstr "Многие пользователи плагинов будут рады, если вы поделитесь своим переводом с сообществом."
|
247 |
|
248 |
-
#: inc/php/
|
249 |
msgid "Thanks for your contribution!"
|
250 |
msgstr "Спасибо за ваш вклад!"
|
251 |
|
252 |
-
#: inc/php/
|
253 |
#, php-format
|
254 |
msgid "If you want to help translate this plugin, please visit the %s."
|
255 |
msgstr "Если вы хотите помочь перевести этот плагин, пожалуйста, посетите %s."
|
256 |
|
257 |
-
#: inc/php/
|
258 |
msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
|
259 |
msgstr "Вы также можете использовать файл POT, который включён в плагин и помещён в папку «languages», чтобы создать PO файл перевода."
|
260 |
|
261 |
-
#: inc/php/
|
262 |
#, php-format
|
263 |
msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
|
264 |
msgstr "Просто отправьте нам файл PO на %s и мы включим этот перевод в следующее обновление плагина."
|
265 |
|
266 |
-
#: inc/php/
|
267 |
msgid "How does it work?"
|
268 |
msgstr "Как это работает?"
|
269 |
|
270 |
-
#: inc/php/
|
271 |
msgid "On the \"Main\" tab, place your custom HTML code in the code editor field and click the \"Save changes\" button."
|
272 |
msgstr "На вкладке «Настройки» поместите ваш HTML код в поле и нажмите кнопку «Сохранить изменения»."
|
273 |
|
274 |
-
#: inc/php/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
275 |
msgid "How much of HTML code (characters) I can enter in the code editor?"
|
276 |
msgstr "Сколько HTML кода (символов) можно ввести в текстовом поле?"
|
277 |
|
278 |
-
#: inc/php/
|
279 |
msgid "We don't limit the number of characters."
|
280 |
msgstr "Мы не ограничиваем количество символов."
|
281 |
|
282 |
-
#: inc/php/
|
283 |
msgid "Does this plugin requires any modification of the theme?"
|
284 |
msgstr "Этот плагин требует изменения темы?"
|
285 |
|
286 |
-
#: inc/php/
|
287 |
msgid "Absolutely not."
|
288 |
msgstr "Абсолютно нет."
|
289 |
|
290 |
-
#: inc/php/
|
291 |
msgid "This plugin is configurable entirely from the plugin settings page."
|
292 |
msgstr "Этот плагин настраивается полностью на странице настроек плагина."
|
293 |
|
294 |
-
#: inc/php/
|
295 |
msgid "Does this require any knowledge of HTML or CSS?"
|
296 |
msgstr "Требуются ли какие-либо знания HTML или CSS?"
|
297 |
|
298 |
-
#: inc/php/
|
299 |
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
300 |
msgstr "Этот плагин можно настроить без знания HTML или CSS, с помощью простой в использовании страницы настройки плагина."
|
301 |
|
302 |
-
#: inc/php/
|
303 |
msgid "But you need to know the HTML or CSS in order to add/remove/modify the HTML or CSS code by using this plugin."
|
304 |
msgstr "Но вам нужно знать HTML или CSS для того, чтобы добавить/удалить/изменить код HTML или CSS, используя этот плагин."
|
305 |
|
306 |
-
#: inc/php/
|
307 |
msgid "Can I add my custom HTML code to a specific page of my website?"
|
308 |
msgstr "Могу ли я добавить мой пользовательский HTML код на определенную страницу моего веб-сайта?"
|
309 |
|
310 |
-
#: inc/php/
|
311 |
msgid "For now, this plugin does not have an option to apply the custom HTML code only on specific pages."
|
312 |
msgstr "Пока этот плагин не имеет возможности применять пользовательский HTML код только на определенных страницах."
|
313 |
|
314 |
-
#: inc/php/
|
315 |
msgid "We plan to add this feature soon."
|
316 |
msgstr "Мы планируем добавить эту функцию в ближайшее время."
|
317 |
|
318 |
-
#: inc/php/
|
319 |
msgid "But for now in order to apply your custom HTML code only on specific pages of your website, you need to wrap your custom HTML code in a PHP code that will determine the page you want."
|
320 |
msgstr "Но сейчас, чтобы применить ваш пользовательский HTML код только на определенных страницах вашего веб-сайта, вам нужно обернуть ваш пользовательский HTML код в код PHP, который определит нужную страницу."
|
321 |
|
322 |
-
#: inc/php/
|
323 |
msgid "You need something like this:"
|
324 |
msgstr "Вам нужно что-то вроде этого:"
|
325 |
|
326 |
-
#: inc/php/
|
327 |
#, php-format
|
328 |
msgid "To apply the PHP code on a website, we can recommend you to use another our plugin called %s."
|
329 |
msgstr "Чтобы применить PHP код на веб-сайте, мы можем порекомендовать вам использовать другой наш плагин, называемый %s."
|
330 |
|
331 |
-
#: inc/php/
|
332 |
msgid "It's not working."
|
333 |
msgstr "Оно не работает."
|
334 |
|
335 |
-
#: inc/php/
|
336 |
msgid "What could be wrong?"
|
337 |
msgstr "Что может быть не так?"
|
338 |
|
339 |
-
#: inc/php/
|
340 |
msgid "As with every plugin, it's possible that things don't work."
|
341 |
msgstr "Как и в случае с любым другим плагином, что-то может не работать."
|
342 |
|
343 |
-
#: inc/php/
|
344 |
msgid "It's impossible to tell what could be wrong exactly."
|
345 |
msgstr "Невозможно точно сказать, что может быть не так."
|
346 |
|
347 |
-
#: inc/php/
|
348 |
msgid "The most common reason for this is a web browser's cache."
|
349 |
msgstr "Наиболее распространённой причиной этого является кеш веб-браузера."
|
350 |
|
351 |
-
#: inc/php/
|
352 |
msgid "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load."
|
353 |
msgstr "Каждый веб-браузер хранит кеш веб-сайтов, которые вы посещаете (страницы, изображения и т. д.) для того, чтобы уменьшить использование интернет канала и нагрузку на сервер."
|
354 |
|
355 |
-
#: inc/php/
|
356 |
msgid "This is called the browser's cache."
|
357 |
msgstr "Это называется кешем браузера."
|
358 |
|
359 |
-
#: inc/php/
|
360 |
msgid "Clearing your browser's cache may solve the problem."
|
361 |
msgstr "Очистка кеша браузера может решить проблему."
|
362 |
|
363 |
-
#: inc/php/
|
364 |
msgid "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."
|
365 |
msgstr "Если вы разместите запрос поддержки на форуме поддержки плагина на WordPress.org, то мы с радостью посмотрим и попытаемся помочь."
|
366 |
|
367 |
-
#: inc/php/
|
368 |
msgid "Please include as much information as possible, including a link to your website where the problem can be seen."
|
369 |
msgstr "Пожалуйста, укажите как можно больше информации, включая ссылку на ваш веб-сайт, на котором можно увидеть проблему."
|
370 |
|
371 |
-
#: inc/php/
|
372 |
msgid "My custom HTML code is not working."
|
373 |
msgstr "Мой пользовательский HTML код не работает."
|
374 |
|
375 |
-
#: inc/php/
|
376 |
msgid "It happens that your custom HTML code that you insert on the plugin page does not work, even if an error message does not appear."
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: inc/php/
|
380 |
msgid "Here are a few of the most likely causes of the issue:"
|
381 |
msgstr "Вот некоторые из наиболее вероятных причин проблемы:"
|
382 |
|
383 |
-
#: inc/php/
|
384 |
msgid "You have a typo during the insertion of your custom HTML code."
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: inc/php/
|
388 |
msgid "Your custom HTML code has a syntax error."
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: inc/php/
|
392 |
msgid "Your custom HTML code is incorrect and may not work."
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: inc/php/
|
396 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
|
397 |
msgstr "Последнее обновление WordPress не позволяет мне редактировать мой веб-сайт, на котором используется этот плагин."
|
398 |
|
399 |
-
#: inc/php/
|
400 |
msgid "Why is this?"
|
401 |
msgstr "Почему так?"
|
402 |
|
403 |
-
#: inc/php/
|
404 |
msgid "This plugin can not cause such problem."
|
405 |
msgstr "Этот плагин не может вызвать такую проблему."
|
406 |
|
407 |
-
#: inc/php/
|
408 |
msgid "More likely, the problem are related to the settings of the website."
|
409 |
msgstr "Скорее всего, проблема связана с настройками веб-сайта."
|
410 |
|
411 |
-
#: inc/php/
|
412 |
msgid "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."
|
413 |
msgstr "Это может быть кеш, поэтому попробуйте очистить кеш вашего веб-сайта (возможно, вы используете плагин для кеширования или какой-либо веб-сервис, такой как CloudFlare), а затем кеш вашего веб-браузера."
|
414 |
|
415 |
-
#: inc/php/
|
416 |
msgid "Also please try to re-login to the website, this too can help."
|
417 |
msgstr "Также, пожалуйста, попробуйте повторно войти на веб-сайт, это тоже может помочь."
|
418 |
|
419 |
-
#: inc/php/
|
420 |
msgid "Where to report bug if found?"
|
421 |
msgstr "Где можно сообщить об ошибке?"
|
422 |
|
423 |
-
#: inc/php/
|
424 |
msgid "Bug reports are very welcome!"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: inc/php/
|
428 |
#, php-format
|
429 |
msgid "Please visit our %s contact page %s and report."
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: inc/php/
|
433 |
msgid "Please do not forget to specify the name of the plugin."
|
434 |
msgstr "Пожалуйста не забудьте указать название плагина."
|
435 |
|
436 |
-
#: inc/php/
|
437 |
msgid "Thank you!"
|
438 |
msgstr "Спасибо!"
|
439 |
|
440 |
-
#: inc/php/
|
441 |
msgid "Describe in more detail what exactly you are seeing."
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: inc/php/
|
445 |
msgid "Here are some examples:"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: inc/php/
|
449 |
msgid "Elements of the plugin settings page are not working."
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: inc/php/
|
453 |
msgid "An error message is displayed on the plugin settings page."
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: inc/php/
|
457 |
msgid "An error message is displayed on the front end of website."
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: inc/php/
|
461 |
msgid "An error message is displayed on the back end of website."
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: inc/php/
|
465 |
msgid "Custom code is inserted on the plugin settings page, but it is not applied on the website."
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: inc/php/
|
469 |
msgid "Website is crashed."
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: inc/php/
|
473 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
474 |
msgstr "Где можно поделиться идеями или предложениями, чтобы сделать плагин лучше?"
|
475 |
|
476 |
-
#: inc/php/
|
477 |
msgid "Any suggestions are very welcome!"
|
478 |
msgstr "Любые предложения приветствуются!"
|
479 |
|
480 |
-
#: inc/php/
|
481 |
#, php-format
|
482 |
msgid "Please visit our %s contact page %s."
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: inc/php/
|
486 |
msgid "I love this plugin!"
|
487 |
msgstr "Мне нравится этот плагин!"
|
488 |
|
489 |
-
#: inc/php/
|
490 |
msgid "Can I help somehow?"
|
491 |
msgstr "Могу Я чем-то помочь?"
|
492 |
|
493 |
-
#: inc/php/
|
494 |
msgid "Yes, any contributions are very welcome!"
|
495 |
msgstr "Да, любой вклад приветствуется!"
|
496 |
|
497 |
-
#: inc/php/
|
498 |
#, php-format
|
499 |
msgid "Please visit our %s Support Us %s page."
|
500 |
msgstr "Пожалуйста, посетите нашу страницу %s Поддержите нас %s ."
|
501 |
|
502 |
-
#: inc/php/
|
503 |
msgid "Where can I find information about your licenses, payment process and refunds?"
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: inc/php/
|
507 |
#, php-format
|
508 |
msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: inc/php/
|
512 |
msgid "Where can I find information about your customer support?"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: inc/php/
|
516 |
#, php-format
|
517 |
msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
|
518 |
msgstr ""
|
519 |
|
520 |
-
#: inc/php/
|
521 |
msgid "Where can I find information about your affiliate program?"
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: inc/php/
|
525 |
#, php-format
|
526 |
msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: inc/php/
|
530 |
msgid "My question wasn't answered here."
|
531 |
msgstr "На мой вопрос здесь не было ответа."
|
532 |
|
533 |
-
#: inc/php/
|
534 |
#, php-format
|
535 |
msgid "You can ask your question on %s this page %s."
|
536 |
msgstr "Вы можете задать ваш вопрос на %s этой странице %s."
|
537 |
|
538 |
-
#: inc/php/
|
539 |
msgid "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."
|
540 |
msgstr "Но имейте в виду, что этот плагин является бесплатным и без специальной поддержки, поэтому у нас нет возможности ответить на все вопросы."
|
541 |
|
542 |
-
#: inc/php/
|
543 |
-
msgid "Support Us"
|
544 |
-
msgstr "Поддержать нас"
|
545 |
-
|
546 |
-
#: inc/php/page.php:438 inc/php/settings.php:94 inc/php/sidebar.php:54
|
547 |
-
msgid "Donate with PayPal"
|
548 |
-
msgstr "Пожертвовать через PayPal"
|
549 |
-
|
550 |
-
#: inc/php/page.php:445
|
551 |
-
#, php-format
|
552 |
-
msgid "My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
553 |
-
msgstr "Меня зовут %s Артур %s и Я основатель %s Space X-Chimp %s, который объединяет небольшую международную команду молодых людей."
|
554 |
-
|
555 |
-
#: inc/php/page.php:454
|
556 |
-
msgid "Our intention is to create projects that will make this world a better place."
|
557 |
-
msgstr ""
|
558 |
-
|
559 |
-
#: inc/php/page.php:455
|
560 |
-
msgid "Our motto is - «Follow your dreams and don’t give up»."
|
561 |
-
msgstr ""
|
562 |
-
|
563 |
-
#: inc/php/page.php:456
|
564 |
-
msgid "We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
565 |
-
msgstr ""
|
566 |
-
|
567 |
-
#: inc/php/page.php:459
|
568 |
-
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them."
|
569 |
-
msgstr "Мы тратим много времени и усилий, пытаясь убедиться в том, что темы, плагины и другие вещи, которые мы создаём, полезны, и окончательное доказательство этого для нас то, что вы на самом деле хотите их использовать."
|
570 |
-
|
571 |
-
#: inc/php/page.php:460
|
572 |
-
msgid "But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
573 |
-
msgstr "Но мы независимые разработчики, без регулярного дохода, так что каждый небольшой вклад помогает покрыть наши расходы и позволяет нам тратить больше времени на создание вещей, которыми могут наслаждаться удивительные люди, такие как вы."
|
574 |
-
|
575 |
-
#: inc/php/page.php:463
|
576 |
-
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
577 |
-
msgstr "Если вы цените мою работу, то вы можете купить мне кофе!"
|
578 |
-
|
579 |
-
#: inc/php/page.php:466
|
580 |
-
msgid "Thank you for your support!"
|
581 |
-
msgstr "Спасибо за вашу поддержку!"
|
582 |
-
|
583 |
-
#: inc/php/settings.php:32
|
584 |
msgid "Head Section"
|
585 |
msgstr "Верхний колонтитул (HEAD)"
|
586 |
|
587 |
-
#: inc/php/settings.php:34 inc/php/settings.php:62
|
588 |
msgid "NOT SAVED!"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: inc/php/settings.php:38
|
592 |
msgid "You can use the fields below to add your custom HTML code to the HEAD section of your website's front end."
|
593 |
msgstr "Используйте поле расположенное ниже для того, чтобы добавить ваш HTML код в верхний колонтитул вашего веб-сайта."
|
594 |
|
595 |
-
#: inc/php/settings.php:40
|
596 |
msgid "The HTML code from this field will be printed at the beginning of the HEAD section. Do not place plain text in this!"
|
597 |
msgstr "HTML код из этой области будет добавлен в начале верхнего колонтитула (HEAD). Не помещайте сюда обычный текст!"
|
598 |
|
599 |
-
#: inc/php/settings.php:44 inc/php/settings.php:51
|
600 |
-
#: inc/php/settings.php:79
|
601 |
msgid "Enter your custom HTML code here"
|
602 |
msgstr "Поместите сюда ваш пользовательский HTML код"
|
603 |
|
604 |
-
#: inc/php/settings.php:47
|
605 |
msgid "The HTML code from this field will be printed at the end of the HEAD section. Do not place plain text in this!"
|
606 |
msgstr "HTML код из этой области будет добавлен в конец верхнего колонтитула (HEAD). Не помещайте сюда обычный текст!"
|
607 |
|
608 |
-
#: inc/php/settings.php:54 inc/php/settings.php:82
|
609 |
msgid "Save changes"
|
610 |
msgstr "Сохранить изменения"
|
611 |
|
612 |
-
#: inc/php/settings.php:60
|
613 |
msgid "Footer Section"
|
614 |
msgstr "Нижний колонтитул (FOOTER)"
|
615 |
|
616 |
-
#: inc/php/settings.php:66
|
617 |
msgid "You can use the fields below to add your custom HTML code to the FOOTER section of your website's front end."
|
618 |
msgstr "Используйте поле расположенное ниже для того, чтобы добавить ваш HTML код в нижний колонтитул вашего веб-сайта."
|
619 |
|
620 |
-
#: inc/php/settings.php:68
|
621 |
msgid "The HTML code from this field will be printed at the beginning of the FOOTER section. Do not place plain text in this!"
|
622 |
msgstr "HTML код из этой области будет добавлен в начало нижнего колонтитула. Не помещайте сюда обычный текст!"
|
623 |
|
624 |
-
#: inc/php/settings.php:75
|
625 |
msgid "The HTML code from this field will be printed at the end of the FOOTER section. Do not place plain text in this!"
|
626 |
msgstr "HTML код из этой области будет добавлен в конец нижнего колонтитула. Не помещайте сюда обычный текст!"
|
627 |
|
628 |
-
#: inc/php/
|
629 |
-
msgid "
|
630 |
-
msgstr "
|
631 |
|
632 |
-
#: inc/php/
|
633 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
634 |
msgstr "Спасибо за вашу поддержку!"
|
635 |
|
636 |
-
#: inc/php/
|
637 |
-
msgid "
|
638 |
-
msgstr "
|
639 |
|
640 |
-
#: inc/php/
|
641 |
-
msgid "
|
642 |
-
msgstr "
|
643 |
|
644 |
-
#: inc/php/
|
645 |
-
msgid "
|
646 |
-
msgstr "
|
647 |
|
648 |
-
#: inc/php/
|
649 |
-
msgid "
|
650 |
-
msgstr "
|
651 |
|
652 |
-
#: inc/php/
|
653 |
-
msgid "
|
654 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
655 |
|
656 |
#. Plugin Name of the plugin/theme
|
657 |
msgid "Head and Footer Scripts Inserter"
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Head and Footer Scripts Inserter\n"
|
6 |
+
"POT-Creation-Date: 2019-03-01 06:41+0300\n"
|
7 |
+
"PO-Revision-Date: 2019-03-01 06:41+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Russian\n"
|
10 |
"Language: ru_RU\n"
|
36 |
msgid "Scripts Inserter"
|
37 |
msgstr "Scripts Inserter"
|
38 |
|
39 |
+
#: inc/php/messages.php:27 inc/php/tabs/support.php:25
|
40 |
msgid "Hello!"
|
41 |
msgstr "Привет!"
|
42 |
|
61 |
msgid "Custom code updated successfully."
|
62 |
msgstr "Пользовательский код успешно обновлён."
|
63 |
|
64 |
+
#: inc/php/page.php:34
|
65 |
#, php-format
|
66 |
msgid "by %s Space X-Chimp %s"
|
67 |
msgstr "от %s Space X-Chimp %s"
|
68 |
|
69 |
+
#: inc/php/page.php:40
|
70 |
msgid "Version"
|
71 |
msgstr "Версия"
|
72 |
|
73 |
+
#: inc/php/page.php:47
|
74 |
msgid "Main"
|
75 |
msgstr "Главная"
|
76 |
|
77 |
+
#: inc/php/page.php:48
|
78 |
msgid "Usage"
|
79 |
msgstr "Применение"
|
80 |
|
81 |
+
#: inc/php/page.php:49
|
82 |
msgid "F.A.Q."
|
83 |
msgstr "F.A.Q."
|
84 |
|
85 |
+
#: inc/php/page.php:50 inc/php/sidebar.php:47 inc/php/tabs/settings.php:87
|
86 |
msgid "Support"
|
87 |
msgstr "Поддержка"
|
88 |
|
89 |
+
#: inc/php/page.php:51
|
90 |
msgid "Store"
|
91 |
msgstr "Магазин"
|
92 |
|
93 |
+
#: inc/php/sidebar.php:16
|
94 |
+
msgid "We are «Space X-Chimp»"
|
95 |
+
msgstr "Мы «Space X-Chimp»"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
96 |
|
97 |
+
#: inc/php/sidebar.php:33
|
98 |
+
msgid "About"
|
99 |
+
msgstr "О плагине"
|
100 |
|
101 |
+
#: inc/php/sidebar.php:35
|
102 |
+
msgid "This plugin gives you the ability to easily and safely add your custom HTML code (plus JavaScript, CSS, etc.) to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
|
103 |
+
msgstr "Этот плагин даёт вам возможность легко и безопасно добавлять ваш пользовательский HTML код (плюс JavaScript, CSS, и т.д.) на ваш WordPress веб-сайт, непосредственно из области администрирования WordPress, без необходимости иметь внешний редактор."
|
104 |
|
105 |
+
#: inc/php/sidebar.php:40
|
106 |
+
msgid "Help"
|
107 |
+
msgstr "Помощь"
|
108 |
|
109 |
+
#: inc/php/sidebar.php:42
|
110 |
+
msgid "If you have a question, please read the information in the FAQ section."
|
111 |
+
msgstr "Если у вас есть вопрос, пожалуйста ознакомьтесь с информацией в разделе FAQ."
|
112 |
|
113 |
+
#: inc/php/sidebar.php:49 inc/php/tabs/settings.php:89
|
114 |
+
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
115 |
+
msgstr "Каждый небольшой вклад помогает покрыть наши расходы и позволяет нам тратить больше времени на создание вещей, которыми могут наслаждаться удивительные люди, такие как вы."
|
116 |
|
117 |
+
#: inc/php/sidebar.php:54 inc/php/tabs/settings.php:94
|
118 |
+
#: inc/php/tabs/support.php:21
|
119 |
+
msgid "Donate with PayPal"
|
120 |
+
msgstr "Пожертвовать через PayPal"
|
121 |
|
122 |
+
#: inc/php/sidebar.php:56 inc/php/tabs/settings.php:96
|
123 |
+
msgid "Thanks for your support!"
|
124 |
+
msgstr "Спасибо за вашу поддержку!"
|
|
|
125 |
|
126 |
+
#: inc/php/tabs/faq.php:13
|
127 |
msgid "Frequently Asked Questions"
|
128 |
msgstr "Часто задаваемые вопросы"
|
129 |
|
130 |
+
#: inc/php/tabs/faq.php:17
|
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/tabs/faq.php:42
|
135 |
msgid "Where can I find a documentation for this plugin?"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: inc/php/tabs/faq.php:47
|
139 |
#, php-format
|
140 |
msgid "Please visit our %s Documentation site %s to view documentation."
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: inc/php/tabs/faq.php:55
|
144 |
msgid "Will this plugin work on my wordpress.COM website?"
|
145 |
msgstr "Будет ли этот плагин работать на моем веб-сайте wordpress.COM?"
|
146 |
|
147 |
+
#: inc/php/tabs/faq.php:58
|
148 |
msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
|
149 |
msgstr "К сожалению, этот плагин доступен для использования только на самостоятельно размещённых веб-сайтах (wordpress.ORG)."
|
150 |
|
151 |
+
#: inc/php/tabs/faq.php:60
|
152 |
msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: inc/php/tabs/faq.php:61
|
156 |
msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: inc/php/tabs/faq.php:64
|
160 |
#, php-format
|
161 |
msgid "You can learn more about the difference here: %s ."
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: inc/php/tabs/faq.php:71
|
165 |
msgid "Will this plugin work/compatible with the theme I use?"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: inc/php/tabs/faq.php:74
|
169 |
msgid "This plugin is compatible with most themes."
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: inc/php/tabs/faq.php:75
|
173 |
msgid "But, unfortunately, we cannot check it with all third-party themes (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party theme."
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: inc/php/tabs/faq.php:76
|
177 |
msgid "We constantly check this plugin for compatibility with third-party themes."
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: inc/php/tabs/faq.php:77
|
181 |
msgid "If we find that this plugin is incompatible with a third-party theme, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: inc/php/tabs/faq.php:79
|
185 |
msgid "If you find a conflict between our plugin and a third-party theme, please let us know and we will definitely release an update of our plugin to fix the problem."
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: inc/php/tabs/faq.php:83
|
189 |
msgid "Will this plugin work/compatible with other plugins that I use?"
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: inc/php/tabs/faq.php:86
|
193 |
msgid "This plugin is compatible with most plugins."
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: inc/php/tabs/faq.php:87
|
197 |
msgid "But, unfortunately, we cannot check it with all third-party plugins (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party plugin."
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: inc/php/tabs/faq.php:88
|
201 |
msgid "We constantly check this plugin for compatibility with third-party plugins."
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: inc/php/tabs/faq.php:89
|
205 |
msgid "If we find that this plugin is incompatible with a third-party plugin, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: inc/php/tabs/faq.php:91
|
209 |
msgid "If you find a conflict between our plugin and a third-party plugin, please let us know and we will definitely release an update of our plugin to fix the problem."
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: inc/php/tabs/faq.php:95
|
213 |
msgid "Can I use this plugin on my language?"
|
214 |
msgstr "Можно ли использовать этот плагин на моём языке?"
|
215 |
|
216 |
+
#: inc/php/tabs/faq.php:98
|
217 |
msgid "Yes."
|
218 |
msgstr "Да."
|
219 |
|
220 |
+
#: inc/php/tabs/faq.php:99
|
221 |
msgid "This plugin is ready for translation and has already been translated into several languages."
|
222 |
msgstr "Этот плагин готов к переводу и уже переведен на несколько языков."
|
223 |
|
224 |
+
#: inc/php/tabs/faq.php:100
|
225 |
msgid "But If your language is not available then you can make one."
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: inc/php/tabs/faq.php:101
|
229 |
msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: inc/php/tabs/faq.php:102
|
233 |
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
234 |
msgstr "Многие пользователи плагинов будут рады, если вы поделитесь своим переводом с сообществом."
|
235 |
|
236 |
+
#: inc/php/tabs/faq.php:103
|
237 |
msgid "Thanks for your contribution!"
|
238 |
msgstr "Спасибо за ваш вклад!"
|
239 |
|
240 |
+
#: inc/php/tabs/faq.php:107
|
241 |
#, php-format
|
242 |
msgid "If you want to help translate this plugin, please visit the %s."
|
243 |
msgstr "Если вы хотите помочь перевести этот плагин, пожалуйста, посетите %s."
|
244 |
|
245 |
+
#: inc/php/tabs/faq.php:111
|
246 |
msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
|
247 |
msgstr "Вы также можете использовать файл POT, который включён в плагин и помещён в папку «languages», чтобы создать PO файл перевода."
|
248 |
|
249 |
+
#: inc/php/tabs/faq.php:114
|
250 |
#, php-format
|
251 |
msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
|
252 |
msgstr "Просто отправьте нам файл PO на %s и мы включим этот перевод в следующее обновление плагина."
|
253 |
|
254 |
+
#: inc/php/tabs/faq.php:121
|
255 |
msgid "How does it work?"
|
256 |
msgstr "Как это работает?"
|
257 |
|
258 |
+
#: inc/php/tabs/faq.php:124
|
259 |
msgid "On the \"Main\" tab, place your custom HTML code in the code editor field and click the \"Save changes\" button."
|
260 |
msgstr "На вкладке «Настройки» поместите ваш HTML код в поле и нажмите кнопку «Сохранить изменения»."
|
261 |
|
262 |
+
#: inc/php/tabs/faq.php:125 inc/php/tabs/usage.php:28
|
263 |
+
msgid "Enjoy the result of applying your custom HTML code."
|
264 |
+
msgstr "Наслаждайтесь результатом применения вашего HTML кода."
|
265 |
+
|
266 |
+
#: inc/php/tabs/faq.php:126 inc/php/tabs/usage.php:28
|
267 |
+
msgid "It's that simple!"
|
268 |
+
msgstr "Это так просто!"
|
269 |
+
|
270 |
+
#: inc/php/tabs/faq.php:130
|
271 |
msgid "How much of HTML code (characters) I can enter in the code editor?"
|
272 |
msgstr "Сколько HTML кода (символов) можно ввести в текстовом поле?"
|
273 |
|
274 |
+
#: inc/php/tabs/faq.php:133
|
275 |
msgid "We don't limit the number of characters."
|
276 |
msgstr "Мы не ограничиваем количество символов."
|
277 |
|
278 |
+
#: inc/php/tabs/faq.php:137
|
279 |
msgid "Does this plugin requires any modification of the theme?"
|
280 |
msgstr "Этот плагин требует изменения темы?"
|
281 |
|
282 |
+
#: inc/php/tabs/faq.php:140
|
283 |
msgid "Absolutely not."
|
284 |
msgstr "Абсолютно нет."
|
285 |
|
286 |
+
#: inc/php/tabs/faq.php:141
|
287 |
msgid "This plugin is configurable entirely from the plugin settings page."
|
288 |
msgstr "Этот плагин настраивается полностью на странице настроек плагина."
|
289 |
|
290 |
+
#: inc/php/tabs/faq.php:145
|
291 |
msgid "Does this require any knowledge of HTML or CSS?"
|
292 |
msgstr "Требуются ли какие-либо знания HTML или CSS?"
|
293 |
|
294 |
+
#: inc/php/tabs/faq.php:148
|
295 |
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
296 |
msgstr "Этот плагин можно настроить без знания HTML или CSS, с помощью простой в использовании страницы настройки плагина."
|
297 |
|
298 |
+
#: inc/php/tabs/faq.php:149
|
299 |
msgid "But you need to know the HTML or CSS in order to add/remove/modify the HTML or CSS code by using this plugin."
|
300 |
msgstr "Но вам нужно знать HTML или CSS для того, чтобы добавить/удалить/изменить код HTML или CSS, используя этот плагин."
|
301 |
|
302 |
+
#: inc/php/tabs/faq.php:153
|
303 |
msgid "Can I add my custom HTML code to a specific page of my website?"
|
304 |
msgstr "Могу ли я добавить мой пользовательский HTML код на определенную страницу моего веб-сайта?"
|
305 |
|
306 |
+
#: inc/php/tabs/faq.php:156
|
307 |
msgid "For now, this plugin does not have an option to apply the custom HTML code only on specific pages."
|
308 |
msgstr "Пока этот плагин не имеет возможности применять пользовательский HTML код только на определенных страницах."
|
309 |
|
310 |
+
#: inc/php/tabs/faq.php:157
|
311 |
msgid "We plan to add this feature soon."
|
312 |
msgstr "Мы планируем добавить эту функцию в ближайшее время."
|
313 |
|
314 |
+
#: inc/php/tabs/faq.php:158
|
315 |
msgid "But for now in order to apply your custom HTML code only on specific pages of your website, you need to wrap your custom HTML code in a PHP code that will determine the page you want."
|
316 |
msgstr "Но сейчас, чтобы применить ваш пользовательский HTML код только на определенных страницах вашего веб-сайта, вам нужно обернуть ваш пользовательский HTML код в код PHP, который определит нужную страницу."
|
317 |
|
318 |
+
#: inc/php/tabs/faq.php:159
|
319 |
msgid "You need something like this:"
|
320 |
msgstr "Вам нужно что-то вроде этого:"
|
321 |
|
322 |
+
#: inc/php/tabs/faq.php:175
|
323 |
#, php-format
|
324 |
msgid "To apply the PHP code on a website, we can recommend you to use another our plugin called %s."
|
325 |
msgstr "Чтобы применить PHP код на веб-сайте, мы можем порекомендовать вам использовать другой наш плагин, называемый %s."
|
326 |
|
327 |
+
#: inc/php/tabs/faq.php:182
|
328 |
msgid "It's not working."
|
329 |
msgstr "Оно не работает."
|
330 |
|
331 |
+
#: inc/php/tabs/faq.php:183 inc/php/tabs/faq.php:199
|
332 |
msgid "What could be wrong?"
|
333 |
msgstr "Что может быть не так?"
|
334 |
|
335 |
+
#: inc/php/tabs/faq.php:186
|
336 |
msgid "As with every plugin, it's possible that things don't work."
|
337 |
msgstr "Как и в случае с любым другим плагином, что-то может не работать."
|
338 |
|
339 |
+
#: inc/php/tabs/faq.php:187
|
340 |
msgid "It's impossible to tell what could be wrong exactly."
|
341 |
msgstr "Невозможно точно сказать, что может быть не так."
|
342 |
|
343 |
+
#: inc/php/tabs/faq.php:188
|
344 |
msgid "The most common reason for this is a web browser's cache."
|
345 |
msgstr "Наиболее распространённой причиной этого является кеш веб-браузера."
|
346 |
|
347 |
+
#: inc/php/tabs/faq.php:189
|
348 |
msgid "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load."
|
349 |
msgstr "Каждый веб-браузер хранит кеш веб-сайтов, которые вы посещаете (страницы, изображения и т. д.) для того, чтобы уменьшить использование интернет канала и нагрузку на сервер."
|
350 |
|
351 |
+
#: inc/php/tabs/faq.php:190
|
352 |
msgid "This is called the browser's cache."
|
353 |
msgstr "Это называется кешем браузера."
|
354 |
|
355 |
+
#: inc/php/tabs/faq.php:191
|
356 |
msgid "Clearing your browser's cache may solve the problem."
|
357 |
msgstr "Очистка кеша браузера может решить проблему."
|
358 |
|
359 |
+
#: inc/php/tabs/faq.php:193
|
360 |
msgid "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."
|
361 |
msgstr "Если вы разместите запрос поддержки на форуме поддержки плагина на WordPress.org, то мы с радостью посмотрим и попытаемся помочь."
|
362 |
|
363 |
+
#: inc/php/tabs/faq.php:194 inc/php/tabs/faq.php:237
|
364 |
msgid "Please include as much information as possible, including a link to your website where the problem can be seen."
|
365 |
msgstr "Пожалуйста, укажите как можно больше информации, включая ссылку на ваш веб-сайт, на котором можно увидеть проблему."
|
366 |
|
367 |
+
#: inc/php/tabs/faq.php:198
|
368 |
msgid "My custom HTML code is not working."
|
369 |
msgstr "Мой пользовательский HTML код не работает."
|
370 |
|
371 |
+
#: inc/php/tabs/faq.php:202
|
372 |
msgid "It happens that your custom HTML code that you insert on the plugin page does not work, even if an error message does not appear."
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: inc/php/tabs/faq.php:203
|
376 |
msgid "Here are a few of the most likely causes of the issue:"
|
377 |
msgstr "Вот некоторые из наиболее вероятных причин проблемы:"
|
378 |
|
379 |
+
#: inc/php/tabs/faq.php:205
|
380 |
msgid "You have a typo during the insertion of your custom HTML code."
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: inc/php/tabs/faq.php:206
|
384 |
msgid "Your custom HTML code has a syntax error."
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: inc/php/tabs/faq.php:207
|
388 |
msgid "Your custom HTML code is incorrect and may not work."
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: inc/php/tabs/faq.php:212
|
392 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
|
393 |
msgstr "Последнее обновление WordPress не позволяет мне редактировать мой веб-сайт, на котором используется этот плагин."
|
394 |
|
395 |
+
#: inc/php/tabs/faq.php:213
|
396 |
msgid "Why is this?"
|
397 |
msgstr "Почему так?"
|
398 |
|
399 |
+
#: inc/php/tabs/faq.php:216
|
400 |
msgid "This plugin can not cause such problem."
|
401 |
msgstr "Этот плагин не может вызвать такую проблему."
|
402 |
|
403 |
+
#: inc/php/tabs/faq.php:217
|
404 |
msgid "More likely, the problem are related to the settings of the website."
|
405 |
msgstr "Скорее всего, проблема связана с настройками веб-сайта."
|
406 |
|
407 |
+
#: inc/php/tabs/faq.php:218
|
408 |
msgid "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."
|
409 |
msgstr "Это может быть кеш, поэтому попробуйте очистить кеш вашего веб-сайта (возможно, вы используете плагин для кеширования или какой-либо веб-сервис, такой как CloudFlare), а затем кеш вашего веб-браузера."
|
410 |
|
411 |
+
#: inc/php/tabs/faq.php:219
|
412 |
msgid "Also please try to re-login to the website, this too can help."
|
413 |
msgstr "Также, пожалуйста, попробуйте повторно войти на веб-сайт, это тоже может помочь."
|
414 |
|
415 |
+
#: inc/php/tabs/faq.php:223
|
416 |
msgid "Where to report bug if found?"
|
417 |
msgstr "Где можно сообщить об ошибке?"
|
418 |
|
419 |
+
#: inc/php/tabs/faq.php:226
|
420 |
msgid "Bug reports are very welcome!"
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: inc/php/tabs/faq.php:229
|
424 |
#, php-format
|
425 |
msgid "Please visit our %s contact page %s and report."
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: inc/php/tabs/faq.php:234 inc/php/tabs/faq.php:263
|
429 |
msgid "Please do not forget to specify the name of the plugin."
|
430 |
msgstr "Пожалуйста не забудьте указать название плагина."
|
431 |
|
432 |
+
#: inc/php/tabs/faq.php:235 inc/php/tabs/faq.php:264 inc/php/tabs/faq.php:280
|
433 |
msgid "Thank you!"
|
434 |
msgstr "Спасибо!"
|
435 |
|
436 |
+
#: inc/php/tabs/faq.php:238
|
437 |
msgid "Describe in more detail what exactly you are seeing."
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: inc/php/tabs/faq.php:239
|
441 |
msgid "Here are some examples:"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: inc/php/tabs/faq.php:242
|
445 |
msgid "Elements of the plugin settings page are not working."
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: inc/php/tabs/faq.php:243
|
449 |
msgid "An error message is displayed on the plugin settings page."
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: inc/php/tabs/faq.php:244
|
453 |
msgid "An error message is displayed on the front end of website."
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: inc/php/tabs/faq.php:245
|
457 |
msgid "An error message is displayed on the back end of website."
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: inc/php/tabs/faq.php:246
|
461 |
msgid "Custom code is inserted on the plugin settings page, but it is not applied on the website."
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: inc/php/tabs/faq.php:247
|
465 |
msgid "Website is crashed."
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: inc/php/tabs/faq.php:252
|
469 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
470 |
msgstr "Где можно поделиться идеями или предложениями, чтобы сделать плагин лучше?"
|
471 |
|
472 |
+
#: inc/php/tabs/faq.php:255
|
473 |
msgid "Any suggestions are very welcome!"
|
474 |
msgstr "Любые предложения приветствуются!"
|
475 |
|
476 |
+
#: inc/php/tabs/faq.php:258
|
477 |
#, php-format
|
478 |
msgid "Please visit our %s contact page %s."
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: inc/php/tabs/faq.php:268
|
482 |
msgid "I love this plugin!"
|
483 |
msgstr "Мне нравится этот плагин!"
|
484 |
|
485 |
+
#: inc/php/tabs/faq.php:269
|
486 |
msgid "Can I help somehow?"
|
487 |
msgstr "Могу Я чем-то помочь?"
|
488 |
|
489 |
+
#: inc/php/tabs/faq.php:272
|
490 |
msgid "Yes, any contributions are very welcome!"
|
491 |
msgstr "Да, любой вклад приветствуется!"
|
492 |
|
493 |
+
#: inc/php/tabs/faq.php:275
|
494 |
#, php-format
|
495 |
msgid "Please visit our %s Support Us %s page."
|
496 |
msgstr "Пожалуйста, посетите нашу страницу %s Поддержите нас %s ."
|
497 |
|
498 |
+
#: inc/php/tabs/faq.php:284
|
499 |
msgid "Where can I find information about your licenses, payment process and refunds?"
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: inc/php/tabs/faq.php:289
|
503 |
#, php-format
|
504 |
msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: inc/php/tabs/faq.php:297
|
508 |
msgid "Where can I find information about your customer support?"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: inc/php/tabs/faq.php:302
|
512 |
#, php-format
|
513 |
msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: inc/php/tabs/faq.php:310
|
517 |
msgid "Where can I find information about your affiliate program?"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: inc/php/tabs/faq.php:315
|
521 |
#, php-format
|
522 |
msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: inc/php/tabs/faq.php:323
|
526 |
msgid "My question wasn't answered here."
|
527 |
msgstr "На мой вопрос здесь не было ответа."
|
528 |
|
529 |
+
#: inc/php/tabs/faq.php:328
|
530 |
#, php-format
|
531 |
msgid "You can ask your question on %s this page %s."
|
532 |
msgstr "Вы можете задать ваш вопрос на %s этой странице %s."
|
533 |
|
534 |
+
#: inc/php/tabs/faq.php:333
|
535 |
msgid "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."
|
536 |
msgstr "Но имейте в виду, что этот плагин является бесплатным и без специальной поддержки, поэтому у нас нет возможности ответить на все вопросы."
|
537 |
|
538 |
+
#: inc/php/tabs/settings.php:32
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
539 |
msgid "Head Section"
|
540 |
msgstr "Верхний колонтитул (HEAD)"
|
541 |
|
542 |
+
#: inc/php/tabs/settings.php:34 inc/php/tabs/settings.php:62
|
543 |
msgid "NOT SAVED!"
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: inc/php/tabs/settings.php:38
|
547 |
msgid "You can use the fields below to add your custom HTML code to the HEAD section of your website's front end."
|
548 |
msgstr "Используйте поле расположенное ниже для того, чтобы добавить ваш HTML код в верхний колонтитул вашего веб-сайта."
|
549 |
|
550 |
+
#: inc/php/tabs/settings.php:40
|
551 |
msgid "The HTML code from this field will be printed at the beginning of the HEAD section. Do not place plain text in this!"
|
552 |
msgstr "HTML код из этой области будет добавлен в начале верхнего колонтитула (HEAD). Не помещайте сюда обычный текст!"
|
553 |
|
554 |
+
#: inc/php/tabs/settings.php:44 inc/php/tabs/settings.php:51
|
555 |
+
#: inc/php/tabs/settings.php:72 inc/php/tabs/settings.php:79
|
556 |
msgid "Enter your custom HTML code here"
|
557 |
msgstr "Поместите сюда ваш пользовательский HTML код"
|
558 |
|
559 |
+
#: inc/php/tabs/settings.php:47
|
560 |
msgid "The HTML code from this field will be printed at the end of the HEAD section. Do not place plain text in this!"
|
561 |
msgstr "HTML код из этой области будет добавлен в конец верхнего колонтитула (HEAD). Не помещайте сюда обычный текст!"
|
562 |
|
563 |
+
#: inc/php/tabs/settings.php:54 inc/php/tabs/settings.php:82
|
564 |
msgid "Save changes"
|
565 |
msgstr "Сохранить изменения"
|
566 |
|
567 |
+
#: inc/php/tabs/settings.php:60
|
568 |
msgid "Footer Section"
|
569 |
msgstr "Нижний колонтитул (FOOTER)"
|
570 |
|
571 |
+
#: inc/php/tabs/settings.php:66
|
572 |
msgid "You can use the fields below to add your custom HTML code to the FOOTER section of your website's front end."
|
573 |
msgstr "Используйте поле расположенное ниже для того, чтобы добавить ваш HTML код в нижний колонтитул вашего веб-сайта."
|
574 |
|
575 |
+
#: inc/php/tabs/settings.php:68
|
576 |
msgid "The HTML code from this field will be printed at the beginning of the FOOTER section. Do not place plain text in this!"
|
577 |
msgstr "HTML код из этой области будет добавлен в начало нижнего колонтитула. Не помещайте сюда обычный текст!"
|
578 |
|
579 |
+
#: inc/php/tabs/settings.php:75
|
580 |
msgid "The HTML code from this field will be printed at the end of the FOOTER section. Do not place plain text in this!"
|
581 |
msgstr "HTML код из этой области будет добавлен в конец нижнего колонтитула. Не помещайте сюда обычный текст!"
|
582 |
|
583 |
+
#: inc/php/tabs/support.php:13
|
584 |
+
msgid "Support Us"
|
585 |
+
msgstr "Поддержать нас"
|
586 |
|
587 |
+
#: inc/php/tabs/support.php:28
|
588 |
+
#, php-format
|
589 |
+
msgid "My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
590 |
+
msgstr "Меня зовут %s Артур %s и Я основатель %s Space X-Chimp %s, который объединяет небольшую международную команду молодых людей."
|
591 |
+
|
592 |
+
#: inc/php/tabs/support.php:37
|
593 |
+
msgid "Our intention is to create projects that will make this world a better place."
|
594 |
+
msgstr ""
|
595 |
+
|
596 |
+
#: inc/php/tabs/support.php:38
|
597 |
+
msgid "Our motto is - «Follow your dreams and don’t give up»."
|
598 |
+
msgstr ""
|
599 |
+
|
600 |
+
#: inc/php/tabs/support.php:39
|
601 |
+
msgid "We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
602 |
+
msgstr ""
|
603 |
+
|
604 |
+
#: inc/php/tabs/support.php:42
|
605 |
+
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them."
|
606 |
+
msgstr "Мы тратим много времени и усилий, пытаясь убедиться в том, что темы, плагины и другие вещи, которые мы создаём, полезны, и окончательное доказательство этого для нас то, что вы на самом деле хотите их использовать."
|
607 |
+
|
608 |
+
#: inc/php/tabs/support.php:43
|
609 |
+
msgid "But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
610 |
+
msgstr "Но мы независимые разработчики, без регулярного дохода, так что каждый небольшой вклад помогает покрыть наши расходы и позволяет нам тратить больше времени на создание вещей, которыми могут наслаждаться удивительные люди, такие как вы."
|
611 |
+
|
612 |
+
#: inc/php/tabs/support.php:46
|
613 |
+
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
614 |
+
msgstr "Если вы цените мою работу, то вы можете купить мне кофе!"
|
615 |
+
|
616 |
+
#: inc/php/tabs/support.php:49
|
617 |
+
msgid "Thank you for your support!"
|
618 |
msgstr "Спасибо за вашу поддержку!"
|
619 |
|
620 |
+
#: inc/php/tabs/usage.php:13
|
621 |
+
msgid "Usage Instructions"
|
622 |
+
msgstr "Инструкция по использованию"
|
623 |
|
624 |
+
#: inc/php/tabs/usage.php:15
|
625 |
+
msgid "To add your custom HTML code (plus JavaScript, CSS, etc.) to your website, simply follow these steps:"
|
626 |
+
msgstr "Для того чтобы добавить ваш пользовательсктй HTML код (плюс JavaScript, CSS, и т.д.) на ваш веб-сайт, выполните следующие действия:"
|
627 |
|
628 |
+
#: inc/php/tabs/usage.php:17
|
629 |
+
msgid "Go to the \"Main\" tab on this page."
|
630 |
+
msgstr "Перейдите на вкладку «Главная»."
|
631 |
|
632 |
+
#: inc/php/tabs/usage.php:19
|
633 |
+
msgid "Place your custom HTML code in the code editor field."
|
634 |
+
msgstr "Поместите ваш HTML код в поле."
|
635 |
|
636 |
+
#: inc/php/tabs/usage.php:22
|
637 |
+
msgid "Note!"
|
638 |
+
msgstr "Примечание!"
|
639 |
+
|
640 |
+
#: inc/php/tabs/usage.php:23
|
641 |
+
msgid "The JavaScript and CSS code must be wrapped in HTML tags."
|
642 |
+
msgstr ""
|
643 |
+
|
644 |
+
#: inc/php/tabs/usage.php:24
|
645 |
+
msgid "For JavaScript code use the <code><script></code> tag, and for CSS code use the <code><style></code> tag."
|
646 |
+
msgstr "Для JavaScript кода используйте тег <code><script></code>, и для CSS кода используйте тэг <code><style></code>."
|
647 |
+
|
648 |
+
#: inc/php/tabs/usage.php:27
|
649 |
+
msgid "Click the \"Save changes\" button."
|
650 |
+
msgstr "Нажмите кнопку «Сохранить изменения»."
|
651 |
+
|
652 |
+
#: inc/php/tabs/usage.php:33
|
653 |
+
#, php-format
|
654 |
+
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
655 |
+
msgstr "Если вы хотите больше вариантов, то %s сообщите нам %s и мы будем рады добавить их."
|
656 |
|
657 |
#. Plugin Name of the plugin/theme
|
658 |
msgid "Head and Footer Scripts Inserter"
|
languages/header-and-footer-scripts-inserter.pot
CHANGED
@@ -3,7 +3,7 @@ msgid ""
|
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: Head and Footer Scripts Inserter\n"
|
6 |
-
"POT-Creation-Date: 2019-
|
7 |
"PO-Revision-Date: 2016-01-30 11:39+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
@@ -34,7 +34,7 @@ msgstr ""
|
|
34 |
msgid "Scripts Inserter"
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: inc/php/messages.php:27 inc/php/
|
38 |
msgid "Hello!"
|
39 |
msgstr ""
|
40 |
|
@@ -59,596 +59,597 @@ msgstr ""
|
|
59 |
msgid "Custom code updated successfully."
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: inc/php/page.php:
|
63 |
#, php-format
|
64 |
msgid "by %s Space X-Chimp %s"
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: inc/php/page.php:
|
68 |
msgid "Version"
|
69 |
msgstr ""
|
70 |
|
71 |
-
#: inc/php/page.php:
|
72 |
msgid "Main"
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: inc/php/page.php:
|
76 |
msgid "Usage"
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: inc/php/page.php:
|
80 |
msgid "F.A.Q."
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: inc/php/page.php:
|
84 |
msgid "Support"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: inc/php/page.php:
|
88 |
msgid "Store"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: inc/php/
|
92 |
-
msgid "
|
93 |
-
msgstr ""
|
94 |
-
|
95 |
-
#: inc/php/page.php:67
|
96 |
-
msgid "To add your custom HTML code (plus JavaScript, CSS, etc.) to your website, simply follow these steps:"
|
97 |
-
msgstr ""
|
98 |
-
|
99 |
-
#: inc/php/page.php:69
|
100 |
-
msgid "Go to the \"Main\" tab on this page."
|
101 |
-
msgstr ""
|
102 |
-
|
103 |
-
#: inc/php/page.php:71
|
104 |
-
msgid "Place your custom HTML code in the code editor field."
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: inc/php/
|
108 |
-
msgid "
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: inc/php/
|
112 |
-
msgid "
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: inc/php/
|
116 |
-
msgid "
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: inc/php/
|
120 |
-
msgid "
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: inc/php/
|
124 |
-
msgid "
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: inc/php/
|
128 |
-
|
|
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: inc/php/
|
132 |
-
|
133 |
-
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: inc/php/
|
137 |
msgid "Frequently Asked Questions"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: inc/php/
|
141 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: inc/php/
|
145 |
msgid "Where can I find a documentation for this plugin?"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: inc/php/
|
149 |
#, php-format
|
150 |
msgid "Please visit our %s Documentation site %s to view documentation."
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: inc/php/
|
154 |
msgid "Will this plugin work on my wordpress.COM website?"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: inc/php/
|
158 |
msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: inc/php/
|
162 |
msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: inc/php/
|
166 |
msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: inc/php/
|
170 |
#, php-format
|
171 |
msgid "You can learn more about the difference here: %s ."
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: inc/php/
|
175 |
msgid "Will this plugin work/compatible with the theme I use?"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: inc/php/
|
179 |
msgid "This plugin is compatible with most themes."
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: inc/php/
|
183 |
msgid "But, unfortunately, we cannot check it with all third-party themes (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party theme."
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: inc/php/
|
187 |
msgid "We constantly check this plugin for compatibility with third-party themes."
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: inc/php/
|
191 |
msgid "If we find that this plugin is incompatible with a third-party theme, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: inc/php/
|
195 |
msgid "If you find a conflict between our plugin and a third-party theme, please let us know and we will definitely release an update of our plugin to fix the problem."
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: inc/php/
|
199 |
msgid "Will this plugin work/compatible with other plugins that I use?"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: inc/php/
|
203 |
msgid "This plugin is compatible with most plugins."
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: inc/php/
|
207 |
msgid "But, unfortunately, we cannot check it with all third-party plugins (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party plugin."
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: inc/php/
|
211 |
msgid "We constantly check this plugin for compatibility with third-party plugins."
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: inc/php/
|
215 |
msgid "If we find that this plugin is incompatible with a third-party plugin, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: inc/php/
|
219 |
msgid "If you find a conflict between our plugin and a third-party plugin, please let us know and we will definitely release an update of our plugin to fix the problem."
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: inc/php/
|
223 |
msgid "Can I use this plugin on my language?"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: inc/php/
|
227 |
msgid "Yes."
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: inc/php/
|
231 |
msgid "This plugin is ready for translation and has already been translated into several languages."
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: inc/php/
|
235 |
msgid "But If your language is not available then you can make one."
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: inc/php/
|
239 |
msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: inc/php/
|
243 |
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: inc/php/
|
247 |
msgid "Thanks for your contribution!"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: inc/php/
|
251 |
#, php-format
|
252 |
msgid "If you want to help translate this plugin, please visit the %s."
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: inc/php/
|
256 |
msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: inc/php/
|
260 |
#, php-format
|
261 |
msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: inc/php/
|
265 |
msgid "How does it work?"
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: inc/php/
|
269 |
msgid "On the \"Main\" tab, place your custom HTML code in the code editor field and click the \"Save changes\" button."
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: inc/php/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
273 |
msgid "How much of HTML code (characters) I can enter in the code editor?"
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: inc/php/
|
277 |
msgid "We don't limit the number of characters."
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: inc/php/
|
281 |
msgid "Does this plugin requires any modification of the theme?"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: inc/php/
|
285 |
msgid "Absolutely not."
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: inc/php/
|
289 |
msgid "This plugin is configurable entirely from the plugin settings page."
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: inc/php/
|
293 |
msgid "Does this require any knowledge of HTML or CSS?"
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: inc/php/
|
297 |
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: inc/php/
|
301 |
msgid "But you need to know the HTML or CSS in order to add/remove/modify the HTML or CSS code by using this plugin."
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: inc/php/
|
305 |
msgid "Can I add my custom HTML code to a specific page of my website?"
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: inc/php/
|
309 |
msgid "For now, this plugin does not have an option to apply the custom HTML code only on specific pages."
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: inc/php/
|
313 |
msgid "We plan to add this feature soon."
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: inc/php/
|
317 |
msgid "But for now in order to apply your custom HTML code only on specific pages of your website, you need to wrap your custom HTML code in a PHP code that will determine the page you want."
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: inc/php/
|
321 |
msgid "You need something like this:"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: inc/php/
|
325 |
#, php-format
|
326 |
msgid "To apply the PHP code on a website, we can recommend you to use another our plugin called %s."
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: inc/php/
|
330 |
msgid "It's not working."
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: inc/php/
|
334 |
msgid "What could be wrong?"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: inc/php/
|
338 |
msgid "As with every plugin, it's possible that things don't work."
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: inc/php/
|
342 |
msgid "It's impossible to tell what could be wrong exactly."
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: inc/php/
|
346 |
msgid "The most common reason for this is a web browser's cache."
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: inc/php/
|
350 |
msgid "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load."
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: inc/php/
|
354 |
msgid "This is called the browser's cache."
|
355 |
msgstr ""
|
356 |
|
357 |
-
#: inc/php/
|
358 |
msgid "Clearing your browser's cache may solve the problem."
|
359 |
msgstr ""
|
360 |
|
361 |
-
#: inc/php/
|
362 |
msgid "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."
|
363 |
msgstr ""
|
364 |
|
365 |
-
#: inc/php/
|
366 |
msgid "Please include as much information as possible, including a link to your website where the problem can be seen."
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: inc/php/
|
370 |
msgid "My custom HTML code is not working."
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: inc/php/
|
374 |
msgid "It happens that your custom HTML code that you insert on the plugin page does not work, even if an error message does not appear."
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: inc/php/
|
378 |
msgid "Here are a few of the most likely causes of the issue:"
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: inc/php/
|
382 |
msgid "You have a typo during the insertion of your custom HTML code."
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: inc/php/
|
386 |
msgid "Your custom HTML code has a syntax error."
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: inc/php/
|
390 |
msgid "Your custom HTML code is incorrect and may not work."
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: inc/php/
|
394 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: inc/php/
|
398 |
msgid "Why is this?"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: inc/php/
|
402 |
msgid "This plugin can not cause such problem."
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: inc/php/
|
406 |
msgid "More likely, the problem are related to the settings of the website."
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: inc/php/
|
410 |
msgid "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."
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: inc/php/
|
414 |
msgid "Also please try to re-login to the website, this too can help."
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: inc/php/
|
418 |
msgid "Where to report bug if found?"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: inc/php/
|
422 |
msgid "Bug reports are very welcome!"
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: inc/php/
|
426 |
#, php-format
|
427 |
msgid "Please visit our %s contact page %s and report."
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: inc/php/
|
431 |
msgid "Please do not forget to specify the name of the plugin."
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: inc/php/
|
435 |
msgid "Thank you!"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: inc/php/
|
439 |
msgid "Describe in more detail what exactly you are seeing."
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: inc/php/
|
443 |
msgid "Here are some examples:"
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: inc/php/
|
447 |
msgid "Elements of the plugin settings page are not working."
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: inc/php/
|
451 |
msgid "An error message is displayed on the plugin settings page."
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: inc/php/
|
455 |
msgid "An error message is displayed on the front end of website."
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: inc/php/
|
459 |
msgid "An error message is displayed on the back end of website."
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: inc/php/
|
463 |
msgid "Custom code is inserted on the plugin settings page, but it is not applied on the website."
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: inc/php/
|
467 |
msgid "Website is crashed."
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: inc/php/
|
471 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: inc/php/
|
475 |
msgid "Any suggestions are very welcome!"
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: inc/php/
|
479 |
#, php-format
|
480 |
msgid "Please visit our %s contact page %s."
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: inc/php/
|
484 |
msgid "I love this plugin!"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: inc/php/
|
488 |
msgid "Can I help somehow?"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: inc/php/
|
492 |
msgid "Yes, any contributions are very welcome!"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: inc/php/
|
496 |
#, php-format
|
497 |
msgid "Please visit our %s Support Us %s page."
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: inc/php/
|
501 |
msgid "Where can I find information about your licenses, payment process and refunds?"
|
502 |
msgstr ""
|
503 |
|
504 |
-
#: inc/php/
|
505 |
#, php-format
|
506 |
msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: inc/php/
|
510 |
msgid "Where can I find information about your customer support?"
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: inc/php/
|
514 |
#, php-format
|
515 |
msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
|
516 |
msgstr ""
|
517 |
|
518 |
-
#: inc/php/
|
519 |
msgid "Where can I find information about your affiliate program?"
|
520 |
msgstr ""
|
521 |
|
522 |
-
#: inc/php/
|
523 |
#, php-format
|
524 |
msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: inc/php/
|
528 |
msgid "My question wasn't answered here."
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: inc/php/
|
532 |
#, php-format
|
533 |
msgid "You can ask your question on %s this page %s."
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: inc/php/
|
537 |
msgid "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."
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: inc/php/
|
541 |
-
msgid "
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: inc/php/
|
545 |
-
msgid "
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: inc/php/
|
549 |
-
|
550 |
-
msgid "My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: inc/php/
|
554 |
-
msgid "
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: inc/php/
|
558 |
-
|
|
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: inc/php/
|
562 |
-
msgid "
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: inc/php/
|
566 |
-
msgid "
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: inc/php/
|
570 |
-
msgid "
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: inc/php/
|
574 |
-
msgid "
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: inc/php/
|
578 |
-
msgid "
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: inc/php/settings.php:
|
582 |
-
msgid "
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: inc/php/
|
586 |
-
msgid "
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: inc/php/
|
590 |
-
|
|
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: inc/php/
|
594 |
-
msgid "
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: inc/php/
|
598 |
-
|
599 |
-
msgid "Enter your custom HTML code here"
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: inc/php/
|
603 |
-
msgid "
|
604 |
msgstr ""
|
605 |
|
606 |
-
#: inc/php/
|
607 |
-
msgid "
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: inc/php/
|
611 |
-
msgid "
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: inc/php/
|
615 |
-
msgid "
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: inc/php/
|
619 |
-
msgid "
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: inc/php/
|
623 |
-
msgid "
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: inc/php/
|
627 |
-
msgid "
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: inc/php/
|
631 |
-
msgid "
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: inc/php/
|
635 |
-
msgid "
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: inc/php/
|
639 |
-
msgid "
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: inc/php/
|
643 |
-
msgid "
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: inc/php/
|
647 |
-
msgid "
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: inc/php/
|
651 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
652 |
msgstr ""
|
653 |
|
654 |
#. Plugin Name of the plugin/theme
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: Head and Footer Scripts Inserter\n"
|
6 |
+
"POT-Creation-Date: 2019-03-01 06:41+0300\n"
|
7 |
"PO-Revision-Date: 2016-01-30 11:39+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
34 |
msgid "Scripts Inserter"
|
35 |
msgstr ""
|
36 |
|
37 |
+
#: inc/php/messages.php:27 inc/php/tabs/support.php:25
|
38 |
msgid "Hello!"
|
39 |
msgstr ""
|
40 |
|
59 |
msgid "Custom code updated successfully."
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: inc/php/page.php:34
|
63 |
#, php-format
|
64 |
msgid "by %s Space X-Chimp %s"
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: inc/php/page.php:40
|
68 |
msgid "Version"
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: inc/php/page.php:47
|
72 |
msgid "Main"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: inc/php/page.php:48
|
76 |
msgid "Usage"
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: inc/php/page.php:49
|
80 |
msgid "F.A.Q."
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: inc/php/page.php:50 inc/php/sidebar.php:47 inc/php/tabs/settings.php:87
|
84 |
msgid "Support"
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: inc/php/page.php:51
|
88 |
msgid "Store"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: inc/php/sidebar.php:16
|
92 |
+
msgid "We are «Space X-Chimp»"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: inc/php/sidebar.php:33
|
96 |
+
msgid "About"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: inc/php/sidebar.php:35
|
100 |
+
msgid "This plugin gives you the ability to easily and safely add your custom HTML code (plus JavaScript, CSS, etc.) to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: inc/php/sidebar.php:40
|
104 |
+
msgid "Help"
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: inc/php/sidebar.php:42
|
108 |
+
msgid "If you have a question, please read the information in the FAQ section."
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: inc/php/sidebar.php:49 inc/php/tabs/settings.php:89
|
112 |
+
msgid "Every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: inc/php/sidebar.php:54 inc/php/tabs/settings.php:94
|
116 |
+
#: inc/php/tabs/support.php:21
|
117 |
+
msgid "Donate with PayPal"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: inc/php/sidebar.php:56 inc/php/tabs/settings.php:96
|
121 |
+
msgid "Thanks for your support!"
|
|
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: inc/php/tabs/faq.php:13
|
125 |
msgid "Frequently Asked Questions"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: inc/php/tabs/faq.php:17
|
129 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: inc/php/tabs/faq.php:42
|
133 |
msgid "Where can I find a documentation for this plugin?"
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: inc/php/tabs/faq.php:47
|
137 |
#, php-format
|
138 |
msgid "Please visit our %s Documentation site %s to view documentation."
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: inc/php/tabs/faq.php:55
|
142 |
msgid "Will this plugin work on my wordpress.COM website?"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: inc/php/tabs/faq.php:58
|
146 |
msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: inc/php/tabs/faq.php:60
|
150 |
msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: inc/php/tabs/faq.php:61
|
154 |
msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: inc/php/tabs/faq.php:64
|
158 |
#, php-format
|
159 |
msgid "You can learn more about the difference here: %s ."
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: inc/php/tabs/faq.php:71
|
163 |
msgid "Will this plugin work/compatible with the theme I use?"
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: inc/php/tabs/faq.php:74
|
167 |
msgid "This plugin is compatible with most themes."
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: inc/php/tabs/faq.php:75
|
171 |
msgid "But, unfortunately, we cannot check it with all third-party themes (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party theme."
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: inc/php/tabs/faq.php:76
|
175 |
msgid "We constantly check this plugin for compatibility with third-party themes."
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: inc/php/tabs/faq.php:77
|
179 |
msgid "If we find that this plugin is incompatible with a third-party theme, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: inc/php/tabs/faq.php:79
|
183 |
msgid "If you find a conflict between our plugin and a third-party theme, please let us know and we will definitely release an update of our plugin to fix the problem."
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: inc/php/tabs/faq.php:83
|
187 |
msgid "Will this plugin work/compatible with other plugins that I use?"
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: inc/php/tabs/faq.php:86
|
191 |
msgid "This plugin is compatible with most plugins."
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: inc/php/tabs/faq.php:87
|
195 |
msgid "But, unfortunately, we cannot check it with all third-party plugins (especially paid ones) for compatibility, therefore there are cases when this plugin does not work with a third-party plugin."
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: inc/php/tabs/faq.php:88
|
199 |
msgid "We constantly check this plugin for compatibility with third-party plugins."
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: inc/php/tabs/faq.php:89
|
203 |
msgid "If we find that this plugin is incompatible with a third-party plugin, and if we can fix it on our part, we release an update of our plugin to fix the problem."
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: inc/php/tabs/faq.php:91
|
207 |
msgid "If you find a conflict between our plugin and a third-party plugin, please let us know and we will definitely release an update of our plugin to fix the problem."
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: inc/php/tabs/faq.php:95
|
211 |
msgid "Can I use this plugin on my language?"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: inc/php/tabs/faq.php:98
|
215 |
msgid "Yes."
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: inc/php/tabs/faq.php:99
|
219 |
msgid "This plugin is ready for translation and has already been translated into several languages."
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: inc/php/tabs/faq.php:100
|
223 |
msgid "But If your language is not available then you can make one."
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: inc/php/tabs/faq.php:101
|
227 |
msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: inc/php/tabs/faq.php:102
|
231 |
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: inc/php/tabs/faq.php:103
|
235 |
msgid "Thanks for your contribution!"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: inc/php/tabs/faq.php:107
|
239 |
#, php-format
|
240 |
msgid "If you want to help translate this plugin, please visit the %s."
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: inc/php/tabs/faq.php:111
|
244 |
msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: inc/php/tabs/faq.php:114
|
248 |
#, php-format
|
249 |
msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: inc/php/tabs/faq.php:121
|
253 |
msgid "How does it work?"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: inc/php/tabs/faq.php:124
|
257 |
msgid "On the \"Main\" tab, place your custom HTML code in the code editor field and click the \"Save changes\" button."
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: inc/php/tabs/faq.php:125 inc/php/tabs/usage.php:28
|
261 |
+
msgid "Enjoy the result of applying your custom HTML code."
|
262 |
+
msgstr ""
|
263 |
+
|
264 |
+
#: inc/php/tabs/faq.php:126 inc/php/tabs/usage.php:28
|
265 |
+
msgid "It's that simple!"
|
266 |
+
msgstr ""
|
267 |
+
|
268 |
+
#: inc/php/tabs/faq.php:130
|
269 |
msgid "How much of HTML code (characters) I can enter in the code editor?"
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: inc/php/tabs/faq.php:133
|
273 |
msgid "We don't limit the number of characters."
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: inc/php/tabs/faq.php:137
|
277 |
msgid "Does this plugin requires any modification of the theme?"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: inc/php/tabs/faq.php:140
|
281 |
msgid "Absolutely not."
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: inc/php/tabs/faq.php:141
|
285 |
msgid "This plugin is configurable entirely from the plugin settings page."
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: inc/php/tabs/faq.php:145
|
289 |
msgid "Does this require any knowledge of HTML or CSS?"
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: inc/php/tabs/faq.php:148
|
293 |
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: inc/php/tabs/faq.php:149
|
297 |
msgid "But you need to know the HTML or CSS in order to add/remove/modify the HTML or CSS code by using this plugin."
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: inc/php/tabs/faq.php:153
|
301 |
msgid "Can I add my custom HTML code to a specific page of my website?"
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: inc/php/tabs/faq.php:156
|
305 |
msgid "For now, this plugin does not have an option to apply the custom HTML code only on specific pages."
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: inc/php/tabs/faq.php:157
|
309 |
msgid "We plan to add this feature soon."
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: inc/php/tabs/faq.php:158
|
313 |
msgid "But for now in order to apply your custom HTML code only on specific pages of your website, you need to wrap your custom HTML code in a PHP code that will determine the page you want."
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: inc/php/tabs/faq.php:159
|
317 |
msgid "You need something like this:"
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: inc/php/tabs/faq.php:175
|
321 |
#, php-format
|
322 |
msgid "To apply the PHP code on a website, we can recommend you to use another our plugin called %s."
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: inc/php/tabs/faq.php:182
|
326 |
msgid "It's not working."
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: inc/php/tabs/faq.php:183 inc/php/tabs/faq.php:199
|
330 |
msgid "What could be wrong?"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: inc/php/tabs/faq.php:186
|
334 |
msgid "As with every plugin, it's possible that things don't work."
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: inc/php/tabs/faq.php:187
|
338 |
msgid "It's impossible to tell what could be wrong exactly."
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: inc/php/tabs/faq.php:188
|
342 |
msgid "The most common reason for this is a web browser's cache."
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: inc/php/tabs/faq.php:189
|
346 |
msgid "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load."
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: inc/php/tabs/faq.php:190
|
350 |
msgid "This is called the browser's cache."
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: inc/php/tabs/faq.php:191
|
354 |
msgid "Clearing your browser's cache may solve the problem."
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: inc/php/tabs/faq.php:193
|
358 |
msgid "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."
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: inc/php/tabs/faq.php:194 inc/php/tabs/faq.php:237
|
362 |
msgid "Please include as much information as possible, including a link to your website where the problem can be seen."
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: inc/php/tabs/faq.php:198
|
366 |
msgid "My custom HTML code is not working."
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: inc/php/tabs/faq.php:202
|
370 |
msgid "It happens that your custom HTML code that you insert on the plugin page does not work, even if an error message does not appear."
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: inc/php/tabs/faq.php:203
|
374 |
msgid "Here are a few of the most likely causes of the issue:"
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: inc/php/tabs/faq.php:205
|
378 |
msgid "You have a typo during the insertion of your custom HTML code."
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: inc/php/tabs/faq.php:206
|
382 |
msgid "Your custom HTML code has a syntax error."
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: inc/php/tabs/faq.php:207
|
386 |
msgid "Your custom HTML code is incorrect and may not work."
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: inc/php/tabs/faq.php:212
|
390 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: inc/php/tabs/faq.php:213
|
394 |
msgid "Why is this?"
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: inc/php/tabs/faq.php:216
|
398 |
msgid "This plugin can not cause such problem."
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: inc/php/tabs/faq.php:217
|
402 |
msgid "More likely, the problem are related to the settings of the website."
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: inc/php/tabs/faq.php:218
|
406 |
msgid "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."
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: inc/php/tabs/faq.php:219
|
410 |
msgid "Also please try to re-login to the website, this too can help."
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: inc/php/tabs/faq.php:223
|
414 |
msgid "Where to report bug if found?"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: inc/php/tabs/faq.php:226
|
418 |
msgid "Bug reports are very welcome!"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: inc/php/tabs/faq.php:229
|
422 |
#, php-format
|
423 |
msgid "Please visit our %s contact page %s and report."
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: inc/php/tabs/faq.php:234 inc/php/tabs/faq.php:263
|
427 |
msgid "Please do not forget to specify the name of the plugin."
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: inc/php/tabs/faq.php:235 inc/php/tabs/faq.php:264 inc/php/tabs/faq.php:280
|
431 |
msgid "Thank you!"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: inc/php/tabs/faq.php:238
|
435 |
msgid "Describe in more detail what exactly you are seeing."
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: inc/php/tabs/faq.php:239
|
439 |
msgid "Here are some examples:"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: inc/php/tabs/faq.php:242
|
443 |
msgid "Elements of the plugin settings page are not working."
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: inc/php/tabs/faq.php:243
|
447 |
msgid "An error message is displayed on the plugin settings page."
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: inc/php/tabs/faq.php:244
|
451 |
msgid "An error message is displayed on the front end of website."
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: inc/php/tabs/faq.php:245
|
455 |
msgid "An error message is displayed on the back end of website."
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: inc/php/tabs/faq.php:246
|
459 |
msgid "Custom code is inserted on the plugin settings page, but it is not applied on the website."
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: inc/php/tabs/faq.php:247
|
463 |
msgid "Website is crashed."
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: inc/php/tabs/faq.php:252
|
467 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: inc/php/tabs/faq.php:255
|
471 |
msgid "Any suggestions are very welcome!"
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: inc/php/tabs/faq.php:258
|
475 |
#, php-format
|
476 |
msgid "Please visit our %s contact page %s."
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: inc/php/tabs/faq.php:268
|
480 |
msgid "I love this plugin!"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: inc/php/tabs/faq.php:269
|
484 |
msgid "Can I help somehow?"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: inc/php/tabs/faq.php:272
|
488 |
msgid "Yes, any contributions are very welcome!"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: inc/php/tabs/faq.php:275
|
492 |
#, php-format
|
493 |
msgid "Please visit our %s Support Us %s page."
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: inc/php/tabs/faq.php:284
|
497 |
msgid "Where can I find information about your licenses, payment process and refunds?"
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: inc/php/tabs/faq.php:289
|
501 |
#, php-format
|
502 |
msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: inc/php/tabs/faq.php:297
|
506 |
msgid "Where can I find information about your customer support?"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: inc/php/tabs/faq.php:302
|
510 |
#, php-format
|
511 |
msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: inc/php/tabs/faq.php:310
|
515 |
msgid "Where can I find information about your affiliate program?"
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: inc/php/tabs/faq.php:315
|
519 |
#, php-format
|
520 |
msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: inc/php/tabs/faq.php:323
|
524 |
msgid "My question wasn't answered here."
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: inc/php/tabs/faq.php:328
|
528 |
#, php-format
|
529 |
msgid "You can ask your question on %s this page %s."
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: inc/php/tabs/faq.php:333
|
533 |
msgid "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."
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: inc/php/tabs/settings.php:32
|
537 |
+
msgid "Head Section"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: inc/php/tabs/settings.php:34 inc/php/tabs/settings.php:62
|
541 |
+
msgid "NOT SAVED!"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: inc/php/tabs/settings.php:38
|
545 |
+
msgid "You can use the fields below to add your custom HTML code to the HEAD section of your website's front end."
|
|
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: inc/php/tabs/settings.php:40
|
549 |
+
msgid "The HTML code from this field will be printed at the beginning of the HEAD section. Do not place plain text in this!"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: inc/php/tabs/settings.php:44 inc/php/tabs/settings.php:51
|
553 |
+
#: inc/php/tabs/settings.php:72 inc/php/tabs/settings.php:79
|
554 |
+
msgid "Enter your custom HTML code here"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: inc/php/tabs/settings.php:47
|
558 |
+
msgid "The HTML code from this field will be printed at the end of the HEAD section. Do not place plain text in this!"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: inc/php/tabs/settings.php:54 inc/php/tabs/settings.php:82
|
562 |
+
msgid "Save changes"
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: inc/php/tabs/settings.php:60
|
566 |
+
msgid "Footer Section"
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: inc/php/tabs/settings.php:66
|
570 |
+
msgid "You can use the fields below to add your custom HTML code to the FOOTER section of your website's front end."
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: inc/php/tabs/settings.php:68
|
574 |
+
msgid "The HTML code from this field will be printed at the beginning of the FOOTER section. Do not place plain text in this!"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: inc/php/tabs/settings.php:75
|
578 |
+
msgid "The HTML code from this field will be printed at the end of the FOOTER section. Do not place plain text in this!"
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: inc/php/tabs/support.php:13
|
582 |
+
msgid "Support Us"
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: inc/php/tabs/support.php:28
|
586 |
+
#, php-format
|
587 |
+
msgid "My name is %s Arthur %s, I'm the founder of %s Space X-Chimp %s, which unites a small international team of young people."
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: inc/php/tabs/support.php:37
|
591 |
+
msgid "Our intention is to create projects that will make this world a better place."
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: inc/php/tabs/support.php:38
|
595 |
+
msgid "Our motto is - «Follow your dreams and don’t give up»."
|
|
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: inc/php/tabs/support.php:39
|
599 |
+
msgid "We are really passionate about our work, we like what we are doing and hope that you will be enriched by our projects too."
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: inc/php/tabs/support.php:42
|
603 |
+
msgid "We spend a lot of time and effort trying to make sure that the themes, plugins and other things we build are useful, and the ultimate proof of that for us is that you actually want to use them."
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: inc/php/tabs/support.php:43
|
607 |
+
msgid "But we are an independent developers, without a regular income, so every little contribution helps to cover our costs and allows us to spend more time creating things for awesome people like you to enjoy."
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: inc/php/tabs/support.php:46
|
611 |
+
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: inc/php/tabs/support.php:49
|
615 |
+
msgid "Thank you for your support!"
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: inc/php/tabs/usage.php:13
|
619 |
+
msgid "Usage Instructions"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: inc/php/tabs/usage.php:15
|
623 |
+
msgid "To add your custom HTML code (plus JavaScript, CSS, etc.) to your website, simply follow these steps:"
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: inc/php/tabs/usage.php:17
|
627 |
+
msgid "Go to the \"Main\" tab on this page."
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: inc/php/tabs/usage.php:19
|
631 |
+
msgid "Place your custom HTML code in the code editor field."
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: inc/php/tabs/usage.php:22
|
635 |
+
msgid "Note!"
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: inc/php/tabs/usage.php:23
|
639 |
+
msgid "The JavaScript and CSS code must be wrapped in HTML tags."
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: inc/php/tabs/usage.php:24
|
643 |
+
msgid "For JavaScript code use the <code><script></code> tag, and for CSS code use the <code><style></code> tag."
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: inc/php/tabs/usage.php:27
|
647 |
+
msgid "Click the \"Save changes\" button."
|
648 |
+
msgstr ""
|
649 |
+
|
650 |
+
#: inc/php/tabs/usage.php:33
|
651 |
+
#, php-format
|
652 |
+
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
653 |
msgstr ""
|
654 |
|
655 |
#. Plugin Name of the plugin/theme
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: inject code, inject scripts, inject javascript, inject js, inject html, in
|
|
4 |
Donate link: https://www.spacexchimp.com/donate.html
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 5.1
|
7 |
-
Stable tag: 4.
|
8 |
License: GPL3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -220,6 +220,10 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
220 |
|
221 |
== Changelog ==
|
222 |
|
|
|
|
|
|
|
|
|
223 |
= 4.36 - 2019-02-24 =
|
224 |
* Added French translation. (Thanks to Hervé Bouzin)
|
225 |
|
4 |
Donate link: https://www.spacexchimp.com/donate.html
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 5.1
|
7 |
+
Stable tag: 4.37
|
8 |
License: GPL3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
220 |
|
221 |
== Changelog ==
|
222 |
|
223 |
+
= 4.37 - 2019-03-01 =
|
224 |
+
* Framework updated: The file "page.php" is divided into the following parts: "page.php", "usage.php", "faq.php", "support.php".
|
225 |
+
* Framework updated: The files "settings.php", "usage.php", "faq.php", "support.php" are moved to the subfolder "tabs".
|
226 |
+
|
227 |
= 4.36 - 2019-02-24 =
|
228 |
* Added French translation. (Thanks to Hervé Bouzin)
|
229 |
|