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 | My Custom Functions |
Version | 4.35 |
Comparing to | |
See all releases |
Code changes from version 4.34 to 4.35
- inc/php/page.php +7 -475
- inc/php/tabs/faq.php +405 -0
- inc/php/{settings.php → tabs/settings.php} +0 -0
- inc/php/tabs/support.php +53 -0
- inc/php/tabs/usage.php +51 -0
- languages/my-custom-functions-de_DE.mo +0 -0
- languages/my-custom-functions-de_DE.po +222 -221
- languages/my-custom-functions-es_ES.mo +0 -0
- languages/my-custom-functions-es_ES.po +223 -222
- languages/my-custom-functions-fr_FR.mo +0 -0
- languages/my-custom-functions-fr_FR.po +226 -225
- languages/my-custom-functions-nl_NL.mo +0 -0
- languages/my-custom-functions-nl_NL.po +225 -224
- languages/my-custom-functions-ru_RU.mo +0 -0
- languages/my-custom-functions-ru_RU.po +226 -225
- languages/my-custom-functions-zh_TW.mo +0 -0
- languages/my-custom-functions-zh_TW.po +213 -212
- languages/my-custom-functions.pot +206 -205
- my-custom-functions.php +1 -1
- readme.txt +5 -1
inc/php/page.php
CHANGED
@@ -15,6 +15,7 @@ function spacexchimp_p001_render_submenu_page() {
|
|
15 |
$slug = SPACEXCHIMP_P001_SLUG;
|
16 |
$version = SPACEXCHIMP_P001_VERSION;
|
17 |
$text = SPACEXCHIMP_P001_TEXT;
|
|
|
18 |
|
19 |
// Call messages
|
20 |
spacexchimp_p001_hello_message();
|
@@ -25,6 +26,7 @@ function spacexchimp_p001_render_submenu_page() {
|
|
25 |
// Layout of page
|
26 |
?>
|
27 |
<div class="wrap">
|
|
|
28 |
<h2 class="sxc-header">
|
29 |
<?php echo $name; ?>
|
30 |
<span>
|
@@ -54,497 +56,27 @@ function spacexchimp_p001_render_submenu_page() {
|
|
54 |
<!-- TAB 1 -->
|
55 |
<div class="tab-page fade active in" id="tab-core">
|
56 |
<!-- INCLUDE SIDEBAR -->
|
57 |
-
<?php require_once(
|
58 |
<!-- INCLUDE SETTINGS -->
|
59 |
-
<?php require_once(
|
60 |
</div>
|
61 |
<!-- END-TAB 1 -->
|
62 |
|
63 |
<!-- TAB 2 -->
|
64 |
<div class="tab-page fade" id="tab-usage">
|
65 |
-
|
66 |
-
<h3 class="title"><?php _e( 'Usage Instructions', $text ); ?></h3>
|
67 |
-
<div class="inside">
|
68 |
-
<p><?php _e( 'To add your custom PHP code to your website, simply follow these steps:', $text ); ?></p>
|
69 |
-
<ol class="custom-counter">
|
70 |
-
<li><?php _e( 'Go to the "Main" tab on this page.', $text ); ?></li>
|
71 |
-
<li>
|
72 |
-
<?php _e( 'Place your custom PHP code in the code editor field.', $text ); ?>
|
73 |
-
<br><br>
|
74 |
-
<p class="note">
|
75 |
-
<b><?php _e( 'Note!', $text ); ?></b>
|
76 |
-
<?php _e( 'Do not wrap your custom PHP code in HTML tags, such as <code><?php</code>...<code>?></code>.', $text ); ?>
|
77 |
-
</p>
|
78 |
-
<p class="note">
|
79 |
-
<b><?php _e( 'Note!', $text ); ?></b>
|
80 |
-
<?php
|
81 |
-
printf(
|
82 |
-
__( 'Before use, please read the %s instructions %s in our Blog on what to do in case of a website crash.', $text ),
|
83 |
-
'<a href="https://mycyberuniverse.com/my-custom-functions-plugin-causes-site-failure.html" target="_blank">',
|
84 |
-
'</a>'
|
85 |
-
);
|
86 |
-
?>
|
87 |
-
</p>
|
88 |
-
</li>
|
89 |
-
<li><?php _e( 'Switch the toggle to the "ON" position.', $text ); ?></li>
|
90 |
-
<li><?php _e( 'Click the "Save changes" button.', $text ); ?></li>
|
91 |
-
<li><?php _e( 'Enjoy the result of applying your custom PHP code.', $text ); ?> <?php _e( 'It\'s that simple!', $text ); ?></li>
|
92 |
-
</ol>
|
93 |
-
<p class="note">
|
94 |
-
<?php
|
95 |
-
printf(
|
96 |
-
__( 'If you want more options, then %s let us know %s and we will be happy to add them.', $text ),
|
97 |
-
'<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
|
98 |
-
'</a>'
|
99 |
-
);
|
100 |
-
?>
|
101 |
-
</p>
|
102 |
-
</div>
|
103 |
-
</div>
|
104 |
</div>
|
105 |
<!-- END-TAB 2 -->
|
106 |
|
107 |
<!-- TAB 3 -->
|
108 |
<div class="tab-page fade" id="tab-faq">
|
109 |
-
|
110 |
-
<h3 class="title"><?php _e( 'Frequently Asked Questions', $text ); ?></h3>
|
111 |
-
<div class="inside">
|
112 |
-
|
113 |
-
<p class="note">
|
114 |
-
<?php _e( 'If you have a question, please read the Frequently Asked Questions below to see if the answer is here.', $text ); ?>
|
115 |
-
</p>
|
116 |
-
|
117 |
-
<div class="panel-group" id="collapse-group">
|
118 |
-
<?php
|
119 |
-
$loopvalue = '23';
|
120 |
-
for ( $i = 1; $i <= $loopvalue; $i++ ) {
|
121 |
-
echo '<div class="panel panel-default">
|
122 |
-
<div class="panel-heading">
|
123 |
-
<a data-toggle="collapse" data-parent="#collapse-group" href="#element' . $i . '">
|
124 |
-
<h4 class="panel-title"></h4>
|
125 |
-
</a>
|
126 |
-
</div>
|
127 |
-
<div id="element' . $i . '" class="panel-collapse collapse">
|
128 |
-
<div class="panel-body">
|
129 |
-
</div>
|
130 |
-
</div>
|
131 |
-
</div>';
|
132 |
-
}
|
133 |
-
?>
|
134 |
-
</div>
|
135 |
-
|
136 |
-
<?php $i = 1; ?>
|
137 |
-
|
138 |
-
<div class="question-<?php echo $i; ?>">
|
139 |
-
<?php _e( 'Where can I find a documentation for this plugin?', $text ); ?>
|
140 |
-
</div>
|
141 |
-
<div class="answer-<?php echo $i; $i++ ?>">
|
142 |
-
<?php
|
143 |
-
printf(
|
144 |
-
__( 'Please visit our %s Documentation site %s to view documentation.', $text ),
|
145 |
-
'<a href="https://docs.spacexchimp.com" target="_blank">',
|
146 |
-
'</a>'
|
147 |
-
);
|
148 |
-
?>
|
149 |
-
</div>
|
150 |
-
|
151 |
-
<div class="question-<?php echo $i; ?>">
|
152 |
-
<?php _e( 'Will this plugin work on my wordpress.COM website?', $text ); ?>
|
153 |
-
</div>
|
154 |
-
<div class="answer-<?php echo $i; $i++ ?>">
|
155 |
-
<?php _e( 'Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites.', $text ); ?>
|
156 |
-
<br><br>
|
157 |
-
<?php _e( 'Please note that there is a difference between wordpress.COM and wordpress.ORG.', $text ); ?>
|
158 |
-
<?php _e( 'The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software.', $text ); ?>
|
159 |
-
<?php
|
160 |
-
printf(
|
161 |
-
__( 'You can learn more about the difference here: %s .', $text ),
|
162 |
-
'<a href="https://en.support.wordpress.com/com-vs-org/" target="_blank">https://en.support.wordpress.com/com-vs-org/</a>'
|
163 |
-
);
|
164 |
-
?>
|
165 |
-
</div>
|
166 |
-
|
167 |
-
<div class="question-<?php echo $i; ?>">
|
168 |
-
<?php _e( 'Will this plugin work/compatible with the theme I use?', $text ); ?>
|
169 |
-
</div>
|
170 |
-
<div class="answer-<?php echo $i; $i++ ?>">
|
171 |
-
<?php _e( 'This plugin is compatible with most themes.', $text ); ?>
|
172 |
-
<?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 ); ?>
|
173 |
-
<?php _e( 'We constantly check this plugin for compatibility with third-party themes.', $text ); ?>
|
174 |
-
<?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 ); ?>
|
175 |
-
<br><br>
|
176 |
-
<?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 ); ?>
|
177 |
-
</div>
|
178 |
-
|
179 |
-
<div class="question-<?php echo $i; ?>">
|
180 |
-
<?php _e( 'Will this plugin work/compatible with other plugins that I use?', $text ); ?>
|
181 |
-
</div>
|
182 |
-
<div class="answer-<?php echo $i; $i++ ?>">
|
183 |
-
<?php _e( 'This plugin is compatible with most plugins.', $text ); ?>
|
184 |
-
<?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 ); ?>
|
185 |
-
<?php _e( 'We constantly check this plugin for compatibility with third-party plugins.', $text ); ?>
|
186 |
-
<?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 ); ?>
|
187 |
-
<br><br>
|
188 |
-
<?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 ); ?>
|
189 |
-
</div>
|
190 |
-
|
191 |
-
<div class="question-<?php echo $i; ?>">
|
192 |
-
<?php _e( 'Can I use this plugin on my language?', $text ); ?>
|
193 |
-
</div>
|
194 |
-
<div class="answer-<?php echo $i; $i++ ?>">
|
195 |
-
<?php _e( 'Yes.', $text ); ?>
|
196 |
-
<?php _e( 'This plugin is ready for translation and has already been translated into several languages.', $text ); ?>
|
197 |
-
<?php _e( 'But If your language is not available then you can make one.', $text ); ?>
|
198 |
-
<?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 ); ?>
|
199 |
-
<?php _e( 'Many of plugin users would be delighted if you share your translation with the community.', $text ); ?>
|
200 |
-
<?php _e( 'Thanks for your contribution!', $text ); ?>
|
201 |
-
<br><br>
|
202 |
-
<?php
|
203 |
-
printf(
|
204 |
-
__( 'If you want to help translate this plugin, please visit the %s.', $text ),
|
205 |
-
'<a href="https://translate.wordpress.org/projects/wp-plugins/' . $slug . '" target="_blank">translation page</a>'
|
206 |
-
);
|
207 |
-
?>
|
208 |
-
<?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 ); ?>
|
209 |
-
<?php
|
210 |
-
printf(
|
211 |
-
__( 'Just send the PO file to us ( %s ) and we will include this translation within the next plugin update.', $text ),
|
212 |
-
'<a href="mailto:support@spacexchimp.com?subject=New translation of the ' . $name . ' plugin">support@spacexchimp.com</a>'
|
213 |
-
);
|
214 |
-
?>
|
215 |
-
</div>
|
216 |
-
|
217 |
-
<div class="question-<?php echo $i; ?>">
|
218 |
-
<?php _e( 'How does it work?', $text ); ?>
|
219 |
-
</div>
|
220 |
-
<div class="answer-<?php echo $i; $i++ ?>">
|
221 |
-
<?php _e( 'On the "Main" tab, place your custom PHP code in the code editor field, switch the toggle to the "ON" position and click the "Save changes" button.', $text ); ?>
|
222 |
-
<?php _e( 'Enjoy the result of applying your custom PHP code.', $text ); ?>
|
223 |
-
<?php _e( 'It\'s that simple!', $text ); ?>
|
224 |
-
</div>
|
225 |
-
|
226 |
-
<div class="question-<?php echo $i; ?>">
|
227 |
-
<?php _e( 'Can I use HTML/CSS/JS code integrated in PHP code?', $text ); ?>
|
228 |
-
</div>
|
229 |
-
<div class="answer-<?php echo $i; $i++ ?>">
|
230 |
-
<?php _e( 'Yes.', $text ); ?>
|
231 |
-
<?php _e( 'But you need to do it properly, like this:', $text ); ?>
|
232 |
-
<br><br>
|
233 |
-
<pre><code>function my_custom_html_code() {
|
234 |
-
|
235 |
-
// Print the custom HTML code
|
236 |
-
echo '<script>YOUR CUSTOM HTML CODE HERE</script>';
|
237 |
-
|
238 |
-
}
|
239 |
-
add_action( 'wp_head', 'my_custom_html_code' );</code></pre>
|
240 |
-
</div>
|
241 |
-
|
242 |
-
<div class="question-<?php echo $i; ?>">
|
243 |
-
<?php _e( 'How much of PHP code (characters) I can enter in the code editor?', $text ); ?>
|
244 |
-
</div>
|
245 |
-
<div class="answer-<?php echo $i; $i++ ?>">
|
246 |
-
<?php _e( 'We don\'t limit the number of characters.', $text ); ?>
|
247 |
-
</div>
|
248 |
-
|
249 |
-
<div class="question-<?php echo $i; ?>">
|
250 |
-
<?php _e( 'Does this plugin requires any modification of the theme?', $text ); ?>
|
251 |
-
</div>
|
252 |
-
<div class="answer-<?php echo $i; $i++ ?>">
|
253 |
-
<?php _e( 'Absolutely not.', $text ); ?>
|
254 |
-
<?php _e( 'This plugin is configurable entirely from the plugin settings page.', $text ); ?>
|
255 |
-
</div>
|
256 |
-
|
257 |
-
<div class="question-<?php echo $i; ?>">
|
258 |
-
<?php _e( 'Does this require any knowledge of HTML or CSS?', $text ); ?>
|
259 |
-
</div>
|
260 |
-
<div class="answer-<?php echo $i; $i++ ?>">
|
261 |
-
<?php _e( 'Absolutely not.', $text ); ?>
|
262 |
-
<?php _e( 'This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page.', $text ); ?>
|
263 |
-
</div>
|
264 |
-
|
265 |
-
<div class="question-<?php echo $i; ?>">
|
266 |
-
<?php _e( 'Can I add my custom PHP code to a specific page of my website?', $text ); ?>
|
267 |
-
</div>
|
268 |
-
<div class="answer-<?php echo $i; $i++ ?>">
|
269 |
-
<?php _e( 'For now, this plugin does not have an option to apply the custom PHP code only on specific pages.', $text ); ?>
|
270 |
-
<?php _e( 'We plan to add this feature soon.', $text ); ?>
|
271 |
-
<?php _e( 'But for now in order to apply your custom PHP code only on specific pages of your website, you need to wrap your custom PHP code in a PHP function that will determine the page you want.', $text ); ?>
|
272 |
-
<?php _e( 'You need something like this:', $text ); ?>
|
273 |
-
<br><br>
|
274 |
-
<pre><code>function my_custom_php_code() {
|
275 |
-
|
276 |
-
// Stop the function if this is not the Home page of website
|
277 |
-
if ( !is_home() ) {
|
278 |
-
return;
|
279 |
-
}
|
280 |
-
|
281 |
-
// YOUR CUSTOM PHP CODE HERE
|
282 |
-
|
283 |
-
}
|
284 |
-
my_custom_php_code();</code></pre>
|
285 |
-
</div>
|
286 |
-
|
287 |
-
<div class="question-<?php echo $i; ?> question-red">
|
288 |
-
<?php _e( 'It\'s not working.', $text ); ?>
|
289 |
-
<?php _e( 'What could be wrong?', $text ); ?>
|
290 |
-
</div>
|
291 |
-
<div class="answer-<?php echo $i; $i++ ?>">
|
292 |
-
<?php _e( 'As with every plugin, it\'s possible that things don\'t work.', $text ); ?>
|
293 |
-
<?php _e( 'It\'s impossible to tell what could be wrong exactly.', $text ); ?>
|
294 |
-
<?php _e( 'The most common reason for this is a web browser\'s cache.', $text ); ?>
|
295 |
-
<?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 ); ?>
|
296 |
-
<?php _e( 'This is called the browser\'s cache.', $text ); ?>
|
297 |
-
<?php _e( 'Clearing your browser\'s cache may solve the problem.', $text ); ?>
|
298 |
-
<br><br>
|
299 |
-
<?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 ); ?>
|
300 |
-
<?php _e( 'Please include as much information as possible, including a link to your website where the problem can be seen.', $text ); ?>
|
301 |
-
</div>
|
302 |
-
|
303 |
-
<div class="question-<?php echo $i; ?> question-red">
|
304 |
-
<?php _e( 'On the plugin settings page, an error message appears.', $text ); ?>
|
305 |
-
<?php _e( 'What could be wrong?', $text ); ?>
|
306 |
-
</div>
|
307 |
-
<div class="answer-<?php echo $i; $i++ ?>">
|
308 |
-
<?php _e( 'Here are a few of the most likely causes of the error message:', $text ); ?>
|
309 |
-
<ol class="custom-list">
|
310 |
-
<li>
|
311 |
-
<?php _e( 'You make a syntax error in the code that you have entered.', $text ); ?>
|
312 |
-
<?php _e( 'Check the syntax of your code and try again.', $text ); ?>
|
313 |
-
</li>
|
314 |
-
<li>
|
315 |
-
<?php _e( 'You entered two functions with the same name.', $text ); ?>
|
316 |
-
<?php _e( 'Use a unique names for your functions.', $text ); ?>
|
317 |
-
</li>
|
318 |
-
<li>
|
319 |
-
<?php _e( 'You have entered function with a name that is already occupied by another function.', $text ); ?>
|
320 |
-
<?php _e( 'Use a unique name for your function.', $text ); ?>
|
321 |
-
</li>
|
322 |
-
<li>
|
323 |
-
<?php _e( 'You are trying to overwrite an existing function (of WordPress, theme, or plugin).', $text ); ?>
|
324 |
-
<?php _e( 'Instead, use filters and hooks.', $text ); ?>
|
325 |
-
</li>
|
326 |
-
</ol>
|
327 |
-
</div>
|
328 |
-
|
329 |
-
<div class="question-<?php echo $i; ?> question-red">
|
330 |
-
<?php _e( 'My custom PHP code is not working.', $text ); ?>
|
331 |
-
<?php _e( 'What could be wrong?', $text ); ?>
|
332 |
-
</div>
|
333 |
-
<div class="answer-<?php echo $i; $i++ ?>">
|
334 |
-
<?php _e( 'It happens that your custom PHP code that you insert on the plugin page does not work, even if an error message does not appear.', $text ); ?>
|
335 |
-
<?php _e( 'Here are a few of the most likely causes of the issue:', $text ); ?>
|
336 |
-
<ol class="custom-list">
|
337 |
-
<li><?php _e( 'You have a typo during the insertion of your custom PHP code.', $text ); ?></li>
|
338 |
-
<li><?php _e( 'Your custom PHP code has a syntax error.', $text ); ?></li>
|
339 |
-
<li><?php _e( 'Your custom PHP code is incorrect and may not work.', $text ); ?></li>
|
340 |
-
</ol>
|
341 |
-
</div>
|
342 |
-
|
343 |
-
<div class="question-<?php echo $i; ?> question-red">
|
344 |
-
<?php _e( 'What to do if this plugin crashed the website?', $text ); ?>
|
345 |
-
</div>
|
346 |
-
<div class="answer-<?php echo $i; $i++ ?>">
|
347 |
-
<?php _e( 'This plugin has a built-in functions for checking the custom code for syntax errors, duplicate functions names, and etc.', $text ); ?>
|
348 |
-
<?php _e( 'But plugin is not perfect, so there are times when the entered custom code causes the error and white screen (WSOD).', $text ); ?>
|
349 |
-
<?php _e( 'This is due to the fact that your custom code has a syntax error that this plugin could not detect.', $text ); ?>
|
350 |
-
<?php _e( 'When this happens with you, please perform the following steps.', $text ); ?>
|
351 |
-
<ol class="custom-counter">
|
352 |
-
<li>
|
353 |
-
<?php _e( 'Access your server via FTP or SFTP.', $text ); ?>
|
354 |
-
<?php _e( 'If you aren\'t sure how usually your web hosting provider will have instructions somewhere on their website.', $text ); ?>
|
355 |
-
</li>
|
356 |
-
<li>
|
357 |
-
<?php _e( 'Browse to the directory <code>wp-content/plugins/my-custom-functions/</code>.', $text ); ?>
|
358 |
-
<?php _e( 'Please contact your web hosting company to get help if you can\'t find this folder.', $text ); ?>
|
359 |
-
</li>
|
360 |
-
<li>
|
361 |
-
<?php _e( 'Rename the file <code>START</code> to <code>STOP</code>.', $text ); ?>
|
362 |
-
<?php _e( 'This will stop the execution of your custom code.', $text ); ?>
|
363 |
-
</li>
|
364 |
-
<li><?php _e( 'Log in to Admin Area of your WordPress website.', $text ); ?></li>
|
365 |
-
<li><?php _e( 'Go to the plugin settings page <code>Settings</code> ➡ <code>PHP Inserter</code>.', $text ); ?></li>
|
366 |
-
<li><?php _e( 'Edit/fix your custom PHP code that you entered before the crash.', $text ); ?></li>
|
367 |
-
<li><?php _e( 'Return to the plugin folder and rename the file <code>STOP</code> to <code>START</code> and you\'re done!', $text ); ?></li>
|
368 |
-
</ol>
|
369 |
-
<?php _e( 'This plugin stored you entered code in the database of your website.', $text ); ?>
|
370 |
-
<?php _e( 'For getting your code, you also can go to the <code>Database</code> ➡ Table <code>wp_options</code> ➡ Option <code>spacexchimp_p001_settings</code> ➡ <code>option_value</code>.', $text ); ?>
|
371 |
-
<br><br>
|
372 |
-
<?php _e( 'We are already working on a feature to automatically stop the execution of users custom PHP code for cases when this plugin could not detect the error, and this caused the inaccessibility of the website.', $text ); ?>
|
373 |
-
</div>
|
374 |
-
|
375 |
-
<div class="question-<?php echo $i; ?> question-red">
|
376 |
-
<?php _e( 'The last WordPress update is preventing me from editing my website that is using this plugin.', $text ); ?>
|
377 |
-
<?php _e( 'Why is this?', $text ); ?>
|
378 |
-
</div>
|
379 |
-
<div class="answer-<?php echo $i; $i++ ?>">
|
380 |
-
<?php _e( 'This plugin can not cause such problem.', $text ); ?>
|
381 |
-
<?php _e( 'More likely, the problem are related to the settings of the website.', $text ); ?>
|
382 |
-
<?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 ); ?>
|
383 |
-
<?php _e( 'Also please try to re-login to the website, this too can help.', $text ); ?>
|
384 |
-
</div>
|
385 |
-
|
386 |
-
<div class="question-<?php echo $i; ?> question-red">
|
387 |
-
<?php _e( 'Where to report bug if found?', $text ); ?>
|
388 |
-
</div>
|
389 |
-
<div class="answer-<?php echo $i; $i++ ?>">
|
390 |
-
<?php _e( 'Bug reports are very welcome!', $text ); ?>
|
391 |
-
<?php
|
392 |
-
printf(
|
393 |
-
__( 'Please visit our %s contact page %s and report.', $text ),
|
394 |
-
'<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
|
395 |
-
'</a>'
|
396 |
-
);
|
397 |
-
?>
|
398 |
-
<?php _e( 'Please do not forget to specify the name of the plugin.', $text ); ?>
|
399 |
-
<?php _e( 'Thank you!', $text ); ?>
|
400 |
-
<br><br>
|
401 |
-
<?php _e( 'Please include as much information as possible, including a link to your website where the problem can be seen.', $text ); ?>
|
402 |
-
<?php _e( 'Describe in more detail what exactly you are seeing.', $text ); ?>
|
403 |
-
<?php _e( 'Here are some examples:', $text ); ?>
|
404 |
-
<br><br>
|
405 |
-
<ul class="custom-list">
|
406 |
-
<li><?php _e( 'Elements of the plugin settings page are not working.', $text ); ?></li>
|
407 |
-
<li><?php _e( 'An error message is displayed on the plugin settings page.', $text ); ?></li>
|
408 |
-
<li><?php _e( 'An error message is displayed on the front end of website.', $text ); ?></li>
|
409 |
-
<li><?php _e( 'An error message is displayed on the back end of website.', $text ); ?></li>
|
410 |
-
<li><?php _e( 'Custom code is inserted on the plugin settings page, but it is not applied on the website.', $text ); ?></li>
|
411 |
-
<li><?php _e( 'Website is crashed.', $text ); ?></li>
|
412 |
-
</ul>
|
413 |
-
</div>
|
414 |
-
|
415 |
-
<div class="question-<?php echo $i; ?>">
|
416 |
-
<?php _e( 'Where to share any ideas or suggestions to make the plugin better?', $text ); ?>
|
417 |
-
</div>
|
418 |
-
<div class="answer-<?php echo $i; $i++ ?>">
|
419 |
-
<?php _e( 'Any suggestions are very welcome!', $text ); ?>
|
420 |
-
<?php
|
421 |
-
printf(
|
422 |
-
__( 'Please visit our %s contact page %s.', $text ),
|
423 |
-
'<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
|
424 |
-
'</a>'
|
425 |
-
);
|
426 |
-
?>
|
427 |
-
<?php _e( 'Please do not forget to specify the name of the plugin.', $text ); ?>
|
428 |
-
<?php _e( 'Thank you!', $text ); ?>
|
429 |
-
</div>
|
430 |
-
|
431 |
-
<div class="question-<?php echo $i; ?>">
|
432 |
-
<?php _e( 'I love this plugin!', $text ); ?>
|
433 |
-
<?php _e( 'Can I help somehow?', $text ); ?>
|
434 |
-
</div>
|
435 |
-
<div class="answer-<?php echo $i; $i++ ?>">
|
436 |
-
<?php _e( 'Yes, any contributions are very welcome!', $text ); ?>
|
437 |
-
<?php
|
438 |
-
printf(
|
439 |
-
__( 'Please visit our %s Support Us %s page.', $text ),
|
440 |
-
'<a href="https://www.spacexchimp.com/donate.html" target="_blank">',
|
441 |
-
'</a>'
|
442 |
-
);
|
443 |
-
?>
|
444 |
-
<?php _e( 'Thank you!', $text ); ?>
|
445 |
-
</div>
|
446 |
-
|
447 |
-
<div class="question-<?php echo $i; ?>">
|
448 |
-
<?php _e( 'Where can I find information about your licenses, payment process and refunds?', $text ); ?>
|
449 |
-
</div>
|
450 |
-
<div class="answer-<?php echo $i; $i++ ?>">
|
451 |
-
<?php
|
452 |
-
printf(
|
453 |
-
__( 'Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page.', $text ),
|
454 |
-
'<a href="https://www.spacexchimp.com/faq.html" target="_blank">',
|
455 |
-
'</a>'
|
456 |
-
);
|
457 |
-
?>
|
458 |
-
</div>
|
459 |
-
|
460 |
-
<div class="question-<?php echo $i; ?>">
|
461 |
-
<?php _e( 'Where can I find information about your customer support?', $text ); ?>
|
462 |
-
</div>
|
463 |
-
<div class="answer-<?php echo $i; $i++ ?>">
|
464 |
-
<?php
|
465 |
-
printf(
|
466 |
-
__( 'Answers to common questions about our customer support can be found on our %s Common Questions %s page.', $text ),
|
467 |
-
'<a href="https://www.spacexchimp.com/faq.html" target="_blank">',
|
468 |
-
'</a>'
|
469 |
-
);
|
470 |
-
?>
|
471 |
-
</div>
|
472 |
-
|
473 |
-
<div class="question-<?php echo $i; ?>">
|
474 |
-
<?php _e( 'Where can I find information about your affiliate program?', $text ); ?>
|
475 |
-
</div>
|
476 |
-
<div class="answer-<?php echo $i; $i++ ?>">
|
477 |
-
<?php
|
478 |
-
printf(
|
479 |
-
__( 'Answers to common questions about our affiliate program can be found on our %s Common Questions %s page.', $text ),
|
480 |
-
'<a href="https://www.spacexchimp.com/faq.html" target="_blank">',
|
481 |
-
'</a>'
|
482 |
-
);
|
483 |
-
?>
|
484 |
-
</div>
|
485 |
-
|
486 |
-
<div class="question-<?php echo $i; ?>">
|
487 |
-
<?php _e( 'My question wasn\'t answered here.', $text ); ?>
|
488 |
-
</div>
|
489 |
-
<div class="answer-<?php echo $i; $i++ ?>">
|
490 |
-
<?php
|
491 |
-
printf(
|
492 |
-
__( 'You can ask your question on %s this page %s.', $text ),
|
493 |
-
'<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
|
494 |
-
'</a>'
|
495 |
-
);
|
496 |
-
?>
|
497 |
-
<?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 ); ?>
|
498 |
-
</div>
|
499 |
-
|
500 |
-
</div>
|
501 |
-
</div>
|
502 |
</div>
|
503 |
<!-- END-TAB 3 -->
|
504 |
|
505 |
<!-- TAB 4 -->
|
506 |
<div class="tab-page fade" id="tab-support">
|
507 |
-
|
508 |
-
<h3 class="title"><?php _e( 'Support Us', $text ); ?></h3>
|
509 |
-
<div class="inside">
|
510 |
-
<span class="image-with-button pull-left">
|
511 |
-
<img src="<?php echo SPACEXCHIMP_P001_URL . 'inc/img/thanks.png'; ?>" alt="Thanks!">
|
512 |
-
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="btn btn-default button-labeled">
|
513 |
-
<span class="btn-label">
|
514 |
-
<img src="<?php echo SPACEXCHIMP_P001_URL . 'inc/img/paypal.svg'; ?>" alt="PayPal">
|
515 |
-
</span>
|
516 |
-
<?php _e( 'Donate with PayPal', $text ); ?>
|
517 |
-
</a>
|
518 |
-
</span>
|
519 |
-
<p>
|
520 |
-
<?php _e( 'Hello!', $text ); ?>
|
521 |
-
<?php
|
522 |
-
printf(
|
523 |
-
__( '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 ),
|
524 |
-
'<a href="https://www.instagram.com/arthur_gareginyan/" target="_blank">',
|
525 |
-
'</a>',
|
526 |
-
'<a href="https://www.spacexchimp.com" target="_blank">',
|
527 |
-
'</a>'
|
528 |
-
);
|
529 |
-
?>
|
530 |
-
</p>
|
531 |
-
<p>
|
532 |
-
<?php _e( 'Our intention is to create projects that will make this world a better place.', $text ); ?>
|
533 |
-
<?php _e( 'Our motto is - «Follow your dreams and don’t give up».', $text ); ?>
|
534 |
-
<?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 ); ?>
|
535 |
-
</p>
|
536 |
-
<p>
|
537 |
-
<?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 ); ?>
|
538 |
-
<?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 ); ?>
|
539 |
-
</p>
|
540 |
-
<p>
|
541 |
-
<?php _e( 'If you appreciate our work, you can buy us a cup of coffee!', $text ); ?>
|
542 |
-
</p>
|
543 |
-
<p>
|
544 |
-
<?php _e( 'Thank you for your support!', $text ); ?>
|
545 |
-
</p>
|
546 |
-
</div>
|
547 |
-
</div>
|
548 |
</div>
|
549 |
<!-- END-TAB 4 -->
|
550 |
|
15 |
$slug = SPACEXCHIMP_P001_SLUG;
|
16 |
$version = SPACEXCHIMP_P001_VERSION;
|
17 |
$text = SPACEXCHIMP_P001_TEXT;
|
18 |
+
$path = SPACEXCHIMP_P001_PATH;
|
19 |
|
20 |
// Call messages
|
21 |
spacexchimp_p001_hello_message();
|
26 |
// Layout of page
|
27 |
?>
|
28 |
<div class="wrap">
|
29 |
+
|
30 |
<h2 class="sxc-header">
|
31 |
<?php echo $name; ?>
|
32 |
<span>
|
56 |
<!-- TAB 1 -->
|
57 |
<div class="tab-page fade active in" id="tab-core">
|
58 |
<!-- INCLUDE SIDEBAR -->
|
59 |
+
<?php require_once( $path . 'inc/php/sidebar.php' ); ?>
|
60 |
<!-- INCLUDE SETTINGS -->
|
61 |
+
<?php require_once( $path . 'inc/php/tabs/settings.php' ); ?>
|
62 |
</div>
|
63 |
<!-- END-TAB 1 -->
|
64 |
|
65 |
<!-- TAB 2 -->
|
66 |
<div class="tab-page fade" id="tab-usage">
|
67 |
+
<?php require_once( $path . 'inc/php/tabs/usage.php' ); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
</div>
|
69 |
<!-- END-TAB 2 -->
|
70 |
|
71 |
<!-- TAB 3 -->
|
72 |
<div class="tab-page fade" id="tab-faq">
|
73 |
+
<?php require_once( $path . 'inc/php/tabs/faq.php' ); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
74 |
</div>
|
75 |
<!-- END-TAB 3 -->
|
76 |
|
77 |
<!-- TAB 4 -->
|
78 |
<div class="tab-page fade" id="tab-support">
|
79 |
+
<?php require_once( $path . 'inc/php/tabs/support.php' ); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
</div>
|
81 |
<!-- END-TAB 4 -->
|
82 |
|
inc/php/tabs/faq.php
ADDED
@@ -0,0 +1,405 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 = '23';
|
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 PHP code in the code editor field, switch the toggle to the "ON" position and click the "Save changes" button.', $text ); ?>
|
125 |
+
<?php _e( 'Enjoy the result of applying your custom PHP code.', $text ); ?>
|
126 |
+
<?php _e( 'It\'s that simple!', $text ); ?>
|
127 |
+
</div>
|
128 |
+
|
129 |
+
<div class="question-<?php echo $i; ?>">
|
130 |
+
<?php _e( 'Can I use HTML/CSS/JS code integrated in PHP code?', $text ); ?>
|
131 |
+
</div>
|
132 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
133 |
+
<?php _e( 'Yes.', $text ); ?>
|
134 |
+
<?php _e( 'But you need to do it properly, like this:', $text ); ?>
|
135 |
+
<br><br>
|
136 |
+
<pre><code>function my_custom_html_code() {
|
137 |
+
|
138 |
+
// Print the custom HTML code
|
139 |
+
echo '<script>YOUR CUSTOM HTML CODE HERE</script>';
|
140 |
+
|
141 |
+
}
|
142 |
+
add_action( 'wp_head', 'my_custom_html_code' );</code></pre>
|
143 |
+
</div>
|
144 |
+
|
145 |
+
<div class="question-<?php echo $i; ?>">
|
146 |
+
<?php _e( 'How much of PHP code (characters) I can enter in the code editor?', $text ); ?>
|
147 |
+
</div>
|
148 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
149 |
+
<?php _e( 'We don\'t limit the number of characters.', $text ); ?>
|
150 |
+
</div>
|
151 |
+
|
152 |
+
<div class="question-<?php echo $i; ?>">
|
153 |
+
<?php _e( 'Does this plugin requires any modification of the theme?', $text ); ?>
|
154 |
+
</div>
|
155 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
156 |
+
<?php _e( 'Absolutely not.', $text ); ?>
|
157 |
+
<?php _e( 'This plugin is configurable entirely from the plugin settings page.', $text ); ?>
|
158 |
+
</div>
|
159 |
+
|
160 |
+
<div class="question-<?php echo $i; ?>">
|
161 |
+
<?php _e( 'Does this require any knowledge of HTML or CSS?', $text ); ?>
|
162 |
+
</div>
|
163 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
164 |
+
<?php _e( 'Absolutely not.', $text ); ?>
|
165 |
+
<?php _e( 'This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page.', $text ); ?>
|
166 |
+
</div>
|
167 |
+
|
168 |
+
<div class="question-<?php echo $i; ?>">
|
169 |
+
<?php _e( 'Can I add my custom PHP code to a specific page of my website?', $text ); ?>
|
170 |
+
</div>
|
171 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
172 |
+
<?php _e( 'For now, this plugin does not have an option to apply the custom PHP code only on specific pages.', $text ); ?>
|
173 |
+
<?php _e( 'We plan to add this feature soon.', $text ); ?>
|
174 |
+
<?php _e( 'But for now in order to apply your custom PHP code only on specific pages of your website, you need to wrap your custom PHP code in a PHP function that will determine the page you want.', $text ); ?>
|
175 |
+
<?php _e( 'You need something like this:', $text ); ?>
|
176 |
+
<br><br>
|
177 |
+
<pre><code>function my_custom_php_code() {
|
178 |
+
|
179 |
+
// Stop the function if this is not the Home page of website
|
180 |
+
if ( !is_home() ) {
|
181 |
+
return;
|
182 |
+
}
|
183 |
+
|
184 |
+
// YOUR CUSTOM PHP CODE HERE
|
185 |
+
|
186 |
+
}
|
187 |
+
my_custom_php_code();</code></pre>
|
188 |
+
</div>
|
189 |
+
|
190 |
+
<div class="question-<?php echo $i; ?> question-red">
|
191 |
+
<?php _e( 'It\'s not working.', $text ); ?>
|
192 |
+
<?php _e( 'What could be wrong?', $text ); ?>
|
193 |
+
</div>
|
194 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
195 |
+
<?php _e( 'As with every plugin, it\'s possible that things don\'t work.', $text ); ?>
|
196 |
+
<?php _e( 'It\'s impossible to tell what could be wrong exactly.', $text ); ?>
|
197 |
+
<?php _e( 'The most common reason for this is a web browser\'s cache.', $text ); ?>
|
198 |
+
<?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 ); ?>
|
199 |
+
<?php _e( 'This is called the browser\'s cache.', $text ); ?>
|
200 |
+
<?php _e( 'Clearing your browser\'s cache may solve the problem.', $text ); ?>
|
201 |
+
<br><br>
|
202 |
+
<?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 ); ?>
|
203 |
+
<?php _e( 'Please include as much information as possible, including a link to your website where the problem can be seen.', $text ); ?>
|
204 |
+
</div>
|
205 |
+
|
206 |
+
<div class="question-<?php echo $i; ?> question-red">
|
207 |
+
<?php _e( 'On the plugin settings page, an error message appears.', $text ); ?>
|
208 |
+
<?php _e( 'What could be wrong?', $text ); ?>
|
209 |
+
</div>
|
210 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
211 |
+
<?php _e( 'Here are a few of the most likely causes of the error message:', $text ); ?>
|
212 |
+
<ol class="custom-list">
|
213 |
+
<li>
|
214 |
+
<?php _e( 'You make a syntax error in the code that you have entered.', $text ); ?>
|
215 |
+
<?php _e( 'Check the syntax of your code and try again.', $text ); ?>
|
216 |
+
</li>
|
217 |
+
<li>
|
218 |
+
<?php _e( 'You entered two functions with the same name.', $text ); ?>
|
219 |
+
<?php _e( 'Use a unique names for your functions.', $text ); ?>
|
220 |
+
</li>
|
221 |
+
<li>
|
222 |
+
<?php _e( 'You have entered function with a name that is already occupied by another function.', $text ); ?>
|
223 |
+
<?php _e( 'Use a unique name for your function.', $text ); ?>
|
224 |
+
</li>
|
225 |
+
<li>
|
226 |
+
<?php _e( 'You are trying to overwrite an existing function (of WordPress, theme, or plugin).', $text ); ?>
|
227 |
+
<?php _e( 'Instead, use filters and hooks.', $text ); ?>
|
228 |
+
</li>
|
229 |
+
</ol>
|
230 |
+
</div>
|
231 |
+
|
232 |
+
<div class="question-<?php echo $i; ?> question-red">
|
233 |
+
<?php _e( 'My custom PHP code is not working.', $text ); ?>
|
234 |
+
<?php _e( 'What could be wrong?', $text ); ?>
|
235 |
+
</div>
|
236 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
237 |
+
<?php _e( 'It happens that your custom PHP code that you insert on the plugin page does not work, even if an error message does not appear.', $text ); ?>
|
238 |
+
<?php _e( 'Here are a few of the most likely causes of the issue:', $text ); ?>
|
239 |
+
<ol class="custom-list">
|
240 |
+
<li><?php _e( 'You have a typo during the insertion of your custom PHP code.', $text ); ?></li>
|
241 |
+
<li><?php _e( 'Your custom PHP code has a syntax error.', $text ); ?></li>
|
242 |
+
<li><?php _e( 'Your custom PHP code is incorrect and may not work.', $text ); ?></li>
|
243 |
+
</ol>
|
244 |
+
</div>
|
245 |
+
|
246 |
+
<div class="question-<?php echo $i; ?> question-red">
|
247 |
+
<?php _e( 'What to do if this plugin crashed the website?', $text ); ?>
|
248 |
+
</div>
|
249 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
250 |
+
<?php _e( 'This plugin has a built-in functions for checking the custom code for syntax errors, duplicate functions names, and etc.', $text ); ?>
|
251 |
+
<?php _e( 'But plugin is not perfect, so there are times when the entered custom code causes the error and white screen (WSOD).', $text ); ?>
|
252 |
+
<?php _e( 'This is due to the fact that your custom code has a syntax error that this plugin could not detect.', $text ); ?>
|
253 |
+
<?php _e( 'When this happens with you, please perform the following steps.', $text ); ?>
|
254 |
+
<ol class="custom-counter">
|
255 |
+
<li>
|
256 |
+
<?php _e( 'Access your server via FTP or SFTP.', $text ); ?>
|
257 |
+
<?php _e( 'If you aren\'t sure how usually your web hosting provider will have instructions somewhere on their website.', $text ); ?>
|
258 |
+
</li>
|
259 |
+
<li>
|
260 |
+
<?php _e( 'Browse to the directory <code>wp-content/plugins/my-custom-functions/</code>.', $text ); ?>
|
261 |
+
<?php _e( 'Please contact your web hosting company to get help if you can\'t find this folder.', $text ); ?>
|
262 |
+
</li>
|
263 |
+
<li>
|
264 |
+
<?php _e( 'Rename the file <code>START</code> to <code>STOP</code>.', $text ); ?>
|
265 |
+
<?php _e( 'This will stop the execution of your custom code.', $text ); ?>
|
266 |
+
</li>
|
267 |
+
<li><?php _e( 'Log in to Admin Area of your WordPress website.', $text ); ?></li>
|
268 |
+
<li><?php _e( 'Go to the plugin settings page <code>Settings</code> ➡ <code>PHP Inserter</code>.', $text ); ?></li>
|
269 |
+
<li><?php _e( 'Edit/fix your custom PHP code that you entered before the crash.', $text ); ?></li>
|
270 |
+
<li><?php _e( 'Return to the plugin folder and rename the file <code>STOP</code> to <code>START</code> and you\'re done!', $text ); ?></li>
|
271 |
+
</ol>
|
272 |
+
<?php _e( 'This plugin stored you entered code in the database of your website.', $text ); ?>
|
273 |
+
<?php _e( 'For getting your code, you also can go to the <code>Database</code> ➡ Table <code>wp_options</code> ➡ Option <code>spacexchimp_p001_settings</code> ➡ <code>option_value</code>.', $text ); ?>
|
274 |
+
<br><br>
|
275 |
+
<?php _e( 'We are already working on a feature to automatically stop the execution of users custom PHP code for cases when this plugin could not detect the error, and this caused the inaccessibility of the website.', $text ); ?>
|
276 |
+
</div>
|
277 |
+
|
278 |
+
<div class="question-<?php echo $i; ?> question-red">
|
279 |
+
<?php _e( 'The last WordPress update is preventing me from editing my website that is using this plugin.', $text ); ?>
|
280 |
+
<?php _e( 'Why is this?', $text ); ?>
|
281 |
+
</div>
|
282 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
283 |
+
<?php _e( 'This plugin can not cause such problem.', $text ); ?>
|
284 |
+
<?php _e( 'More likely, the problem are related to the settings of the website.', $text ); ?>
|
285 |
+
<?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 ); ?>
|
286 |
+
<?php _e( 'Also please try to re-login to the website, this too can help.', $text ); ?>
|
287 |
+
</div>
|
288 |
+
|
289 |
+
<div class="question-<?php echo $i; ?> question-red">
|
290 |
+
<?php _e( 'Where to report bug if found?', $text ); ?>
|
291 |
+
</div>
|
292 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
293 |
+
<?php _e( 'Bug reports are very welcome!', $text ); ?>
|
294 |
+
<?php
|
295 |
+
printf(
|
296 |
+
__( 'Please visit our %s contact page %s and report.', $text ),
|
297 |
+
'<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
|
298 |
+
'</a>'
|
299 |
+
);
|
300 |
+
?>
|
301 |
+
<?php _e( 'Please do not forget to specify the name of the plugin.', $text ); ?>
|
302 |
+
<?php _e( 'Thank you!', $text ); ?>
|
303 |
+
<br><br>
|
304 |
+
<?php _e( 'Please include as much information as possible, including a link to your website where the problem can be seen.', $text ); ?>
|
305 |
+
<?php _e( 'Describe in more detail what exactly you are seeing.', $text ); ?>
|
306 |
+
<?php _e( 'Here are some examples:', $text ); ?>
|
307 |
+
<br><br>
|
308 |
+
<ul class="custom-list">
|
309 |
+
<li><?php _e( 'Elements of the plugin settings page are not working.', $text ); ?></li>
|
310 |
+
<li><?php _e( 'An error message is displayed on the plugin settings page.', $text ); ?></li>
|
311 |
+
<li><?php _e( 'An error message is displayed on the front end of website.', $text ); ?></li>
|
312 |
+
<li><?php _e( 'An error message is displayed on the back end of website.', $text ); ?></li>
|
313 |
+
<li><?php _e( 'Custom code is inserted on the plugin settings page, but it is not applied on the website.', $text ); ?></li>
|
314 |
+
<li><?php _e( 'Website is crashed.', $text ); ?></li>
|
315 |
+
</ul>
|
316 |
+
</div>
|
317 |
+
|
318 |
+
<div class="question-<?php echo $i; ?>">
|
319 |
+
<?php _e( 'Where to share any ideas or suggestions to make the plugin better?', $text ); ?>
|
320 |
+
</div>
|
321 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
322 |
+
<?php _e( 'Any suggestions are very welcome!', $text ); ?>
|
323 |
+
<?php
|
324 |
+
printf(
|
325 |
+
__( 'Please visit our %s contact page %s.', $text ),
|
326 |
+
'<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
|
327 |
+
'</a>'
|
328 |
+
);
|
329 |
+
?>
|
330 |
+
<?php _e( 'Please do not forget to specify the name of the plugin.', $text ); ?>
|
331 |
+
<?php _e( 'Thank you!', $text ); ?>
|
332 |
+
</div>
|
333 |
+
|
334 |
+
<div class="question-<?php echo $i; ?>">
|
335 |
+
<?php _e( 'I love this plugin!', $text ); ?>
|
336 |
+
<?php _e( 'Can I help somehow?', $text ); ?>
|
337 |
+
</div>
|
338 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
339 |
+
<?php _e( 'Yes, any contributions are very welcome!', $text ); ?>
|
340 |
+
<?php
|
341 |
+
printf(
|
342 |
+
__( 'Please visit our %s Support Us %s page.', $text ),
|
343 |
+
'<a href="https://www.spacexchimp.com/donate.html" target="_blank">',
|
344 |
+
'</a>'
|
345 |
+
);
|
346 |
+
?>
|
347 |
+
<?php _e( 'Thank you!', $text ); ?>
|
348 |
+
</div>
|
349 |
+
|
350 |
+
<div class="question-<?php echo $i; ?>">
|
351 |
+
<?php _e( 'Where can I find information about your licenses, payment process and refunds?', $text ); ?>
|
352 |
+
</div>
|
353 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
354 |
+
<?php
|
355 |
+
printf(
|
356 |
+
__( 'Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page.', $text ),
|
357 |
+
'<a href="https://www.spacexchimp.com/faq.html" target="_blank">',
|
358 |
+
'</a>'
|
359 |
+
);
|
360 |
+
?>
|
361 |
+
</div>
|
362 |
+
|
363 |
+
<div class="question-<?php echo $i; ?>">
|
364 |
+
<?php _e( 'Where can I find information about your customer support?', $text ); ?>
|
365 |
+
</div>
|
366 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
367 |
+
<?php
|
368 |
+
printf(
|
369 |
+
__( 'Answers to common questions about our customer support can be found on our %s Common Questions %s page.', $text ),
|
370 |
+
'<a href="https://www.spacexchimp.com/faq.html" target="_blank">',
|
371 |
+
'</a>'
|
372 |
+
);
|
373 |
+
?>
|
374 |
+
</div>
|
375 |
+
|
376 |
+
<div class="question-<?php echo $i; ?>">
|
377 |
+
<?php _e( 'Where can I find information about your affiliate program?', $text ); ?>
|
378 |
+
</div>
|
379 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
380 |
+
<?php
|
381 |
+
printf(
|
382 |
+
__( 'Answers to common questions about our affiliate program can be found on our %s Common Questions %s page.', $text ),
|
383 |
+
'<a href="https://www.spacexchimp.com/faq.html" target="_blank">',
|
384 |
+
'</a>'
|
385 |
+
);
|
386 |
+
?>
|
387 |
+
</div>
|
388 |
+
|
389 |
+
<div class="question-<?php echo $i; ?>">
|
390 |
+
<?php _e( 'My question wasn\'t answered here.', $text ); ?>
|
391 |
+
</div>
|
392 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
393 |
+
<?php
|
394 |
+
printf(
|
395 |
+
__( 'You can ask your question on %s this page %s.', $text ),
|
396 |
+
'<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
|
397 |
+
'</a>'
|
398 |
+
);
|
399 |
+
?>
|
400 |
+
<?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 ); ?>
|
401 |
+
</div>
|
402 |
+
|
403 |
+
</div>
|
404 |
+
</div>
|
405 |
+
<?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_P001_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_P001_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,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 PHP code 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 PHP code in the code editor field.', $text ); ?>
|
20 |
+
<br><br>
|
21 |
+
<p class="note">
|
22 |
+
<b><?php _e( 'Note!', $text ); ?></b>
|
23 |
+
<?php _e( 'Do not wrap your custom PHP code in HTML tags, such as <code><?php</code>...<code>?></code>.', $text ); ?>
|
24 |
+
</p>
|
25 |
+
<p class="note">
|
26 |
+
<b><?php _e( 'Note!', $text ); ?></b>
|
27 |
+
<?php
|
28 |
+
printf(
|
29 |
+
__( 'Before use, please read the %s instructions %s in our Blog on what to do in case of a website crash.', $text ),
|
30 |
+
'<a href="https://mycyberuniverse.com/my-custom-functions-plugin-causes-site-failure.html" target="_blank">',
|
31 |
+
'</a>'
|
32 |
+
);
|
33 |
+
?>
|
34 |
+
</p>
|
35 |
+
</li>
|
36 |
+
<li><?php _e( 'Switch the toggle to the "ON" position.', $text ); ?></li>
|
37 |
+
<li><?php _e( 'Click the "Save changes" button.', $text ); ?></li>
|
38 |
+
<li><?php _e( 'Enjoy the result of applying your custom PHP code.', $text ); ?> <?php _e( 'It\'s that simple!', $text ); ?></li>
|
39 |
+
</ol>
|
40 |
+
<p class="note">
|
41 |
+
<?php
|
42 |
+
printf(
|
43 |
+
__( 'If you want more options, then %s let us know %s and we will be happy to add them.', $text ),
|
44 |
+
'<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
|
45 |
+
'</a>'
|
46 |
+
);
|
47 |
+
?>
|
48 |
+
</p>
|
49 |
+
</div>
|
50 |
+
</div>
|
51 |
+
<?php
|
languages/my-custom-functions-de_DE.mo
CHANGED
Binary file
|
languages/my-custom-functions-de_DE.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\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 "PHP Inserter"
|
37 |
msgstr "PHP Inserter"
|
38 |
|
39 |
-
#: inc/php/messages.php:27 inc/php/
|
40 |
msgid "Hello!"
|
41 |
msgstr "Hallo!"
|
42 |
|
@@ -69,684 +69,685 @@ msgstr ""
|
|
69 |
msgid "Please, check the code and try again."
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: inc/php/page.php:
|
73 |
#, php-format
|
74 |
msgid "by %s Space X-Chimp %s"
|
75 |
msgstr "by %s Space X-Chimp %s"
|
76 |
|
77 |
-
#: inc/php/page.php:
|
78 |
msgid "Version"
|
79 |
msgstr "Version"
|
80 |
|
81 |
-
#: inc/php/page.php:
|
82 |
msgid "Main"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: inc/php/page.php:
|
86 |
msgid "Usage"
|
87 |
msgstr "Verwendung"
|
88 |
|
89 |
-
#: inc/php/page.php:
|
90 |
msgid "F.A.Q."
|
91 |
msgstr "F.A.Q."
|
92 |
|
93 |
-
#: inc/php/page.php:
|
94 |
msgid "Support"
|
95 |
msgstr "Unterstützung"
|
96 |
|
97 |
-
#: inc/php/page.php:
|
98 |
msgid "Store"
|
99 |
msgstr "Geschäft"
|
100 |
|
101 |
-
#: inc/php/
|
102 |
-
msgid "
|
103 |
-
msgstr "
|
104 |
-
|
105 |
-
#: inc/php/page.php:68
|
106 |
-
msgid "To add your custom PHP code to your website, simply follow these steps:"
|
107 |
-
msgstr ""
|
108 |
-
|
109 |
-
#: inc/php/page.php:70
|
110 |
-
msgid "Go to the \"Main\" tab on this page."
|
111 |
-
msgstr ""
|
112 |
-
|
113 |
-
#: inc/php/page.php:72
|
114 |
-
msgid "Place your custom PHP code in the code editor field."
|
115 |
-
msgstr ""
|
116 |
-
|
117 |
-
#: inc/php/page.php:75 inc/php/page.php:79
|
118 |
-
msgid "Note!"
|
119 |
-
msgstr "Achtung!"
|
120 |
|
121 |
-
#: inc/php/
|
122 |
-
msgid "
|
123 |
-
msgstr ""
|
124 |
|
125 |
-
#: inc/php/
|
126 |
-
|
127 |
-
msgid "Before use, please read the %s instructions %s in our Blog on what to do in case of a website crash."
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: inc/php/
|
131 |
-
msgid "
|
132 |
-
msgstr ""
|
133 |
|
134 |
-
#: inc/php/
|
135 |
-
msgid "
|
136 |
-
msgstr "
|
137 |
|
138 |
-
#: inc/php/
|
139 |
-
msgid "
|
140 |
-
msgstr ""
|
141 |
|
142 |
-
#: inc/php/
|
143 |
-
|
144 |
-
|
|
|
145 |
|
146 |
-
#: inc/php/
|
147 |
-
|
148 |
-
|
149 |
-
msgstr "Wenn Sie mehr Optionen benötigen, %s teilen Sie uns %s dies mit und wir werden sie gerne hinzufügen."
|
150 |
|
151 |
-
#: inc/php/
|
152 |
msgid "Frequently Asked Questions"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: inc/php/
|
156 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
157 |
msgstr "Wenn Sie Fragen haben, lesen Sie bitte die F.A.Q.s und schauen Sie nach, ob Ihre Antwort dabei ist."
|
158 |
|
159 |
-
#: inc/php/
|
160 |
msgid "Where can I find a documentation for this plugin?"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: inc/php/
|
164 |
#, php-format
|
165 |
msgid "Please visit our %s Documentation site %s to view documentation."
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: inc/php/
|
169 |
msgid "Will this plugin work on my wordpress.COM website?"
|
170 |
msgstr "Funktioniert dieses Plugin auf meiner wordpress.COM Webseite?"
|
171 |
|
172 |
-
#: inc/php/
|
173 |
msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
|
174 |
msgstr "Leider nicht. Dieses Plugin ist nur verfügbar auf self-hosted (wordpress.ORG) Webseiten."
|
175 |
|
176 |
-
#: inc/php/
|
177 |
msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: inc/php/
|
181 |
msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: inc/php/
|
185 |
#, php-format
|
186 |
msgid "You can learn more about the difference here: %s ."
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: inc/php/
|
190 |
msgid "Will this plugin work/compatible with the theme I use?"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: inc/php/
|
194 |
msgid "This plugin is compatible with most themes."
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: inc/php/
|
198 |
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."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: inc/php/
|
202 |
msgid "We constantly check this plugin for compatibility with third-party themes."
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: inc/php/
|
206 |
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."
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: inc/php/
|
210 |
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."
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: inc/php/
|
214 |
msgid "Will this plugin work/compatible with other plugins that I use?"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: inc/php/
|
218 |
msgid "This plugin is compatible with most plugins."
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: inc/php/
|
222 |
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."
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: inc/php/
|
226 |
msgid "We constantly check this plugin for compatibility with third-party plugins."
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: inc/php/
|
230 |
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."
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: inc/php/
|
234 |
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."
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: inc/php/
|
238 |
msgid "Can I use this plugin on my language?"
|
239 |
msgstr "Kann ich das Plugin in meiner Sprache verwenden?"
|
240 |
|
241 |
-
#: inc/php/
|
242 |
msgid "Yes."
|
243 |
msgstr "Ja."
|
244 |
|
245 |
-
#: inc/php/
|
246 |
msgid "This plugin is ready for translation and has already been translated into several languages."
|
247 |
msgstr "Dieses Plugin übersetzbar und bereits in mehreren Sprachen verfügbar."
|
248 |
|
249 |
-
#: inc/php/
|
250 |
msgid "But If your language is not available then you can make one."
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: inc/php/
|
254 |
msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
|
255 |
msgstr "Vielleicht sind nicht alle vorhandenen Übersetzungen aktuell. Gerne können Sie an den Korrekturen mitwirken."
|
256 |
|
257 |
-
#: inc/php/
|
258 |
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
259 |
msgstr "Viele Benutzer des Plugins freuen sich darüber, wenn Sie Ihre Übersetzung mit der Öffentlichkeit teilen."
|
260 |
|
261 |
-
#: inc/php/
|
262 |
msgid "Thanks for your contribution!"
|
263 |
msgstr "Danke für Ihre Mithilfe!"
|
264 |
|
265 |
-
#: inc/php/
|
266 |
#, php-format
|
267 |
msgid "If you want to help translate this plugin, please visit the %s."
|
268 |
msgstr "Wenn Sie bei der Übersetzung dieses Plugins helfen wollen, bitte besuchen Sie %s."
|
269 |
|
270 |
-
#: inc/php/
|
271 |
msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
|
272 |
msgstr "Sie können auch die POT Datei, die Sie im “languages” Ordner finden, verwenden, um eine PO Übersetzungsdatei zu erstellen."
|
273 |
|
274 |
-
#: inc/php/
|
275 |
#, php-format
|
276 |
msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
|
277 |
msgstr "Senden Sie die übersetzte PO Datei an uns ( %s ) und wir werde die Übersetzung beim nächsten Plugin Update hinzufügen."
|
278 |
|
279 |
-
#: inc/php/
|
280 |
msgid "How does it work?"
|
281 |
msgstr "Wie arbeitet das Plugin?"
|
282 |
|
283 |
-
#: inc/php/
|
284 |
msgid "On the \"Main\" tab, place your custom PHP code in the code editor field, switch the toggle to the \"ON\" position and click the \"Save changes\" button."
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: inc/php/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
288 |
msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: inc/php/
|
292 |
msgid "But you need to do it properly, like this:"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: inc/php/
|
296 |
msgid "How much of PHP code (characters) I can enter in the code editor?"
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: inc/php/
|
300 |
msgid "We don't limit the number of characters."
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: inc/php/
|
304 |
msgid "Does this plugin requires any modification of the theme?"
|
305 |
msgstr "Benötigt das Plugin Veränderungen am Theme?"
|
306 |
|
307 |
-
#: inc/php/
|
308 |
msgid "Absolutely not."
|
309 |
msgstr "Absolut nicht."
|
310 |
|
311 |
-
#: inc/php/
|
312 |
msgid "This plugin is configurable entirely from the plugin settings page."
|
313 |
msgstr "Alle Konfigurationen des Plugins finden Sie auf Einstellungsseite des Plugins."
|
314 |
|
315 |
-
#: inc/php/
|
316 |
msgid "Does this require any knowledge of HTML or CSS?"
|
317 |
msgstr "Brauche ich HTML oder CSS Kenntnisse?"
|
318 |
|
319 |
-
#: inc/php/
|
320 |
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: inc/php/
|
324 |
msgid "Can I add my custom PHP code to a specific page of my website?"
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: inc/php/
|
328 |
msgid "For now, this plugin does not have an option to apply the custom PHP code only on specific pages."
|
329 |
msgstr ""
|
330 |
|
331 |
-
#: inc/php/
|
332 |
msgid "We plan to add this feature soon."
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: inc/php/
|
336 |
msgid "But for now in order to apply your custom PHP code only on specific pages of your website, you need to wrap your custom PHP code in a PHP function that will determine the page you want."
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: inc/php/
|
340 |
msgid "You need something like this:"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: inc/php/
|
344 |
msgid "It's not working."
|
345 |
msgstr "Es funktioniert nicht."
|
346 |
|
347 |
-
#: inc/php/
|
348 |
msgid "What could be wrong?"
|
349 |
msgstr "Was könnte falsch sein?"
|
350 |
|
351 |
-
#: inc/php/
|
352 |
msgid "As with every plugin, it's possible that things don't work."
|
353 |
msgstr "Wie bei jedem Plugin ist es möglich, dass nicht alles funktioniert."
|
354 |
|
355 |
-
#: inc/php/
|
356 |
msgid "It's impossible to tell what could be wrong exactly."
|
357 |
msgstr "Es ist unmöglich genau festzustellen was falsch ist."
|
358 |
|
359 |
-
#: inc/php/
|
360 |
msgid "The most common reason for this is a web browser's cache."
|
361 |
msgstr "Der häufigste Grund dafür ist der Cache Ihres Webbrowsers."
|
362 |
|
363 |
-
#: inc/php/
|
364 |
msgid "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load."
|
365 |
msgstr "Jeder Webbrowser speichert den Cache der besuchten Webseite (Seiten, Bilder, usw.) um die Bandbreite zu reduzieren."
|
366 |
|
367 |
-
#: inc/php/
|
368 |
msgid "This is called the browser's cache."
|
369 |
msgstr "Das nennt man den Browser Cache."
|
370 |
|
371 |
-
#: inc/php/
|
372 |
msgid "Clearing your browser's cache may solve the problem."
|
373 |
msgstr "Wenn Sie den Cache Ihres Browsers löschen, könnte das Problem behoben sein."
|
374 |
|
375 |
-
#: inc/php/
|
376 |
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."
|
377 |
msgstr "Wenn Sie jedoch eine Support Anfrage im Plugins Support Forum von wordpress.ORG stellen, helfe wir Ihnen gerne."
|
378 |
|
379 |
-
#: inc/php/
|
380 |
msgid "Please include as much information as possible, including a link to your website where the problem can be seen."
|
381 |
msgstr "Bitte fügen Sie so viele Informationen wie möglich und einen Link zu der Webseite hinzu, wo das Problem auftritt."
|
382 |
|
383 |
-
#: inc/php/
|
384 |
msgid "On the plugin settings page, an error message appears."
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: inc/php/
|
388 |
msgid "Here are a few of the most likely causes of the error message:"
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: inc/php/
|
392 |
msgid "You make a syntax error in the code that you have entered."
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: inc/php/
|
396 |
msgid "Check the syntax of your code and try again."
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: inc/php/
|
400 |
msgid "You entered two functions with the same name."
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: inc/php/
|
404 |
msgid "Use a unique names for your functions."
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: inc/php/
|
408 |
msgid "You have entered function with a name that is already occupied by another function."
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: inc/php/
|
412 |
msgid "Use a unique name for your function."
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: inc/php/
|
416 |
msgid "You are trying to overwrite an existing function (of WordPress, theme, or plugin)."
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: inc/php/
|
420 |
msgid "Instead, use filters and hooks."
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: inc/php/
|
424 |
msgid "My custom PHP code is not working."
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: inc/php/
|
428 |
msgid "It happens that your custom PHP code that you insert on the plugin page does not work, even if an error message does not appear."
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: inc/php/
|
432 |
msgid "Here are a few of the most likely causes of the issue:"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: inc/php/
|
436 |
msgid "You have a typo during the insertion of your custom PHP code."
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: inc/php/
|
440 |
msgid "Your custom PHP code has a syntax error."
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: inc/php/
|
444 |
msgid "Your custom PHP code is incorrect and may not work."
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: inc/php/
|
448 |
msgid "What to do if this plugin crashed the website?"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: inc/php/
|
452 |
msgid "This plugin has a built-in functions for checking the custom code for syntax errors, duplicate functions names, and etc."
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: inc/php/
|
456 |
msgid "But plugin is not perfect, so there are times when the entered custom code causes the error and white screen (WSOD)."
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: inc/php/
|
460 |
msgid "This is due to the fact that your custom code has a syntax error that this plugin could not detect."
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: inc/php/
|
464 |
msgid "When this happens with you, please perform the following steps."
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: inc/php/
|
468 |
msgid "Access your server via FTP or SFTP."
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: inc/php/
|
472 |
msgid "If you aren't sure how usually your web hosting provider will have instructions somewhere on their website."
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: inc/php/
|
476 |
msgid "Browse to the directory <code>wp-content/plugins/my-custom-functions/</code>."
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: inc/php/
|
480 |
msgid "Please contact your web hosting company to get help if you can't find this folder."
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: inc/php/
|
484 |
msgid "Rename the file <code>START</code> to <code>STOP</code>."
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: inc/php/
|
488 |
msgid "This will stop the execution of your custom code."
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: inc/php/
|
492 |
msgid "Log in to Admin Area of your WordPress website."
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: inc/php/
|
496 |
msgid "Go to the plugin settings page <code>Settings</code> ➡ <code>PHP Inserter</code>."
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: inc/php/
|
500 |
msgid "Edit/fix your custom PHP code that you entered before the crash."
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: inc/php/
|
504 |
msgid "Return to the plugin folder and rename the file <code>STOP</code> to <code>START</code> and you're done!"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: inc/php/
|
508 |
msgid "This plugin stored you entered code in the database of your website."
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: inc/php/
|
512 |
msgid "For getting your code, you also can go to the <code>Database</code> ➡ Table <code>wp_options</code> ➡ Option <code>spacexchimp_p001_settings</code> ➡ <code>option_value</code>."
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: inc/php/
|
516 |
msgid "We are already working on a feature to automatically stop the execution of users custom PHP code for cases when this plugin could not detect the error, and this caused the inaccessibility of the website."
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: inc/php/
|
520 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
|
521 |
msgstr "Das letzte WordPress-Update hindert mich daran, meine Webseite, die dieses Plugin verwendet, zu bearbeiten."
|
522 |
|
523 |
-
#: inc/php/
|
524 |
msgid "Why is this?"
|
525 |
msgstr "Warum ist das so?"
|
526 |
|
527 |
-
#: inc/php/
|
528 |
msgid "This plugin can not cause such problem."
|
529 |
msgstr "Dieses Plugin kann ein solches Problem nicht verursachen."
|
530 |
|
531 |
-
#: inc/php/
|
532 |
msgid "More likely, the problem are related to the settings of the website."
|
533 |
msgstr "Wahrscheinlich hängt das Problem mit den Einstellungen der Webseite zusammen."
|
534 |
|
535 |
-
#: inc/php/
|
536 |
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."
|
537 |
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."
|
538 |
|
539 |
-
#: inc/php/
|
540 |
msgid "Also please try to re-login to the website, this too can help."
|
541 |
msgstr "Versuchen Sie auch, sich erneut auf der Webseite anzumelden, auch dies kann helfen."
|
542 |
|
543 |
-
#: inc/php/
|
544 |
msgid "Where to report bug if found?"
|
545 |
msgstr "Wo kann ich eine Fehler melden?"
|
546 |
|
547 |
-
#: inc/php/
|
548 |
msgid "Bug reports are very welcome!"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: inc/php/
|
552 |
#, php-format
|
553 |
msgid "Please visit our %s contact page %s and report."
|
554 |
msgstr "Bitte besuchen Sie unsere %s Kontaktseite %s und berichten Sie."
|
555 |
|
556 |
-
#: inc/php/
|
557 |
msgid "Please do not forget to specify the name of the plugin."
|
558 |
msgstr "Bitte vergiss nicht den Namen des Plugins anzugeben."
|
559 |
|
560 |
-
#: inc/php/
|
561 |
msgid "Thank you!"
|
562 |
msgstr "Danke!"
|
563 |
|
564 |
-
#: inc/php/
|
565 |
msgid "Describe in more detail what exactly you are seeing."
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: inc/php/
|
569 |
msgid "Here are some examples:"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: inc/php/
|
573 |
msgid "Elements of the plugin settings page are not working."
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: inc/php/
|
577 |
msgid "An error message is displayed on the plugin settings page."
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: inc/php/
|
581 |
msgid "An error message is displayed on the front end of website."
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: inc/php/
|
585 |
msgid "An error message is displayed on the back end of website."
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: inc/php/
|
589 |
msgid "Custom code is inserted on the plugin settings page, but it is not applied on the website."
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: inc/php/
|
593 |
msgid "Website is crashed."
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: inc/php/
|
597 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
598 |
msgstr "Wo können Sie Ideen oder Vorschläge loswerden, um das Plugin besser zu machen?"
|
599 |
|
600 |
-
#: inc/php/
|
601 |
msgid "Any suggestions are very welcome!"
|
602 |
msgstr "Irgendwelche Vorschläge sind sehr willkommen!"
|
603 |
|
604 |
-
#: inc/php/
|
605 |
#, php-format
|
606 |
msgid "Please visit our %s contact page %s."
|
607 |
msgstr "Bitte besuchen Sie unsere %s Kontaktseite %s."
|
608 |
|
609 |
-
#: inc/php/
|
610 |
msgid "I love this plugin!"
|
611 |
msgstr "Ich liebe dieses Plugin!"
|
612 |
|
613 |
-
#: inc/php/
|
614 |
msgid "Can I help somehow?"
|
615 |
msgstr "Kann ich Irgendwie helfen?"
|
616 |
|
617 |
-
#: inc/php/
|
618 |
msgid "Yes, any contributions are very welcome!"
|
619 |
msgstr "Ja, jede Mithilfe ist sehr willkommen!"
|
620 |
|
621 |
-
#: inc/php/
|
622 |
#, php-format
|
623 |
msgid "Please visit our %s Support Us %s page."
|
624 |
msgstr "Bitte besuchen Sie unsere %s Support Us %s Seite."
|
625 |
|
626 |
-
#: inc/php/
|
627 |
msgid "Where can I find information about your licenses, payment process and refunds?"
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: inc/php/
|
631 |
#, php-format
|
632 |
msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: inc/php/
|
636 |
msgid "Where can I find information about your customer support?"
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: inc/php/
|
640 |
#, php-format
|
641 |
msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: inc/php/
|
645 |
msgid "Where can I find information about your affiliate program?"
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: inc/php/
|
649 |
#, php-format
|
650 |
msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: inc/php/
|
654 |
msgid "My question wasn't answered here."
|
655 |
msgstr "Meine Fragen wurden nicht beantwortet."
|
656 |
|
657 |
-
#: inc/php/
|
658 |
#, php-format
|
659 |
msgid "You can ask your question on %s this page %s."
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: inc/php/
|
663 |
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."
|
664 |
msgstr "Aber bitte bedenken Sie, dass dieses Plugin kostenlos ist. Es gibt kein Support Team, deshalb habe wir keine Möglichkeit jedem zu antworten."
|
665 |
|
666 |
-
#: inc/php/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
667 |
msgid "Support Us"
|
668 |
msgstr "Unterstütze uns"
|
669 |
|
670 |
-
#: inc/php/
|
671 |
-
msgid "Donate with PayPal"
|
672 |
-
msgstr "Spende mit PayPal"
|
673 |
-
|
674 |
-
#: inc/php/page.php:523
|
675 |
#, php-format
|
676 |
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."
|
677 |
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."
|
678 |
|
679 |
-
#: inc/php/
|
680 |
msgid "Our intention is to create projects that will make this world a better place."
|
681 |
msgstr "Unser Absicht ist es, Projekte zu entwickeln, die diese Welt zu einem besseren Ort machen."
|
682 |
|
683 |
-
#: inc/php/
|
684 |
msgid "Our motto is - «Follow your dreams and don’t give up»."
|
685 |
msgstr ""
|
686 |
|
687 |
-
#: inc/php/
|
688 |
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."
|
689 |
msgstr "Wir sind begeistert von unserer Arbeit, wir mag, was wir tue, und hoffe, dass Sie auch von unsere Projekten bereichert werden."
|
690 |
|
691 |
-
#: inc/php/
|
692 |
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."
|
693 |
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."
|
694 |
|
695 |
-
#: inc/php/
|
696 |
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."
|
697 |
msgstr ""
|
698 |
|
699 |
-
#: inc/php/
|
700 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
701 |
msgstr "Wenn Ihnen unsere Arbeit gefällt, können Sie uns gerne einen Kaffee kaufen!"
|
702 |
|
703 |
-
#: inc/php/
|
704 |
msgid "Thank you for your support!"
|
705 |
msgstr "Danke für Ihre Unterstützung!"
|
706 |
|
707 |
-
#: inc/php/
|
708 |
-
msgid "
|
709 |
-
msgstr ""
|
710 |
|
711 |
-
#: inc/php/
|
712 |
-
msgid "
|
713 |
msgstr ""
|
714 |
|
715 |
-
#: inc/php/
|
716 |
-
msgid "
|
717 |
msgstr ""
|
718 |
|
719 |
-
#: inc/php/
|
720 |
-
msgid "
|
721 |
-
msgstr "
|
722 |
-
|
723 |
-
#: inc/php/settings.php:56 inc/php/sidebar.php:49
|
724 |
-
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."
|
725 |
-
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."
|
726 |
|
727 |
-
#: inc/php/
|
728 |
-
msgid "
|
729 |
-
msgstr "
|
730 |
|
731 |
-
#: inc/php/
|
732 |
-
msgid "
|
733 |
-
msgstr "
|
734 |
|
735 |
-
#: inc/php/
|
736 |
-
|
737 |
-
|
|
|
738 |
|
739 |
-
#: inc/php/
|
740 |
-
msgid "
|
741 |
msgstr ""
|
742 |
|
743 |
-
#: inc/php/
|
744 |
-
msgid "
|
745 |
-
msgstr "
|
746 |
|
747 |
-
#: inc/php/
|
748 |
-
|
749 |
-
|
|
|
750 |
|
751 |
#. Plugin Name of the plugin/theme
|
752 |
msgid "My Custom Functions"
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
+
"POT-Creation-Date: 2019-03-01 06:43+0300\n"
|
7 |
+
"PO-Revision-Date: 2019-03-01 06:43+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: German\n"
|
10 |
"Language: de_DE\n"
|
36 |
msgid "PHP Inserter"
|
37 |
msgstr "PHP Inserter"
|
38 |
|
39 |
+
#: inc/php/messages.php:27 inc/php/tabs/support.php:25
|
40 |
msgid "Hello!"
|
41 |
msgstr "Hallo!"
|
42 |
|
69 |
msgid "Please, check the code and try again."
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: inc/php/page.php:35
|
73 |
#, php-format
|
74 |
msgid "by %s Space X-Chimp %s"
|
75 |
msgstr "by %s Space X-Chimp %s"
|
76 |
|
77 |
+
#: inc/php/page.php:41
|
78 |
msgid "Version"
|
79 |
msgstr "Version"
|
80 |
|
81 |
+
#: inc/php/page.php:48
|
82 |
msgid "Main"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: inc/php/page.php:49
|
86 |
msgid "Usage"
|
87 |
msgstr "Verwendung"
|
88 |
|
89 |
+
#: inc/php/page.php:50
|
90 |
msgid "F.A.Q."
|
91 |
msgstr "F.A.Q."
|
92 |
|
93 |
+
#: inc/php/page.php:51 inc/php/sidebar.php:47 inc/php/tabs/settings.php:54
|
94 |
msgid "Support"
|
95 |
msgstr "Unterstützung"
|
96 |
|
97 |
+
#: inc/php/page.php:52
|
98 |
msgid "Store"
|
99 |
msgstr "Geschäft"
|
100 |
|
101 |
+
#: inc/php/sidebar.php:16
|
102 |
+
msgid "We are «Space X-Chimp»"
|
103 |
+
msgstr "Wir sind «Space X-Chimp»"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
104 |
|
105 |
+
#: inc/php/sidebar.php:33
|
106 |
+
msgid "About"
|
107 |
+
msgstr "Über"
|
108 |
|
109 |
+
#: inc/php/sidebar.php:35
|
110 |
+
msgid "This plugin gives you the ability to easily and safely add your custom PHP code to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
|
|
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: inc/php/sidebar.php:40
|
114 |
+
msgid "Help"
|
115 |
+
msgstr "Hilfe"
|
116 |
|
117 |
+
#: inc/php/sidebar.php:42
|
118 |
+
msgid "If you have a question, please read the information in the FAQ section."
|
119 |
+
msgstr "Wenn Sie Fragen haben, lesen Sie bitte auch die Fragen im FAQ Bereich."
|
120 |
|
121 |
+
#: inc/php/sidebar.php:49 inc/php/tabs/settings.php:56
|
122 |
+
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."
|
123 |
+
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."
|
124 |
|
125 |
+
#: inc/php/sidebar.php:54 inc/php/tabs/settings.php:61
|
126 |
+
#: inc/php/tabs/support.php:21
|
127 |
+
msgid "Donate with PayPal"
|
128 |
+
msgstr "Spende mit PayPal"
|
129 |
|
130 |
+
#: inc/php/sidebar.php:56 inc/php/tabs/settings.php:63
|
131 |
+
msgid "Thanks for your support!"
|
132 |
+
msgstr "Danke für Ihre Unterstützung!"
|
|
|
133 |
|
134 |
+
#: inc/php/tabs/faq.php:13
|
135 |
msgid "Frequently Asked Questions"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: inc/php/tabs/faq.php:17
|
139 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
140 |
msgstr "Wenn Sie Fragen haben, lesen Sie bitte die F.A.Q.s und schauen Sie nach, ob Ihre Antwort dabei ist."
|
141 |
|
142 |
+
#: inc/php/tabs/faq.php:42
|
143 |
msgid "Where can I find a documentation for this plugin?"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: inc/php/tabs/faq.php:47
|
147 |
#, php-format
|
148 |
msgid "Please visit our %s Documentation site %s to view documentation."
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: inc/php/tabs/faq.php:55
|
152 |
msgid "Will this plugin work on my wordpress.COM website?"
|
153 |
msgstr "Funktioniert dieses Plugin auf meiner wordpress.COM Webseite?"
|
154 |
|
155 |
+
#: inc/php/tabs/faq.php:58
|
156 |
msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
|
157 |
msgstr "Leider nicht. Dieses Plugin ist nur verfügbar auf self-hosted (wordpress.ORG) Webseiten."
|
158 |
|
159 |
+
#: inc/php/tabs/faq.php:60
|
160 |
msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: inc/php/tabs/faq.php:61
|
164 |
msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: inc/php/tabs/faq.php:64
|
168 |
#, php-format
|
169 |
msgid "You can learn more about the difference here: %s ."
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: inc/php/tabs/faq.php:71
|
173 |
msgid "Will this plugin work/compatible with the theme I use?"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: inc/php/tabs/faq.php:74
|
177 |
msgid "This plugin is compatible with most themes."
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: inc/php/tabs/faq.php:75
|
181 |
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."
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: inc/php/tabs/faq.php:76
|
185 |
msgid "We constantly check this plugin for compatibility with third-party themes."
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: inc/php/tabs/faq.php:77
|
189 |
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."
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: inc/php/tabs/faq.php:79
|
193 |
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."
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: inc/php/tabs/faq.php:83
|
197 |
msgid "Will this plugin work/compatible with other plugins that I use?"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: inc/php/tabs/faq.php:86
|
201 |
msgid "This plugin is compatible with most plugins."
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: inc/php/tabs/faq.php:87
|
205 |
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."
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: inc/php/tabs/faq.php:88
|
209 |
msgid "We constantly check this plugin for compatibility with third-party plugins."
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: inc/php/tabs/faq.php:89
|
213 |
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."
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: inc/php/tabs/faq.php:91
|
217 |
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."
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: inc/php/tabs/faq.php:95
|
221 |
msgid "Can I use this plugin on my language?"
|
222 |
msgstr "Kann ich das Plugin in meiner Sprache verwenden?"
|
223 |
|
224 |
+
#: inc/php/tabs/faq.php:98 inc/php/tabs/faq.php:133
|
225 |
msgid "Yes."
|
226 |
msgstr "Ja."
|
227 |
|
228 |
+
#: inc/php/tabs/faq.php:99
|
229 |
msgid "This plugin is ready for translation and has already been translated into several languages."
|
230 |
msgstr "Dieses Plugin übersetzbar und bereits in mehreren Sprachen verfügbar."
|
231 |
|
232 |
+
#: inc/php/tabs/faq.php:100
|
233 |
msgid "But If your language is not available then you can make one."
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: inc/php/tabs/faq.php:101
|
237 |
msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
|
238 |
msgstr "Vielleicht sind nicht alle vorhandenen Übersetzungen aktuell. Gerne können Sie an den Korrekturen mitwirken."
|
239 |
|
240 |
+
#: inc/php/tabs/faq.php:102
|
241 |
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
242 |
msgstr "Viele Benutzer des Plugins freuen sich darüber, wenn Sie Ihre Übersetzung mit der Öffentlichkeit teilen."
|
243 |
|
244 |
+
#: inc/php/tabs/faq.php:103
|
245 |
msgid "Thanks for your contribution!"
|
246 |
msgstr "Danke für Ihre Mithilfe!"
|
247 |
|
248 |
+
#: inc/php/tabs/faq.php:107
|
249 |
#, php-format
|
250 |
msgid "If you want to help translate this plugin, please visit the %s."
|
251 |
msgstr "Wenn Sie bei der Übersetzung dieses Plugins helfen wollen, bitte besuchen Sie %s."
|
252 |
|
253 |
+
#: inc/php/tabs/faq.php:111
|
254 |
msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
|
255 |
msgstr "Sie können auch die POT Datei, die Sie im “languages” Ordner finden, verwenden, um eine PO Übersetzungsdatei zu erstellen."
|
256 |
|
257 |
+
#: inc/php/tabs/faq.php:114
|
258 |
#, php-format
|
259 |
msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
|
260 |
msgstr "Senden Sie die übersetzte PO Datei an uns ( %s ) und wir werde die Übersetzung beim nächsten Plugin Update hinzufügen."
|
261 |
|
262 |
+
#: inc/php/tabs/faq.php:121
|
263 |
msgid "How does it work?"
|
264 |
msgstr "Wie arbeitet das Plugin?"
|
265 |
|
266 |
+
#: inc/php/tabs/faq.php:124
|
267 |
msgid "On the \"Main\" tab, place your custom PHP code in the code editor field, switch the toggle to the \"ON\" position and click the \"Save changes\" button."
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: inc/php/tabs/faq.php:125 inc/php/tabs/usage.php:38
|
271 |
+
msgid "Enjoy the result of applying your custom PHP code."
|
272 |
+
msgstr ""
|
273 |
+
|
274 |
+
#: inc/php/tabs/faq.php:126 inc/php/tabs/usage.php:38
|
275 |
+
msgid "It's that simple!"
|
276 |
+
msgstr "Es ist ganz einfach!"
|
277 |
+
|
278 |
+
#: inc/php/tabs/faq.php:130
|
279 |
msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: inc/php/tabs/faq.php:134
|
283 |
msgid "But you need to do it properly, like this:"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: inc/php/tabs/faq.php:146
|
287 |
msgid "How much of PHP code (characters) I can enter in the code editor?"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: inc/php/tabs/faq.php:149
|
291 |
msgid "We don't limit the number of characters."
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: inc/php/tabs/faq.php:153
|
295 |
msgid "Does this plugin requires any modification of the theme?"
|
296 |
msgstr "Benötigt das Plugin Veränderungen am Theme?"
|
297 |
|
298 |
+
#: inc/php/tabs/faq.php:156 inc/php/tabs/faq.php:164
|
299 |
msgid "Absolutely not."
|
300 |
msgstr "Absolut nicht."
|
301 |
|
302 |
+
#: inc/php/tabs/faq.php:157
|
303 |
msgid "This plugin is configurable entirely from the plugin settings page."
|
304 |
msgstr "Alle Konfigurationen des Plugins finden Sie auf Einstellungsseite des Plugins."
|
305 |
|
306 |
+
#: inc/php/tabs/faq.php:161
|
307 |
msgid "Does this require any knowledge of HTML or CSS?"
|
308 |
msgstr "Brauche ich HTML oder CSS Kenntnisse?"
|
309 |
|
310 |
+
#: inc/php/tabs/faq.php:165
|
311 |
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: inc/php/tabs/faq.php:169
|
315 |
msgid "Can I add my custom PHP code to a specific page of my website?"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: inc/php/tabs/faq.php:172
|
319 |
msgid "For now, this plugin does not have an option to apply the custom PHP code only on specific pages."
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: inc/php/tabs/faq.php:173
|
323 |
msgid "We plan to add this feature soon."
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: inc/php/tabs/faq.php:174
|
327 |
msgid "But for now in order to apply your custom PHP code only on specific pages of your website, you need to wrap your custom PHP code in a PHP function that will determine the page you want."
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: inc/php/tabs/faq.php:175
|
331 |
msgid "You need something like this:"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: inc/php/tabs/faq.php:191
|
335 |
msgid "It's not working."
|
336 |
msgstr "Es funktioniert nicht."
|
337 |
|
338 |
+
#: inc/php/tabs/faq.php:192 inc/php/tabs/faq.php:208 inc/php/tabs/faq.php:234
|
339 |
msgid "What could be wrong?"
|
340 |
msgstr "Was könnte falsch sein?"
|
341 |
|
342 |
+
#: inc/php/tabs/faq.php:195
|
343 |
msgid "As with every plugin, it's possible that things don't work."
|
344 |
msgstr "Wie bei jedem Plugin ist es möglich, dass nicht alles funktioniert."
|
345 |
|
346 |
+
#: inc/php/tabs/faq.php:196
|
347 |
msgid "It's impossible to tell what could be wrong exactly."
|
348 |
msgstr "Es ist unmöglich genau festzustellen was falsch ist."
|
349 |
|
350 |
+
#: inc/php/tabs/faq.php:197
|
351 |
msgid "The most common reason for this is a web browser's cache."
|
352 |
msgstr "Der häufigste Grund dafür ist der Cache Ihres Webbrowsers."
|
353 |
|
354 |
+
#: inc/php/tabs/faq.php:198
|
355 |
msgid "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load."
|
356 |
msgstr "Jeder Webbrowser speichert den Cache der besuchten Webseite (Seiten, Bilder, usw.) um die Bandbreite zu reduzieren."
|
357 |
|
358 |
+
#: inc/php/tabs/faq.php:199
|
359 |
msgid "This is called the browser's cache."
|
360 |
msgstr "Das nennt man den Browser Cache."
|
361 |
|
362 |
+
#: inc/php/tabs/faq.php:200
|
363 |
msgid "Clearing your browser's cache may solve the problem."
|
364 |
msgstr "Wenn Sie den Cache Ihres Browsers löschen, könnte das Problem behoben sein."
|
365 |
|
366 |
+
#: inc/php/tabs/faq.php:202
|
367 |
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."
|
368 |
msgstr "Wenn Sie jedoch eine Support Anfrage im Plugins Support Forum von wordpress.ORG stellen, helfe wir Ihnen gerne."
|
369 |
|
370 |
+
#: inc/php/tabs/faq.php:203 inc/php/tabs/faq.php:304
|
371 |
msgid "Please include as much information as possible, including a link to your website where the problem can be seen."
|
372 |
msgstr "Bitte fügen Sie so viele Informationen wie möglich und einen Link zu der Webseite hinzu, wo das Problem auftritt."
|
373 |
|
374 |
+
#: inc/php/tabs/faq.php:207
|
375 |
msgid "On the plugin settings page, an error message appears."
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: inc/php/tabs/faq.php:211
|
379 |
msgid "Here are a few of the most likely causes of the error message:"
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: inc/php/tabs/faq.php:214
|
383 |
msgid "You make a syntax error in the code that you have entered."
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: inc/php/tabs/faq.php:215
|
387 |
msgid "Check the syntax of your code and try again."
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: inc/php/tabs/faq.php:218
|
391 |
msgid "You entered two functions with the same name."
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: inc/php/tabs/faq.php:219
|
395 |
msgid "Use a unique names for your functions."
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: inc/php/tabs/faq.php:222
|
399 |
msgid "You have entered function with a name that is already occupied by another function."
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: inc/php/tabs/faq.php:223
|
403 |
msgid "Use a unique name for your function."
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: inc/php/tabs/faq.php:226
|
407 |
msgid "You are trying to overwrite an existing function (of WordPress, theme, or plugin)."
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: inc/php/tabs/faq.php:227
|
411 |
msgid "Instead, use filters and hooks."
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: inc/php/tabs/faq.php:233
|
415 |
msgid "My custom PHP code is not working."
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: inc/php/tabs/faq.php:237
|
419 |
msgid "It happens that your custom PHP code that you insert on the plugin page does not work, even if an error message does not appear."
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: inc/php/tabs/faq.php:238
|
423 |
msgid "Here are a few of the most likely causes of the issue:"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: inc/php/tabs/faq.php:240
|
427 |
msgid "You have a typo during the insertion of your custom PHP code."
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: inc/php/tabs/faq.php:241
|
431 |
msgid "Your custom PHP code has a syntax error."
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: inc/php/tabs/faq.php:242
|
435 |
msgid "Your custom PHP code is incorrect and may not work."
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: inc/php/tabs/faq.php:247
|
439 |
msgid "What to do if this plugin crashed the website?"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: inc/php/tabs/faq.php:250
|
443 |
msgid "This plugin has a built-in functions for checking the custom code for syntax errors, duplicate functions names, and etc."
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: inc/php/tabs/faq.php:251
|
447 |
msgid "But plugin is not perfect, so there are times when the entered custom code causes the error and white screen (WSOD)."
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: inc/php/tabs/faq.php:252
|
451 |
msgid "This is due to the fact that your custom code has a syntax error that this plugin could not detect."
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: inc/php/tabs/faq.php:253
|
455 |
msgid "When this happens with you, please perform the following steps."
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: inc/php/tabs/faq.php:256
|
459 |
msgid "Access your server via FTP or SFTP."
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: inc/php/tabs/faq.php:257
|
463 |
msgid "If you aren't sure how usually your web hosting provider will have instructions somewhere on their website."
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: inc/php/tabs/faq.php:260
|
467 |
msgid "Browse to the directory <code>wp-content/plugins/my-custom-functions/</code>."
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: inc/php/tabs/faq.php:261
|
471 |
msgid "Please contact your web hosting company to get help if you can't find this folder."
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: inc/php/tabs/faq.php:264
|
475 |
msgid "Rename the file <code>START</code> to <code>STOP</code>."
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: inc/php/tabs/faq.php:265
|
479 |
msgid "This will stop the execution of your custom code."
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: inc/php/tabs/faq.php:267
|
483 |
msgid "Log in to Admin Area of your WordPress website."
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: inc/php/tabs/faq.php:268
|
487 |
msgid "Go to the plugin settings page <code>Settings</code> ➡ <code>PHP Inserter</code>."
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: inc/php/tabs/faq.php:269
|
491 |
msgid "Edit/fix your custom PHP code that you entered before the crash."
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: inc/php/tabs/faq.php:270
|
495 |
msgid "Return to the plugin folder and rename the file <code>STOP</code> to <code>START</code> and you're done!"
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: inc/php/tabs/faq.php:272
|
499 |
msgid "This plugin stored you entered code in the database of your website."
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: inc/php/tabs/faq.php:273
|
503 |
msgid "For getting your code, you also can go to the <code>Database</code> ➡ Table <code>wp_options</code> ➡ Option <code>spacexchimp_p001_settings</code> ➡ <code>option_value</code>."
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: inc/php/tabs/faq.php:275
|
507 |
msgid "We are already working on a feature to automatically stop the execution of users custom PHP code for cases when this plugin could not detect the error, and this caused the inaccessibility of the website."
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: inc/php/tabs/faq.php:279
|
511 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
|
512 |
msgstr "Das letzte WordPress-Update hindert mich daran, meine Webseite, die dieses Plugin verwendet, zu bearbeiten."
|
513 |
|
514 |
+
#: inc/php/tabs/faq.php:280
|
515 |
msgid "Why is this?"
|
516 |
msgstr "Warum ist das so?"
|
517 |
|
518 |
+
#: inc/php/tabs/faq.php:283
|
519 |
msgid "This plugin can not cause such problem."
|
520 |
msgstr "Dieses Plugin kann ein solches Problem nicht verursachen."
|
521 |
|
522 |
+
#: inc/php/tabs/faq.php:284
|
523 |
msgid "More likely, the problem are related to the settings of the website."
|
524 |
msgstr "Wahrscheinlich hängt das Problem mit den Einstellungen der Webseite zusammen."
|
525 |
|
526 |
+
#: inc/php/tabs/faq.php:285
|
527 |
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."
|
528 |
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."
|
529 |
|
530 |
+
#: inc/php/tabs/faq.php:286
|
531 |
msgid "Also please try to re-login to the website, this too can help."
|
532 |
msgstr "Versuchen Sie auch, sich erneut auf der Webseite anzumelden, auch dies kann helfen."
|
533 |
|
534 |
+
#: inc/php/tabs/faq.php:290
|
535 |
msgid "Where to report bug if found?"
|
536 |
msgstr "Wo kann ich eine Fehler melden?"
|
537 |
|
538 |
+
#: inc/php/tabs/faq.php:293
|
539 |
msgid "Bug reports are very welcome!"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: inc/php/tabs/faq.php:296
|
543 |
#, php-format
|
544 |
msgid "Please visit our %s contact page %s and report."
|
545 |
msgstr "Bitte besuchen Sie unsere %s Kontaktseite %s und berichten Sie."
|
546 |
|
547 |
+
#: inc/php/tabs/faq.php:301 inc/php/tabs/faq.php:330
|
548 |
msgid "Please do not forget to specify the name of the plugin."
|
549 |
msgstr "Bitte vergiss nicht den Namen des Plugins anzugeben."
|
550 |
|
551 |
+
#: inc/php/tabs/faq.php:302 inc/php/tabs/faq.php:331 inc/php/tabs/faq.php:347
|
552 |
msgid "Thank you!"
|
553 |
msgstr "Danke!"
|
554 |
|
555 |
+
#: inc/php/tabs/faq.php:305
|
556 |
msgid "Describe in more detail what exactly you are seeing."
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: inc/php/tabs/faq.php:306
|
560 |
msgid "Here are some examples:"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: inc/php/tabs/faq.php:309
|
564 |
msgid "Elements of the plugin settings page are not working."
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: inc/php/tabs/faq.php:310
|
568 |
msgid "An error message is displayed on the plugin settings page."
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: inc/php/tabs/faq.php:311
|
572 |
msgid "An error message is displayed on the front end of website."
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: inc/php/tabs/faq.php:312
|
576 |
msgid "An error message is displayed on the back end of website."
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: inc/php/tabs/faq.php:313
|
580 |
msgid "Custom code is inserted on the plugin settings page, but it is not applied on the website."
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: inc/php/tabs/faq.php:314
|
584 |
msgid "Website is crashed."
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: inc/php/tabs/faq.php:319
|
588 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
589 |
msgstr "Wo können Sie Ideen oder Vorschläge loswerden, um das Plugin besser zu machen?"
|
590 |
|
591 |
+
#: inc/php/tabs/faq.php:322
|
592 |
msgid "Any suggestions are very welcome!"
|
593 |
msgstr "Irgendwelche Vorschläge sind sehr willkommen!"
|
594 |
|
595 |
+
#: inc/php/tabs/faq.php:325
|
596 |
#, php-format
|
597 |
msgid "Please visit our %s contact page %s."
|
598 |
msgstr "Bitte besuchen Sie unsere %s Kontaktseite %s."
|
599 |
|
600 |
+
#: inc/php/tabs/faq.php:335
|
601 |
msgid "I love this plugin!"
|
602 |
msgstr "Ich liebe dieses Plugin!"
|
603 |
|
604 |
+
#: inc/php/tabs/faq.php:336
|
605 |
msgid "Can I help somehow?"
|
606 |
msgstr "Kann ich Irgendwie helfen?"
|
607 |
|
608 |
+
#: inc/php/tabs/faq.php:339
|
609 |
msgid "Yes, any contributions are very welcome!"
|
610 |
msgstr "Ja, jede Mithilfe ist sehr willkommen!"
|
611 |
|
612 |
+
#: inc/php/tabs/faq.php:342
|
613 |
#, php-format
|
614 |
msgid "Please visit our %s Support Us %s page."
|
615 |
msgstr "Bitte besuchen Sie unsere %s Support Us %s Seite."
|
616 |
|
617 |
+
#: inc/php/tabs/faq.php:351
|
618 |
msgid "Where can I find information about your licenses, payment process and refunds?"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: inc/php/tabs/faq.php:356
|
622 |
#, php-format
|
623 |
msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: inc/php/tabs/faq.php:364
|
627 |
msgid "Where can I find information about your customer support?"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: inc/php/tabs/faq.php:369
|
631 |
#, php-format
|
632 |
msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: inc/php/tabs/faq.php:377
|
636 |
msgid "Where can I find information about your affiliate program?"
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: inc/php/tabs/faq.php:382
|
640 |
#, php-format
|
641 |
msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: inc/php/tabs/faq.php:390
|
645 |
msgid "My question wasn't answered here."
|
646 |
msgstr "Meine Fragen wurden nicht beantwortet."
|
647 |
|
648 |
+
#: inc/php/tabs/faq.php:395
|
649 |
#, php-format
|
650 |
msgid "You can ask your question on %s this page %s."
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: inc/php/tabs/faq.php:400
|
654 |
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."
|
655 |
msgstr "Aber bitte bedenken Sie, dass dieses Plugin kostenlos ist. Es gibt kein Support Team, deshalb habe wir keine Möglichkeit jedem zu antworten."
|
656 |
|
657 |
+
#: inc/php/tabs/settings.php:30
|
658 |
+
msgid "Functions (PHP code)"
|
659 |
+
msgstr ""
|
660 |
+
|
661 |
+
#: inc/php/tabs/settings.php:32
|
662 |
+
msgid "NOT SAVED!"
|
663 |
+
msgstr ""
|
664 |
+
|
665 |
+
#: inc/php/tabs/settings.php:46
|
666 |
+
msgid "Enter your PHP functions here"
|
667 |
+
msgstr ""
|
668 |
+
|
669 |
+
#: inc/php/tabs/settings.php:51
|
670 |
+
msgid "Save changes"
|
671 |
+
msgstr "Änderungen speichern"
|
672 |
+
|
673 |
+
#: inc/php/tabs/support.php:13
|
674 |
msgid "Support Us"
|
675 |
msgstr "Unterstütze uns"
|
676 |
|
677 |
+
#: inc/php/tabs/support.php:28
|
|
|
|
|
|
|
|
|
678 |
#, php-format
|
679 |
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."
|
680 |
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."
|
681 |
|
682 |
+
#: inc/php/tabs/support.php:37
|
683 |
msgid "Our intention is to create projects that will make this world a better place."
|
684 |
msgstr "Unser Absicht ist es, Projekte zu entwickeln, die diese Welt zu einem besseren Ort machen."
|
685 |
|
686 |
+
#: inc/php/tabs/support.php:38
|
687 |
msgid "Our motto is - «Follow your dreams and don’t give up»."
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: inc/php/tabs/support.php:39
|
691 |
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."
|
692 |
msgstr "Wir sind begeistert von unserer Arbeit, wir mag, was wir tue, und hoffe, dass Sie auch von unsere Projekten bereichert werden."
|
693 |
|
694 |
+
#: inc/php/tabs/support.php:42
|
695 |
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."
|
696 |
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."
|
697 |
|
698 |
+
#: inc/php/tabs/support.php:43
|
699 |
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."
|
700 |
msgstr ""
|
701 |
|
702 |
+
#: inc/php/tabs/support.php:46
|
703 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
704 |
msgstr "Wenn Ihnen unsere Arbeit gefällt, können Sie uns gerne einen Kaffee kaufen!"
|
705 |
|
706 |
+
#: inc/php/tabs/support.php:49
|
707 |
msgid "Thank you for your support!"
|
708 |
msgstr "Danke für Ihre Unterstützung!"
|
709 |
|
710 |
+
#: inc/php/tabs/usage.php:13
|
711 |
+
msgid "Usage Instructions"
|
712 |
+
msgstr "Anleitung"
|
713 |
|
714 |
+
#: inc/php/tabs/usage.php:15
|
715 |
+
msgid "To add your custom PHP code to your website, simply follow these steps:"
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: inc/php/tabs/usage.php:17
|
719 |
+
msgid "Go to the \"Main\" tab on this page."
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: inc/php/tabs/usage.php:19
|
723 |
+
msgid "Place your custom PHP code in the code editor field."
|
724 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
725 |
|
726 |
+
#: inc/php/tabs/usage.php:22 inc/php/tabs/usage.php:26
|
727 |
+
msgid "Note!"
|
728 |
+
msgstr "Achtung!"
|
729 |
|
730 |
+
#: inc/php/tabs/usage.php:23
|
731 |
+
msgid "Do not wrap your custom PHP code in HTML tags, such as <code><?php</code>...<code>?></code>."
|
732 |
+
msgstr ""
|
733 |
|
734 |
+
#: inc/php/tabs/usage.php:29
|
735 |
+
#, php-format
|
736 |
+
msgid "Before use, please read the %s instructions %s in our Blog on what to do in case of a website crash."
|
737 |
+
msgstr ""
|
738 |
|
739 |
+
#: inc/php/tabs/usage.php:36
|
740 |
+
msgid "Switch the toggle to the \"ON\" position."
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: inc/php/tabs/usage.php:37
|
744 |
+
msgid "Click the \"Save changes\" button."
|
745 |
+
msgstr "Klicken Sie den \"Änderungen speichern\" button."
|
746 |
|
747 |
+
#: inc/php/tabs/usage.php:43
|
748 |
+
#, php-format
|
749 |
+
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
750 |
+
msgstr "Wenn Sie mehr Optionen benötigen, %s teilen Sie uns %s dies mit und wir werden sie gerne hinzufügen."
|
751 |
|
752 |
#. Plugin Name of the plugin/theme
|
753 |
msgid "My Custom Functions"
|
languages/my-custom-functions-es_ES.mo
CHANGED
Binary file
|
languages/my-custom-functions-es_ES.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\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 "PHP Inserter"
|
37 |
msgstr "PHP Inserter"
|
38 |
|
39 |
-
#: inc/php/messages.php:27 inc/php/
|
40 |
msgid "Hello!"
|
41 |
msgstr "¡Hola!"
|
42 |
|
@@ -69,684 +69,685 @@ msgstr ""
|
|
69 |
msgid "Please, check the code and try again."
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: inc/php/page.php:
|
73 |
#, php-format
|
74 |
msgid "by %s Space X-Chimp %s"
|
75 |
msgstr "por %s Space X-Chimp %s"
|
76 |
|
77 |
-
#: inc/php/page.php:
|
78 |
msgid "Version"
|
79 |
msgstr "Versión"
|
80 |
|
81 |
-
#: inc/php/page.php:
|
82 |
msgid "Main"
|
83 |
msgstr "Principal"
|
84 |
|
85 |
-
#: inc/php/page.php:
|
86 |
msgid "Usage"
|
87 |
msgstr "Uso"
|
88 |
|
89 |
-
#: inc/php/page.php:
|
90 |
msgid "F.A.Q."
|
91 |
msgstr "Preguntas ?"
|
92 |
|
93 |
-
#: inc/php/page.php:
|
94 |
msgid "Support"
|
95 |
msgstr "Soporte"
|
96 |
|
97 |
-
#: inc/php/page.php:
|
98 |
msgid "Store"
|
99 |
msgstr "Tienda"
|
100 |
|
101 |
-
#: inc/php/
|
102 |
-
msgid "
|
103 |
-
msgstr "Instrucciones de uso"
|
104 |
-
|
105 |
-
#: inc/php/page.php:68
|
106 |
-
msgid "To add your custom PHP code to your website, simply follow these steps:"
|
107 |
-
msgstr ""
|
108 |
-
|
109 |
-
#: inc/php/page.php:70
|
110 |
-
msgid "Go to the \"Main\" tab on this page."
|
111 |
-
msgstr "Debes ir a la pestaña “Principal”."
|
112 |
-
|
113 |
-
#: inc/php/page.php:72
|
114 |
-
msgid "Place your custom PHP code in the code editor field."
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: inc/php/
|
118 |
-
msgid "
|
119 |
-
msgstr "
|
120 |
-
|
121 |
-
#: inc/php/page.php:76
|
122 |
-
msgid "Do not wrap your custom PHP code in HTML tags, such as <code><?php</code>...<code>?></code>."
|
123 |
-
msgstr ""
|
124 |
|
125 |
-
#: inc/php/
|
126 |
-
|
127 |
-
|
128 |
-
msgstr ""
|
129 |
|
130 |
-
#: inc/php/
|
131 |
-
msgid "
|
132 |
-
msgstr ""
|
133 |
|
134 |
-
#: inc/php/
|
135 |
-
msgid "
|
136 |
-
msgstr "
|
137 |
|
138 |
-
#: inc/php/
|
139 |
-
msgid "
|
140 |
-
msgstr ""
|
141 |
|
142 |
-
#: inc/php/
|
143 |
-
|
144 |
-
|
|
|
145 |
|
146 |
-
#: inc/php/
|
147 |
-
|
148 |
-
|
149 |
-
msgstr "Si quieres más opciones, %s díganos %s y estaremos encantados de añadirlo."
|
150 |
|
151 |
-
#: inc/php/
|
152 |
msgid "Frequently Asked Questions"
|
153 |
msgstr "Preguntas Frecuentes"
|
154 |
|
155 |
-
#: inc/php/
|
156 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
157 |
msgstr "Si tienes alguna pregunta, por favor lee las Preguntas Frecuentes a continuación, para ver si la respuesta está aquí."
|
158 |
|
159 |
-
#: inc/php/
|
160 |
msgid "Where can I find a documentation for this plugin?"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: inc/php/
|
164 |
#, php-format
|
165 |
msgid "Please visit our %s Documentation site %s to view documentation."
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: inc/php/
|
169 |
msgid "Will this plugin work on my wordpress.COM website?"
|
170 |
msgstr "¿Funcionará este complemento en mi sitio web wordpress.COM?"
|
171 |
|
172 |
-
#: inc/php/
|
173 |
msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
|
174 |
msgstr "Lo sentimos, este complemento está disponible para su uso solo en sitios web alojados (wordpress.ORG)."
|
175 |
|
176 |
-
#: inc/php/
|
177 |
msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: inc/php/
|
181 |
msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: inc/php/
|
185 |
#, php-format
|
186 |
msgid "You can learn more about the difference here: %s ."
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: inc/php/
|
190 |
msgid "Will this plugin work/compatible with the theme I use?"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: inc/php/
|
194 |
msgid "This plugin is compatible with most themes."
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: inc/php/
|
198 |
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."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: inc/php/
|
202 |
msgid "We constantly check this plugin for compatibility with third-party themes."
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: inc/php/
|
206 |
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."
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: inc/php/
|
210 |
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."
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: inc/php/
|
214 |
msgid "Will this plugin work/compatible with other plugins that I use?"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: inc/php/
|
218 |
msgid "This plugin is compatible with most plugins."
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: inc/php/
|
222 |
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."
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: inc/php/
|
226 |
msgid "We constantly check this plugin for compatibility with third-party plugins."
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: inc/php/
|
230 |
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."
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: inc/php/
|
234 |
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."
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: inc/php/
|
238 |
msgid "Can I use this plugin on my language?"
|
239 |
msgstr "¿Puedo usar este complemento en mi idioma?"
|
240 |
|
241 |
-
#: inc/php/
|
242 |
msgid "Yes."
|
243 |
msgstr "Sí."
|
244 |
|
245 |
-
#: inc/php/
|
246 |
msgid "This plugin is ready for translation and has already been translated into several languages."
|
247 |
msgstr "Este complemento está listo para ser traducido y ya ha sido traducido a varios idiomas."
|
248 |
|
249 |
-
#: inc/php/
|
250 |
msgid "But If your language is not available then you can make one."
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: inc/php/
|
254 |
msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
|
255 |
msgstr "Quizás no todas las traducciones existentes estén actualizadas. Le invitamos a contribuir correcciones!"
|
256 |
|
257 |
-
#: inc/php/
|
258 |
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
259 |
msgstr "Muchos de los usuarios de este complemento estarían encantados si compartes tu traducción con la comunidad."
|
260 |
|
261 |
-
#: inc/php/
|
262 |
msgid "Thanks for your contribution!"
|
263 |
msgstr "¡Gracias por tu contribución!"
|
264 |
|
265 |
-
#: inc/php/
|
266 |
#, php-format
|
267 |
msgid "If you want to help translate this plugin, please visit the %s."
|
268 |
msgstr "Si quieres ayudar a traducir este complemento, por favor visite el %s."
|
269 |
|
270 |
-
#: inc/php/
|
271 |
msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
|
272 |
msgstr "También puede utilizar el archivo POT, incluido y colocado en la carpeta “languages”, para crear un archivo PO de traducción."
|
273 |
|
274 |
-
#: inc/php/
|
275 |
#, php-format
|
276 |
msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
|
277 |
msgstr "Simplemente envíenos ( %s ) el archivo PO e incluiremos esta traducción en la siguiente actualización del complemento."
|
278 |
|
279 |
-
#: inc/php/
|
280 |
msgid "How does it work?"
|
281 |
msgstr "¿Como funciona?"
|
282 |
|
283 |
-
#: inc/php/
|
284 |
msgid "On the \"Main\" tab, place your custom PHP code in the code editor field, switch the toggle to the \"ON\" position and click the \"Save changes\" button."
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: inc/php/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
288 |
msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: inc/php/
|
292 |
msgid "But you need to do it properly, like this:"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: inc/php/
|
296 |
msgid "How much of PHP code (characters) I can enter in the code editor?"
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: inc/php/
|
300 |
msgid "We don't limit the number of characters."
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: inc/php/
|
304 |
msgid "Does this plugin requires any modification of the theme?"
|
305 |
msgstr "¿Este complemento requiere alguna modificación del tema?"
|
306 |
|
307 |
-
#: inc/php/
|
308 |
msgid "Absolutely not."
|
309 |
msgstr "Absolutamente no."
|
310 |
|
311 |
-
#: inc/php/
|
312 |
msgid "This plugin is configurable entirely from the plugin settings page."
|
313 |
msgstr "Este complemento se puede configurar completamente desde su página de configuración."
|
314 |
|
315 |
-
#: inc/php/
|
316 |
msgid "Does this require any knowledge of HTML or CSS?"
|
317 |
msgstr "¿Esto requiere algún conocimiento de HTML o CSS?"
|
318 |
|
319 |
-
#: inc/php/
|
320 |
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
321 |
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."
|
322 |
|
323 |
-
#: inc/php/
|
324 |
msgid "Can I add my custom PHP code to a specific page of my website?"
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: inc/php/
|
328 |
msgid "For now, this plugin does not have an option to apply the custom PHP code only on specific pages."
|
329 |
msgstr ""
|
330 |
|
331 |
-
#: inc/php/
|
332 |
msgid "We plan to add this feature soon."
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: inc/php/
|
336 |
msgid "But for now in order to apply your custom PHP code only on specific pages of your website, you need to wrap your custom PHP code in a PHP function that will determine the page you want."
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: inc/php/
|
340 |
msgid "You need something like this:"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: inc/php/
|
344 |
msgid "It's not working."
|
345 |
msgstr "No funciona."
|
346 |
|
347 |
-
#: inc/php/
|
348 |
msgid "What could be wrong?"
|
349 |
msgstr "¿Qué podría estar mal?"
|
350 |
|
351 |
-
#: inc/php/
|
352 |
msgid "As with every plugin, it's possible that things don't work."
|
353 |
msgstr "Como con todos los complementos, es posible que las cosas no funcionen."
|
354 |
|
355 |
-
#: inc/php/
|
356 |
msgid "It's impossible to tell what could be wrong exactly."
|
357 |
msgstr "Es imposible decir exactamente lo que podría estar mal."
|
358 |
|
359 |
-
#: inc/php/
|
360 |
msgid "The most common reason for this is a web browser's cache."
|
361 |
msgstr "La razón más común para esto es la caché de un navegador web."
|
362 |
|
363 |
-
#: inc/php/
|
364 |
msgid "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load."
|
365 |
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."
|
366 |
|
367 |
-
#: inc/php/
|
368 |
msgid "This is called the browser's cache."
|
369 |
msgstr "Esto se denomina caché del navegador."
|
370 |
|
371 |
-
#: inc/php/
|
372 |
msgid "Clearing your browser's cache may solve the problem."
|
373 |
msgstr "Limpiar la caché del navegador puede resolver el problema."
|
374 |
|
375 |
-
#: inc/php/
|
376 |
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."
|
377 |
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."
|
378 |
|
379 |
-
#: inc/php/
|
380 |
msgid "Please include as much information as possible, including a link to your website where the problem can be seen."
|
381 |
msgstr "Incluye tanta información como sea posible, incluyendo un enlace a tu sitio web donde se pueda ver el problema."
|
382 |
|
383 |
-
#: inc/php/
|
384 |
msgid "On the plugin settings page, an error message appears."
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: inc/php/
|
388 |
msgid "Here are a few of the most likely causes of the error message:"
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: inc/php/
|
392 |
msgid "You make a syntax error in the code that you have entered."
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: inc/php/
|
396 |
msgid "Check the syntax of your code and try again."
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: inc/php/
|
400 |
msgid "You entered two functions with the same name."
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: inc/php/
|
404 |
msgid "Use a unique names for your functions."
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: inc/php/
|
408 |
msgid "You have entered function with a name that is already occupied by another function."
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: inc/php/
|
412 |
msgid "Use a unique name for your function."
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: inc/php/
|
416 |
msgid "You are trying to overwrite an existing function (of WordPress, theme, or plugin)."
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: inc/php/
|
420 |
msgid "Instead, use filters and hooks."
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: inc/php/
|
424 |
msgid "My custom PHP code is not working."
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: inc/php/
|
428 |
msgid "It happens that your custom PHP code that you insert on the plugin page does not work, even if an error message does not appear."
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: inc/php/
|
432 |
msgid "Here are a few of the most likely causes of the issue:"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: inc/php/
|
436 |
msgid "You have a typo during the insertion of your custom PHP code."
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: inc/php/
|
440 |
msgid "Your custom PHP code has a syntax error."
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: inc/php/
|
444 |
msgid "Your custom PHP code is incorrect and may not work."
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: inc/php/
|
448 |
msgid "What to do if this plugin crashed the website?"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: inc/php/
|
452 |
msgid "This plugin has a built-in functions for checking the custom code for syntax errors, duplicate functions names, and etc."
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: inc/php/
|
456 |
msgid "But plugin is not perfect, so there are times when the entered custom code causes the error and white screen (WSOD)."
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: inc/php/
|
460 |
msgid "This is due to the fact that your custom code has a syntax error that this plugin could not detect."
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: inc/php/
|
464 |
msgid "When this happens with you, please perform the following steps."
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: inc/php/
|
468 |
msgid "Access your server via FTP or SFTP."
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: inc/php/
|
472 |
msgid "If you aren't sure how usually your web hosting provider will have instructions somewhere on their website."
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: inc/php/
|
476 |
msgid "Browse to the directory <code>wp-content/plugins/my-custom-functions/</code>."
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: inc/php/
|
480 |
msgid "Please contact your web hosting company to get help if you can't find this folder."
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: inc/php/
|
484 |
msgid "Rename the file <code>START</code> to <code>STOP</code>."
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: inc/php/
|
488 |
msgid "This will stop the execution of your custom code."
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: inc/php/
|
492 |
msgid "Log in to Admin Area of your WordPress website."
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: inc/php/
|
496 |
msgid "Go to the plugin settings page <code>Settings</code> ➡ <code>PHP Inserter</code>."
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: inc/php/
|
500 |
msgid "Edit/fix your custom PHP code that you entered before the crash."
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: inc/php/
|
504 |
msgid "Return to the plugin folder and rename the file <code>STOP</code> to <code>START</code> and you're done!"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: inc/php/
|
508 |
msgid "This plugin stored you entered code in the database of your website."
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: inc/php/
|
512 |
msgid "For getting your code, you also can go to the <code>Database</code> ➡ Table <code>wp_options</code> ➡ Option <code>spacexchimp_p001_settings</code> ➡ <code>option_value</code>."
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: inc/php/
|
516 |
msgid "We are already working on a feature to automatically stop the execution of users custom PHP code for cases when this plugin could not detect the error, and this caused the inaccessibility of the website."
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: inc/php/
|
520 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
|
521 |
msgstr "La última actualización de WordPress me impide editar mi sitio web que está utilizando este complemento."
|
522 |
|
523 |
-
#: inc/php/
|
524 |
msgid "Why is this?"
|
525 |
msgstr "¿Porqué sucede esto?"
|
526 |
|
527 |
-
#: inc/php/
|
528 |
msgid "This plugin can not cause such problem."
|
529 |
msgstr "Este complemento no puede causar este problema."
|
530 |
|
531 |
-
#: inc/php/
|
532 |
msgid "More likely, the problem are related to the settings of the website."
|
533 |
msgstr "Lo más probable es que el problema esté relacionado con la configuración del sitio web."
|
534 |
|
535 |
-
#: inc/php/
|
536 |
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."
|
537 |
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."
|
538 |
|
539 |
-
#: inc/php/
|
540 |
msgid "Also please try to re-login to the website, this too can help."
|
541 |
msgstr "También intenta volver a conectarte al sitio web, esto también puede ayudar."
|
542 |
|
543 |
-
#: inc/php/
|
544 |
msgid "Where to report bug if found?"
|
545 |
msgstr "¿Dónde informar el error si se encuentra?"
|
546 |
|
547 |
-
#: inc/php/
|
548 |
msgid "Bug reports are very welcome!"
|
549 |
msgstr "¡Informes de errores son bienvenidos!"
|
550 |
|
551 |
-
#: inc/php/
|
552 |
#, php-format
|
553 |
msgid "Please visit our %s contact page %s and report."
|
554 |
msgstr "Por favor visite nuestra %s página de contacto %s e informa."
|
555 |
|
556 |
-
#: inc/php/
|
557 |
msgid "Please do not forget to specify the name of the plugin."
|
558 |
msgstr "No olvides especificar el nombre del complemento."
|
559 |
|
560 |
-
#: inc/php/
|
561 |
msgid "Thank you!"
|
562 |
msgstr "¡Gracias!"
|
563 |
|
564 |
-
#: inc/php/
|
565 |
msgid "Describe in more detail what exactly you are seeing."
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: inc/php/
|
569 |
msgid "Here are some examples:"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: inc/php/
|
573 |
msgid "Elements of the plugin settings page are not working."
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: inc/php/
|
577 |
msgid "An error message is displayed on the plugin settings page."
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: inc/php/
|
581 |
msgid "An error message is displayed on the front end of website."
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: inc/php/
|
585 |
msgid "An error message is displayed on the back end of website."
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: inc/php/
|
589 |
msgid "Custom code is inserted on the plugin settings page, but it is not applied on the website."
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: inc/php/
|
593 |
msgid "Website is crashed."
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: inc/php/
|
597 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
598 |
msgstr "¿Dónde compartir ideas o sugerencias para mejorar el complemento?"
|
599 |
|
600 |
-
#: inc/php/
|
601 |
msgid "Any suggestions are very welcome!"
|
602 |
msgstr "Cualquier sugerencia es muy bienvenida!"
|
603 |
|
604 |
-
#: inc/php/
|
605 |
#, php-format
|
606 |
msgid "Please visit our %s contact page %s."
|
607 |
msgstr "Por favor visite nuestra %s página de contacto %s."
|
608 |
|
609 |
-
#: inc/php/
|
610 |
msgid "I love this plugin!"
|
611 |
msgstr "Me encanta este complemento!"
|
612 |
|
613 |
-
#: inc/php/
|
614 |
msgid "Can I help somehow?"
|
615 |
msgstr "¿Puedo ayudar de alguna manera?"
|
616 |
|
617 |
-
#: inc/php/
|
618 |
msgid "Yes, any contributions are very welcome!"
|
619 |
msgstr "Sí, cualquier contribución es muy bienvenida!"
|
620 |
|
621 |
-
#: inc/php/
|
622 |
#, php-format
|
623 |
msgid "Please visit our %s Support Us %s page."
|
624 |
msgstr "Por favor visite nuestra página de %s Apóyenos %s."
|
625 |
|
626 |
-
#: inc/php/
|
627 |
msgid "Where can I find information about your licenses, payment process and refunds?"
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: inc/php/
|
631 |
#, php-format
|
632 |
msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: inc/php/
|
636 |
msgid "Where can I find information about your customer support?"
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: inc/php/
|
640 |
#, php-format
|
641 |
msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: inc/php/
|
645 |
msgid "Where can I find information about your affiliate program?"
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: inc/php/
|
649 |
#, php-format
|
650 |
msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: inc/php/
|
654 |
msgid "My question wasn't answered here."
|
655 |
msgstr "Mi pregunta no fue contestada aquí."
|
656 |
|
657 |
-
#: inc/php/
|
658 |
#, php-format
|
659 |
msgid "You can ask your question on %s this page %s."
|
660 |
msgstr "Puede hacer su pregunta en %s esta página %s."
|
661 |
|
662 |
-
#: inc/php/
|
663 |
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."
|
664 |
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."
|
665 |
|
666 |
-
#: inc/php/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
667 |
msgid "Support Us"
|
668 |
msgstr "¡Apoyanos!"
|
669 |
|
670 |
-
#: inc/php/
|
671 |
-
msgid "Donate with PayPal"
|
672 |
-
msgstr "Donar con PayPal"
|
673 |
-
|
674 |
-
#: inc/php/page.php:523
|
675 |
#, php-format
|
676 |
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."
|
677 |
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."
|
678 |
|
679 |
-
#: inc/php/
|
680 |
msgid "Our intention is to create projects that will make this world a better place."
|
681 |
msgstr "Nuestra intención es crear proyectos que hagan de este mundo un lugar mejor."
|
682 |
|
683 |
-
#: inc/php/
|
684 |
msgid "Our motto is - «Follow your dreams and don’t give up»."
|
685 |
msgstr ""
|
686 |
|
687 |
-
#: inc/php/
|
688 |
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."
|
689 |
msgstr "Nos realmente apasionado por nuestro trabajo, nos gusta lo que estamos haciendo y esperamos que tú también te enriquezcas con nos proyectos."
|
690 |
|
691 |
-
#: inc/php/
|
692 |
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."
|
693 |
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."
|
694 |
|
695 |
-
#: inc/php/
|
696 |
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."
|
697 |
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."
|
698 |
|
699 |
-
#: inc/php/
|
700 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
701 |
msgstr "Si aprecias mi trabajo, puedes comprarme un café!"
|
702 |
|
703 |
-
#: inc/php/
|
704 |
msgid "Thank you for your support!"
|
705 |
msgstr "¡Gracias por tu apoyo!"
|
706 |
|
707 |
-
#: inc/php/
|
708 |
-
msgid "
|
709 |
-
msgstr ""
|
710 |
-
|
711 |
-
#: inc/php/settings.php:32
|
712 |
-
msgid "NOT SAVED!"
|
713 |
-
msgstr ""
|
714 |
|
715 |
-
#: inc/php/
|
716 |
-
msgid "
|
717 |
msgstr ""
|
718 |
|
719 |
-
#: inc/php/
|
720 |
-
msgid "
|
721 |
-
msgstr "
|
722 |
|
723 |
-
#: inc/php/
|
724 |
-
msgid "
|
725 |
-
msgstr "
|
726 |
|
727 |
-
#: inc/php/
|
728 |
-
msgid "
|
729 |
-
msgstr "¡
|
730 |
|
731 |
-
#: inc/php/
|
732 |
-
msgid "
|
733 |
msgstr ""
|
734 |
|
735 |
-
#: inc/php/
|
736 |
-
|
737 |
-
|
|
|
738 |
|
739 |
-
#: inc/php/
|
740 |
-
msgid "
|
741 |
-
msgstr "
|
742 |
|
743 |
-
#: inc/php/
|
744 |
-
msgid "
|
745 |
-
msgstr "
|
746 |
|
747 |
-
#: inc/php/
|
748 |
-
|
749 |
-
|
|
|
750 |
|
751 |
#. Plugin Name of the plugin/theme
|
752 |
msgid "My Custom Functions"
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
+
"POT-Creation-Date: 2019-03-01 06:43+0300\n"
|
7 |
+
"PO-Revision-Date: 2019-03-01 06:43+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Spanish\n"
|
10 |
"Language: es_ES\n"
|
36 |
msgid "PHP Inserter"
|
37 |
msgstr "PHP Inserter"
|
38 |
|
39 |
+
#: inc/php/messages.php:27 inc/php/tabs/support.php:25
|
40 |
msgid "Hello!"
|
41 |
msgstr "¡Hola!"
|
42 |
|
69 |
msgid "Please, check the code and try again."
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: inc/php/page.php:35
|
73 |
#, php-format
|
74 |
msgid "by %s Space X-Chimp %s"
|
75 |
msgstr "por %s Space X-Chimp %s"
|
76 |
|
77 |
+
#: inc/php/page.php:41
|
78 |
msgid "Version"
|
79 |
msgstr "Versión"
|
80 |
|
81 |
+
#: inc/php/page.php:48
|
82 |
msgid "Main"
|
83 |
msgstr "Principal"
|
84 |
|
85 |
+
#: inc/php/page.php:49
|
86 |
msgid "Usage"
|
87 |
msgstr "Uso"
|
88 |
|
89 |
+
#: inc/php/page.php:50
|
90 |
msgid "F.A.Q."
|
91 |
msgstr "Preguntas ?"
|
92 |
|
93 |
+
#: inc/php/page.php:51 inc/php/sidebar.php:47 inc/php/tabs/settings.php:54
|
94 |
msgid "Support"
|
95 |
msgstr "Soporte"
|
96 |
|
97 |
+
#: inc/php/page.php:52
|
98 |
msgid "Store"
|
99 |
msgstr "Tienda"
|
100 |
|
101 |
+
#: inc/php/sidebar.php:16
|
102 |
+
msgid "We are «Space X-Chimp»"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: inc/php/sidebar.php:33
|
106 |
+
msgid "About"
|
107 |
+
msgstr "Acerca de"
|
|
|
|
|
|
|
|
|
108 |
|
109 |
+
#: inc/php/sidebar.php:35
|
110 |
+
msgid "This plugin gives you the ability to easily and safely add your custom PHP code to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
|
111 |
+
msgstr "Este complemento le brinda la posibilidad de agregar de forma fácil y segura sus código PHP personalizado a su sitio web de WordPress, directamente fuera del área de administración de WordPress, sin la necesidad de tener un editor externo."
|
|
|
112 |
|
113 |
+
#: inc/php/sidebar.php:40
|
114 |
+
msgid "Help"
|
115 |
+
msgstr "Ayuda"
|
116 |
|
117 |
+
#: inc/php/sidebar.php:42
|
118 |
+
msgid "If you have a question, please read the information in the FAQ section."
|
119 |
+
msgstr "Si tiene alguna pregunta, lee la información en la sección de preguntas frecuentes."
|
120 |
|
121 |
+
#: inc/php/sidebar.php:49 inc/php/tabs/settings.php:56
|
122 |
+
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."
|
123 |
+
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."
|
124 |
|
125 |
+
#: inc/php/sidebar.php:54 inc/php/tabs/settings.php:61
|
126 |
+
#: inc/php/tabs/support.php:21
|
127 |
+
msgid "Donate with PayPal"
|
128 |
+
msgstr "Donar con PayPal"
|
129 |
|
130 |
+
#: inc/php/sidebar.php:56 inc/php/tabs/settings.php:63
|
131 |
+
msgid "Thanks for your support!"
|
132 |
+
msgstr "¡Gracias por tu apoyo!"
|
|
|
133 |
|
134 |
+
#: inc/php/tabs/faq.php:13
|
135 |
msgid "Frequently Asked Questions"
|
136 |
msgstr "Preguntas Frecuentes"
|
137 |
|
138 |
+
#: inc/php/tabs/faq.php:17
|
139 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
140 |
msgstr "Si tienes alguna pregunta, por favor lee las Preguntas Frecuentes a continuación, para ver si la respuesta está aquí."
|
141 |
|
142 |
+
#: inc/php/tabs/faq.php:42
|
143 |
msgid "Where can I find a documentation for this plugin?"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: inc/php/tabs/faq.php:47
|
147 |
#, php-format
|
148 |
msgid "Please visit our %s Documentation site %s to view documentation."
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: inc/php/tabs/faq.php:55
|
152 |
msgid "Will this plugin work on my wordpress.COM website?"
|
153 |
msgstr "¿Funcionará este complemento en mi sitio web wordpress.COM?"
|
154 |
|
155 |
+
#: inc/php/tabs/faq.php:58
|
156 |
msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
|
157 |
msgstr "Lo sentimos, este complemento está disponible para su uso solo en sitios web alojados (wordpress.ORG)."
|
158 |
|
159 |
+
#: inc/php/tabs/faq.php:60
|
160 |
msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: inc/php/tabs/faq.php:61
|
164 |
msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: inc/php/tabs/faq.php:64
|
168 |
#, php-format
|
169 |
msgid "You can learn more about the difference here: %s ."
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: inc/php/tabs/faq.php:71
|
173 |
msgid "Will this plugin work/compatible with the theme I use?"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: inc/php/tabs/faq.php:74
|
177 |
msgid "This plugin is compatible with most themes."
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: inc/php/tabs/faq.php:75
|
181 |
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."
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: inc/php/tabs/faq.php:76
|
185 |
msgid "We constantly check this plugin for compatibility with third-party themes."
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: inc/php/tabs/faq.php:77
|
189 |
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."
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: inc/php/tabs/faq.php:79
|
193 |
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."
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: inc/php/tabs/faq.php:83
|
197 |
msgid "Will this plugin work/compatible with other plugins that I use?"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: inc/php/tabs/faq.php:86
|
201 |
msgid "This plugin is compatible with most plugins."
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: inc/php/tabs/faq.php:87
|
205 |
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."
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: inc/php/tabs/faq.php:88
|
209 |
msgid "We constantly check this plugin for compatibility with third-party plugins."
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: inc/php/tabs/faq.php:89
|
213 |
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."
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: inc/php/tabs/faq.php:91
|
217 |
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."
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: inc/php/tabs/faq.php:95
|
221 |
msgid "Can I use this plugin on my language?"
|
222 |
msgstr "¿Puedo usar este complemento en mi idioma?"
|
223 |
|
224 |
+
#: inc/php/tabs/faq.php:98 inc/php/tabs/faq.php:133
|
225 |
msgid "Yes."
|
226 |
msgstr "Sí."
|
227 |
|
228 |
+
#: inc/php/tabs/faq.php:99
|
229 |
msgid "This plugin is ready for translation and has already been translated into several languages."
|
230 |
msgstr "Este complemento está listo para ser traducido y ya ha sido traducido a varios idiomas."
|
231 |
|
232 |
+
#: inc/php/tabs/faq.php:100
|
233 |
msgid "But If your language is not available then you can make one."
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: inc/php/tabs/faq.php:101
|
237 |
msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
|
238 |
msgstr "Quizás no todas las traducciones existentes estén actualizadas. Le invitamos a contribuir correcciones!"
|
239 |
|
240 |
+
#: inc/php/tabs/faq.php:102
|
241 |
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
242 |
msgstr "Muchos de los usuarios de este complemento estarían encantados si compartes tu traducción con la comunidad."
|
243 |
|
244 |
+
#: inc/php/tabs/faq.php:103
|
245 |
msgid "Thanks for your contribution!"
|
246 |
msgstr "¡Gracias por tu contribución!"
|
247 |
|
248 |
+
#: inc/php/tabs/faq.php:107
|
249 |
#, php-format
|
250 |
msgid "If you want to help translate this plugin, please visit the %s."
|
251 |
msgstr "Si quieres ayudar a traducir este complemento, por favor visite el %s."
|
252 |
|
253 |
+
#: inc/php/tabs/faq.php:111
|
254 |
msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
|
255 |
msgstr "También puede utilizar el archivo POT, incluido y colocado en la carpeta “languages”, para crear un archivo PO de traducción."
|
256 |
|
257 |
+
#: inc/php/tabs/faq.php:114
|
258 |
#, php-format
|
259 |
msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
|
260 |
msgstr "Simplemente envíenos ( %s ) el archivo PO e incluiremos esta traducción en la siguiente actualización del complemento."
|
261 |
|
262 |
+
#: inc/php/tabs/faq.php:121
|
263 |
msgid "How does it work?"
|
264 |
msgstr "¿Como funciona?"
|
265 |
|
266 |
+
#: inc/php/tabs/faq.php:124
|
267 |
msgid "On the \"Main\" tab, place your custom PHP code in the code editor field, switch the toggle to the \"ON\" position and click the \"Save changes\" button."
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: inc/php/tabs/faq.php:125 inc/php/tabs/usage.php:38
|
271 |
+
msgid "Enjoy the result of applying your custom PHP code."
|
272 |
+
msgstr ""
|
273 |
+
|
274 |
+
#: inc/php/tabs/faq.php:126 inc/php/tabs/usage.php:38
|
275 |
+
msgid "It's that simple!"
|
276 |
+
msgstr "¡Es así de simple!"
|
277 |
+
|
278 |
+
#: inc/php/tabs/faq.php:130
|
279 |
msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: inc/php/tabs/faq.php:134
|
283 |
msgid "But you need to do it properly, like this:"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: inc/php/tabs/faq.php:146
|
287 |
msgid "How much of PHP code (characters) I can enter in the code editor?"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: inc/php/tabs/faq.php:149
|
291 |
msgid "We don't limit the number of characters."
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: inc/php/tabs/faq.php:153
|
295 |
msgid "Does this plugin requires any modification of the theme?"
|
296 |
msgstr "¿Este complemento requiere alguna modificación del tema?"
|
297 |
|
298 |
+
#: inc/php/tabs/faq.php:156 inc/php/tabs/faq.php:164
|
299 |
msgid "Absolutely not."
|
300 |
msgstr "Absolutamente no."
|
301 |
|
302 |
+
#: inc/php/tabs/faq.php:157
|
303 |
msgid "This plugin is configurable entirely from the plugin settings page."
|
304 |
msgstr "Este complemento se puede configurar completamente desde su página de configuración."
|
305 |
|
306 |
+
#: inc/php/tabs/faq.php:161
|
307 |
msgid "Does this require any knowledge of HTML or CSS?"
|
308 |
msgstr "¿Esto requiere algún conocimiento de HTML o CSS?"
|
309 |
|
310 |
+
#: inc/php/tabs/faq.php:165
|
311 |
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
312 |
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."
|
313 |
|
314 |
+
#: inc/php/tabs/faq.php:169
|
315 |
msgid "Can I add my custom PHP code to a specific page of my website?"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: inc/php/tabs/faq.php:172
|
319 |
msgid "For now, this plugin does not have an option to apply the custom PHP code only on specific pages."
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: inc/php/tabs/faq.php:173
|
323 |
msgid "We plan to add this feature soon."
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: inc/php/tabs/faq.php:174
|
327 |
msgid "But for now in order to apply your custom PHP code only on specific pages of your website, you need to wrap your custom PHP code in a PHP function that will determine the page you want."
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: inc/php/tabs/faq.php:175
|
331 |
msgid "You need something like this:"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: inc/php/tabs/faq.php:191
|
335 |
msgid "It's not working."
|
336 |
msgstr "No funciona."
|
337 |
|
338 |
+
#: inc/php/tabs/faq.php:192 inc/php/tabs/faq.php:208 inc/php/tabs/faq.php:234
|
339 |
msgid "What could be wrong?"
|
340 |
msgstr "¿Qué podría estar mal?"
|
341 |
|
342 |
+
#: inc/php/tabs/faq.php:195
|
343 |
msgid "As with every plugin, it's possible that things don't work."
|
344 |
msgstr "Como con todos los complementos, es posible que las cosas no funcionen."
|
345 |
|
346 |
+
#: inc/php/tabs/faq.php:196
|
347 |
msgid "It's impossible to tell what could be wrong exactly."
|
348 |
msgstr "Es imposible decir exactamente lo que podría estar mal."
|
349 |
|
350 |
+
#: inc/php/tabs/faq.php:197
|
351 |
msgid "The most common reason for this is a web browser's cache."
|
352 |
msgstr "La razón más común para esto es la caché de un navegador web."
|
353 |
|
354 |
+
#: inc/php/tabs/faq.php:198
|
355 |
msgid "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load."
|
356 |
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."
|
357 |
|
358 |
+
#: inc/php/tabs/faq.php:199
|
359 |
msgid "This is called the browser's cache."
|
360 |
msgstr "Esto se denomina caché del navegador."
|
361 |
|
362 |
+
#: inc/php/tabs/faq.php:200
|
363 |
msgid "Clearing your browser's cache may solve the problem."
|
364 |
msgstr "Limpiar la caché del navegador puede resolver el problema."
|
365 |
|
366 |
+
#: inc/php/tabs/faq.php:202
|
367 |
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."
|
368 |
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."
|
369 |
|
370 |
+
#: inc/php/tabs/faq.php:203 inc/php/tabs/faq.php:304
|
371 |
msgid "Please include as much information as possible, including a link to your website where the problem can be seen."
|
372 |
msgstr "Incluye tanta información como sea posible, incluyendo un enlace a tu sitio web donde se pueda ver el problema."
|
373 |
|
374 |
+
#: inc/php/tabs/faq.php:207
|
375 |
msgid "On the plugin settings page, an error message appears."
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: inc/php/tabs/faq.php:211
|
379 |
msgid "Here are a few of the most likely causes of the error message:"
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: inc/php/tabs/faq.php:214
|
383 |
msgid "You make a syntax error in the code that you have entered."
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: inc/php/tabs/faq.php:215
|
387 |
msgid "Check the syntax of your code and try again."
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: inc/php/tabs/faq.php:218
|
391 |
msgid "You entered two functions with the same name."
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: inc/php/tabs/faq.php:219
|
395 |
msgid "Use a unique names for your functions."
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: inc/php/tabs/faq.php:222
|
399 |
msgid "You have entered function with a name that is already occupied by another function."
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: inc/php/tabs/faq.php:223
|
403 |
msgid "Use a unique name for your function."
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: inc/php/tabs/faq.php:226
|
407 |
msgid "You are trying to overwrite an existing function (of WordPress, theme, or plugin)."
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: inc/php/tabs/faq.php:227
|
411 |
msgid "Instead, use filters and hooks."
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: inc/php/tabs/faq.php:233
|
415 |
msgid "My custom PHP code is not working."
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: inc/php/tabs/faq.php:237
|
419 |
msgid "It happens that your custom PHP code that you insert on the plugin page does not work, even if an error message does not appear."
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: inc/php/tabs/faq.php:238
|
423 |
msgid "Here are a few of the most likely causes of the issue:"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: inc/php/tabs/faq.php:240
|
427 |
msgid "You have a typo during the insertion of your custom PHP code."
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: inc/php/tabs/faq.php:241
|
431 |
msgid "Your custom PHP code has a syntax error."
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: inc/php/tabs/faq.php:242
|
435 |
msgid "Your custom PHP code is incorrect and may not work."
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: inc/php/tabs/faq.php:247
|
439 |
msgid "What to do if this plugin crashed the website?"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: inc/php/tabs/faq.php:250
|
443 |
msgid "This plugin has a built-in functions for checking the custom code for syntax errors, duplicate functions names, and etc."
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: inc/php/tabs/faq.php:251
|
447 |
msgid "But plugin is not perfect, so there are times when the entered custom code causes the error and white screen (WSOD)."
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: inc/php/tabs/faq.php:252
|
451 |
msgid "This is due to the fact that your custom code has a syntax error that this plugin could not detect."
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: inc/php/tabs/faq.php:253
|
455 |
msgid "When this happens with you, please perform the following steps."
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: inc/php/tabs/faq.php:256
|
459 |
msgid "Access your server via FTP or SFTP."
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: inc/php/tabs/faq.php:257
|
463 |
msgid "If you aren't sure how usually your web hosting provider will have instructions somewhere on their website."
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: inc/php/tabs/faq.php:260
|
467 |
msgid "Browse to the directory <code>wp-content/plugins/my-custom-functions/</code>."
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: inc/php/tabs/faq.php:261
|
471 |
msgid "Please contact your web hosting company to get help if you can't find this folder."
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: inc/php/tabs/faq.php:264
|
475 |
msgid "Rename the file <code>START</code> to <code>STOP</code>."
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: inc/php/tabs/faq.php:265
|
479 |
msgid "This will stop the execution of your custom code."
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: inc/php/tabs/faq.php:267
|
483 |
msgid "Log in to Admin Area of your WordPress website."
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: inc/php/tabs/faq.php:268
|
487 |
msgid "Go to the plugin settings page <code>Settings</code> ➡ <code>PHP Inserter</code>."
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: inc/php/tabs/faq.php:269
|
491 |
msgid "Edit/fix your custom PHP code that you entered before the crash."
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: inc/php/tabs/faq.php:270
|
495 |
msgid "Return to the plugin folder and rename the file <code>STOP</code> to <code>START</code> and you're done!"
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: inc/php/tabs/faq.php:272
|
499 |
msgid "This plugin stored you entered code in the database of your website."
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: inc/php/tabs/faq.php:273
|
503 |
msgid "For getting your code, you also can go to the <code>Database</code> ➡ Table <code>wp_options</code> ➡ Option <code>spacexchimp_p001_settings</code> ➡ <code>option_value</code>."
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: inc/php/tabs/faq.php:275
|
507 |
msgid "We are already working on a feature to automatically stop the execution of users custom PHP code for cases when this plugin could not detect the error, and this caused the inaccessibility of the website."
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: inc/php/tabs/faq.php:279
|
511 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
|
512 |
msgstr "La última actualización de WordPress me impide editar mi sitio web que está utilizando este complemento."
|
513 |
|
514 |
+
#: inc/php/tabs/faq.php:280
|
515 |
msgid "Why is this?"
|
516 |
msgstr "¿Porqué sucede esto?"
|
517 |
|
518 |
+
#: inc/php/tabs/faq.php:283
|
519 |
msgid "This plugin can not cause such problem."
|
520 |
msgstr "Este complemento no puede causar este problema."
|
521 |
|
522 |
+
#: inc/php/tabs/faq.php:284
|
523 |
msgid "More likely, the problem are related to the settings of the website."
|
524 |
msgstr "Lo más probable es que el problema esté relacionado con la configuración del sitio web."
|
525 |
|
526 |
+
#: inc/php/tabs/faq.php:285
|
527 |
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."
|
528 |
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."
|
529 |
|
530 |
+
#: inc/php/tabs/faq.php:286
|
531 |
msgid "Also please try to re-login to the website, this too can help."
|
532 |
msgstr "También intenta volver a conectarte al sitio web, esto también puede ayudar."
|
533 |
|
534 |
+
#: inc/php/tabs/faq.php:290
|
535 |
msgid "Where to report bug if found?"
|
536 |
msgstr "¿Dónde informar el error si se encuentra?"
|
537 |
|
538 |
+
#: inc/php/tabs/faq.php:293
|
539 |
msgid "Bug reports are very welcome!"
|
540 |
msgstr "¡Informes de errores son bienvenidos!"
|
541 |
|
542 |
+
#: inc/php/tabs/faq.php:296
|
543 |
#, php-format
|
544 |
msgid "Please visit our %s contact page %s and report."
|
545 |
msgstr "Por favor visite nuestra %s página de contacto %s e informa."
|
546 |
|
547 |
+
#: inc/php/tabs/faq.php:301 inc/php/tabs/faq.php:330
|
548 |
msgid "Please do not forget to specify the name of the plugin."
|
549 |
msgstr "No olvides especificar el nombre del complemento."
|
550 |
|
551 |
+
#: inc/php/tabs/faq.php:302 inc/php/tabs/faq.php:331 inc/php/tabs/faq.php:347
|
552 |
msgid "Thank you!"
|
553 |
msgstr "¡Gracias!"
|
554 |
|
555 |
+
#: inc/php/tabs/faq.php:305
|
556 |
msgid "Describe in more detail what exactly you are seeing."
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: inc/php/tabs/faq.php:306
|
560 |
msgid "Here are some examples:"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: inc/php/tabs/faq.php:309
|
564 |
msgid "Elements of the plugin settings page are not working."
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: inc/php/tabs/faq.php:310
|
568 |
msgid "An error message is displayed on the plugin settings page."
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: inc/php/tabs/faq.php:311
|
572 |
msgid "An error message is displayed on the front end of website."
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: inc/php/tabs/faq.php:312
|
576 |
msgid "An error message is displayed on the back end of website."
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: inc/php/tabs/faq.php:313
|
580 |
msgid "Custom code is inserted on the plugin settings page, but it is not applied on the website."
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: inc/php/tabs/faq.php:314
|
584 |
msgid "Website is crashed."
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: inc/php/tabs/faq.php:319
|
588 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
589 |
msgstr "¿Dónde compartir ideas o sugerencias para mejorar el complemento?"
|
590 |
|
591 |
+
#: inc/php/tabs/faq.php:322
|
592 |
msgid "Any suggestions are very welcome!"
|
593 |
msgstr "Cualquier sugerencia es muy bienvenida!"
|
594 |
|
595 |
+
#: inc/php/tabs/faq.php:325
|
596 |
#, php-format
|
597 |
msgid "Please visit our %s contact page %s."
|
598 |
msgstr "Por favor visite nuestra %s página de contacto %s."
|
599 |
|
600 |
+
#: inc/php/tabs/faq.php:335
|
601 |
msgid "I love this plugin!"
|
602 |
msgstr "Me encanta este complemento!"
|
603 |
|
604 |
+
#: inc/php/tabs/faq.php:336
|
605 |
msgid "Can I help somehow?"
|
606 |
msgstr "¿Puedo ayudar de alguna manera?"
|
607 |
|
608 |
+
#: inc/php/tabs/faq.php:339
|
609 |
msgid "Yes, any contributions are very welcome!"
|
610 |
msgstr "Sí, cualquier contribución es muy bienvenida!"
|
611 |
|
612 |
+
#: inc/php/tabs/faq.php:342
|
613 |
#, php-format
|
614 |
msgid "Please visit our %s Support Us %s page."
|
615 |
msgstr "Por favor visite nuestra página de %s Apóyenos %s."
|
616 |
|
617 |
+
#: inc/php/tabs/faq.php:351
|
618 |
msgid "Where can I find information about your licenses, payment process and refunds?"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: inc/php/tabs/faq.php:356
|
622 |
#, php-format
|
623 |
msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: inc/php/tabs/faq.php:364
|
627 |
msgid "Where can I find information about your customer support?"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: inc/php/tabs/faq.php:369
|
631 |
#, php-format
|
632 |
msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: inc/php/tabs/faq.php:377
|
636 |
msgid "Where can I find information about your affiliate program?"
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: inc/php/tabs/faq.php:382
|
640 |
#, php-format
|
641 |
msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: inc/php/tabs/faq.php:390
|
645 |
msgid "My question wasn't answered here."
|
646 |
msgstr "Mi pregunta no fue contestada aquí."
|
647 |
|
648 |
+
#: inc/php/tabs/faq.php:395
|
649 |
#, php-format
|
650 |
msgid "You can ask your question on %s this page %s."
|
651 |
msgstr "Puede hacer su pregunta en %s esta página %s."
|
652 |
|
653 |
+
#: inc/php/tabs/faq.php:400
|
654 |
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."
|
655 |
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."
|
656 |
|
657 |
+
#: inc/php/tabs/settings.php:30
|
658 |
+
msgid "Functions (PHP code)"
|
659 |
+
msgstr ""
|
660 |
+
|
661 |
+
#: inc/php/tabs/settings.php:32
|
662 |
+
msgid "NOT SAVED!"
|
663 |
+
msgstr ""
|
664 |
+
|
665 |
+
#: inc/php/tabs/settings.php:46
|
666 |
+
msgid "Enter your PHP functions here"
|
667 |
+
msgstr ""
|
668 |
+
|
669 |
+
#: inc/php/tabs/settings.php:51
|
670 |
+
msgid "Save changes"
|
671 |
+
msgstr "Guardar cambios"
|
672 |
+
|
673 |
+
#: inc/php/tabs/support.php:13
|
674 |
msgid "Support Us"
|
675 |
msgstr "¡Apoyanos!"
|
676 |
|
677 |
+
#: inc/php/tabs/support.php:28
|
|
|
|
|
|
|
|
|
678 |
#, php-format
|
679 |
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."
|
680 |
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."
|
681 |
|
682 |
+
#: inc/php/tabs/support.php:37
|
683 |
msgid "Our intention is to create projects that will make this world a better place."
|
684 |
msgstr "Nuestra intención es crear proyectos que hagan de este mundo un lugar mejor."
|
685 |
|
686 |
+
#: inc/php/tabs/support.php:38
|
687 |
msgid "Our motto is - «Follow your dreams and don’t give up»."
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: inc/php/tabs/support.php:39
|
691 |
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."
|
692 |
msgstr "Nos realmente apasionado por nuestro trabajo, nos gusta lo que estamos haciendo y esperamos que tú también te enriquezcas con nos proyectos."
|
693 |
|
694 |
+
#: inc/php/tabs/support.php:42
|
695 |
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."
|
696 |
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."
|
697 |
|
698 |
+
#: inc/php/tabs/support.php:43
|
699 |
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."
|
700 |
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."
|
701 |
|
702 |
+
#: inc/php/tabs/support.php:46
|
703 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
704 |
msgstr "Si aprecias mi trabajo, puedes comprarme un café!"
|
705 |
|
706 |
+
#: inc/php/tabs/support.php:49
|
707 |
msgid "Thank you for your support!"
|
708 |
msgstr "¡Gracias por tu apoyo!"
|
709 |
|
710 |
+
#: inc/php/tabs/usage.php:13
|
711 |
+
msgid "Usage Instructions"
|
712 |
+
msgstr "Instrucciones de uso"
|
|
|
|
|
|
|
|
|
713 |
|
714 |
+
#: inc/php/tabs/usage.php:15
|
715 |
+
msgid "To add your custom PHP code to your website, simply follow these steps:"
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: inc/php/tabs/usage.php:17
|
719 |
+
msgid "Go to the \"Main\" tab on this page."
|
720 |
+
msgstr "Debes ir a la pestaña “Principal”."
|
721 |
|
722 |
+
#: inc/php/tabs/usage.php:19
|
723 |
+
msgid "Place your custom PHP code in the code editor field."
|
724 |
+
msgstr ""
|
725 |
|
726 |
+
#: inc/php/tabs/usage.php:22 inc/php/tabs/usage.php:26
|
727 |
+
msgid "Note!"
|
728 |
+
msgstr "¡Nota!"
|
729 |
|
730 |
+
#: inc/php/tabs/usage.php:23
|
731 |
+
msgid "Do not wrap your custom PHP code in HTML tags, such as <code><?php</code>...<code>?></code>."
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: inc/php/tabs/usage.php:29
|
735 |
+
#, php-format
|
736 |
+
msgid "Before use, please read the %s instructions %s in our Blog on what to do in case of a website crash."
|
737 |
+
msgstr ""
|
738 |
|
739 |
+
#: inc/php/tabs/usage.php:36
|
740 |
+
msgid "Switch the toggle to the \"ON\" position."
|
741 |
+
msgstr ""
|
742 |
|
743 |
+
#: inc/php/tabs/usage.php:37
|
744 |
+
msgid "Click the \"Save changes\" button."
|
745 |
+
msgstr "Clic en el botón \"Guardar cambios\"."
|
746 |
|
747 |
+
#: inc/php/tabs/usage.php:43
|
748 |
+
#, php-format
|
749 |
+
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
750 |
+
msgstr "Si quieres más opciones, %s díganos %s y estaremos encantados de añadirlo."
|
751 |
|
752 |
#. Plugin Name of the plugin/theme
|
753 |
msgid "My Custom Functions"
|
languages/my-custom-functions-fr_FR.mo
CHANGED
Binary file
|
languages/my-custom-functions-fr_FR.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\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 "PHP Inserter"
|
37 |
msgstr "PHP Inserter"
|
38 |
|
39 |
-
#: inc/php/messages.php:27 inc/php/
|
40 |
msgid "Hello!"
|
41 |
msgstr "Salut."
|
42 |
|
@@ -69,684 +69,685 @@ msgstr "Désolé, mais votre code provoque une \"erreur fatale\" ; il n'est donc
|
|
69 |
msgid "Please, check the code and try again."
|
70 |
msgstr "Svp, vérifiez le code et réessayez."
|
71 |
|
72 |
-
#: inc/php/page.php:
|
73 |
#, php-format
|
74 |
msgid "by %s Space X-Chimp %s"
|
75 |
msgstr "par %s Space X-Chimp %s"
|
76 |
|
77 |
-
#: inc/php/page.php:
|
78 |
msgid "Version"
|
79 |
msgstr "Version"
|
80 |
|
81 |
-
#: inc/php/page.php:
|
82 |
msgid "Main"
|
83 |
msgstr "Principal"
|
84 |
|
85 |
-
#: inc/php/page.php:
|
86 |
msgid "Usage"
|
87 |
msgstr "Utilisation"
|
88 |
|
89 |
-
#: inc/php/page.php:
|
90 |
msgid "F.A.Q."
|
91 |
msgstr "FAQ."
|
92 |
|
93 |
-
#: inc/php/page.php:
|
94 |
msgid "Support"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: inc/php/page.php:
|
98 |
msgid "Store"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: inc/php/
|
102 |
-
msgid "
|
103 |
-
msgstr "
|
104 |
-
|
105 |
-
#: inc/php/page.php:68
|
106 |
-
msgid "To add your custom PHP code to your website, simply follow these steps:"
|
107 |
-
msgstr "Pour ajouter votre code PHP personnalisé à votre site Web, il suffit de suivre ces étapes:"
|
108 |
-
|
109 |
-
#: inc/php/page.php:70
|
110 |
-
msgid "Go to the \"Main\" tab on this page."
|
111 |
-
msgstr "Accédez à l'onglet \"Principal\" de cette page."
|
112 |
-
|
113 |
-
#: inc/php/page.php:72
|
114 |
-
msgid "Place your custom PHP code in the code editor field."
|
115 |
-
msgstr "Placez votre code PHP personnalisé dans le champ de l'éditeur de code."
|
116 |
-
|
117 |
-
#: inc/php/page.php:75 inc/php/page.php:79
|
118 |
-
msgid "Note!"
|
119 |
-
msgstr "Observations!"
|
120 |
|
121 |
-
#: inc/php/
|
122 |
-
msgid "
|
123 |
-
msgstr "
|
124 |
|
125 |
-
#: inc/php/
|
126 |
-
|
127 |
-
|
128 |
-
msgstr "Avant l'utilisation, s'il vous plaît lire les %s instructions %s dans notre blog sur ce qu'il faut faire en cas de plantage du site."
|
129 |
|
130 |
-
#: inc/php/
|
131 |
-
msgid "
|
132 |
-
msgstr "
|
133 |
|
134 |
-
#: inc/php/
|
135 |
-
msgid "
|
136 |
-
msgstr "
|
137 |
|
138 |
-
#: inc/php/
|
139 |
-
msgid "
|
140 |
-
msgstr "
|
141 |
|
142 |
-
#: inc/php/
|
143 |
-
|
144 |
-
|
|
|
145 |
|
146 |
-
#: inc/php/
|
147 |
-
|
148 |
-
|
149 |
-
msgstr "Si vous voulez plus d'options, alors %s nous le faire savoir %s et nous serons heureux de les ajouter."
|
150 |
|
151 |
-
#: inc/php/
|
152 |
msgid "Frequently Asked Questions"
|
153 |
msgstr "Questions fréquentes"
|
154 |
|
155 |
-
#: inc/php/
|
156 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
157 |
msgstr "Si vous avez une question, veuillez lire la Foire aux questions ci-dessous pour voir si la réponse est ici."
|
158 |
|
159 |
-
#: inc/php/
|
160 |
msgid "Where can I find a documentation for this plugin?"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: inc/php/
|
164 |
#, php-format
|
165 |
msgid "Please visit our %s Documentation site %s to view documentation."
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: inc/php/
|
169 |
msgid "Will this plugin work on my wordpress.COM website?"
|
170 |
msgstr "Ce plugin fonctionnera-t-il sur mon site wordpress.COM?"
|
171 |
|
172 |
-
#: inc/php/
|
173 |
msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
|
174 |
msgstr "Désolé, ce plugin est disponible pour une utilisation uniquement sur les sites auto-hébergés (wordpress.ORG)."
|
175 |
|
176 |
-
#: inc/php/
|
177 |
msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: inc/php/
|
181 |
msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: inc/php/
|
185 |
#, php-format
|
186 |
msgid "You can learn more about the difference here: %s ."
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: inc/php/
|
190 |
msgid "Will this plugin work/compatible with the theme I use?"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: inc/php/
|
194 |
msgid "This plugin is compatible with most themes."
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: inc/php/
|
198 |
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."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: inc/php/
|
202 |
msgid "We constantly check this plugin for compatibility with third-party themes."
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: inc/php/
|
206 |
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."
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: inc/php/
|
210 |
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."
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: inc/php/
|
214 |
msgid "Will this plugin work/compatible with other plugins that I use?"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: inc/php/
|
218 |
msgid "This plugin is compatible with most plugins."
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: inc/php/
|
222 |
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."
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: inc/php/
|
226 |
msgid "We constantly check this plugin for compatibility with third-party plugins."
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: inc/php/
|
230 |
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."
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: inc/php/
|
234 |
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."
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: inc/php/
|
238 |
msgid "Can I use this plugin on my language?"
|
239 |
msgstr "Puis-je utiliser ce plugin sur ma langue?"
|
240 |
|
241 |
-
#: inc/php/
|
242 |
msgid "Yes."
|
243 |
msgstr "Oui."
|
244 |
|
245 |
-
#: inc/php/
|
246 |
msgid "This plugin is ready for translation and has already been translated into several languages."
|
247 |
msgstr "Ce plugin est prêt pour la traduction et a déjà été traduit en plusieurs langues."
|
248 |
|
249 |
-
#: inc/php/
|
250 |
msgid "But If your language is not available then you can make one."
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: inc/php/
|
254 |
msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
|
255 |
msgstr "Peut-être que toutes les traductions existantes ne sont pas à jour. Vous êtes invités à apporter des corrections!"
|
256 |
|
257 |
-
#: inc/php/
|
258 |
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
259 |
msgstr "Beaucoup d'utilisateurs de plugin serait ravi si vous partagez votre traduction avec la communauté."
|
260 |
|
261 |
-
#: inc/php/
|
262 |
msgid "Thanks for your contribution!"
|
263 |
msgstr "Merci pour votre contribution!"
|
264 |
|
265 |
-
#: inc/php/
|
266 |
#, php-format
|
267 |
msgid "If you want to help translate this plugin, please visit the %s."
|
268 |
msgstr "Si vous voulez aider à traduire ce plugin alors s'il vous plaît visitez le %s."
|
269 |
|
270 |
-
#: inc/php/
|
271 |
msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
|
272 |
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."
|
273 |
|
274 |
-
#: inc/php/
|
275 |
#, php-format
|
276 |
msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
|
277 |
msgstr "Il suffit d'envoyer le fichier PO pour nous ( %s ) et nous inclurons cette traduction dans la prochaine mise à jour du plugin."
|
278 |
|
279 |
-
#: inc/php/
|
280 |
msgid "How does it work?"
|
281 |
msgstr "Comment cela fonctionne?"
|
282 |
|
283 |
-
#: inc/php/
|
284 |
msgid "On the \"Main\" tab, place your custom PHP code in the code editor field, switch the toggle to the \"ON\" position and click the \"Save changes\" button."
|
285 |
msgstr "Dans l'onglet \"Principal\", placez votre code PHP personnalisé dans le champ de l'éditeur de code, basculez la bascule sur la position \"ON\" et cliquez sur le bouton \"Enregistrer les modifications\"."
|
286 |
|
287 |
-
#: inc/php/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
288 |
msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
|
289 |
msgstr "Puis-je utiliser le code HTML/CSS/JS intégré dans le code PHP?"
|
290 |
|
291 |
-
#: inc/php/
|
292 |
msgid "But you need to do it properly, like this:"
|
293 |
msgstr "Mais vous devez le faire correctement, comme ceci:"
|
294 |
|
295 |
-
#: inc/php/
|
296 |
msgid "How much of PHP code (characters) I can enter in the code editor?"
|
297 |
msgstr "Quelle quantité de code PHP (caractères) je peux entrer dans l'éditeur de code?"
|
298 |
|
299 |
-
#: inc/php/
|
300 |
msgid "We don't limit the number of characters."
|
301 |
msgstr "Nous ne limitons pas le nombre de caractères."
|
302 |
|
303 |
-
#: inc/php/
|
304 |
msgid "Does this plugin requires any modification of the theme?"
|
305 |
msgstr "Ce plugin nécessite-t-il une modification du thème?"
|
306 |
|
307 |
-
#: inc/php/
|
308 |
msgid "Absolutely not."
|
309 |
msgstr "Absolument pas."
|
310 |
|
311 |
-
#: inc/php/
|
312 |
msgid "This plugin is configurable entirely from the plugin settings page."
|
313 |
msgstr "Ce plugin est entièrement configurable à partir de la page des paramètres du plugin."
|
314 |
|
315 |
-
#: inc/php/
|
316 |
msgid "Does this require any knowledge of HTML or CSS?"
|
317 |
msgstr "Est-ce que cela nécessite une connaissance de HTML ou CSS?"
|
318 |
|
319 |
-
#: inc/php/
|
320 |
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
321 |
msgstr "Ce plugin peut être configuré sans connaissance de HTML ou CSS, en utilisant une page de paramètres de plugin facile à utiliser."
|
322 |
|
323 |
-
#: inc/php/
|
324 |
msgid "Can I add my custom PHP code to a specific page of my website?"
|
325 |
msgstr "Puis-je ajouter mon code PHP personnalisé à une page spécifique de mon site Web?"
|
326 |
|
327 |
-
#: inc/php/
|
328 |
msgid "For now, this plugin does not have an option to apply the custom PHP code only on specific pages."
|
329 |
msgstr "Pour l'instant, ce plugin n'a pas la possibilité d'appliquer le code PHP personnalisé uniquement sur des pages spécifiques."
|
330 |
|
331 |
-
#: inc/php/
|
332 |
msgid "We plan to add this feature soon."
|
333 |
msgstr "Nous prévoyons d'ajouter cette fonctionnalité bientôt."
|
334 |
|
335 |
-
#: inc/php/
|
336 |
msgid "But for now in order to apply your custom PHP code only on specific pages of your website, you need to wrap your custom PHP code in a PHP function that will determine the page you want."
|
337 |
msgstr "Mais pour l'instant afin d'appliquer votre code PHP personnalisé uniquement sur des pages spécifiques de votre site Web, vous devez envelopper votre code PHP personnalisé dans une fonction PHP qui déterminera la page que vous voulez."
|
338 |
|
339 |
-
#: inc/php/
|
340 |
msgid "You need something like this:"
|
341 |
msgstr "Vous avez besoin de quelque chose comme ça:"
|
342 |
|
343 |
-
#: inc/php/
|
344 |
msgid "It's not working."
|
345 |
msgstr "Ça marche pas."
|
346 |
|
347 |
-
#: inc/php/
|
348 |
msgid "What could be wrong?"
|
349 |
msgstr "Qu'est-ce qui peut être erroné?"
|
350 |
|
351 |
-
#: inc/php/
|
352 |
msgid "As with every plugin, it's possible that things don't work."
|
353 |
msgstr "Comme avec chaque plugin, il est possible que les choses ne fonctionnent pas."
|
354 |
|
355 |
-
#: inc/php/
|
356 |
msgid "It's impossible to tell what could be wrong exactly."
|
357 |
msgstr "Il est impossible de dire ce qui pourrait être erroné exactement."
|
358 |
|
359 |
-
#: inc/php/
|
360 |
msgid "The most common reason for this is a web browser's cache."
|
361 |
msgstr "La raison la plus courante pour cela est le cache d'un navigateur Web."
|
362 |
|
363 |
-
#: inc/php/
|
364 |
msgid "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load."
|
365 |
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."
|
366 |
|
367 |
-
#: inc/php/
|
368 |
msgid "This is called the browser's cache."
|
369 |
msgstr "C'est ce qu'on appelle le cache du navigateur."
|
370 |
|
371 |
-
#: inc/php/
|
372 |
msgid "Clearing your browser's cache may solve the problem."
|
373 |
msgstr "L'effacement du cache de votre navigateur peut résoudre le problème."
|
374 |
|
375 |
-
#: inc/php/
|
376 |
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."
|
377 |
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."
|
378 |
|
379 |
-
#: inc/php/
|
380 |
msgid "Please include as much information as possible, including a link to your website where the problem can be seen."
|
381 |
msgstr "Veuillez inclure autant d'informations que possible, y compris un lien vers votre site Web où le problème peut être vu."
|
382 |
|
383 |
-
#: inc/php/
|
384 |
msgid "On the plugin settings page, an error message appears."
|
385 |
msgstr "Sur la page des paramètres du plug-in, un message d'erreur s'affiche."
|
386 |
|
387 |
-
#: inc/php/
|
388 |
msgid "Here are a few of the most likely causes of the error message:"
|
389 |
msgstr "Voici quelques-unes des causes les plus probables du message d'erreur:"
|
390 |
|
391 |
-
#: inc/php/
|
392 |
msgid "You make a syntax error in the code that you have entered."
|
393 |
msgstr "Vous effectuez une erreur de syntaxe dans le code que vous avez entré."
|
394 |
|
395 |
-
#: inc/php/
|
396 |
msgid "Check the syntax of your code and try again."
|
397 |
msgstr "Vérifiez la syntaxe de votre code et réessayez."
|
398 |
|
399 |
-
#: inc/php/
|
400 |
msgid "You entered two functions with the same name."
|
401 |
msgstr "Vous avez entré deux fonctions avec le même nom."
|
402 |
|
403 |
-
#: inc/php/
|
404 |
msgid "Use a unique names for your functions."
|
405 |
msgstr "Utilisez un nom unique pour vos fonctions."
|
406 |
|
407 |
-
#: inc/php/
|
408 |
msgid "You have entered function with a name that is already occupied by another function."
|
409 |
msgstr "Vous avez entré la fonction avec un nom qui est déjà occupé par une autre fonction."
|
410 |
|
411 |
-
#: inc/php/
|
412 |
msgid "Use a unique name for your function."
|
413 |
msgstr "Utilisez un nom unique pour votre fonction."
|
414 |
|
415 |
-
#: inc/php/
|
416 |
msgid "You are trying to overwrite an existing function (of WordPress, theme, or plugin)."
|
417 |
msgstr "Vous essayez de remplacer une fonction existante (de WordPress, thème, ou plugin)."
|
418 |
|
419 |
-
#: inc/php/
|
420 |
msgid "Instead, use filters and hooks."
|
421 |
msgstr "Utilisez plutôt des filtres et des crochets."
|
422 |
|
423 |
-
#: inc/php/
|
424 |
msgid "My custom PHP code is not working."
|
425 |
msgstr "Mon code PHP personnalisé ne fonctionne pas."
|
426 |
|
427 |
-
#: inc/php/
|
428 |
msgid "It happens that your custom PHP code that you insert on the plugin page does not work, even if an error message does not appear."
|
429 |
msgstr "Il arrive que votre code PHP personnalisé que vous insérez sur la page du plugin ne fonctionne pas, même si un message d'erreur n'apparaît pas."
|
430 |
|
431 |
-
#: inc/php/
|
432 |
msgid "Here are a few of the most likely causes of the issue:"
|
433 |
msgstr "Voici quelques-unes des causes les plus probables de la question:"
|
434 |
|
435 |
-
#: inc/php/
|
436 |
msgid "You have a typo during the insertion of your custom PHP code."
|
437 |
msgstr "Vous avez une faute de frappe lors de l'insertion de votre code PHP personnalisé."
|
438 |
|
439 |
-
#: inc/php/
|
440 |
msgid "Your custom PHP code has a syntax error."
|
441 |
msgstr "Votre code PHP personnalisé a une erreur de syntaxe."
|
442 |
|
443 |
-
#: inc/php/
|
444 |
msgid "Your custom PHP code is incorrect and may not work."
|
445 |
msgstr "Votre code PHP personnalisé est incorrect et peut ne pas fonctionner."
|
446 |
|
447 |
-
#: inc/php/
|
448 |
msgid "What to do if this plugin crashed the website?"
|
449 |
msgstr "Que faire si ce plugin à cassé le site?"
|
450 |
|
451 |
-
#: inc/php/
|
452 |
msgid "This plugin has a built-in functions for checking the custom code for syntax errors, duplicate functions names, and etc."
|
453 |
msgstr "Ce plugin a une fonction intégrée pour vérifier le code personnalisé pour les erreurs de syntaxe, les noms des fonctions dupliquées, et etc."
|
454 |
|
455 |
-
#: inc/php/
|
456 |
msgid "But plugin is not perfect, so there are times when the entered custom code causes the error and white screen (WSOD)."
|
457 |
msgstr "Mais plugin n'est pas parfait, il y a donc des moments où le code personnalisé entré provoque l'erreur et écran blanc (WSOD)."
|
458 |
|
459 |
-
#: inc/php/
|
460 |
msgid "This is due to the fact that your custom code has a syntax error that this plugin could not detect."
|
461 |
msgstr "Cela est dû au fait que votre code personnalisé a une erreur de syntaxe que ce plugin n'a pas pu détecter."
|
462 |
|
463 |
-
#: inc/php/
|
464 |
msgid "When this happens with you, please perform the following steps."
|
465 |
msgstr "Lorsque cela se produit avec vous, s'il vous plaît effectuer les étapes suivantes."
|
466 |
|
467 |
-
#: inc/php/
|
468 |
msgid "Access your server via FTP or SFTP."
|
469 |
msgstr "Accédez à votre serveur via FTP ou SFTP."
|
470 |
|
471 |
-
#: inc/php/
|
472 |
msgid "If you aren't sure how usually your web hosting provider will have instructions somewhere on their website."
|
473 |
msgstr "Si vous n'êtes pas sûr comment habituellement votre fournisseur d'hébergement Web aura des instructions quelque part sur leur site Web."
|
474 |
|
475 |
-
#: inc/php/
|
476 |
msgid "Browse to the directory <code>wp-content/plugins/my-custom-functions/</code>."
|
477 |
msgstr "Naviguez jusqu'au répertoire <code>wp-content/plugins/my-custom-functions/</code>."
|
478 |
|
479 |
-
#: inc/php/
|
480 |
msgid "Please contact your web hosting company to get help if you can't find this folder."
|
481 |
msgstr "S'il vous plaît contacter votre société d'hébergement Web pour obtenir de l'aide si vous ne pouvez pas trouver ce dossier."
|
482 |
|
483 |
-
#: inc/php/
|
484 |
msgid "Rename the file <code>START</code> to <code>STOP</code>."
|
485 |
msgstr "Renommez le fichier <code>START</code> en <code>STOP</code>."
|
486 |
|
487 |
-
#: inc/php/
|
488 |
msgid "This will stop the execution of your custom code."
|
489 |
msgstr "Cela arrêtera l'exécution de votre code personnalisé."
|
490 |
|
491 |
-
#: inc/php/
|
492 |
msgid "Log in to Admin Area of your WordPress website."
|
493 |
msgstr "Connectez-vous à votre administration de votre site WordPress."
|
494 |
|
495 |
-
#: inc/php/
|
496 |
msgid "Go to the plugin settings page <code>Settings</code> ➡ <code>PHP Inserter</code>."
|
497 |
msgstr "Allez à la page des paramètres du plugin <code>Réglages</code> & #10145; <code>PHP Inserter</code>."
|
498 |
|
499 |
-
#: inc/php/
|
500 |
msgid "Edit/fix your custom PHP code that you entered before the crash."
|
501 |
msgstr "Modifiez/corrigez votre code PHP personnalisé que vous avez entré avant le crash."
|
502 |
|
503 |
-
#: inc/php/
|
504 |
msgid "Return to the plugin folder and rename the file <code>STOP</code> to <code>START</code> and you're done!"
|
505 |
msgstr "Revenez au dossier du plugin et renommez le fichier <code>STOP</code> à <code>START</code> et vous avez terminé!"
|
506 |
|
507 |
-
#: inc/php/
|
508 |
msgid "This plugin stored you entered code in the database of your website."
|
509 |
msgstr "Ce plugin stocké vous avez entré le code dans la base de données de votre site Web."
|
510 |
|
511 |
-
#: inc/php/
|
512 |
msgid "For getting your code, you also can go to the <code>Database</code> ➡ Table <code>wp_options</code> ➡ Option <code>spacexchimp_p001_settings</code> ➡ <code>option_value</code>."
|
513 |
msgstr "Pour obtenir votre code, vous pouvez également accéder à la base de données <code>Database</code> ➡ Table <code>wp_options</code> ➡ Option <code>spacexchimp_p001_settings</code> ➡ <code>option_value</code>."
|
514 |
|
515 |
-
#: inc/php/
|
516 |
msgid "We are already working on a feature to automatically stop the execution of users custom PHP code for cases when this plugin could not detect the error, and this caused the inaccessibility of the website."
|
517 |
msgstr "Nous travaillons déjà sur une fonctionnalité pour arrêter automatiquement l'exécution des utilisateurs de code PHP personnalisé pour les cas où ce plugin ne pouvait pas détecter l'erreur, et cela a provoqué l'inaccessibilité du site."
|
518 |
|
519 |
-
#: inc/php/
|
520 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
|
521 |
msgstr "La dernière mise à jour de WordPress m'empêche de modifier mon site Web qui utilise ce plugin."
|
522 |
|
523 |
-
#: inc/php/
|
524 |
msgid "Why is this?"
|
525 |
msgstr "Pourquoi?"
|
526 |
|
527 |
-
#: inc/php/
|
528 |
msgid "This plugin can not cause such problem."
|
529 |
msgstr "Ce plugin ne peut pas causer un tel problème."
|
530 |
|
531 |
-
#: inc/php/
|
532 |
msgid "More likely, the problem are related to the settings of the website."
|
533 |
msgstr "Plus probablement, le problème est lié aux paramètres du site Web."
|
534 |
|
535 |
-
#: inc/php/
|
536 |
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."
|
537 |
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."
|
538 |
|
539 |
-
#: inc/php/
|
540 |
msgid "Also please try to re-login to the website, this too can help."
|
541 |
msgstr "Aussi s'il vous plaît essayer de re-login sur le site, cela aussi peut vous aider."
|
542 |
|
543 |
-
#: inc/php/
|
544 |
msgid "Where to report bug if found?"
|
545 |
msgstr "Où signaler un bug ?"
|
546 |
|
547 |
-
#: inc/php/
|
548 |
msgid "Bug reports are very welcome!"
|
549 |
msgstr "Les rapports de bogues sont les bienvenus!"
|
550 |
|
551 |
-
#: inc/php/
|
552 |
#, php-format
|
553 |
msgid "Please visit our %s contact page %s and report."
|
554 |
msgstr "S'il vous plaît visitez notre %s page de contact %s et le rapport."
|
555 |
|
556 |
-
#: inc/php/
|
557 |
msgid "Please do not forget to specify the name of the plugin."
|
558 |
msgstr "S'il vous plaît n'oubliez pas de spécifier le nom du plugin."
|
559 |
|
560 |
-
#: inc/php/
|
561 |
msgid "Thank you!"
|
562 |
msgstr "Merci!"
|
563 |
|
564 |
-
#: inc/php/
|
565 |
msgid "Describe in more detail what exactly you are seeing."
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: inc/php/
|
569 |
msgid "Here are some examples:"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: inc/php/
|
573 |
msgid "Elements of the plugin settings page are not working."
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: inc/php/
|
577 |
msgid "An error message is displayed on the plugin settings page."
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: inc/php/
|
581 |
msgid "An error message is displayed on the front end of website."
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: inc/php/
|
585 |
msgid "An error message is displayed on the back end of website."
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: inc/php/
|
589 |
msgid "Custom code is inserted on the plugin settings page, but it is not applied on the website."
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: inc/php/
|
593 |
msgid "Website is crashed."
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: inc/php/
|
597 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
598 |
msgstr "Où partager des idées ou des suggestions pour rendre le plugin meilleure?"
|
599 |
|
600 |
-
#: inc/php/
|
601 |
msgid "Any suggestions are very welcome!"
|
602 |
msgstr "Toutes les suggestions sont les bienvenus!"
|
603 |
|
604 |
-
#: inc/php/
|
605 |
#, php-format
|
606 |
msgid "Please visit our %s contact page %s."
|
607 |
msgstr "Veuillez visiter notre %s page de contact %s."
|
608 |
|
609 |
-
#: inc/php/
|
610 |
msgid "I love this plugin!"
|
611 |
msgstr "J'aime ce plugin!"
|
612 |
|
613 |
-
#: inc/php/
|
614 |
msgid "Can I help somehow?"
|
615 |
msgstr "Puis-je aider ?"
|
616 |
|
617 |
-
#: inc/php/
|
618 |
msgid "Yes, any contributions are very welcome!"
|
619 |
msgstr "Oui, toutes les contributions sont les bienvenus!"
|
620 |
|
621 |
-
#: inc/php/
|
622 |
#, php-format
|
623 |
msgid "Please visit our %s Support Us %s page."
|
624 |
msgstr "Veuillez visiter notre page de %s Support Us %s."
|
625 |
|
626 |
-
#: inc/php/
|
627 |
msgid "Where can I find information about your licenses, payment process and refunds?"
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: inc/php/
|
631 |
#, php-format
|
632 |
msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: inc/php/
|
636 |
msgid "Where can I find information about your customer support?"
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: inc/php/
|
640 |
#, php-format
|
641 |
msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: inc/php/
|
645 |
msgid "Where can I find information about your affiliate program?"
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: inc/php/
|
649 |
#, php-format
|
650 |
msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: inc/php/
|
654 |
msgid "My question wasn't answered here."
|
655 |
msgstr "Ma question n'a pas été répondue ici."
|
656 |
|
657 |
-
#: inc/php/
|
658 |
#, php-format
|
659 |
msgid "You can ask your question on %s this page %s."
|
660 |
msgstr "Vous pouvez poser votre question sur %s cette page %s."
|
661 |
|
662 |
-
#: inc/php/
|
663 |
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."
|
664 |
msgstr ""
|
665 |
|
666 |
-
#: inc/php/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
667 |
msgid "Support Us"
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: inc/php/
|
671 |
-
msgid "Donate with PayPal"
|
672 |
-
msgstr "Faire un don avec PayPal"
|
673 |
-
|
674 |
-
#: inc/php/page.php:523
|
675 |
#, php-format
|
676 |
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."
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: inc/php/
|
680 |
msgid "Our intention is to create projects that will make this world a better place."
|
681 |
msgstr ""
|
682 |
|
683 |
-
#: inc/php/
|
684 |
msgid "Our motto is - «Follow your dreams and don’t give up»."
|
685 |
msgstr ""
|
686 |
|
687 |
-
#: inc/php/
|
688 |
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."
|
689 |
msgstr ""
|
690 |
|
691 |
-
#: inc/php/
|
692 |
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."
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: inc/php/
|
696 |
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."
|
697 |
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."
|
698 |
|
699 |
-
#: inc/php/
|
700 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
701 |
msgstr ""
|
702 |
|
703 |
-
#: inc/php/
|
704 |
msgid "Thank you for your support!"
|
705 |
msgstr ""
|
706 |
|
707 |
-
#: inc/php/
|
708 |
-
msgid "
|
709 |
-
msgstr "
|
710 |
-
|
711 |
-
#: inc/php/settings.php:32
|
712 |
-
msgid "NOT SAVED!"
|
713 |
-
msgstr "N'EST PAS SAUVÉ!"
|
714 |
|
715 |
-
#: inc/php/
|
716 |
-
msgid "
|
717 |
-
msgstr "
|
718 |
|
719 |
-
#: inc/php/
|
720 |
-
msgid "
|
721 |
-
msgstr "
|
722 |
|
723 |
-
#: inc/php/
|
724 |
-
msgid "
|
725 |
-
msgstr "
|
726 |
|
727 |
-
#: inc/php/
|
728 |
-
msgid "
|
729 |
-
msgstr "
|
730 |
|
731 |
-
#: inc/php/
|
732 |
-
msgid "
|
733 |
-
msgstr ""
|
734 |
|
735 |
-
#: inc/php/
|
736 |
-
|
737 |
-
|
|
|
738 |
|
739 |
-
#: inc/php/
|
740 |
-
msgid "
|
741 |
-
msgstr "
|
742 |
|
743 |
-
#: inc/php/
|
744 |
-
msgid "
|
745 |
-
msgstr "
|
746 |
|
747 |
-
#: inc/php/
|
748 |
-
|
749 |
-
|
|
|
750 |
|
751 |
#. Plugin Name of the plugin/theme
|
752 |
msgid "My Custom Functions"
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
+
"POT-Creation-Date: 2019-03-01 06:43+0300\n"
|
7 |
+
"PO-Revision-Date: 2019-03-01 06:43+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: French\n"
|
10 |
"Language: fr_FR\n"
|
36 |
msgid "PHP Inserter"
|
37 |
msgstr "PHP Inserter"
|
38 |
|
39 |
+
#: inc/php/messages.php:27 inc/php/tabs/support.php:25
|
40 |
msgid "Hello!"
|
41 |
msgstr "Salut."
|
42 |
|
69 |
msgid "Please, check the code and try again."
|
70 |
msgstr "Svp, vérifiez le code et réessayez."
|
71 |
|
72 |
+
#: inc/php/page.php:35
|
73 |
#, php-format
|
74 |
msgid "by %s Space X-Chimp %s"
|
75 |
msgstr "par %s Space X-Chimp %s"
|
76 |
|
77 |
+
#: inc/php/page.php:41
|
78 |
msgid "Version"
|
79 |
msgstr "Version"
|
80 |
|
81 |
+
#: inc/php/page.php:48
|
82 |
msgid "Main"
|
83 |
msgstr "Principal"
|
84 |
|
85 |
+
#: inc/php/page.php:49
|
86 |
msgid "Usage"
|
87 |
msgstr "Utilisation"
|
88 |
|
89 |
+
#: inc/php/page.php:50
|
90 |
msgid "F.A.Q."
|
91 |
msgstr "FAQ."
|
92 |
|
93 |
+
#: inc/php/page.php:51 inc/php/sidebar.php:47 inc/php/tabs/settings.php:54
|
94 |
msgid "Support"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: inc/php/page.php:52
|
98 |
msgid "Store"
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: inc/php/sidebar.php:16
|
102 |
+
msgid "We are «Space X-Chimp»"
|
103 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
104 |
|
105 |
+
#: inc/php/sidebar.php:33
|
106 |
+
msgid "About"
|
107 |
+
msgstr "A propos"
|
108 |
|
109 |
+
#: inc/php/sidebar.php:35
|
110 |
+
msgid "This plugin gives you the ability to easily and safely add your custom PHP code to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
|
111 |
+
msgstr "Ce plugin vous permet d'ajouter facilement et en toute sécurité votre code PHP personnalisé à votre site WordPress, directement hors de la zone d'administration de WordPress, sans avoir besoin d'avoir un éditeur externe."
|
|
|
112 |
|
113 |
+
#: inc/php/sidebar.php:40
|
114 |
+
msgid "Help"
|
115 |
+
msgstr "Aide"
|
116 |
|
117 |
+
#: inc/php/sidebar.php:42
|
118 |
+
msgid "If you have a question, please read the information in the FAQ section."
|
119 |
+
msgstr "Si vous avez une question, veuillez lire les informations dans la section FAQ."
|
120 |
|
121 |
+
#: inc/php/sidebar.php:49 inc/php/tabs/settings.php:56
|
122 |
+
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."
|
123 |
+
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."
|
124 |
|
125 |
+
#: inc/php/sidebar.php:54 inc/php/tabs/settings.php:61
|
126 |
+
#: inc/php/tabs/support.php:21
|
127 |
+
msgid "Donate with PayPal"
|
128 |
+
msgstr "Faire un don avec PayPal"
|
129 |
|
130 |
+
#: inc/php/sidebar.php:56 inc/php/tabs/settings.php:63
|
131 |
+
msgid "Thanks for your support!"
|
132 |
+
msgstr "Merci pour votre soutien!"
|
|
|
133 |
|
134 |
+
#: inc/php/tabs/faq.php:13
|
135 |
msgid "Frequently Asked Questions"
|
136 |
msgstr "Questions fréquentes"
|
137 |
|
138 |
+
#: inc/php/tabs/faq.php:17
|
139 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
140 |
msgstr "Si vous avez une question, veuillez lire la Foire aux questions ci-dessous pour voir si la réponse est ici."
|
141 |
|
142 |
+
#: inc/php/tabs/faq.php:42
|
143 |
msgid "Where can I find a documentation for this plugin?"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: inc/php/tabs/faq.php:47
|
147 |
#, php-format
|
148 |
msgid "Please visit our %s Documentation site %s to view documentation."
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: inc/php/tabs/faq.php:55
|
152 |
msgid "Will this plugin work on my wordpress.COM website?"
|
153 |
msgstr "Ce plugin fonctionnera-t-il sur mon site wordpress.COM?"
|
154 |
|
155 |
+
#: inc/php/tabs/faq.php:58
|
156 |
msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
|
157 |
msgstr "Désolé, ce plugin est disponible pour une utilisation uniquement sur les sites auto-hébergés (wordpress.ORG)."
|
158 |
|
159 |
+
#: inc/php/tabs/faq.php:60
|
160 |
msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: inc/php/tabs/faq.php:61
|
164 |
msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: inc/php/tabs/faq.php:64
|
168 |
#, php-format
|
169 |
msgid "You can learn more about the difference here: %s ."
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: inc/php/tabs/faq.php:71
|
173 |
msgid "Will this plugin work/compatible with the theme I use?"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: inc/php/tabs/faq.php:74
|
177 |
msgid "This plugin is compatible with most themes."
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: inc/php/tabs/faq.php:75
|
181 |
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."
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: inc/php/tabs/faq.php:76
|
185 |
msgid "We constantly check this plugin for compatibility with third-party themes."
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: inc/php/tabs/faq.php:77
|
189 |
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."
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: inc/php/tabs/faq.php:79
|
193 |
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."
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: inc/php/tabs/faq.php:83
|
197 |
msgid "Will this plugin work/compatible with other plugins that I use?"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: inc/php/tabs/faq.php:86
|
201 |
msgid "This plugin is compatible with most plugins."
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: inc/php/tabs/faq.php:87
|
205 |
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."
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: inc/php/tabs/faq.php:88
|
209 |
msgid "We constantly check this plugin for compatibility with third-party plugins."
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: inc/php/tabs/faq.php:89
|
213 |
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."
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: inc/php/tabs/faq.php:91
|
217 |
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."
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: inc/php/tabs/faq.php:95
|
221 |
msgid "Can I use this plugin on my language?"
|
222 |
msgstr "Puis-je utiliser ce plugin sur ma langue?"
|
223 |
|
224 |
+
#: inc/php/tabs/faq.php:98 inc/php/tabs/faq.php:133
|
225 |
msgid "Yes."
|
226 |
msgstr "Oui."
|
227 |
|
228 |
+
#: inc/php/tabs/faq.php:99
|
229 |
msgid "This plugin is ready for translation and has already been translated into several languages."
|
230 |
msgstr "Ce plugin est prêt pour la traduction et a déjà été traduit en plusieurs langues."
|
231 |
|
232 |
+
#: inc/php/tabs/faq.php:100
|
233 |
msgid "But If your language is not available then you can make one."
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: inc/php/tabs/faq.php:101
|
237 |
msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
|
238 |
msgstr "Peut-être que toutes les traductions existantes ne sont pas à jour. Vous êtes invités à apporter des corrections!"
|
239 |
|
240 |
+
#: inc/php/tabs/faq.php:102
|
241 |
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
242 |
msgstr "Beaucoup d'utilisateurs de plugin serait ravi si vous partagez votre traduction avec la communauté."
|
243 |
|
244 |
+
#: inc/php/tabs/faq.php:103
|
245 |
msgid "Thanks for your contribution!"
|
246 |
msgstr "Merci pour votre contribution!"
|
247 |
|
248 |
+
#: inc/php/tabs/faq.php:107
|
249 |
#, php-format
|
250 |
msgid "If you want to help translate this plugin, please visit the %s."
|
251 |
msgstr "Si vous voulez aider à traduire ce plugin alors s'il vous plaît visitez le %s."
|
252 |
|
253 |
+
#: inc/php/tabs/faq.php:111
|
254 |
msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
|
255 |
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."
|
256 |
|
257 |
+
#: inc/php/tabs/faq.php:114
|
258 |
#, php-format
|
259 |
msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
|
260 |
msgstr "Il suffit d'envoyer le fichier PO pour nous ( %s ) et nous inclurons cette traduction dans la prochaine mise à jour du plugin."
|
261 |
|
262 |
+
#: inc/php/tabs/faq.php:121
|
263 |
msgid "How does it work?"
|
264 |
msgstr "Comment cela fonctionne?"
|
265 |
|
266 |
+
#: inc/php/tabs/faq.php:124
|
267 |
msgid "On the \"Main\" tab, place your custom PHP code in the code editor field, switch the toggle to the \"ON\" position and click the \"Save changes\" button."
|
268 |
msgstr "Dans l'onglet \"Principal\", placez votre code PHP personnalisé dans le champ de l'éditeur de code, basculez la bascule sur la position \"ON\" et cliquez sur le bouton \"Enregistrer les modifications\"."
|
269 |
|
270 |
+
#: inc/php/tabs/faq.php:125 inc/php/tabs/usage.php:38
|
271 |
+
msgid "Enjoy the result of applying your custom PHP code."
|
272 |
+
msgstr "Profitez du résultat de l'application de votre code PHP personnalisé."
|
273 |
+
|
274 |
+
#: inc/php/tabs/faq.php:126 inc/php/tabs/usage.php:38
|
275 |
+
msgid "It's that simple!"
|
276 |
+
msgstr "C'est si simple!"
|
277 |
+
|
278 |
+
#: inc/php/tabs/faq.php:130
|
279 |
msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
|
280 |
msgstr "Puis-je utiliser le code HTML/CSS/JS intégré dans le code PHP?"
|
281 |
|
282 |
+
#: inc/php/tabs/faq.php:134
|
283 |
msgid "But you need to do it properly, like this:"
|
284 |
msgstr "Mais vous devez le faire correctement, comme ceci:"
|
285 |
|
286 |
+
#: inc/php/tabs/faq.php:146
|
287 |
msgid "How much of PHP code (characters) I can enter in the code editor?"
|
288 |
msgstr "Quelle quantité de code PHP (caractères) je peux entrer dans l'éditeur de code?"
|
289 |
|
290 |
+
#: inc/php/tabs/faq.php:149
|
291 |
msgid "We don't limit the number of characters."
|
292 |
msgstr "Nous ne limitons pas le nombre de caractères."
|
293 |
|
294 |
+
#: inc/php/tabs/faq.php:153
|
295 |
msgid "Does this plugin requires any modification of the theme?"
|
296 |
msgstr "Ce plugin nécessite-t-il une modification du thème?"
|
297 |
|
298 |
+
#: inc/php/tabs/faq.php:156 inc/php/tabs/faq.php:164
|
299 |
msgid "Absolutely not."
|
300 |
msgstr "Absolument pas."
|
301 |
|
302 |
+
#: inc/php/tabs/faq.php:157
|
303 |
msgid "This plugin is configurable entirely from the plugin settings page."
|
304 |
msgstr "Ce plugin est entièrement configurable à partir de la page des paramètres du plugin."
|
305 |
|
306 |
+
#: inc/php/tabs/faq.php:161
|
307 |
msgid "Does this require any knowledge of HTML or CSS?"
|
308 |
msgstr "Est-ce que cela nécessite une connaissance de HTML ou CSS?"
|
309 |
|
310 |
+
#: inc/php/tabs/faq.php:165
|
311 |
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
312 |
msgstr "Ce plugin peut être configuré sans connaissance de HTML ou CSS, en utilisant une page de paramètres de plugin facile à utiliser."
|
313 |
|
314 |
+
#: inc/php/tabs/faq.php:169
|
315 |
msgid "Can I add my custom PHP code to a specific page of my website?"
|
316 |
msgstr "Puis-je ajouter mon code PHP personnalisé à une page spécifique de mon site Web?"
|
317 |
|
318 |
+
#: inc/php/tabs/faq.php:172
|
319 |
msgid "For now, this plugin does not have an option to apply the custom PHP code only on specific pages."
|
320 |
msgstr "Pour l'instant, ce plugin n'a pas la possibilité d'appliquer le code PHP personnalisé uniquement sur des pages spécifiques."
|
321 |
|
322 |
+
#: inc/php/tabs/faq.php:173
|
323 |
msgid "We plan to add this feature soon."
|
324 |
msgstr "Nous prévoyons d'ajouter cette fonctionnalité bientôt."
|
325 |
|
326 |
+
#: inc/php/tabs/faq.php:174
|
327 |
msgid "But for now in order to apply your custom PHP code only on specific pages of your website, you need to wrap your custom PHP code in a PHP function that will determine the page you want."
|
328 |
msgstr "Mais pour l'instant afin d'appliquer votre code PHP personnalisé uniquement sur des pages spécifiques de votre site Web, vous devez envelopper votre code PHP personnalisé dans une fonction PHP qui déterminera la page que vous voulez."
|
329 |
|
330 |
+
#: inc/php/tabs/faq.php:175
|
331 |
msgid "You need something like this:"
|
332 |
msgstr "Vous avez besoin de quelque chose comme ça:"
|
333 |
|
334 |
+
#: inc/php/tabs/faq.php:191
|
335 |
msgid "It's not working."
|
336 |
msgstr "Ça marche pas."
|
337 |
|
338 |
+
#: inc/php/tabs/faq.php:192 inc/php/tabs/faq.php:208 inc/php/tabs/faq.php:234
|
339 |
msgid "What could be wrong?"
|
340 |
msgstr "Qu'est-ce qui peut être erroné?"
|
341 |
|
342 |
+
#: inc/php/tabs/faq.php:195
|
343 |
msgid "As with every plugin, it's possible that things don't work."
|
344 |
msgstr "Comme avec chaque plugin, il est possible que les choses ne fonctionnent pas."
|
345 |
|
346 |
+
#: inc/php/tabs/faq.php:196
|
347 |
msgid "It's impossible to tell what could be wrong exactly."
|
348 |
msgstr "Il est impossible de dire ce qui pourrait être erroné exactement."
|
349 |
|
350 |
+
#: inc/php/tabs/faq.php:197
|
351 |
msgid "The most common reason for this is a web browser's cache."
|
352 |
msgstr "La raison la plus courante pour cela est le cache d'un navigateur Web."
|
353 |
|
354 |
+
#: inc/php/tabs/faq.php:198
|
355 |
msgid "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load."
|
356 |
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."
|
357 |
|
358 |
+
#: inc/php/tabs/faq.php:199
|
359 |
msgid "This is called the browser's cache."
|
360 |
msgstr "C'est ce qu'on appelle le cache du navigateur."
|
361 |
|
362 |
+
#: inc/php/tabs/faq.php:200
|
363 |
msgid "Clearing your browser's cache may solve the problem."
|
364 |
msgstr "L'effacement du cache de votre navigateur peut résoudre le problème."
|
365 |
|
366 |
+
#: inc/php/tabs/faq.php:202
|
367 |
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."
|
368 |
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."
|
369 |
|
370 |
+
#: inc/php/tabs/faq.php:203 inc/php/tabs/faq.php:304
|
371 |
msgid "Please include as much information as possible, including a link to your website where the problem can be seen."
|
372 |
msgstr "Veuillez inclure autant d'informations que possible, y compris un lien vers votre site Web où le problème peut être vu."
|
373 |
|
374 |
+
#: inc/php/tabs/faq.php:207
|
375 |
msgid "On the plugin settings page, an error message appears."
|
376 |
msgstr "Sur la page des paramètres du plug-in, un message d'erreur s'affiche."
|
377 |
|
378 |
+
#: inc/php/tabs/faq.php:211
|
379 |
msgid "Here are a few of the most likely causes of the error message:"
|
380 |
msgstr "Voici quelques-unes des causes les plus probables du message d'erreur:"
|
381 |
|
382 |
+
#: inc/php/tabs/faq.php:214
|
383 |
msgid "You make a syntax error in the code that you have entered."
|
384 |
msgstr "Vous effectuez une erreur de syntaxe dans le code que vous avez entré."
|
385 |
|
386 |
+
#: inc/php/tabs/faq.php:215
|
387 |
msgid "Check the syntax of your code and try again."
|
388 |
msgstr "Vérifiez la syntaxe de votre code et réessayez."
|
389 |
|
390 |
+
#: inc/php/tabs/faq.php:218
|
391 |
msgid "You entered two functions with the same name."
|
392 |
msgstr "Vous avez entré deux fonctions avec le même nom."
|
393 |
|
394 |
+
#: inc/php/tabs/faq.php:219
|
395 |
msgid "Use a unique names for your functions."
|
396 |
msgstr "Utilisez un nom unique pour vos fonctions."
|
397 |
|
398 |
+
#: inc/php/tabs/faq.php:222
|
399 |
msgid "You have entered function with a name that is already occupied by another function."
|
400 |
msgstr "Vous avez entré la fonction avec un nom qui est déjà occupé par une autre fonction."
|
401 |
|
402 |
+
#: inc/php/tabs/faq.php:223
|
403 |
msgid "Use a unique name for your function."
|
404 |
msgstr "Utilisez un nom unique pour votre fonction."
|
405 |
|
406 |
+
#: inc/php/tabs/faq.php:226
|
407 |
msgid "You are trying to overwrite an existing function (of WordPress, theme, or plugin)."
|
408 |
msgstr "Vous essayez de remplacer une fonction existante (de WordPress, thème, ou plugin)."
|
409 |
|
410 |
+
#: inc/php/tabs/faq.php:227
|
411 |
msgid "Instead, use filters and hooks."
|
412 |
msgstr "Utilisez plutôt des filtres et des crochets."
|
413 |
|
414 |
+
#: inc/php/tabs/faq.php:233
|
415 |
msgid "My custom PHP code is not working."
|
416 |
msgstr "Mon code PHP personnalisé ne fonctionne pas."
|
417 |
|
418 |
+
#: inc/php/tabs/faq.php:237
|
419 |
msgid "It happens that your custom PHP code that you insert on the plugin page does not work, even if an error message does not appear."
|
420 |
msgstr "Il arrive que votre code PHP personnalisé que vous insérez sur la page du plugin ne fonctionne pas, même si un message d'erreur n'apparaît pas."
|
421 |
|
422 |
+
#: inc/php/tabs/faq.php:238
|
423 |
msgid "Here are a few of the most likely causes of the issue:"
|
424 |
msgstr "Voici quelques-unes des causes les plus probables de la question:"
|
425 |
|
426 |
+
#: inc/php/tabs/faq.php:240
|
427 |
msgid "You have a typo during the insertion of your custom PHP code."
|
428 |
msgstr "Vous avez une faute de frappe lors de l'insertion de votre code PHP personnalisé."
|
429 |
|
430 |
+
#: inc/php/tabs/faq.php:241
|
431 |
msgid "Your custom PHP code has a syntax error."
|
432 |
msgstr "Votre code PHP personnalisé a une erreur de syntaxe."
|
433 |
|
434 |
+
#: inc/php/tabs/faq.php:242
|
435 |
msgid "Your custom PHP code is incorrect and may not work."
|
436 |
msgstr "Votre code PHP personnalisé est incorrect et peut ne pas fonctionner."
|
437 |
|
438 |
+
#: inc/php/tabs/faq.php:247
|
439 |
msgid "What to do if this plugin crashed the website?"
|
440 |
msgstr "Que faire si ce plugin à cassé le site?"
|
441 |
|
442 |
+
#: inc/php/tabs/faq.php:250
|
443 |
msgid "This plugin has a built-in functions for checking the custom code for syntax errors, duplicate functions names, and etc."
|
444 |
msgstr "Ce plugin a une fonction intégrée pour vérifier le code personnalisé pour les erreurs de syntaxe, les noms des fonctions dupliquées, et etc."
|
445 |
|
446 |
+
#: inc/php/tabs/faq.php:251
|
447 |
msgid "But plugin is not perfect, so there are times when the entered custom code causes the error and white screen (WSOD)."
|
448 |
msgstr "Mais plugin n'est pas parfait, il y a donc des moments où le code personnalisé entré provoque l'erreur et écran blanc (WSOD)."
|
449 |
|
450 |
+
#: inc/php/tabs/faq.php:252
|
451 |
msgid "This is due to the fact that your custom code has a syntax error that this plugin could not detect."
|
452 |
msgstr "Cela est dû au fait que votre code personnalisé a une erreur de syntaxe que ce plugin n'a pas pu détecter."
|
453 |
|
454 |
+
#: inc/php/tabs/faq.php:253
|
455 |
msgid "When this happens with you, please perform the following steps."
|
456 |
msgstr "Lorsque cela se produit avec vous, s'il vous plaît effectuer les étapes suivantes."
|
457 |
|
458 |
+
#: inc/php/tabs/faq.php:256
|
459 |
msgid "Access your server via FTP or SFTP."
|
460 |
msgstr "Accédez à votre serveur via FTP ou SFTP."
|
461 |
|
462 |
+
#: inc/php/tabs/faq.php:257
|
463 |
msgid "If you aren't sure how usually your web hosting provider will have instructions somewhere on their website."
|
464 |
msgstr "Si vous n'êtes pas sûr comment habituellement votre fournisseur d'hébergement Web aura des instructions quelque part sur leur site Web."
|
465 |
|
466 |
+
#: inc/php/tabs/faq.php:260
|
467 |
msgid "Browse to the directory <code>wp-content/plugins/my-custom-functions/</code>."
|
468 |
msgstr "Naviguez jusqu'au répertoire <code>wp-content/plugins/my-custom-functions/</code>."
|
469 |
|
470 |
+
#: inc/php/tabs/faq.php:261
|
471 |
msgid "Please contact your web hosting company to get help if you can't find this folder."
|
472 |
msgstr "S'il vous plaît contacter votre société d'hébergement Web pour obtenir de l'aide si vous ne pouvez pas trouver ce dossier."
|
473 |
|
474 |
+
#: inc/php/tabs/faq.php:264
|
475 |
msgid "Rename the file <code>START</code> to <code>STOP</code>."
|
476 |
msgstr "Renommez le fichier <code>START</code> en <code>STOP</code>."
|
477 |
|
478 |
+
#: inc/php/tabs/faq.php:265
|
479 |
msgid "This will stop the execution of your custom code."
|
480 |
msgstr "Cela arrêtera l'exécution de votre code personnalisé."
|
481 |
|
482 |
+
#: inc/php/tabs/faq.php:267
|
483 |
msgid "Log in to Admin Area of your WordPress website."
|
484 |
msgstr "Connectez-vous à votre administration de votre site WordPress."
|
485 |
|
486 |
+
#: inc/php/tabs/faq.php:268
|
487 |
msgid "Go to the plugin settings page <code>Settings</code> ➡ <code>PHP Inserter</code>."
|
488 |
msgstr "Allez à la page des paramètres du plugin <code>Réglages</code> & #10145; <code>PHP Inserter</code>."
|
489 |
|
490 |
+
#: inc/php/tabs/faq.php:269
|
491 |
msgid "Edit/fix your custom PHP code that you entered before the crash."
|
492 |
msgstr "Modifiez/corrigez votre code PHP personnalisé que vous avez entré avant le crash."
|
493 |
|
494 |
+
#: inc/php/tabs/faq.php:270
|
495 |
msgid "Return to the plugin folder and rename the file <code>STOP</code> to <code>START</code> and you're done!"
|
496 |
msgstr "Revenez au dossier du plugin et renommez le fichier <code>STOP</code> à <code>START</code> et vous avez terminé!"
|
497 |
|
498 |
+
#: inc/php/tabs/faq.php:272
|
499 |
msgid "This plugin stored you entered code in the database of your website."
|
500 |
msgstr "Ce plugin stocké vous avez entré le code dans la base de données de votre site Web."
|
501 |
|
502 |
+
#: inc/php/tabs/faq.php:273
|
503 |
msgid "For getting your code, you also can go to the <code>Database</code> ➡ Table <code>wp_options</code> ➡ Option <code>spacexchimp_p001_settings</code> ➡ <code>option_value</code>."
|
504 |
msgstr "Pour obtenir votre code, vous pouvez également accéder à la base de données <code>Database</code> ➡ Table <code>wp_options</code> ➡ Option <code>spacexchimp_p001_settings</code> ➡ <code>option_value</code>."
|
505 |
|
506 |
+
#: inc/php/tabs/faq.php:275
|
507 |
msgid "We are already working on a feature to automatically stop the execution of users custom PHP code for cases when this plugin could not detect the error, and this caused the inaccessibility of the website."
|
508 |
msgstr "Nous travaillons déjà sur une fonctionnalité pour arrêter automatiquement l'exécution des utilisateurs de code PHP personnalisé pour les cas où ce plugin ne pouvait pas détecter l'erreur, et cela a provoqué l'inaccessibilité du site."
|
509 |
|
510 |
+
#: inc/php/tabs/faq.php:279
|
511 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
|
512 |
msgstr "La dernière mise à jour de WordPress m'empêche de modifier mon site Web qui utilise ce plugin."
|
513 |
|
514 |
+
#: inc/php/tabs/faq.php:280
|
515 |
msgid "Why is this?"
|
516 |
msgstr "Pourquoi?"
|
517 |
|
518 |
+
#: inc/php/tabs/faq.php:283
|
519 |
msgid "This plugin can not cause such problem."
|
520 |
msgstr "Ce plugin ne peut pas causer un tel problème."
|
521 |
|
522 |
+
#: inc/php/tabs/faq.php:284
|
523 |
msgid "More likely, the problem are related to the settings of the website."
|
524 |
msgstr "Plus probablement, le problème est lié aux paramètres du site Web."
|
525 |
|
526 |
+
#: inc/php/tabs/faq.php:285
|
527 |
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."
|
528 |
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."
|
529 |
|
530 |
+
#: inc/php/tabs/faq.php:286
|
531 |
msgid "Also please try to re-login to the website, this too can help."
|
532 |
msgstr "Aussi s'il vous plaît essayer de re-login sur le site, cela aussi peut vous aider."
|
533 |
|
534 |
+
#: inc/php/tabs/faq.php:290
|
535 |
msgid "Where to report bug if found?"
|
536 |
msgstr "Où signaler un bug ?"
|
537 |
|
538 |
+
#: inc/php/tabs/faq.php:293
|
539 |
msgid "Bug reports are very welcome!"
|
540 |
msgstr "Les rapports de bogues sont les bienvenus!"
|
541 |
|
542 |
+
#: inc/php/tabs/faq.php:296
|
543 |
#, php-format
|
544 |
msgid "Please visit our %s contact page %s and report."
|
545 |
msgstr "S'il vous plaît visitez notre %s page de contact %s et le rapport."
|
546 |
|
547 |
+
#: inc/php/tabs/faq.php:301 inc/php/tabs/faq.php:330
|
548 |
msgid "Please do not forget to specify the name of the plugin."
|
549 |
msgstr "S'il vous plaît n'oubliez pas de spécifier le nom du plugin."
|
550 |
|
551 |
+
#: inc/php/tabs/faq.php:302 inc/php/tabs/faq.php:331 inc/php/tabs/faq.php:347
|
552 |
msgid "Thank you!"
|
553 |
msgstr "Merci!"
|
554 |
|
555 |
+
#: inc/php/tabs/faq.php:305
|
556 |
msgid "Describe in more detail what exactly you are seeing."
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: inc/php/tabs/faq.php:306
|
560 |
msgid "Here are some examples:"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: inc/php/tabs/faq.php:309
|
564 |
msgid "Elements of the plugin settings page are not working."
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: inc/php/tabs/faq.php:310
|
568 |
msgid "An error message is displayed on the plugin settings page."
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: inc/php/tabs/faq.php:311
|
572 |
msgid "An error message is displayed on the front end of website."
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: inc/php/tabs/faq.php:312
|
576 |
msgid "An error message is displayed on the back end of website."
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: inc/php/tabs/faq.php:313
|
580 |
msgid "Custom code is inserted on the plugin settings page, but it is not applied on the website."
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: inc/php/tabs/faq.php:314
|
584 |
msgid "Website is crashed."
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: inc/php/tabs/faq.php:319
|
588 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
589 |
msgstr "Où partager des idées ou des suggestions pour rendre le plugin meilleure?"
|
590 |
|
591 |
+
#: inc/php/tabs/faq.php:322
|
592 |
msgid "Any suggestions are very welcome!"
|
593 |
msgstr "Toutes les suggestions sont les bienvenus!"
|
594 |
|
595 |
+
#: inc/php/tabs/faq.php:325
|
596 |
#, php-format
|
597 |
msgid "Please visit our %s contact page %s."
|
598 |
msgstr "Veuillez visiter notre %s page de contact %s."
|
599 |
|
600 |
+
#: inc/php/tabs/faq.php:335
|
601 |
msgid "I love this plugin!"
|
602 |
msgstr "J'aime ce plugin!"
|
603 |
|
604 |
+
#: inc/php/tabs/faq.php:336
|
605 |
msgid "Can I help somehow?"
|
606 |
msgstr "Puis-je aider ?"
|
607 |
|
608 |
+
#: inc/php/tabs/faq.php:339
|
609 |
msgid "Yes, any contributions are very welcome!"
|
610 |
msgstr "Oui, toutes les contributions sont les bienvenus!"
|
611 |
|
612 |
+
#: inc/php/tabs/faq.php:342
|
613 |
#, php-format
|
614 |
msgid "Please visit our %s Support Us %s page."
|
615 |
msgstr "Veuillez visiter notre page de %s Support Us %s."
|
616 |
|
617 |
+
#: inc/php/tabs/faq.php:351
|
618 |
msgid "Where can I find information about your licenses, payment process and refunds?"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: inc/php/tabs/faq.php:356
|
622 |
#, php-format
|
623 |
msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: inc/php/tabs/faq.php:364
|
627 |
msgid "Where can I find information about your customer support?"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: inc/php/tabs/faq.php:369
|
631 |
#, php-format
|
632 |
msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: inc/php/tabs/faq.php:377
|
636 |
msgid "Where can I find information about your affiliate program?"
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: inc/php/tabs/faq.php:382
|
640 |
#, php-format
|
641 |
msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: inc/php/tabs/faq.php:390
|
645 |
msgid "My question wasn't answered here."
|
646 |
msgstr "Ma question n'a pas été répondue ici."
|
647 |
|
648 |
+
#: inc/php/tabs/faq.php:395
|
649 |
#, php-format
|
650 |
msgid "You can ask your question on %s this page %s."
|
651 |
msgstr "Vous pouvez poser votre question sur %s cette page %s."
|
652 |
|
653 |
+
#: inc/php/tabs/faq.php:400
|
654 |
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."
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: inc/php/tabs/settings.php:30
|
658 |
+
msgid "Functions (PHP code)"
|
659 |
+
msgstr "Fonctions (code PHP)"
|
660 |
+
|
661 |
+
#: inc/php/tabs/settings.php:32
|
662 |
+
msgid "NOT SAVED!"
|
663 |
+
msgstr "N'EST PAS SAUVÉ!"
|
664 |
+
|
665 |
+
#: inc/php/tabs/settings.php:46
|
666 |
+
msgid "Enter your PHP functions here"
|
667 |
+
msgstr "Entrez votre fonction PHP ici"
|
668 |
+
|
669 |
+
#: inc/php/tabs/settings.php:51
|
670 |
+
msgid "Save changes"
|
671 |
+
msgstr "Enregistrer les modifications"
|
672 |
+
|
673 |
+
#: inc/php/tabs/support.php:13
|
674 |
msgid "Support Us"
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: inc/php/tabs/support.php:28
|
|
|
|
|
|
|
|
|
678 |
#, php-format
|
679 |
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."
|
680 |
msgstr ""
|
681 |
|
682 |
+
#: inc/php/tabs/support.php:37
|
683 |
msgid "Our intention is to create projects that will make this world a better place."
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: inc/php/tabs/support.php:38
|
687 |
msgid "Our motto is - «Follow your dreams and don’t give up»."
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: inc/php/tabs/support.php:39
|
691 |
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."
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: inc/php/tabs/support.php:42
|
695 |
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."
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: inc/php/tabs/support.php:43
|
699 |
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."
|
700 |
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."
|
701 |
|
702 |
+
#: inc/php/tabs/support.php:46
|
703 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: inc/php/tabs/support.php:49
|
707 |
msgid "Thank you for your support!"
|
708 |
msgstr ""
|
709 |
|
710 |
+
#: inc/php/tabs/usage.php:13
|
711 |
+
msgid "Usage Instructions"
|
712 |
+
msgstr "Instructions d'utilisation"
|
|
|
|
|
|
|
|
|
713 |
|
714 |
+
#: inc/php/tabs/usage.php:15
|
715 |
+
msgid "To add your custom PHP code to your website, simply follow these steps:"
|
716 |
+
msgstr "Pour ajouter votre code PHP personnalisé à votre site Web, il suffit de suivre ces étapes:"
|
717 |
|
718 |
+
#: inc/php/tabs/usage.php:17
|
719 |
+
msgid "Go to the \"Main\" tab on this page."
|
720 |
+
msgstr "Accédez à l'onglet \"Principal\" de cette page."
|
721 |
|
722 |
+
#: inc/php/tabs/usage.php:19
|
723 |
+
msgid "Place your custom PHP code in the code editor field."
|
724 |
+
msgstr "Placez votre code PHP personnalisé dans le champ de l'éditeur de code."
|
725 |
|
726 |
+
#: inc/php/tabs/usage.php:22 inc/php/tabs/usage.php:26
|
727 |
+
msgid "Note!"
|
728 |
+
msgstr "Observations!"
|
729 |
|
730 |
+
#: inc/php/tabs/usage.php:23
|
731 |
+
msgid "Do not wrap your custom PHP code in HTML tags, such as <code><?php</code>...<code>?></code>."
|
732 |
+
msgstr "N'enveloppez pas votre code PHP personnalisé dans des balises HTML, telles que <code><?php</code>...<code>?></code>."
|
733 |
|
734 |
+
#: inc/php/tabs/usage.php:29
|
735 |
+
#, php-format
|
736 |
+
msgid "Before use, please read the %s instructions %s in our Blog on what to do in case of a website crash."
|
737 |
+
msgstr "Avant l'utilisation, s'il vous plaît lire les %s instructions %s dans notre blog sur ce qu'il faut faire en cas de plantage du site."
|
738 |
|
739 |
+
#: inc/php/tabs/usage.php:36
|
740 |
+
msgid "Switch the toggle to the \"ON\" position."
|
741 |
+
msgstr "Basculez la bascule sur la position «ON»."
|
742 |
|
743 |
+
#: inc/php/tabs/usage.php:37
|
744 |
+
msgid "Click the \"Save changes\" button."
|
745 |
+
msgstr "Cliquez sur le bouton \"Enregistrer les modifications\"."
|
746 |
|
747 |
+
#: inc/php/tabs/usage.php:43
|
748 |
+
#, php-format
|
749 |
+
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
750 |
+
msgstr "Si vous voulez plus d'options, alors %s nous le faire savoir %s et nous serons heureux de les ajouter."
|
751 |
|
752 |
#. Plugin Name of the plugin/theme
|
753 |
msgid "My Custom Functions"
|
languages/my-custom-functions-nl_NL.mo
CHANGED
Binary file
|
languages/my-custom-functions-nl_NL.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\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 "PHP Inserter"
|
37 |
msgstr "PHP Inserter"
|
38 |
|
39 |
-
#: inc/php/messages.php:27 inc/php/
|
40 |
msgid "Hello!"
|
41 |
msgstr "Hallo!"
|
42 |
|
@@ -69,684 +69,685 @@ msgstr "Sorry, maar uw code veroorzaakt een \"Fatale fout\", dus deze wordt niet
|
|
69 |
msgid "Please, check the code and try again."
|
70 |
msgstr "Controleer de code, en probeer het opnieuw."
|
71 |
|
72 |
-
#: inc/php/page.php:
|
73 |
#, php-format
|
74 |
msgid "by %s Space X-Chimp %s"
|
75 |
msgstr "door %s Space X-Chimp %s"
|
76 |
|
77 |
-
#: inc/php/page.php:
|
78 |
msgid "Version"
|
79 |
msgstr "Versie"
|
80 |
|
81 |
-
#: inc/php/page.php:
|
82 |
msgid "Main"
|
83 |
msgstr "Hoofd"
|
84 |
|
85 |
-
#: inc/php/page.php:
|
86 |
msgid "Usage"
|
87 |
msgstr "Gebruik"
|
88 |
|
89 |
-
#: inc/php/page.php:
|
90 |
msgid "F.A.Q."
|
91 |
msgstr "F.A.Q."
|
92 |
|
93 |
-
#: inc/php/page.php:
|
94 |
msgid "Support"
|
95 |
msgstr "Ondersteuning"
|
96 |
|
97 |
-
#: inc/php/page.php:
|
98 |
msgid "Store"
|
99 |
msgstr "Winkel"
|
100 |
|
101 |
-
#: inc/php/
|
102 |
-
msgid "
|
103 |
-
msgstr "
|
104 |
-
|
105 |
-
#: inc/php/page.php:68
|
106 |
-
msgid "To add your custom PHP code to your website, simply follow these steps:"
|
107 |
-
msgstr "Om je eigen aangepaste functies (de PHP code) aan je website toe te voegen, volg deze simpele stappen:"
|
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 |
-
|
127 |
-
msgid "Before use, please read the %s instructions %s in our Blog on what to do in case of a website crash."
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: inc/php/
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
#: inc/php/page.php:90
|
135 |
-
msgid "Click the \"Save changes\" button."
|
136 |
-
msgstr "Klik op de knop \"Wijzigingen opslaan\"."
|
137 |
-
|
138 |
-
#: inc/php/page.php:91 inc/php/page.php:222
|
139 |
-
msgid "Enjoy the result of applying your custom PHP code."
|
140 |
-
msgstr "Geniet van het resultaat van het toepassen van je PHP-code."
|
141 |
-
|
142 |
-
#: inc/php/page.php:91 inc/php/page.php:223
|
143 |
-
msgid "It's that simple!"
|
144 |
-
msgstr "Zo eenvoudig is het!"
|
145 |
|
146 |
-
#: inc/php/
|
147 |
-
|
148 |
-
|
149 |
-
msgstr "Wilt u meer opties dan %s vertel ons %s en wij zullen graag toevoegen."
|
150 |
|
151 |
-
#: inc/php/
|
152 |
msgid "Frequently Asked Questions"
|
153 |
msgstr "Veel voorkomende vragen (FAQ)"
|
154 |
|
155 |
-
#: inc/php/
|
156 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
157 |
msgstr "Als je een vraag hebt, lees dan eerst de Veel voorkomende vragen (FAQ) hieronder. Misschien staat het antwoord ertussen."
|
158 |
|
159 |
-
#: inc/php/
|
160 |
msgid "Where can I find a documentation for this plugin?"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: inc/php/
|
164 |
#, php-format
|
165 |
msgid "Please visit our %s Documentation site %s to view documentation."
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: inc/php/
|
169 |
msgid "Will this plugin work on my wordpress.COM website?"
|
170 |
msgstr "Werkt deze plugin op mijn wordpress.COM website?"
|
171 |
|
172 |
-
#: inc/php/
|
173 |
msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
|
174 |
msgstr "Sorry, deze plug-in is alleen beschikbaar voor gebruik op zelf-gehoste (wordpress.ORG) websites."
|
175 |
|
176 |
-
#: inc/php/
|
177 |
msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: inc/php/
|
181 |
msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: inc/php/
|
185 |
#, php-format
|
186 |
msgid "You can learn more about the difference here: %s ."
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: inc/php/
|
190 |
msgid "Will this plugin work/compatible with the theme I use?"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: inc/php/
|
194 |
msgid "This plugin is compatible with most themes."
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: inc/php/
|
198 |
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."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: inc/php/
|
202 |
msgid "We constantly check this plugin for compatibility with third-party themes."
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: inc/php/
|
206 |
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."
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: inc/php/
|
210 |
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."
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: inc/php/
|
214 |
msgid "Will this plugin work/compatible with other plugins that I use?"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: inc/php/
|
218 |
msgid "This plugin is compatible with most plugins."
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: inc/php/
|
222 |
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."
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: inc/php/
|
226 |
msgid "We constantly check this plugin for compatibility with third-party plugins."
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: inc/php/
|
230 |
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."
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: inc/php/
|
234 |
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."
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: inc/php/
|
238 |
msgid "Can I use this plugin on my language?"
|
239 |
msgstr "Kan ik deze plug-in in mijn eigen taal gebruiken?"
|
240 |
|
241 |
-
#: inc/php/
|
242 |
msgid "Yes."
|
243 |
msgstr "Ja."
|
244 |
|
245 |
-
#: inc/php/
|
246 |
msgid "This plugin is ready for translation and has already been translated into several languages."
|
247 |
msgstr "Deze plug-in is klaar voor vertaling en is reeds in verschillende talen vertaald."
|
248 |
|
249 |
-
#: inc/php/
|
250 |
msgid "But If your language is not available then you can make one."
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: inc/php/
|
254 |
msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
|
255 |
msgstr "Misschien zijn niet alle bestaande vertalingen up-to-date of correct. Je bent van harte welkom om correcties bij te dragen!"
|
256 |
|
257 |
-
#: inc/php/
|
258 |
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
259 |
msgstr "Veel plugin-gebruikers zouden blij zijn als je je vertaling met de community deelt."
|
260 |
|
261 |
-
#: inc/php/
|
262 |
msgid "Thanks for your contribution!"
|
263 |
msgstr "Bedankt voor je bijdrage!"
|
264 |
|
265 |
-
#: inc/php/
|
266 |
#, php-format
|
267 |
msgid "If you want to help translate this plugin, please visit the %s."
|
268 |
msgstr "Als je wilt helpen deze plug-in te vertalen, bezoek dan de %s."
|
269 |
|
270 |
-
#: inc/php/
|
271 |
msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
|
272 |
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."
|
273 |
|
274 |
-
#: inc/php/
|
275 |
#, php-format
|
276 |
msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
|
277 |
msgstr "Stuur het PO-bestand naar ons ( %s ) en we zullen deze vertaling opnemen in de volgende plug-in update."
|
278 |
|
279 |
-
#: inc/php/
|
280 |
msgid "How does it work?"
|
281 |
msgstr "Hoe werkt het?"
|
282 |
|
283 |
-
#: inc/php/
|
284 |
msgid "On the \"Main\" tab, place your custom PHP code in the code editor field, switch the toggle to the \"ON\" position and click the \"Save changes\" button."
|
285 |
msgstr "Plaats op het tabblad “Hoofd” uw PHP-code in het veld, zet de schakelaar in de positie “AAN” en klik op de knop “Wijzigingen opslaan”."
|
286 |
|
287 |
-
#: inc/php/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
288 |
msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
|
289 |
msgstr "Kan ik HTML/CSS/JS code geïntegreerd in PHP-code gebruiken?"
|
290 |
|
291 |
-
#: inc/php/
|
292 |
msgid "But you need to do it properly, like this:"
|
293 |
msgstr "Maar je moet het goed doen, zoals dit:"
|
294 |
|
295 |
-
#: inc/php/
|
296 |
msgid "How much of PHP code (characters) I can enter in the code editor?"
|
297 |
msgstr "Hoe veel PHP code (tekens) kan ik invoeren?"
|
298 |
|
299 |
-
#: inc/php/
|
300 |
msgid "We don't limit the number of characters."
|
301 |
msgstr "Er is geen beperking op het aantal tekens."
|
302 |
|
303 |
-
#: inc/php/
|
304 |
msgid "Does this plugin requires any modification of the theme?"
|
305 |
msgstr "Heeft deze plug-in enige aanpassing van het thema nodig?"
|
306 |
|
307 |
-
#: inc/php/
|
308 |
msgid "Absolutely not."
|
309 |
msgstr "Absoluut niet."
|
310 |
|
311 |
-
#: inc/php/
|
312 |
msgid "This plugin is configurable entirely from the plugin settings page."
|
313 |
msgstr "Deze plug-in kan volledig worden geconfigureerd via de pagina met plugin-instellingen."
|
314 |
|
315 |
-
#: inc/php/
|
316 |
msgid "Does this require any knowledge of HTML or CSS?"
|
317 |
msgstr "Vereist dit enige kennis van HTML of CSS?"
|
318 |
|
319 |
-
#: inc/php/
|
320 |
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
321 |
msgstr "Deze plug-in kan worden geconfigureerd zonder kennis van HTML of CSS, met behulp van de eenvoudig te gebruiken plugin-instellingenpagina."
|
322 |
|
323 |
-
#: inc/php/
|
324 |
msgid "Can I add my custom PHP code to a specific page of my website?"
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: inc/php/
|
328 |
msgid "For now, this plugin does not have an option to apply the custom PHP code only on specific pages."
|
329 |
msgstr ""
|
330 |
|
331 |
-
#: inc/php/
|
332 |
msgid "We plan to add this feature soon."
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: inc/php/
|
336 |
msgid "But for now in order to apply your custom PHP code only on specific pages of your website, you need to wrap your custom PHP code in a PHP function that will determine the page you want."
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: inc/php/
|
340 |
msgid "You need something like this:"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: inc/php/
|
344 |
msgid "It's not working."
|
345 |
msgstr "Het werkt niet."
|
346 |
|
347 |
-
#: inc/php/
|
348 |
msgid "What could be wrong?"
|
349 |
msgstr "Wat kan er fout zijn?"
|
350 |
|
351 |
-
#: inc/php/
|
352 |
msgid "As with every plugin, it's possible that things don't work."
|
353 |
msgstr "Zoals met elke plug-in, is het mogelijk dat dingen niet werken."
|
354 |
|
355 |
-
#: inc/php/
|
356 |
msgid "It's impossible to tell what could be wrong exactly."
|
357 |
msgstr "Het is onmogelijk om precies te vertellen wat er precies mis zou kunnen zijn."
|
358 |
|
359 |
-
#: inc/php/
|
360 |
msgid "The most common reason for this is a web browser's cache."
|
361 |
msgstr "De meest voorkomende reden hiervoor is de cache van een webbrowser."
|
362 |
|
363 |
-
#: inc/php/
|
364 |
msgid "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load."
|
365 |
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."
|
366 |
|
367 |
-
#: inc/php/
|
368 |
msgid "This is called the browser's cache."
|
369 |
msgstr "Dit wordt de cache van de browser genoemd."
|
370 |
|
371 |
-
#: inc/php/
|
372 |
msgid "Clearing your browser's cache may solve the problem."
|
373 |
msgstr "Het wissen van de cache van uw browser kan het probleem oplossen."
|
374 |
|
375 |
-
#: inc/php/
|
376 |
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."
|
377 |
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."
|
378 |
|
379 |
-
#: inc/php/
|
380 |
msgid "Please include as much information as possible, including a link to your website where the problem can be seen."
|
381 |
msgstr "Voeg zoveel mogelijk informatie toe, inclusief een link naar uw website waar het probleem kan worden gezien."
|
382 |
|
383 |
-
#: inc/php/
|
384 |
msgid "On the plugin settings page, an error message appears."
|
385 |
msgstr "Op de plug-in instellingen pagina verschijnt een fout-melding."
|
386 |
|
387 |
-
#: inc/php/
|
388 |
msgid "Here are a few of the most likely causes of the error message:"
|
389 |
msgstr "Hier zijn enkele van de meest waarschijnlijke oorzaken van de foutmelding:"
|
390 |
|
391 |
-
#: inc/php/
|
392 |
msgid "You make a syntax error in the code that you have entered."
|
393 |
msgstr "Je maakt een syntaxisfout in de code die je hebt ingevoerd."
|
394 |
|
395 |
-
#: inc/php/
|
396 |
msgid "Check the syntax of your code and try again."
|
397 |
msgstr "Controleer de syntaxis van je code en probeer het opnieuw."
|
398 |
|
399 |
-
#: inc/php/
|
400 |
msgid "You entered two functions with the same name."
|
401 |
msgstr "U hebt twee functies met dezelfde naam ingevoerd."
|
402 |
|
403 |
-
#: inc/php/
|
404 |
msgid "Use a unique names for your functions."
|
405 |
msgstr "Gebruik een unieke naam voor uw functies."
|
406 |
|
407 |
-
#: inc/php/
|
408 |
msgid "You have entered function with a name that is already occupied by another function."
|
409 |
msgstr "Je hebt de functie ingevoerd met een naam die al in gebruik is door een andere functie."
|
410 |
|
411 |
-
#: inc/php/
|
412 |
msgid "Use a unique name for your function."
|
413 |
msgstr "Gebruik een unieke naam voor uw functies."
|
414 |
|
415 |
-
#: inc/php/
|
416 |
msgid "You are trying to overwrite an existing function (of WordPress, theme, or plugin)."
|
417 |
msgstr "Je probeert een bestaande functie (van WordPress, thema of plug-in) te overschrijven."
|
418 |
|
419 |
-
#: inc/php/
|
420 |
msgid "Instead, use filters and hooks."
|
421 |
msgstr "Gebruik in plaats daarvan filters en haken."
|
422 |
|
423 |
-
#: inc/php/
|
424 |
msgid "My custom PHP code is not working."
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: inc/php/
|
428 |
msgid "It happens that your custom PHP code that you insert on the plugin page does not work, even if an error message does not appear."
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: inc/php/
|
432 |
msgid "Here are a few of the most likely causes of the issue:"
|
433 |
msgstr "Hier zijn enkele van de meest waarschijnlijke oorzaken van de foutmelding:"
|
434 |
|
435 |
-
#: inc/php/
|
436 |
msgid "You have a typo during the insertion of your custom PHP code."
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: inc/php/
|
440 |
msgid "Your custom PHP code has a syntax error."
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: inc/php/
|
444 |
msgid "Your custom PHP code is incorrect and may not work."
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: inc/php/
|
448 |
msgid "What to do if this plugin crashed the website?"
|
449 |
msgstr "Wat te doen als deze plug-in de website heeft gecrasht?"
|
450 |
|
451 |
-
#: inc/php/
|
452 |
msgid "This plugin has a built-in functions for checking the custom code for syntax errors, duplicate functions names, and etc."
|
453 |
msgstr "Deze plugin heeft ingebouwde functies voor het controleren van de aangepaste code op syntaxisfouten, dubbele functies namen en enz."
|
454 |
|
455 |
-
#: inc/php/
|
456 |
msgid "But plugin is not perfect, so there are times when the entered custom code causes the error and white screen (WSOD)."
|
457 |
msgstr "Maar plugin is niet perfect, het is dus mogelijk dat de ingevoerde code een foutbericht en een wit scherm (WSOD) veroorzaakt."
|
458 |
|
459 |
-
#: inc/php/
|
460 |
msgid "This is due to the fact that your custom code has a syntax error that this plugin could not detect."
|
461 |
msgstr "Dit is de wijten aan het feit dat uw aangepaste code een syntaxisfout heeft, die door deze plugin kon niet worden gevonden."
|
462 |
|
463 |
-
#: inc/php/
|
464 |
msgid "When this happens with you, please perform the following steps."
|
465 |
msgstr "Wanneer dit met gebeurt, voer dan de volgende stappen uit."
|
466 |
|
467 |
-
#: inc/php/
|
468 |
msgid "Access your server via FTP or SFTP."
|
469 |
msgstr "Benader je server via FTP of SFTP."
|
470 |
|
471 |
-
#: inc/php/
|
472 |
msgid "If you aren't sure how usually your web hosting provider will have instructions somewhere on their website."
|
473 |
msgstr "Als u niet zeker bent hoe, vaak heeft je webhostingprovider ergens op hun website instructies staan."
|
474 |
|
475 |
-
#: inc/php/
|
476 |
msgid "Browse to the directory <code>wp-content/plugins/my-custom-functions/</code>."
|
477 |
msgstr "Blader naar de map <code>wp-content/plugins/my-custom-functions/</code> ."
|
478 |
|
479 |
-
#: inc/php/
|
480 |
msgid "Please contact your web hosting company to get help if you can't find this folder."
|
481 |
msgstr "Neem contact op met je web hosting bedrijf om hulp te krijgen als je deze map niet kunt vinden."
|
482 |
|
483 |
-
#: inc/php/
|
484 |
msgid "Rename the file <code>START</code> to <code>STOP</code>."
|
485 |
msgstr "Hernoem het bestand <code>START</code> naar <code>STOP</code>."
|
486 |
|
487 |
-
#: inc/php/
|
488 |
msgid "This will stop the execution of your custom code."
|
489 |
msgstr "Hiermee stopt u het uitvoeren van uw aangepaste code."
|
490 |
|
491 |
-
#: inc/php/
|
492 |
msgid "Log in to Admin Area of your WordPress website."
|
493 |
msgstr "Log in op het Admin-gedeelte van uw WordPress-website."
|
494 |
|
495 |
-
#: inc/php/
|
496 |
msgid "Go to the plugin settings page <code>Settings</code> ➡ <code>PHP Inserter</code>."
|
497 |
msgstr "Ga naar de plug-in instellingen pagina <code>Instellingen</code> ➡ <code>PHP Inserter</code>."
|
498 |
|
499 |
-
#: inc/php/
|
500 |
msgid "Edit/fix your custom PHP code that you entered before the crash."
|
501 |
msgstr "Edit/repareer je custos code welke je hebt ingevoerd voor de crash."
|
502 |
|
503 |
-
#: inc/php/
|
504 |
msgid "Return to the plugin folder and rename the file <code>STOP</code> to <code>START</code> and you're done!"
|
505 |
msgstr "Keer terug naar de plug-in directorie en verander de naam van het bestand <code>STOP</code> naar <code>START</code> en je bent klaar!"
|
506 |
|
507 |
-
#: inc/php/
|
508 |
msgid "This plugin stored you entered code in the database of your website."
|
509 |
msgstr "Deze plug-in heeft de door jouw ingevoerde code opgeslagen in de database van je website."
|
510 |
|
511 |
-
#: inc/php/
|
512 |
msgid "For getting your code, you also can go to the <code>Database</code> ➡ Table <code>wp_options</code> ➡ Option <code>spacexchimp_p001_settings</code> ➡ <code>option_value</code>."
|
513 |
msgstr "Om je code te verkrijgen, kun je ook naar <code>Database</code> ➡ Table <code>wp_options</code> ➡ Option <code>spacexchimp_p001_settings</code> ➡ <code>option_value</code> gaan."
|
514 |
|
515 |
-
#: inc/php/
|
516 |
msgid "We are already working on a feature to automatically stop the execution of users custom PHP code for cases when this plugin could not detect the error, and this caused the inaccessibility of the website."
|
517 |
msgstr "We zijn bezig met het maken van een optie om de uitvoering van PHP-code automatisch te stoppen, als de plugin geen fout kon detecteren en de PHP-code wel een onbereikbare website veroorzaakt."
|
518 |
|
519 |
-
#: inc/php/
|
520 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
|
521 |
msgstr "De laatste Wordpress update zorgt ervoor dat ik mijn website niet kan bewerken als ik deze plugin gebruik."
|
522 |
|
523 |
-
#: inc/php/
|
524 |
msgid "Why is this?"
|
525 |
msgstr "Waarom is dit?"
|
526 |
|
527 |
-
#: inc/php/
|
528 |
msgid "This plugin can not cause such problem."
|
529 |
msgstr "Deze plug-in kan zo’n probleem niet veroorzaken."
|
530 |
|
531 |
-
#: inc/php/
|
532 |
msgid "More likely, the problem are related to the settings of the website."
|
533 |
msgstr "Waarschijnlijker is het probleem gerelateerd aan de instellingen van de website."
|
534 |
|
535 |
-
#: inc/php/
|
536 |
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."
|
537 |
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."
|
538 |
|
539 |
-
#: inc/php/
|
540 |
msgid "Also please try to re-login to the website, this too can help."
|
541 |
msgstr "Probeer ook opnieuw in te loggen op de website, ook dit kan helpen."
|
542 |
|
543 |
-
#: inc/php/
|
544 |
msgid "Where to report bug if found?"
|
545 |
msgstr "Waar kan een bug gerapporteerd worden indien gevonden?"
|
546 |
|
547 |
-
#: inc/php/
|
548 |
msgid "Bug reports are very welcome!"
|
549 |
msgstr "Bugrapporten zijn van harte welkom!"
|
550 |
|
551 |
-
#: inc/php/
|
552 |
#, php-format
|
553 |
msgid "Please visit our %s contact page %s and report."
|
554 |
msgstr "Ga naar onze %s contactpagina %s en rapporteer."
|
555 |
|
556 |
-
#: inc/php/
|
557 |
msgid "Please do not forget to specify the name of the plugin."
|
558 |
msgstr "Vergeet alsjeblieft niet om de naam van de plug-in te specificeren."
|
559 |
|
560 |
-
#: inc/php/
|
561 |
msgid "Thank you!"
|
562 |
msgstr "Dank je!"
|
563 |
|
564 |
-
#: inc/php/
|
565 |
msgid "Describe in more detail what exactly you are seeing."
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: inc/php/
|
569 |
msgid "Here are some examples:"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: inc/php/
|
573 |
msgid "Elements of the plugin settings page are not working."
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: inc/php/
|
577 |
msgid "An error message is displayed on the plugin settings page."
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: inc/php/
|
581 |
msgid "An error message is displayed on the front end of website."
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: inc/php/
|
585 |
msgid "An error message is displayed on the back end of website."
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: inc/php/
|
589 |
msgid "Custom code is inserted on the plugin settings page, but it is not applied on the website."
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: inc/php/
|
593 |
msgid "Website is crashed."
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: inc/php/
|
597 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
598 |
msgstr "Waar kan ik ideeën of suggesties delen om de plug-in beter te maken?"
|
599 |
|
600 |
-
#: inc/php/
|
601 |
msgid "Any suggestions are very welcome!"
|
602 |
msgstr "Alle suggesties zijn van harte welkom!"
|
603 |
|
604 |
-
#: inc/php/
|
605 |
#, php-format
|
606 |
msgid "Please visit our %s contact page %s."
|
607 |
msgstr "Ga naar onze %s contactpagina %s."
|
608 |
|
609 |
-
#: inc/php/
|
610 |
msgid "I love this plugin!"
|
611 |
msgstr "Ik ben dol op deze plug-in!"
|
612 |
|
613 |
-
#: inc/php/
|
614 |
msgid "Can I help somehow?"
|
615 |
msgstr "Kan ik op de een of andere manier helpen?"
|
616 |
|
617 |
-
#: inc/php/
|
618 |
msgid "Yes, any contributions are very welcome!"
|
619 |
msgstr "Ja, alle bijdragen zijn van harte welkom!"
|
620 |
|
621 |
-
#: inc/php/
|
622 |
#, php-format
|
623 |
msgid "Please visit our %s Support Us %s page."
|
624 |
msgstr "Ga naar onze %s Support Us %s."
|
625 |
|
626 |
-
#: inc/php/
|
627 |
msgid "Where can I find information about your licenses, payment process and refunds?"
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: inc/php/
|
631 |
#, php-format
|
632 |
msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: inc/php/
|
636 |
msgid "Where can I find information about your customer support?"
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: inc/php/
|
640 |
#, php-format
|
641 |
msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: inc/php/
|
645 |
msgid "Where can I find information about your affiliate program?"
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: inc/php/
|
649 |
#, php-format
|
650 |
msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: inc/php/
|
654 |
msgid "My question wasn't answered here."
|
655 |
msgstr "Mij vraag is hier niet beantwoord."
|
656 |
|
657 |
-
#: inc/php/
|
658 |
#, php-format
|
659 |
msgid "You can ask your question on %s this page %s."
|
660 |
msgstr "Je kunt je vraag op %s deze pagina %s stellen."
|
661 |
|
662 |
-
#: inc/php/
|
663 |
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."
|
664 |
msgstr "Maar houd er rekening mee dat deze plug-in gratis is en er geen speciaal ondersteuningsteam is, dus we kunnen niet iedereen antwoorden."
|
665 |
|
666 |
-
#: inc/php/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
667 |
msgid "Support Us"
|
668 |
msgstr "Ondersteun ons"
|
669 |
|
670 |
-
#: inc/php/
|
671 |
-
msgid "Donate with PayPal"
|
672 |
-
msgstr "Doneer via PayPal"
|
673 |
-
|
674 |
-
#: inc/php/page.php:523
|
675 |
#, php-format
|
676 |
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."
|
677 |
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."
|
678 |
|
679 |
-
#: inc/php/
|
680 |
msgid "Our intention is to create projects that will make this world a better place."
|
681 |
msgstr "Het is onze bedoeling om projecten te maken die van deze wereld een betere plek maken."
|
682 |
|
683 |
-
#: inc/php/
|
684 |
msgid "Our motto is - «Follow your dreams and don’t give up»."
|
685 |
msgstr ""
|
686 |
|
687 |
-
#: inc/php/
|
688 |
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."
|
689 |
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."
|
690 |
|
691 |
-
#: inc/php/
|
692 |
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."
|
693 |
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."
|
694 |
|
695 |
-
#: inc/php/
|
696 |
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."
|
697 |
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."
|
698 |
|
699 |
-
#: inc/php/
|
700 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
701 |
msgstr "Als je ons werk waardeert, kun je een koffie voor ons kopen!"
|
702 |
|
703 |
-
#: inc/php/
|
704 |
msgid "Thank you for your support!"
|
705 |
msgstr "Bedankt voor je ondersteuning!"
|
706 |
|
707 |
-
#: inc/php/
|
708 |
-
msgid "
|
709 |
-
msgstr "
|
710 |
-
|
711 |
-
#: inc/php/settings.php:32
|
712 |
-
msgid "NOT SAVED!"
|
713 |
-
msgstr ""
|
714 |
|
715 |
-
#: inc/php/
|
716 |
-
msgid "
|
717 |
-
msgstr "
|
718 |
|
719 |
-
#: inc/php/
|
720 |
-
msgid "
|
721 |
-
msgstr "
|
722 |
|
723 |
-
#: inc/php/
|
724 |
-
msgid "
|
725 |
-
msgstr ""
|
726 |
|
727 |
-
#: inc/php/
|
728 |
-
msgid "
|
729 |
-
msgstr "
|
730 |
|
731 |
-
#: inc/php/
|
732 |
-
msgid "
|
733 |
-
msgstr "
|
734 |
|
735 |
-
#: inc/php/
|
736 |
-
|
737 |
-
|
|
|
738 |
|
739 |
-
#: inc/php/
|
740 |
-
msgid "
|
741 |
-
msgstr "
|
742 |
|
743 |
-
#: inc/php/
|
744 |
-
msgid "
|
745 |
-
msgstr "
|
746 |
|
747 |
-
#: inc/php/
|
748 |
-
|
749 |
-
|
|
|
750 |
|
751 |
#. Plugin Name of the plugin/theme
|
752 |
msgid "My Custom Functions"
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
+
"POT-Creation-Date: 2019-03-01 06:43+0300\n"
|
7 |
+
"PO-Revision-Date: 2019-03-01 06:43+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Dutch\n"
|
10 |
"Language: nl_NL\n"
|
36 |
msgid "PHP Inserter"
|
37 |
msgstr "PHP Inserter"
|
38 |
|
39 |
+
#: inc/php/messages.php:27 inc/php/tabs/support.php:25
|
40 |
msgid "Hello!"
|
41 |
msgstr "Hallo!"
|
42 |
|
69 |
msgid "Please, check the code and try again."
|
70 |
msgstr "Controleer de code, en probeer het opnieuw."
|
71 |
|
72 |
+
#: inc/php/page.php:35
|
73 |
#, php-format
|
74 |
msgid "by %s Space X-Chimp %s"
|
75 |
msgstr "door %s Space X-Chimp %s"
|
76 |
|
77 |
+
#: inc/php/page.php:41
|
78 |
msgid "Version"
|
79 |
msgstr "Versie"
|
80 |
|
81 |
+
#: inc/php/page.php:48
|
82 |
msgid "Main"
|
83 |
msgstr "Hoofd"
|
84 |
|
85 |
+
#: inc/php/page.php:49
|
86 |
msgid "Usage"
|
87 |
msgstr "Gebruik"
|
88 |
|
89 |
+
#: inc/php/page.php:50
|
90 |
msgid "F.A.Q."
|
91 |
msgstr "F.A.Q."
|
92 |
|
93 |
+
#: inc/php/page.php:51 inc/php/sidebar.php:47 inc/php/tabs/settings.php:54
|
94 |
msgid "Support"
|
95 |
msgstr "Ondersteuning"
|
96 |
|
97 |
+
#: inc/php/page.php:52
|
98 |
msgid "Store"
|
99 |
msgstr "Winkel"
|
100 |
|
101 |
+
#: inc/php/sidebar.php:16
|
102 |
+
msgid "We are «Space X-Chimp»"
|
103 |
+
msgstr "Wij zijn «Space X-Chimp»"
|
|
|
|
|
|
|
|
|
104 |
|
105 |
+
#: inc/php/sidebar.php:33
|
106 |
+
msgid "About"
|
107 |
+
msgstr "Over"
|
108 |
|
109 |
+
#: inc/php/sidebar.php:35
|
110 |
+
msgid "This plugin gives you the ability to easily and safely add your custom PHP code to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
|
111 |
+
msgstr "Met deze plug-in kunt u eenvoudig en veilig uw aangepaste functies (PHP-code) rechtstreeks toevoegen via uw WordPress-Admin, zonder dat u een externe editor nodig hebt."
|
112 |
|
113 |
+
#: inc/php/sidebar.php:40
|
114 |
+
msgid "Help"
|
115 |
+
msgstr "Helpen"
|
116 |
|
117 |
+
#: inc/php/sidebar.php:42
|
118 |
+
msgid "If you have a question, please read the information in the FAQ section."
|
119 |
+
msgstr "Als je een vraag hebt, lees dan de informatie in de FAQ-sectie."
|
120 |
|
121 |
+
#: inc/php/sidebar.php:49 inc/php/tabs/settings.php:56
|
122 |
+
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."
|
|
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: inc/php/sidebar.php:54 inc/php/tabs/settings.php:61
|
126 |
+
#: inc/php/tabs/support.php:21
|
127 |
+
msgid "Donate with PayPal"
|
128 |
+
msgstr "Doneer via PayPal"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
|
130 |
+
#: inc/php/sidebar.php:56 inc/php/tabs/settings.php:63
|
131 |
+
msgid "Thanks for your support!"
|
132 |
+
msgstr "Bedankt voor uw steun!"
|
|
|
133 |
|
134 |
+
#: inc/php/tabs/faq.php:13
|
135 |
msgid "Frequently Asked Questions"
|
136 |
msgstr "Veel voorkomende vragen (FAQ)"
|
137 |
|
138 |
+
#: inc/php/tabs/faq.php:17
|
139 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
140 |
msgstr "Als je een vraag hebt, lees dan eerst de Veel voorkomende vragen (FAQ) hieronder. Misschien staat het antwoord ertussen."
|
141 |
|
142 |
+
#: inc/php/tabs/faq.php:42
|
143 |
msgid "Where can I find a documentation for this plugin?"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: inc/php/tabs/faq.php:47
|
147 |
#, php-format
|
148 |
msgid "Please visit our %s Documentation site %s to view documentation."
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: inc/php/tabs/faq.php:55
|
152 |
msgid "Will this plugin work on my wordpress.COM website?"
|
153 |
msgstr "Werkt deze plugin op mijn wordpress.COM website?"
|
154 |
|
155 |
+
#: inc/php/tabs/faq.php:58
|
156 |
msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
|
157 |
msgstr "Sorry, deze plug-in is alleen beschikbaar voor gebruik op zelf-gehoste (wordpress.ORG) websites."
|
158 |
|
159 |
+
#: inc/php/tabs/faq.php:60
|
160 |
msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: inc/php/tabs/faq.php:61
|
164 |
msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: inc/php/tabs/faq.php:64
|
168 |
#, php-format
|
169 |
msgid "You can learn more about the difference here: %s ."
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: inc/php/tabs/faq.php:71
|
173 |
msgid "Will this plugin work/compatible with the theme I use?"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: inc/php/tabs/faq.php:74
|
177 |
msgid "This plugin is compatible with most themes."
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: inc/php/tabs/faq.php:75
|
181 |
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."
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: inc/php/tabs/faq.php:76
|
185 |
msgid "We constantly check this plugin for compatibility with third-party themes."
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: inc/php/tabs/faq.php:77
|
189 |
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."
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: inc/php/tabs/faq.php:79
|
193 |
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."
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: inc/php/tabs/faq.php:83
|
197 |
msgid "Will this plugin work/compatible with other plugins that I use?"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: inc/php/tabs/faq.php:86
|
201 |
msgid "This plugin is compatible with most plugins."
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: inc/php/tabs/faq.php:87
|
205 |
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."
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: inc/php/tabs/faq.php:88
|
209 |
msgid "We constantly check this plugin for compatibility with third-party plugins."
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: inc/php/tabs/faq.php:89
|
213 |
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."
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: inc/php/tabs/faq.php:91
|
217 |
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."
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: inc/php/tabs/faq.php:95
|
221 |
msgid "Can I use this plugin on my language?"
|
222 |
msgstr "Kan ik deze plug-in in mijn eigen taal gebruiken?"
|
223 |
|
224 |
+
#: inc/php/tabs/faq.php:98 inc/php/tabs/faq.php:133
|
225 |
msgid "Yes."
|
226 |
msgstr "Ja."
|
227 |
|
228 |
+
#: inc/php/tabs/faq.php:99
|
229 |
msgid "This plugin is ready for translation and has already been translated into several languages."
|
230 |
msgstr "Deze plug-in is klaar voor vertaling en is reeds in verschillende talen vertaald."
|
231 |
|
232 |
+
#: inc/php/tabs/faq.php:100
|
233 |
msgid "But If your language is not available then you can make one."
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: inc/php/tabs/faq.php:101
|
237 |
msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
|
238 |
msgstr "Misschien zijn niet alle bestaande vertalingen up-to-date of correct. Je bent van harte welkom om correcties bij te dragen!"
|
239 |
|
240 |
+
#: inc/php/tabs/faq.php:102
|
241 |
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
242 |
msgstr "Veel plugin-gebruikers zouden blij zijn als je je vertaling met de community deelt."
|
243 |
|
244 |
+
#: inc/php/tabs/faq.php:103
|
245 |
msgid "Thanks for your contribution!"
|
246 |
msgstr "Bedankt voor je bijdrage!"
|
247 |
|
248 |
+
#: inc/php/tabs/faq.php:107
|
249 |
#, php-format
|
250 |
msgid "If you want to help translate this plugin, please visit the %s."
|
251 |
msgstr "Als je wilt helpen deze plug-in te vertalen, bezoek dan de %s."
|
252 |
|
253 |
+
#: inc/php/tabs/faq.php:111
|
254 |
msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
|
255 |
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."
|
256 |
|
257 |
+
#: inc/php/tabs/faq.php:114
|
258 |
#, php-format
|
259 |
msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
|
260 |
msgstr "Stuur het PO-bestand naar ons ( %s ) en we zullen deze vertaling opnemen in de volgende plug-in update."
|
261 |
|
262 |
+
#: inc/php/tabs/faq.php:121
|
263 |
msgid "How does it work?"
|
264 |
msgstr "Hoe werkt het?"
|
265 |
|
266 |
+
#: inc/php/tabs/faq.php:124
|
267 |
msgid "On the \"Main\" tab, place your custom PHP code in the code editor field, switch the toggle to the \"ON\" position and click the \"Save changes\" button."
|
268 |
msgstr "Plaats op het tabblad “Hoofd” uw PHP-code in het veld, zet de schakelaar in de positie “AAN” en klik op de knop “Wijzigingen opslaan”."
|
269 |
|
270 |
+
#: inc/php/tabs/faq.php:125 inc/php/tabs/usage.php:38
|
271 |
+
msgid "Enjoy the result of applying your custom PHP code."
|
272 |
+
msgstr "Geniet van het resultaat van het toepassen van je PHP-code."
|
273 |
+
|
274 |
+
#: inc/php/tabs/faq.php:126 inc/php/tabs/usage.php:38
|
275 |
+
msgid "It's that simple!"
|
276 |
+
msgstr "Zo eenvoudig is het!"
|
277 |
+
|
278 |
+
#: inc/php/tabs/faq.php:130
|
279 |
msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
|
280 |
msgstr "Kan ik HTML/CSS/JS code geïntegreerd in PHP-code gebruiken?"
|
281 |
|
282 |
+
#: inc/php/tabs/faq.php:134
|
283 |
msgid "But you need to do it properly, like this:"
|
284 |
msgstr "Maar je moet het goed doen, zoals dit:"
|
285 |
|
286 |
+
#: inc/php/tabs/faq.php:146
|
287 |
msgid "How much of PHP code (characters) I can enter in the code editor?"
|
288 |
msgstr "Hoe veel PHP code (tekens) kan ik invoeren?"
|
289 |
|
290 |
+
#: inc/php/tabs/faq.php:149
|
291 |
msgid "We don't limit the number of characters."
|
292 |
msgstr "Er is geen beperking op het aantal tekens."
|
293 |
|
294 |
+
#: inc/php/tabs/faq.php:153
|
295 |
msgid "Does this plugin requires any modification of the theme?"
|
296 |
msgstr "Heeft deze plug-in enige aanpassing van het thema nodig?"
|
297 |
|
298 |
+
#: inc/php/tabs/faq.php:156 inc/php/tabs/faq.php:164
|
299 |
msgid "Absolutely not."
|
300 |
msgstr "Absoluut niet."
|
301 |
|
302 |
+
#: inc/php/tabs/faq.php:157
|
303 |
msgid "This plugin is configurable entirely from the plugin settings page."
|
304 |
msgstr "Deze plug-in kan volledig worden geconfigureerd via de pagina met plugin-instellingen."
|
305 |
|
306 |
+
#: inc/php/tabs/faq.php:161
|
307 |
msgid "Does this require any knowledge of HTML or CSS?"
|
308 |
msgstr "Vereist dit enige kennis van HTML of CSS?"
|
309 |
|
310 |
+
#: inc/php/tabs/faq.php:165
|
311 |
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
312 |
msgstr "Deze plug-in kan worden geconfigureerd zonder kennis van HTML of CSS, met behulp van de eenvoudig te gebruiken plugin-instellingenpagina."
|
313 |
|
314 |
+
#: inc/php/tabs/faq.php:169
|
315 |
msgid "Can I add my custom PHP code to a specific page of my website?"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: inc/php/tabs/faq.php:172
|
319 |
msgid "For now, this plugin does not have an option to apply the custom PHP code only on specific pages."
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: inc/php/tabs/faq.php:173
|
323 |
msgid "We plan to add this feature soon."
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: inc/php/tabs/faq.php:174
|
327 |
msgid "But for now in order to apply your custom PHP code only on specific pages of your website, you need to wrap your custom PHP code in a PHP function that will determine the page you want."
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: inc/php/tabs/faq.php:175
|
331 |
msgid "You need something like this:"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: inc/php/tabs/faq.php:191
|
335 |
msgid "It's not working."
|
336 |
msgstr "Het werkt niet."
|
337 |
|
338 |
+
#: inc/php/tabs/faq.php:192 inc/php/tabs/faq.php:208 inc/php/tabs/faq.php:234
|
339 |
msgid "What could be wrong?"
|
340 |
msgstr "Wat kan er fout zijn?"
|
341 |
|
342 |
+
#: inc/php/tabs/faq.php:195
|
343 |
msgid "As with every plugin, it's possible that things don't work."
|
344 |
msgstr "Zoals met elke plug-in, is het mogelijk dat dingen niet werken."
|
345 |
|
346 |
+
#: inc/php/tabs/faq.php:196
|
347 |
msgid "It's impossible to tell what could be wrong exactly."
|
348 |
msgstr "Het is onmogelijk om precies te vertellen wat er precies mis zou kunnen zijn."
|
349 |
|
350 |
+
#: inc/php/tabs/faq.php:197
|
351 |
msgid "The most common reason for this is a web browser's cache."
|
352 |
msgstr "De meest voorkomende reden hiervoor is de cache van een webbrowser."
|
353 |
|
354 |
+
#: inc/php/tabs/faq.php:198
|
355 |
msgid "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load."
|
356 |
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."
|
357 |
|
358 |
+
#: inc/php/tabs/faq.php:199
|
359 |
msgid "This is called the browser's cache."
|
360 |
msgstr "Dit wordt de cache van de browser genoemd."
|
361 |
|
362 |
+
#: inc/php/tabs/faq.php:200
|
363 |
msgid "Clearing your browser's cache may solve the problem."
|
364 |
msgstr "Het wissen van de cache van uw browser kan het probleem oplossen."
|
365 |
|
366 |
+
#: inc/php/tabs/faq.php:202
|
367 |
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."
|
368 |
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."
|
369 |
|
370 |
+
#: inc/php/tabs/faq.php:203 inc/php/tabs/faq.php:304
|
371 |
msgid "Please include as much information as possible, including a link to your website where the problem can be seen."
|
372 |
msgstr "Voeg zoveel mogelijk informatie toe, inclusief een link naar uw website waar het probleem kan worden gezien."
|
373 |
|
374 |
+
#: inc/php/tabs/faq.php:207
|
375 |
msgid "On the plugin settings page, an error message appears."
|
376 |
msgstr "Op de plug-in instellingen pagina verschijnt een fout-melding."
|
377 |
|
378 |
+
#: inc/php/tabs/faq.php:211
|
379 |
msgid "Here are a few of the most likely causes of the error message:"
|
380 |
msgstr "Hier zijn enkele van de meest waarschijnlijke oorzaken van de foutmelding:"
|
381 |
|
382 |
+
#: inc/php/tabs/faq.php:214
|
383 |
msgid "You make a syntax error in the code that you have entered."
|
384 |
msgstr "Je maakt een syntaxisfout in de code die je hebt ingevoerd."
|
385 |
|
386 |
+
#: inc/php/tabs/faq.php:215
|
387 |
msgid "Check the syntax of your code and try again."
|
388 |
msgstr "Controleer de syntaxis van je code en probeer het opnieuw."
|
389 |
|
390 |
+
#: inc/php/tabs/faq.php:218
|
391 |
msgid "You entered two functions with the same name."
|
392 |
msgstr "U hebt twee functies met dezelfde naam ingevoerd."
|
393 |
|
394 |
+
#: inc/php/tabs/faq.php:219
|
395 |
msgid "Use a unique names for your functions."
|
396 |
msgstr "Gebruik een unieke naam voor uw functies."
|
397 |
|
398 |
+
#: inc/php/tabs/faq.php:222
|
399 |
msgid "You have entered function with a name that is already occupied by another function."
|
400 |
msgstr "Je hebt de functie ingevoerd met een naam die al in gebruik is door een andere functie."
|
401 |
|
402 |
+
#: inc/php/tabs/faq.php:223
|
403 |
msgid "Use a unique name for your function."
|
404 |
msgstr "Gebruik een unieke naam voor uw functies."
|
405 |
|
406 |
+
#: inc/php/tabs/faq.php:226
|
407 |
msgid "You are trying to overwrite an existing function (of WordPress, theme, or plugin)."
|
408 |
msgstr "Je probeert een bestaande functie (van WordPress, thema of plug-in) te overschrijven."
|
409 |
|
410 |
+
#: inc/php/tabs/faq.php:227
|
411 |
msgid "Instead, use filters and hooks."
|
412 |
msgstr "Gebruik in plaats daarvan filters en haken."
|
413 |
|
414 |
+
#: inc/php/tabs/faq.php:233
|
415 |
msgid "My custom PHP code is not working."
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: inc/php/tabs/faq.php:237
|
419 |
msgid "It happens that your custom PHP code that you insert on the plugin page does not work, even if an error message does not appear."
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: inc/php/tabs/faq.php:238
|
423 |
msgid "Here are a few of the most likely causes of the issue:"
|
424 |
msgstr "Hier zijn enkele van de meest waarschijnlijke oorzaken van de foutmelding:"
|
425 |
|
426 |
+
#: inc/php/tabs/faq.php:240
|
427 |
msgid "You have a typo during the insertion of your custom PHP code."
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: inc/php/tabs/faq.php:241
|
431 |
msgid "Your custom PHP code has a syntax error."
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: inc/php/tabs/faq.php:242
|
435 |
msgid "Your custom PHP code is incorrect and may not work."
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: inc/php/tabs/faq.php:247
|
439 |
msgid "What to do if this plugin crashed the website?"
|
440 |
msgstr "Wat te doen als deze plug-in de website heeft gecrasht?"
|
441 |
|
442 |
+
#: inc/php/tabs/faq.php:250
|
443 |
msgid "This plugin has a built-in functions for checking the custom code for syntax errors, duplicate functions names, and etc."
|
444 |
msgstr "Deze plugin heeft ingebouwde functies voor het controleren van de aangepaste code op syntaxisfouten, dubbele functies namen en enz."
|
445 |
|
446 |
+
#: inc/php/tabs/faq.php:251
|
447 |
msgid "But plugin is not perfect, so there are times when the entered custom code causes the error and white screen (WSOD)."
|
448 |
msgstr "Maar plugin is niet perfect, het is dus mogelijk dat de ingevoerde code een foutbericht en een wit scherm (WSOD) veroorzaakt."
|
449 |
|
450 |
+
#: inc/php/tabs/faq.php:252
|
451 |
msgid "This is due to the fact that your custom code has a syntax error that this plugin could not detect."
|
452 |
msgstr "Dit is de wijten aan het feit dat uw aangepaste code een syntaxisfout heeft, die door deze plugin kon niet worden gevonden."
|
453 |
|
454 |
+
#: inc/php/tabs/faq.php:253
|
455 |
msgid "When this happens with you, please perform the following steps."
|
456 |
msgstr "Wanneer dit met gebeurt, voer dan de volgende stappen uit."
|
457 |
|
458 |
+
#: inc/php/tabs/faq.php:256
|
459 |
msgid "Access your server via FTP or SFTP."
|
460 |
msgstr "Benader je server via FTP of SFTP."
|
461 |
|
462 |
+
#: inc/php/tabs/faq.php:257
|
463 |
msgid "If you aren't sure how usually your web hosting provider will have instructions somewhere on their website."
|
464 |
msgstr "Als u niet zeker bent hoe, vaak heeft je webhostingprovider ergens op hun website instructies staan."
|
465 |
|
466 |
+
#: inc/php/tabs/faq.php:260
|
467 |
msgid "Browse to the directory <code>wp-content/plugins/my-custom-functions/</code>."
|
468 |
msgstr "Blader naar de map <code>wp-content/plugins/my-custom-functions/</code> ."
|
469 |
|
470 |
+
#: inc/php/tabs/faq.php:261
|
471 |
msgid "Please contact your web hosting company to get help if you can't find this folder."
|
472 |
msgstr "Neem contact op met je web hosting bedrijf om hulp te krijgen als je deze map niet kunt vinden."
|
473 |
|
474 |
+
#: inc/php/tabs/faq.php:264
|
475 |
msgid "Rename the file <code>START</code> to <code>STOP</code>."
|
476 |
msgstr "Hernoem het bestand <code>START</code> naar <code>STOP</code>."
|
477 |
|
478 |
+
#: inc/php/tabs/faq.php:265
|
479 |
msgid "This will stop the execution of your custom code."
|
480 |
msgstr "Hiermee stopt u het uitvoeren van uw aangepaste code."
|
481 |
|
482 |
+
#: inc/php/tabs/faq.php:267
|
483 |
msgid "Log in to Admin Area of your WordPress website."
|
484 |
msgstr "Log in op het Admin-gedeelte van uw WordPress-website."
|
485 |
|
486 |
+
#: inc/php/tabs/faq.php:268
|
487 |
msgid "Go to the plugin settings page <code>Settings</code> ➡ <code>PHP Inserter</code>."
|
488 |
msgstr "Ga naar de plug-in instellingen pagina <code>Instellingen</code> ➡ <code>PHP Inserter</code>."
|
489 |
|
490 |
+
#: inc/php/tabs/faq.php:269
|
491 |
msgid "Edit/fix your custom PHP code that you entered before the crash."
|
492 |
msgstr "Edit/repareer je custos code welke je hebt ingevoerd voor de crash."
|
493 |
|
494 |
+
#: inc/php/tabs/faq.php:270
|
495 |
msgid "Return to the plugin folder and rename the file <code>STOP</code> to <code>START</code> and you're done!"
|
496 |
msgstr "Keer terug naar de plug-in directorie en verander de naam van het bestand <code>STOP</code> naar <code>START</code> en je bent klaar!"
|
497 |
|
498 |
+
#: inc/php/tabs/faq.php:272
|
499 |
msgid "This plugin stored you entered code in the database of your website."
|
500 |
msgstr "Deze plug-in heeft de door jouw ingevoerde code opgeslagen in de database van je website."
|
501 |
|
502 |
+
#: inc/php/tabs/faq.php:273
|
503 |
msgid "For getting your code, you also can go to the <code>Database</code> ➡ Table <code>wp_options</code> ➡ Option <code>spacexchimp_p001_settings</code> ➡ <code>option_value</code>."
|
504 |
msgstr "Om je code te verkrijgen, kun je ook naar <code>Database</code> ➡ Table <code>wp_options</code> ➡ Option <code>spacexchimp_p001_settings</code> ➡ <code>option_value</code> gaan."
|
505 |
|
506 |
+
#: inc/php/tabs/faq.php:275
|
507 |
msgid "We are already working on a feature to automatically stop the execution of users custom PHP code for cases when this plugin could not detect the error, and this caused the inaccessibility of the website."
|
508 |
msgstr "We zijn bezig met het maken van een optie om de uitvoering van PHP-code automatisch te stoppen, als de plugin geen fout kon detecteren en de PHP-code wel een onbereikbare website veroorzaakt."
|
509 |
|
510 |
+
#: inc/php/tabs/faq.php:279
|
511 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
|
512 |
msgstr "De laatste Wordpress update zorgt ervoor dat ik mijn website niet kan bewerken als ik deze plugin gebruik."
|
513 |
|
514 |
+
#: inc/php/tabs/faq.php:280
|
515 |
msgid "Why is this?"
|
516 |
msgstr "Waarom is dit?"
|
517 |
|
518 |
+
#: inc/php/tabs/faq.php:283
|
519 |
msgid "This plugin can not cause such problem."
|
520 |
msgstr "Deze plug-in kan zo’n probleem niet veroorzaken."
|
521 |
|
522 |
+
#: inc/php/tabs/faq.php:284
|
523 |
msgid "More likely, the problem are related to the settings of the website."
|
524 |
msgstr "Waarschijnlijker is het probleem gerelateerd aan de instellingen van de website."
|
525 |
|
526 |
+
#: inc/php/tabs/faq.php:285
|
527 |
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."
|
528 |
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."
|
529 |
|
530 |
+
#: inc/php/tabs/faq.php:286
|
531 |
msgid "Also please try to re-login to the website, this too can help."
|
532 |
msgstr "Probeer ook opnieuw in te loggen op de website, ook dit kan helpen."
|
533 |
|
534 |
+
#: inc/php/tabs/faq.php:290
|
535 |
msgid "Where to report bug if found?"
|
536 |
msgstr "Waar kan een bug gerapporteerd worden indien gevonden?"
|
537 |
|
538 |
+
#: inc/php/tabs/faq.php:293
|
539 |
msgid "Bug reports are very welcome!"
|
540 |
msgstr "Bugrapporten zijn van harte welkom!"
|
541 |
|
542 |
+
#: inc/php/tabs/faq.php:296
|
543 |
#, php-format
|
544 |
msgid "Please visit our %s contact page %s and report."
|
545 |
msgstr "Ga naar onze %s contactpagina %s en rapporteer."
|
546 |
|
547 |
+
#: inc/php/tabs/faq.php:301 inc/php/tabs/faq.php:330
|
548 |
msgid "Please do not forget to specify the name of the plugin."
|
549 |
msgstr "Vergeet alsjeblieft niet om de naam van de plug-in te specificeren."
|
550 |
|
551 |
+
#: inc/php/tabs/faq.php:302 inc/php/tabs/faq.php:331 inc/php/tabs/faq.php:347
|
552 |
msgid "Thank you!"
|
553 |
msgstr "Dank je!"
|
554 |
|
555 |
+
#: inc/php/tabs/faq.php:305
|
556 |
msgid "Describe in more detail what exactly you are seeing."
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: inc/php/tabs/faq.php:306
|
560 |
msgid "Here are some examples:"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: inc/php/tabs/faq.php:309
|
564 |
msgid "Elements of the plugin settings page are not working."
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: inc/php/tabs/faq.php:310
|
568 |
msgid "An error message is displayed on the plugin settings page."
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: inc/php/tabs/faq.php:311
|
572 |
msgid "An error message is displayed on the front end of website."
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: inc/php/tabs/faq.php:312
|
576 |
msgid "An error message is displayed on the back end of website."
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: inc/php/tabs/faq.php:313
|
580 |
msgid "Custom code is inserted on the plugin settings page, but it is not applied on the website."
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: inc/php/tabs/faq.php:314
|
584 |
msgid "Website is crashed."
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: inc/php/tabs/faq.php:319
|
588 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
589 |
msgstr "Waar kan ik ideeën of suggesties delen om de plug-in beter te maken?"
|
590 |
|
591 |
+
#: inc/php/tabs/faq.php:322
|
592 |
msgid "Any suggestions are very welcome!"
|
593 |
msgstr "Alle suggesties zijn van harte welkom!"
|
594 |
|
595 |
+
#: inc/php/tabs/faq.php:325
|
596 |
#, php-format
|
597 |
msgid "Please visit our %s contact page %s."
|
598 |
msgstr "Ga naar onze %s contactpagina %s."
|
599 |
|
600 |
+
#: inc/php/tabs/faq.php:335
|
601 |
msgid "I love this plugin!"
|
602 |
msgstr "Ik ben dol op deze plug-in!"
|
603 |
|
604 |
+
#: inc/php/tabs/faq.php:336
|
605 |
msgid "Can I help somehow?"
|
606 |
msgstr "Kan ik op de een of andere manier helpen?"
|
607 |
|
608 |
+
#: inc/php/tabs/faq.php:339
|
609 |
msgid "Yes, any contributions are very welcome!"
|
610 |
msgstr "Ja, alle bijdragen zijn van harte welkom!"
|
611 |
|
612 |
+
#: inc/php/tabs/faq.php:342
|
613 |
#, php-format
|
614 |
msgid "Please visit our %s Support Us %s page."
|
615 |
msgstr "Ga naar onze %s Support Us %s."
|
616 |
|
617 |
+
#: inc/php/tabs/faq.php:351
|
618 |
msgid "Where can I find information about your licenses, payment process and refunds?"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: inc/php/tabs/faq.php:356
|
622 |
#, php-format
|
623 |
msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: inc/php/tabs/faq.php:364
|
627 |
msgid "Where can I find information about your customer support?"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: inc/php/tabs/faq.php:369
|
631 |
#, php-format
|
632 |
msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: inc/php/tabs/faq.php:377
|
636 |
msgid "Where can I find information about your affiliate program?"
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: inc/php/tabs/faq.php:382
|
640 |
#, php-format
|
641 |
msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: inc/php/tabs/faq.php:390
|
645 |
msgid "My question wasn't answered here."
|
646 |
msgstr "Mij vraag is hier niet beantwoord."
|
647 |
|
648 |
+
#: inc/php/tabs/faq.php:395
|
649 |
#, php-format
|
650 |
msgid "You can ask your question on %s this page %s."
|
651 |
msgstr "Je kunt je vraag op %s deze pagina %s stellen."
|
652 |
|
653 |
+
#: inc/php/tabs/faq.php:400
|
654 |
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."
|
655 |
msgstr "Maar houd er rekening mee dat deze plug-in gratis is en er geen speciaal ondersteuningsteam is, dus we kunnen niet iedereen antwoorden."
|
656 |
|
657 |
+
#: inc/php/tabs/settings.php:30
|
658 |
+
msgid "Functions (PHP code)"
|
659 |
+
msgstr "Functies (PHP code)"
|
660 |
+
|
661 |
+
#: inc/php/tabs/settings.php:32
|
662 |
+
msgid "NOT SAVED!"
|
663 |
+
msgstr ""
|
664 |
+
|
665 |
+
#: inc/php/tabs/settings.php:46
|
666 |
+
msgid "Enter your PHP functions here"
|
667 |
+
msgstr "Voer hier uw PHP-functies in"
|
668 |
+
|
669 |
+
#: inc/php/tabs/settings.php:51
|
670 |
+
msgid "Save changes"
|
671 |
+
msgstr "Wijzigingen opslaan"
|
672 |
+
|
673 |
+
#: inc/php/tabs/support.php:13
|
674 |
msgid "Support Us"
|
675 |
msgstr "Ondersteun ons"
|
676 |
|
677 |
+
#: inc/php/tabs/support.php:28
|
|
|
|
|
|
|
|
|
678 |
#, php-format
|
679 |
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."
|
680 |
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."
|
681 |
|
682 |
+
#: inc/php/tabs/support.php:37
|
683 |
msgid "Our intention is to create projects that will make this world a better place."
|
684 |
msgstr "Het is onze bedoeling om projecten te maken die van deze wereld een betere plek maken."
|
685 |
|
686 |
+
#: inc/php/tabs/support.php:38
|
687 |
msgid "Our motto is - «Follow your dreams and don’t give up»."
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: inc/php/tabs/support.php:39
|
691 |
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."
|
692 |
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."
|
693 |
|
694 |
+
#: inc/php/tabs/support.php:42
|
695 |
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."
|
696 |
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."
|
697 |
|
698 |
+
#: inc/php/tabs/support.php:43
|
699 |
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."
|
700 |
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."
|
701 |
|
702 |
+
#: inc/php/tabs/support.php:46
|
703 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
704 |
msgstr "Als je ons werk waardeert, kun je een koffie voor ons kopen!"
|
705 |
|
706 |
+
#: inc/php/tabs/support.php:49
|
707 |
msgid "Thank you for your support!"
|
708 |
msgstr "Bedankt voor je ondersteuning!"
|
709 |
|
710 |
+
#: inc/php/tabs/usage.php:13
|
711 |
+
msgid "Usage Instructions"
|
712 |
+
msgstr "Gebruiksinstructies"
|
|
|
|
|
|
|
|
|
713 |
|
714 |
+
#: inc/php/tabs/usage.php:15
|
715 |
+
msgid "To add your custom PHP code to your website, simply follow these steps:"
|
716 |
+
msgstr "Om je eigen aangepaste functies (de PHP code) aan je website toe te voegen, volg deze simpele stappen:"
|
717 |
|
718 |
+
#: inc/php/tabs/usage.php:17
|
719 |
+
msgid "Go to the \"Main\" tab on this page."
|
720 |
+
msgstr "Ga naar het tabblad “Hoofd”."
|
721 |
|
722 |
+
#: inc/php/tabs/usage.php:19
|
723 |
+
msgid "Place your custom PHP code in the code editor field."
|
724 |
+
msgstr "Plaats je PHP code in het veld."
|
725 |
|
726 |
+
#: inc/php/tabs/usage.php:22 inc/php/tabs/usage.php:26
|
727 |
+
msgid "Note!"
|
728 |
+
msgstr "Opmerking!"
|
729 |
|
730 |
+
#: inc/php/tabs/usage.php:23
|
731 |
+
msgid "Do not wrap your custom PHP code in HTML tags, such as <code><?php</code>...<code>?></code>."
|
732 |
+
msgstr "Plaat a.u.b. je PHP code niet tussen <code><?php</code>...<code>?></code> HTML tags."
|
733 |
|
734 |
+
#: inc/php/tabs/usage.php:29
|
735 |
+
#, php-format
|
736 |
+
msgid "Before use, please read the %s instructions %s in our Blog on what to do in case of a website crash."
|
737 |
+
msgstr ""
|
738 |
|
739 |
+
#: inc/php/tabs/usage.php:36
|
740 |
+
msgid "Switch the toggle to the \"ON\" position."
|
741 |
+
msgstr "Druk de AAN / UIT-schakelaar naar de stand AAN."
|
742 |
|
743 |
+
#: inc/php/tabs/usage.php:37
|
744 |
+
msgid "Click the \"Save changes\" button."
|
745 |
+
msgstr "Klik op de knop \"Wijzigingen opslaan\"."
|
746 |
|
747 |
+
#: inc/php/tabs/usage.php:43
|
748 |
+
#, php-format
|
749 |
+
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
750 |
+
msgstr "Wilt u meer opties dan %s vertel ons %s en wij zullen graag toevoegen."
|
751 |
|
752 |
#. Plugin Name of the plugin/theme
|
753 |
msgid "My Custom Functions"
|
languages/my-custom-functions-ru_RU.mo
CHANGED
Binary file
|
languages/my-custom-functions-ru_RU.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\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 "PHP Inserter"
|
37 |
msgstr "PHP Inserter"
|
38 |
|
39 |
-
#: inc/php/messages.php:27 inc/php/
|
40 |
msgid "Hello!"
|
41 |
msgstr "Привет!"
|
42 |
|
@@ -69,684 +69,685 @@ msgstr "Извините, но ваш код вызывает \"Fatal error\",
|
|
69 |
msgid "Please, check the code and try again."
|
70 |
msgstr "Пожалуйста, проверьте код и попробуйте ещё раз."
|
71 |
|
72 |
-
#: inc/php/page.php:
|
73 |
#, php-format
|
74 |
msgid "by %s Space X-Chimp %s"
|
75 |
msgstr "от %s Space X-Chimp %s"
|
76 |
|
77 |
-
#: inc/php/page.php:
|
78 |
msgid "Version"
|
79 |
msgstr "Версия"
|
80 |
|
81 |
-
#: inc/php/page.php:
|
82 |
msgid "Main"
|
83 |
msgstr "Главная"
|
84 |
|
85 |
-
#: inc/php/page.php:
|
86 |
msgid "Usage"
|
87 |
msgstr "Применение"
|
88 |
|
89 |
-
#: inc/php/page.php:
|
90 |
msgid "F.A.Q."
|
91 |
msgstr "F.A.Q."
|
92 |
|
93 |
-
#: inc/php/page.php:
|
94 |
msgid "Support"
|
95 |
msgstr "Поддержка"
|
96 |
|
97 |
-
#: inc/php/page.php:
|
98 |
msgid "Store"
|
99 |
msgstr "Магазин"
|
100 |
|
101 |
-
#: inc/php/
|
102 |
-
msgid "
|
103 |
-
msgstr "
|
104 |
-
|
105 |
-
#: inc/php/page.php:68
|
106 |
-
msgid "To add your custom PHP code to your website, simply follow these steps:"
|
107 |
-
msgstr "Для того чтобы добавить ваш пользовательсктй PHP код на ваш веб-сайт, выполните следующие действия:"
|
108 |
-
|
109 |
-
#: inc/php/page.php:70
|
110 |
-
msgid "Go to the \"Main\" tab on this page."
|
111 |
-
msgstr "Перейдите на вкладку «Главная»."
|
112 |
-
|
113 |
-
#: inc/php/page.php:72
|
114 |
-
msgid "Place your custom PHP code in the code editor field."
|
115 |
-
msgstr "Поместите ваш PHP код в поле."
|
116 |
-
|
117 |
-
#: inc/php/page.php:75 inc/php/page.php:79
|
118 |
-
msgid "Note!"
|
119 |
-
msgstr "Примечание!"
|
120 |
|
121 |
-
#: inc/php/
|
122 |
-
msgid "
|
123 |
-
msgstr ""
|
124 |
|
125 |
-
#: inc/php/
|
126 |
-
|
127 |
-
|
128 |
-
msgstr ""
|
129 |
|
130 |
-
#: inc/php/
|
131 |
-
msgid "
|
132 |
-
msgstr "
|
133 |
|
134 |
-
#: inc/php/
|
135 |
-
msgid "
|
136 |
-
msgstr "
|
137 |
|
138 |
-
#: inc/php/
|
139 |
-
msgid "
|
140 |
-
msgstr "
|
141 |
|
142 |
-
#: inc/php/
|
143 |
-
|
144 |
-
|
|
|
145 |
|
146 |
-
#: inc/php/
|
147 |
-
|
148 |
-
|
149 |
-
msgstr "Если вы хотите больше вариантов, то %s сообщите нам %s и мы будем рады добавить их."
|
150 |
|
151 |
-
#: inc/php/
|
152 |
msgid "Frequently Asked Questions"
|
153 |
msgstr "Часто задаваемые вопросы"
|
154 |
|
155 |
-
#: inc/php/
|
156 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
157 |
msgstr "Если у вас есть вопрос, пожалуйста, прочтите часто задаваемые вопросы."
|
158 |
|
159 |
-
#: inc/php/
|
160 |
msgid "Where can I find a documentation for this plugin?"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: inc/php/
|
164 |
#, php-format
|
165 |
msgid "Please visit our %s Documentation site %s to view documentation."
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: inc/php/
|
169 |
msgid "Will this plugin work on my wordpress.COM website?"
|
170 |
msgstr "Будет ли этот плагин работать на моем веб-сайте wordpress.COM?"
|
171 |
|
172 |
-
#: inc/php/
|
173 |
msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
|
174 |
msgstr "К сожалению, этот плагин доступен для использования только на самостоятельно размещённых веб-сайтах (wordpress.ORG)."
|
175 |
|
176 |
-
#: inc/php/
|
177 |
msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: inc/php/
|
181 |
msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: inc/php/
|
185 |
#, php-format
|
186 |
msgid "You can learn more about the difference here: %s ."
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: inc/php/
|
190 |
msgid "Will this plugin work/compatible with the theme I use?"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: inc/php/
|
194 |
msgid "This plugin is compatible with most themes."
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: inc/php/
|
198 |
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."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: inc/php/
|
202 |
msgid "We constantly check this plugin for compatibility with third-party themes."
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: inc/php/
|
206 |
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."
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: inc/php/
|
210 |
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."
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: inc/php/
|
214 |
msgid "Will this plugin work/compatible with other plugins that I use?"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: inc/php/
|
218 |
msgid "This plugin is compatible with most plugins."
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: inc/php/
|
222 |
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."
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: inc/php/
|
226 |
msgid "We constantly check this plugin for compatibility with third-party plugins."
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: inc/php/
|
230 |
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."
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: inc/php/
|
234 |
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."
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: inc/php/
|
238 |
msgid "Can I use this plugin on my language?"
|
239 |
msgstr "Можно ли использовать этот плагин на моём языке?"
|
240 |
|
241 |
-
#: inc/php/
|
242 |
msgid "Yes."
|
243 |
msgstr "Да."
|
244 |
|
245 |
-
#: inc/php/
|
246 |
msgid "This plugin is ready for translation and has already been translated into several languages."
|
247 |
msgstr "Этот плагин готов к переводу и уже переведен на несколько языков."
|
248 |
|
249 |
-
#: inc/php/
|
250 |
msgid "But If your language is not available then you can make one."
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: inc/php/
|
254 |
msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: inc/php/
|
258 |
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
259 |
msgstr "Многие пользователи плагинов будут рады, если вы поделитесь своим переводом с сообществом."
|
260 |
|
261 |
-
#: inc/php/
|
262 |
msgid "Thanks for your contribution!"
|
263 |
msgstr "Спасибо за ваш вклад!"
|
264 |
|
265 |
-
#: inc/php/
|
266 |
#, php-format
|
267 |
msgid "If you want to help translate this plugin, please visit the %s."
|
268 |
msgstr "Если вы хотите помочь перевести этот плагин, пожалуйста, посетите %s."
|
269 |
|
270 |
-
#: inc/php/
|
271 |
msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
|
272 |
msgstr "Вы также можете использовать файл POT, который включён в плагин и помещён в папку «languages», чтобы создать PO файл перевода."
|
273 |
|
274 |
-
#: inc/php/
|
275 |
#, php-format
|
276 |
msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
|
277 |
msgstr "Просто отправьте нам файл PO на %s и мы включим этот перевод в следующее обновление плагина."
|
278 |
|
279 |
-
#: inc/php/
|
280 |
msgid "How does it work?"
|
281 |
msgstr "Как это работает?"
|
282 |
|
283 |
-
#: inc/php/
|
284 |
msgid "On the \"Main\" tab, place your custom PHP code in the code editor field, switch the toggle to the \"ON\" position and click the \"Save changes\" button."
|
285 |
msgstr "На вкладке «Главная» поместите ваш PHP код в поле редактора кода, переключите переключатель в положение «ON» и нажмите кнопку «Сохранить изменения»."
|
286 |
|
287 |
-
#: inc/php/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
288 |
msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
|
289 |
msgstr "Можно ли использовать HTML/CSS/JS код, встроенный в PHP код?"
|
290 |
|
291 |
-
#: inc/php/
|
292 |
msgid "But you need to do it properly, like this:"
|
293 |
msgstr "Но вам нужно сделать это правильно, например так:"
|
294 |
|
295 |
-
#: inc/php/
|
296 |
msgid "How much of PHP code (characters) I can enter in the code editor?"
|
297 |
msgstr "Сколько PHP кода (символов) можно ввести в текстовом поле?"
|
298 |
|
299 |
-
#: inc/php/
|
300 |
msgid "We don't limit the number of characters."
|
301 |
msgstr "Мы не ограничиваем количество символов."
|
302 |
|
303 |
-
#: inc/php/
|
304 |
msgid "Does this plugin requires any modification of the theme?"
|
305 |
msgstr "Этот плагин требует изменения темы?"
|
306 |
|
307 |
-
#: inc/php/
|
308 |
msgid "Absolutely not."
|
309 |
msgstr "Абсолютно нет."
|
310 |
|
311 |
-
#: inc/php/
|
312 |
msgid "This plugin is configurable entirely from the plugin settings page."
|
313 |
msgstr "Этот плагин настраивается полностью на странице настроек плагина."
|
314 |
|
315 |
-
#: inc/php/
|
316 |
msgid "Does this require any knowledge of HTML or CSS?"
|
317 |
msgstr "Требуются ли какие-либо знания HTML или CSS?"
|
318 |
|
319 |
-
#: inc/php/
|
320 |
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
321 |
msgstr "Этот плагин можно настроить без знания HTML или CSS, с помощью простой в использовании страницы настройки плагина."
|
322 |
|
323 |
-
#: inc/php/
|
324 |
msgid "Can I add my custom PHP code to a specific page of my website?"
|
325 |
msgstr "Могу ли я добавить мой пользовательский PHP код на определенную страницу моего веб-сайта?"
|
326 |
|
327 |
-
#: inc/php/
|
328 |
msgid "For now, this plugin does not have an option to apply the custom PHP code only on specific pages."
|
329 |
msgstr "Пока этот плагин не имеет возможности применять пользовательский PHP код только на определенных страницах."
|
330 |
|
331 |
-
#: inc/php/
|
332 |
msgid "We plan to add this feature soon."
|
333 |
msgstr "Мы планируем добавить эту функцию в ближайшее время."
|
334 |
|
335 |
-
#: inc/php/
|
336 |
msgid "But for now in order to apply your custom PHP code only on specific pages of your website, you need to wrap your custom PHP code in a PHP function that will determine the page you want."
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: inc/php/
|
340 |
msgid "You need something like this:"
|
341 |
msgstr "Вам нужно что-то вроде этого:"
|
342 |
|
343 |
-
#: inc/php/
|
344 |
msgid "It's not working."
|
345 |
msgstr "Оно не работает."
|
346 |
|
347 |
-
#: inc/php/
|
348 |
msgid "What could be wrong?"
|
349 |
msgstr "Что может быть не так?"
|
350 |
|
351 |
-
#: inc/php/
|
352 |
msgid "As with every plugin, it's possible that things don't work."
|
353 |
msgstr "Как и в случае с любым другим плагином, что-то может не работать."
|
354 |
|
355 |
-
#: inc/php/
|
356 |
msgid "It's impossible to tell what could be wrong exactly."
|
357 |
msgstr "Невозможно точно сказать, что может быть не так."
|
358 |
|
359 |
-
#: inc/php/
|
360 |
msgid "The most common reason for this is a web browser's cache."
|
361 |
msgstr "Наиболее распространённой причиной этого является кеш веб-браузера."
|
362 |
|
363 |
-
#: inc/php/
|
364 |
msgid "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load."
|
365 |
msgstr "Каждый веб-браузер хранит кеш веб-сайтов, которые вы посещаете (страницы, изображения и т. д.) для того, чтобы уменьшить использование интернет канала и нагрузку на сервер."
|
366 |
|
367 |
-
#: inc/php/
|
368 |
msgid "This is called the browser's cache."
|
369 |
msgstr "Это называется кешем браузера."
|
370 |
|
371 |
-
#: inc/php/
|
372 |
msgid "Clearing your browser's cache may solve the problem."
|
373 |
msgstr "Очистка кеша браузера может решить проблему."
|
374 |
|
375 |
-
#: inc/php/
|
376 |
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."
|
377 |
msgstr "Если вы разместите запрос поддержки на форуме поддержки плагина на WordPress.org, то мы с радостью посмотрим и попытаемся помочь."
|
378 |
|
379 |
-
#: inc/php/
|
380 |
msgid "Please include as much information as possible, including a link to your website where the problem can be seen."
|
381 |
msgstr "Пожалуйста, укажите как можно больше информации, включая ссылку на ваш веб-сайт, на котором можно увидеть проблему."
|
382 |
|
383 |
-
#: inc/php/
|
384 |
msgid "On the plugin settings page, an error message appears."
|
385 |
msgstr "На странице настроек плагина появляется сообщение об ошибке."
|
386 |
|
387 |
-
#: inc/php/
|
388 |
msgid "Here are a few of the most likely causes of the error message:"
|
389 |
msgstr "Вот некоторые из наиболее вероятных причин появления сообщение об ошибке:"
|
390 |
|
391 |
-
#: inc/php/
|
392 |
msgid "You make a syntax error in the code that you have entered."
|
393 |
msgstr "Вы сделали синтаксическую ошибку в коде, который вы ввели."
|
394 |
|
395 |
-
#: inc/php/
|
396 |
msgid "Check the syntax of your code and try again."
|
397 |
msgstr "Проверьте синтаксис вашего кода и попробуйте ещё раз."
|
398 |
|
399 |
-
#: inc/php/
|
400 |
msgid "You entered two functions with the same name."
|
401 |
msgstr "Вы ввели несколько функций с одинаковым именем."
|
402 |
|
403 |
-
#: inc/php/
|
404 |
msgid "Use a unique names for your functions."
|
405 |
msgstr "Используйте уникальные имена для ваших функций."
|
406 |
|
407 |
-
#: inc/php/
|
408 |
msgid "You have entered function with a name that is already occupied by another function."
|
409 |
msgstr "Вы ввели функцию с именем, которое уже занята другой функцией."
|
410 |
|
411 |
-
#: inc/php/
|
412 |
msgid "Use a unique name for your function."
|
413 |
msgstr "Используйте уникальное имя для вашей функции."
|
414 |
|
415 |
-
#: inc/php/
|
416 |
msgid "You are trying to overwrite an existing function (of WordPress, theme, or plugin)."
|
417 |
msgstr "Вы пытаетесь перезаписать существующую функцию (из WordPress, темы или плагина)."
|
418 |
|
419 |
-
#: inc/php/
|
420 |
msgid "Instead, use filters and hooks."
|
421 |
msgstr "Вместо этого используйте фильтры и хуки."
|
422 |
|
423 |
-
#: inc/php/
|
424 |
msgid "My custom PHP code is not working."
|
425 |
msgstr "Мой пользовательский PHP код не работает."
|
426 |
|
427 |
-
#: inc/php/
|
428 |
msgid "It happens that your custom PHP code that you insert on the plugin page does not work, even if an error message does not appear."
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: inc/php/
|
432 |
msgid "Here are a few of the most likely causes of the issue:"
|
433 |
msgstr "Вот некоторые из наиболее вероятных причин проблемы:"
|
434 |
|
435 |
-
#: inc/php/
|
436 |
msgid "You have a typo during the insertion of your custom PHP code."
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: inc/php/
|
440 |
msgid "Your custom PHP code has a syntax error."
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: inc/php/
|
444 |
msgid "Your custom PHP code is incorrect and may not work."
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: inc/php/
|
448 |
msgid "What to do if this plugin crashed the website?"
|
449 |
msgstr "Что делать, если этот плагин сломал веб-сайт?"
|
450 |
|
451 |
-
#: inc/php/
|
452 |
msgid "This plugin has a built-in functions for checking the custom code for syntax errors, duplicate functions names, and etc."
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: inc/php/
|
456 |
msgid "But plugin is not perfect, so there are times when the entered custom code causes the error and white screen (WSOD)."
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: inc/php/
|
460 |
msgid "This is due to the fact that your custom code has a syntax error that this plugin could not detect."
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: inc/php/
|
464 |
msgid "When this happens with you, please perform the following steps."
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: inc/php/
|
468 |
msgid "Access your server via FTP or SFTP."
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: inc/php/
|
472 |
msgid "If you aren't sure how usually your web hosting provider will have instructions somewhere on their website."
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: inc/php/
|
476 |
msgid "Browse to the directory <code>wp-content/plugins/my-custom-functions/</code>."
|
477 |
msgstr "Перейдите в каталог <code>wp-content/plugins/my-custom-functions/</code>."
|
478 |
|
479 |
-
#: inc/php/
|
480 |
msgid "Please contact your web hosting company to get help if you can't find this folder."
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: inc/php/
|
484 |
msgid "Rename the file <code>START</code> to <code>STOP</code>."
|
485 |
msgstr "Переименуйте файл «START» в «STOP»."
|
486 |
|
487 |
-
#: inc/php/
|
488 |
msgid "This will stop the execution of your custom code."
|
489 |
msgstr "Это остановит выполнение пользовательского кода."
|
490 |
|
491 |
-
#: inc/php/
|
492 |
msgid "Log in to Admin Area of your WordPress website."
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: inc/php/
|
496 |
msgid "Go to the plugin settings page <code>Settings</code> ➡ <code>PHP Inserter</code>."
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: inc/php/
|
500 |
msgid "Edit/fix your custom PHP code that you entered before the crash."
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: inc/php/
|
504 |
msgid "Return to the plugin folder and rename the file <code>STOP</code> to <code>START</code> and you're done!"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: inc/php/
|
508 |
msgid "This plugin stored you entered code in the database of your website."
|
509 |
msgstr "Этот плагин хранит введённый вами код в базе данных вашего веб-сайта."
|
510 |
|
511 |
-
#: inc/php/
|
512 |
msgid "For getting your code, you also can go to the <code>Database</code> ➡ Table <code>wp_options</code> ➡ Option <code>spacexchimp_p001_settings</code> ➡ <code>option_value</code>."
|
513 |
msgstr "Для получения вашего кода, вы также можете перейти в <code>Database</code> ➡ Table <code>wp_options</code> ➡ Option <code>spacexchimp_p001_settings</code> ➡ <code>option_value</code>."
|
514 |
|
515 |
-
#: inc/php/
|
516 |
msgid "We are already working on a feature to automatically stop the execution of users custom PHP code for cases when this plugin could not detect the error, and this caused the inaccessibility of the website."
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: inc/php/
|
520 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
|
521 |
msgstr "Последнее обновление WordPress не позволяет мне редактировать мой веб-сайт, на котором используется этот плагин."
|
522 |
|
523 |
-
#: inc/php/
|
524 |
msgid "Why is this?"
|
525 |
msgstr "Почему так?"
|
526 |
|
527 |
-
#: inc/php/
|
528 |
msgid "This plugin can not cause such problem."
|
529 |
msgstr "Этот плагин не может вызвать такую проблему."
|
530 |
|
531 |
-
#: inc/php/
|
532 |
msgid "More likely, the problem are related to the settings of the website."
|
533 |
msgstr "Скорее всего, проблема связана с настройками веб-сайта."
|
534 |
|
535 |
-
#: inc/php/
|
536 |
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."
|
537 |
msgstr "Это может быть кеш, поэтому попробуйте очистить кеш вашего веб-сайта (возможно, вы используете плагин для кеширования или какой-либо веб-сервис, такой как CloudFlare), а затем кеш вашего веб-браузера."
|
538 |
|
539 |
-
#: inc/php/
|
540 |
msgid "Also please try to re-login to the website, this too can help."
|
541 |
msgstr "Также, пожалуйста, попробуйте повторно войти на веб-сайт, это тоже может помочь."
|
542 |
|
543 |
-
#: inc/php/
|
544 |
msgid "Where to report bug if found?"
|
545 |
msgstr "Где можно сообщить об ошибке?"
|
546 |
|
547 |
-
#: inc/php/
|
548 |
msgid "Bug reports are very welcome!"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: inc/php/
|
552 |
#, php-format
|
553 |
msgid "Please visit our %s contact page %s and report."
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: inc/php/
|
557 |
msgid "Please do not forget to specify the name of the plugin."
|
558 |
msgstr "Пожалуйста не забудьте указать название плагина."
|
559 |
|
560 |
-
#: inc/php/
|
561 |
msgid "Thank you!"
|
562 |
msgstr "Спасибо!"
|
563 |
|
564 |
-
#: inc/php/
|
565 |
msgid "Describe in more detail what exactly you are seeing."
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: inc/php/
|
569 |
msgid "Here are some examples:"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: inc/php/
|
573 |
msgid "Elements of the plugin settings page are not working."
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: inc/php/
|
577 |
msgid "An error message is displayed on the plugin settings page."
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: inc/php/
|
581 |
msgid "An error message is displayed on the front end of website."
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: inc/php/
|
585 |
msgid "An error message is displayed on the back end of website."
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: inc/php/
|
589 |
msgid "Custom code is inserted on the plugin settings page, but it is not applied on the website."
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: inc/php/
|
593 |
msgid "Website is crashed."
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: inc/php/
|
597 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
598 |
msgstr "Где можно поделиться идеями или предложениями, чтобы сделать плагин лучше?"
|
599 |
|
600 |
-
#: inc/php/
|
601 |
msgid "Any suggestions are very welcome!"
|
602 |
msgstr "Любые предложения приветствуются!"
|
603 |
|
604 |
-
#: inc/php/
|
605 |
#, php-format
|
606 |
msgid "Please visit our %s contact page %s."
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: inc/php/
|
610 |
msgid "I love this plugin!"
|
611 |
msgstr "Мне нравится этот плагин!"
|
612 |
|
613 |
-
#: inc/php/
|
614 |
msgid "Can I help somehow?"
|
615 |
msgstr "Могу Я чем-то помочь?"
|
616 |
|
617 |
-
#: inc/php/
|
618 |
msgid "Yes, any contributions are very welcome!"
|
619 |
msgstr "Да, любой вклад приветствуется!"
|
620 |
|
621 |
-
#: inc/php/
|
622 |
#, php-format
|
623 |
msgid "Please visit our %s Support Us %s page."
|
624 |
msgstr "Пожалуйста, посетите нашу страницу %s Поддержите нас %s ."
|
625 |
|
626 |
-
#: inc/php/
|
627 |
msgid "Where can I find information about your licenses, payment process and refunds?"
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: inc/php/
|
631 |
#, php-format
|
632 |
msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: inc/php/
|
636 |
msgid "Where can I find information about your customer support?"
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: inc/php/
|
640 |
#, php-format
|
641 |
msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: inc/php/
|
645 |
msgid "Where can I find information about your affiliate program?"
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: inc/php/
|
649 |
#, php-format
|
650 |
msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: inc/php/
|
654 |
msgid "My question wasn't answered here."
|
655 |
msgstr "На мой вопрос здесь не было ответа."
|
656 |
|
657 |
-
#: inc/php/
|
658 |
#, php-format
|
659 |
msgid "You can ask your question on %s this page %s."
|
660 |
msgstr "Вы можете задать ваш вопрос на %s этой странице %s."
|
661 |
|
662 |
-
#: inc/php/
|
663 |
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."
|
664 |
msgstr "Но имейте в виду, что этот плагин является бесплатным и без специальной поддержки, поэтому у нас нет возможности ответить на все вопросы."
|
665 |
|
666 |
-
#: inc/php/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
667 |
msgid "Support Us"
|
668 |
msgstr "Поддержать нас"
|
669 |
|
670 |
-
#: inc/php/
|
671 |
-
msgid "Donate with PayPal"
|
672 |
-
msgstr "Пожертвовать через PayPal"
|
673 |
-
|
674 |
-
#: inc/php/page.php:523
|
675 |
#, php-format
|
676 |
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."
|
677 |
msgstr "Меня зовут %s Артур %s и Я основатель %s Space X-Chimp %s, который объединяет небольшую международную команду молодых людей."
|
678 |
|
679 |
-
#: inc/php/
|
680 |
msgid "Our intention is to create projects that will make this world a better place."
|
681 |
msgstr ""
|
682 |
|
683 |
-
#: inc/php/
|
684 |
msgid "Our motto is - «Follow your dreams and don’t give up»."
|
685 |
msgstr ""
|
686 |
|
687 |
-
#: inc/php/
|
688 |
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."
|
689 |
msgstr ""
|
690 |
|
691 |
-
#: inc/php/
|
692 |
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."
|
693 |
msgstr "Мы тратим много времени и усилий, пытаясь убедиться в том, что темы, плагины и другие вещи, которые мы создаём, полезны, и окончательное доказательство этого для нас то, что вы на самом деле хотите их использовать."
|
694 |
|
695 |
-
#: inc/php/
|
696 |
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."
|
697 |
msgstr "Но мы независимые разработчики, без регулярного дохода, так что каждый небольшой вклад помогает покрыть наши расходы и позволяет нам тратить больше времени на создание вещей, которыми могут наслаждаться удивительные люди, такие как вы."
|
698 |
|
699 |
-
#: inc/php/
|
700 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
701 |
msgstr "Если вы цените мою работу, то вы можете купить мне кофе!"
|
702 |
|
703 |
-
#: inc/php/
|
704 |
msgid "Thank you for your support!"
|
705 |
msgstr "Спасибо за вашу поддержку!"
|
706 |
|
707 |
-
#: inc/php/
|
708 |
-
msgid "
|
709 |
-
msgstr "
|
710 |
-
|
711 |
-
#: inc/php/settings.php:32
|
712 |
-
msgid "NOT SAVED!"
|
713 |
-
msgstr ""
|
714 |
|
715 |
-
#: inc/php/
|
716 |
-
msgid "
|
717 |
-
msgstr ""
|
718 |
|
719 |
-
#: inc/php/
|
720 |
-
msgid "
|
721 |
-
msgstr "
|
722 |
|
723 |
-
#: inc/php/
|
724 |
-
msgid "
|
725 |
-
msgstr "
|
726 |
|
727 |
-
#: inc/php/
|
728 |
-
msgid "
|
729 |
-
msgstr "
|
730 |
|
731 |
-
#: inc/php/
|
732 |
-
msgid "
|
733 |
-
msgstr "
|
734 |
|
735 |
-
#: inc/php/
|
736 |
-
|
737 |
-
|
|
|
738 |
|
739 |
-
#: inc/php/
|
740 |
-
msgid "
|
741 |
-
msgstr "
|
742 |
|
743 |
-
#: inc/php/
|
744 |
-
msgid "
|
745 |
-
msgstr "
|
746 |
|
747 |
-
#: inc/php/
|
748 |
-
|
749 |
-
|
|
|
750 |
|
751 |
#. Plugin Name of the plugin/theme
|
752 |
msgid "My Custom Functions"
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
+
"POT-Creation-Date: 2019-03-01 06:43+0300\n"
|
7 |
+
"PO-Revision-Date: 2019-03-01 06:43+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Russian\n"
|
10 |
"Language: ru_RU\n"
|
36 |
msgid "PHP Inserter"
|
37 |
msgstr "PHP Inserter"
|
38 |
|
39 |
+
#: inc/php/messages.php:27 inc/php/tabs/support.php:25
|
40 |
msgid "Hello!"
|
41 |
msgstr "Привет!"
|
42 |
|
69 |
msgid "Please, check the code and try again."
|
70 |
msgstr "Пожалуйста, проверьте код и попробуйте ещё раз."
|
71 |
|
72 |
+
#: inc/php/page.php:35
|
73 |
#, php-format
|
74 |
msgid "by %s Space X-Chimp %s"
|
75 |
msgstr "от %s Space X-Chimp %s"
|
76 |
|
77 |
+
#: inc/php/page.php:41
|
78 |
msgid "Version"
|
79 |
msgstr "Версия"
|
80 |
|
81 |
+
#: inc/php/page.php:48
|
82 |
msgid "Main"
|
83 |
msgstr "Главная"
|
84 |
|
85 |
+
#: inc/php/page.php:49
|
86 |
msgid "Usage"
|
87 |
msgstr "Применение"
|
88 |
|
89 |
+
#: inc/php/page.php:50
|
90 |
msgid "F.A.Q."
|
91 |
msgstr "F.A.Q."
|
92 |
|
93 |
+
#: inc/php/page.php:51 inc/php/sidebar.php:47 inc/php/tabs/settings.php:54
|
94 |
msgid "Support"
|
95 |
msgstr "Поддержка"
|
96 |
|
97 |
+
#: inc/php/page.php:52
|
98 |
msgid "Store"
|
99 |
msgstr "Магазин"
|
100 |
|
101 |
+
#: inc/php/sidebar.php:16
|
102 |
+
msgid "We are «Space X-Chimp»"
|
103 |
+
msgstr "Мы «Space X-Chimp»"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
104 |
|
105 |
+
#: inc/php/sidebar.php:33
|
106 |
+
msgid "About"
|
107 |
+
msgstr "О плагине"
|
108 |
|
109 |
+
#: inc/php/sidebar.php:35
|
110 |
+
msgid "This plugin gives you the ability to easily and safely add your custom PHP code to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
|
111 |
+
msgstr "Этот плагин даёт вам возможность легко и безопасно добавлять ваш пользовательский PHP код, непосредственно из области администрирования WordPress, без необходимости иметь внешний редактор."
|
|
|
112 |
|
113 |
+
#: inc/php/sidebar.php:40
|
114 |
+
msgid "Help"
|
115 |
+
msgstr "Помощь"
|
116 |
|
117 |
+
#: inc/php/sidebar.php:42
|
118 |
+
msgid "If you have a question, please read the information in the FAQ section."
|
119 |
+
msgstr "Если у вас есть вопрос, пожалуйста ознакомьтесь с информацией в разделе FAQ."
|
120 |
|
121 |
+
#: inc/php/sidebar.php:49 inc/php/tabs/settings.php:56
|
122 |
+
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."
|
123 |
+
msgstr "Каждый небольшой вклад помогает покрыть наши расходы и позволяет нам тратить больше времени на создание вещей, которыми могут наслаждаться удивительные люди, такие как вы."
|
124 |
|
125 |
+
#: inc/php/sidebar.php:54 inc/php/tabs/settings.php:61
|
126 |
+
#: inc/php/tabs/support.php:21
|
127 |
+
msgid "Donate with PayPal"
|
128 |
+
msgstr "Пожертвовать через PayPal"
|
129 |
|
130 |
+
#: inc/php/sidebar.php:56 inc/php/tabs/settings.php:63
|
131 |
+
msgid "Thanks for your support!"
|
132 |
+
msgstr "Спасибо за вашу поддержку!"
|
|
|
133 |
|
134 |
+
#: inc/php/tabs/faq.php:13
|
135 |
msgid "Frequently Asked Questions"
|
136 |
msgstr "Часто задаваемые вопросы"
|
137 |
|
138 |
+
#: inc/php/tabs/faq.php:17
|
139 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
140 |
msgstr "Если у вас есть вопрос, пожалуйста, прочтите часто задаваемые вопросы."
|
141 |
|
142 |
+
#: inc/php/tabs/faq.php:42
|
143 |
msgid "Where can I find a documentation for this plugin?"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: inc/php/tabs/faq.php:47
|
147 |
#, php-format
|
148 |
msgid "Please visit our %s Documentation site %s to view documentation."
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: inc/php/tabs/faq.php:55
|
152 |
msgid "Will this plugin work on my wordpress.COM website?"
|
153 |
msgstr "Будет ли этот плагин работать на моем веб-сайте wordpress.COM?"
|
154 |
|
155 |
+
#: inc/php/tabs/faq.php:58
|
156 |
msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
|
157 |
msgstr "К сожалению, этот плагин доступен для использования только на самостоятельно размещённых веб-сайтах (wordpress.ORG)."
|
158 |
|
159 |
+
#: inc/php/tabs/faq.php:60
|
160 |
msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: inc/php/tabs/faq.php:61
|
164 |
msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: inc/php/tabs/faq.php:64
|
168 |
#, php-format
|
169 |
msgid "You can learn more about the difference here: %s ."
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: inc/php/tabs/faq.php:71
|
173 |
msgid "Will this plugin work/compatible with the theme I use?"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: inc/php/tabs/faq.php:74
|
177 |
msgid "This plugin is compatible with most themes."
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: inc/php/tabs/faq.php:75
|
181 |
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."
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: inc/php/tabs/faq.php:76
|
185 |
msgid "We constantly check this plugin for compatibility with third-party themes."
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: inc/php/tabs/faq.php:77
|
189 |
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."
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: inc/php/tabs/faq.php:79
|
193 |
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."
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: inc/php/tabs/faq.php:83
|
197 |
msgid "Will this plugin work/compatible with other plugins that I use?"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: inc/php/tabs/faq.php:86
|
201 |
msgid "This plugin is compatible with most plugins."
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: inc/php/tabs/faq.php:87
|
205 |
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."
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: inc/php/tabs/faq.php:88
|
209 |
msgid "We constantly check this plugin for compatibility with third-party plugins."
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: inc/php/tabs/faq.php:89
|
213 |
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."
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: inc/php/tabs/faq.php:91
|
217 |
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."
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: inc/php/tabs/faq.php:95
|
221 |
msgid "Can I use this plugin on my language?"
|
222 |
msgstr "Можно ли использовать этот плагин на моём языке?"
|
223 |
|
224 |
+
#: inc/php/tabs/faq.php:98 inc/php/tabs/faq.php:133
|
225 |
msgid "Yes."
|
226 |
msgstr "Да."
|
227 |
|
228 |
+
#: inc/php/tabs/faq.php:99
|
229 |
msgid "This plugin is ready for translation and has already been translated into several languages."
|
230 |
msgstr "Этот плагин готов к переводу и уже переведен на несколько языков."
|
231 |
|
232 |
+
#: inc/php/tabs/faq.php:100
|
233 |
msgid "But If your language is not available then you can make one."
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: inc/php/tabs/faq.php:101
|
237 |
msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: inc/php/tabs/faq.php:102
|
241 |
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
242 |
msgstr "Многие пользователи плагинов будут рады, если вы поделитесь своим переводом с сообществом."
|
243 |
|
244 |
+
#: inc/php/tabs/faq.php:103
|
245 |
msgid "Thanks for your contribution!"
|
246 |
msgstr "Спасибо за ваш вклад!"
|
247 |
|
248 |
+
#: inc/php/tabs/faq.php:107
|
249 |
#, php-format
|
250 |
msgid "If you want to help translate this plugin, please visit the %s."
|
251 |
msgstr "Если вы хотите помочь перевести этот плагин, пожалуйста, посетите %s."
|
252 |
|
253 |
+
#: inc/php/tabs/faq.php:111
|
254 |
msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
|
255 |
msgstr "Вы также можете использовать файл POT, который включён в плагин и помещён в папку «languages», чтобы создать PO файл перевода."
|
256 |
|
257 |
+
#: inc/php/tabs/faq.php:114
|
258 |
#, php-format
|
259 |
msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
|
260 |
msgstr "Просто отправьте нам файл PO на %s и мы включим этот перевод в следующее обновление плагина."
|
261 |
|
262 |
+
#: inc/php/tabs/faq.php:121
|
263 |
msgid "How does it work?"
|
264 |
msgstr "Как это работает?"
|
265 |
|
266 |
+
#: inc/php/tabs/faq.php:124
|
267 |
msgid "On the \"Main\" tab, place your custom PHP code in the code editor field, switch the toggle to the \"ON\" position and click the \"Save changes\" button."
|
268 |
msgstr "На вкладке «Главная» поместите ваш PHP код в поле редактора кода, переключите переключатель в положение «ON» и нажмите кнопку «Сохранить изменения»."
|
269 |
|
270 |
+
#: inc/php/tabs/faq.php:125 inc/php/tabs/usage.php:38
|
271 |
+
msgid "Enjoy the result of applying your custom PHP code."
|
272 |
+
msgstr "Наслаждайтесь результатом применения вашего PHP кода."
|
273 |
+
|
274 |
+
#: inc/php/tabs/faq.php:126 inc/php/tabs/usage.php:38
|
275 |
+
msgid "It's that simple!"
|
276 |
+
msgstr "Это так просто!"
|
277 |
+
|
278 |
+
#: inc/php/tabs/faq.php:130
|
279 |
msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
|
280 |
msgstr "Можно ли использовать HTML/CSS/JS код, встроенный в PHP код?"
|
281 |
|
282 |
+
#: inc/php/tabs/faq.php:134
|
283 |
msgid "But you need to do it properly, like this:"
|
284 |
msgstr "Но вам нужно сделать это правильно, например так:"
|
285 |
|
286 |
+
#: inc/php/tabs/faq.php:146
|
287 |
msgid "How much of PHP code (characters) I can enter in the code editor?"
|
288 |
msgstr "Сколько PHP кода (символов) можно ввести в текстовом поле?"
|
289 |
|
290 |
+
#: inc/php/tabs/faq.php:149
|
291 |
msgid "We don't limit the number of characters."
|
292 |
msgstr "Мы не ограничиваем количество символов."
|
293 |
|
294 |
+
#: inc/php/tabs/faq.php:153
|
295 |
msgid "Does this plugin requires any modification of the theme?"
|
296 |
msgstr "Этот плагин требует изменения темы?"
|
297 |
|
298 |
+
#: inc/php/tabs/faq.php:156 inc/php/tabs/faq.php:164
|
299 |
msgid "Absolutely not."
|
300 |
msgstr "Абсолютно нет."
|
301 |
|
302 |
+
#: inc/php/tabs/faq.php:157
|
303 |
msgid "This plugin is configurable entirely from the plugin settings page."
|
304 |
msgstr "Этот плагин настраивается полностью на странице настроек плагина."
|
305 |
|
306 |
+
#: inc/php/tabs/faq.php:161
|
307 |
msgid "Does this require any knowledge of HTML or CSS?"
|
308 |
msgstr "Требуются ли какие-либо знания HTML или CSS?"
|
309 |
|
310 |
+
#: inc/php/tabs/faq.php:165
|
311 |
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
312 |
msgstr "Этот плагин можно настроить без знания HTML или CSS, с помощью простой в использовании страницы настройки плагина."
|
313 |
|
314 |
+
#: inc/php/tabs/faq.php:169
|
315 |
msgid "Can I add my custom PHP code to a specific page of my website?"
|
316 |
msgstr "Могу ли я добавить мой пользовательский PHP код на определенную страницу моего веб-сайта?"
|
317 |
|
318 |
+
#: inc/php/tabs/faq.php:172
|
319 |
msgid "For now, this plugin does not have an option to apply the custom PHP code only on specific pages."
|
320 |
msgstr "Пока этот плагин не имеет возможности применять пользовательский PHP код только на определенных страницах."
|
321 |
|
322 |
+
#: inc/php/tabs/faq.php:173
|
323 |
msgid "We plan to add this feature soon."
|
324 |
msgstr "Мы планируем добавить эту функцию в ближайшее время."
|
325 |
|
326 |
+
#: inc/php/tabs/faq.php:174
|
327 |
msgid "But for now in order to apply your custom PHP code only on specific pages of your website, you need to wrap your custom PHP code in a PHP function that will determine the page you want."
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: inc/php/tabs/faq.php:175
|
331 |
msgid "You need something like this:"
|
332 |
msgstr "Вам нужно что-то вроде этого:"
|
333 |
|
334 |
+
#: inc/php/tabs/faq.php:191
|
335 |
msgid "It's not working."
|
336 |
msgstr "Оно не работает."
|
337 |
|
338 |
+
#: inc/php/tabs/faq.php:192 inc/php/tabs/faq.php:208 inc/php/tabs/faq.php:234
|
339 |
msgid "What could be wrong?"
|
340 |
msgstr "Что может быть не так?"
|
341 |
|
342 |
+
#: inc/php/tabs/faq.php:195
|
343 |
msgid "As with every plugin, it's possible that things don't work."
|
344 |
msgstr "Как и в случае с любым другим плагином, что-то может не работать."
|
345 |
|
346 |
+
#: inc/php/tabs/faq.php:196
|
347 |
msgid "It's impossible to tell what could be wrong exactly."
|
348 |
msgstr "Невозможно точно сказать, что может быть не так."
|
349 |
|
350 |
+
#: inc/php/tabs/faq.php:197
|
351 |
msgid "The most common reason for this is a web browser's cache."
|
352 |
msgstr "Наиболее распространённой причиной этого является кеш веб-браузера."
|
353 |
|
354 |
+
#: inc/php/tabs/faq.php:198
|
355 |
msgid "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load."
|
356 |
msgstr "Каждый веб-браузер хранит кеш веб-сайтов, которые вы посещаете (страницы, изображения и т. д.) для того, чтобы уменьшить использование интернет канала и нагрузку на сервер."
|
357 |
|
358 |
+
#: inc/php/tabs/faq.php:199
|
359 |
msgid "This is called the browser's cache."
|
360 |
msgstr "Это называется кешем браузера."
|
361 |
|
362 |
+
#: inc/php/tabs/faq.php:200
|
363 |
msgid "Clearing your browser's cache may solve the problem."
|
364 |
msgstr "Очистка кеша браузера может решить проблему."
|
365 |
|
366 |
+
#: inc/php/tabs/faq.php:202
|
367 |
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."
|
368 |
msgstr "Если вы разместите запрос поддержки на форуме поддержки плагина на WordPress.org, то мы с радостью посмотрим и попытаемся помочь."
|
369 |
|
370 |
+
#: inc/php/tabs/faq.php:203 inc/php/tabs/faq.php:304
|
371 |
msgid "Please include as much information as possible, including a link to your website where the problem can be seen."
|
372 |
msgstr "Пожалуйста, укажите как можно больше информации, включая ссылку на ваш веб-сайт, на котором можно увидеть проблему."
|
373 |
|
374 |
+
#: inc/php/tabs/faq.php:207
|
375 |
msgid "On the plugin settings page, an error message appears."
|
376 |
msgstr "На странице настроек плагина появляется сообщение об ошибке."
|
377 |
|
378 |
+
#: inc/php/tabs/faq.php:211
|
379 |
msgid "Here are a few of the most likely causes of the error message:"
|
380 |
msgstr "Вот некоторые из наиболее вероятных причин появления сообщение об ошибке:"
|
381 |
|
382 |
+
#: inc/php/tabs/faq.php:214
|
383 |
msgid "You make a syntax error in the code that you have entered."
|
384 |
msgstr "Вы сделали синтаксическую ошибку в коде, который вы ввели."
|
385 |
|
386 |
+
#: inc/php/tabs/faq.php:215
|
387 |
msgid "Check the syntax of your code and try again."
|
388 |
msgstr "Проверьте синтаксис вашего кода и попробуйте ещё раз."
|
389 |
|
390 |
+
#: inc/php/tabs/faq.php:218
|
391 |
msgid "You entered two functions with the same name."
|
392 |
msgstr "Вы ввели несколько функций с одинаковым именем."
|
393 |
|
394 |
+
#: inc/php/tabs/faq.php:219
|
395 |
msgid "Use a unique names for your functions."
|
396 |
msgstr "Используйте уникальные имена для ваших функций."
|
397 |
|
398 |
+
#: inc/php/tabs/faq.php:222
|
399 |
msgid "You have entered function with a name that is already occupied by another function."
|
400 |
msgstr "Вы ввели функцию с именем, которое уже занята другой функцией."
|
401 |
|
402 |
+
#: inc/php/tabs/faq.php:223
|
403 |
msgid "Use a unique name for your function."
|
404 |
msgstr "Используйте уникальное имя для вашей функции."
|
405 |
|
406 |
+
#: inc/php/tabs/faq.php:226
|
407 |
msgid "You are trying to overwrite an existing function (of WordPress, theme, or plugin)."
|
408 |
msgstr "Вы пытаетесь перезаписать существующую функцию (из WordPress, темы или плагина)."
|
409 |
|
410 |
+
#: inc/php/tabs/faq.php:227
|
411 |
msgid "Instead, use filters and hooks."
|
412 |
msgstr "Вместо этого используйте фильтры и хуки."
|
413 |
|
414 |
+
#: inc/php/tabs/faq.php:233
|
415 |
msgid "My custom PHP code is not working."
|
416 |
msgstr "Мой пользовательский PHP код не работает."
|
417 |
|
418 |
+
#: inc/php/tabs/faq.php:237
|
419 |
msgid "It happens that your custom PHP code that you insert on the plugin page does not work, even if an error message does not appear."
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: inc/php/tabs/faq.php:238
|
423 |
msgid "Here are a few of the most likely causes of the issue:"
|
424 |
msgstr "Вот некоторые из наиболее вероятных причин проблемы:"
|
425 |
|
426 |
+
#: inc/php/tabs/faq.php:240
|
427 |
msgid "You have a typo during the insertion of your custom PHP code."
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: inc/php/tabs/faq.php:241
|
431 |
msgid "Your custom PHP code has a syntax error."
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: inc/php/tabs/faq.php:242
|
435 |
msgid "Your custom PHP code is incorrect and may not work."
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: inc/php/tabs/faq.php:247
|
439 |
msgid "What to do if this plugin crashed the website?"
|
440 |
msgstr "Что делать, если этот плагин сломал веб-сайт?"
|
441 |
|
442 |
+
#: inc/php/tabs/faq.php:250
|
443 |
msgid "This plugin has a built-in functions for checking the custom code for syntax errors, duplicate functions names, and etc."
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: inc/php/tabs/faq.php:251
|
447 |
msgid "But plugin is not perfect, so there are times when the entered custom code causes the error and white screen (WSOD)."
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: inc/php/tabs/faq.php:252
|
451 |
msgid "This is due to the fact that your custom code has a syntax error that this plugin could not detect."
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: inc/php/tabs/faq.php:253
|
455 |
msgid "When this happens with you, please perform the following steps."
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: inc/php/tabs/faq.php:256
|
459 |
msgid "Access your server via FTP or SFTP."
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: inc/php/tabs/faq.php:257
|
463 |
msgid "If you aren't sure how usually your web hosting provider will have instructions somewhere on their website."
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: inc/php/tabs/faq.php:260
|
467 |
msgid "Browse to the directory <code>wp-content/plugins/my-custom-functions/</code>."
|
468 |
msgstr "Перейдите в каталог <code>wp-content/plugins/my-custom-functions/</code>."
|
469 |
|
470 |
+
#: inc/php/tabs/faq.php:261
|
471 |
msgid "Please contact your web hosting company to get help if you can't find this folder."
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: inc/php/tabs/faq.php:264
|
475 |
msgid "Rename the file <code>START</code> to <code>STOP</code>."
|
476 |
msgstr "Переименуйте файл «START» в «STOP»."
|
477 |
|
478 |
+
#: inc/php/tabs/faq.php:265
|
479 |
msgid "This will stop the execution of your custom code."
|
480 |
msgstr "Это остановит выполнение пользовательского кода."
|
481 |
|
482 |
+
#: inc/php/tabs/faq.php:267
|
483 |
msgid "Log in to Admin Area of your WordPress website."
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: inc/php/tabs/faq.php:268
|
487 |
msgid "Go to the plugin settings page <code>Settings</code> ➡ <code>PHP Inserter</code>."
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: inc/php/tabs/faq.php:269
|
491 |
msgid "Edit/fix your custom PHP code that you entered before the crash."
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: inc/php/tabs/faq.php:270
|
495 |
msgid "Return to the plugin folder and rename the file <code>STOP</code> to <code>START</code> and you're done!"
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: inc/php/tabs/faq.php:272
|
499 |
msgid "This plugin stored you entered code in the database of your website."
|
500 |
msgstr "Этот плагин хранит введённый вами код в базе данных вашего веб-сайта."
|
501 |
|
502 |
+
#: inc/php/tabs/faq.php:273
|
503 |
msgid "For getting your code, you also can go to the <code>Database</code> ➡ Table <code>wp_options</code> ➡ Option <code>spacexchimp_p001_settings</code> ➡ <code>option_value</code>."
|
504 |
msgstr "Для получения вашего кода, вы также можете перейти в <code>Database</code> ➡ Table <code>wp_options</code> ➡ Option <code>spacexchimp_p001_settings</code> ➡ <code>option_value</code>."
|
505 |
|
506 |
+
#: inc/php/tabs/faq.php:275
|
507 |
msgid "We are already working on a feature to automatically stop the execution of users custom PHP code for cases when this plugin could not detect the error, and this caused the inaccessibility of the website."
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: inc/php/tabs/faq.php:279
|
511 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
|
512 |
msgstr "Последнее обновление WordPress не позволяет мне редактировать мой веб-сайт, на котором используется этот плагин."
|
513 |
|
514 |
+
#: inc/php/tabs/faq.php:280
|
515 |
msgid "Why is this?"
|
516 |
msgstr "Почему так?"
|
517 |
|
518 |
+
#: inc/php/tabs/faq.php:283
|
519 |
msgid "This plugin can not cause such problem."
|
520 |
msgstr "Этот плагин не может вызвать такую проблему."
|
521 |
|
522 |
+
#: inc/php/tabs/faq.php:284
|
523 |
msgid "More likely, the problem are related to the settings of the website."
|
524 |
msgstr "Скорее всего, проблема связана с настройками веб-сайта."
|
525 |
|
526 |
+
#: inc/php/tabs/faq.php:285
|
527 |
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."
|
528 |
msgstr "Это может быть кеш, поэтому попробуйте очистить кеш вашего веб-сайта (возможно, вы используете плагин для кеширования или какой-либо веб-сервис, такой как CloudFlare), а затем кеш вашего веб-браузера."
|
529 |
|
530 |
+
#: inc/php/tabs/faq.php:286
|
531 |
msgid "Also please try to re-login to the website, this too can help."
|
532 |
msgstr "Также, пожалуйста, попробуйте повторно войти на веб-сайт, это тоже может помочь."
|
533 |
|
534 |
+
#: inc/php/tabs/faq.php:290
|
535 |
msgid "Where to report bug if found?"
|
536 |
msgstr "Где можно сообщить об ошибке?"
|
537 |
|
538 |
+
#: inc/php/tabs/faq.php:293
|
539 |
msgid "Bug reports are very welcome!"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: inc/php/tabs/faq.php:296
|
543 |
#, php-format
|
544 |
msgid "Please visit our %s contact page %s and report."
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: inc/php/tabs/faq.php:301 inc/php/tabs/faq.php:330
|
548 |
msgid "Please do not forget to specify the name of the plugin."
|
549 |
msgstr "Пожалуйста не забудьте указать название плагина."
|
550 |
|
551 |
+
#: inc/php/tabs/faq.php:302 inc/php/tabs/faq.php:331 inc/php/tabs/faq.php:347
|
552 |
msgid "Thank you!"
|
553 |
msgstr "Спасибо!"
|
554 |
|
555 |
+
#: inc/php/tabs/faq.php:305
|
556 |
msgid "Describe in more detail what exactly you are seeing."
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: inc/php/tabs/faq.php:306
|
560 |
msgid "Here are some examples:"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: inc/php/tabs/faq.php:309
|
564 |
msgid "Elements of the plugin settings page are not working."
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: inc/php/tabs/faq.php:310
|
568 |
msgid "An error message is displayed on the plugin settings page."
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: inc/php/tabs/faq.php:311
|
572 |
msgid "An error message is displayed on the front end of website."
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: inc/php/tabs/faq.php:312
|
576 |
msgid "An error message is displayed on the back end of website."
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: inc/php/tabs/faq.php:313
|
580 |
msgid "Custom code is inserted on the plugin settings page, but it is not applied on the website."
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: inc/php/tabs/faq.php:314
|
584 |
msgid "Website is crashed."
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: inc/php/tabs/faq.php:319
|
588 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
589 |
msgstr "Где можно поделиться идеями или предложениями, чтобы сделать плагин лучше?"
|
590 |
|
591 |
+
#: inc/php/tabs/faq.php:322
|
592 |
msgid "Any suggestions are very welcome!"
|
593 |
msgstr "Любые предложения приветствуются!"
|
594 |
|
595 |
+
#: inc/php/tabs/faq.php:325
|
596 |
#, php-format
|
597 |
msgid "Please visit our %s contact page %s."
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: inc/php/tabs/faq.php:335
|
601 |
msgid "I love this plugin!"
|
602 |
msgstr "Мне нравится этот плагин!"
|
603 |
|
604 |
+
#: inc/php/tabs/faq.php:336
|
605 |
msgid "Can I help somehow?"
|
606 |
msgstr "Могу Я чем-то помочь?"
|
607 |
|
608 |
+
#: inc/php/tabs/faq.php:339
|
609 |
msgid "Yes, any contributions are very welcome!"
|
610 |
msgstr "Да, любой вклад приветствуется!"
|
611 |
|
612 |
+
#: inc/php/tabs/faq.php:342
|
613 |
#, php-format
|
614 |
msgid "Please visit our %s Support Us %s page."
|
615 |
msgstr "Пожалуйста, посетите нашу страницу %s Поддержите нас %s ."
|
616 |
|
617 |
+
#: inc/php/tabs/faq.php:351
|
618 |
msgid "Where can I find information about your licenses, payment process and refunds?"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: inc/php/tabs/faq.php:356
|
622 |
#, php-format
|
623 |
msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: inc/php/tabs/faq.php:364
|
627 |
msgid "Where can I find information about your customer support?"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: inc/php/tabs/faq.php:369
|
631 |
#, php-format
|
632 |
msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: inc/php/tabs/faq.php:377
|
636 |
msgid "Where can I find information about your affiliate program?"
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: inc/php/tabs/faq.php:382
|
640 |
#, php-format
|
641 |
msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: inc/php/tabs/faq.php:390
|
645 |
msgid "My question wasn't answered here."
|
646 |
msgstr "На мой вопрос здесь не было ответа."
|
647 |
|
648 |
+
#: inc/php/tabs/faq.php:395
|
649 |
#, php-format
|
650 |
msgid "You can ask your question on %s this page %s."
|
651 |
msgstr "Вы можете задать ваш вопрос на %s этой странице %s."
|
652 |
|
653 |
+
#: inc/php/tabs/faq.php:400
|
654 |
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."
|
655 |
msgstr "Но имейте в виду, что этот плагин является бесплатным и без специальной поддержки, поэтому у нас нет возможности ответить на все вопросы."
|
656 |
|
657 |
+
#: inc/php/tabs/settings.php:30
|
658 |
+
msgid "Functions (PHP code)"
|
659 |
+
msgstr "Функции (PHP код)"
|
660 |
+
|
661 |
+
#: inc/php/tabs/settings.php:32
|
662 |
+
msgid "NOT SAVED!"
|
663 |
+
msgstr ""
|
664 |
+
|
665 |
+
#: inc/php/tabs/settings.php:46
|
666 |
+
msgid "Enter your PHP functions here"
|
667 |
+
msgstr ""
|
668 |
+
|
669 |
+
#: inc/php/tabs/settings.php:51
|
670 |
+
msgid "Save changes"
|
671 |
+
msgstr "Сохранить изменения"
|
672 |
+
|
673 |
+
#: inc/php/tabs/support.php:13
|
674 |
msgid "Support Us"
|
675 |
msgstr "Поддержать нас"
|
676 |
|
677 |
+
#: inc/php/tabs/support.php:28
|
|
|
|
|
|
|
|
|
678 |
#, php-format
|
679 |
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."
|
680 |
msgstr "Меня зовут %s Артур %s и Я основатель %s Space X-Chimp %s, который объединяет небольшую международную команду молодых людей."
|
681 |
|
682 |
+
#: inc/php/tabs/support.php:37
|
683 |
msgid "Our intention is to create projects that will make this world a better place."
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: inc/php/tabs/support.php:38
|
687 |
msgid "Our motto is - «Follow your dreams and don’t give up»."
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: inc/php/tabs/support.php:39
|
691 |
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."
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: inc/php/tabs/support.php:42
|
695 |
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."
|
696 |
msgstr "Мы тратим много времени и усилий, пытаясь убедиться в том, что темы, плагины и другие вещи, которые мы создаём, полезны, и окончательное доказательство этого для нас то, что вы на самом деле хотите их использовать."
|
697 |
|
698 |
+
#: inc/php/tabs/support.php:43
|
699 |
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."
|
700 |
msgstr "Но мы независимые разработчики, без регулярного дохода, так что каждый небольшой вклад помогает покрыть наши расходы и позволяет нам тратить больше времени на создание вещей, которыми могут наслаждаться удивительные люди, такие как вы."
|
701 |
|
702 |
+
#: inc/php/tabs/support.php:46
|
703 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
704 |
msgstr "Если вы цените мою работу, то вы можете купить мне кофе!"
|
705 |
|
706 |
+
#: inc/php/tabs/support.php:49
|
707 |
msgid "Thank you for your support!"
|
708 |
msgstr "Спасибо за вашу поддержку!"
|
709 |
|
710 |
+
#: inc/php/tabs/usage.php:13
|
711 |
+
msgid "Usage Instructions"
|
712 |
+
msgstr "Инструкция по использованию"
|
|
|
|
|
|
|
|
|
713 |
|
714 |
+
#: inc/php/tabs/usage.php:15
|
715 |
+
msgid "To add your custom PHP code to your website, simply follow these steps:"
|
716 |
+
msgstr "Для того чтобы добавить ваш пользовательсктй PHP код на ваш веб-сайт, выполните следующие действия:"
|
717 |
|
718 |
+
#: inc/php/tabs/usage.php:17
|
719 |
+
msgid "Go to the \"Main\" tab on this page."
|
720 |
+
msgstr "Перейдите на вкладку «Главная»."
|
721 |
|
722 |
+
#: inc/php/tabs/usage.php:19
|
723 |
+
msgid "Place your custom PHP code in the code editor field."
|
724 |
+
msgstr "Поместите ваш PHP код в поле."
|
725 |
|
726 |
+
#: inc/php/tabs/usage.php:22 inc/php/tabs/usage.php:26
|
727 |
+
msgid "Note!"
|
728 |
+
msgstr "Примечание!"
|
729 |
|
730 |
+
#: inc/php/tabs/usage.php:23
|
731 |
+
msgid "Do not wrap your custom PHP code in HTML tags, such as <code><?php</code>...<code>?></code>."
|
732 |
+
msgstr ""
|
733 |
|
734 |
+
#: inc/php/tabs/usage.php:29
|
735 |
+
#, php-format
|
736 |
+
msgid "Before use, please read the %s instructions %s in our Blog on what to do in case of a website crash."
|
737 |
+
msgstr ""
|
738 |
|
739 |
+
#: inc/php/tabs/usage.php:36
|
740 |
+
msgid "Switch the toggle to the \"ON\" position."
|
741 |
+
msgstr "Переключите переключатель в положение «ON»."
|
742 |
|
743 |
+
#: inc/php/tabs/usage.php:37
|
744 |
+
msgid "Click the \"Save changes\" button."
|
745 |
+
msgstr "Нажмите кнопку «Сохранить изменения»."
|
746 |
|
747 |
+
#: inc/php/tabs/usage.php:43
|
748 |
+
#, php-format
|
749 |
+
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
750 |
+
msgstr "Если вы хотите больше вариантов, то %s сообщите нам %s и мы будем рады добавить их."
|
751 |
|
752 |
#. Plugin Name of the plugin/theme
|
753 |
msgid "My Custom Functions"
|
languages/my-custom-functions-zh_TW.mo
CHANGED
Binary file
|
languages/my-custom-functions-zh_TW.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
-
"POT-Creation-Date: 2019-
|
7 |
-
"PO-Revision-Date: 2019-
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Chinese (Taiwan)\n"
|
10 |
"Language: zh_TW\n"
|
@@ -36,7 +36,7 @@ msgstr "捐款"
|
|
36 |
msgid "PHP Inserter"
|
37 |
msgstr "PHP Inserter"
|
38 |
|
39 |
-
#: inc/php/messages.php:27 inc/php/
|
40 |
msgid "Hello!"
|
41 |
msgstr ""
|
42 |
|
@@ -69,683 +69,684 @@ msgstr "抱歉!您的程式碼造成了「嚴重錯誤」,所以並沒有套
|
|
69 |
msgid "Please, check the code and try again."
|
70 |
msgstr "請重新檢查程式碼再試一次"
|
71 |
|
72 |
-
#: inc/php/page.php:
|
73 |
#, php-format
|
74 |
msgid "by %s Space X-Chimp %s"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: inc/php/page.php:
|
78 |
msgid "Version"
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: inc/php/page.php:
|
82 |
msgid "Main"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: inc/php/page.php:
|
86 |
msgid "Usage"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: inc/php/page.php:
|
90 |
msgid "F.A.Q."
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: inc/php/page.php:
|
94 |
msgid "Support"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: inc/php/page.php:
|
98 |
msgid "Store"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: inc/php/
|
102 |
-
msgid "
|
103 |
-
msgstr ""
|
104 |
-
|
105 |
-
#: inc/php/page.php:68
|
106 |
-
msgid "To add your custom PHP code to your website, simply follow these steps:"
|
107 |
-
msgstr ""
|
108 |
-
|
109 |
-
#: inc/php/page.php:70
|
110 |
-
msgid "Go to the \"Main\" tab on this page."
|
111 |
-
msgstr ""
|
112 |
-
|
113 |
-
#: inc/php/page.php:72
|
114 |
-
msgid "Place your custom PHP code in the code editor field."
|
115 |
-
msgstr ""
|
116 |
-
|
117 |
-
#: inc/php/page.php:75 inc/php/page.php:79
|
118 |
-
msgid "Note!"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: inc/php/
|
122 |
-
msgid "
|
123 |
-
msgstr ""
|
124 |
|
125 |
-
#: inc/php/
|
126 |
-
|
127 |
-
msgid "Before use, please read the %s instructions %s in our Blog on what to do in case of a website crash."
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: inc/php/
|
131 |
-
msgid "
|
132 |
-
msgstr ""
|
133 |
|
134 |
-
#: inc/php/
|
135 |
-
msgid "
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: inc/php/
|
139 |
-
msgid "
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: inc/php/
|
143 |
-
|
|
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: inc/php/
|
147 |
-
|
148 |
-
|
149 |
-
msgstr ""
|
150 |
|
151 |
-
#: inc/php/
|
152 |
msgid "Frequently Asked Questions"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: inc/php/
|
156 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: inc/php/
|
160 |
msgid "Where can I find a documentation for this plugin?"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: inc/php/
|
164 |
#, php-format
|
165 |
msgid "Please visit our %s Documentation site %s to view documentation."
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: inc/php/
|
169 |
msgid "Will this plugin work on my wordpress.COM website?"
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: inc/php/
|
173 |
msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: inc/php/
|
177 |
msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: inc/php/
|
181 |
msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: inc/php/
|
185 |
#, php-format
|
186 |
msgid "You can learn more about the difference here: %s ."
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: inc/php/
|
190 |
msgid "Will this plugin work/compatible with the theme I use?"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: inc/php/
|
194 |
msgid "This plugin is compatible with most themes."
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: inc/php/
|
198 |
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."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: inc/php/
|
202 |
msgid "We constantly check this plugin for compatibility with third-party themes."
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: inc/php/
|
206 |
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."
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: inc/php/
|
210 |
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."
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: inc/php/
|
214 |
msgid "Will this plugin work/compatible with other plugins that I use?"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: inc/php/
|
218 |
msgid "This plugin is compatible with most plugins."
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: inc/php/
|
222 |
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."
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: inc/php/
|
226 |
msgid "We constantly check this plugin for compatibility with third-party plugins."
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: inc/php/
|
230 |
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."
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: inc/php/
|
234 |
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."
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: inc/php/
|
238 |
msgid "Can I use this plugin on my language?"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: inc/php/
|
242 |
msgid "Yes."
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: inc/php/
|
246 |
msgid "This plugin is ready for translation and has already been translated into several languages."
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: inc/php/
|
250 |
msgid "But If your language is not available then you can make one."
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: inc/php/
|
254 |
msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: inc/php/
|
258 |
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: inc/php/
|
262 |
msgid "Thanks for your contribution!"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: inc/php/
|
266 |
#, php-format
|
267 |
msgid "If you want to help translate this plugin, please visit the %s."
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: inc/php/
|
271 |
msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: inc/php/
|
275 |
#, php-format
|
276 |
msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: inc/php/
|
280 |
msgid "How does it work?"
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: inc/php/
|
284 |
msgid "On the \"Main\" tab, place your custom PHP code in the code editor field, switch the toggle to the \"ON\" position and click the \"Save changes\" button."
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: inc/php/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
288 |
msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: inc/php/
|
292 |
msgid "But you need to do it properly, like this:"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: inc/php/
|
296 |
msgid "How much of PHP code (characters) I can enter in the code editor?"
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: inc/php/
|
300 |
msgid "We don't limit the number of characters."
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: inc/php/
|
304 |
msgid "Does this plugin requires any modification of the theme?"
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: inc/php/
|
308 |
msgid "Absolutely not."
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: inc/php/
|
312 |
msgid "This plugin is configurable entirely from the plugin settings page."
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: inc/php/
|
316 |
msgid "Does this require any knowledge of HTML or CSS?"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: inc/php/
|
320 |
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: inc/php/
|
324 |
msgid "Can I add my custom PHP code to a specific page of my website?"
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: inc/php/
|
328 |
msgid "For now, this plugin does not have an option to apply the custom PHP code only on specific pages."
|
329 |
msgstr ""
|
330 |
|
331 |
-
#: inc/php/
|
332 |
msgid "We plan to add this feature soon."
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: inc/php/
|
336 |
msgid "But for now in order to apply your custom PHP code only on specific pages of your website, you need to wrap your custom PHP code in a PHP function that will determine the page you want."
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: inc/php/
|
340 |
msgid "You need something like this:"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: inc/php/
|
344 |
msgid "It's not working."
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: inc/php/
|
348 |
msgid "What could be wrong?"
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: inc/php/
|
352 |
msgid "As with every plugin, it's possible that things don't work."
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: inc/php/
|
356 |
msgid "It's impossible to tell what could be wrong exactly."
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: inc/php/
|
360 |
msgid "The most common reason for this is a web browser's cache."
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: inc/php/
|
364 |
msgid "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load."
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: inc/php/
|
368 |
msgid "This is called the browser's cache."
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: inc/php/
|
372 |
msgid "Clearing your browser's cache may solve the problem."
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: inc/php/
|
376 |
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."
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: inc/php/
|
380 |
msgid "Please include as much information as possible, including a link to your website where the problem can be seen."
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: inc/php/
|
384 |
msgid "On the plugin settings page, an error message appears."
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: inc/php/
|
388 |
msgid "Here are a few of the most likely causes of the error message:"
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: inc/php/
|
392 |
msgid "You make a syntax error in the code that you have entered."
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: inc/php/
|
396 |
msgid "Check the syntax of your code and try again."
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: inc/php/
|
400 |
msgid "You entered two functions with the same name."
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: inc/php/
|
404 |
msgid "Use a unique names for your functions."
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: inc/php/
|
408 |
msgid "You have entered function with a name that is already occupied by another function."
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: inc/php/
|
412 |
msgid "Use a unique name for your function."
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: inc/php/
|
416 |
msgid "You are trying to overwrite an existing function (of WordPress, theme, or plugin)."
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: inc/php/
|
420 |
msgid "Instead, use filters and hooks."
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: inc/php/
|
424 |
msgid "My custom PHP code is not working."
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: inc/php/
|
428 |
msgid "It happens that your custom PHP code that you insert on the plugin page does not work, even if an error message does not appear."
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: inc/php/
|
432 |
msgid "Here are a few of the most likely causes of the issue:"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: inc/php/
|
436 |
msgid "You have a typo during the insertion of your custom PHP code."
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: inc/php/
|
440 |
msgid "Your custom PHP code has a syntax error."
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: inc/php/
|
444 |
msgid "Your custom PHP code is incorrect and may not work."
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: inc/php/
|
448 |
msgid "What to do if this plugin crashed the website?"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: inc/php/
|
452 |
msgid "This plugin has a built-in functions for checking the custom code for syntax errors, duplicate functions names, and etc."
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: inc/php/
|
456 |
msgid "But plugin is not perfect, so there are times when the entered custom code causes the error and white screen (WSOD)."
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: inc/php/
|
460 |
msgid "This is due to the fact that your custom code has a syntax error that this plugin could not detect."
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: inc/php/
|
464 |
msgid "When this happens with you, please perform the following steps."
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: inc/php/
|
468 |
msgid "Access your server via FTP or SFTP."
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: inc/php/
|
472 |
msgid "If you aren't sure how usually your web hosting provider will have instructions somewhere on their website."
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: inc/php/
|
476 |
msgid "Browse to the directory <code>wp-content/plugins/my-custom-functions/</code>."
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: inc/php/
|
480 |
msgid "Please contact your web hosting company to get help if you can't find this folder."
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: inc/php/
|
484 |
msgid "Rename the file <code>START</code> to <code>STOP</code>."
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: inc/php/
|
488 |
msgid "This will stop the execution of your custom code."
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: inc/php/
|
492 |
msgid "Log in to Admin Area of your WordPress website."
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: inc/php/
|
496 |
msgid "Go to the plugin settings page <code>Settings</code> ➡ <code>PHP Inserter</code>."
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: inc/php/
|
500 |
msgid "Edit/fix your custom PHP code that you entered before the crash."
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: inc/php/
|
504 |
msgid "Return to the plugin folder and rename the file <code>STOP</code> to <code>START</code> and you're done!"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: inc/php/
|
508 |
msgid "This plugin stored you entered code in the database of your website."
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: inc/php/
|
512 |
msgid "For getting your code, you also can go to the <code>Database</code> ➡ Table <code>wp_options</code> ➡ Option <code>spacexchimp_p001_settings</code> ➡ <code>option_value</code>."
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: inc/php/
|
516 |
msgid "We are already working on a feature to automatically stop the execution of users custom PHP code for cases when this plugin could not detect the error, and this caused the inaccessibility of the website."
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: inc/php/
|
520 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: inc/php/
|
524 |
msgid "Why is this?"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: inc/php/
|
528 |
msgid "This plugin can not cause such problem."
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: inc/php/
|
532 |
msgid "More likely, the problem are related to the settings of the website."
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: inc/php/
|
536 |
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."
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: inc/php/
|
540 |
msgid "Also please try to re-login to the website, this too can help."
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: inc/php/
|
544 |
msgid "Where to report bug if found?"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: inc/php/
|
548 |
msgid "Bug reports are very welcome!"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: inc/php/
|
552 |
#, php-format
|
553 |
msgid "Please visit our %s contact page %s and report."
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: inc/php/
|
557 |
msgid "Please do not forget to specify the name of the plugin."
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: inc/php/
|
561 |
msgid "Thank you!"
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: inc/php/
|
565 |
msgid "Describe in more detail what exactly you are seeing."
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: inc/php/
|
569 |
msgid "Here are some examples:"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: inc/php/
|
573 |
msgid "Elements of the plugin settings page are not working."
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: inc/php/
|
577 |
msgid "An error message is displayed on the plugin settings page."
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: inc/php/
|
581 |
msgid "An error message is displayed on the front end of website."
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: inc/php/
|
585 |
msgid "An error message is displayed on the back end of website."
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: inc/php/
|
589 |
msgid "Custom code is inserted on the plugin settings page, but it is not applied on the website."
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: inc/php/
|
593 |
msgid "Website is crashed."
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: inc/php/
|
597 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: inc/php/
|
601 |
msgid "Any suggestions are very welcome!"
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: inc/php/
|
605 |
#, php-format
|
606 |
msgid "Please visit our %s contact page %s."
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: inc/php/
|
610 |
msgid "I love this plugin!"
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: inc/php/
|
614 |
msgid "Can I help somehow?"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: inc/php/
|
618 |
msgid "Yes, any contributions are very welcome!"
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: inc/php/
|
622 |
#, php-format
|
623 |
msgid "Please visit our %s Support Us %s page."
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: inc/php/
|
627 |
msgid "Where can I find information about your licenses, payment process and refunds?"
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: inc/php/
|
631 |
#, php-format
|
632 |
msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: inc/php/
|
636 |
msgid "Where can I find information about your customer support?"
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: inc/php/
|
640 |
#, php-format
|
641 |
msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: inc/php/
|
645 |
msgid "Where can I find information about your affiliate program?"
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: inc/php/
|
649 |
#, php-format
|
650 |
msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: inc/php/
|
654 |
msgid "My question wasn't answered here."
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: inc/php/
|
658 |
#, php-format
|
659 |
msgid "You can ask your question on %s this page %s."
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: inc/php/
|
663 |
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."
|
664 |
msgstr ""
|
665 |
|
666 |
-
#: inc/php/
|
667 |
-
msgid "
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: inc/php/
|
671 |
-
msgid "
|
672 |
msgstr ""
|
673 |
|
674 |
-
#: inc/php/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
675 |
#, php-format
|
676 |
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."
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: inc/php/
|
680 |
msgid "Our intention is to create projects that will make this world a better place."
|
681 |
msgstr ""
|
682 |
|
683 |
-
#: inc/php/
|
684 |
msgid "Our motto is - «Follow your dreams and don’t give up»."
|
685 |
msgstr ""
|
686 |
|
687 |
-
#: inc/php/
|
688 |
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."
|
689 |
msgstr ""
|
690 |
|
691 |
-
#: inc/php/
|
692 |
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."
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: inc/php/
|
696 |
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."
|
697 |
msgstr ""
|
698 |
|
699 |
-
#: inc/php/
|
700 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
701 |
msgstr ""
|
702 |
|
703 |
-
#: inc/php/
|
704 |
msgid "Thank you for your support!"
|
705 |
msgstr ""
|
706 |
|
707 |
-
#: inc/php/
|
708 |
-
msgid "
|
709 |
msgstr ""
|
710 |
|
711 |
-
#: inc/php/
|
712 |
-
msgid "
|
713 |
msgstr ""
|
714 |
|
715 |
-
#: inc/php/
|
716 |
-
msgid "
|
717 |
msgstr ""
|
718 |
|
719 |
-
#: inc/php/
|
720 |
-
msgid "
|
721 |
-
msgstr "儲存變更"
|
722 |
-
|
723 |
-
#: inc/php/settings.php:56 inc/php/sidebar.php:49
|
724 |
-
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."
|
725 |
msgstr ""
|
726 |
|
727 |
-
#: inc/php/
|
728 |
-
msgid "
|
729 |
-
msgstr "
|
730 |
|
731 |
-
#: inc/php/
|
732 |
-
msgid "
|
733 |
msgstr ""
|
734 |
|
735 |
-
#: inc/php/
|
736 |
-
|
737 |
-
|
|
|
738 |
|
739 |
-
#: inc/php/
|
740 |
-
msgid "
|
741 |
msgstr ""
|
742 |
|
743 |
-
#: inc/php/
|
744 |
-
msgid "
|
745 |
-
msgstr "
|
746 |
|
747 |
-
#: inc/php/
|
748 |
-
|
|
|
749 |
msgstr ""
|
750 |
|
751 |
#. Plugin Name of the plugin/theme
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
+
"POT-Creation-Date: 2019-03-01 06:43+0300\n"
|
7 |
+
"PO-Revision-Date: 2019-03-01 06:43+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: Chinese (Taiwan)\n"
|
10 |
"Language: zh_TW\n"
|
36 |
msgid "PHP Inserter"
|
37 |
msgstr "PHP Inserter"
|
38 |
|
39 |
+
#: inc/php/messages.php:27 inc/php/tabs/support.php:25
|
40 |
msgid "Hello!"
|
41 |
msgstr ""
|
42 |
|
69 |
msgid "Please, check the code and try again."
|
70 |
msgstr "請重新檢查程式碼再試一次"
|
71 |
|
72 |
+
#: inc/php/page.php:35
|
73 |
#, php-format
|
74 |
msgid "by %s Space X-Chimp %s"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: inc/php/page.php:41
|
78 |
msgid "Version"
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: inc/php/page.php:48
|
82 |
msgid "Main"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: inc/php/page.php:49
|
86 |
msgid "Usage"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: inc/php/page.php:50
|
90 |
msgid "F.A.Q."
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: inc/php/page.php:51 inc/php/sidebar.php:47 inc/php/tabs/settings.php:54
|
94 |
msgid "Support"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: inc/php/page.php:52
|
98 |
msgid "Store"
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: inc/php/sidebar.php:16
|
102 |
+
msgid "We are «Space X-Chimp»"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: inc/php/sidebar.php:33
|
106 |
+
msgid "About"
|
107 |
+
msgstr "關於"
|
108 |
|
109 |
+
#: inc/php/sidebar.php:35
|
110 |
+
msgid "This plugin gives you the ability to easily and safely add your custom PHP code to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
|
|
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: inc/php/sidebar.php:40
|
114 |
+
msgid "Help"
|
115 |
+
msgstr "幫助"
|
116 |
|
117 |
+
#: inc/php/sidebar.php:42
|
118 |
+
msgid "If you have a question, please read the information in the FAQ section."
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: inc/php/sidebar.php:49 inc/php/tabs/settings.php:56
|
122 |
+
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."
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: inc/php/sidebar.php:54 inc/php/tabs/settings.php:61
|
126 |
+
#: inc/php/tabs/support.php:21
|
127 |
+
msgid "Donate with PayPal"
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: inc/php/sidebar.php:56 inc/php/tabs/settings.php:63
|
131 |
+
msgid "Thanks for your support!"
|
132 |
+
msgstr "謝謝您的贊助!"
|
|
|
133 |
|
134 |
+
#: inc/php/tabs/faq.php:13
|
135 |
msgid "Frequently Asked Questions"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: inc/php/tabs/faq.php:17
|
139 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: inc/php/tabs/faq.php:42
|
143 |
msgid "Where can I find a documentation for this plugin?"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: inc/php/tabs/faq.php:47
|
147 |
#, php-format
|
148 |
msgid "Please visit our %s Documentation site %s to view documentation."
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: inc/php/tabs/faq.php:55
|
152 |
msgid "Will this plugin work on my wordpress.COM website?"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: inc/php/tabs/faq.php:58
|
156 |
msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: inc/php/tabs/faq.php:60
|
160 |
msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: inc/php/tabs/faq.php:61
|
164 |
msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: inc/php/tabs/faq.php:64
|
168 |
#, php-format
|
169 |
msgid "You can learn more about the difference here: %s ."
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: inc/php/tabs/faq.php:71
|
173 |
msgid "Will this plugin work/compatible with the theme I use?"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: inc/php/tabs/faq.php:74
|
177 |
msgid "This plugin is compatible with most themes."
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: inc/php/tabs/faq.php:75
|
181 |
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."
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: inc/php/tabs/faq.php:76
|
185 |
msgid "We constantly check this plugin for compatibility with third-party themes."
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: inc/php/tabs/faq.php:77
|
189 |
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."
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: inc/php/tabs/faq.php:79
|
193 |
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."
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: inc/php/tabs/faq.php:83
|
197 |
msgid "Will this plugin work/compatible with other plugins that I use?"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: inc/php/tabs/faq.php:86
|
201 |
msgid "This plugin is compatible with most plugins."
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: inc/php/tabs/faq.php:87
|
205 |
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."
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: inc/php/tabs/faq.php:88
|
209 |
msgid "We constantly check this plugin for compatibility with third-party plugins."
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: inc/php/tabs/faq.php:89
|
213 |
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."
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: inc/php/tabs/faq.php:91
|
217 |
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."
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: inc/php/tabs/faq.php:95
|
221 |
msgid "Can I use this plugin on my language?"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: inc/php/tabs/faq.php:98 inc/php/tabs/faq.php:133
|
225 |
msgid "Yes."
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: inc/php/tabs/faq.php:99
|
229 |
msgid "This plugin is ready for translation and has already been translated into several languages."
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: inc/php/tabs/faq.php:100
|
233 |
msgid "But If your language is not available then you can make one."
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: inc/php/tabs/faq.php:101
|
237 |
msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: inc/php/tabs/faq.php:102
|
241 |
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: inc/php/tabs/faq.php:103
|
245 |
msgid "Thanks for your contribution!"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: inc/php/tabs/faq.php:107
|
249 |
#, php-format
|
250 |
msgid "If you want to help translate this plugin, please visit the %s."
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: inc/php/tabs/faq.php:111
|
254 |
msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: inc/php/tabs/faq.php:114
|
258 |
#, php-format
|
259 |
msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: inc/php/tabs/faq.php:121
|
263 |
msgid "How does it work?"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: inc/php/tabs/faq.php:124
|
267 |
msgid "On the \"Main\" tab, place your custom PHP code in the code editor field, switch the toggle to the \"ON\" position and click the \"Save changes\" button."
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: inc/php/tabs/faq.php:125 inc/php/tabs/usage.php:38
|
271 |
+
msgid "Enjoy the result of applying your custom PHP code."
|
272 |
+
msgstr ""
|
273 |
+
|
274 |
+
#: inc/php/tabs/faq.php:126 inc/php/tabs/usage.php:38
|
275 |
+
msgid "It's that simple!"
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
+
#: inc/php/tabs/faq.php:130
|
279 |
msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: inc/php/tabs/faq.php:134
|
283 |
msgid "But you need to do it properly, like this:"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: inc/php/tabs/faq.php:146
|
287 |
msgid "How much of PHP code (characters) I can enter in the code editor?"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: inc/php/tabs/faq.php:149
|
291 |
msgid "We don't limit the number of characters."
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: inc/php/tabs/faq.php:153
|
295 |
msgid "Does this plugin requires any modification of the theme?"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: inc/php/tabs/faq.php:156 inc/php/tabs/faq.php:164
|
299 |
msgid "Absolutely not."
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: inc/php/tabs/faq.php:157
|
303 |
msgid "This plugin is configurable entirely from the plugin settings page."
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: inc/php/tabs/faq.php:161
|
307 |
msgid "Does this require any knowledge of HTML or CSS?"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: inc/php/tabs/faq.php:165
|
311 |
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: inc/php/tabs/faq.php:169
|
315 |
msgid "Can I add my custom PHP code to a specific page of my website?"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: inc/php/tabs/faq.php:172
|
319 |
msgid "For now, this plugin does not have an option to apply the custom PHP code only on specific pages."
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: inc/php/tabs/faq.php:173
|
323 |
msgid "We plan to add this feature soon."
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: inc/php/tabs/faq.php:174
|
327 |
msgid "But for now in order to apply your custom PHP code only on specific pages of your website, you need to wrap your custom PHP code in a PHP function that will determine the page you want."
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: inc/php/tabs/faq.php:175
|
331 |
msgid "You need something like this:"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: inc/php/tabs/faq.php:191
|
335 |
msgid "It's not working."
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: inc/php/tabs/faq.php:192 inc/php/tabs/faq.php:208 inc/php/tabs/faq.php:234
|
339 |
msgid "What could be wrong?"
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: inc/php/tabs/faq.php:195
|
343 |
msgid "As with every plugin, it's possible that things don't work."
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: inc/php/tabs/faq.php:196
|
347 |
msgid "It's impossible to tell what could be wrong exactly."
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: inc/php/tabs/faq.php:197
|
351 |
msgid "The most common reason for this is a web browser's cache."
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: inc/php/tabs/faq.php:198
|
355 |
msgid "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load."
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: inc/php/tabs/faq.php:199
|
359 |
msgid "This is called the browser's cache."
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: inc/php/tabs/faq.php:200
|
363 |
msgid "Clearing your browser's cache may solve the problem."
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: inc/php/tabs/faq.php:202
|
367 |
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."
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: inc/php/tabs/faq.php:203 inc/php/tabs/faq.php:304
|
371 |
msgid "Please include as much information as possible, including a link to your website where the problem can be seen."
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: inc/php/tabs/faq.php:207
|
375 |
msgid "On the plugin settings page, an error message appears."
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: inc/php/tabs/faq.php:211
|
379 |
msgid "Here are a few of the most likely causes of the error message:"
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: inc/php/tabs/faq.php:214
|
383 |
msgid "You make a syntax error in the code that you have entered."
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: inc/php/tabs/faq.php:215
|
387 |
msgid "Check the syntax of your code and try again."
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: inc/php/tabs/faq.php:218
|
391 |
msgid "You entered two functions with the same name."
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: inc/php/tabs/faq.php:219
|
395 |
msgid "Use a unique names for your functions."
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: inc/php/tabs/faq.php:222
|
399 |
msgid "You have entered function with a name that is already occupied by another function."
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: inc/php/tabs/faq.php:223
|
403 |
msgid "Use a unique name for your function."
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: inc/php/tabs/faq.php:226
|
407 |
msgid "You are trying to overwrite an existing function (of WordPress, theme, or plugin)."
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: inc/php/tabs/faq.php:227
|
411 |
msgid "Instead, use filters and hooks."
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: inc/php/tabs/faq.php:233
|
415 |
msgid "My custom PHP code is not working."
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: inc/php/tabs/faq.php:237
|
419 |
msgid "It happens that your custom PHP code that you insert on the plugin page does not work, even if an error message does not appear."
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: inc/php/tabs/faq.php:238
|
423 |
msgid "Here are a few of the most likely causes of the issue:"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: inc/php/tabs/faq.php:240
|
427 |
msgid "You have a typo during the insertion of your custom PHP code."
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: inc/php/tabs/faq.php:241
|
431 |
msgid "Your custom PHP code has a syntax error."
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: inc/php/tabs/faq.php:242
|
435 |
msgid "Your custom PHP code is incorrect and may not work."
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: inc/php/tabs/faq.php:247
|
439 |
msgid "What to do if this plugin crashed the website?"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: inc/php/tabs/faq.php:250
|
443 |
msgid "This plugin has a built-in functions for checking the custom code for syntax errors, duplicate functions names, and etc."
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: inc/php/tabs/faq.php:251
|
447 |
msgid "But plugin is not perfect, so there are times when the entered custom code causes the error and white screen (WSOD)."
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: inc/php/tabs/faq.php:252
|
451 |
msgid "This is due to the fact that your custom code has a syntax error that this plugin could not detect."
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: inc/php/tabs/faq.php:253
|
455 |
msgid "When this happens with you, please perform the following steps."
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: inc/php/tabs/faq.php:256
|
459 |
msgid "Access your server via FTP or SFTP."
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: inc/php/tabs/faq.php:257
|
463 |
msgid "If you aren't sure how usually your web hosting provider will have instructions somewhere on their website."
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: inc/php/tabs/faq.php:260
|
467 |
msgid "Browse to the directory <code>wp-content/plugins/my-custom-functions/</code>."
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: inc/php/tabs/faq.php:261
|
471 |
msgid "Please contact your web hosting company to get help if you can't find this folder."
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: inc/php/tabs/faq.php:264
|
475 |
msgid "Rename the file <code>START</code> to <code>STOP</code>."
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: inc/php/tabs/faq.php:265
|
479 |
msgid "This will stop the execution of your custom code."
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: inc/php/tabs/faq.php:267
|
483 |
msgid "Log in to Admin Area of your WordPress website."
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: inc/php/tabs/faq.php:268
|
487 |
msgid "Go to the plugin settings page <code>Settings</code> ➡ <code>PHP Inserter</code>."
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: inc/php/tabs/faq.php:269
|
491 |
msgid "Edit/fix your custom PHP code that you entered before the crash."
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: inc/php/tabs/faq.php:270
|
495 |
msgid "Return to the plugin folder and rename the file <code>STOP</code> to <code>START</code> and you're done!"
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: inc/php/tabs/faq.php:272
|
499 |
msgid "This plugin stored you entered code in the database of your website."
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: inc/php/tabs/faq.php:273
|
503 |
msgid "For getting your code, you also can go to the <code>Database</code> ➡ Table <code>wp_options</code> ➡ Option <code>spacexchimp_p001_settings</code> ➡ <code>option_value</code>."
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: inc/php/tabs/faq.php:275
|
507 |
msgid "We are already working on a feature to automatically stop the execution of users custom PHP code for cases when this plugin could not detect the error, and this caused the inaccessibility of the website."
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: inc/php/tabs/faq.php:279
|
511 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: inc/php/tabs/faq.php:280
|
515 |
msgid "Why is this?"
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: inc/php/tabs/faq.php:283
|
519 |
msgid "This plugin can not cause such problem."
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: inc/php/tabs/faq.php:284
|
523 |
msgid "More likely, the problem are related to the settings of the website."
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: inc/php/tabs/faq.php:285
|
527 |
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."
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: inc/php/tabs/faq.php:286
|
531 |
msgid "Also please try to re-login to the website, this too can help."
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: inc/php/tabs/faq.php:290
|
535 |
msgid "Where to report bug if found?"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: inc/php/tabs/faq.php:293
|
539 |
msgid "Bug reports are very welcome!"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: inc/php/tabs/faq.php:296
|
543 |
#, php-format
|
544 |
msgid "Please visit our %s contact page %s and report."
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: inc/php/tabs/faq.php:301 inc/php/tabs/faq.php:330
|
548 |
msgid "Please do not forget to specify the name of the plugin."
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: inc/php/tabs/faq.php:302 inc/php/tabs/faq.php:331 inc/php/tabs/faq.php:347
|
552 |
msgid "Thank you!"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: inc/php/tabs/faq.php:305
|
556 |
msgid "Describe in more detail what exactly you are seeing."
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: inc/php/tabs/faq.php:306
|
560 |
msgid "Here are some examples:"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: inc/php/tabs/faq.php:309
|
564 |
msgid "Elements of the plugin settings page are not working."
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: inc/php/tabs/faq.php:310
|
568 |
msgid "An error message is displayed on the plugin settings page."
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: inc/php/tabs/faq.php:311
|
572 |
msgid "An error message is displayed on the front end of website."
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: inc/php/tabs/faq.php:312
|
576 |
msgid "An error message is displayed on the back end of website."
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: inc/php/tabs/faq.php:313
|
580 |
msgid "Custom code is inserted on the plugin settings page, but it is not applied on the website."
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: inc/php/tabs/faq.php:314
|
584 |
msgid "Website is crashed."
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: inc/php/tabs/faq.php:319
|
588 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: inc/php/tabs/faq.php:322
|
592 |
msgid "Any suggestions are very welcome!"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: inc/php/tabs/faq.php:325
|
596 |
#, php-format
|
597 |
msgid "Please visit our %s contact page %s."
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: inc/php/tabs/faq.php:335
|
601 |
msgid "I love this plugin!"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: inc/php/tabs/faq.php:336
|
605 |
msgid "Can I help somehow?"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: inc/php/tabs/faq.php:339
|
609 |
msgid "Yes, any contributions are very welcome!"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: inc/php/tabs/faq.php:342
|
613 |
#, php-format
|
614 |
msgid "Please visit our %s Support Us %s page."
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: inc/php/tabs/faq.php:351
|
618 |
msgid "Where can I find information about your licenses, payment process and refunds?"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: inc/php/tabs/faq.php:356
|
622 |
#, php-format
|
623 |
msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: inc/php/tabs/faq.php:364
|
627 |
msgid "Where can I find information about your customer support?"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: inc/php/tabs/faq.php:369
|
631 |
#, php-format
|
632 |
msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: inc/php/tabs/faq.php:377
|
636 |
msgid "Where can I find information about your affiliate program?"
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: inc/php/tabs/faq.php:382
|
640 |
#, php-format
|
641 |
msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: inc/php/tabs/faq.php:390
|
645 |
msgid "My question wasn't answered here."
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: inc/php/tabs/faq.php:395
|
649 |
#, php-format
|
650 |
msgid "You can ask your question on %s this page %s."
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: inc/php/tabs/faq.php:400
|
654 |
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."
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: inc/php/tabs/settings.php:30
|
658 |
+
msgid "Functions (PHP code)"
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: inc/php/tabs/settings.php:32
|
662 |
+
msgid "NOT SAVED!"
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: inc/php/tabs/settings.php:46
|
666 |
+
msgid "Enter your PHP functions here"
|
667 |
+
msgstr ""
|
668 |
+
|
669 |
+
#: inc/php/tabs/settings.php:51
|
670 |
+
msgid "Save changes"
|
671 |
+
msgstr "儲存變更"
|
672 |
+
|
673 |
+
#: inc/php/tabs/support.php:13
|
674 |
+
msgid "Support Us"
|
675 |
+
msgstr ""
|
676 |
+
|
677 |
+
#: inc/php/tabs/support.php:28
|
678 |
#, php-format
|
679 |
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."
|
680 |
msgstr ""
|
681 |
|
682 |
+
#: inc/php/tabs/support.php:37
|
683 |
msgid "Our intention is to create projects that will make this world a better place."
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: inc/php/tabs/support.php:38
|
687 |
msgid "Our motto is - «Follow your dreams and don’t give up»."
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: inc/php/tabs/support.php:39
|
691 |
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."
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: inc/php/tabs/support.php:42
|
695 |
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."
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: inc/php/tabs/support.php:43
|
699 |
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."
|
700 |
msgstr ""
|
701 |
|
702 |
+
#: inc/php/tabs/support.php:46
|
703 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: inc/php/tabs/support.php:49
|
707 |
msgid "Thank you for your support!"
|
708 |
msgstr ""
|
709 |
|
710 |
+
#: inc/php/tabs/usage.php:13
|
711 |
+
msgid "Usage Instructions"
|
712 |
msgstr ""
|
713 |
|
714 |
+
#: inc/php/tabs/usage.php:15
|
715 |
+
msgid "To add your custom PHP code to your website, simply follow these steps:"
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: inc/php/tabs/usage.php:17
|
719 |
+
msgid "Go to the \"Main\" tab on this page."
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: inc/php/tabs/usage.php:19
|
723 |
+
msgid "Place your custom PHP code in the code editor field."
|
|
|
|
|
|
|
|
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: inc/php/tabs/usage.php:22 inc/php/tabs/usage.php:26
|
727 |
+
msgid "Note!"
|
728 |
+
msgstr ""
|
729 |
|
730 |
+
#: inc/php/tabs/usage.php:23
|
731 |
+
msgid "Do not wrap your custom PHP code in HTML tags, such as <code><?php</code>...<code>?></code>."
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: inc/php/tabs/usage.php:29
|
735 |
+
#, php-format
|
736 |
+
msgid "Before use, please read the %s instructions %s in our Blog on what to do in case of a website crash."
|
737 |
+
msgstr ""
|
738 |
|
739 |
+
#: inc/php/tabs/usage.php:36
|
740 |
+
msgid "Switch the toggle to the \"ON\" position."
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: inc/php/tabs/usage.php:37
|
744 |
+
msgid "Click the \"Save changes\" button."
|
745 |
+
msgstr ""
|
746 |
|
747 |
+
#: inc/php/tabs/usage.php:43
|
748 |
+
#, php-format
|
749 |
+
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
750 |
msgstr ""
|
751 |
|
752 |
#. Plugin Name of the plugin/theme
|
languages/my-custom-functions.pot
CHANGED
@@ -3,7 +3,7 @@ msgid ""
|
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
-
"POT-Creation-Date: 2019-
|
7 |
"PO-Revision-Date: 2015-08-30 16:22+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
@@ -34,7 +34,7 @@ msgstr ""
|
|
34 |
msgid "PHP Inserter"
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: inc/php/messages.php:27 inc/php/
|
38 |
msgid "Hello!"
|
39 |
msgstr ""
|
40 |
|
@@ -67,683 +67,684 @@ msgstr ""
|
|
67 |
msgid "Please, check the code and try again."
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: inc/php/page.php:
|
71 |
#, php-format
|
72 |
msgid "by %s Space X-Chimp %s"
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: inc/php/page.php:
|
76 |
msgid "Version"
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: inc/php/page.php:
|
80 |
msgid "Main"
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: inc/php/page.php:
|
84 |
msgid "Usage"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: inc/php/page.php:
|
88 |
msgid "F.A.Q."
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: inc/php/page.php:
|
92 |
msgid "Support"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: inc/php/page.php:
|
96 |
msgid "Store"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: inc/php/
|
100 |
-
msgid "
|
101 |
-
msgstr ""
|
102 |
-
|
103 |
-
#: inc/php/page.php:68
|
104 |
-
msgid "To add your custom PHP code to your website, simply follow these steps:"
|
105 |
-
msgstr ""
|
106 |
-
|
107 |
-
#: inc/php/page.php:70
|
108 |
-
msgid "Go to the \"Main\" tab on this page."
|
109 |
-
msgstr ""
|
110 |
-
|
111 |
-
#: inc/php/page.php:72
|
112 |
-
msgid "Place your custom PHP code in the code editor field."
|
113 |
-
msgstr ""
|
114 |
-
|
115 |
-
#: inc/php/page.php:75 inc/php/page.php:79
|
116 |
-
msgid "Note!"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: inc/php/
|
120 |
-
msgid "
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: inc/php/
|
124 |
-
|
125 |
-
msgid "Before use, please read the %s instructions %s in our Blog on what to do in case of a website crash."
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: inc/php/
|
129 |
-
msgid "
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: inc/php/
|
133 |
-
msgid "
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: inc/php/
|
137 |
-
msgid "
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: inc/php/
|
141 |
-
|
|
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: inc/php/
|
145 |
-
|
146 |
-
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: inc/php/
|
150 |
msgid "Frequently Asked Questions"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: inc/php/
|
154 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: inc/php/
|
158 |
msgid "Where can I find a documentation for this plugin?"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: inc/php/
|
162 |
#, php-format
|
163 |
msgid "Please visit our %s Documentation site %s to view documentation."
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: inc/php/
|
167 |
msgid "Will this plugin work on my wordpress.COM website?"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: inc/php/
|
171 |
msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: inc/php/
|
175 |
msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: inc/php/
|
179 |
msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: inc/php/
|
183 |
#, php-format
|
184 |
msgid "You can learn more about the difference here: %s ."
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: inc/php/
|
188 |
msgid "Will this plugin work/compatible with the theme I use?"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: inc/php/
|
192 |
msgid "This plugin is compatible with most themes."
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: inc/php/
|
196 |
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."
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: inc/php/
|
200 |
msgid "We constantly check this plugin for compatibility with third-party themes."
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: inc/php/
|
204 |
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."
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: inc/php/
|
208 |
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."
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: inc/php/
|
212 |
msgid "Will this plugin work/compatible with other plugins that I use?"
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: inc/php/
|
216 |
msgid "This plugin is compatible with most plugins."
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: inc/php/
|
220 |
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."
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: inc/php/
|
224 |
msgid "We constantly check this plugin for compatibility with third-party plugins."
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: inc/php/
|
228 |
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."
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: inc/php/
|
232 |
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."
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: inc/php/
|
236 |
msgid "Can I use this plugin on my language?"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: inc/php/
|
240 |
msgid "Yes."
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: inc/php/
|
244 |
msgid "This plugin is ready for translation and has already been translated into several languages."
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: inc/php/
|
248 |
msgid "But If your language is not available then you can make one."
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: inc/php/
|
252 |
msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: inc/php/
|
256 |
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: inc/php/
|
260 |
msgid "Thanks for your contribution!"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: inc/php/
|
264 |
#, php-format
|
265 |
msgid "If you want to help translate this plugin, please visit the %s."
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: inc/php/
|
269 |
msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: inc/php/
|
273 |
#, php-format
|
274 |
msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: inc/php/
|
278 |
msgid "How does it work?"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: inc/php/
|
282 |
msgid "On the \"Main\" tab, place your custom PHP code in the code editor field, switch the toggle to the \"ON\" position and click the \"Save changes\" button."
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: inc/php/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
286 |
msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: inc/php/
|
290 |
msgid "But you need to do it properly, like this:"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: inc/php/
|
294 |
msgid "How much of PHP code (characters) I can enter in the code editor?"
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: inc/php/
|
298 |
msgid "We don't limit the number of characters."
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: inc/php/
|
302 |
msgid "Does this plugin requires any modification of the theme?"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: inc/php/
|
306 |
msgid "Absolutely not."
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: inc/php/
|
310 |
msgid "This plugin is configurable entirely from the plugin settings page."
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: inc/php/
|
314 |
msgid "Does this require any knowledge of HTML or CSS?"
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: inc/php/
|
318 |
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: inc/php/
|
322 |
msgid "Can I add my custom PHP code to a specific page of my website?"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: inc/php/
|
326 |
msgid "For now, this plugin does not have an option to apply the custom PHP code only on specific pages."
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: inc/php/
|
330 |
msgid "We plan to add this feature soon."
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: inc/php/
|
334 |
msgid "But for now in order to apply your custom PHP code only on specific pages of your website, you need to wrap your custom PHP code in a PHP function that will determine the page you want."
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: inc/php/
|
338 |
msgid "You need something like this:"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: inc/php/
|
342 |
msgid "It's not working."
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: inc/php/
|
346 |
msgid "What could be wrong?"
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: inc/php/
|
350 |
msgid "As with every plugin, it's possible that things don't work."
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: inc/php/
|
354 |
msgid "It's impossible to tell what could be wrong exactly."
|
355 |
msgstr ""
|
356 |
|
357 |
-
#: inc/php/
|
358 |
msgid "The most common reason for this is a web browser's cache."
|
359 |
msgstr ""
|
360 |
|
361 |
-
#: inc/php/
|
362 |
msgid "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load."
|
363 |
msgstr ""
|
364 |
|
365 |
-
#: inc/php/
|
366 |
msgid "This is called the browser's cache."
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: inc/php/
|
370 |
msgid "Clearing your browser's cache may solve the problem."
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: inc/php/
|
374 |
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."
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: inc/php/
|
378 |
msgid "Please include as much information as possible, including a link to your website where the problem can be seen."
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: inc/php/
|
382 |
msgid "On the plugin settings page, an error message appears."
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: inc/php/
|
386 |
msgid "Here are a few of the most likely causes of the error message:"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: inc/php/
|
390 |
msgid "You make a syntax error in the code that you have entered."
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: inc/php/
|
394 |
msgid "Check the syntax of your code and try again."
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: inc/php/
|
398 |
msgid "You entered two functions with the same name."
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: inc/php/
|
402 |
msgid "Use a unique names for your functions."
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: inc/php/
|
406 |
msgid "You have entered function with a name that is already occupied by another function."
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: inc/php/
|
410 |
msgid "Use a unique name for your function."
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: inc/php/
|
414 |
msgid "You are trying to overwrite an existing function (of WordPress, theme, or plugin)."
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: inc/php/
|
418 |
msgid "Instead, use filters and hooks."
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: inc/php/
|
422 |
msgid "My custom PHP code is not working."
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: inc/php/
|
426 |
msgid "It happens that your custom PHP code that you insert on the plugin page does not work, even if an error message does not appear."
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: inc/php/
|
430 |
msgid "Here are a few of the most likely causes of the issue:"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: inc/php/
|
434 |
msgid "You have a typo during the insertion of your custom PHP code."
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: inc/php/
|
438 |
msgid "Your custom PHP code has a syntax error."
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: inc/php/
|
442 |
msgid "Your custom PHP code is incorrect and may not work."
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: inc/php/
|
446 |
msgid "What to do if this plugin crashed the website?"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: inc/php/
|
450 |
msgid "This plugin has a built-in functions for checking the custom code for syntax errors, duplicate functions names, and etc."
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: inc/php/
|
454 |
msgid "But plugin is not perfect, so there are times when the entered custom code causes the error and white screen (WSOD)."
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: inc/php/
|
458 |
msgid "This is due to the fact that your custom code has a syntax error that this plugin could not detect."
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: inc/php/
|
462 |
msgid "When this happens with you, please perform the following steps."
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: inc/php/
|
466 |
msgid "Access your server via FTP or SFTP."
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: inc/php/
|
470 |
msgid "If you aren't sure how usually your web hosting provider will have instructions somewhere on their website."
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: inc/php/
|
474 |
msgid "Browse to the directory <code>wp-content/plugins/my-custom-functions/</code>."
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: inc/php/
|
478 |
msgid "Please contact your web hosting company to get help if you can't find this folder."
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: inc/php/
|
482 |
msgid "Rename the file <code>START</code> to <code>STOP</code>."
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: inc/php/
|
486 |
msgid "This will stop the execution of your custom code."
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: inc/php/
|
490 |
msgid "Log in to Admin Area of your WordPress website."
|
491 |
msgstr ""
|
492 |
|
493 |
-
#: inc/php/
|
494 |
msgid "Go to the plugin settings page <code>Settings</code> ➡ <code>PHP Inserter</code>."
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: inc/php/
|
498 |
msgid "Edit/fix your custom PHP code that you entered before the crash."
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: inc/php/
|
502 |
msgid "Return to the plugin folder and rename the file <code>STOP</code> to <code>START</code> and you're done!"
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: inc/php/
|
506 |
msgid "This plugin stored you entered code in the database of your website."
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: inc/php/
|
510 |
msgid "For getting your code, you also can go to the <code>Database</code> ➡ Table <code>wp_options</code> ➡ Option <code>spacexchimp_p001_settings</code> ➡ <code>option_value</code>."
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: inc/php/
|
514 |
msgid "We are already working on a feature to automatically stop the execution of users custom PHP code for cases when this plugin could not detect the error, and this caused the inaccessibility of the website."
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: inc/php/
|
518 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: inc/php/
|
522 |
msgid "Why is this?"
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: inc/php/
|
526 |
msgid "This plugin can not cause such problem."
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: inc/php/
|
530 |
msgid "More likely, the problem are related to the settings of the website."
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: inc/php/
|
534 |
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."
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: inc/php/
|
538 |
msgid "Also please try to re-login to the website, this too can help."
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: inc/php/
|
542 |
msgid "Where to report bug if found?"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: inc/php/
|
546 |
msgid "Bug reports are very welcome!"
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: inc/php/
|
550 |
#, php-format
|
551 |
msgid "Please visit our %s contact page %s and report."
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: inc/php/
|
555 |
msgid "Please do not forget to specify the name of the plugin."
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: inc/php/
|
559 |
msgid "Thank you!"
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: inc/php/
|
563 |
msgid "Describe in more detail what exactly you are seeing."
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: inc/php/
|
567 |
msgid "Here are some examples:"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: inc/php/
|
571 |
msgid "Elements of the plugin settings page are not working."
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: inc/php/
|
575 |
msgid "An error message is displayed on the plugin settings page."
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: inc/php/
|
579 |
msgid "An error message is displayed on the front end of website."
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: inc/php/
|
583 |
msgid "An error message is displayed on the back end of website."
|
584 |
msgstr ""
|
585 |
|
586 |
-
#: inc/php/
|
587 |
msgid "Custom code is inserted on the plugin settings page, but it is not applied on the website."
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: inc/php/
|
591 |
msgid "Website is crashed."
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: inc/php/
|
595 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: inc/php/
|
599 |
msgid "Any suggestions are very welcome!"
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: inc/php/
|
603 |
#, php-format
|
604 |
msgid "Please visit our %s contact page %s."
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: inc/php/
|
608 |
msgid "I love this plugin!"
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: inc/php/
|
612 |
msgid "Can I help somehow?"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: inc/php/
|
616 |
msgid "Yes, any contributions are very welcome!"
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: inc/php/
|
620 |
#, php-format
|
621 |
msgid "Please visit our %s Support Us %s page."
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: inc/php/
|
625 |
msgid "Where can I find information about your licenses, payment process and refunds?"
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: inc/php/
|
629 |
#, php-format
|
630 |
msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: inc/php/
|
634 |
msgid "Where can I find information about your customer support?"
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: inc/php/
|
638 |
#, php-format
|
639 |
msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: inc/php/
|
643 |
msgid "Where can I find information about your affiliate program?"
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: inc/php/
|
647 |
#, php-format
|
648 |
msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: inc/php/
|
652 |
msgid "My question wasn't answered here."
|
653 |
msgstr ""
|
654 |
|
655 |
-
#: inc/php/
|
656 |
#, php-format
|
657 |
msgid "You can ask your question on %s this page %s."
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: inc/php/
|
661 |
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."
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: inc/php/
|
665 |
-
msgid "
|
666 |
msgstr ""
|
667 |
|
668 |
-
#: inc/php/
|
669 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: inc/php/
|
|
|
|
|
|
|
|
|
673 |
#, php-format
|
674 |
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."
|
675 |
msgstr ""
|
676 |
|
677 |
-
#: inc/php/
|
678 |
msgid "Our intention is to create projects that will make this world a better place."
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: inc/php/
|
682 |
msgid "Our motto is - «Follow your dreams and don’t give up»."
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: inc/php/
|
686 |
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."
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: inc/php/
|
690 |
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."
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: inc/php/
|
694 |
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."
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: inc/php/
|
698 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: inc/php/
|
702 |
msgid "Thank you for your support!"
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: inc/php/
|
706 |
-
msgid "
|
707 |
-
msgstr ""
|
708 |
-
|
709 |
-
#: inc/php/settings.php:32
|
710 |
-
msgid "NOT SAVED!"
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: inc/php/
|
714 |
-
msgid "
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: inc/php/
|
718 |
-
msgid "
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: inc/php/
|
722 |
-
msgid "
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: inc/php/
|
726 |
-
msgid "
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: inc/php/
|
730 |
-
msgid "
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: inc/php/
|
734 |
-
|
|
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: inc/php/
|
738 |
-
msgid "
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: inc/php/
|
742 |
-
msgid "
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: inc/php/
|
746 |
-
|
|
|
747 |
msgstr ""
|
748 |
|
749 |
#. Plugin Name of the plugin/theme
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: My Custom Functions\n"
|
6 |
+
"POT-Creation-Date: 2019-03-01 06:44+0300\n"
|
7 |
"PO-Revision-Date: 2015-08-30 16:22+0300\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
34 |
msgid "PHP Inserter"
|
35 |
msgstr ""
|
36 |
|
37 |
+
#: inc/php/messages.php:27 inc/php/tabs/support.php:25
|
38 |
msgid "Hello!"
|
39 |
msgstr ""
|
40 |
|
67 |
msgid "Please, check the code and try again."
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: inc/php/page.php:35
|
71 |
#, php-format
|
72 |
msgid "by %s Space X-Chimp %s"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: inc/php/page.php:41
|
76 |
msgid "Version"
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: inc/php/page.php:48
|
80 |
msgid "Main"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: inc/php/page.php:49
|
84 |
msgid "Usage"
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: inc/php/page.php:50
|
88 |
msgid "F.A.Q."
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: inc/php/page.php:51 inc/php/sidebar.php:47 inc/php/tabs/settings.php:54
|
92 |
msgid "Support"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: inc/php/page.php:52
|
96 |
msgid "Store"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: inc/php/sidebar.php:16
|
100 |
+
msgid "We are «Space X-Chimp»"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: inc/php/sidebar.php:33
|
104 |
+
msgid "About"
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: inc/php/sidebar.php:35
|
108 |
+
msgid "This plugin gives you the ability to easily and safely add your custom PHP code to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
|
|
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: inc/php/sidebar.php:40
|
112 |
+
msgid "Help"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: inc/php/sidebar.php:42
|
116 |
+
msgid "If you have a question, please read the information in the FAQ section."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: inc/php/sidebar.php:49 inc/php/tabs/settings.php:56
|
120 |
+
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."
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: inc/php/sidebar.php:54 inc/php/tabs/settings.php:61
|
124 |
+
#: inc/php/tabs/support.php:21
|
125 |
+
msgid "Donate with PayPal"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: inc/php/sidebar.php:56 inc/php/tabs/settings.php:63
|
129 |
+
msgid "Thanks for your support!"
|
|
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: inc/php/tabs/faq.php:13
|
133 |
msgid "Frequently Asked Questions"
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: inc/php/tabs/faq.php:17
|
137 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: inc/php/tabs/faq.php:42
|
141 |
msgid "Where can I find a documentation for this plugin?"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: inc/php/tabs/faq.php:47
|
145 |
#, php-format
|
146 |
msgid "Please visit our %s Documentation site %s to view documentation."
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: inc/php/tabs/faq.php:55
|
150 |
msgid "Will this plugin work on my wordpress.COM website?"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: inc/php/tabs/faq.php:58
|
154 |
msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: inc/php/tabs/faq.php:60
|
158 |
msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: inc/php/tabs/faq.php:61
|
162 |
msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: inc/php/tabs/faq.php:64
|
166 |
#, php-format
|
167 |
msgid "You can learn more about the difference here: %s ."
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: inc/php/tabs/faq.php:71
|
171 |
msgid "Will this plugin work/compatible with the theme I use?"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: inc/php/tabs/faq.php:74
|
175 |
msgid "This plugin is compatible with most themes."
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: inc/php/tabs/faq.php:75
|
179 |
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."
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: inc/php/tabs/faq.php:76
|
183 |
msgid "We constantly check this plugin for compatibility with third-party themes."
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: inc/php/tabs/faq.php:77
|
187 |
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."
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: inc/php/tabs/faq.php:79
|
191 |
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."
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: inc/php/tabs/faq.php:83
|
195 |
msgid "Will this plugin work/compatible with other plugins that I use?"
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: inc/php/tabs/faq.php:86
|
199 |
msgid "This plugin is compatible with most plugins."
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: inc/php/tabs/faq.php:87
|
203 |
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."
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: inc/php/tabs/faq.php:88
|
207 |
msgid "We constantly check this plugin for compatibility with third-party plugins."
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: inc/php/tabs/faq.php:89
|
211 |
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."
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: inc/php/tabs/faq.php:91
|
215 |
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."
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: inc/php/tabs/faq.php:95
|
219 |
msgid "Can I use this plugin on my language?"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: inc/php/tabs/faq.php:98 inc/php/tabs/faq.php:133
|
223 |
msgid "Yes."
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: inc/php/tabs/faq.php:99
|
227 |
msgid "This plugin is ready for translation and has already been translated into several languages."
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: inc/php/tabs/faq.php:100
|
231 |
msgid "But If your language is not available then you can make one."
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: inc/php/tabs/faq.php:101
|
235 |
msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: inc/php/tabs/faq.php:102
|
239 |
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: inc/php/tabs/faq.php:103
|
243 |
msgid "Thanks for your contribution!"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: inc/php/tabs/faq.php:107
|
247 |
#, php-format
|
248 |
msgid "If you want to help translate this plugin, please visit the %s."
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: inc/php/tabs/faq.php:111
|
252 |
msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: inc/php/tabs/faq.php:114
|
256 |
#, php-format
|
257 |
msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: inc/php/tabs/faq.php:121
|
261 |
msgid "How does it work?"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: inc/php/tabs/faq.php:124
|
265 |
msgid "On the \"Main\" tab, place your custom PHP code in the code editor field, switch the toggle to the \"ON\" position and click the \"Save changes\" button."
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: inc/php/tabs/faq.php:125 inc/php/tabs/usage.php:38
|
269 |
+
msgid "Enjoy the result of applying your custom PHP code."
|
270 |
+
msgstr ""
|
271 |
+
|
272 |
+
#: inc/php/tabs/faq.php:126 inc/php/tabs/usage.php:38
|
273 |
+
msgid "It's that simple!"
|
274 |
+
msgstr ""
|
275 |
+
|
276 |
+
#: inc/php/tabs/faq.php:130
|
277 |
msgid "Can I use HTML/CSS/JS code integrated in PHP code?"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: inc/php/tabs/faq.php:134
|
281 |
msgid "But you need to do it properly, like this:"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: inc/php/tabs/faq.php:146
|
285 |
msgid "How much of PHP code (characters) I can enter in the code editor?"
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: inc/php/tabs/faq.php:149
|
289 |
msgid "We don't limit the number of characters."
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: inc/php/tabs/faq.php:153
|
293 |
msgid "Does this plugin requires any modification of the theme?"
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: inc/php/tabs/faq.php:156 inc/php/tabs/faq.php:164
|
297 |
msgid "Absolutely not."
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: inc/php/tabs/faq.php:157
|
301 |
msgid "This plugin is configurable entirely from the plugin settings page."
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: inc/php/tabs/faq.php:161
|
305 |
msgid "Does this require any knowledge of HTML or CSS?"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: inc/php/tabs/faq.php:165
|
309 |
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: inc/php/tabs/faq.php:169
|
313 |
msgid "Can I add my custom PHP code to a specific page of my website?"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: inc/php/tabs/faq.php:172
|
317 |
msgid "For now, this plugin does not have an option to apply the custom PHP code only on specific pages."
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: inc/php/tabs/faq.php:173
|
321 |
msgid "We plan to add this feature soon."
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: inc/php/tabs/faq.php:174
|
325 |
msgid "But for now in order to apply your custom PHP code only on specific pages of your website, you need to wrap your custom PHP code in a PHP function that will determine the page you want."
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: inc/php/tabs/faq.php:175
|
329 |
msgid "You need something like this:"
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: inc/php/tabs/faq.php:191
|
333 |
msgid "It's not working."
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: inc/php/tabs/faq.php:192 inc/php/tabs/faq.php:208 inc/php/tabs/faq.php:234
|
337 |
msgid "What could be wrong?"
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: inc/php/tabs/faq.php:195
|
341 |
msgid "As with every plugin, it's possible that things don't work."
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: inc/php/tabs/faq.php:196
|
345 |
msgid "It's impossible to tell what could be wrong exactly."
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: inc/php/tabs/faq.php:197
|
349 |
msgid "The most common reason for this is a web browser's cache."
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: inc/php/tabs/faq.php:198
|
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/tabs/faq.php:199
|
357 |
msgid "This is called the browser's cache."
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: inc/php/tabs/faq.php:200
|
361 |
msgid "Clearing your browser's cache may solve the problem."
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: inc/php/tabs/faq.php:202
|
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/tabs/faq.php:203 inc/php/tabs/faq.php:304
|
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/tabs/faq.php:207
|
373 |
msgid "On the plugin settings page, an error message appears."
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: inc/php/tabs/faq.php:211
|
377 |
msgid "Here are a few of the most likely causes of the error message:"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: inc/php/tabs/faq.php:214
|
381 |
msgid "You make a syntax error in the code that you have entered."
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: inc/php/tabs/faq.php:215
|
385 |
msgid "Check the syntax of your code and try again."
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: inc/php/tabs/faq.php:218
|
389 |
msgid "You entered two functions with the same name."
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: inc/php/tabs/faq.php:219
|
393 |
msgid "Use a unique names for your functions."
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: inc/php/tabs/faq.php:222
|
397 |
msgid "You have entered function with a name that is already occupied by another function."
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: inc/php/tabs/faq.php:223
|
401 |
msgid "Use a unique name for your function."
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: inc/php/tabs/faq.php:226
|
405 |
msgid "You are trying to overwrite an existing function (of WordPress, theme, or plugin)."
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: inc/php/tabs/faq.php:227
|
409 |
msgid "Instead, use filters and hooks."
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: inc/php/tabs/faq.php:233
|
413 |
msgid "My custom PHP code is not working."
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: inc/php/tabs/faq.php:237
|
417 |
msgid "It happens that your custom PHP code that you insert on the plugin page does not work, even if an error message does not appear."
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: inc/php/tabs/faq.php:238
|
421 |
msgid "Here are a few of the most likely causes of the issue:"
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: inc/php/tabs/faq.php:240
|
425 |
msgid "You have a typo during the insertion of your custom PHP code."
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: inc/php/tabs/faq.php:241
|
429 |
msgid "Your custom PHP code has a syntax error."
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: inc/php/tabs/faq.php:242
|
433 |
msgid "Your custom PHP code is incorrect and may not work."
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: inc/php/tabs/faq.php:247
|
437 |
msgid "What to do if this plugin crashed the website?"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: inc/php/tabs/faq.php:250
|
441 |
msgid "This plugin has a built-in functions for checking the custom code for syntax errors, duplicate functions names, and etc."
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: inc/php/tabs/faq.php:251
|
445 |
msgid "But plugin is not perfect, so there are times when the entered custom code causes the error and white screen (WSOD)."
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: inc/php/tabs/faq.php:252
|
449 |
msgid "This is due to the fact that your custom code has a syntax error that this plugin could not detect."
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: inc/php/tabs/faq.php:253
|
453 |
msgid "When this happens with you, please perform the following steps."
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: inc/php/tabs/faq.php:256
|
457 |
msgid "Access your server via FTP or SFTP."
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: inc/php/tabs/faq.php:257
|
461 |
msgid "If you aren't sure how usually your web hosting provider will have instructions somewhere on their website."
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: inc/php/tabs/faq.php:260
|
465 |
msgid "Browse to the directory <code>wp-content/plugins/my-custom-functions/</code>."
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: inc/php/tabs/faq.php:261
|
469 |
msgid "Please contact your web hosting company to get help if you can't find this folder."
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: inc/php/tabs/faq.php:264
|
473 |
msgid "Rename the file <code>START</code> to <code>STOP</code>."
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: inc/php/tabs/faq.php:265
|
477 |
msgid "This will stop the execution of your custom code."
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: inc/php/tabs/faq.php:267
|
481 |
msgid "Log in to Admin Area of your WordPress website."
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: inc/php/tabs/faq.php:268
|
485 |
msgid "Go to the plugin settings page <code>Settings</code> ➡ <code>PHP Inserter</code>."
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: inc/php/tabs/faq.php:269
|
489 |
msgid "Edit/fix your custom PHP code that you entered before the crash."
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: inc/php/tabs/faq.php:270
|
493 |
msgid "Return to the plugin folder and rename the file <code>STOP</code> to <code>START</code> and you're done!"
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: inc/php/tabs/faq.php:272
|
497 |
msgid "This plugin stored you entered code in the database of your website."
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: inc/php/tabs/faq.php:273
|
501 |
msgid "For getting your code, you also can go to the <code>Database</code> ➡ Table <code>wp_options</code> ➡ Option <code>spacexchimp_p001_settings</code> ➡ <code>option_value</code>."
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: inc/php/tabs/faq.php:275
|
505 |
msgid "We are already working on a feature to automatically stop the execution of users custom PHP code for cases when this plugin could not detect the error, and this caused the inaccessibility of the website."
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: inc/php/tabs/faq.php:279
|
509 |
msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: inc/php/tabs/faq.php:280
|
513 |
msgid "Why is this?"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: inc/php/tabs/faq.php:283
|
517 |
msgid "This plugin can not cause such problem."
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: inc/php/tabs/faq.php:284
|
521 |
msgid "More likely, the problem are related to the settings of the website."
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: inc/php/tabs/faq.php:285
|
525 |
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."
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: inc/php/tabs/faq.php:286
|
529 |
msgid "Also please try to re-login to the website, this too can help."
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: inc/php/tabs/faq.php:290
|
533 |
msgid "Where to report bug if found?"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: inc/php/tabs/faq.php:293
|
537 |
msgid "Bug reports are very welcome!"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: inc/php/tabs/faq.php:296
|
541 |
#, php-format
|
542 |
msgid "Please visit our %s contact page %s and report."
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: inc/php/tabs/faq.php:301 inc/php/tabs/faq.php:330
|
546 |
msgid "Please do not forget to specify the name of the plugin."
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: inc/php/tabs/faq.php:302 inc/php/tabs/faq.php:331 inc/php/tabs/faq.php:347
|
550 |
msgid "Thank you!"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: inc/php/tabs/faq.php:305
|
554 |
msgid "Describe in more detail what exactly you are seeing."
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: inc/php/tabs/faq.php:306
|
558 |
msgid "Here are some examples:"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: inc/php/tabs/faq.php:309
|
562 |
msgid "Elements of the plugin settings page are not working."
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: inc/php/tabs/faq.php:310
|
566 |
msgid "An error message is displayed on the plugin settings page."
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: inc/php/tabs/faq.php:311
|
570 |
msgid "An error message is displayed on the front end of website."
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: inc/php/tabs/faq.php:312
|
574 |
msgid "An error message is displayed on the back end of website."
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: inc/php/tabs/faq.php:313
|
578 |
msgid "Custom code is inserted on the plugin settings page, but it is not applied on the website."
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: inc/php/tabs/faq.php:314
|
582 |
msgid "Website is crashed."
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: inc/php/tabs/faq.php:319
|
586 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: inc/php/tabs/faq.php:322
|
590 |
msgid "Any suggestions are very welcome!"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: inc/php/tabs/faq.php:325
|
594 |
#, php-format
|
595 |
msgid "Please visit our %s contact page %s."
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: inc/php/tabs/faq.php:335
|
599 |
msgid "I love this plugin!"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: inc/php/tabs/faq.php:336
|
603 |
msgid "Can I help somehow?"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: inc/php/tabs/faq.php:339
|
607 |
msgid "Yes, any contributions are very welcome!"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: inc/php/tabs/faq.php:342
|
611 |
#, php-format
|
612 |
msgid "Please visit our %s Support Us %s page."
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: inc/php/tabs/faq.php:351
|
616 |
msgid "Where can I find information about your licenses, payment process and refunds?"
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: inc/php/tabs/faq.php:356
|
620 |
#, php-format
|
621 |
msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: inc/php/tabs/faq.php:364
|
625 |
msgid "Where can I find information about your customer support?"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: inc/php/tabs/faq.php:369
|
629 |
#, php-format
|
630 |
msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: inc/php/tabs/faq.php:377
|
634 |
msgid "Where can I find information about your affiliate program?"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: inc/php/tabs/faq.php:382
|
638 |
#, php-format
|
639 |
msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: inc/php/tabs/faq.php:390
|
643 |
msgid "My question wasn't answered here."
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: inc/php/tabs/faq.php:395
|
647 |
#, php-format
|
648 |
msgid "You can ask your question on %s this page %s."
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: inc/php/tabs/faq.php:400
|
652 |
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."
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: inc/php/tabs/settings.php:30
|
656 |
+
msgid "Functions (PHP code)"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: inc/php/tabs/settings.php:32
|
660 |
+
msgid "NOT SAVED!"
|
661 |
+
msgstr ""
|
662 |
+
|
663 |
+
#: inc/php/tabs/settings.php:46
|
664 |
+
msgid "Enter your PHP functions here"
|
665 |
+
msgstr ""
|
666 |
+
|
667 |
+
#: inc/php/tabs/settings.php:51
|
668 |
+
msgid "Save changes"
|
669 |
msgstr ""
|
670 |
|
671 |
+
#: inc/php/tabs/support.php:13
|
672 |
+
msgid "Support Us"
|
673 |
+
msgstr ""
|
674 |
+
|
675 |
+
#: inc/php/tabs/support.php:28
|
676 |
#, php-format
|
677 |
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."
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: inc/php/tabs/support.php:37
|
681 |
msgid "Our intention is to create projects that will make this world a better place."
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: inc/php/tabs/support.php:38
|
685 |
msgid "Our motto is - «Follow your dreams and don’t give up»."
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: inc/php/tabs/support.php:39
|
689 |
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."
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: inc/php/tabs/support.php:42
|
693 |
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."
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: inc/php/tabs/support.php:43
|
697 |
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."
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: inc/php/tabs/support.php:46
|
701 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: inc/php/tabs/support.php:49
|
705 |
msgid "Thank you for your support!"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: inc/php/tabs/usage.php:13
|
709 |
+
msgid "Usage Instructions"
|
|
|
|
|
|
|
|
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: inc/php/tabs/usage.php:15
|
713 |
+
msgid "To add your custom PHP code to your website, simply follow these steps:"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: inc/php/tabs/usage.php:17
|
717 |
+
msgid "Go to the \"Main\" tab on this page."
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: inc/php/tabs/usage.php:19
|
721 |
+
msgid "Place your custom PHP code in the code editor field."
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: inc/php/tabs/usage.php:22 inc/php/tabs/usage.php:26
|
725 |
+
msgid "Note!"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: inc/php/tabs/usage.php:23
|
729 |
+
msgid "Do not wrap your custom PHP code in HTML tags, such as <code><?php</code>...<code>?></code>."
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: inc/php/tabs/usage.php:29
|
733 |
+
#, php-format
|
734 |
+
msgid "Before use, please read the %s instructions %s in our Blog on what to do in case of a website crash."
|
735 |
msgstr ""
|
736 |
|
737 |
+
#: inc/php/tabs/usage.php:36
|
738 |
+
msgid "Switch the toggle to the \"ON\" position."
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: inc/php/tabs/usage.php:37
|
742 |
+
msgid "Click the \"Save changes\" button."
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: inc/php/tabs/usage.php:43
|
746 |
+
#, php-format
|
747 |
+
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
748 |
msgstr ""
|
749 |
|
750 |
#. Plugin Name of the plugin/theme
|
my-custom-functions.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: Easily and safely add your custom PHP code 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: my-custom-functions
|
11 |
* Domain Path: /languages/
|
5 |
* Description: Easily and safely add your custom PHP code 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.35
|
9 |
* License: GPL3
|
10 |
* Text Domain: my-custom-functions
|
11 |
* Domain Path: /languages/
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: inject code, inject function, inject snippet, inject php, insert code, ins
|
|
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 |
|
@@ -252,6 +252,10 @@ Commercial licensing (e.g. for projects that can’t use an open-source license)
|
|
252 |
|
253 |
== Changelog ==
|
254 |
|
|
|
|
|
|
|
|
|
255 |
= 4.34 - 2019-02-24 =
|
256 |
* Added French translation. (Thanks to Hervé Bouzin)
|
257 |
|
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.35
|
8 |
License: GPL3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
252 |
|
253 |
== Changelog ==
|
254 |
|
255 |
+
= 4.35 - 2019-03-01 =
|
256 |
+
* Framework updated: The file "page.php" is divided into the following parts: "page.php", "usage.php", "faq.php", "support.php".
|
257 |
+
* Framework updated: The files "settings.php", "usage.php", "faq.php", "support.php" are moved to the subfolder "tabs".
|
258 |
+
|
259 |
= 4.34 - 2019-02-24 =
|
260 |
* Added French translation. (Thanks to Hervé Bouzin)
|
261 |
|