Version Description
- The readme "Tested up to:" value changed to 5.1 after full testing process and ensuring compatibility.
- Content of the "F.A.Q." section updated.
- Some texts are corrected or replaced with new ones.
- All translation files are updated.
- Code formatting improved.
- Added CSS class ".custom-list" for displaying a custom list, which is used on the plugin settings page.
- The human.txt file updated.
Download this release
Release Info
Developer | Arthur Gareginyan |
Plugin | ![]() |
Version | 4.28 |
Comparing to | |
See all releases |
Code changes from version 4.27 to 4.28
- all-meta-tags.php +1 -1
- humans.txt +4 -2
- inc/css/admin.css +27 -0
- inc/php/messages.php +12 -6
- inc/php/page.php +327 -100
- inc/php/settings.php +5 -5
- inc/php/sidebar.php +1 -1
- languages/Readme.txt +2 -8
- languages/all-meta-tags-de_DE.mo +0 -0
- languages/all-meta-tags-de_DE.po +375 -126
- languages/all-meta-tags-es_ES.mo +0 -0
- languages/all-meta-tags-es_ES.po +377 -131
- languages/all-meta-tags-es_MX.mo +0 -0
- languages/all-meta-tags-es_MX.po +357 -105
- languages/all-meta-tags-it_IT.mo +0 -0
- languages/all-meta-tags-it_IT.po +363 -108
- languages/all-meta-tags-nl_NL.mo +0 -0
- languages/all-meta-tags-nl_NL.po +378 -129
- languages/all-meta-tags-ru_RU.mo +0 -0
- languages/all-meta-tags-ru_RU.po +392 -152
- languages/all-meta-tags.pot +353 -95
- readme.txt +22 -11
all-meta-tags.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: Easily and safely add your custom meta tags to the WordPress website's head section. This is a must have tool for authors and website's owners.
|
6 |
* Author: Space X-Chimp
|
7 |
* Author URI: https://www.spacexchimp.com
|
8 |
-
* Version: 4.
|
9 |
* License: GPL3
|
10 |
* Text Domain: all-meta-tags
|
11 |
* Domain Path: /languages/
|
5 |
* Description: Easily and safely add your custom meta tags to the WordPress website's head section. This is a must have tool for authors and website's owners.
|
6 |
* Author: Space X-Chimp
|
7 |
* Author URI: https://www.spacexchimp.com
|
8 |
+
* Version: 4.28
|
9 |
* License: GPL3
|
10 |
* Text Domain: all-meta-tags
|
11 |
* Domain Path: /languages/
|
humans.txt
CHANGED
@@ -19,12 +19,14 @@
|
|
19 |
|
20 |
Name: Arthur Gareginyan
|
21 |
Title: Founder and CTO
|
22 |
-
Site: www.arthurgareginyan.com
|
23 |
Instagram: arthur_gareginyan
|
24 |
|
25 |
|
26 |
/* THANKS */
|
27 |
-
|
|
|
|
|
|
|
28 |
|
29 |
/* META */
|
30 |
Last update: 2018/04/14
|
19 |
|
20 |
Name: Arthur Gareginyan
|
21 |
Title: Founder and CTO
|
|
|
22 |
Instagram: arthur_gareginyan
|
23 |
|
24 |
|
25 |
/* THANKS */
|
26 |
+
Isabella M.
|
27 |
+
Bożena L.
|
28 |
+
Thomas T.
|
29 |
+
Monica K.
|
30 |
|
31 |
/* META */
|
32 |
Last update: 2018/04/14
|
inc/css/admin.css
CHANGED
@@ -441,6 +441,33 @@ p {
|
|
441 |
overflow: hidden;
|
442 |
}
|
443 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
444 |
/* Custom List Numbers
|
445 |
-------------------------------------------------------------- */
|
446 |
.custom-counter {
|
441 |
overflow: hidden;
|
442 |
}
|
443 |
|
444 |
+
/* Custom List
|
445 |
+
-------------------------------------------------------------- */
|
446 |
+
.custom-list {
|
447 |
+
margin-top: 15px;
|
448 |
+
margin-left: 50px;
|
449 |
+
margin-bottom: 30px;
|
450 |
+
list-style-type: none;
|
451 |
+
}
|
452 |
+
.custom-list li {
|
453 |
+
counter-increment: step-counter;
|
454 |
+
margin-bottom: 15px;
|
455 |
+
font-family: Verdana, Geneva, sans-serif;
|
456 |
+
}
|
457 |
+
.custom-list li::before {
|
458 |
+
content: '+';
|
459 |
+
margin-left: -30px;
|
460 |
+
margin-right: 8px;
|
461 |
+
padding: 4px 7px;
|
462 |
+
font-size: 90%;
|
463 |
+
font-weight: bold;
|
464 |
+
background-color: #00c8c8;
|
465 |
+
color: white;
|
466 |
+
-webkit-border-radius: 50%;
|
467 |
+
-moz-border-radius: 50%;
|
468 |
+
border-radius: 50%;
|
469 |
+
}
|
470 |
+
|
471 |
/* Custom List Numbers
|
472 |
-------------------------------------------------------------- */
|
473 |
.custom-counter {
|
inc/php/messages.php
CHANGED
@@ -23,12 +23,18 @@ function spacexchimp_p004_hello_message() {
|
|
23 |
<div class="modal-body">
|
24 |
<img src="<?php echo SPACEXCHIMP_P004_URL . 'inc/img/spacexchimp-logo.png'; ?>">
|
25 |
<button type="button" class="close" data-dismiss="modal">×</button>
|
26 |
-
<p
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
</div>
|
33 |
</div>
|
34 |
</div>
|
23 |
<div class="modal-body">
|
24 |
<img src="<?php echo SPACEXCHIMP_P004_URL . 'inc/img/spacexchimp-logo.png'; ?>">
|
25 |
<button type="button" class="close" data-dismiss="modal">×</button>
|
26 |
+
<p>
|
27 |
+
<?php _e( 'Hello!', SPACEXCHIMP_P004_TEXT ); ?>
|
28 |
+
<?php _e( 'We are the team of Space X-Chimp.', SPACEXCHIMP_P004_TEXT ); ?>
|
29 |
+
</p>
|
30 |
+
<p>
|
31 |
+
<?php
|
32 |
+
printf(
|
33 |
+
__( 'Thank you for installing our plugin! We hope you will love it! %s', SPACEXCHIMP_P004_TEXT ),
|
34 |
+
'😃'
|
35 |
+
);
|
36 |
+
?>
|
37 |
+
</p>
|
38 |
</div>
|
39 |
</div>
|
40 |
</div>
|
inc/php/page.php
CHANGED
@@ -26,11 +26,12 @@ function spacexchimp_p004_render_submenu_page() {
|
|
26 |
<h2 class="sxc-header">
|
27 |
<?php echo $name; ?>
|
28 |
<span>
|
29 |
-
<?php
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
|
|
34 |
?>
|
35 |
</span>
|
36 |
<p class="version"><?php _e( 'Version', $text ); ?> <?php echo $version; ?></p>
|
@@ -69,12 +70,14 @@ function spacexchimp_p004_render_submenu_page() {
|
|
69 |
<li><?php _e( 'Click the "Save changes" button.', $text ); ?></li>
|
70 |
<li><?php _e( 'Enjoy the improved SEO of your website.', $text ); ?> <?php _e( 'It\'s that simple!', $text ); ?></li>
|
71 |
</ol>
|
72 |
-
<p class="note"
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
|
|
|
|
78 |
</p>
|
79 |
</div>
|
80 |
</div>
|
@@ -93,7 +96,7 @@ function spacexchimp_p004_render_submenu_page() {
|
|
93 |
|
94 |
<div class="panel-group" id="collapse-group">
|
95 |
<?php
|
96 |
-
$loopvalue = '
|
97 |
for ( $i = 1; $i <= $loopvalue; $i++ ) {
|
98 |
echo '<div class="panel panel-default">
|
99 |
<div class="panel-heading">
|
@@ -110,34 +113,117 @@ function spacexchimp_p004_render_submenu_page() {
|
|
110 |
?>
|
111 |
</div>
|
112 |
|
113 |
-
|
114 |
-
<div class="answer-1"><?php _e( 'Sorry, this plugin is available for use only on self-hosted (WordPress.ORG) websites.', $text ); ?></div>
|
115 |
|
116 |
-
<div class="question
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
|
|
|
|
126 |
|
127 |
-
<div class="question
|
128 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
|
130 |
-
<div class="question
|
131 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
132 |
|
133 |
-
<div class="question
|
134 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
135 |
|
136 |
-
<div class="question
|
137 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
138 |
|
139 |
-
<div class="question
|
140 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
141 |
<pre><code><head>
|
142 |
...
|
143 |
<meta name="copyright" content="Copyright (c) 2013-2019 Space X-Chimp. All Rights Reserved.">
|
@@ -145,56 +231,184 @@ function spacexchimp_p004_render_submenu_page() {
|
|
145 |
<meta name="copyright" content="Copyright 2019 Space X-Chimp. All Rights Reserved.">
|
146 |
...
|
147 |
</head></code></pre>
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
<div class="
|
152 |
-
|
153 |
-
|
154 |
-
<div class="
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
<div class="answer
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
198 |
|
199 |
</div>
|
200 |
</div>
|
@@ -209,26 +423,39 @@ function spacexchimp_p004_render_submenu_page() {
|
|
209 |
<span class="image-with-button pull-left">
|
210 |
<img src="<?php echo SPACEXCHIMP_P004_URL . 'inc/img/thanks.png'; ?>" alt="Thanks!">
|
211 |
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="btn btn-default button-labeled">
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
</a>
|
217 |
</span>
|
218 |
-
<p
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
|
|
|
|
226 |
?>
|
227 |
</p>
|
228 |
-
<p
|
229 |
-
|
230 |
-
|
231 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
232 |
</div>
|
233 |
</div>
|
234 |
</div>
|
26 |
<h2 class="sxc-header">
|
27 |
<?php echo $name; ?>
|
28 |
<span>
|
29 |
+
<?php
|
30 |
+
printf(
|
31 |
+
__( 'by %s Space X-Chimp %s', $text ),
|
32 |
+
'<a href="https://www.spacexchimp.com" target="_blank">',
|
33 |
+
'</a>'
|
34 |
+
);
|
35 |
?>
|
36 |
</span>
|
37 |
<p class="version"><?php _e( 'Version', $text ); ?> <?php echo $version; ?></p>
|
70 |
<li><?php _e( 'Click the "Save changes" button.', $text ); ?></li>
|
71 |
<li><?php _e( 'Enjoy the improved SEO of your website.', $text ); ?> <?php _e( 'It\'s that simple!', $text ); ?></li>
|
72 |
</ol>
|
73 |
+
<p class="note">
|
74 |
+
<?php
|
75 |
+
printf(
|
76 |
+
__( 'If you want more options, then %s let us know %s and we will be happy to add them.', $text ),
|
77 |
+
'<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
|
78 |
+
'</a>'
|
79 |
+
);
|
80 |
+
?>
|
81 |
</p>
|
82 |
</div>
|
83 |
</div>
|
96 |
|
97 |
<div class="panel-group" id="collapse-group">
|
98 |
<?php
|
99 |
+
$loopvalue = '22';
|
100 |
for ( $i = 1; $i <= $loopvalue; $i++ ) {
|
101 |
echo '<div class="panel panel-default">
|
102 |
<div class="panel-heading">
|
113 |
?>
|
114 |
</div>
|
115 |
|
116 |
+
<?php $i = 1; ?>
|
|
|
117 |
|
118 |
+
<div class="question-<?php echo $i; ?>">
|
119 |
+
<?php _e( 'Where can I find a documentation for this plugin?', $text ); ?>
|
120 |
+
</div>
|
121 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
122 |
+
<?php
|
123 |
+
printf(
|
124 |
+
__( 'Please visit our %s Documentation site %s to view documentation.', $text ),
|
125 |
+
'<a href="https://docs.spacexchimp.com" target="_blank">',
|
126 |
+
'</a>'
|
127 |
+
);
|
128 |
+
?>
|
129 |
+
</div>
|
130 |
|
131 |
+
<div class="question-<?php echo $i; ?>">
|
132 |
+
<?php _e( 'Will this plugin work on my wordpress.COM website?', $text ); ?>
|
133 |
+
</div>
|
134 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
135 |
+
<?php _e( 'Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites.', $text ); ?>
|
136 |
+
<br><br>
|
137 |
+
<?php _e( 'Please note that there is a difference between wordpress.COM and wordpress.ORG.', $text ); ?>
|
138 |
+
<?php _e( 'The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software.', $text ); ?>
|
139 |
+
<?php
|
140 |
+
printf(
|
141 |
+
__( 'You can learn more about the difference here: %s .', $text ),
|
142 |
+
'<a href="https://en.support.wordpress.com/com-vs-org/" target="_blank">https://en.support.wordpress.com/com-vs-org/</a>'
|
143 |
+
);
|
144 |
+
?>
|
145 |
+
</div>
|
146 |
|
147 |
+
<div class="question-<?php echo $i; ?>">
|
148 |
+
<?php _e( 'Will this plugin work/compatible with the theme I use?', $text ); ?>
|
149 |
+
</div>
|
150 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
151 |
+
<?php _e( 'This plugin is compatible with most themes.', $text ); ?>
|
152 |
+
<?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 ); ?>
|
153 |
+
<?php _e( 'We constantly check this plugin for compatibility with third-party themes.', $text ); ?>
|
154 |
+
<?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 ); ?>
|
155 |
+
<br><br>
|
156 |
+
<?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 ); ?>
|
157 |
+
</div>
|
158 |
|
159 |
+
<div class="question-<?php echo $i; ?>">
|
160 |
+
<?php _e( 'Will this plugin work/compatible with other plugins that I use?', $text ); ?>
|
161 |
+
</div>
|
162 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
163 |
+
<?php _e( 'This plugin is compatible with most plugins.', $text ); ?>
|
164 |
+
<?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 ); ?>
|
165 |
+
<?php _e( 'We constantly check this plugin for compatibility with third-party plugins.', $text ); ?>
|
166 |
+
<?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 ); ?>
|
167 |
+
<br><br>
|
168 |
+
<?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 ); ?>
|
169 |
+
</div>
|
170 |
|
171 |
+
<div class="question-<?php echo $i; ?>">
|
172 |
+
<?php _e( 'Can I use this plugin on my language?', $text ); ?>
|
173 |
+
</div>
|
174 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
175 |
+
<?php _e( 'Yes.', $text ); ?>
|
176 |
+
<?php _e( 'This plugin is ready for translation and has already been translated into several languages.', $text ); ?>
|
177 |
+
<?php _e( 'But If your language is not available then you can make one.', $text ); ?>
|
178 |
+
<?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 ); ?>
|
179 |
+
<?php _e( 'Many of plugin users would be delighted if you share your translation with the community.', $text ); ?>
|
180 |
+
<?php _e( 'Thanks for your contribution!', $text ); ?>
|
181 |
+
<br><br>
|
182 |
+
<?php
|
183 |
+
printf(
|
184 |
+
__( 'If you want to help translate this plugin, please visit the %s.', $text ),
|
185 |
+
'<a href="https://translate.wordpress.org/projects/wp-plugins/' . $slug . '" target="_blank">translation page</a>'
|
186 |
+
);
|
187 |
+
?>
|
188 |
+
<?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 ); ?>
|
189 |
+
<?php
|
190 |
+
printf(
|
191 |
+
__( 'Just send the PO file to us ( %s ) and we will include this translation within the next plugin update.', $text ),
|
192 |
+
'<a href="mailto:support@spacexchimp.com?subject=New translation of the ' . $name . ' plugin">support@spacexchimp.com</a>'
|
193 |
+
);
|
194 |
+
?>
|
195 |
+
</div>
|
196 |
|
197 |
+
<div class="question-<?php echo $i; ?>">
|
198 |
+
<?php _e( 'How does it work?', $text ); ?>
|
199 |
+
</div>
|
200 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
201 |
+
<?php _e( 'On the "Settings" tab, fill in the required fields and click the "Save changes" button.', $text ); ?>
|
202 |
+
<?php _e( 'Enjoy the improved SEO of your website.', $text ); ?>
|
203 |
+
<?php _e( 'It\'s that simple!', $text ); ?>
|
204 |
+
</div>
|
205 |
+
|
206 |
+
<div class="question-<?php echo $i; ?>">
|
207 |
+
<?php _e( 'How much of description I can enter in the text field?', $text ); ?>
|
208 |
+
</div>
|
209 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
210 |
+
<?php _e( 'We don\'t limit the number of characters, but most search engines use a maximum of 160 chars for the home description.', $text ); ?>
|
211 |
+
</div>
|
212 |
+
|
213 |
+
<div class="question-<?php echo $i; ?>">
|
214 |
+
<?php _e( 'How much of keywords I can enter in the text field?', $text ); ?>
|
215 |
+
</div>
|
216 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
217 |
+
<?php _e( 'We don\'t limit the number of characters.', $text ); ?>
|
218 |
+
</div>
|
219 |
+
|
220 |
+
<div class="question-<?php echo $i; ?>">
|
221 |
+
<?php _e( 'What about compatibility with the plugin "All in One SEO Pack"?', $text ); ?>
|
222 |
+
</div>
|
223 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
224 |
+
<?php _e( 'As far as we know, the "All Meta Tags" plugin is compatible with the "All in One SEO Pack" plugin.', $text ); ?>
|
225 |
+
<?php _e( 'But to make sure that these plugins do not conflict with each other, you need to follow one simple rule: do not fill the same field in both plugins at once.', $text ); ?>
|
226 |
+
<?php _e( 'Otherwise both plugins fulfill their work and you will get a duplicate actions, for example:', $text ); ?>
|
227 |
<pre><code><head>
|
228 |
...
|
229 |
<meta name="copyright" content="Copyright (c) 2013-2019 Space X-Chimp. All Rights Reserved.">
|
231 |
<meta name="copyright" content="Copyright 2019 Space X-Chimp. All Rights Reserved.">
|
232 |
...
|
233 |
</head></code></pre>
|
234 |
+
<?php _e( 'If you find a conflict between the plugins, please let us know and we will definitely release an update of our plugin to fix the problem.', $text ); ?>
|
235 |
+
</div>
|
236 |
+
|
237 |
+
<div class="question-<?php echo $i; ?>">
|
238 |
+
<?php _e( 'What about compatibility with the plugin "Yoast SEO"?', $text ); ?>
|
239 |
+
</div>
|
240 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
241 |
+
<?php _e( 'As far as we know, the "All Meta Tags" plugin is compatible with the "Yoast SEO" plugin.', $text ); ?>
|
242 |
+
<?php _e( 'But to make sure that these plugins do not conflict with each other, you need to follow one simple rule: do not fill the same field in both plugins at once.', $text ); ?>
|
243 |
+
<?php _e( 'Otherwise both plugins fulfill their work and you will get a duplicate actions.', $text ); ?>
|
244 |
+
<br><br>
|
245 |
+
<?php _e( 'If you find a conflict between the plugins, please let us know and we will definitely release an update of our plugin to fix the problem.', $text ); ?>
|
246 |
+
</div>
|
247 |
+
|
248 |
+
<div class="question-<?php echo $i; ?>">
|
249 |
+
<?php _e( 'Does this plugin requires any modification of the theme?', $text ); ?>
|
250 |
+
</div>
|
251 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
252 |
+
<?php _e( 'Absolutely not.', $text ); ?>
|
253 |
+
<?php _e( 'This plugin is configurable entirely from the plugin settings page.', $text ); ?>
|
254 |
+
</div>
|
255 |
+
|
256 |
+
<div class="question-<?php echo $i; ?>">
|
257 |
+
<?php _e( 'Does this require any knowledge of HTML or CSS?', $text ); ?>
|
258 |
+
</div>
|
259 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
260 |
+
<?php _e( 'Absolutely not.', $text ); ?>
|
261 |
+
<?php _e( 'This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page.', $text ); ?>
|
262 |
+
</div>
|
263 |
+
|
264 |
+
<div class="question-<?php echo $i; ?> question-red">
|
265 |
+
<?php _e( 'It\'s not working.', $text ); ?>
|
266 |
+
<?php _e( 'What could be wrong?', $text ); ?>
|
267 |
+
</div>
|
268 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
269 |
+
<?php _e( 'As with every plugin, it\'s possible that things don\'t work.', $text ); ?>
|
270 |
+
<?php _e( 'It\'s impossible to tell what could be wrong exactly.', $text ); ?>
|
271 |
+
<?php _e( 'The most common reason for this is a web browser\'s cache.', $text ); ?>
|
272 |
+
<?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 ); ?>
|
273 |
+
<?php _e( 'This is called the browser\'s cache.', $text ); ?>
|
274 |
+
<?php _e( 'Clearing your browser\'s cache may solve the problem.', $text ); ?>
|
275 |
+
<br><br>
|
276 |
+
<?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 ); ?>
|
277 |
+
<?php _e( 'Please include as much information as possible, including a link to your website where the problem can be seen.', $text ); ?>
|
278 |
+
</div>
|
279 |
+
|
280 |
+
<div class="question-<?php echo $i; ?> question-red">
|
281 |
+
<?php _e( 'I can\'t get verify my website.', $text ); ?>
|
282 |
+
<?php _e( 'What am I doing wrong?', $text ); ?>
|
283 |
+
</div>
|
284 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
285 |
+
<?php _e( 'The tag code which Google (or Bing, Yandex, Pinterest, Alexa, Norton, WOT, SpecificFeeds) gives you is confusing as you only have to paste in the serial key number/letters (<code>1234567890</code>) and not the whole tag (<code><meta name="google-site-verification" content=“1234567890” /></code>).', $text ); ?>
|
286 |
+
<?php _e( 'So just paste that into the relevant field and you will see “Success” message appear within a few seconds.', $text ); ?>
|
287 |
+
</div>
|
288 |
+
|
289 |
+
<div class="question-<?php echo $i; ?> question-red">
|
290 |
+
<?php _e( 'The last WordPress update is preventing me from editing my website that is using this plugin.', $text ); ?>
|
291 |
+
<?php _e( 'Why is this?', $text ); ?>
|
292 |
+
</div>
|
293 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
294 |
+
<?php _e( 'This plugin can not cause such problem.', $text ); ?>
|
295 |
+
<?php _e( 'More likely, the problem are related to the settings of the website.', $text ); ?>
|
296 |
+
<?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 ); ?>
|
297 |
+
<?php _e( 'Also please try to re-login to the website, this too can help.', $text ); ?>
|
298 |
+
</div>
|
299 |
+
|
300 |
+
<div class="question-<?php echo $i; ?> question-red">
|
301 |
+
<?php _e( 'Where to report bug if found?', $text ); ?>
|
302 |
+
</div>
|
303 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
304 |
+
<?php _e( 'Bug reports are very welcome!', $text ); ?>
|
305 |
+
<?php
|
306 |
+
printf(
|
307 |
+
__( 'Please visit our %s contact page %s and report.', $text ),
|
308 |
+
'<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
|
309 |
+
'</a>'
|
310 |
+
);
|
311 |
+
?>
|
312 |
+
<?php _e( 'Please do not forget to specify the name of the plugin.', $text ); ?>
|
313 |
+
<?php _e( 'Thank you!', $text ); ?>
|
314 |
+
<br><br>
|
315 |
+
<?php _e( 'Please include as much information as possible, including a link to your website where the problem can be seen.', $text ); ?>
|
316 |
+
<?php _e( 'Describe in more detail what exactly you are seeing.', $text ); ?>
|
317 |
+
<?php _e( 'Here are some examples:', $text ); ?>
|
318 |
+
<br><br>
|
319 |
+
<ul class="custom-list">
|
320 |
+
<li><?php _e( 'Elements of the plugin settings page are not working.', $text ); ?></li>
|
321 |
+
<li><?php _e( 'An error message is displayed on the plugin settings page.', $text ); ?></li>
|
322 |
+
<li><?php _e( 'An error message is displayed on the front end of website.', $text ); ?></li>
|
323 |
+
<li><?php _e( 'An error message is displayed on the back end of website.', $text ); ?></li>
|
324 |
+
<li><?php _e( 'Website is crashed.', $text ); ?></li>
|
325 |
+
</ul>
|
326 |
+
</div>
|
327 |
+
|
328 |
+
<div class="question-<?php echo $i; ?>">
|
329 |
+
<?php _e( 'Where to share any ideas or suggestions to make the plugin better?', $text ); ?>
|
330 |
+
</div>
|
331 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
332 |
+
<?php _e( 'Any suggestions are very welcome!', $text ); ?>
|
333 |
+
<?php
|
334 |
+
printf(
|
335 |
+
__( 'Please visit our %s contact page %s.', $text ),
|
336 |
+
'<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
|
337 |
+
'</a>'
|
338 |
+
);
|
339 |
+
?>
|
340 |
+
<?php _e( 'Please do not forget to specify the name of the plugin.', $text ); ?>
|
341 |
+
<?php _e( 'Thank you!', $text ); ?>
|
342 |
+
</div>
|
343 |
+
|
344 |
+
<div class="question-<?php echo $i; ?>">
|
345 |
+
<?php _e( 'I love this plugin!', $text ); ?>
|
346 |
+
<?php _e( 'Can I help somehow?', $text ); ?>
|
347 |
+
</div>
|
348 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
349 |
+
<?php _e( 'Yes, any contributions are very welcome!', $text ); ?>
|
350 |
+
<?php
|
351 |
+
printf(
|
352 |
+
__( 'Please visit our %s Support Us %s page.', $text ),
|
353 |
+
'<a href="https://www.spacexchimp.com/donate.html" target="_blank">',
|
354 |
+
'</a>'
|
355 |
+
);
|
356 |
+
?>
|
357 |
+
<?php _e( 'Thank you!', $text ); ?>
|
358 |
+
</div>
|
359 |
+
|
360 |
+
<div class="question-<?php echo $i; ?>">
|
361 |
+
<?php _e( 'Where can I find information about your licenses, payment process and refunds?', $text ); ?>
|
362 |
+
</div>
|
363 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
364 |
+
<?php
|
365 |
+
printf(
|
366 |
+
__( 'Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page.', $text ),
|
367 |
+
'<a href="https://www.spacexchimp.com/faq.html" target="_blank">',
|
368 |
+
'</a>'
|
369 |
+
);
|
370 |
+
?>
|
371 |
+
</div>
|
372 |
+
|
373 |
+
<div class="question-<?php echo $i; ?>">
|
374 |
+
<?php _e( 'Where can I find information about your customer support?', $text ); ?>
|
375 |
+
</div>
|
376 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
377 |
+
<?php
|
378 |
+
printf(
|
379 |
+
__( 'Answers to common questions about our customer support can be found on our %s Common Questions %s page.', $text ),
|
380 |
+
'<a href="https://www.spacexchimp.com/faq.html" target="_blank">',
|
381 |
+
'</a>'
|
382 |
+
);
|
383 |
+
?>
|
384 |
+
</div>
|
385 |
+
|
386 |
+
<div class="question-<?php echo $i; ?>">
|
387 |
+
<?php _e( 'Where can I find information about your affiliate program?', $text ); ?>
|
388 |
+
</div>
|
389 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
390 |
+
<?php
|
391 |
+
printf(
|
392 |
+
__( 'Answers to common questions about our affiliate program can be found on our %s Common Questions %s page.', $text ),
|
393 |
+
'<a href="https://www.spacexchimp.com/faq.html" target="_blank">',
|
394 |
+
'</a>'
|
395 |
+
);
|
396 |
+
?>
|
397 |
+
</div>
|
398 |
+
|
399 |
+
<div class="question-<?php echo $i; ?>">
|
400 |
+
<?php _e( 'My question wasn\'t answered here.', $text ); ?>
|
401 |
+
</div>
|
402 |
+
<div class="answer-<?php echo $i; $i++ ?>">
|
403 |
+
<?php
|
404 |
+
printf(
|
405 |
+
__( 'You can ask your question on %s this page %s.', $text ),
|
406 |
+
'<a href="https://www.spacexchimp.com/contact.html" target="_blank">',
|
407 |
+
'</a>'
|
408 |
+
);
|
409 |
+
?>
|
410 |
+
<?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 ); ?>
|
411 |
+
</div>
|
412 |
|
413 |
</div>
|
414 |
</div>
|
423 |
<span class="image-with-button pull-left">
|
424 |
<img src="<?php echo SPACEXCHIMP_P004_URL . 'inc/img/thanks.png'; ?>" alt="Thanks!">
|
425 |
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="btn btn-default button-labeled">
|
426 |
+
<span class="btn-label">
|
427 |
+
<img src="<?php echo SPACEXCHIMP_P004_URL . 'inc/img/paypal.svg'; ?>" alt="PayPal">
|
428 |
+
</span>
|
429 |
+
<?php _e( 'Donate with PayPal', $text ); ?>
|
430 |
</a>
|
431 |
</span>
|
432 |
+
<p>
|
433 |
+
<?php _e( 'Hello!', $text ); ?>
|
434 |
+
<?php
|
435 |
+
printf(
|
436 |
+
__( '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 ),
|
437 |
+
'<a href="https://www.instagram.com/arthur_gareginyan/" target="_blank">',
|
438 |
+
'</a>',
|
439 |
+
'<a href="https://www.spacexchimp.com" target="_blank">',
|
440 |
+
'</a>'
|
441 |
+
);
|
442 |
?>
|
443 |
</p>
|
444 |
+
<p>
|
445 |
+
<?php _e( 'Our intention is to create projects that will make this world a better place.', $text ); ?>
|
446 |
+
<?php _e( 'Our motto is - «Follow your dreams and don’t give up».', $text ); ?>
|
447 |
+
<?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 ); ?>
|
448 |
+
</p>
|
449 |
+
<p>
|
450 |
+
<?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 ); ?>
|
451 |
+
<?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 ); ?>
|
452 |
+
</p>
|
453 |
+
<p>
|
454 |
+
<?php _e( 'If you appreciate our work, you can buy us a cup of coffee!', $text ); ?>
|
455 |
+
</p>
|
456 |
+
<p>
|
457 |
+
<?php _e( 'Thank you for your support!', $text ); ?>
|
458 |
+
</p>
|
459 |
</div>
|
460 |
</div>
|
461 |
</div>
|
inc/php/settings.php
CHANGED
@@ -220,11 +220,11 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
220 |
<div class="inside">
|
221 |
<p><?php _e( '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 ); ?></p>
|
222 |
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="btn btn-default button-labeled">
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
<p><?php _e( 'Thanks for your support!', $text ); ?></p>
|
229 |
</div>
|
230 |
</div>
|
220 |
<div class="inside">
|
221 |
<p><?php _e( '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 ); ?></p>
|
222 |
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8A88KC7TFF6CS" target="_blank" class="btn btn-default button-labeled">
|
223 |
+
<span class="btn-label">
|
224 |
+
<img src="<?php echo SPACEXCHIMP_P004_URL . 'inc/img/paypal.svg'; ?>" alt="PayPal">
|
225 |
+
</span>
|
226 |
+
<?php _e( 'Donate with PayPal', $text ); ?>
|
227 |
+
</a>
|
228 |
<p><?php _e( 'Thanks for your support!', $text ); ?></p>
|
229 |
</div>
|
230 |
</div>
|
inc/php/sidebar.php
CHANGED
@@ -24,7 +24,7 @@ defined( 'ABSPATH' ) or die( "Restricted access!" );
|
|
24 |
<div class="postbox about">
|
25 |
<h3 class="title"><?php _e( 'About', $text ); ?></h3>
|
26 |
<div class="inside">
|
27 |
-
<p><?php _e( 'This plugin
|
28 |
</div>
|
29 |
</div>
|
30 |
|
24 |
<div class="postbox about">
|
25 |
<h3 class="title"><?php _e( 'About', $text ); ?></h3>
|
26 |
<div class="inside">
|
27 |
+
<p><?php _e( 'This plugin gives you the ability to easily and safely add your custom meta tags to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor.', $text ); ?></p>
|
28 |
</div>
|
29 |
</div>
|
30 |
|
languages/Readme.txt
CHANGED
@@ -2,12 +2,6 @@
|
|
2 |
CONTRIBUTING YOUR TRANSLATION
|
3 |
|
4 |
|
5 |
-
This plugin is ready for translation and has already been translated into several languages.
|
6 |
|
7 |
-
If you want to help translate this plugin
|
8 |
-
|
9 |
-
You can also use the POT file, that is included and placed in the "languages" folder, in order to create a translation PO file. Just send the PO file to us (https://www.spacexchimp.com/contact.html) and we will include this translation within the next plugin update.
|
10 |
-
|
11 |
-
Maybe not all existed translations are up to date. You are welcome to contribute corrections!
|
12 |
-
|
13 |
-
Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!
|
2 |
CONTRIBUTING YOUR TRANSLATION
|
3 |
|
4 |
|
5 |
+
This plugin is ready for translation and has already been translated into several languages. But If your language is not available then you can make one. It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections. Many of plugin users would be delighted if you share your translation with the community. Thanks for your contribution!
|
6 |
|
7 |
+
If you want to help translate this plugin, please visit the [translation page](https://translate.wordpress.org/projects/wp-plugins/all-meta-tags). You can also use the POT file that is included and placed in the "languages" folder to create a translation PO file. Just send the PO file to us (https://www.spacexchimp.com/contact.html) and we will include this translation within the next plugin update.
|
|
|
|
|
|
|
|
|
|
|
|
languages/all-meta-tags-de_DE.mo
CHANGED
Binary file
|
languages/all-meta-tags-de_DE.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: All Meta Tags\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"
|
@@ -20,7 +20,7 @@ msgstr ""
|
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
|
23 |
-
#: inc/php/core.php:23 inc/php/page.php:
|
24 |
msgid "Settings"
|
25 |
msgstr "Einstellungen"
|
26 |
|
@@ -32,268 +32,526 @@ msgstr "Spende"
|
|
32 |
msgid "Meta Tags Inserter"
|
33 |
msgstr "Meta Tags Inserter"
|
34 |
|
35 |
-
#: inc/php/messages.php:
|
36 |
-
msgid "Hello
|
37 |
-
msgstr "Hallo!
|
38 |
|
39 |
#: inc/php/messages.php:28
|
|
|
|
|
|
|
|
|
40 |
#, php-format
|
41 |
msgid "Thank you for installing our plugin! We hope you will love it! %s"
|
42 |
msgstr "Danke, dass Sie mein Plugin installiert haben. Ich hoffe, sie werden es mögen. %s"
|
43 |
|
44 |
-
#: inc/php/messages.php:
|
45 |
msgid "You have installed an old version of this plugin."
|
46 |
msgstr "Sie haben eine veraltete Version dieses Plugin installiert."
|
47 |
|
48 |
-
#: inc/php/messages.php:
|
49 |
msgid "Please update the plugin to the latest version, and all will be fine."
|
50 |
msgstr "Bitte installieren Sie die aktuelle Version des Plugins und alles wir gut."
|
51 |
|
52 |
-
#: inc/php/page.php:
|
53 |
#, php-format
|
54 |
msgid "by %s Space X-Chimp %s"
|
55 |
msgstr "by %s Space X-Chimp %s"
|
56 |
|
57 |
-
#: inc/php/page.php:
|
58 |
msgid "Version"
|
59 |
msgstr "Version"
|
60 |
|
61 |
-
#: inc/php/page.php:
|
62 |
msgid "Usage"
|
63 |
msgstr "Verwendung"
|
64 |
|
65 |
-
#: inc/php/page.php:
|
66 |
msgid "F.A.Q."
|
67 |
msgstr "F.A.Q."
|
68 |
|
69 |
-
#: inc/php/page.php:
|
70 |
msgid "Support"
|
71 |
-
msgstr "
|
72 |
|
73 |
-
#: inc/php/page.php:
|
74 |
msgid "Store"
|
75 |
-
msgstr "
|
76 |
|
77 |
-
#: inc/php/page.php:
|
78 |
msgid "Usage Instructions"
|
79 |
msgstr "Anleitung"
|
80 |
|
81 |
-
#: inc/php/page.php:
|
82 |
msgid "To add the meta tags to your website, simply follow these steps:"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: inc/php/page.php:
|
86 |
msgid "Go to the \"Settings\" tab on this page."
|
87 |
msgstr "Gehen Sie zum Tab \"Einstellungen\"."
|
88 |
|
89 |
-
#: inc/php/page.php:
|
90 |
msgid "Fill in the required fields."
|
91 |
msgstr "Füllen Sie die benötigten Felder aus."
|
92 |
|
93 |
-
#: inc/php/page.php:
|
94 |
msgid "Click the \"Save changes\" button."
|
95 |
msgstr "Klicken Sie den \"Änderungen speichern\" button."
|
96 |
|
97 |
-
#: inc/php/page.php:
|
98 |
msgid "Enjoy the improved SEO of your website."
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: inc/php/page.php:
|
102 |
msgid "It's that simple!"
|
103 |
msgstr "Es ist ganz einfach!"
|
104 |
|
105 |
-
#: inc/php/page.php:
|
106 |
#, php-format
|
107 |
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
108 |
msgstr "Wenn Sie mehr Optionen benötigen, %s teilen Sie uns %s dies mit und wir werden sie gerne hinzufügen."
|
109 |
|
110 |
-
#: inc/php/page.php:
|
111 |
msgid "Frequently Asked Questions"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: inc/php/page.php:
|
115 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
116 |
msgstr "Wenn Sie Fragen haben, lesen Sie bitte die F.A.Q.s und schauen Sie nach, ob Ihre Antwort dabei ist."
|
117 |
|
118 |
-
#: inc/php/page.php:
|
119 |
-
msgid "
|
120 |
-
msgstr "
|
121 |
|
122 |
-
#: inc/php/page.php:
|
123 |
-
|
124 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
125 |
|
126 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
127 |
msgid "Can I use this plugin on my language?"
|
128 |
msgstr "Kann ich das Plugin in meiner Sprache verwenden?"
|
129 |
|
130 |
-
#: inc/php/page.php:
|
131 |
-
msgid "Yes.
|
132 |
-
msgstr "Ja
|
|
|
|
|
|
|
|
|
133 |
|
134 |
-
#: inc/php/page.php:
|
135 |
-
|
136 |
-
msgid "If you want to help translate this plugin then please visit the %s. You can also use the POT file, that is included and placed in the \"languages\" folder, in order to create a translation PO file. Just send the PO file to us at the %s and we will include this translation within the next plugin update."
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: inc/php/page.php:
|
140 |
-
msgid "
|
141 |
msgstr "Vielleicht sind nicht alle vorhandenen Übersetzungen aktuell. Gerne können Sie an den Korrekturen mitwirken."
|
142 |
|
143 |
-
#: inc/php/page.php:
|
144 |
-
msgid "Many of plugin users would be delighted if you share your translation with the community.
|
145 |
-
msgstr "Viele Benutzer des Plugins freuen sich darüber, wenn Sie Ihre Übersetzung mit der Öffentlichkeit teilen.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
146 |
|
147 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
148 |
msgid "How does it work?"
|
149 |
msgstr "Wie arbeitet das Plugin?"
|
150 |
|
151 |
-
#: inc/php/page.php:
|
152 |
-
msgid "On the \"Settings\" tab, fill in the required fields and click the \"Save changes\" button.
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: inc/php/page.php:
|
156 |
msgid "How much of description I can enter in the text field?"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: inc/php/page.php:
|
160 |
msgid "We don't limit the number of characters, but most search engines use a maximum of 160 chars for the home description."
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: inc/php/page.php:
|
164 |
msgid "How much of keywords I can enter in the text field?"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: inc/php/page.php:
|
168 |
msgid "We don't limit the number of characters."
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: inc/php/page.php:
|
172 |
-
msgid "
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: inc/php/page.php:
|
176 |
-
msgid "
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: inc/php/page.php:
|
180 |
-
msgid "
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: inc/php/page.php:
|
184 |
-
msgid "
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: inc/php/page.php:
|
188 |
-
msgid "If you find a conflict between the plugins, please let us know and we will definitely release an update of
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: inc/php/page.php:
|
192 |
msgid "What about compatibility with the plugin \"Yoast SEO\"?"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: inc/php/page.php:
|
196 |
-
msgid "As far as we know, the \"All Meta Tags\" plugin is compatible with the \"Yoast SEO\" plugin.
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
200 |
msgid "Does this plugin requires any modification of the theme?"
|
201 |
msgstr "Benötigt das Plugin Veränderungen am Theme?"
|
202 |
|
203 |
-
#: inc/php/page.php:
|
204 |
-
msgid "Absolutely not.
|
205 |
-
msgstr "Absolut nicht.
|
|
|
|
|
|
|
|
|
206 |
|
207 |
-
#: inc/php/page.php:
|
208 |
msgid "Does this require any knowledge of HTML or CSS?"
|
209 |
-
msgstr "Brauche ich HTML oder
|
210 |
|
211 |
-
#: inc/php/page.php:
|
212 |
-
msgid "
|
213 |
-
msgstr "
|
214 |
|
215 |
-
#: inc/php/page.php:
|
216 |
-
msgid "It's not working.
|
217 |
-
msgstr "Es funktioniert nicht.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
218 |
|
219 |
-
#: inc/php/page.php:
|
220 |
-
msgid "
|
221 |
-
msgstr "
|
222 |
|
223 |
-
#: inc/php/page.php:
|
224 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: inc/php/page.php:
|
228 |
-
msgid "
|
229 |
-
msgstr "
|
230 |
|
231 |
-
#: inc/php/page.php:
|
232 |
-
msgid "
|
233 |
-
msgstr "
|
|
|
|
|
|
|
|
|
234 |
|
235 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
236 |
msgid "Where to report bug if found?"
|
237 |
msgstr "Wo kann ich eine Fehler melden?"
|
238 |
|
239 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
240 |
#, php-format
|
241 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
245 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
246 |
msgstr "Wo können Sie Ideen oder Vorschläge loswerden, um das Plugin besser zu machen?"
|
247 |
|
248 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
249 |
#, php-format
|
250 |
-
msgid "
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: inc/php/page.php:
|
254 |
-
msgid "I
|
255 |
-
msgstr "
|
256 |
|
257 |
-
#: inc/php/page.php:
|
258 |
#, php-format
|
259 |
-
msgid "
|
260 |
-
msgstr "
|
261 |
|
262 |
-
#: inc/php/page.php:
|
263 |
msgid "My question wasn't answered here."
|
264 |
msgstr "Meine Fragen wurden nicht beantwortet."
|
265 |
|
266 |
-
#: inc/php/page.php:
|
267 |
#, php-format
|
268 |
-
msgid "You can ask your question on %s this page %s.
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
272 |
msgid "Support Us"
|
273 |
msgstr "Unterstütze uns"
|
274 |
|
275 |
-
#: inc/php/page.php:
|
276 |
msgid "Donate with PayPal"
|
277 |
msgstr "Spende mit PayPal"
|
278 |
|
279 |
-
#: inc/php/page.php:
|
280 |
#, php-format
|
281 |
-
msgid "
|
282 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
283 |
|
284 |
-
#: inc/php/page.php:
|
285 |
-
msgid "Our
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: inc/php/page.php:
|
289 |
-
msgid "We
|
290 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
291 |
|
292 |
-
#: inc/php/page.php:
|
293 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
294 |
-
msgstr "Wenn Ihnen
|
295 |
|
296 |
-
#: inc/php/page.php:
|
297 |
msgid "Thank you for your support!"
|
298 |
msgstr "Danke für Ihre Unterstützung!"
|
299 |
|
@@ -467,14 +725,14 @@ msgstr "Danke für Ihre Unterstützung!"
|
|
467 |
|
468 |
#: inc/php/sidebar.php:16
|
469 |
msgid "We are «Space X-Chimp»"
|
470 |
-
msgstr ""
|
471 |
|
472 |
#: inc/php/sidebar.php:25
|
473 |
msgid "About"
|
474 |
msgstr "Über"
|
475 |
|
476 |
#: inc/php/sidebar.php:27
|
477 |
-
msgid "This plugin
|
478 |
msgstr ""
|
479 |
|
480 |
#: inc/php/sidebar.php:32
|
@@ -504,12 +762,3 @@ msgstr "Space X-Chimp"
|
|
504 |
#. Author URI of the plugin/theme
|
505 |
msgid "https://www.spacexchimp.com"
|
506 |
msgstr "https://www.spacexchimp.com"
|
507 |
-
|
508 |
-
#~ msgid "Note!"
|
509 |
-
#~ msgstr "Achtung!"
|
510 |
-
|
511 |
-
#~ msgid "Select the desired settings."
|
512 |
-
#~ msgstr "Wählen Sie die gewünschten Einstellungen aus."
|
513 |
-
|
514 |
-
#~ msgid "Hello! My name is %s Arthur %s and I'm the founder of %s Space X-Chimp %s."
|
515 |
-
#~ msgstr "Hallo! Meine name ist %s Arthur %s und ich bin der Gründer von %s Space X-Chimp %s."
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: All Meta Tags\n"
|
6 |
+
"POT-Creation-Date: 2019-02-20 23:15+0300\n"
|
7 |
+
"PO-Revision-Date: 2019-02-20 23:15+0300\n"
|
8 |
"Last-Translator: Arthur Gareginyan\n"
|
9 |
"Language-Team: German\n"
|
10 |
"Language: de_DE\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
|
23 |
+
#: inc/php/core.php:23 inc/php/page.php:44
|
24 |
msgid "Settings"
|
25 |
msgstr "Einstellungen"
|
26 |
|
32 |
msgid "Meta Tags Inserter"
|
33 |
msgstr "Meta Tags Inserter"
|
34 |
|
35 |
+
#: inc/php/messages.php:27 inc/php/page.php:433
|
36 |
+
msgid "Hello!"
|
37 |
+
msgstr "Hallo!"
|
38 |
|
39 |
#: inc/php/messages.php:28
|
40 |
+
msgid "We are the team of Space X-Chimp."
|
41 |
+
msgstr "Wir sind das Team von Space X-Chimp."
|
42 |
+
|
43 |
+
#: inc/php/messages.php:33
|
44 |
#, php-format
|
45 |
msgid "Thank you for installing our plugin! We hope you will love it! %s"
|
46 |
msgstr "Danke, dass Sie mein Plugin installiert haben. Ich hoffe, sie werden es mögen. %s"
|
47 |
|
48 |
+
#: inc/php/messages.php:74
|
49 |
msgid "You have installed an old version of this plugin."
|
50 |
msgstr "Sie haben eine veraltete Version dieses Plugin installiert."
|
51 |
|
52 |
+
#: inc/php/messages.php:75
|
53 |
msgid "Please update the plugin to the latest version, and all will be fine."
|
54 |
msgstr "Bitte installieren Sie die aktuelle Version des Plugins und alles wir gut."
|
55 |
|
56 |
+
#: inc/php/page.php:31
|
57 |
#, php-format
|
58 |
msgid "by %s Space X-Chimp %s"
|
59 |
msgstr "by %s Space X-Chimp %s"
|
60 |
|
61 |
+
#: inc/php/page.php:37
|
62 |
msgid "Version"
|
63 |
msgstr "Version"
|
64 |
|
65 |
+
#: inc/php/page.php:45
|
66 |
msgid "Usage"
|
67 |
msgstr "Verwendung"
|
68 |
|
69 |
+
#: inc/php/page.php:46
|
70 |
msgid "F.A.Q."
|
71 |
msgstr "F.A.Q."
|
72 |
|
73 |
+
#: inc/php/page.php:47 inc/php/settings.php:219 inc/php/sidebar.php:39
|
74 |
msgid "Support"
|
75 |
+
msgstr "Unterstützung"
|
76 |
|
77 |
+
#: inc/php/page.php:48
|
78 |
msgid "Store"
|
79 |
+
msgstr "Geschäft"
|
80 |
|
81 |
+
#: inc/php/page.php:64
|
82 |
msgid "Usage Instructions"
|
83 |
msgstr "Anleitung"
|
84 |
|
85 |
+
#: inc/php/page.php:66
|
86 |
msgid "To add the meta tags to your website, simply follow these steps:"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: inc/php/page.php:68
|
90 |
msgid "Go to the \"Settings\" tab on this page."
|
91 |
msgstr "Gehen Sie zum Tab \"Einstellungen\"."
|
92 |
|
93 |
+
#: inc/php/page.php:69
|
94 |
msgid "Fill in the required fields."
|
95 |
msgstr "Füllen Sie die benötigten Felder aus."
|
96 |
|
97 |
+
#: inc/php/page.php:70
|
98 |
msgid "Click the \"Save changes\" button."
|
99 |
msgstr "Klicken Sie den \"Änderungen speichern\" button."
|
100 |
|
101 |
+
#: inc/php/page.php:71 inc/php/page.php:202
|
102 |
msgid "Enjoy the improved SEO of your website."
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: inc/php/page.php:71 inc/php/page.php:203
|
106 |
msgid "It's that simple!"
|
107 |
msgstr "Es ist ganz einfach!"
|
108 |
|
109 |
+
#: inc/php/page.php:76
|
110 |
#, php-format
|
111 |
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
112 |
msgstr "Wenn Sie mehr Optionen benötigen, %s teilen Sie uns %s dies mit und wir werden sie gerne hinzufügen."
|
113 |
|
114 |
+
#: inc/php/page.php:90
|
115 |
msgid "Frequently Asked Questions"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: inc/php/page.php:94
|
119 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
120 |
msgstr "Wenn Sie Fragen haben, lesen Sie bitte die F.A.Q.s und schauen Sie nach, ob Ihre Antwort dabei ist."
|
121 |
|
122 |
+
#: inc/php/page.php:119
|
123 |
+
msgid "Where can I find a documentation for this plugin?"
|
124 |
+
msgstr ""
|
125 |
|
126 |
+
#: inc/php/page.php:124
|
127 |
+
#, php-format
|
128 |
+
msgid "Please visit our %s Documentation site %s to view documentation."
|
129 |
+
msgstr ""
|
130 |
+
|
131 |
+
#: inc/php/page.php:132
|
132 |
+
msgid "Will this plugin work on my wordpress.COM website?"
|
133 |
+
msgstr "Funktioniert dieses Plugin auf meiner wordpress.COM Webseite?"
|
134 |
+
|
135 |
+
#: inc/php/page.php:135
|
136 |
+
msgid "Sorry, this plugin is available for use only on self-hosted (wordpress.ORG) websites."
|
137 |
+
msgstr "Leider nicht. Dieses Plugin ist nur verfügbar auf self-hosted (wordpress.ORG) Webseiten."
|
138 |
+
|
139 |
+
#: inc/php/page.php:137
|
140 |
+
msgid "Please note that there is a difference between wordpress.COM and wordpress.ORG."
|
141 |
+
msgstr ""
|
142 |
+
|
143 |
+
#: inc/php/page.php:138
|
144 |
+
msgid "The wordpress.COM is a blog hosting service that offers a limited version of the popular self-hosted WordPress software."
|
145 |
+
msgstr ""
|
146 |
+
|
147 |
+
#: inc/php/page.php:141
|
148 |
+
#, php-format
|
149 |
+
msgid "You can learn more about the difference here: %s ."
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: inc/php/page.php:148
|
153 |
+
msgid "Will this plugin work/compatible with the theme I use?"
|
154 |
+
msgstr ""
|
155 |
+
|
156 |
+
#: inc/php/page.php:151
|
157 |
+
msgid "This plugin is compatible with most themes."
|
158 |
+
msgstr ""
|
159 |
+
|
160 |
+
#: inc/php/page.php:152
|
161 |
+
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."
|
162 |
+
msgstr ""
|
163 |
+
|
164 |
+
#: inc/php/page.php:153
|
165 |
+
msgid "We constantly check this plugin for compatibility with third-party themes."
|
166 |
+
msgstr ""
|
167 |
+
|
168 |
+
#: inc/php/page.php:154
|
169 |
+
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."
|
170 |
+
msgstr ""
|
171 |
|
172 |
+
#: inc/php/page.php:156
|
173 |
+
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."
|
174 |
+
msgstr ""
|
175 |
+
|
176 |
+
#: inc/php/page.php:160
|
177 |
+
msgid "Will this plugin work/compatible with other plugins that I use?"
|
178 |
+
msgstr ""
|
179 |
+
|
180 |
+
#: inc/php/page.php:163
|
181 |
+
msgid "This plugin is compatible with most plugins."
|
182 |
+
msgstr ""
|
183 |
+
|
184 |
+
#: inc/php/page.php:164
|
185 |
+
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."
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: inc/php/page.php:165
|
189 |
+
msgid "We constantly check this plugin for compatibility with third-party plugins."
|
190 |
+
msgstr ""
|
191 |
+
|
192 |
+
#: inc/php/page.php:166
|
193 |
+
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."
|
194 |
+
msgstr ""
|
195 |
+
|
196 |
+
#: inc/php/page.php:168
|
197 |
+
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."
|
198 |
+
msgstr ""
|
199 |
+
|
200 |
+
#: inc/php/page.php:172
|
201 |
msgid "Can I use this plugin on my language?"
|
202 |
msgstr "Kann ich das Plugin in meiner Sprache verwenden?"
|
203 |
|
204 |
+
#: inc/php/page.php:175
|
205 |
+
msgid "Yes."
|
206 |
+
msgstr "Ja."
|
207 |
+
|
208 |
+
#: inc/php/page.php:176
|
209 |
+
msgid "This plugin is ready for translation and has already been translated into several languages."
|
210 |
+
msgstr "Dieses Plugin übersetzbar und bereits in mehreren Sprachen verfügbar."
|
211 |
|
212 |
+
#: inc/php/page.php:177
|
213 |
+
msgid "But If your language is not available then you can make one."
|
|
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: inc/php/page.php:178
|
217 |
+
msgid "It is also possible that not all existing translations are up-to-date or correct, so you are welcome to make corrections."
|
218 |
msgstr "Vielleicht sind nicht alle vorhandenen Übersetzungen aktuell. Gerne können Sie an den Korrekturen mitwirken."
|
219 |
|
220 |
+
#: inc/php/page.php:179
|
221 |
+
msgid "Many of plugin users would be delighted if you share your translation with the community."
|
222 |
+
msgstr "Viele Benutzer des Plugins freuen sich darüber, wenn Sie Ihre Übersetzung mit der Öffentlichkeit teilen."
|
223 |
+
|
224 |
+
#: inc/php/page.php:180
|
225 |
+
msgid "Thanks for your contribution!"
|
226 |
+
msgstr "Danke für Ihre Mithilfe!"
|
227 |
+
|
228 |
+
#: inc/php/page.php:184
|
229 |
+
#, php-format
|
230 |
+
msgid "If you want to help translate this plugin, please visit the %s."
|
231 |
+
msgstr "Wenn Sie bei der Übersetzung dieses Plugins helfen wollen, bitte besuchen Sie %s."
|
232 |
+
|
233 |
+
#: inc/php/page.php:188
|
234 |
+
msgid "You can also use the POT file that is included and placed in the \"languages\" folder to create a translation PO file."
|
235 |
+
msgstr "Sie können auch die POT Datei, die Sie im “languages” Ordner finden, verwenden, um eine PO Übersetzungsdatei zu erstellen."
|
236 |
|
237 |
+
#: inc/php/page.php:191
|
238 |
+
#, php-format
|
239 |
+
msgid "Just send the PO file to us ( %s ) and we will include this translation within the next plugin update."
|
240 |
+
msgstr "Senden Sie die übersetzte PO Datei an uns ( %s ) und wir werde die Übersetzung beim nächsten Plugin Update hinzufügen."
|
241 |
+
|
242 |
+
#: inc/php/page.php:198
|
243 |
msgid "How does it work?"
|
244 |
msgstr "Wie arbeitet das Plugin?"
|
245 |
|
246 |
+
#: inc/php/page.php:201
|
247 |
+
msgid "On the \"Settings\" tab, fill in the required fields and click the \"Save changes\" button."
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: inc/php/page.php:207
|
251 |
msgid "How much of description I can enter in the text field?"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: inc/php/page.php:210
|
255 |
msgid "We don't limit the number of characters, but most search engines use a maximum of 160 chars for the home description."
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: inc/php/page.php:214
|
259 |
msgid "How much of keywords I can enter in the text field?"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: inc/php/page.php:217
|
263 |
msgid "We don't limit the number of characters."
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: inc/php/page.php:221
|
267 |
+
msgid "What about compatibility with the plugin \"All in One SEO Pack\"?"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: inc/php/page.php:224
|
271 |
+
msgid "As far as we know, the \"All Meta Tags\" plugin is compatible with the \"All in One SEO Pack\" plugin."
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: inc/php/page.php:225 inc/php/page.php:242
|
275 |
+
msgid "But to make sure that these plugins do not conflict with each other, you need to follow one simple rule: do not fill the same field in both plugins at once."
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: inc/php/page.php:226
|
279 |
+
msgid "Otherwise both plugins fulfill their work and you will get a duplicate actions, for example:"
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: inc/php/page.php:234 inc/php/page.php:245
|
283 |
+
msgid "If you find a conflict between the plugins, please let us know and we will definitely release an update of our plugin to fix the problem."
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: inc/php/page.php:238
|
287 |
msgid "What about compatibility with the plugin \"Yoast SEO\"?"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: inc/php/page.php:241
|
291 |
+
msgid "As far as we know, the \"All Meta Tags\" plugin is compatible with the \"Yoast SEO\" plugin."
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: inc/php/page.php:243
|
295 |
+
msgid "Otherwise both plugins fulfill their work and you will get a duplicate actions."
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: inc/php/page.php:249
|
299 |
msgid "Does this plugin requires any modification of the theme?"
|
300 |
msgstr "Benötigt das Plugin Veränderungen am Theme?"
|
301 |
|
302 |
+
#: inc/php/page.php:252 inc/php/page.php:260
|
303 |
+
msgid "Absolutely not."
|
304 |
+
msgstr "Absolut nicht."
|
305 |
+
|
306 |
+
#: inc/php/page.php:253
|
307 |
+
msgid "This plugin is configurable entirely from the plugin settings page."
|
308 |
+
msgstr "Alle Konfigurationen des Plugins finden Sie auf Einstellungsseite des Plugins."
|
309 |
|
310 |
+
#: inc/php/page.php:257
|
311 |
msgid "Does this require any knowledge of HTML or CSS?"
|
312 |
+
msgstr "Brauche ich HTML oder CSS Kenntnisse?"
|
313 |
|
314 |
+
#: inc/php/page.php:261
|
315 |
+
msgid "This plugin can be configured with no knowledge of HTML or CSS, using an easy-to-use plugin settings page."
|
316 |
+
msgstr "Dieses Plugin kann ohne Kenntnisse von HTML oder CSS konfiguriert werden, using an easy-to-use plugin settings page."
|
317 |
|
318 |
+
#: inc/php/page.php:265
|
319 |
+
msgid "It's not working."
|
320 |
+
msgstr "Es funktioniert nicht."
|
321 |
+
|
322 |
+
#: inc/php/page.php:266
|
323 |
+
msgid "What could be wrong?"
|
324 |
+
msgstr "Was könnte falsch sein?"
|
325 |
+
|
326 |
+
#: inc/php/page.php:269
|
327 |
+
msgid "As with every plugin, it's possible that things don't work."
|
328 |
+
msgstr "Wie bei jedem Plugin ist es möglich, dass nicht alles funktioniert."
|
329 |
+
|
330 |
+
#: inc/php/page.php:270
|
331 |
+
msgid "It's impossible to tell what could be wrong exactly."
|
332 |
+
msgstr "Es ist unmöglich genau festzustellen was falsch ist."
|
333 |
+
|
334 |
+
#: inc/php/page.php:271
|
335 |
+
msgid "The most common reason for this is a web browser's cache."
|
336 |
+
msgstr "Der häufigste Grund dafür ist der Cache Ihres Webbrowsers."
|
337 |
+
|
338 |
+
#: inc/php/page.php:272
|
339 |
+
msgid "Every web browser stores a cache of the websites you visit (pages, images, and etc.) to reduce bandwidth usage and server load."
|
340 |
+
msgstr "Jeder Webbrowser speichert den Cache der besuchten Webseite (Seiten, Bilder, usw.) um die Bandbreite zu reduzieren."
|
341 |
|
342 |
+
#: inc/php/page.php:273
|
343 |
+
msgid "This is called the browser's cache."
|
344 |
+
msgstr "Das nennt man den Browser Cache."
|
345 |
|
346 |
+
#: inc/php/page.php:274
|
347 |
+
msgid "Clearing your browser's cache may solve the problem."
|
348 |
+
msgstr "Wenn Sie den Cache Ihres Browsers löschen, könnte das Problem behoben sein."
|
349 |
+
|
350 |
+
#: inc/php/page.php:276
|
351 |
+
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."
|
352 |
+
msgstr "Wenn Sie jedoch eine Support Anfrage im Plugins Support Forum von wordpress.ORG stellen, helfe wir Ihnen gerne."
|
353 |
+
|
354 |
+
#: inc/php/page.php:277 inc/php/page.php:315
|
355 |
+
msgid "Please include as much information as possible, including a link to your website where the problem can be seen."
|
356 |
+
msgstr "Bitte fügen Sie so viele Informationen wie möglich und einen Link zu der Webseite hinzu, wo das Problem auftritt."
|
357 |
+
|
358 |
+
#: inc/php/page.php:281
|
359 |
+
msgid "I can't get verify my website."
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: inc/php/page.php:282
|
363 |
+
msgid "What am I doing wrong?"
|
364 |
+
msgstr ""
|
365 |
|
366 |
+
#: inc/php/page.php:285
|
367 |
+
msgid "The tag code which Google (or Bing, Yandex, Pinterest, Alexa, Norton, WOT, SpecificFeeds) gives you is confusing as you only have to paste in the serial key number/letters (<code>1234567890</code>) and not the whole tag (<code><meta name=\"google-site-verification\" content=“1234567890” /></code>)."
|
368 |
+
msgstr ""
|
369 |
+
|
370 |
+
#: inc/php/page.php:286
|
371 |
+
msgid "So just paste that into the relevant field and you will see “Success” message appear within a few seconds."
|
372 |
+
msgstr ""
|
373 |
|
374 |
+
#: inc/php/page.php:290
|
375 |
+
msgid "The last WordPress update is preventing me from editing my website that is using this plugin."
|
376 |
+
msgstr "Das letzte WordPress-Update hindert mich daran, meine Webseite, die dieses Plugin verwendet, zu bearbeiten."
|
377 |
+
|
378 |
+
#: inc/php/page.php:291
|
379 |
+
msgid "Why is this?"
|
380 |
+
msgstr "Warum ist das so?"
|
381 |
+
|
382 |
+
#: inc/php/page.php:294
|
383 |
+
msgid "This plugin can not cause such problem."
|
384 |
+
msgstr "Dieses Plugin kann ein solches Problem nicht verursachen."
|
385 |
+
|
386 |
+
#: inc/php/page.php:295
|
387 |
+
msgid "More likely, the problem are related to the settings of the website."
|
388 |
+
msgstr "Wahrscheinlich hängt das Problem mit den Einstellungen der Webseite zusammen."
|
389 |
+
|
390 |
+
#: inc/php/page.php:296
|
391 |
+
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."
|
392 |
+
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."
|
393 |
+
|
394 |
+
#: inc/php/page.php:297
|
395 |
+
msgid "Also please try to re-login to the website, this too can help."
|
396 |
+
msgstr "Versuchen Sie auch, sich erneut auf der Webseite anzumelden, auch dies kann helfen."
|
397 |
+
|
398 |
+
#: inc/php/page.php:301
|
399 |
msgid "Where to report bug if found?"
|
400 |
msgstr "Wo kann ich eine Fehler melden?"
|
401 |
|
402 |
+
#: inc/php/page.php:304
|
403 |
+
msgid "Bug reports are very welcome!"
|
404 |
+
msgstr ""
|
405 |
+
|
406 |
+
#: inc/php/page.php:307
|
407 |
#, php-format
|
408 |
+
msgid "Please visit our %s contact page %s and report."
|
409 |
+
msgstr "Bitte besuchen Sie unsere %s Kontaktseite %s und berichten Sie."
|
410 |
+
|
411 |
+
#: inc/php/page.php:312 inc/php/page.php:340
|
412 |
+
msgid "Please do not forget to specify the name of the plugin."
|
413 |
+
msgstr "Bitte vergiss nicht den Namen des Plugins anzugeben."
|
414 |
+
|
415 |
+
#: inc/php/page.php:313 inc/php/page.php:341 inc/php/page.php:357
|
416 |
+
msgid "Thank you!"
|
417 |
+
msgstr "Danke!"
|
418 |
+
|
419 |
+
#: inc/php/page.php:316
|
420 |
+
msgid "Describe in more detail what exactly you are seeing."
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: inc/php/page.php:317
|
424 |
+
msgid "Here are some examples:"
|
425 |
+
msgstr ""
|
426 |
+
|
427 |
+
#: inc/php/page.php:320
|
428 |
+
msgid "Elements of the plugin settings page are not working."
|
429 |
+
msgstr ""
|
430 |
+
|
431 |
+
#: inc/php/page.php:321
|
432 |
+
msgid "An error message is displayed on the plugin settings page."
|
433 |
+
msgstr ""
|
434 |
+
|
435 |
+
#: inc/php/page.php:322
|
436 |
+
msgid "An error message is displayed on the front end of website."
|
437 |
+
msgstr ""
|
438 |
+
|
439 |
+
#: inc/php/page.php:323
|
440 |
+
msgid "An error message is displayed on the back end of website."
|
441 |
+
msgstr ""
|
442 |
+
|
443 |
+
#: inc/php/page.php:324
|
444 |
+
msgid "Website is crashed."
|
445 |
+
msgstr ""
|
446 |
+
|
447 |
+
#: inc/php/page.php:329
|
448 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
449 |
msgstr "Wo können Sie Ideen oder Vorschläge loswerden, um das Plugin besser zu machen?"
|
450 |
|
451 |
+
#: inc/php/page.php:332
|
452 |
+
msgid "Any suggestions are very welcome!"
|
453 |
+
msgstr "Irgendwelche Vorschläge sind sehr willkommen!"
|
454 |
+
|
455 |
+
#: inc/php/page.php:335
|
456 |
+
#, php-format
|
457 |
+
msgid "Please visit our %s contact page %s."
|
458 |
+
msgstr "Bitte besuchen Sie unsere %s Kontaktseite %s."
|
459 |
+
|
460 |
+
#: inc/php/page.php:345
|
461 |
+
msgid "I love this plugin!"
|
462 |
+
msgstr "Ich liebe dieses Plugin!"
|
463 |
+
|
464 |
+
#: inc/php/page.php:346
|
465 |
+
msgid "Can I help somehow?"
|
466 |
+
msgstr "Kann ich Irgendwie helfen?"
|
467 |
+
|
468 |
+
#: inc/php/page.php:349
|
469 |
+
msgid "Yes, any contributions are very welcome!"
|
470 |
+
msgstr "Ja, jede Mithilfe ist sehr willkommen!"
|
471 |
+
|
472 |
+
#: inc/php/page.php:352
|
473 |
+
#, php-format
|
474 |
+
msgid "Please visit our %s Support Us %s page."
|
475 |
+
msgstr "Bitte besuchen Sie unsere %s Support Us %s Seite."
|
476 |
+
|
477 |
+
#: inc/php/page.php:361
|
478 |
+
msgid "Where can I find information about your licenses, payment process and refunds?"
|
479 |
+
msgstr ""
|
480 |
+
|
481 |
+
#: inc/php/page.php:366
|
482 |
+
#, php-format
|
483 |
+
msgid "Answers to common questions about our licenses, payment process and refunds can be found on our %s Common Questions %s page."
|
484 |
+
msgstr ""
|
485 |
+
|
486 |
+
#: inc/php/page.php:374
|
487 |
+
msgid "Where can I find information about your customer support?"
|
488 |
+
msgstr ""
|
489 |
+
|
490 |
+
#: inc/php/page.php:379
|
491 |
#, php-format
|
492 |
+
msgid "Answers to common questions about our customer support can be found on our %s Common Questions %s page."
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: inc/php/page.php:387
|
496 |
+
msgid "Where can I find information about your affiliate program?"
|
497 |
+
msgstr ""
|
498 |
|
499 |
+
#: inc/php/page.php:392
|
500 |
#, php-format
|
501 |
+
msgid "Answers to common questions about our affiliate program can be found on our %s Common Questions %s page."
|
502 |
+
msgstr ""
|
503 |
|
504 |
+
#: inc/php/page.php:400
|
505 |
msgid "My question wasn't answered here."
|
506 |
msgstr "Meine Fragen wurden nicht beantwortet."
|
507 |
|
508 |
+
#: inc/php/page.php:405
|
509 |
#, php-format
|
510 |
+
msgid "You can ask your question on %s this page %s."
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: inc/php/page.php:410
|
514 |
+
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."
|
515 |
+
msgstr "Aber bitte bedenken Sie, dass dieses Plugin kostenlos ist. Es gibt kein Support Team, deshalb habe wir keine Möglichkeit jedem zu antworten."
|
516 |
+
|
517 |
+
#: inc/php/page.php:421
|
518 |
msgid "Support Us"
|
519 |
msgstr "Unterstütze uns"
|
520 |
|
521 |
+
#: inc/php/page.php:429 inc/php/settings.php:226 inc/php/sidebar.php:46
|
522 |
msgid "Donate with PayPal"
|
523 |
msgstr "Spende mit PayPal"
|
524 |
|
525 |
+
#: inc/php/page.php:436
|
526 |
#, php-format
|
527 |
+
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."
|
528 |
+
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."
|
529 |
+
|
530 |
+
#: inc/php/page.php:445
|
531 |
+
msgid "Our intention is to create projects that will make this world a better place."
|
532 |
+
msgstr "Unser Absicht ist es, Projekte zu entwickeln, die diese Welt zu einem besseren Ort machen."
|
533 |
|
534 |
+
#: inc/php/page.php:446
|
535 |
+
msgid "Our motto is - «Follow your dreams and don’t give up»."
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: inc/php/page.php:447
|
539 |
+
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."
|
540 |
+
msgstr "Wir sind begeistert von unserer Arbeit, wir mag, was wir tue, und hoffe, dass Sie auch von unsere Projekten bereichert werden."
|
541 |
+
|
542 |
+
#: inc/php/page.php:450
|
543 |
+
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."
|
544 |
+
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."
|
545 |
+
|
546 |
+
#: inc/php/page.php:451
|
547 |
+
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."
|
548 |
+
msgstr ""
|
549 |
|
550 |
+
#: inc/php/page.php:454
|
551 |
msgid "If you appreciate our work, you can buy us a cup of coffee!"
|
552 |
+
msgstr "Wenn Ihnen unsere Arbeit gefällt, können Sie uns gerne einen Kaffee kaufen!"
|
553 |
|
554 |
+
#: inc/php/page.php:457
|
555 |
msgid "Thank you for your support!"
|
556 |
msgstr "Danke für Ihre Unterstützung!"
|
557 |
|
725 |
|
726 |
#: inc/php/sidebar.php:16
|
727 |
msgid "We are «Space X-Chimp»"
|
728 |
+
msgstr "Wir sind «Space X-Chimp»"
|
729 |
|
730 |
#: inc/php/sidebar.php:25
|
731 |
msgid "About"
|
732 |
msgstr "Über"
|
733 |
|
734 |
#: inc/php/sidebar.php:27
|
735 |
+
msgid "This plugin gives you the ability to easily and safely add your custom meta tags to your WordPress website, directly out of the WordPress Admin Area, without the need to have an external editor."
|
736 |
msgstr ""
|
737 |
|
738 |
#: inc/php/sidebar.php:32
|
762 |
#. Author URI of the plugin/theme
|
763 |
msgid "https://www.spacexchimp.com"
|
764 |
msgstr "https://www.spacexchimp.com"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/all-meta-tags-es_ES.mo
CHANGED
Binary file
|
languages/all-meta-tags-es_ES.po
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: All Meta Tags\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"
|
@@ -20,7 +20,7 @@ msgstr ""
|
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
|
23 |
-
#: inc/php/core.php:23 inc/php/page.php:
|
24 |
msgid "Settings"
|
25 |
msgstr "Ajustes"
|
26 |
|
@@ -32,274 +32,532 @@ msgstr "Donar"
|
|
32 |
msgid "Meta Tags Inserter"
|
33 |
msgstr "Meta Tags Inserter"
|
34 |
|
35 |
-
#: inc/php/messages.php:
|
36 |
-
msgid "Hello
|
37 |
-
msgstr "Hola!
|
38 |
|
39 |
#: inc/php/messages.php:28
|
|
|
|
|
|
|
|
|
40 |
#, php-format
|
41 |
msgid "Thank you for installing our plugin! We hope you will love it! %s"
|
42 |
msgstr "Gracias por instalar este complemento! Espero que te encante! %s"
|
43 |
|
44 |
-
#: inc/php/messages.php:
|
45 |
msgid "You have installed an old version of this plugin."
|
46 |
msgstr "Has instalado una versión antigua de este complemento."
|
47 |
|
48 |
-
#: inc/php/messages.php:
|
49 |
msgid "Please update the plugin to the latest version, and all will be fine."
|
50 |
msgstr "Actualiza el complemento a la versión más reciente y todo estará bien."
|
51 |
|
52 |
-
#: inc/php/page.php:
|
53 |
#, php-format
|
54 |
msgid "by %s Space X-Chimp %s"
|
55 |
msgstr "por %s Space X-Chimp %s"
|
56 |
|
57 |
-
#: inc/php/page.php:
|
58 |
msgid "Version"
|
59 |
msgstr "Versión"
|
60 |
|
61 |
-
#: inc/php/page.php:
|
62 |
msgid "Usage"
|
63 |
msgstr "Uso"
|
64 |
|
65 |
-
#: inc/php/page.php:
|
66 |
msgid "F.A.Q."
|
67 |
msgstr "Preguntas ?"
|
68 |
|
69 |
-
#: inc/php/page.php:
|
70 |
msgid "Support"
|
71 |
msgstr "Soporte"
|
72 |
|
73 |
-
#: inc/php/page.php:
|
74 |
msgid "Store"
|
75 |
msgstr "Tienda"
|
76 |
|
77 |
-
#: inc/php/page.php:
|
78 |
msgid "Usage Instructions"
|
79 |
msgstr "Instrucciones de uso"
|
80 |
|
81 |
-
#: inc/php/page.php:
|
82 |
msgid "To add the meta tags to your website, simply follow these steps:"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: inc/php/page.php:
|
86 |
msgid "Go to the \"Settings\" tab on this page."
|
87 |
msgstr "Debes ir a la pestaña “Ajustes”."
|
88 |
|
89 |
-
#: inc/php/page.php:
|
90 |
msgid "Fill in the required fields."
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: inc/php/page.php:
|
94 |
msgid "Click the \"Save changes\" button."
|
95 |
-
msgstr "Clic en el botón \"Guardar
|
96 |
|
97 |
-
#: inc/php/page.php:
|
98 |
msgid "Enjoy the improved SEO of your website."
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: inc/php/page.php:
|
102 |
msgid "It's that simple!"
|
103 |
msgstr "¡Es así de simple!"
|
104 |
|
105 |
-
#: inc/php/page.php:
|
106 |
#, php-format
|
107 |
msgid "If you want more options, then %s let us know %s and we will be happy to add them."
|
108 |
msgstr "Si quieres más opciones, %s díganos %s y estaremos encantados de añadirlo."
|
109 |
|
110 |
-
#: inc/php/page.php:
|
111 |
msgid "Frequently Asked Questions"
|
112 |
msgstr "Preguntas Frecuentes"
|
113 |
|
114 |
-
#: inc/php/page.php:
|
115 |
msgid "If you have a question, please read the Frequently Asked Questions below to see if the answer is here."
|
116 |
msgstr "Si tienes alguna pregunta, por favor lee las Preguntas Frecuentes a continuación, para ver si la respuesta está aquí."
|
117 |
|
118 |
-
#: inc/php/page.php:
|
119 |
-
msgid "
|
120 |
-
msgstr "
|
121 |
|
122 |
-
#: inc/php/page.php:
|
123 |
-
|
124 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
125 |
|
126 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
127 |
msgid "Can I use this plugin on my language?"
|
128 |
msgstr "¿Puedo usar este complemento en mi idioma?"
|
129 |
|
130 |
-
#: inc/php/page.php:
|
131 |
-
msgid "Yes.
|
132 |
-
msgstr "Sí.
|
|
|
|
|
|
|
|
|
133 |
|
134 |
-
#: inc/php/page.php:
|
135 |
-
|
136 |
-
|
137 |
-
msgstr "Si quieres ayudar a traducir este complemento, visita el %s. También puede utilizar el archivo POT, incluido y colocado en la carpeta “languages”, para crear un archivo PO de traducción. Simplemente envíeme el archivo PO en el %s e incluiremos esta traducción en la siguiente actualización del complemento."
|
138 |
|
139 |
-
#: inc/php/page.php:
|
140 |
-
msgid "
|
141 |
msgstr "Quizás no todas las traducciones existentes estén actualizadas. Le invitamos a contribuir correcciones!"
|
142 |
|
143 |
-
#: inc/php/page.php:
|
144 |
-
msgid "Many of plugin users would be delighted if you share your translation with the community.
|
145 |
-
msgstr "Muchos de los usuarios de este complemento estarían encantados si compartes tu traducción con la comunidad.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
146 |
|
147 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
148 |
msgid "How does it work?"
|
149 |
msgstr "¿Como funciona?"
|
150 |
|
151 |
-
#: inc/php/page.php:
|
152 |
-
msgid "On the \"Settings\" tab, fill in the required fields and click the \"Save changes\" button.
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: inc/php/page.php:
|
156 |
msgid "How much of description I can enter in the text field?"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: inc/php/page.php:
|
160 |
msgid "We don't limit the number of characters, but most search engines use a maximum of 160 chars for the home description."
|
161 |
-
msgstr ""
|
162 |
|
163 |
-
#: inc/php/page.php:
|
164 |
msgid "How much of keywords I can enter in the text field?"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: inc/php/page.php:
|
168 |
msgid "We don't limit the number of characters."
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: inc/php/page.php:
|
172 |
-
msgid "
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: inc/php/page.php:
|
176 |
-
msgid "
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: inc/php/page.php:
|
180 |
-
msgid "
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: inc/php/page.php:
|
184 |
-
msgid "
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: inc/php/page.php:
|
188 |
-
msgid "If you find a conflict between the plugins, please let us know and we will definitely release an update of
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: inc/php/page.php:
|
192 |
msgid "What about compatibility with the plugin \"Yoast SEO\"?"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: inc/php/page.php:
|
196 |
-
msgid "As far as we know, the \"All Meta Tags\" plugin is compatible with the \"Yoast SEO\" plugin.
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
200 |
msgid "Does this plugin requires any modification of the theme?"
|
201 |
msgstr "¿Este complemento requiere alguna modificación del tema?"
|
202 |
|
203 |
-
#: inc/php/page.php:
|
204 |
-
msgid "Absolutely not.
|
205 |
-
msgstr "Absolutamente
|
|
|
|
|
|
|
|
|
206 |
|
207 |
-
#: inc/php/page.php:
|
208 |
msgid "Does this require any knowledge of HTML or CSS?"
|
209 |
msgstr "¿Esto requiere algún conocimiento de HTML o CSS?"
|
210 |
|
211 |
-
#: inc/php/page.php:
|
212 |
-
msgid "
|
213 |
-
msgstr "
|
214 |
|
215 |
-
#: inc/php/page.php:
|
216 |
-
msgid "It's not working.
|
217 |
-
msgstr "No funciona.
|
218 |
|
219 |
-
#: inc/php/page.php:
|
220 |
-
msgid "
|
221 |
-
msgstr "
|
222 |
|
223 |
-
#: inc/php/page.php:
|
224 |
-
msgid "
|
225 |
-
msgstr "
|
226 |
|
227 |
-
#: inc/php/page.php:
|
228 |
-
msgid "
|
229 |
-
msgstr "
|
230 |
|
231 |
-
#: inc/php/page.php:
|
232 |
-
msgid "
|
233 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
234 |
|
235 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
236 |
msgid "Where to report bug if found?"
|
237 |
msgstr "¿Dónde informar el error si se encuentra?"
|
238 |
|
239 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
240 |
#, php-format
|
241 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
245 |
msgid "Where to share any ideas or suggestions to make the plugin better?"
|
246 |
msgstr "¿Dónde compartir ideas o sugerencias para mejorar el complemento?"
|
247 |
|
248 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
249 |
#, php-format
|
250 |
-
msgid "
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: inc/php/page.php:
|
254 |
-
msgid "I
|
255 |
-
msgstr "
|
256 |
|
257 |
-
#: inc/php/page.php:
|
258 |
#, php-format
|
259 |
-
msgid "
|
260 |
-
msgstr "
|
261 |
|
262 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
263 |
msgid "My question wasn't answered here."
|
264 |
msgstr "Mi pregunta no fue contestada aquí."
|
265 |
|
266 |
-
#: inc/php/page.php:
|
267 |
#, php-format
|
268 |
-
msgid "You can ask your question on %s this page %s.
|
269 |
-
msgstr "Puede hacer
|
270 |
|
271 |
-
#: inc/php/page.php:
|
|
|
|
|
|
|
|
|
272 |
msgid "Support Us"
|