Version Description
- bug fix: import template not worked when downloaded via Import Settings
- bug fix: updating user login
- bug fix: import images with encoded quotes
- improvement: added hungarian translation
Download this release
Release Info
Developer | soflyy |
Plugin | Import any XML or CSV File to WordPress |
Version | 3.4.4 |
Comparing to | |
See all releases |
Code changes from version 3.4.3 to 3.4.4
- classes/render.php +1 -1
- controllers/admin/settings.php +22 -17
- i18n/languages/wp_all_import_plugin-de_CH.mo +0 -0
- i18n/languages/wp_all_import_plugin-de_CH.po +4205 -4861
- i18n/languages/wp_all_import_plugin-de_DE.mo +0 -0
- i18n/languages/wp_all_import_plugin-de_DE.po +4202 -4943
- i18n/languages/wp_all_import_plugin-es_ES.mo +0 -0
- i18n/languages/wp_all_import_plugin-es_ES.po +1710 -4964
classes/render.php
CHANGED
@@ -111,7 +111,7 @@ if ( ! class_exists('PMXI_Render')){
|
|
111 |
else $path = $el->nodeName;
|
112 |
|
113 |
foreach ($el->attributes as $attr) {
|
114 |
-
echo '<option value="'.$path . '/@' . $attr->nodeName.'">'. $path . '@' . $attr->nodeName . '</option>';
|
115 |
}
|
116 |
if ($el->hasChildNodes()) {
|
117 |
foreach ($el->childNodes as $child) {
|
111 |
else $path = $el->nodeName;
|
112 |
|
113 |
foreach ($el->attributes as $attr) {
|
114 |
+
echo '<option value="'.$path .'['. self::$option_paths[$path] .']'. '/@' . $attr->nodeName.'">'. $path .'['. self::$option_paths[$path] .']'. '@' . $attr->nodeName . '</option>';
|
115 |
}
|
116 |
if ($el->hasChildNodes()) {
|
117 |
foreach ($el->childNodes as $child) {
|
controllers/admin/settings.php
CHANGED
@@ -90,25 +90,30 @@ class PMXI_Admin_Settings extends PMXI_Controller_Admin {
|
|
90 |
if (!empty($_FILES)){
|
91 |
$file_name = $_FILES['template_file']['name'];
|
92 |
$file_size = $_FILES['template_file']['size'];
|
93 |
-
$tmp_name = $_FILES['template_file']['tmp_name'];
|
94 |
-
|
95 |
-
if(isset($file_name))
|
96 |
-
{
|
97 |
-
|
98 |
$filename = stripslashes($file_name);
|
99 |
$extension = strtolower(pmxi_getExtension($filename));
|
100 |
-
|
101 |
-
if (($extension != "txt"))
|
102 |
-
{
|
103 |
$this->errors->add('form-validation', __('Unknown File extension. Only txt files are permitted', 'wp_all_import_plugin'));
|
104 |
}
|
105 |
else {
|
106 |
$import_data = @file_get_contents($tmp_name);
|
107 |
if (!empty($import_data)){
|
108 |
$templates_data = json_decode($import_data, true);
|
109 |
-
|
110 |
if ( ! empty($templates_data) ){
|
111 |
-
|
|
|
|
|
|
|
|
|
|
|
112 |
if ( empty($templateOptions) ){
|
113 |
$this->errors->add('form-validation', __('The template is invalid. Options are missing.', 'wp_all_import_plugin'));
|
114 |
}
|
@@ -126,7 +131,7 @@ class PMXI_Admin_Settings extends PMXI_Controller_Admin {
|
|
126 |
}
|
127 |
}
|
128 |
}
|
129 |
-
else $this->errors->add('form-validation', __('Wrong imported data format', 'wp_all_import_plugin'));
|
130 |
}
|
131 |
else $this->errors->add('form-validation', __('File is empty or doesn\'t exests', 'wp_all_import_plugin'));
|
132 |
}
|
@@ -141,7 +146,7 @@ class PMXI_Admin_Settings extends PMXI_Controller_Admin {
|
|
141 |
if (empty($templates_ids)) {
|
142 |
$this->errors->add('form-validation', __('Templates must be selected', 'wp_all_import_plugin'));
|
143 |
}
|
144 |
-
|
145 |
if ( ! $this->errors->get_error_codes()) { // no validation errors detected
|
146 |
if ($this->input->post('delete_templates')){
|
147 |
$template = new PMXI_Template_Record();
|
@@ -155,16 +160,16 @@ class PMXI_Admin_Settings extends PMXI_Controller_Admin {
|
|
155 |
$template = new PMXI_Template_Record();
|
156 |
foreach ($templates_ids as $template_id) {
|
157 |
$export_data[] = $template->clear()->getBy('id', $template_id)->toArray(TRUE);
|
158 |
-
}
|
159 |
-
|
160 |
$uploads = wp_upload_dir();
|
161 |
$targetDir = $uploads['basedir'] . DIRECTORY_SEPARATOR . PMXI_Plugin::TEMP_DIRECTORY;
|
162 |
$export_file_name = "templates_".uniqid().".txt";
|
163 |
file_put_contents($targetDir . DIRECTORY_SEPARATOR . $export_file_name, json_encode($export_data));
|
164 |
-
|
165 |
PMXI_download::csv($targetDir . DIRECTORY_SEPARATOR . $export_file_name);
|
166 |
-
|
167 |
-
}
|
168 |
}
|
169 |
}
|
170 |
}
|
90 |
if (!empty($_FILES)){
|
91 |
$file_name = $_FILES['template_file']['name'];
|
92 |
$file_size = $_FILES['template_file']['size'];
|
93 |
+
$tmp_name = $_FILES['template_file']['tmp_name'];
|
94 |
+
|
95 |
+
if(isset($file_name))
|
96 |
+
{
|
97 |
+
|
98 |
$filename = stripslashes($file_name);
|
99 |
$extension = strtolower(pmxi_getExtension($filename));
|
100 |
+
|
101 |
+
if (($extension != "txt"))
|
102 |
+
{
|
103 |
$this->errors->add('form-validation', __('Unknown File extension. Only txt files are permitted', 'wp_all_import_plugin'));
|
104 |
}
|
105 |
else {
|
106 |
$import_data = @file_get_contents($tmp_name);
|
107 |
if (!empty($import_data)){
|
108 |
$templates_data = json_decode($import_data, true);
|
109 |
+
|
110 |
if ( ! empty($templates_data) ){
|
111 |
+
if ( ! empty($templates_data[0]['options']) && is_array($templates_data[0]['options'])){
|
112 |
+
$templateOptions = $templates_data[0]['options'];
|
113 |
+
}
|
114 |
+
else{
|
115 |
+
$templateOptions = empty($templates_data[0]['options']) ? false : unserialize($templates_data[0]['options']);
|
116 |
+
}
|
117 |
if ( empty($templateOptions) ){
|
118 |
$this->errors->add('form-validation', __('The template is invalid. Options are missing.', 'wp_all_import_plugin'));
|
119 |
}
|
131 |
}
|
132 |
}
|
133 |
}
|
134 |
+
else $this->errors->add('form-validation', __('Wrong imported data format', 'wp_all_import_plugin'));
|
135 |
}
|
136 |
else $this->errors->add('form-validation', __('File is empty or doesn\'t exests', 'wp_all_import_plugin'));
|
137 |
}
|
146 |
if (empty($templates_ids)) {
|
147 |
$this->errors->add('form-validation', __('Templates must be selected', 'wp_all_import_plugin'));
|
148 |
}
|
149 |
+
|
150 |
if ( ! $this->errors->get_error_codes()) { // no validation errors detected
|
151 |
if ($this->input->post('delete_templates')){
|
152 |
$template = new PMXI_Template_Record();
|
160 |
$template = new PMXI_Template_Record();
|
161 |
foreach ($templates_ids as $template_id) {
|
162 |
$export_data[] = $template->clear()->getBy('id', $template_id)->toArray(TRUE);
|
163 |
+
}
|
164 |
+
|
165 |
$uploads = wp_upload_dir();
|
166 |
$targetDir = $uploads['basedir'] . DIRECTORY_SEPARATOR . PMXI_Plugin::TEMP_DIRECTORY;
|
167 |
$export_file_name = "templates_".uniqid().".txt";
|
168 |
file_put_contents($targetDir . DIRECTORY_SEPARATOR . $export_file_name, json_encode($export_data));
|
169 |
+
|
170 |
PMXI_download::csv($targetDir . DIRECTORY_SEPARATOR . $export_file_name);
|
171 |
+
|
172 |
+
}
|
173 |
}
|
174 |
}
|
175 |
}
|
i18n/languages/wp_all_import_plugin-de_CH.mo
CHANGED
Binary file
|
i18n/languages/wp_all_import_plugin-de_CH.po
CHANGED
@@ -1,4861 +1,4205 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"
|
4 |
-
"
|
5 |
-
"
|
6 |
-
"
|
7 |
-
"
|
8 |
-
"Language
|
9 |
-
"
|
10 |
-
|
11 |
-
|
12 |
-
"
|
13 |
-
"
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
"
|
18 |
-
"
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
msgid ""
|
35 |
-
"
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
"
|
40 |
-
|
41 |
-
|
42 |
-
"
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
#:
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
#:
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
#:
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
#:
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
#:
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
#:
|
98 |
-
#:
|
99 |
-
#:
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
"
|
118 |
-
"
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
"
|
123 |
-
|
124 |
-
|
125 |
-
"
|
126 |
-
"
|
127 |
-
|
128 |
-
#:
|
129 |
-
msgid "
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
msgstr
|
139 |
-
|
140 |
-
|
141 |
-
#:
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
#: /
|
165 |
-
#: /
|
166 |
-
msgid "
|
167 |
-
msgstr "
|
168 |
-
|
169 |
-
#:
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
msgid "
|
186 |
-
msgstr "
|
187 |
-
|
188 |
-
#:
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
"
|
202 |
-
msgstr ""
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
"
|
210 |
-
"
|
211 |
-
|
212 |
-
|
213 |
-
"
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
msgid "%d
|
218 |
-
msgstr "%d
|
219 |
-
|
220 |
-
#:
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
#: /
|
237 |
-
msgid "
|
238 |
-
msgstr "
|
239 |
-
|
240 |
-
#:
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
"
|
246 |
-
|
247 |
-
|
248 |
-
#: /
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
"
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
msgid ""
|
302 |
-
"
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
#:
|
309 |
-
|
310 |
-
|
311 |
-
"with
|
312 |
-
msgstr ""
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
#:
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
"
|
322 |
-
"
|
323 |
-
|
324 |
-
#:
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
#:
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
#:
|
340 |
-
|
341 |
-
|
342 |
-
"
|
343 |
-
"
|
344 |
-
|
345 |
-
#:
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
#:
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
#:
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
#:
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
#:
|
379 |
-
msgid "
|
380 |
-
msgstr "
|
381 |
-
|
382 |
-
#:
|
383 |
-
msgid "Download
|
384 |
-
msgstr "Bilder von
|
385 |
-
|
386 |
-
#:
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
"
|
406 |
-
"
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
#:
|
420 |
-
|
421 |
-
"
|
422 |
-
msgstr ""
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
"
|
434 |
-
msgstr ""
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
"
|
485 |
-
"
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
#: /
|
504 |
-
msgid "
|
505 |
-
msgstr "
|
506 |
-
|
507 |
-
#:
|
508 |
-
msgid "
|
509 |
-
msgstr "
|
510 |
-
|
511 |
-
#:
|
512 |
-
msgid "
|
513 |
-
msgstr "
|
514 |
-
|
515 |
-
#:
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
#: /
|
520 |
-
#: /
|
521 |
-
msgid "WP All Import"
|
522 |
-
msgstr "WP All Import"
|
523 |
-
|
524 |
-
#:
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
"
|
535 |
-
|
536 |
-
#:
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
"
|
546 |
-
"
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
msgid ""
|
558 |
-
"
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
"
|
563 |
-
|
564 |
-
|
565 |
-
"
|
566 |
-
|
567 |
-
|
568 |
-
#:
|
569 |
-
msgid "
|
570 |
-
msgstr "
|
571 |
-
|
572 |
-
#:
|
573 |
-
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
#:
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
#:
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
#: /
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
#:
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
-
#:
|
597 |
-
|
598 |
-
|
599 |
-
|
600 |
-
|
601 |
-
|
602 |
-
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
|
608 |
-
|
609 |
-
|
610 |
-
|
611 |
-
|
612 |
-
|
613 |
-
msgid "
|
614 |
-
msgstr "
|
615 |
-
|
616 |
-
#:
|
617 |
-
msgid "
|
618 |
-
msgstr "
|
619 |
-
|
620 |
-
#:
|
621 |
-
msgid "
|
622 |
-
msgstr "
|
623 |
-
|
624 |
-
#:
|
625 |
-
|
626 |
-
|
627 |
-
|
628 |
-
|
629 |
-
|
630 |
-
|
631 |
-
|
632 |
-
|
633 |
-
|
634 |
-
|
635 |
-
|
636 |
-
|
637 |
-
|
638 |
-
|
639 |
-
|
640 |
-
|
641 |
-
|
642 |
-
|
643 |
-
|
644 |
-
|
645 |
-
|
646 |
-
|
647 |
-
|
648 |
-
|
649 |
-
|
650 |
-
|
651 |
-
msgid "
|
652 |
-
msgstr "
|
653 |
-
|
654 |
-
#:
|
655 |
-
|
656 |
-
|
657 |
-
|
658 |
-
|
659 |
-
|
660 |
-
|
661 |
-
|
662 |
-
|
663 |
-
|
664 |
-
|
665 |
-
|
666 |
-
|
667 |
-
|
668 |
-
|
669 |
-
|
670 |
-
|
671 |
-
msgid "
|
672 |
-
msgstr "
|
673 |
-
|
674 |
-
#:
|
675 |
-
|
676 |
-
|
677 |
-
|
678 |
-
|
679 |
-
|
680 |
-
|
681 |
-
|
682 |
-
|
683 |
-
|
684 |
-
|
685 |
-
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
|
693 |
-
|
694 |
-
|
695 |
-
|
696 |
-
msgid "
|
697 |
-
msgstr "
|
698 |
-
|
699 |
-
#:
|
700 |
-
|
701 |
-
|
702 |
-
|
703 |
-
|
704 |
-
|
705 |
-
|
706 |
-
|
707 |
-
|
708 |
-
|
709 |
-
|
710 |
-
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
|
715 |
-
|
716 |
-
|
717 |
-
|
718 |
-
|
719 |
-
|
720 |
-
msgid "
|
721 |
-
msgstr "
|
722 |
-
|
723 |
-
#:
|
724 |
-
|
725 |
-
msgid "Import
|
726 |
-
msgstr "Import
|
727 |
-
|
728 |
-
#:
|
729 |
-
msgid "
|
730 |
-
msgstr "
|
731 |
-
|
732 |
-
#:
|
733 |
-
|
734 |
-
|
735 |
-
|
736 |
-
|
737 |
-
|
738 |
-
|
739 |
-
|
740 |
-
|
741 |
-
|
742 |
-
|
743 |
-
|
744 |
-
|
745 |
-
|
746 |
-
|
747 |
-
|
748 |
-
#:
|
749 |
-
|
750 |
-
|
751 |
-
|
752 |
-
#: /
|
753 |
-
#: /
|
754 |
-
msgid "
|
755 |
-
msgstr "
|
756 |
-
|
757 |
-
#:
|
758 |
-
|
759 |
-
|
760 |
-
|
761 |
-
|
762 |
-
|
763 |
-
|
764 |
-
|
765 |
-
#: /
|
766 |
-
|
767 |
-
|
768 |
-
|
769 |
-
|
770 |
-
|
771 |
-
|
772 |
-
|
773 |
-
#: /
|
774 |
-
#: /
|
775 |
-
#:
|
776 |
-
|
777 |
-
|
778 |
-
|
779 |
-
|
780 |
-
|
781 |
-
#: /
|
782 |
-
|
783 |
-
|
784 |
-
|
785 |
-
|
786 |
-
|
787 |
-
|
788 |
-
|
789 |
-
#: /
|
790 |
-
|
791 |
-
|
792 |
-
|
793 |
-
#: /
|
794 |
-
msgid "
|
795 |
-
msgstr "
|
796 |
-
|
797 |
-
#:
|
798 |
-
|
799 |
-
|
800 |
-
|
801 |
-
|
802 |
-
|
803 |
-
|
804 |
-
|
805 |
-
|
806 |
-
|
807 |
-
|
808 |
-
|
809 |
-
#: /views/admin/
|
810 |
-
|
811 |
-
|
812 |
-
|
813 |
-
|
814 |
-
|
815 |
-
|
816 |
-
|
817 |
-
|
818 |
-
|
819 |
-
|
820 |
-
|
821 |
-
|
822 |
-
|
823 |
-
|
824 |
-
|
825 |
-
|
826 |
-
|
827 |
-
|
828 |
-
|
829 |
-
|
830 |
-
msgid "
|
831 |
-
msgstr "
|
832 |
-
|
833 |
-
#:
|
834 |
-
|
835 |
-
|
836 |
-
|
837 |
-
|
838 |
-
|
839 |
-
|
840 |
-
|
841 |
-
|
842 |
-
msgid "
|
843 |
-
msgstr "
|
844 |
-
|
845 |
-
#:
|
846 |
-
|
847 |
-
|
848 |
-
|
849 |
-
|
850 |
-
|
851 |
-
"
|
852 |
-
|
853 |
-
|
854 |
-
|
855 |
-
|
856 |
-
|
857 |
-
|
858 |
-
|
859 |
-
|
860 |
-
|
861 |
-
|
862 |
-
|
863 |
-
|
864 |
-
|
865 |
-
|
866 |
-
msgid "
|
867 |
-
msgstr "
|
868 |
-
|
869 |
-
#:
|
870 |
-
|
871 |
-
|
872 |
-
|
873 |
-
|
874 |
-
|
875 |
-
|
876 |
-
|
877 |
-
|
878 |
-
|
879 |
-
|
880 |
-
|
881 |
-
|
882 |
-
msgid "
|
883 |
-
msgstr "
|
884 |
-
|
885 |
-
#:
|
886 |
-
|
887 |
-
|
888 |
-
|
889 |
-
|
890 |
-
#:
|
891 |
-
|
892 |
-
|
893 |
-
|
894 |
-
|
895 |
-
#:
|
896 |
-
#: /
|
897 |
-
msgid "
|
898 |
-
msgstr "
|
899 |
-
|
900 |
-
#:
|
901 |
-
|
902 |
-
msgid "
|
903 |
-
msgstr "
|
904 |
-
|
905 |
-
#:
|
906 |
-
|
907 |
-
|
908 |
-
|
909 |
-
|
910 |
-
|
911 |
-
|
912 |
-
|
913 |
-
|
914 |
-
|
915 |
-
|
916 |
-
|
917 |
-
|
918 |
-
"
|
919 |
-
"
|
920 |
-
|
921 |
-
"
|
922 |
-
"
|
923 |
-
|
924 |
-
|
925 |
-
|
926 |
-
msgid ""
|
927 |
-
|
928 |
-
|
929 |
-
|
930 |
-
"
|
931 |
-
"
|
932 |
-
|
933 |
-
|
934 |
-
|
935 |
-
|
936 |
-
|
937 |
-
|
938 |
-
|
939 |
-
|
940 |
-
|
941 |
-
|
942 |
-
|
943 |
-
|
944 |
-
|
945 |
-
|
946 |
-
|
947 |
-
|
948 |
-
"
|
949 |
-
"
|
950 |
-
|
951 |
-
|
952 |
-
|
953 |
-
|
954 |
-
|
955 |
-
|
956 |
-
|
957 |
-
|
958 |
-
|
959 |
-
|
960 |
-
|
961 |
-
|
962 |
-
|
963 |
-
#: /
|
964 |
-
msgid ""
|
965 |
-
"
|
966 |
-
"
|
967 |
-
"
|
968 |
-
|
969 |
-
|
970 |
-
|
971 |
-
"
|
972 |
-
|
973 |
-
|
974 |
-
"
|
975 |
-
"
|
976 |
-
|
977 |
-
#:
|
978 |
-
|
979 |
-
|
980 |
-
|
981 |
-
#:
|
982 |
-
msgid "
|
983 |
-
msgstr "
|
984 |
-
|
985 |
-
#:
|
986 |
-
|
987 |
-
|
988 |
-
|
989 |
-
|
990 |
-
|
991 |
-
|
992 |
-
|
993 |
-
msgstr "
|
994 |
-
|
995 |
-
#:
|
996 |
-
msgid ""
|
997 |
-
"
|
998 |
-
|
999 |
-
|
1000 |
-
|
1001 |
-
"
|
1002 |
-
|
1003 |
-
|
1004 |
-
|
1005 |
-
|
1006 |
-
|
1007 |
-
|
1008 |
-
|
1009 |
-
|
1010 |
-
|
1011 |
-
|
1012 |
-
"to
|
1013 |
-
"
|
1014 |
-
|
1015 |
-
|
1016 |
-
"
|
1017 |
-
msgstr ""
|
1018 |
-
|
1019 |
-
|
1020 |
-
"
|
1021 |
-
"
|
1022 |
-
|
1023 |
-
|
1024 |
-
#:
|
1025 |
-
msgid "
|
1026 |
-
msgstr "
|
1027 |
-
|
1028 |
-
#:
|
1029 |
-
msgid "
|
1030 |
-
msgstr "
|
1031 |
-
|
1032 |
-
#:
|
1033 |
-
msgid "
|
1034 |
-
msgstr "
|
1035 |
-
|
1036 |
-
#:
|
1037 |
-
msgid "
|
1038 |
-
msgstr "
|
1039 |
-
|
1040 |
-
#:
|
1041 |
-
msgid "
|
1042 |
-
msgstr "
|
1043 |
-
|
1044 |
-
#:
|
1045 |
-
|
1046 |
-
|
1047 |
-
|
1048 |
-
#:
|
1049 |
-
|
1050 |
-
|
1051 |
-
|
1052 |
-
#:
|
1053 |
-
|
1054 |
-
|
1055 |
-
|
1056 |
-
|
1057 |
-
|
1058 |
-
|
1059 |
-
|
1060 |
-
|
1061 |
-
|
1062 |
-
|
1063 |
-
|
1064 |
-
|
1065 |
-
|
1066 |
-
|
1067 |
-
|
1068 |
-
|
1069 |
-
|
1070 |
-
|
1071 |
-
|
1072 |
-
#:
|
1073 |
-
|
1074 |
-
|
1075 |
-
|
1076 |
-
|
1077 |
-
|
1078 |
-
|
1079 |
-
|
1080 |
-
|
1081 |
-
|
1082 |
-
|
1083 |
-
|
1084 |
-
|
1085 |
-
|
1086 |
-
|
1087 |
-
|
1088 |
-
|
1089 |
-
|
1090 |
-
|
1091 |
-
|
1092 |
-
|
1093 |
-
|
1094 |
-
|
1095 |
-
|
1096 |
-
|
1097 |
-
|
1098 |
-
|
1099 |
-
|
1100 |
-
|
1101 |
-
|
1102 |
-
|
1103 |
-
"
|
1104 |
-
"
|
1105 |
-
|
1106 |
-
|
1107 |
-
|
1108 |
-
|
1109 |
-
|
1110 |
-
|
1111 |
-
"
|
1112 |
-
"
|
1113 |
-
|
1114 |
-
#:
|
1115 |
-
msgid ""
|
1116 |
-
"
|
1117 |
-
|
1118 |
-
|
1119 |
-
"
|
1120 |
-
"
|
1121 |
-
|
1122 |
-
|
1123 |
-
"
|
1124 |
-
"
|
1125 |
-
|
1126 |
-
|
1127 |
-
"
|
1128 |
-
"
|
1129 |
-
|
1130 |
-
|
1131 |
-
|
1132 |
-
|
1133 |
-
|
1134 |
-
|
1135 |
-
|
1136 |
-
|
1137 |
-
|
1138 |
-
|
1139 |
-
|
1140 |
-
"
|
1141 |
-
|
1142 |
-
|
1143 |
-
|
1144 |
-
|
1145 |
-
|
1146 |
-
|
1147 |
-
|
1148 |
-
|
1149 |
-
|
1150 |
-
|
1151 |
-
"
|
1152 |
-
|
1153 |
-
|
1154 |
-
|
1155 |
-
"
|
1156 |
-
"
|
1157 |
-
|
1158 |
-
|
1159 |
-
|
1160 |
-
|
1161 |
-
|
1162 |
-
|
1163 |
-
|
1164 |
-
|
1165 |
-
|
1166 |
-
|
1167 |
-
|
1168 |
-
"
|
1169 |
-
|
1170 |
-
#:
|
1171 |
-
msgid "
|
1172 |
-
msgstr "
|
1173 |
-
|
1174 |
-
#:
|
1175 |
-
msgid ""
|
1176 |
-
|
1177 |
-
|
1178 |
-
|
1179 |
-
|
1180 |
-
msgstr ""
|
1181 |
-
|
1182 |
-
|
1183 |
-
"
|
1184 |
-
|
1185 |
-
|
1186 |
-
|
1187 |
-
"
|
1188 |
-
"
|
1189 |
-
|
1190 |
-
|
1191 |
-
|
1192 |
-
"
|
1193 |
-
|
1194 |
-
|
1195 |
-
"
|
1196 |
-
|
1197 |
-
|
1198 |
-
|
1199 |
-
|
1200 |
-
|
1201 |
-
|
1202 |
-
#:
|
1203 |
-
msgid ""
|
1204 |
-
|
1205 |
-
|
1206 |
-
|
1207 |
-
"
|
1208 |
-
"
|
1209 |
-
|
1210 |
-
|
1211 |
-
"
|
1212 |
-
|
1213 |
-
|
1214 |
-
|
1215 |
-
"
|
1216 |
-
"
|
1217 |
-
|
1218 |
-
|
1219 |
-
"
|
1220 |
-
"
|
1221 |
-
|
1222 |
-
|
1223 |
-
"
|
1224 |
-
|
1225 |
-
|
1226 |
-
|
1227 |
-
"
|
1228 |
-
|
1229 |
-
|
1230 |
-
|
1231 |
-
"
|
1232 |
-
msgstr ""
|
1233 |
-
|
1234 |
-
|
1235 |
-
"
|
1236 |
-
"
|
1237 |
-
|
1238 |
-
|
1239 |
-
|
1240 |
-
|
1241 |
-
|
1242 |
-
|
1243 |
-
|
1244 |
-
|
1245 |
-
|
1246 |
-
|
1247 |
-
|
1248 |
-
|
1249 |
-
|
1250 |
-
|
1251 |
-
|
1252 |
-
|
1253 |
-
|
1254 |
-
|
1255 |
-
|
1256 |
-
|
1257 |
-
|
1258 |
-
|
1259 |
-
"
|
1260 |
-
msgstr ""
|
1261 |
-
|
1262 |
-
|
1263 |
-
"
|
1264 |
-
"
|
1265 |
-
|
1266 |
-
#:
|
1267 |
-
msgid ""
|
1268 |
-
|
1269 |
-
|
1270 |
-
|
1271 |
-
"
|
1272 |
-
|
1273 |
-
|
1274 |
-
#:
|
1275 |
-
msgid "
|
1276 |
-
msgstr "
|
1277 |
-
|
1278 |
-
#:
|
1279 |
-
|
1280 |
-
|
1281 |
-
|
1282 |
-
|
1283 |
-
"
|
1284 |
-
"
|
1285 |
-
|
1286 |
-
|
1287 |
-
|
1288 |
-
"
|
1289 |
-
"
|
1290 |
-
|
1291 |
-
#:
|
1292 |
-
msgid "
|
1293 |
-
msgstr "
|
1294 |
-
|
1295 |
-
#:
|
1296 |
-
msgid "
|
1297 |
-
msgstr "
|
1298 |
-
|
1299 |
-
#:
|
1300 |
-
|
1301 |
-
|
1302 |
-
|
1303 |
-
|
1304 |
-
|
1305 |
-
|
1306 |
-
|
1307 |
-
|
1308 |
-
|
1309 |
-
|
1310 |
-
|
1311 |
-
|
1312 |
-
#:
|
1313 |
-
|
1314 |
-
msgid "
|
1315 |
-
msgstr "
|
1316 |
-
|
1317 |
-
#:
|
1318 |
-
|
1319 |
-
|
1320 |
-
|
1321 |
-
|
1322 |
-
|
1323 |
-
|
1324 |
-
|
1325 |
-
|
1326 |
-
|
1327 |
-
|
1328 |
-
|
1329 |
-
|
1330 |
-
|
1331 |
-
|
1332 |
-
|
1333 |
-
|
1334 |
-
|
1335 |
-
|
1336 |
-
|
1337 |
-
#:
|
1338 |
-
msgid "
|
1339 |
-
msgstr "
|
1340 |
-
|
1341 |
-
#:
|
1342 |
-
msgid "
|
1343 |
-
msgstr "
|
1344 |
-
|
1345 |
-
#:
|
1346 |
-
msgid "
|
1347 |
-
msgstr "
|
1348 |
-
|
1349 |
-
#:
|
1350 |
-
msgid "
|
1351 |
-
msgstr "
|
1352 |
-
|
1353 |
-
#:
|
1354 |
-
msgid "
|
1355 |
-
msgstr "
|
1356 |
-
|
1357 |
-
#:
|
1358 |
-
msgid "
|
1359 |
-
msgstr "
|
1360 |
-
|
1361 |
-
#:
|
1362 |
-
msgid "
|
1363 |
-
msgstr "
|
1364 |
-
|
1365 |
-
#:
|
1366 |
-
msgid "
|
1367 |
-
msgstr "
|
1368 |
-
|
1369 |
-
#:
|
1370 |
-
msgid "
|
1371 |
-
msgstr "
|
1372 |
-
|
1373 |
-
#:
|
1374 |
-
msgid "
|
1375 |
-
msgstr "
|
1376 |
-
|
1377 |
-
#:
|
1378 |
-
msgid "
|
1379 |
-
msgstr "
|
1380 |
-
|
1381 |
-
#:
|
1382 |
-
|
1383 |
-
|
1384 |
-
|
1385 |
-
|
1386 |
-
|
1387 |
-
|
1388 |
-
|
1389 |
-
|
1390 |
-
|
1391 |
-
"
|
1392 |
-
|
1393 |
-
|
1394 |
-
|
1395 |
-
|
1396 |
-
|
1397 |
-
|
1398 |
-
|
1399 |
-
|
1400 |
-
|
1401 |
-
|
1402 |
-
"
|
1403 |
-
msgstr ""
|
1404 |
-
|
1405 |
-
|
1406 |
-
|
1407 |
-
|
1408 |
-
|
1409 |
-
|
1410 |
-
"
|
1411 |
-
msgstr ""
|
1412 |
-
|
1413 |
-
|
1414 |
-
|
1415 |
-
|
1416 |
-
|
1417 |
-
|
1418 |
-
|
1419 |
-
|
1420 |
-
|
1421 |
-
|
1422 |
-
|
1423 |
-
|
1424 |
-
|
1425 |
-
|
1426 |
-
|
1427 |
-
|
1428 |
-
|
1429 |
-
|
1430 |
-
|
1431 |
-
|
1432 |
-
|
1433 |
-
|
1434 |
-
"
|
1435 |
-
"
|
1436 |
-
|
1437 |
-
|
1438 |
-
|
1439 |
-
"
|
1440 |
-
|
1441 |
-
|
1442 |
-
|
1443 |
-
"
|
1444 |
-
|
1445 |
-
#:
|
1446 |
-
msgid "
|
1447 |
-
msgstr "
|
1448 |
-
|
1449 |
-
#:
|
1450 |
-
msgid "
|
1451 |
-
msgstr "
|
1452 |
-
|
1453 |
-
#:
|
1454 |
-
msgid "
|
1455 |
-
msgstr "
|
1456 |
-
|
1457 |
-
#:
|
1458 |
-
msgid "
|
1459 |
-
msgstr "
|
1460 |
-
|
1461 |
-
#:
|
1462 |
-
|
1463 |
-
|
1464 |
-
|
1465 |
-
|
1466 |
-
|
1467 |
-
|
1468 |
-
|
1469 |
-
|
1470 |
-
|
1471 |
-
|
1472 |
-
|
1473 |
-
|
1474 |
-
|
1475 |
-
|
1476 |
-
|
1477 |
-
|
1478 |
-
|
1479 |
-
|
1480 |
-
|
1481 |
-
|
1482 |
-
|
1483 |
-
|
1484 |
-
|
1485 |
-
|
1486 |
-
"
|
1487 |
-
"
|
1488 |
-
|
1489 |
-
|
1490 |
-
"
|
1491 |
-
"
|
1492 |
-
|
1493 |
-
#:
|
1494 |
-
msgid "
|
1495 |
-
msgstr ""
|
1496 |
-
|
1497 |
-
|
1498 |
-
|
1499 |
-
|
1500 |
-
|
1501 |
-
|
1502 |
-
|
1503 |
-
|
1504 |
-
|
1505 |
-
|
1506 |
-
|
1507 |
-
|
1508 |
-
|
1509 |
-
|
1510 |
-
#:
|
1511 |
-
msgid "
|
1512 |
-
msgstr "
|
1513 |
-
|
1514 |
-
#:
|
1515 |
-
msgid "
|
1516 |
-
msgstr "
|
1517 |
-
|
1518 |
-
#:
|
1519 |
-
msgid "
|
1520 |
-
msgstr "
|
1521 |
-
|
1522 |
-
#:
|
1523 |
-
msgid "
|
1524 |
-
msgstr "
|
1525 |
-
|
1526 |
-
#:
|
1527 |
-
msgid "
|
1528 |
-
msgstr "
|
1529 |
-
|
1530 |
-
#:
|
1531 |
-
msgid "
|
1532 |
-
msgstr "
|
1533 |
-
|
1534 |
-
#:
|
1535 |
-
msgid "
|
1536 |
-
msgstr "
|
1537 |
-
|
1538 |
-
#:
|
1539 |
-
msgid "
|
1540 |
-
msgstr "
|
1541 |
-
|
1542 |
-
#:
|
1543 |
-
msgid "
|
1544 |
-
msgstr "
|
1545 |
-
|
1546 |
-
#:
|
1547 |
-
msgid "
|
1548 |
-
msgstr "
|
1549 |
-
|
1550 |
-
#:
|
1551 |
-
msgid "
|
1552 |
-
msgstr "
|
1553 |
-
|
1554 |
-
#:
|
1555 |
-
msgid "
|
1556 |
-
msgstr "
|
1557 |
-
|
1558 |
-
#:
|
1559 |
-
msgid "
|
1560 |
-
msgstr "Fehler
|
1561 |
-
|
1562 |
-
#:
|
1563 |
-
msgid "
|
1564 |
-
msgstr "
|
1565 |
-
|
1566 |
-
#:
|
1567 |
-
msgid ""
|
1568 |
-
"
|
1569 |
-
|
1570 |
-
|
1571 |
-
|
1572 |
-
"
|
1573 |
-
|
1574 |
-
|
1575 |
-
|
1576 |
-
|
1577 |
-
|
1578 |
-
#: /
|
1579 |
-
|
1580 |
-
|
1581 |
-
|
1582 |
-
#: /
|
1583 |
-
|
1584 |
-
|
1585 |
-
|
1586 |
-
|
1587 |
-
|
1588 |
-
|
1589 |
-
|
1590 |
-
|
1591 |
-
msgid ""
|
1592 |
-
"
|
1593 |
-
|
1594 |
-
|
1595 |
-
"
|
1596 |
-
"
|
1597 |
-
|
1598 |
-
#:
|
1599 |
-
|
1600 |
-
|
1601 |
-
|
1602 |
-
|
1603 |
-
|
1604 |
-
"
|
1605 |
-
|
1606 |
-
|
1607 |
-
|
1608 |
-
|
1609 |
-
|
1610 |
-
|
1611 |
-
|
1612 |
-
|
1613 |
-
|
1614 |
-
|
1615 |
-
|
1616 |
-
|
1617 |
-
|
1618 |
-
|
1619 |
-
|
1620 |
-
|
1621 |
-
|
1622 |
-
|
1623 |
-
|
1624 |
-
|
1625 |
-
|
1626 |
-
|
1627 |
-
|
1628 |
-
|
1629 |
-
|
1630 |
-
|
1631 |
-
|
1632 |
-
|
1633 |
-
|
1634 |
-
|
1635 |
-
"
|
1636 |
-
|
1637 |
-
|
1638 |
-
|
1639 |
-
"
|
1640 |
-
"
|
1641 |
-
|
1642 |
-
|
1643 |
-
"
|
1644 |
-
|
1645 |
-
|
1646 |
-
|
1647 |
-
"
|
1648 |
-
|
1649 |
-
|
1650 |
-
|
1651 |
-
|
1652 |
-
"
|
1653 |
-
|
1654 |
-
|
1655 |
-
"
|
1656 |
-
|
1657 |
-
|
1658 |
-
|
1659 |
-
"
|
1660 |
-
"
|
1661 |
-
|
1662 |
-
|
1663 |
-
|
1664 |
-
"
|
1665 |
-
|
1666 |
-
|
1667 |
-
"
|
1668 |
-
|
1669 |
-
|
1670 |
-
|
1671 |
-
"
|
1672 |
-
"
|
1673 |
-
|
1674 |
-
|
1675 |
-
|
1676 |
-
"
|
1677 |
-
|
1678 |
-
|
1679 |
-
"
|
1680 |
-
|
1681 |
-
|
1682 |
-
|
1683 |
-
"
|
1684 |
-
"
|
1685 |
-
|
1686 |
-
|
1687 |
-
|
1688 |
-
"
|
1689 |
-
|
1690 |
-
|
1691 |
-
"
|
1692 |
-
|
1693 |
-
|
1694 |
-
|
1695 |
-
"
|
1696 |
-
"
|
1697 |
-
|
1698 |
-
|
1699 |
-
|
1700 |
-
"
|
1701 |
-
|
1702 |
-
|
1703 |
-
"
|
1704 |
-
|
1705 |
-
|
1706 |
-
|
1707 |
-
"
|
1708 |
-
"
|
1709 |
-
|
1710 |
-
|
1711 |
-
|
1712 |
-
"
|
1713 |
-
|
1714 |
-
|
1715 |
-
"
|
1716 |
-
|
1717 |
-
|
1718 |
-
|
1719 |
-
"
|
1720 |
-
"
|
1721 |
-
|
1722 |
-
|
1723 |
-
|
1724 |
-
"
|
1725 |
-
|
1726 |
-
|
1727 |
-
"
|
1728 |
-
|
1729 |
-
|
1730 |
-
|
1731 |
-
"
|
1732 |
-
"
|
1733 |
-
|
1734 |
-
|
1735 |
-
|
1736 |
-
"
|
1737 |
-
|
1738 |
-
|
1739 |
-
"
|
1740 |
-
|
1741 |
-
|
1742 |
-
|
1743 |
-
"
|
1744 |
-
"
|
1745 |
-
|
1746 |
-
|
1747 |
-
|
1748 |
-
"
|
1749 |
-
|
1750 |
-
|
1751 |
-
"
|
1752 |
-
|
1753 |
-
|
1754 |
-
|
1755 |
-
"
|
1756 |
-
|
1757 |
-
|
1758 |
-
|
1759 |
-
"
|
1760 |
-
|
1761 |
-
|
1762 |
-
|
1763 |
-
|
1764 |
-
|
1765 |
-
|
1766 |
-
|
1767 |
-
msgid ""
|
1768 |
-
|
1769 |
-
|
1770 |
-
|
1771 |
-
">
|
1772 |
-
">
|
1773 |
-
|
1774 |
-
|
1775 |
-
|
1776 |
-
"WP All Import
|
1777 |
-
|
1778 |
-
|
1779 |
-
"
|
1780 |
-
"
|
1781 |
-
|
1782 |
-
|
1783 |
-
|
1784 |
-
|
1785 |
-
|
1786 |
-
|
1787 |
-
|
1788 |
-
|
1789 |
-
|
1790 |
-
|
1791 |
-
|
1792 |
-
|
1793 |
-
|
1794 |
-
|
1795 |
-
|
1796 |
-
|
1797 |
-
|
1798 |
-
|
1799 |
-
|
1800 |
-
|
1801 |
-
|
1802 |
-
|
1803 |
-
|
1804 |
-
|
1805 |
-
|
1806 |
-
|
1807 |
-
|
1808 |
-
"
|
1809 |
-
"
|
1810 |
-
|
1811 |
-
|
1812 |
-
"
|
1813 |
-
"
|
1814 |
-
|
1815 |
-
|
1816 |
-
|
1817 |
-
|
1818 |
-
|
1819 |
-
|
1820 |
-
|
1821 |
-
|
1822 |
-
|
1823 |
-
|
1824 |
-
|
1825 |
-
"
|
1826 |
-
"
|
1827 |
-
|
1828 |
-
#:
|
1829 |
-
|
1830 |
-
|
1831 |
-
|
1832 |
-
|
1833 |
-
|
1834 |
-
|
1835 |
-
|
1836 |
-
|
1837 |
-
"
|
1838 |
-
msgstr ""
|
1839 |
-
|
1840 |
-
|
1841 |
-
|
1842 |
-
|
1843 |
-
|
1844 |
-
|
1845 |
-
|
1846 |
-
|
1847 |
-
|
1848 |
-
|
1849 |
-
|
1850 |
-
|
1851 |
-
|
1852 |
-
|
1853 |
-
|
1854 |
-
|
1855 |
-
|
1856 |
-
|
1857 |
-
|
1858 |
-
|
1859 |
-
|
1860 |
-
#:
|
1861 |
-
|
1862 |
-
|
1863 |
-
|
1864 |
-
|
1865 |
-
|
1866 |
-
|
1867 |
-
|
1868 |
-
|
1869 |
-
|
1870 |
-
|
1871 |
-
|
1872 |
-
|
1873 |
-
|
1874 |
-
|
1875 |
-
|
1876 |
-
|
1877 |
-
|
1878 |
-
|
1879 |
-
|
1880 |
-
|
1881 |
-
|
1882 |
-
|
1883 |
-
|
1884 |
-
|
1885 |
-
|
1886 |
-
|
1887 |
-
|
1888 |
-
|
1889 |
-
|
1890 |
-
|
1891 |
-
|
1892 |
-
|
1893 |
-
|
1894 |
-
|
1895 |
-
|
1896 |
-
|
1897 |
-
|
1898 |
-
|
1899 |
-
|
1900 |
-
#:
|
1901 |
-
|
1902 |
-
|
1903 |
-
|
1904 |
-
|
1905 |
-
|
1906 |
-
|
1907 |
-
|
1908 |
-
|
1909 |
-
|
1910 |
-
|
1911 |
-
|
1912 |
-
|
1913 |
-
|
1914 |
-
|
1915 |
-
|
1916 |
-
|
1917 |
-
|
1918 |
-
|
1919 |
-
#:
|
1920 |
-
msgid "
|
1921 |
-
msgstr "
|
1922 |
-
|
1923 |
-
#:
|
1924 |
-
msgid "
|
1925 |
-
msgstr "
|
1926 |
-
|
1927 |
-
#:
|
1928 |
-
msgid ""
|
1929 |
-
|
1930 |
-
|
1931 |
-
|
1932 |
-
|
1933 |
-
|
1934 |
-
|
1935 |
-
|
1936 |
-
|
1937 |
-
|
1938 |
-
|
1939 |
-
|
1940 |
-
|
1941 |
-
|
1942 |
-
|
1943 |
-
|
1944 |
-
|
1945 |
-
|
1946 |
-
|
1947 |
-
|
1948 |
-
|
1949 |
-
|
1950 |
-
|
1951 |
-
|
1952 |
-
|
1953 |
-
|
1954 |
-
|
1955 |
-
|
1956 |
-
|
1957 |
-
|
1958 |
-
|
1959 |
-
|
1960 |
-
|
1961 |
-
|
1962 |
-
|
1963 |
-
|
1964 |
-
|
1965 |
-
|
1966 |
-
|
1967 |
-
|
1968 |
-
|
1969 |
-
|
1970 |
-
|
1971 |
-
|
1972 |
-
|
1973 |
-
|
1974 |
-
|
1975 |
-
|
1976 |
-
|
1977 |
-
|
1978 |
-
|
1979 |
-
|
1980 |
-
|
1981 |
-
|
1982 |
-
msgid "
|
1983 |
-
msgstr "
|
1984 |
-
|
1985 |
-
#:
|
1986 |
-
|
1987 |
-
|
1988 |
-
|
1989 |
-
|
1990 |
-
|
1991 |
-
|
1992 |
-
|
1993 |
-
|
1994 |
-
"
|
1995 |
-
|
1996 |
-
|
1997 |
-
|
1998 |
-
msgid "
|
1999 |
-
msgstr "
|
2000 |
-
|
2001 |
-
#:
|
2002 |
-
|
2003 |
-
|
2004 |
-
|
2005 |
-
|
2006 |
-
|
2007 |
-
|
2008 |
-
|
2009 |
-
|
2010 |
-
|
2011 |
-
|
2012 |
-
|
2013 |
-
|
2014 |
-
|
2015 |
-
|
2016 |
-
|
2017 |
-
|
2018 |
-
|
2019 |
-
|
2020 |
-
|
2021 |
-
|
2022 |
-
msgid "
|
2023 |
-
msgstr "
|
2024 |
-
|
2025 |
-
#:
|
2026 |
-
|
2027 |
-
|
2028 |
-
|
2029 |
-
|
2030 |
-
|
2031 |
-
|
2032 |
-
|
2033 |
-
|
2034 |
-
|
2035 |
-
|
2036 |
-
|
2037 |
-
|
2038 |
-
"
|
2039 |
-
"
|
2040 |
-
|
2041 |
-
|
2042 |
-
|
2043 |
-
|
2044 |
-
|
2045 |
-
|
2046 |
-
msgid "
|
2047 |
-
msgstr "
|
2048 |
-
|
2049 |
-
#:
|
2050 |
-
|
2051 |
-
|
2052 |
-
|
2053 |
-
|
2054 |
-
|
2055 |
-
|
2056 |
-
|
2057 |
-
|
2058 |
-
|
2059 |
-
|
2060 |
-
|
2061 |
-
|
2062 |
-
|
2063 |
-
|
2064 |
-
|
2065 |
-
|
2066 |
-
msgid "
|
2067 |
-
msgstr "
|
2068 |
-
|
2069 |
-
#:
|
2070 |
-
|
2071 |
-
|
2072 |
-
|
2073 |
-
|
2074 |
-
|
2075 |
-
|
2076 |
-
|
2077 |
-
|
2078 |
-
|
2079 |
-
|
2080 |
-
|
2081 |
-
|
2082 |
-
|
2083 |
-
|
2084 |
-
|
2085 |
-
|
2086 |
-
msgid "
|
2087 |
-
msgstr "
|
2088 |
-
|
2089 |
-
#:
|
2090 |
-
|
2091 |
-
|
2092 |
-
|
2093 |
-
|
2094 |
-
|
2095 |
-
|
2096 |
-
|
2097 |
-
|
2098 |
-
|
2099 |
-
|
2100 |
-
|
2101 |
-
|
2102 |
-
|
2103 |
-
|
2104 |
-
|
2105 |
-
|
2106 |
-
|
2107 |
-
|
2108 |
-
|
2109 |
-
|
2110 |
-
msgid "
|
2111 |
-
msgstr "
|
2112 |
-
|
2113 |
-
#:
|
2114 |
-
|
2115 |
-
|
2116 |
-
|
2117 |
-
|
2118 |
-
|
2119 |
-
|
2120 |
-
|
2121 |
-
|
2122 |
-
|
2123 |
-
|
2124 |
-
|
2125 |
-
|
2126 |
-
|
2127 |
-
|
2128 |
-
|
2129 |
-
|
2130 |
-
msgid "
|
2131 |
-
msgstr "
|
2132 |
-
|
2133 |
-
#:
|
2134 |
-
|
2135 |
-
|
2136 |
-
|
2137 |
-
|
2138 |
-
|
2139 |
-
|
2140 |
-
|
2141 |
-
|
2142 |
-
|
2143 |
-
|
2144 |
-
|
2145 |
-
|
2146 |
-
"
|
2147 |
-
msgstr ""
|
2148 |
-
|
2149 |
-
|
2150 |
-
|
2151 |
-
|
2152 |
-
|
2153 |
-
|
2154 |
-
"
|
2155 |
-
"
|
2156 |
-
|
2157 |
-
|
2158 |
-
"
|
2159 |
-
|
2160 |
-
|
2161 |
-
|
2162 |
-
msgid ""
|
2163 |
-
"
|
2164 |
-
|
2165 |
-
|
2166 |
-
"
|
2167 |
-
"
|
2168 |
-
|
2169 |
-
#:
|
2170 |
-
|
2171 |
-
|
2172 |
-
|
2173 |
-
|
2174 |
-
"
|
2175 |
-
|
2176 |
-
|
2177 |
-
|
2178 |
-
|
2179 |
-
|
2180 |
-
|
2181 |
-
|
2182 |
-
msgid "
|
2183 |
-
msgstr "
|
2184 |
-
|
2185 |
-
#:
|
2186 |
-
msgid "
|
2187 |
-
msgstr "
|
2188 |
-
|
2189 |
-
#:
|
2190 |
-
msgid "
|
2191 |
-
msgstr "
|
2192 |
-
|
2193 |
-
#:
|
2194 |
-
|
2195 |
-
|
2196 |
-
|
2197 |
-
|
2198 |
-
|
2199 |
-
|
2200 |
-
|
2201 |
-
|
2202 |
-
#:
|
2203 |
-
|
2204 |
-
|
2205 |
-
|
2206 |
-
|
2207 |
-
#:
|
2208 |
-
|
2209 |
-
|
2210 |
-
|
2211 |
-
#:
|
2212 |
-
|
2213 |
-
|
2214 |
-
|
2215 |
-
|
2216 |
-
|
2217 |
-
#:
|
2218 |
-
|
2219 |
-
|
2220 |
-
|
2221 |
-
|
2222 |
-
|
2223 |
-
|
2224 |
-
|
2225 |
-
|
2226 |
-
|
2227 |
-
|
2228 |
-
|
2229 |
-
|
2230 |
-
|
2231 |
-
|
2232 |
-
|
2233 |
-
|
2234 |
-
msgid "
|
2235 |
-
msgstr "
|
2236 |
-
|
2237 |
-
#:
|
2238 |
-
|
2239 |
-
|
2240 |
-
|
2241 |
-
|
2242 |
-
|
2243 |
-
|
2244 |
-
|
2245 |
-
|
2246 |
-
|
2247 |
-
|
2248 |
-
|
2249 |
-
|
2250 |
-
|
2251 |
-
|
2252 |
-
|
2253 |
-
|
2254 |
-
msgid "
|
2255 |
-
msgstr "
|
2256 |
-
|
2257 |
-
#:
|
2258 |
-
|
2259 |
-
|
2260 |
-
|
2261 |
-
|
2262 |
-
|
2263 |
-
|
2264 |
-
|
2265 |
-
|
2266 |
-
|
2267 |
-
|
2268 |
-
|
2269 |
-
|
2270 |
-
#:
|
2271 |
-
|
2272 |
-
|
2273 |
-
|
2274 |
-
|
2275 |
-
|
2276 |
-
|
2277 |
-
|
2278 |
-
|
2279 |
-
|
2280 |
-
|
2281 |
-
|
2282 |
-
|
2283 |
-
"
|
2284 |
-
"
|
2285 |
-
|
2286 |
-
|
2287 |
-
"
|
2288 |
-
|
2289 |
-
|
2290 |
-
|
2291 |
-
msgid ""
|
2292 |
-
"
|
2293 |
-
|
2294 |
-
|
2295 |
-
|
2296 |
-
|
2297 |
-
|
2298 |
-
|
2299 |
-
|
2300 |
-
|
2301 |
-
|
2302 |
-
|
2303 |
-
|
2304 |
-
|
2305 |
-
msgid "
|
2306 |
-
msgstr "
|
2307 |
-
|
2308 |
-
#:
|
2309 |
-
|
2310 |
-
msgid "
|
2311 |
-
msgstr "
|
2312 |
-
|
2313 |
-
#:
|
2314 |
-
|
2315 |
-
|
2316 |
-
|
2317 |
-
|
2318 |
-
|
2319 |
-
"
|
2320 |
-
|
2321 |
-
|
2322 |
-
|
2323 |
-
|
2324 |
-
|
2325 |
-
|
2326 |
-
"
|
2327 |
-
msgstr ""
|
2328 |
-
|
2329 |
-
|
2330 |
-
|
2331 |
-
|
2332 |
-
|
2333 |
-
|
2334 |
-
|
2335 |
-
"
|
2336 |
-
msgstr ""
|
2337 |
-
|
2338 |
-
|
2339 |
-
|
2340 |
-
|
2341 |
-
|
2342 |
-
|
2343 |
-
|
2344 |
-
|
2345 |
-
|
2346 |
-
|
2347 |
-
|
2348 |
-
|
2349 |
-
|
2350 |
-
|
2351 |
-
|
2352 |
-
|
2353 |
-
|
2354 |
-
|
2355 |
-
|
2356 |
-
|
2357 |
-
|
2358 |
-
|
2359 |
-
msgstr ""
|
2360 |
-
|
2361 |
-
|
2362 |
-
|
2363 |
-
|
2364 |
-
|
2365 |
-
|
2366 |
-
|
2367 |
-
#:
|
2368 |
-
msgid "
|
2369 |
-
msgstr ""
|
2370 |
-
|
2371 |
-
|
2372 |
-
|
2373 |
-
|
2374 |
-
|
2375 |
-
|
2376 |
-
|
2377 |
-
|
2378 |
-
|
2379 |
-
|
2380 |
-
|
2381 |
-
|
2382 |
-
|
2383 |
-
|
2384 |
-
|
2385 |
-
|
2386 |
-
|
2387 |
-
|
2388 |
-
|
2389 |
-
|
2390 |
-
|
2391 |
-
|
2392 |
-
|
2393 |
-
|
2394 |
-
|
2395 |
-
|
2396 |
-
|
2397 |
-
|
2398 |
-
|
2399 |
-
|
2400 |
-
|
2401 |
-
|
2402 |
-
|
2403 |
-
|
2404 |
-
|
2405 |
-
|
2406 |
-
"
|
2407 |
-
|
2408 |
-
|
2409 |
-
|
2410 |
-
|
2411 |
-
|
2412 |
-
|
2413 |
-
|
2414 |
-
|
2415 |
-
|
2416 |
-
|
2417 |
-
|
2418 |
-
|
2419 |
-
|
2420 |
-
|
2421 |
-
|
2422 |
-
|
2423 |
-
#:
|
2424 |
-
msgid "
|
2425 |
-
msgstr "
|
2426 |
-
|
2427 |
-
#:
|
2428 |
-
|
2429 |
-
|
2430 |
-
|
2431 |
-
|
2432 |
-
|
2433 |
-
|
2434 |
-
|
2435 |
-
#:
|
2436 |
-
|
2437 |
-
|
2438 |
-
|
2439 |
-
|
2440 |
-
#:
|
2441 |
-
msgid "
|
2442 |
-
msgstr "
|
2443 |
-
|
2444 |
-
#:
|
2445 |
-
|
2446 |
-
|
2447 |
-
|
2448 |
-
|
2449 |
-
|
2450 |
-
|
2451 |
-
|
2452 |
-
|
2453 |
-
|
2454 |
-
|
2455 |
-
|
2456 |
-
|
2457 |
-
|
2458 |
-
|
2459 |
-
|
2460 |
-
|
2461 |
-
|
2462 |
-
|
2463 |
-
msgid "
|
2464 |
-
msgstr "
|
2465 |
-
|
2466 |
-
#:
|
2467 |
-
|
2468 |
-
|
2469 |
-
|
2470 |
-
|
2471 |
-
|
2472 |
-
|
2473 |
-
|
2474 |
-
|
2475 |
-
|
2476 |
-
|
2477 |
-
|
2478 |
-
|
2479 |
-
|
2480 |
-
|
2481 |
-
|
2482 |
-
|
2483 |
-
|
2484 |
-
|
2485 |
-
|
2486 |
-
|
2487 |
-
|
2488 |
-
|
2489 |
-
|
2490 |
-
#:
|
2491 |
-
|
2492 |
-
|
2493 |
-
|
2494 |
-
|
2495 |
-
|
2496 |
-
|
2497 |
-
|
2498 |
-
|
2499 |
-
|
2500 |
-
#:
|
2501 |
-
|
2502 |
-
|
2503 |
-
|
2504 |
-
|
2505 |
-
|
2506 |
-
|
2507 |
-
|
2508 |
-
|
2509 |
-
|
2510 |
-
|
2511 |
-
|
2512 |
-
|
2513 |
-
msgid "
|
2514 |
-
msgstr "
|
2515 |
-
|
2516 |
-
#:
|
2517 |
-
msgid "
|
2518 |
-
msgstr "
|
2519 |
-
|
2520 |
-
#:
|
2521 |
-
msgid "
|
2522 |
-
msgstr "Manueller
|
2523 |
-
|
2524 |
-
#:
|
2525 |
-
msgid "
|
2526 |
-
msgstr "
|
2527 |
-
|
2528 |
-
#:
|
2529 |
-
msgid "
|
2530 |
-
msgstr "
|
2531 |
-
|
2532 |
-
#:
|
2533 |
-
msgid "
|
2534 |
-
msgstr "
|
2535 |
-
|
2536 |
-
#:
|
2537 |
-
msgid "
|
2538 |
-
msgstr "
|
2539 |
-
|
2540 |
-
#:
|
2541 |
-
|
2542 |
-
|
2543 |
-
|
2544 |
-
|
2545 |
-
#:
|
2546 |
-
|
2547 |
-
|
2548 |
-
|
2549 |
-
|
2550 |
-
|
2551 |
-
|
2552 |
-
|
2553 |
-
#:
|
2554 |
-
|
2555 |
-
|
2556 |
-
|
2557 |
-
|
2558 |
-
|
2559 |
-
|
2560 |
-
|
2561 |
-
|
2562 |
-
|
2563 |
-
|
2564 |
-
|
2565 |
-
#:
|
2566 |
-
#:
|
2567 |
-
msgid "
|
2568 |
-
msgstr "
|
2569 |
-
|
2570 |
-
#:
|
2571 |
-
|
2572 |
-
|
2573 |
-
|
2574 |
-
|
2575 |
-
|
2576 |
-
|
2577 |
-
|
2578 |
-
|
2579 |
-
|
2580 |
-
|
2581 |
-
"
|
2582 |
-
|
2583 |
-
|
2584 |
-
|
2585 |
-
|
2586 |
-
|
2587 |
-
|
2588 |
-
#:
|
2589 |
-
msgid "
|
2590 |
-
msgstr "
|
2591 |
-
|
2592 |
-
#:
|
2593 |
-
msgid "
|
2594 |
-
msgstr "
|
2595 |
-
|
2596 |
-
#:
|
2597 |
-
|
2598 |
-
|
2599 |
-
|
2600 |
-
|
2601 |
-
|
2602 |
-
|
2603 |
-
|
2604 |
-
|
2605 |
-
|
2606 |
-
|
2607 |
-
|
2608 |
-
#:
|
2609 |
-
|
2610 |
-
|
2611 |
-
|
2612 |
-
#:
|
2613 |
-
|
2614 |
-
|
2615 |
-
|
2616 |
-
|
2617 |
-
|
2618 |
-
|
2619 |
-
|
2620 |
-
|
2621 |
-
"
|
2622 |
-
msgstr ""
|
2623 |
-
|
2624 |
-
|
2625 |
-
|
2626 |
-
|
2627 |
-
|
2628 |
-
|
2629 |
-
|
2630 |
-
#:
|
2631 |
-
|
2632 |
-
|
2633 |
-
|
2634 |
-
|
2635 |
-
|
2636 |
-
"
|
2637 |
-
"
|
2638 |
-
|
2639 |
-
#:
|
2640 |
-
|
2641 |
-
msgid ""
|
2642 |
-
|
2643 |
-
|
2644 |
-
|
2645 |
-
|
2646 |
-
"
|
2647 |
-
|
2648 |
-
|
2649 |
-
|
2650 |
-
msgid ""
|
2651 |
-
|
2652 |
-
|
2653 |
-
|
2654 |
-
"
|
2655 |
-
"
|
2656 |
-
|
2657 |
-
#:
|
2658 |
-
|
2659 |
-
msgid "
|
2660 |
-
msgstr "
|
2661 |
-
|
2662 |
-
#:
|
2663 |
-
|
2664 |
-
|
2665 |
-
|
2666 |
-
|
2667 |
-
|
2668 |
-
|
2669 |
-
#:
|
2670 |
-
|
2671 |
-
|
2672 |
-
|
2673 |
-
|
2674 |
-
|
2675 |
-
|
2676 |
-
|
2677 |
-
|
2678 |
-
#:
|
2679 |
-
|
2680 |
-
|
2681 |
-
|
2682 |
-
|
2683 |
-
|
2684 |
-
|
2685 |
-
|
2686 |
-
|
2687 |
-
|
2688 |
-
|
2689 |
-
|
2690 |
-
|
2691 |
-
"
|
2692 |
-
msgstr ""
|
2693 |
-
|
2694 |
-
|
2695 |
-
|
2696 |
-
|
2697 |
-
|
2698 |
-
|
2699 |
-
"
|
2700 |
-
"
|
2701 |
-
|
2702 |
-
|
2703 |
-
|
2704 |
-
|
2705 |
-
|
2706 |
-
|
2707 |
-
|
2708 |
-
"
|
2709 |
-
msgstr ""
|
2710 |
-
|
2711 |
-
|
2712 |
-
|
2713 |
-
|
2714 |
-
|
2715 |
-
|
2716 |
-
|
2717 |
-
"
|
2718 |
-
|
2719 |
-
|
2720 |
-
|
2721 |
-
|
2722 |
-
"
|
2723 |
-
msgstr ""
|
2724 |
-
|
2725 |
-
|
2726 |
-
|
2727 |
-
|
2728 |
-
|
2729 |
-
|
2730 |
-
|
2731 |
-
|
2732 |
-
|
2733 |
-
|
2734 |
-
|
2735 |
-
|
2736 |
-
|
2737 |
-
|
2738 |
-
|
2739 |
-
|
2740 |
-
|
2741 |
-
|
2742 |
-
|
2743 |
-
|
2744 |
-
|
2745 |
-
|
2746 |
-
|
2747 |
-
|
2748 |
-
|
2749 |
-
|
2750 |
-
|
2751 |
-
|
2752 |
-
|
2753 |
-
|
2754 |
-
|
2755 |
-
|
2756 |
-
|
2757 |
-
|
2758 |
-
|
2759 |
-
|
2760 |
-
|
2761 |
-
|
2762 |
-
|
2763 |
-
|
2764 |
-
|
2765 |
-
|
2766 |
-
|
2767 |
-
|
2768 |
-
|
2769 |
-
|
2770 |
-
|
2771 |
-
|
2772 |
-
|
2773 |
-
|
2774 |
-
|
2775 |
-
|
2776 |
-
|
2777 |
-
|
2778 |
-
msgid "
|
2779 |
-
msgstr "
|
2780 |
-
|
2781 |
-
#:
|
2782 |
-
msgid "
|
2783 |
-
msgstr "
|
2784 |
-
|
2785 |
-
#:
|
2786 |
-
|
2787 |
-
|
2788 |
-
|
2789 |
-
|
2790 |
-
|
2791 |
-
|
2792 |
-
|
2793 |
-
|
2794 |
-
|
2795 |
-
|
2796 |
-
|
2797 |
-
|
2798 |
-
|
2799 |
-
|
2800 |
-
msgid "all
|
2801 |
-
msgstr "
|
2802 |
-
|
2803 |
-
#:
|
2804 |
-
msgid "
|
2805 |
-
msgstr "
|
2806 |
-
|
2807 |
-
#:
|
2808 |
-
msgid "
|
2809 |
-
msgstr "
|
2810 |
-
|
2811 |
-
#:
|
2812 |
-
|
2813 |
-
msgid "
|
2814 |
-
msgstr "
|
2815 |
-
|
2816 |
-
#:
|
2817 |
-
|
2818 |
-
msgid "
|
2819 |
-
msgstr "
|
2820 |
-
|
2821 |
-
#:
|
2822 |
-
|
2823 |
-
msgid "
|
2824 |
-
msgstr ""
|
2825 |
-
|
2826 |
-
|
2827 |
-
|
2828 |
-
|
2829 |
-
|
2830 |
-
|
2831 |
-
|
2832 |
-
|
2833 |
-
|
2834 |
-
|
2835 |
-
|
2836 |
-
|
2837 |
-
|
2838 |
-
|
2839 |
-
|
2840 |
-
|
2841 |
-
|
2842 |
-
msgstr ""
|
2843 |
-
|
2844 |
-
|
2845 |
-
|
2846 |
-
|
2847 |
-
|
2848 |
-
|
2849 |
-
|
2850 |
-
|
2851 |
-
|
2852 |
-
|
2853 |
-
|
2854 |
-
|
2855 |
-
|
2856 |
-
|
2857 |
-
"
|
2858 |
-
|
2859 |
-
|
2860 |
-
#:
|
2861 |
-
msgid "
|
2862 |
-
msgstr "
|
2863 |
-
|
2864 |
-
#:
|
2865 |
-
|
2866 |
-
|
2867 |
-
|
2868 |
-
|
2869 |
-
|
2870 |
-
|
2871 |
-
|
2872 |
-
|
2873 |
-
|
2874 |
-
|
2875 |
-
|
2876 |
-
|
2877 |
-
|
2878 |
-
|
2879 |
-
|
2880 |
-
|
2881 |
-
|
2882 |
-
|
2883 |
-
|
2884 |
-
|
2885 |
-
|
2886 |
-
|
2887 |
-
|
2888 |
-
|
2889 |
-
"
|
2890 |
-
msgstr ""
|
2891 |
-
|
2892 |
-
|
2893 |
-
|
2894 |
-
|
2895 |
-
|
2896 |
-
|
2897 |
-
|
2898 |
-
|
2899 |
-
|
2900 |
-
|
2901 |
-
"
|
2902 |
-
|
2903 |
-
|
2904 |
-
|
2905 |
-
"
|
2906 |
-
msgstr ""
|
2907 |
-
|
2908 |
-
|
2909 |
-
|
2910 |
-
|
2911 |
-
|
2912 |
-
|
2913 |
-
|
2914 |
-
|
2915 |
-
|
2916 |
-
|
2917 |
-
|
2918 |
-
|
2919 |
-
|
2920 |
-
|
2921 |
-
|
2922 |
-
|
2923 |
-
|
2924 |
-
#:
|
2925 |
-
#:
|
2926 |
-
|
2927 |
-
|
2928 |
-
|
2929 |
-
|
2930 |
-
|
2931 |
-
|
2932 |
-
|
2933 |
-
|
2934 |
-
|
2935 |
-
|
2936 |
-
|
2937 |
-
|
2938 |
-
|
2939 |
-
|
2940 |
-
|
2941 |
-
|
2942 |
-
|
2943 |
-
|
2944 |
-
|
2945 |
-
|
2946 |
-
|
2947 |
-
|
2948 |
-
|
2949 |
-
|
2950 |
-
|
2951 |
-
|
2952 |
-
|
2953 |
-
|
2954 |
-
|
2955 |
-
|
2956 |
-
|
2957 |
-
|
2958 |
-
|
2959 |
-
|
2960 |
-
|
2961 |
-
|
2962 |
-
|
2963 |
-
|
2964 |
-
|
2965 |
-
|
2966 |
-
|
2967 |
-
|
2968 |
-
|
2969 |
-
|
2970 |
-
|
2971 |
-
|
2972 |
-
|
2973 |
-
|
2974 |
-
|
2975 |
-
|
2976 |
-
|
2977 |
-
|
2978 |
-
|
2979 |
-
|
2980 |
-
|
2981 |
-
|
2982 |
-
|
2983 |
-
|
2984 |
-
|
2985 |
-
#:
|
2986 |
-
msgid "
|
2987 |
-
msgstr "
|
2988 |
-
|
2989 |
-
#:
|
2990 |
-
msgid "
|
2991 |
-
msgstr "
|
2992 |
-
|
2993 |
-
#:
|
2994 |
-
msgid ""
|
2995 |
-
"
|
2996 |
-
|
2997 |
-
|
2998 |
-
"
|
2999 |
-
"die
|
3000 |
-
|
3001 |
-
#:
|
3002 |
-
msgid "
|
3003 |
-
msgstr "
|
3004 |
-
|
3005 |
-
#:
|
3006 |
-
msgid "
|
3007 |
-
msgstr "
|
3008 |
-
|
3009 |
-
#:
|
3010 |
-
|
3011 |
-
msgid "
|
3012 |
-
msgstr "
|
3013 |
-
|
3014 |
-
#:
|
3015 |
-
|
3016 |
-
|
3017 |
-
|
3018 |
-
|
3019 |
-
#:
|
3020 |
-
msgid "
|
3021 |
-
msgstr ""
|
3022 |
-
|
3023 |
-
|
3024 |
-
|
3025 |
-
|
3026 |
-
|
3027 |
-
|
3028 |
-
|
3029 |
-
|
3030 |
-
|
3031 |
-
"<strong
|
3032 |
-
|
3033 |
-
|
3034 |
-
|
3035 |
-
|
3036 |
-
|
3037 |
-
|
3038 |
-
|
3039 |
-
|
3040 |
-
|
3041 |
-
|
3042 |
-
|
3043 |
-
|
3044 |
-
|
3045 |
-
|
3046 |
-
|
3047 |
-
|
3048 |
-
|
3049 |
-
|
3050 |
-
|
3051 |
-
|
3052 |
-
|
3053 |
-
|
3054 |
-
"
|
3055 |
-
"
|
3056 |
-
|
3057 |
-
|
3058 |
-
|
3059 |
-
|
3060 |
-
|
3061 |
-
|
3062 |
-
|
3063 |
-
|
3064 |
-
|
3065 |
-
|
3066 |
-
|
3067 |
-
|
3068 |
-
|
3069 |
-
|
3070 |
-
|
3071 |
-
#:
|
3072 |
-
msgid "
|
3073 |
-
msgstr "
|
3074 |
-
|
3075 |
-
#:
|
3076 |
-
|
3077 |
-
|
3078 |
-
|
3079 |
-
|
3080 |
-
|
3081 |
-
|
3082 |
-
|
3083 |
-
|
3084 |
-
"
|
3085 |
-
msgstr ""
|
3086 |
-
|
3087 |
-
|
3088 |
-
"
|
3089 |
-
|
3090 |
-
|
3091 |
-
#:
|
3092 |
-
msgid "
|
3093 |
-
msgstr "
|
3094 |
-
|
3095 |
-
#:
|
3096 |
-
|
3097 |
-
|
3098 |
-
|
3099 |
-
|
3100 |
-
"
|
3101 |
-
|
3102 |
-
|
3103 |
-
|
3104 |
-
|
3105 |
-
|
3106 |
-
|
3107 |
-
|
3108 |
-
|
3109 |
-
|
3110 |
-
|
3111 |
-
|
3112 |
-
|
3113 |
-
|
3114 |
-
|
3115 |
-
|
3116 |
-
|
3117 |
-
|
3118 |
-
|
3119 |
-
|
3120 |
-
|
3121 |
-
|
3122 |
-
|
3123 |
-
|
3124 |
-
|
3125 |
-
|
3126 |
-
|
3127 |
-
|
3128 |
-
|
3129 |
-
|
3130 |
-
|
3131 |
-
|
3132 |
-
"
|
3133 |
-
"
|
3134 |
-
|
3135 |
-
|
3136 |
-
"
|
3137 |
-
"
|
3138 |
-
|
3139 |
-
#:
|
3140 |
-
msgid ""
|
3141 |
-
"
|
3142 |
-
|
3143 |
-
|
3144 |
-
|
3145 |
-
"Die
|
3146 |
-
|
3147 |
-
|
3148 |
-
|
3149 |
-
|
3150 |
-
|
3151 |
-
|
3152 |
-
|
3153 |
-
|
3154 |
-
|
3155 |
-
|
3156 |
-
|
3157 |
-
|
3158 |
-
|
3159 |
-
#:
|
3160 |
-
msgid "
|
3161 |
-
msgstr "
|
3162 |
-
|
3163 |
-
#:
|
3164 |
-
msgid ""
|
3165 |
-
"
|
3166 |
-
|
3167 |
-
|
3168 |
-
"
|
3169 |
-
"
|
3170 |
-
|
3171 |
-
#:
|
3172 |
-
msgid ""
|
3173 |
-
"
|
3174 |
-
|
3175 |
-
|
3176 |
-
|
3177 |
-
"
|
3178 |
-
|
3179 |
-
|
3180 |
-
"
|
3181 |
-
|
3182 |
-
|
3183 |
-
|
3184 |
-
|
3185 |
-
|
3186 |
-
|
3187 |
-
|
3188 |
-
"
|
3189 |
-
"
|
3190 |
-
|
3191 |
-
|
3192 |
-
"
|
3193 |
-
|
3194 |
-
|
3195 |
-
|
3196 |
-
"
|
3197 |
-
"
|
3198 |
-
|
3199 |
-
|
3200 |
-
|
3201 |
-
|
3202 |
-
|
3203 |
-
#:
|
3204 |
-
msgid "
|
3205 |
-
msgstr "
|
3206 |
-
|
3207 |
-
#:
|
3208 |
-
msgid ""
|
3209 |
-
|
3210 |
-
|
3211 |
-
|
3212 |
-
"
|
3213 |
-
"
|
3214 |
-
|
3215 |
-
|
3216 |
-
|
3217 |
-
|
3218 |
-
|
3219 |
-
|
3220 |
-
msgid ""
|
3221 |
-
|
3222 |
-
|
3223 |
-
|
3224 |
-
|
3225 |
-
|
3226 |
-
|
3227 |
-
#:
|
3228 |
-
msgid "
|
3229 |
-
msgstr "
|
3230 |
-
|
3231 |
-
#:
|
3232 |
-
|
3233 |
-
|
3234 |
-
|
3235 |
-
|
3236 |
-
|
3237 |
-
|
3238 |
-
|
3239 |
-
|
3240 |
-
#:
|
3241 |
-
|
3242 |
-
|
3243 |
-
|
3244 |
-
|
3245 |
-
|
3246 |
-
|
3247 |
-
|
3248 |
-
|
3249 |
-
|
3250 |
-
|
3251 |
-
|
3252 |
-
|
3253 |
-
|
3254 |
-
|
3255 |
-
|
3256 |
-
|
3257 |
-
"
|
3258 |
-
|
3259 |
-
|
3260 |
-
|
3261 |
-
|
3262 |
-
|
3263 |
-
|
3264 |
-
|
3265 |
-
|
3266 |
-
|
3267 |
-
|
3268 |
-
|
3269 |
-
|
3270 |
-
|
3271 |
-
|
3272 |
-
|
3273 |
-
|
3274 |
-
|
3275 |
-
|
3276 |
-
|
3277 |
-
|
3278 |
-
|
3279 |
-
|
3280 |
-
|
3281 |
-
|
3282 |
-
|
3283 |
-
|
3284 |
-
|
3285 |
-
|
3286 |
-
"
|
3287 |
-
msgstr ""
|
3288 |
-
|
3289 |
-
|
3290 |
-
|
3291 |
-
|
3292 |
-
|
3293 |
-
|
3294 |
-
|
3295 |
-
|
3296 |
-
|
3297 |
-
|
3298 |
-
|
3299 |
-
#:
|
3300 |
-
|
3301 |
-
|
3302 |
-
|
3303 |
-
|
3304 |
-
|
3305 |
-
|
3306 |
-
|
3307 |
-
|
3308 |
-
|
3309 |
-
|
3310 |
-
|
3311 |
-
|
3312 |
-
|
3313 |
-
|
3314 |
-
|
3315 |
-
|
3316 |
-
#:
|
3317 |
-
|
3318 |
-
|
3319 |
-
|
3320 |
-
#:
|
3321 |
-
msgid ""
|
3322 |
-
"
|
3323 |
-
|
3324 |
-
|
3325 |
-
|
3326 |
-
|
3327 |
-
|
3328 |
-
|
3329 |
-
|
3330 |
-
|
3331 |
-
|
3332 |
-
|
3333 |
-
|
3334 |
-
|
3335 |
-
|
3336 |
-
|
3337 |
-
|
3338 |
-
|
3339 |
-
|
3340 |
-
msgstr ""
|
3341 |
-
|
3342 |
-
|
3343 |
-
|
3344 |
-
"
|
3345 |
-
"
|
3346 |
-
|
3347 |
-
|
3348 |
-
|
3349 |
-
#:
|
3350 |
-
|
3351 |
-
|
3352 |
-
|
3353 |
-
|
3354 |
-
|
3355 |
-
|
3356 |
-
|
3357 |
-
|
3358 |
-
|
3359 |
-
|
3360 |
-
|
3361 |
-
|
3362 |
-
#:
|
3363 |
-
|
3364 |
-
|
3365 |
-
|
3366 |
-
|
3367 |
-
"
|
3368 |
-
msgstr ""
|
3369 |
-
|
3370 |
-
|
3371 |
-
"
|
3372 |
-
|
3373 |
-
|
3374 |
-
|
3375 |
-
|
3376 |
-
|
3377 |
-
|
3378 |
-
|
3379 |
-
|
3380 |
-
|
3381 |
-
|
3382 |
-
|
3383 |
-
|
3384 |
-
|
3385 |
-
|
3386 |
-
|
3387 |
-
|
3388 |
-
|
3389 |
-
|
3390 |
-
|
3391 |
-
|
3392 |
-
|
3393 |
-
|
3394 |
-
|
3395 |
-
|
3396 |
-
|
3397 |
-
|
3398 |
-
|
3399 |
-
|
3400 |
-
|
3401 |
-
|
3402 |
-
|
3403 |
-
|
3404 |
-
|
3405 |
-
|
3406 |
-
|
3407 |
-
|
3408 |
-
|
3409 |
-
|
3410 |
-
|
3411 |
-
|
3412 |
-
|
3413 |
-
|
3414 |
-
|
3415 |
-
|
3416 |
-
|
3417 |
-
|
3418 |
-
|
3419 |
-
|
3420 |
-
|
3421 |
-
|
3422 |
-
|
3423 |
-
|
3424 |
-
|
3425 |
-
|
3426 |
-
|
3427 |
-
|
3428 |
-
|
3429 |
-
|
3430 |
-
|
3431 |
-
|
3432 |
-
|
3433 |
-
|
3434 |
-
|
3435 |
-
#:
|
3436 |
-
|
3437 |
-
|
3438 |
-
|
3439 |
-
|
3440 |
-
|
3441 |
-
|
3442 |
-
"
|
3443 |
-
"
|
3444 |
-
|
3445 |
-
#:
|
3446 |
-
msgid "
|
3447 |
-
msgstr "
|
3448 |
-
|
3449 |
-
#:
|
3450 |
-
msgid "
|
3451 |
-
msgstr "
|
3452 |
-
|
3453 |
-
#:
|
3454 |
-
msgid "
|
3455 |
-
msgstr "
|
3456 |
-
|
3457 |
-
#:
|
3458 |
-
msgid "
|
3459 |
-
msgstr "
|
3460 |
-
|
3461 |
-
#:
|
3462 |
-
msgid "
|
3463 |
-
msgstr "
|
3464 |
-
|
3465 |
-
#:
|
3466 |
-
msgid "
|
3467 |
-
msgstr "
|
3468 |
-
|
3469 |
-
#:
|
3470 |
-
msgid "
|
3471 |
-
msgstr "
|
3472 |
-
|
3473 |
-
#:
|
3474 |
-
msgid "
|
3475 |
-
msgstr "
|
3476 |
-
|
3477 |
-
#:
|
3478 |
-
|
3479 |
-
|
3480 |
-
|
3481 |
-
|
3482 |
-
|
3483 |
-
"
|
3484 |
-
"
|
3485 |
-
|
3486 |
-
|
3487 |
-
"
|
3488 |
-
|
3489 |
-
|
3490 |
-
|
3491 |
-
|
3492 |
-
|
3493 |
-
|
3494 |
-
|
3495 |
-
|
3496 |
-
|
3497 |
-
|
3498 |
-
|
3499 |
-
|
3500 |
-
|
3501 |
-
|
3502 |
-
|
3503 |
-
|
3504 |
-
|
3505 |
-
|
3506 |
-
#:
|
3507 |
-
|
3508 |
-
|
3509 |
-
|
3510 |
-
|
3511 |
-
|
3512 |
-
|
3513 |
-
|
3514 |
-
|
3515 |
-
|
3516 |
-
|
3517 |
-
|
3518 |
-
|
3519 |
-
|
3520 |
-
|
3521 |
-
|
3522 |
-
|
3523 |
-
|
3524 |
-
|
3525 |
-
|
3526 |
-
|
3527 |
-
|
3528 |
-
|
3529 |
-
|
3530 |
-
|
3531 |
-
#:
|
3532 |
-
msgid "
|
3533 |
-
msgstr ""
|
3534 |
-
|
3535 |
-
|
3536 |
-
|
3537 |
-
|
3538 |
-
|
3539 |
-
|
3540 |
-
|
3541 |
-
|
3542 |
-
|
3543 |
-
|
3544 |
-
|
3545 |
-
|
3546 |
-
|
3547 |
-
#:
|
3548 |
-
msgid "
|
3549 |
-
msgstr "
|
3550 |
-
|
3551 |
-
#:
|
3552 |
-
|
3553 |
-
|
3554 |
-
|
3555 |
-
|
3556 |
-
|
3557 |
-
|
3558 |
-
|
3559 |
-
|
3560 |
-
|
3561 |
-
|
3562 |
-
|
3563 |
-
|
3564 |
-
|
3565 |
-
|
3566 |
-
|
3567 |
-
|
3568 |
-
|
3569 |
-
|
3570 |
-
|
3571 |
-
|
3572 |
-
#:
|
3573 |
-
msgid "
|
3574 |
-
msgstr "
|
3575 |
-
|
3576 |
-
#:
|
3577 |
-
msgid ""
|
3578 |
-
|
3579 |
-
|
3580 |
-
|
3581 |
-
|
3582 |
-
|
3583 |
-
|
3584 |
-
|
3585 |
-
|
3586 |
-
#:
|
3587 |
-
msgid "
|
3588 |
-
msgstr "
|
3589 |
-
|
3590 |
-
#:
|
3591 |
-
|
3592 |
-
|
3593 |
-
|
3594 |
-
|
3595 |
-
#:
|
3596 |
-
msgid "
|
3597 |
-
msgstr "
|
3598 |
-
|
3599 |
-
#:
|
3600 |
-
msgid ""
|
3601 |
-
"
|
3602 |
-
|
3603 |
-
|
3604 |
-
"
|
3605 |
-
msgstr ""
|
3606 |
-
|
3607 |
-
|
3608 |
-
"
|
3609 |
-
"
|
3610 |
-
|
3611 |
-
#:
|
3612 |
-
msgid "
|
3613 |
-
msgstr "
|
3614 |
-
|
3615 |
-
#:
|
3616 |
-
|
3617 |
-
|
3618 |
-
|
3619 |
-
#:
|
3620 |
-
msgid "
|
3621 |
-
msgstr "
|
3622 |
-
|
3623 |
-
#:
|
3624 |
-
msgid "
|
3625 |
-
msgstr "
|
3626 |
-
|
3627 |
-
#:
|
3628 |
-
msgid "
|
3629 |
-
msgstr "
|
3630 |
-
|
3631 |
-
#:
|
3632 |
-
msgid "
|
3633 |
-
msgstr "
|
3634 |
-
|
3635 |
-
#:
|
3636 |
-
msgid "
|
3637 |
-
msgstr "
|
3638 |
-
|
3639 |
-
#:
|
3640 |
-
msgid "
|
3641 |
-
msgstr "
|
3642 |
-
|
3643 |
-
#:
|
3644 |
-
msgid "
|
3645 |
-
msgstr "
|
3646 |
-
|
3647 |
-
#:
|
3648 |
-
|
3649 |
-
|
3650 |
-
|
3651 |
-
|
3652 |
-
"
|
3653 |
-
|
3654 |
-
|
3655 |
-
|
3656 |
-
msgid ""
|
3657 |
-
"
|
3658 |
-
|
3659 |
-
|
3660 |
-
"
|
3661 |
-
"
|
3662 |
-
|
3663 |
-
#:
|
3664 |
-
msgid "
|
3665 |
-
msgstr "
|
3666 |
-
|
3667 |
-
#:
|
3668 |
-
|
3669 |
-
|
3670 |
-
|
3671 |
-
|
3672 |
-
|
3673 |
-
|
3674 |
-
|
3675 |
-
|
3676 |
-
|
3677 |
-
|
3678 |
-
|
3679 |
-
|
3680 |
-
|
3681 |
-
|
3682 |
-
|
3683 |
-
|
3684 |
-
"
|
3685 |
-
"
|
3686 |
-
msgstr ""
|
3687 |
-
"
|
3688 |
-
|
3689 |
-
|
3690 |
-
|
3691 |
-
|
3692 |
-
|
3693 |
-
|
3694 |
-
"
|
3695 |
-
"
|
3696 |
-
|
3697 |
-
|
3698 |
-
"
|
3699 |
-
"
|
3700 |
-
|
3701 |
-
#:
|
3702 |
-
|
3703 |
-
"
|
3704 |
-
"
|
3705 |
-
|
3706 |
-
|
3707 |
-
|
3708 |
-
|
3709 |
-
|
3710 |
-
|
3711 |
-
|
3712 |
-
|
3713 |
-
"
|
3714 |
-
"
|
3715 |
-
|
3716 |
-
|
3717 |
-
"
|
3718 |
-
"
|
3719 |
-
|
3720 |
-
|
3721 |
-
"
|
3722 |
-
|
3723 |
-
|
3724 |
-
|
3725 |
-
msgid ""
|
3726 |
-
"
|
3727 |
-
|
3728 |
-
|
3729 |
-
"
|
3730 |
-
msgstr ""
|
3731 |
-
|
3732 |
-
|
3733 |
-
"
|
3734 |
-
"
|
3735 |
-
|
3736 |
-
#:
|
3737 |
-
|
3738 |
-
|
3739 |
-
|
3740 |
-
|
3741 |
-
|
3742 |
-
|
3743 |
-
|
3744 |
-
|
3745 |
-
"
|
3746 |
-
|
3747 |
-
|
3748 |
-
|
3749 |
-
|
3750 |
-
|
3751 |
-
|
3752 |
-
|
3753 |
-
|
3754 |
-
|
3755 |
-
|
3756 |
-
|
3757 |
-
|
3758 |
-
|
3759 |
-
|
3760 |
-
|
3761 |
-
|
3762 |
-
|
3763 |
-
|
3764 |
-
|
3765 |
-
"
|
3766 |
-
"
|
3767 |
-
|
3768 |
-
|
3769 |
-
"
|
3770 |
-
|
3771 |
-
|
3772 |
-
|
3773 |
-
|
3774 |
-
|
3775 |
-
|
3776 |
-
|
3777 |
-
|
3778 |
-
|
3779 |
-
|
3780 |
-
|
3781 |
-
"
|
3782 |
-
|
3783 |
-
|
3784 |
-
|
3785 |
-
"
|
3786 |
-
|
3787 |
-
|
3788 |
-
|
3789 |
-
|
3790 |
-
"
|
3791 |
-
|
3792 |
-
|
3793 |
-
|
3794 |
-
"
|
3795 |
-
|
3796 |
-
|
3797 |
-
#:
|
3798 |
-
msgid ""
|
3799 |
-
|
3800 |
-
|
3801 |
-
|
3802 |
-
"
|
3803 |
-
|
3804 |
-
|
3805 |
-
|
3806 |
-
"
|
3807 |
-
|
3808 |
-
|
3809 |
-
|
3810 |
-
"
|
3811 |
-
|
3812 |
-
|
3813 |
-
#:
|
3814 |
-
msgid "
|
3815 |
-
msgstr ""
|
3816 |
-
|
3817 |
-
|
3818 |
-
|
3819 |
-
|
3820 |
-
|
3821 |
-
|
3822 |
-
|
3823 |
-
|
3824 |
-
|
3825 |
-
|
3826 |
-
|
3827 |
-
"
|
3828 |
-
|
3829 |
-
|
3830 |
-
"
|
3831 |
-
"
|
3832 |
-
|
3833 |
-
|
3834 |
-
|
3835 |
-
|
3836 |
-
|
3837 |
-
|
3838 |
-
|
3839 |
-
|
3840 |
-
|
3841 |
-
|
3842 |
-
|
3843 |
-
"
|
3844 |
-
|
3845 |
-
|
3846 |
-
|
3847 |
-
|
3848 |
-
|
3849 |
-
|
3850 |
-
|
3851 |
-
"
|
3852 |
-
|
3853 |
-
|
3854 |
-
|
3855 |
-
|
3856 |
-
|
3857 |
-
|
3858 |
-
|
3859 |
-
|
3860 |
-
|
3861 |
-
|
3862 |
-
|
3863 |
-
|
3864 |
-
|
3865 |
-
|
3866 |
-
|
3867 |
-
|
3868 |
-
|
3869 |
-
|
3870 |
-
|
3871 |
-
|
3872 |
-
|
3873 |
-
|
3874 |
-
|
3875 |
-
|
3876 |
-
|
3877 |
-
|
3878 |
-
"
|
3879 |
-
msgstr ""
|
3880 |
-
|
3881 |
-
|
3882 |
-
|
3883 |
-
|
3884 |
-
|
3885 |
-
#:
|
3886 |
-
msgid "
|
3887 |
-
msgstr "
|
3888 |
-
|
3889 |
-
#:
|
3890 |
-
|
3891 |
-
|
3892 |
-
|
3893 |
-
|
3894 |
-
|
3895 |
-
"
|
3896 |
-
|
3897 |
-
|
3898 |
-
|
3899 |
-
|
3900 |
-
|
3901 |
-
|
3902 |
-
|
3903 |
-
|
3904 |
-
|
3905 |
-
|
3906 |
-
|
3907 |
-
|
3908 |
-
|
3909 |
-
|
3910 |
-
|
3911 |
-
|
3912 |
-
|
3913 |
-
|
3914 |
-
|
3915 |
-
|
3916 |
-
|
3917 |
-
|
3918 |
-
|
3919 |
-
"
|
3920 |
-
"Import
|
3921 |
-
|
3922 |
-
|
3923 |
-
"
|
3924 |
-
|
3925 |
-
|
3926 |
-
#:
|
3927 |
-
msgid "
|
3928 |
-
msgstr "
|
3929 |
-
|
3930 |
-
#:
|
3931 |
-
msgid "
|
3932 |
-
msgstr "
|
3933 |
-
|
3934 |
-
#:
|
3935 |
-
|
3936 |
-
|
3937 |
-
|
3938 |
-
|
3939 |
-
"
|
3940 |
-
msgstr ""
|
3941 |
-
|
3942 |
-
|
3943 |
-
"
|
3944 |
-
|
3945 |
-
|
3946 |
-
#: /views/admin/
|
3947 |
-
|
3948 |
-
|
3949 |
-
|
3950 |
-
|
3951 |
-
|
3952 |
-
|
3953 |
-
|
3954 |
-
|
3955 |
-
|
3956 |
-
|
3957 |
-
|
3958 |
-
#:
|
3959 |
-
|
3960 |
-
|
3961 |
-
|
3962 |
-
|
3963 |
-
|
3964 |
-
|
3965 |
-
|
3966 |
-
|
3967 |
-
|
3968 |
-
|
3969 |
-
|
3970 |
-
#:
|
3971 |
-
msgid "
|
3972 |
-
msgstr "
|
3973 |
-
|
3974 |
-
#:
|
3975 |
-
|
3976 |
-
|
3977 |
-
|
3978 |
-
|
3979 |
-
|
3980 |
-
|
3981 |
-
|
3982 |
-
|
3983 |
-
|
3984 |
-
|
3985 |
-
|
3986 |
-
|
3987 |
-
|
3988 |
-
|
3989 |
-
|
3990 |
-
#:
|
3991 |
-
msgid "
|
3992 |
-
msgstr "
|
3993 |
-
|
3994 |
-
#:
|
3995 |
-
msgid ""
|
3996 |
-
"
|
3997 |
-
|
3998 |
-
|
3999 |
-
"
|
4000 |
-
|
4001 |
-
|
4002 |
-
|
4003 |
-
|
4004 |
-
|
4005 |
-
|
4006 |
-
|
4007 |
-
"
|
4008 |
-
"
|
4009 |
-
|
4010 |
-
|
4011 |
-
|
4012 |
-
|
4013 |
-
|
4014 |
-
|
4015 |
-
|
4016 |
-
|
4017 |
-
|
4018 |
-
|
4019 |
-
|
4020 |
-
|
4021 |
-
|
4022 |
-
|
4023 |
-
|
4024 |
-
|
4025 |
-
|
4026 |
-
|
4027 |
-
|
4028 |
-
|
4029 |
-
|
4030 |
-
|
4031 |
-
|
4032 |
-
|
4033 |
-
|
4034 |
-
|
4035 |
-
|
4036 |
-
|
4037 |
-
|
4038 |
-
#:
|
4039 |
-
msgid "
|
4040 |
-
msgstr "
|
4041 |
-
|
4042 |
-
#:
|
4043 |
-
msgid ""
|
4044 |
-
"
|
4045 |
-
|
4046 |
-
|
4047 |
-
"
|
4048 |
-
"
|
4049 |
-
|
4050 |
-
#:
|
4051 |
-
msgid "
|
4052 |
-
msgstr "
|
4053 |
-
|
4054 |
-
#:
|
4055 |
-
msgid ""
|
4056 |
-
"
|
4057 |
-
|
4058 |
-
|
4059 |
-
"
|
4060 |
-
"
|
4061 |
-
|
4062 |
-
#:
|
4063 |
-
msgid "
|
4064 |
-
msgstr "
|
4065 |
-
|
4066 |
-
#:
|
4067 |
-
msgid ""
|
4068 |
-
"
|
4069 |
-
|
4070 |
-
|
4071 |
-
"
|
4072 |
-
"
|
4073 |
-
|
4074 |
-
#:
|
4075 |
-
msgid "
|
4076 |
-
msgstr "
|
4077 |
-
|
4078 |
-
#:
|
4079 |
-
msgid ""
|
4080 |
-
"
|
4081 |
-
|
4082 |
-
|
4083 |
-
"
|
4084 |
-
"
|
4085 |
-
|
4086 |
-
#:
|
4087 |
-
|
4088 |
-
|
4089 |
-
|
4090 |
-
|
4091 |
-
|
4092 |
-
|
4093 |
-
|
4094 |
-
|
4095 |
-
|
4096 |
-
|
4097 |
-
|
4098 |
-
|
4099 |
-
"
|
4100 |
-
|
4101 |
-
|
4102 |
-
|
4103 |
-
|
4104 |
-
|
4105 |
-
|
4106 |
-
|
4107 |
-
"
|
4108 |
-
msgstr ""
|
4109 |
-
|
4110 |
-
|
4111 |
-
|
4112 |
-
|
4113 |
-
|
4114 |
-
|
4115 |
-
"
|
4116 |
-
msgstr ""
|
4117 |
-
|
4118 |
-
|
4119 |
-
"
|
4120 |
-
|
4121 |
-
|
4122 |
-
|
4123 |
-
msgid ""
|
4124 |
-
"
|
4125 |
-
|
4126 |
-
|
4127 |
-
|
4128 |
-
"
|
4129 |
-
|
4130 |
-
#:
|
4131 |
-
|
4132 |
-
|
4133 |
-
|
4134 |
-
|
4135 |
-
|
4136 |
-
"
|
4137 |
-
|
4138 |
-
|
4139 |
-
|
4140 |
-
|
4141 |
-
|
4142 |
-
|
4143 |
-
|
4144 |
-
|
4145 |
-
|
4146 |
-
|
4147 |
-
|
4148 |
-
|
4149 |
-
|
4150 |
-
|
4151 |
-
|
4152 |
-
|
4153 |
-
|
4154 |
-
|
4155 |
-
|
4156 |
-
|
4157 |
-
|
4158 |
-
|
4159 |
-
|
4160 |
-
|
4161 |
-
|
4162 |
-
|
4163 |
-
|
4164 |
-
|
4165 |
-
|
4166 |
-
|
4167 |
-
|
4168 |
-
|
4169 |
-
|
4170 |
-
|
4171 |
-
|
4172 |
-
|
4173 |
-
|
4174 |
-
|
4175 |
-
"'
|
4176 |
-
msgstr ""
|
4177 |
-
|
4178 |
-
|
4179 |
-
|
4180 |
-
|
4181 |
-
|
4182 |
-
|
4183 |
-
|
4184 |
-
|
4185 |
-
|
4186 |
-
|
4187 |
-
|
4188 |
-
|
4189 |
-
"
|
4190 |
-
|
4191 |
-
|
4192 |
-
#:
|
4193 |
-
msgid "
|
4194 |
-
msgstr "
|
4195 |
-
|
4196 |
-
|
4197 |
-
|
4198 |
-
|
4199 |
-
|
4200 |
-
|
4201 |
-
|
4202 |
-
|
4203 |
-
|
4204 |
-
msgstr ""
|
4205 |
-
|
4206 |
-
"der Zukunft zu, diese erscheinen nicht bis dieses Datum erreicht ist. "
|
4207 |
-
|
4208 |
-
#: ../../views/admin/import/template/_other_template.php:58 ../..
|
4209 |
-
#: /views/admin/manage/delete.php:46
|
4210 |
-
msgid "and"
|
4211 |
-
msgstr "und"
|
4212 |
-
|
4213 |
-
#: ../../views/admin/import/template/_other_template.php:66
|
4214 |
-
msgid "Comments"
|
4215 |
-
msgstr "Kommentare"
|
4216 |
-
|
4217 |
-
#: ../../views/admin/import/template/_other_template.php:69 ../..
|
4218 |
-
#: /views/admin/import/template/_other_template.php:92
|
4219 |
-
msgid "Open"
|
4220 |
-
msgstr "Offen"
|
4221 |
-
|
4222 |
-
#: ../../views/admin/import/template/_other_template.php:73 ../..
|
4223 |
-
#: /views/admin/import/template/_other_template.php:96
|
4224 |
-
msgid "Closed"
|
4225 |
-
msgstr "Geschlossen"
|
4226 |
-
|
4227 |
-
#: ../../views/admin/import/template/_other_template.php:81 ../..
|
4228 |
-
#: /views/admin/import/template/_other_template.php:104
|
4229 |
-
msgid ""
|
4230 |
-
"The value of presented XPath should be one of the following: ('open', 'closed')."
|
4231 |
-
msgstr ""
|
4232 |
-
"Der Wert des gegenwärtigen XPath sollte einer der folgenden sein: "
|
4233 |
-
"('Offen','Geschlossen')."
|
4234 |
-
|
4235 |
-
#: ../../views/admin/import/template/_other_template.php:89
|
4236 |
-
msgid "Trackbacks and Pingbacks"
|
4237 |
-
msgstr "Trackbacks und Pingbacks"
|
4238 |
-
|
4239 |
-
#: ../../views/admin/import/template/_other_template.php:112
|
4240 |
-
msgid "Post Slug"
|
4241 |
-
msgstr "Post Slug"
|
4242 |
-
|
4243 |
-
#: ../../views/admin/import/template/_other_template.php:120
|
4244 |
-
msgid "Post Author"
|
4245 |
-
msgstr "Post Autor"
|
4246 |
-
|
4247 |
-
#: ../../views/admin/import/template/_other_template.php:122
|
4248 |
-
msgid ""
|
4249 |
-
"Assign the post to an existing user account by specifying the user ID, username, or "
|
4250 |
-
"e-mail address."
|
4251 |
-
msgstr ""
|
4252 |
-
"Ordne den Post einem bestehenden Benutzerkonto zu durch bestimmen der ID, des "
|
4253 |
-
"Benutzernamen oder der Email Adresse."
|
4254 |
-
|
4255 |
-
#: ../../views/admin/import/template/_other_template.php:128
|
4256 |
-
msgid "Download & Import Attachments"
|
4257 |
-
msgstr "Herunterladen & Importiere Anhänge"
|
4258 |
-
|
4259 |
-
#: ../../views/admin/import/template/_other_template.php:129 ../..
|
4260 |
-
#: /views/admin/import/template/_taxonomies_template.php:65
|
4261 |
-
#: /views/admin/import/template/_taxonomies_template.php:122
|
4262 |
-
#: /views/admin/import/template/_taxonomies_template.php:134
|
4263 |
-
#: /views/admin/import/template/_taxonomies_template.php:212
|
4264 |
-
msgid "Separated by"
|
4265 |
-
msgstr "Getrennt durch"
|
4266 |
-
|
4267 |
-
#: ../../views/admin/import/template/_other_template.php:137
|
4268 |
-
msgid "Search for existing attachments to prevent duplicates in media library"
|
4269 |
-
msgstr ""
|
4270 |
-
"Suche nach existierenden Anhängen um vor Duplikaten in der Medien Bibliothek zu "
|
4271 |
-
"schützen"
|
4272 |
-
|
4273 |
-
#: ../../views/admin/import/template/_other_template.php:144
|
4274 |
-
msgid "Post Format"
|
4275 |
-
msgstr "Post Format"
|
4276 |
-
|
4277 |
-
#: ../../views/admin/import/template/_other_template.php:150
|
4278 |
-
msgid "Standard"
|
4279 |
-
msgstr "Standard"
|
4280 |
-
|
4281 |
-
#: ../../views/admin/import/template/_other_template.php:182
|
4282 |
-
msgid "Page Template"
|
4283 |
-
msgstr "Seiten Vorlage"
|
4284 |
-
|
4285 |
-
#: ../../views/admin/import/template/_other_template.php:185
|
4286 |
-
msgid "Select a template"
|
4287 |
-
msgstr "Wählen Sie eine Vorlage"
|
4288 |
-
|
4289 |
-
#: ../../views/admin/import/template/_other_template.php:189
|
4290 |
-
msgid "Default"
|
4291 |
-
msgstr "Standard"
|
4292 |
-
|
4293 |
-
#: ../../views/admin/import/template/_other_template.php:211
|
4294 |
-
msgid "Page Parent"
|
4295 |
-
msgstr "Seiten Eltern"
|
4296 |
-
|
4297 |
-
#: ../../views/admin/import/template/_other_template.php:211
|
4298 |
-
msgid ""
|
4299 |
-
"Enter the slug of the desired page parent. If adding the child and parent pages in "
|
4300 |
-
"the same import, set 'Records per Iteration' to 1, run the import twice, or run "
|
4301 |
-
"separate imports for child and parent pages."
|
4302 |
-
msgstr ""
|
4303 |
-
"Geben Sie den Slug der gewünschten Elternseite ein. Wenn Sie Kind und Elternseiten "
|
4304 |
-
"im selben Import hinzufügen, setzen Sie 'Datensätze pro Durchlauf' auf 1. Oder Sie "
|
4305 |
-
"lassen den Import zweimal durchlaufen, oder Sie teilen die Imports auf Kind und "
|
4306 |
-
"Elternseiten auf."
|
4307 |
-
|
4308 |
-
#: ../../views/admin/import/template/_other_template.php:215
|
4309 |
-
msgid "Select page parent"
|
4310 |
-
msgstr "Wähle Elternseite"
|
4311 |
-
|
4312 |
-
#: ../../views/admin/import/template/_other_template.php:218
|
4313 |
-
msgid "(no parent)"
|
4314 |
-
msgstr "(keine Eltern)"
|
4315 |
-
|
4316 |
-
#: ../../views/admin/import/template/_other_template.php:237
|
4317 |
-
msgid "Post Parent"
|
4318 |
-
msgstr "Eltern Post"
|
4319 |
-
|
4320 |
-
#: ../../views/admin/import/template/_other_template.php:237
|
4321 |
-
msgid ""
|
4322 |
-
"Enter the slug of the desired post parent. If adding the child and parent posts in "
|
4323 |
-
"the same import, set 'Records per Iteration' to 1, run the import twice, or run "
|
4324 |
-
"separate imports for child and parent posts."
|
4325 |
-
msgstr ""
|
4326 |
-
"Geben Sie den Slug der gewünschten Eltern Post ein. Wenn Sie Kind und Eltern Posts "
|
4327 |
-
"im selben Import hinzufügen, setzen Sie 'Datensätze pro Durchlauf' auf 1. Oder Sie "
|
4328 |
-
"lassen den Import zweimal durchlaufen, oder Sie teilen die Imports auf Kind und "
|
4329 |
-
"Elternseiten auf."
|
4330 |
-
|
4331 |
-
#: ../../views/admin/import/template/_other_template.php:241
|
4332 |
-
msgid "Set post parent"
|
4333 |
-
msgstr "Setze Eltern Post"
|
4334 |
-
|
4335 |
-
#: ../../views/admin/import/template/_other_template.php:265
|
4336 |
-
msgid "Menu Order"
|
4337 |
-
msgstr "Menü Reihenfolge"
|
4338 |
-
|
4339 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:13
|
4340 |
-
msgid "Taxonomies, Categories, Tags"
|
4341 |
-
msgstr "Taxonomien, Kategorien, Tags"
|
4342 |
-
|
4343 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:17
|
4344 |
-
msgid "Show Hints"
|
4345 |
-
msgstr "Zeige Hinweise"
|
4346 |
-
|
4347 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:38
|
4348 |
-
#, php-format
|
4349 |
-
msgid "Each %s has just one %s"
|
4350 |
-
msgstr "Jedes %s hat genau eine %s"
|
4351 |
-
|
4352 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:46 ../..
|
4353 |
-
#: /views/admin/import/template/_taxonomies_template.php:70
|
4354 |
-
#, php-format
|
4355 |
-
msgid "Try to match terms to existing child %s"
|
4356 |
-
msgstr "Versuche Begriffe mit bestehenden Kinder %s zusammen zu führen. "
|
4357 |
-
|
4358 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:51 ../..
|
4359 |
-
#: /views/admin/import/template/_taxonomies_template.php:75
|
4360 |
-
#, php-format
|
4361 |
-
msgid "Only assign %s to the imported %s, not the entire hierarchy"
|
4362 |
-
msgstr ""
|
4363 |
-
"Füge %s nur zu den importierten %s hinzu, nicht zu der vollständigen Hierarchie."
|
4364 |
-
|
4365 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:52 ../..
|
4366 |
-
#: /views/admin/import/template/_taxonomies_template.php:76
|
4367 |
-
msgid ""
|
4368 |
-
"By default all categories above the matched category will also be assigned to the "
|
4369 |
-
"post. If enabled, only the imported category will be assigned to the post."
|
4370 |
-
msgstr ""
|
4371 |
-
"Standardmässig werden alle Kategorien über der zugeordneten Kategorie zu dem Post "
|
4372 |
-
"hinzugefügt. Wenn Sie das aktivieren, wird der Post nur zu der angegebenen Kategorie "
|
4373 |
-
"hinzugefügt."
|
4374 |
-
|
4375 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:60
|
4376 |
-
#, php-format
|
4377 |
-
msgid "Each %s has multiple %s"
|
4378 |
-
msgstr "Jedes %s hat mehrere %s"
|
4379 |
-
|
4380 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:85
|
4381 |
-
#, php-format
|
4382 |
-
msgid "%ss have hierarchical (parent/child) %s (i.e. Sports > Golf > Clubs > Putters)"
|
4383 |
-
msgstr "%ss haben Hierarchische (Eltern/Kind) %s (Bsp: Sport>Golf>Clubs>Putters)"
|
4384 |
-
|
4385 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:90
|
4386 |
-
msgid ""
|
4387 |
-
"An element in my file contains the entire hierarchy (i.e. you have an element with a "
|
4388 |
-
"value = Sports > Golf > Clubs > Putters)"
|
4389 |
-
msgstr ""
|
4390 |
-
"Ein Element in der Datei hat eine vollständige Hierarchie (Bsp: Ein Element hat den "
|
4391 |
-
"Wert = Sports > Golf > Clubs > Putters)"
|
4392 |
-
|
4393 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:127
|
4394 |
-
#, php-format
|
4395 |
-
msgid "Only assign %s to the bottom level term in the hierarchy"
|
4396 |
-
msgstr "Füge %s nur an das unterste Level der Hierarchie hinzu."
|
4397 |
-
|
4398 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:132
|
4399 |
-
msgid "Separate hierarchy groups via symbol"
|
4400 |
-
msgstr "Teile die Hierarchie Gruppen durch das Symbol"
|
4401 |
-
|
4402 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:140
|
4403 |
-
msgid "Add Another Hierarchy Group"
|
4404 |
-
msgstr "Weitere Hierarchie Gruppen hinzufügen"
|
4405 |
-
|
4406 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:147
|
4407 |
-
msgid "Manually design the hierarchy with drag & drop"
|
4408 |
-
msgstr "Erstelle die Hierarchie manuell durch drag & drop"
|
4409 |
-
|
4410 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:149
|
4411 |
-
#, php-format
|
4412 |
-
msgid ""
|
4413 |
-
"Drag the <img src=\"%s\" class=\"wpallimport-drag-icon\"/> to the right to create a "
|
4414 |
-
"child, drag up and down to re-order."
|
4415 |
-
msgstr ""
|
4416 |
-
"Ziehe das <img src=\"%s\" class=\"wpallimport-drag-icon\"/> nach rechts um ein Kind "
|
4417 |
-
"zu erstellen, ziehe rauf und runter zum Ordnen."
|
4418 |
-
|
4419 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:227
|
4420 |
-
#, php-format
|
4421 |
-
msgid "Enable Mapping for %s"
|
4422 |
-
msgstr "Aktiviere Zuordnung für %s"
|
4423 |
-
|
4424 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:306
|
4425 |
-
msgid "Apply mapping rules before splitting via separator symbol"
|
4426 |
-
msgstr ""
|
4427 |
-
"Wende Regeln für Zuordnung an bevor eine Aufteilung mittels dem Separator Symbol "
|
4428 |
-
"erfolgt."
|
4429 |
-
|
4430 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:321
|
4431 |
-
msgid "Show \"private\" taxonomies"
|
4432 |
-
msgstr "Zeige \"Private\" Taxonomien"
|
4433 |
-
|
4434 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:332
|
4435 |
-
msgid "Taxonomies that don't already exist on your site will be created."
|
4436 |
-
msgstr "Taxonomien die noch nicht auf der Seite existieren werden erstellt."
|
4437 |
-
|
4438 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:333
|
4439 |
-
msgid ""
|
4440 |
-
"To import to existing parent taxonomies, use the existing taxonomy name or slug."
|
4441 |
-
msgstr ""
|
4442 |
-
"Zum importieren in existierende Eltern Taxonomien benutzen Sie bestehende Taxonomie "
|
4443 |
-
"Namen oder Slugs."
|
4444 |
-
|
4445 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:334
|
4446 |
-
msgid ""
|
4447 |
-
"To import to existing hierarchical taxonomies, create the entire hierarchy using the "
|
4448 |
-
"taxonomy names or slugs."
|
4449 |
-
msgstr ""
|
4450 |
-
"Um in existierende hierarchische Taxonomien zu importieren, erstellen Sie die "
|
4451 |
-
"gesamte Hierarchie und nutzen Sie die Taxonomien oder Slugs."
|
4452 |
-
|
4453 |
-
#: ../../views/admin/license/index.php:3
|
4454 |
-
msgid "WP All Import Licenses"
|
4455 |
-
msgstr "WP All Import Lizenzen"
|
4456 |
-
|
4457 |
-
#: ../../views/admin/license/index.php:23 ../../views/admin/settings/index.php:163
|
4458 |
-
msgid "Active"
|
4459 |
-
msgstr "Aktiv"
|
4460 |
-
|
4461 |
-
#: ../../views/admin/license/index.php:24
|
4462 |
-
msgid "Deactivate License"
|
4463 |
-
msgstr "Deaktiviere Lizenz"
|
4464 |
-
|
4465 |
-
#: ../../views/admin/license/index.php:26 ../../views/admin/settings/index.php:165
|
4466 |
-
msgid "Activate License"
|
4467 |
-
msgstr "Aktiviere Lizenz"
|
4468 |
-
|
4469 |
-
#: ../../views/admin/manage/bulk.php:10
|
4470 |
-
#, php-format
|
4471 |
-
msgid "Are you sure you want to delete <strong>%s</strong> selected %s?"
|
4472 |
-
msgstr ""
|
4473 |
-
"Sind Sie sicher dass Sie das selektierte <strong>%s</strong> löschen wollen %s?"
|
4474 |
-
|
4475 |
-
#: ../../views/admin/manage/bulk.php:12
|
4476 |
-
msgid "Delete associated posts as well"
|
4477 |
-
msgstr "Lösche auch assoziierte Posts"
|
4478 |
-
|
4479 |
-
#: ../../views/admin/manage/bulk.php:17 ../../views/admin/manage/delete.php:19
|
4480 |
-
msgid "Delete associated images from media gallery"
|
4481 |
-
msgstr "Lösche auch assoziierte Bilder aus der Medien Galerie"
|
4482 |
-
|
4483 |
-
#: ../../views/admin/manage/bulk.php:22 ../../views/admin/manage/delete.php:24
|
4484 |
-
msgid "Delete associated files from media gallery"
|
4485 |
-
msgstr "Lösche auch assoziierte Dateien aus der Media Galerie"
|
4486 |
-
|
4487 |
-
#: ../../views/admin/manage/bulk.php:31 ../../views/admin/manage/delete.php:32
|
4488 |
-
#, php-format
|
4489 |
-
msgid ""
|
4490 |
-
"<p class=\"wpallimport-delete-posts-warning\"><strong>Important</strong>: this "
|
4491 |
-
"import was created automatically by WP All Export. All posts exported by the \"%s\" "
|
4492 |
-
"export job have been automatically associated with this import.</p>"
|
4493 |
-
msgstr ""
|
4494 |
-
"<p class=\"wpallimport-delete-posts-warning\"><strong>Wichtig</strong>: dieser "
|
4495 |
-
"Import wurde automatisch erstellt von WP All Export. Alle Posts die von \"%s\" "
|
4496 |
-
"exportiert wurden, wurden automatisch assoziiert mit diesem Import.</p>"
|
4497 |
-
|
4498 |
-
#: ../../views/admin/manage/delete.php:1
|
4499 |
-
msgid "Delete Import"
|
4500 |
-
msgstr "Lösche Import"
|
4501 |
-
|
4502 |
-
#: ../../views/admin/manage/index.php:18 ../../views/admin/manage/index.php:20
|
4503 |
-
msgid "Search Imports"
|
4504 |
-
msgstr "Suche Imports"
|
4505 |
-
|
4506 |
-
#: ../../views/admin/manage/index.php:28
|
4507 |
-
msgid "File"
|
4508 |
-
msgstr "Datei"
|
4509 |
-
|
4510 |
-
#: ../../views/admin/manage/index.php:31
|
4511 |
-
msgid "Info & Options"
|
4512 |
-
msgstr "Info & Optionen"
|
4513 |
-
|
4514 |
-
#: ../../views/admin/manage/index.php:100
|
4515 |
-
#, php-format
|
4516 |
-
msgid "No previous imports found. <a href=\"%s\">Start a new import...</a>"
|
4517 |
-
msgstr ""
|
4518 |
-
"Keine vorherigen Imports gefunden. <a href=\"%s\">Starte einen neuen Import...</a>"
|
4519 |
-
|
4520 |
-
#: ../../views/admin/manage/index.php:182
|
4521 |
-
msgid "Edit Import"
|
4522 |
-
msgstr "Ändere Import"
|
4523 |
-
|
4524 |
-
#: ../../views/admin/manage/index.php:187
|
4525 |
-
msgid "Import Settings"
|
4526 |
-
msgstr "Import Einstellungen"
|
4527 |
-
|
4528 |
-
#: ../../views/admin/manage/index.php:228
|
4529 |
-
msgid "triggered with cron"
|
4530 |
-
msgstr "Ausgelöst von cron"
|
4531 |
-
|
4532 |
-
#: ../../views/admin/manage/index.php:235 ../../views/admin/manage/index.php:250 .
|
4533 |
-
#: ../views/admin/manage/index.php:264
|
4534 |
-
#, php-format
|
4535 |
-
msgid "last activity %s ago"
|
4536 |
-
msgstr "Letzte Aktivität vor %s "
|
4537 |
-
|
4538 |
-
#: ../../views/admin/manage/index.php:242
|
4539 |
-
msgid "currently processing with cron"
|
4540 |
-
msgstr "cron Bearbeitung in Gang"
|
4541 |
-
|
4542 |
-
#: ../../views/admin/manage/index.php:257
|
4543 |
-
msgid "Import currently in progress"
|
4544 |
-
msgstr "Import Bearbeitung in Gang"
|
4545 |
-
|
4546 |
-
#: ../../views/admin/manage/index.php:271 ../../views/admin/manage/index.php:275
|
4547 |
-
#, php-format
|
4548 |
-
msgid "Import Attempt at %s"
|
4549 |
-
msgstr "Import Versuch bei %s"
|
4550 |
-
|
4551 |
-
#: ../../views/admin/manage/index.php:276
|
4552 |
-
msgid "Import failed, please check logs"
|
4553 |
-
msgstr "Import fehlgeschlagen, Bitte Log überprüfen"
|
4554 |
-
|
4555 |
-
#: ../../views/admin/manage/index.php:286
|
4556 |
-
#, php-format
|
4557 |
-
msgid "Last run: %s"
|
4558 |
-
msgstr "Letzter Lauf: %s"
|
4559 |
-
|
4560 |
-
#: ../../views/admin/manage/index.php:286
|
4561 |
-
msgid "never"
|
4562 |
-
msgstr "Nie"
|
4563 |
-
|
4564 |
-
#: ../../views/admin/manage/index.php:287
|
4565 |
-
#, php-format
|
4566 |
-
msgid "%d %s created"
|
4567 |
-
msgstr "%d %s erstellt"
|
4568 |
-
|
4569 |
-
#: ../../views/admin/manage/index.php:288
|
4570 |
-
#, php-format
|
4571 |
-
msgid "%d updated, %d skipped, %d deleted"
|
4572 |
-
msgstr "%d aktualisiert, %d übersprungen, %d gelöscht"
|
4573 |
-
|
4574 |
-
#: ../../views/admin/manage/index.php:295
|
4575 |
-
msgid "settings edited since last run"
|
4576 |
-
msgstr "Einstellungen geändert seit letztem Lauf"
|
4577 |
-
|
4578 |
-
#: ../../views/admin/manage/index.php:307 ../../views/admin/manage/scheduling.php:2
|
4579 |
-
msgid "Cron Scheduling"
|
4580 |
-
msgstr "Cron Geplant"
|
4581 |
-
|
4582 |
-
#: ../../views/admin/manage/index.php:309
|
4583 |
-
msgid "History Logs"
|
4584 |
-
msgstr "Chronik Log"
|
4585 |
-
|
4586 |
-
#: ../../views/admin/manage/index.php:319
|
4587 |
-
msgid "Run Import"
|
4588 |
-
msgstr "Starte Import"
|
4589 |
-
|
4590 |
-
#: ../../views/admin/manage/index.php:321
|
4591 |
-
msgid "Cancel Cron"
|
4592 |
-
msgstr "Cron Abbrechen"
|
4593 |
-
|
4594 |
-
#: ../../views/admin/manage/index.php:323
|
4595 |
-
msgid "Cancel"
|
4596 |
-
msgstr "Abbrechen"
|
4597 |
-
|
4598 |
-
#: ../../views/admin/manage/scheduling.php:8
|
4599 |
-
msgid ""
|
4600 |
-
"To schedule an import, you must create two cron jobs in your web hosting control "
|
4601 |
-
"panel. One cron job will be used to run the Trigger script, the other to run the "
|
4602 |
-
"Execution script."
|
4603 |
-
msgstr ""
|
4604 |
-
"Um einen Import zu planen, müssen Sie zwei Cron Jobs in Ihrem web Hosting Bedienfeld "
|
4605 |
-
"erstellen. Ein Cron Job wird genutzt um das auslöse Skript zu starten, das andere um "
|
4606 |
-
"das Ausführende Skript zu starten."
|
4607 |
-
|
4608 |
-
#: ../../views/admin/manage/scheduling.php:19
|
4609 |
-
msgid "Trigger Script"
|
4610 |
-
msgstr "Auslösendes Skript"
|
4611 |
-
|
4612 |
-
#: ../../views/admin/manage/scheduling.php:21
|
4613 |
-
msgid "Every time you want to schedule the import, run the trigger script."
|
4614 |
-
msgstr "Jedes mal wenn Sie den Import planen wollen, starten Sie das Auslöse Skript."
|
4615 |
-
|
4616 |
-
#: ../../views/admin/manage/scheduling.php:23
|
4617 |
-
msgid ""
|
4618 |
-
"To schedule the import to run once every 24 hours, run the trigger script every 24 "
|
4619 |
-
"hours. Most hosts require you to use “wget” to access a URL. Ask your host for "
|
4620 |
-
"details."
|
4621 |
-
msgstr ""
|
4622 |
-
"Um den Import einmal in 24 Stunden zu planen, starten Sie das Auslöse Skript alle 24 "
|
4623 |
-
"Stunden. Die meisten Hosts erlauben \"wget\" für den Zugriff auf eine URL. Fragen "
|
4624 |
-
"Sie Ihren Host für Details."
|
4625 |
-
|
4626 |
-
#: ../../views/admin/manage/scheduling.php:25 ../../views/admin/manage/scheduling.
|
4627 |
-
#: php:37
|
4628 |
-
msgid "Example:"
|
4629 |
-
msgstr "Beispiel:"
|
4630 |
-
|
4631 |
-
#: ../../views/admin/manage/scheduling.php:29
|
4632 |
-
msgid "Execution Script"
|
4633 |
-
msgstr "Ausführende Skript"
|
4634 |
-
|
4635 |
-
#: ../../views/admin/manage/scheduling.php:31
|
4636 |
-
msgid ""
|
4637 |
-
"The Execution script actually executes the import, once it has been triggered with "
|
4638 |
-
"the Trigger script."
|
4639 |
-
msgstr ""
|
4640 |
-
"Das ausführende Skript erledigt den Import, wenn es vom auslösenden Skript gestartet "
|
4641 |
-
"wurde."
|
4642 |
-
|
4643 |
-
#: ../../views/admin/manage/scheduling.php:33
|
4644 |
-
msgid ""
|
4645 |
-
"It processes in iteration (only importing a few records each time it runs) to "
|
4646 |
-
"optimize server load. It is recommended you run the execution script every 2 minutes."
|
4647 |
-
msgstr ""
|
4648 |
-
"Es bearbeitet in Schleifendurchläufen (importiert nur ein paar Datensätze mit jedem "
|
4649 |
-
"Durchlauf) zur Optimierung der Serverlast. Es wird empfohlen das Ausführende Skript "
|
4650 |
-
"alle 2 Minuten zu starten."
|
4651 |
-
|
4652 |
-
#: ../../views/admin/manage/scheduling.php:35
|
4653 |
-
msgid ""
|
4654 |
-
"It also operates this way in case of unexpected crashes by your web host. If it "
|
4655 |
-
"crashes before the import is finished, the next run of the cron job two minutes "
|
4656 |
-
"later will continue it where it left off, ensuring reliability."
|
4657 |
-
msgstr ""
|
4658 |
-
"So funktioniert es auch wenn unerwartete Abstürze Ihres Hosts auftreten. Wenn es "
|
4659 |
-
"abstürzt bevor der Import fertig ist, wird der nächste Lauf des cron Jobs zwei "
|
4660 |
-
"Minuten später dort weiter machen, wo der vorherige aufgehört hat."
|
4661 |
-
|
4662 |
-
#: ../../views/admin/manage/scheduling.php:41
|
4663 |
-
msgid "Notes"
|
4664 |
-
msgstr "Hinweis"
|
4665 |
-
|
4666 |
-
#: ../../views/admin/manage/scheduling.php:44
|
4667 |
-
msgid ""
|
4668 |
-
"Your web host may require you to use a command other than wget, although wget is "
|
4669 |
-
"most common. In this case, you must asking your web hosting provider for help."
|
4670 |
-
msgstr ""
|
4671 |
-
"Ihr Webhost benötigt evtl einen anderen Befehl als \"wget\", obwohl \"wget\" das am "
|
4672 |
-
"häufigsten genutzte ist. In diesem Fall müssen Sie Ihren Webhost Anbieter um Hilfe "
|
4673 |
-
"fragen."
|
4674 |
-
|
4675 |
-
#: ../../views/admin/manage/scheduling.php:54
|
4676 |
-
msgid ""
|
4677 |
-
"To schedule this import with a cron job, you must use the \"Download from URL\" "
|
4678 |
-
"option on the Import Settings screen of WP All Import."
|
4679 |
-
msgstr ""
|
4680 |
-
"Um einen Import mit einem Cron Job zu planen, müssen Sie \"Von URL Herunterladen\" "
|
4681 |
-
"wählen. Diese finden Sie in den Import Einstellungen von WP All Import."
|
4682 |
-
|
4683 |
-
#: ../../views/admin/manage/scheduling.php:57
|
4684 |
-
msgid "Go to Import Settings now..."
|
4685 |
-
msgstr "Gehe zu Import Einstellungen..."
|
4686 |
-
|
4687 |
-
#: ../../views/admin/manage/update.php:1
|
4688 |
-
msgid "Update Import"
|
4689 |
-
msgstr "Aktualisiere Import"
|
4690 |
-
|
4691 |
-
#: ../../views/admin/manage/update.php:9
|
4692 |
-
#, php-format
|
4693 |
-
msgid "Are you sure you want to update <strong>%s</strong> import?"
|
4694 |
-
msgstr "Sind Sie sicher dass Sie den Import <strong>%s</strong> aktualisieren wollen?"
|
4695 |
-
|
4696 |
-
#: ../../views/admin/manage/update.php:10
|
4697 |
-
#, php-format
|
4698 |
-
msgid "Source path is <strong>%s</strong>"
|
4699 |
-
msgstr "Quellpfad ist <strong>%s</strong>"
|
4700 |
-
|
4701 |
-
#: ../../views/admin/manage/update.php:21
|
4702 |
-
msgid ""
|
4703 |
-
"Update feature is not available for this import since it has no external path linked."
|
4704 |
-
msgstr ""
|
4705 |
-
"Funktion für Aktualisierung ist nicht verfügbar für diesen Import, da es keinen "
|
4706 |
-
"externen Pfad verlinkt hat."
|
4707 |
-
|
4708 |
-
#: ../../views/admin/settings/index.php:18
|
4709 |
-
msgid "Import/Export Templates"
|
4710 |
-
msgstr "Importiere/Exportiere Vorlagen"
|
4711 |
-
|
4712 |
-
#: ../../views/admin/settings/index.php:32
|
4713 |
-
msgid "Delete Selected"
|
4714 |
-
msgstr "Lösche Ausgewählte"
|
4715 |
-
|
4716 |
-
#: ../../views/admin/settings/index.php:33
|
4717 |
-
msgid "Export Selected"
|
4718 |
-
msgstr "Exportiere Ausgewählte"
|
4719 |
-
|
4720 |
-
#: ../../views/admin/settings/index.php:36
|
4721 |
-
msgid "There are no templates saved"
|
4722 |
-
msgstr "Es sind keine Vorlagen gespeichert"
|
4723 |
-
|
4724 |
-
#: ../../views/admin/settings/index.php:41
|
4725 |
-
msgid "Import Templates"
|
4726 |
-
msgstr "Importiere Templates"
|
4727 |
-
|
4728 |
-
#: ../../views/admin/settings/index.php:49
|
4729 |
-
msgid "Cron Imports"
|
4730 |
-
msgstr "Cron Importieren"
|
4731 |
-
|
4732 |
-
#: ../../views/admin/settings/index.php:54
|
4733 |
-
msgid "Secret Key"
|
4734 |
-
msgstr "Geheimer Schlüssel"
|
4735 |
-
|
4736 |
-
#: ../../views/admin/settings/index.php:57
|
4737 |
-
msgid "Changing this will require you to re-create your existing cron jobs."
|
4738 |
-
msgstr "Wenn Sie das ändern, müssen Sie Ihre existierenden Cron Jobs neu erstellen."
|
4739 |
-
|
4740 |
-
#: ../../views/admin/settings/index.php:61
|
4741 |
-
msgid "Cron Processing Time Limit"
|
4742 |
-
msgstr "Cron Bearbeitung Zeit Limit"
|
4743 |
-
|
4744 |
-
#: ../../views/admin/settings/index.php:64
|
4745 |
-
msgid "Leave blank to use your server's limit on script run times."
|
4746 |
-
msgstr "Leer lassen um des Servers Limit für die Skript Läufe zu nutzen."
|
4747 |
-
|
4748 |
-
#: ../../views/admin/settings/index.php:68
|
4749 |
-
msgid "Cron Sleep"
|
4750 |
-
msgstr "Cron Schläft"
|
4751 |
-
|
4752 |
-
#: ../../views/admin/settings/index.php:71
|
4753 |
-
msgid ""
|
4754 |
-
"Sleep the specified number of seconds between each post created, updated, or deleted "
|
4755 |
-
"with cron. Leave blank to not sleep. Only necessary on servers that are slowed down "
|
4756 |
-
"by the cron job because they have very minimal processing power and resources."
|
4757 |
-
msgstr ""
|
4758 |
-
"Schlafe die bestimmte Zahl von Sekunden zwischen jedem erstellten, aktualisierten "
|
4759 |
-
"oder gelöschten Post. Leer lassen um nicht zu schlafen. Nur nötig auf Servern die "
|
4760 |
-
"durch den Cron verlangsamt werden da sie zu wenig Prozessorleistung und Ressourcen "
|
4761 |
-
"haben."
|
4762 |
-
|
4763 |
-
#: ../../views/admin/settings/index.php:84 ../../views/admin/settings/index.php:87
|
4764 |
-
msgid "Secure Mode"
|
4765 |
-
msgstr "Quellen Art"
|
4766 |
-
|
4767 |
-
#: ../../views/admin/settings/index.php:89
|
4768 |
-
msgid "Randomize folder names"
|
4769 |
-
msgstr "Verzeichnis Namen zufällig anordnen"
|
4770 |
-
|
4771 |
-
#: ../../views/admin/settings/index.php:95
|
4772 |
-
#, php-format
|
4773 |
-
msgid ""
|
4774 |
-
"Imported files, chunks, logs and temporary files will be placed in a folder with a "
|
4775 |
-
"randomized name inside of %s."
|
4776 |
-
msgstr ""
|
4777 |
-
"Importierte Dateien, Datenblöcke, Logs und temporäre Dateien werden in ein "
|
4778 |
-
"Verzeichnis mit zufällig angeordneten Namen geschrieben %s.."
|
4779 |
-
|
4780 |
-
#: ../../views/admin/settings/index.php:100
|
4781 |
-
msgid "Log Storage"
|
4782 |
-
msgstr "Log Speicher"
|
4783 |
-
|
4784 |
-
#: ../../views/admin/settings/index.php:103
|
4785 |
-
msgid "Number of logs to store for each import. Enter 0 to never store logs."
|
4786 |
-
msgstr ""
|
4787 |
-
"Anzahl an Logs die für jeden Import gespeichert werden. Geben Sie 0 ein um niemals "
|
4788 |
-
"Logs zu speichern."
|
4789 |
-
|
4790 |
-
#: ../../views/admin/settings/index.php:107
|
4791 |
-
msgid "Clean Up Temp Files"
|
4792 |
-
msgstr "Räume temporäre Dateien auf"
|
4793 |
-
|
4794 |
-
#: ../../views/admin/settings/index.php:109
|
4795 |
-
msgid "Clean Up"
|
4796 |
-
msgstr "Aufräumen"
|
4797 |
-
|
4798 |
-
#: ../../views/admin/settings/index.php:110
|
4799 |
-
msgid ""
|
4800 |
-
"Attempt to remove temp files left over by imports that were improperly terminated."
|
4801 |
-
msgstr ""
|
4802 |
-
"Versuche die temporären Dateien zu entfernen, die von unsachgemäss beendeten Imports "
|
4803 |
-
"übrig blieben."
|
4804 |
-
|
4805 |
-
#: ../../views/admin/settings/index.php:118
|
4806 |
-
msgid "Advanced Settings"
|
4807 |
-
msgstr "Erweiterte Einstellungen"
|
4808 |
-
|
4809 |
-
#: ../../views/admin/settings/index.php:123
|
4810 |
-
msgid "Chunk Size"
|
4811 |
-
msgstr "Datenblock Grösse "
|
4812 |
-
|
4813 |
-
#: ../../views/admin/settings/index.php:126
|
4814 |
-
msgid "Split file into chunks containing the specified number of records."
|
4815 |
-
msgstr "Teile Datei in Datenblöcke die die bestimmte Zahl an Datensätzen enthalten."
|
4816 |
-
|
4817 |
-
#: ../../views/admin/settings/index.php:130
|
4818 |
-
msgid "WP_IMPORTING"
|
4819 |
-
msgstr "WP_IMPORTIERT"
|
4820 |
-
|
4821 |
-
#: ../../views/admin/settings/index.php:134
|
4822 |
-
msgid "Enable WP_IMPORTING"
|
4823 |
-
msgstr "Aktiviere WP_IMPORTIERT"
|
4824 |
-
|
4825 |
-
#: ../../views/admin/settings/index.php:136
|
4826 |
-
msgid "Setting this constant avoids triggering pingback."
|
4827 |
-
msgstr ""
|
4828 |
-
"Wenn Sie diese Einstellung aktivieren, verhindern Sie die Auslösung eines pingback."
|
4829 |
-
|
4830 |
-
#: ../../views/admin/settings/index.php:140
|
4831 |
-
msgid "Add Port To URL"
|
4832 |
-
msgstr "Füge Port zu URL hinzu"
|
4833 |
-
|
4834 |
-
#: ../../views/admin/settings/index.php:143
|
4835 |
-
msgid ""
|
4836 |
-
"Specify the port number to add if you're having problems continuing to Step 2 and "
|
4837 |
-
"are running things on a custom port. Default is blank."
|
4838 |
-
msgstr ""
|
4839 |
-
"Bestimmen Sie die hinzuzufügende Port Nummer wenn Sie Probleme haben zu Schritt 2 zu "
|
4840 |
-
"gelangen und dinge auf einem individuellen Port laufen lassen. Standard ist leer."
|
4841 |
-
|
4842 |
-
#: ../../views/admin/settings/index.php:150
|
4843 |
-
msgid "Licenses"
|
4844 |
-
msgstr "Lizenzen"
|
4845 |
-
|
4846 |
-
#: ../../views/admin/settings/index.php:157
|
4847 |
-
msgid "License Key"
|
4848 |
-
msgstr "Lizenz Schlüssel"
|
4849 |
-
|
4850 |
-
#: ../../views/admin/settings/index.php:170
|
4851 |
-
msgid ""
|
4852 |
-
"A license key is required to access plugin updates. You can use your license key on "
|
4853 |
-
"an unlimited number of websites. Do not distribute your license key to 3rd parties. "
|
4854 |
-
"You can get your license key in the <a target=\"_blank\" href=\"http://www."
|
4855 |
-
"wpallimport.com/portal\">customer portal</a>."
|
4856 |
-
msgstr ""
|
4857 |
-
"Ein Lizenz Schlüssel wird benötigt um Zugang auf Plugin Updates zu haben. Sie können "
|
4858 |
-
"Ihren Lizenz Schlüssel auf einer unbestimmten Anzahl von Webseiten nutzen. Geben Sie "
|
4859 |
-
"Ihren Schlüssel nicht an dritte weiter. Sie können Ihren Lizenz Schlüssel im <a "
|
4860 |
-
"target=\"_blank\" href=\"http://www.wpallimport.com/portal\">Kunden Portal</a> "
|
4861 |
-
"bekommen."
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"MIME-Version: 1.0\n"
|
4 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
5 |
+
"Content-Transfer-Encoding: 8bit\n"
|
6 |
+
"X-Generator: POEditor.com\n"
|
7 |
+
"Project-Id-Version: WP All Import Pro\n"
|
8 |
+
"Language: de-ch\n"
|
9 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
10 |
+
|
11 |
+
#: actions/admin_menu.php:12
|
12 |
+
msgid "New Import"
|
13 |
+
msgstr "Neuer Import"
|
14 |
+
|
15 |
+
#: actions/admin_menu.php:13 views/admin/import/process.php:71
|
16 |
+
#: views/admin/manage/index.php:5
|
17 |
+
msgid "Manage Imports"
|
18 |
+
msgstr "Imports verwalten"
|
19 |
+
|
20 |
+
#: actions/admin_menu.php:14 views/admin/settings/index.php:7
|
21 |
+
msgid "Settings"
|
22 |
+
msgstr "Einstellungen"
|
23 |
+
|
24 |
+
#: actions/admin_menu.php:16
|
25 |
+
msgid "History"
|
26 |
+
msgstr "Chronik"
|
27 |
+
|
28 |
+
#: actions/admin_menu.php:22 controllers/admin/license.php:18
|
29 |
+
#: controllers/admin/settings.php:50 views/admin/import/confirm.php:11
|
30 |
+
#: views/admin/import/element.php:8 views/admin/import/index.php:43
|
31 |
+
#: views/admin/import/options.php:18 views/admin/import/process.php:8
|
32 |
+
#: views/admin/import/template.php:9 views/admin/manage/index.php:4
|
33 |
+
#: views/admin/settings/index.php:6
|
34 |
+
msgid "WP All Import"
|
35 |
+
msgstr "WP All Import"
|
36 |
+
|
37 |
+
#: actions/admin_menu.php:22
|
38 |
+
msgid "All Import"
|
39 |
+
msgstr "All Import"
|
40 |
+
|
41 |
+
#: actions/admin_notices.php:12
|
42 |
+
msgid "<b>%s Plugin</b>: Please update your WP All Import WooCommerce add-on to the latest version"
|
43 |
+
msgstr "<b>%s Plugin</b>: Bitte aktualisieren Sie das WP All Import WooCommerce add-on."
|
44 |
+
|
45 |
+
#: actions/admin_notices.php:39
|
46 |
+
msgid "<b>%s Plugin</b>: Please update your WP All Import ACF add-on to the latest version"
|
47 |
+
msgstr "<b>%s Plugin</b>: Bitte aktualisieren Sie das WP All Import ACF add-on."
|
48 |
+
|
49 |
+
#: actions/admin_notices.php:56
|
50 |
+
msgid "<b>%s Plugin</b>: Please update your WP All Import Linkcloak add-on to the latest version"
|
51 |
+
msgstr "<b>%s Plugin</b>: Bitte aktualisieren Sie das WP All Import Linkcloak add-on."
|
52 |
+
|
53 |
+
#: actions/admin_notices.php:73
|
54 |
+
msgid "<b>%s Plugin</b>: Please update your WP All Import User add-on to the latest version"
|
55 |
+
msgstr "<b>%s Plugin</b>: Bitte aktualisieren Sie das WP All Import User add-on."
|
56 |
+
|
57 |
+
#: actions/admin_notices.php:90
|
58 |
+
msgid "<b>%s Plugin</b>: The WPML Add-On Plugin is no longer compatible with this version of WP All Import - please contact support@wpallimport.com and we will supply the latest version of WP All Import that is compatible with the WPML Add-On."
|
59 |
+
msgstr "<b>%s Plugin</b>: Das WPML add-on Plugin ist leider nicht mehr kompatibel mit dieser Version von WP All Import. Bitte kontaktieren Sie den Support unter support@wpallimport.com und wir werden Ihnen die neueste Version von WP All Import anbieten die mit dem WPML add-on kompatibel ist."
|
60 |
+
|
61 |
+
#: actions/admin_notices.php:119 controllers/admin/import.php:1547
|
62 |
+
#: controllers/admin/import.php:1789 controllers/admin/import.php:2339
|
63 |
+
msgid "<strong>Warning:</strong> your title is blank."
|
64 |
+
msgstr "<strong>Warnung:</strong>Ihr Titel ist leer."
|
65 |
+
|
66 |
+
#: actions/admin_notices.php:122 controllers/admin/import.php:1554
|
67 |
+
msgid "<strong>Warning:</strong> your content is blank."
|
68 |
+
msgstr "<strong>Warnung:</strong> Ihr Inhalt ist leer."
|
69 |
+
|
70 |
+
#: actions/wp_ajax_auto_detect_cf.php:5 actions/wp_ajax_auto_detect_cf.php:9
|
71 |
+
#: actions/wp_ajax_auto_detect_sf.php:5 actions/wp_ajax_auto_detect_sf.php:9
|
72 |
+
#: actions/wp_ajax_delete_import.php:5 actions/wp_ajax_delete_import.php:9
|
73 |
+
#: actions/wp_ajax_dismiss_notifications.php:5
|
74 |
+
#: actions/wp_ajax_dismiss_notifications.php:9
|
75 |
+
#: actions/wp_ajax_get_bundle_post_type.php:6
|
76 |
+
#: actions/wp_ajax_get_bundle_post_type.php:10
|
77 |
+
#: actions/wp_ajax_import_failed.php:5 actions/wp_ajax_import_failed.php:9
|
78 |
+
#: actions/wp_ajax_nested_merge.php:6 actions/wp_ajax_nested_merge.php:10
|
79 |
+
#: actions/wp_ajax_nested_xpath.php:6 actions/wp_ajax_nested_xpath.php:10
|
80 |
+
#: actions/wp_ajax_parse_nested_file.php:10
|
81 |
+
#: actions/wp_ajax_parse_nested_file.php:14
|
82 |
+
#: actions/wp_ajax_save_import_functions.php:6
|
83 |
+
#: actions/wp_ajax_save_import_functions.php:10
|
84 |
+
#: actions/wp_ajax_test_images.php:6 actions/wp_ajax_test_images.php:10
|
85 |
+
#: actions/wp_ajax_unmerge_file.php:5 actions/wp_ajax_unmerge_file.php:9
|
86 |
+
#: actions/wp_ajax_upload_resource.php:6 actions/wp_ajax_upload_resource.php:10
|
87 |
+
#: controllers/admin/history.php:74 controllers/admin/import.php:591
|
88 |
+
#: controllers/admin/import.php:899 controllers/admin/import.php:1037
|
89 |
+
#: controllers/admin/import.php:1177 controllers/admin/import.php:1333
|
90 |
+
#: controllers/admin/import.php:2589 controllers/admin/manage.php:136
|
91 |
+
#: controllers/admin/manage.php:179 controllers/admin/manage.php:293
|
92 |
+
#: controllers/admin/manage.php:545 controllers/admin/settings.php:427
|
93 |
+
msgid "Security check"
|
94 |
+
msgstr "Sicherheitskontrolle"
|
95 |
+
|
96 |
+
#: actions/wp_ajax_auto_detect_cf.php:71 models/import/record.php:1572
|
97 |
+
#: views/admin/import/element.php:21
|
98 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:8
|
99 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:7
|
100 |
+
#: views/admin/import/process.php:40
|
101 |
+
#: views/admin/import/template/_custom_fields_template.php:7
|
102 |
+
#: views/admin/import/template/_other_template.php:6
|
103 |
+
#: views/admin/import/template/_term_meta_template.php:7
|
104 |
+
#: views/admin/import/template/_term_other_template.php:7
|
105 |
+
msgid "Taxonomy Term"
|
106 |
+
msgstr ""
|
107 |
+
|
108 |
+
#: actions/wp_ajax_auto_detect_cf.php:77
|
109 |
+
msgid "No Custom Fields are present in your database for %s"
|
110 |
+
msgstr "Keine selbst erstellten Felder in der Datenbank %s"
|
111 |
+
|
112 |
+
#: actions/wp_ajax_auto_detect_cf.php:80
|
113 |
+
msgid "%s field was automatically detected."
|
114 |
+
msgstr "%s Feld wurde automatisch erkannt."
|
115 |
+
|
116 |
+
#: actions/wp_ajax_auto_detect_cf.php:82
|
117 |
+
msgid "%s fields were automatically detected."
|
118 |
+
msgstr "%s Felder wurden automatisch erkannt."
|
119 |
+
|
120 |
+
#: actions/wp_ajax_delete_import.php:32 controllers/admin/manage.php:608
|
121 |
+
msgid "Import deleted"
|
122 |
+
msgstr "Import gelöscht"
|
123 |
+
|
124 |
+
#: actions/wp_ajax_delete_import.php:36 controllers/admin/manage.php:612
|
125 |
+
msgid "All associated posts deleted."
|
126 |
+
msgstr "Alle damit verbundenen Beiträge gelöscht."
|
127 |
+
|
128 |
+
#: actions/wp_ajax_delete_import.php:40 controllers/admin/manage.php:616
|
129 |
+
msgid "Import and all associated posts deleted."
|
130 |
+
msgstr "Import und alle zugehörigen Einträge gelöscht."
|
131 |
+
|
132 |
+
#: actions/wp_ajax_delete_import.php:44 controllers/admin/manage.php:597
|
133 |
+
msgid "Nothing to delete."
|
134 |
+
msgstr "Nichts zu löschen."
|
135 |
+
|
136 |
+
#: actions/wp_ajax_delete_import.php:66
|
137 |
+
msgid "Import #%d - %d records deleted"
|
138 |
+
msgstr "Import #% d -% d Datensätze gelöscht"
|
139 |
+
|
140 |
+
#: actions/wp_ajax_get_bundle_post_type.php:73
|
141 |
+
#: actions/wp_ajax_upload_resource.php:141 controllers/admin/settings.php:610
|
142 |
+
msgid "<p class=\"wpallimport-bundle-notice\">The import bundle you are using requires WooCommerce.</p><a class=\"upgrade_link\" href=\"https://wordpress.org/plugins/woocommerce/\" target=\"_blank\">Get WooCommerce</a>."
|
143 |
+
msgstr ""
|
144 |
+
|
145 |
+
#: actions/wp_ajax_get_bundle_post_type.php:79
|
146 |
+
#: actions/wp_ajax_upload_resource.php:147 controllers/admin/settings.php:616
|
147 |
+
msgid "<p class=\"wpallimport-bundle-notice\">The import bundle you are using requires the Pro version of the WooCommerce Add-On.</p><a href=\"http://www.wpallimport.com/checkout/?edd_action=add_to_cart&download_id=1529&edd_options%5Bprice_id%5D=1\" class=\"upgrade_link\" target=\"_blank\">Purchase the WooCommerce Add-On</a>."
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: actions/wp_ajax_get_bundle_post_type.php:84
|
151 |
+
#: actions/wp_ajax_upload_resource.php:152 controllers/admin/settings.php:621
|
152 |
+
msgid "<p class=\"wpallimport-bundle-notice\">The import bundle you are using requires the Pro version of the WooCommerce Add-On, but you have the free version installed.</p><a href=\"http://www.wpallimport.com/checkout/?edd_action=add_to_cart&download_id=1529&edd_options%5Bprice_id%5D=1\" target=\"_blank\" class=\"upgrade_link\">Purchase the WooCommerce Add-On</a>."
|
153 |
+
msgstr ""
|
154 |
+
|
155 |
+
#: actions/wp_ajax_get_bundle_post_type.php:94
|
156 |
+
#: actions/wp_ajax_upload_resource.php:162 controllers/admin/settings.php:631
|
157 |
+
msgid "<p class=\"wpallimport-bundle-notice\">The import bundle you are using requires the User Import Add-On.</p><a href=\"http://www.wpallimport.com/checkout/?edd_action=add_to_cart&download_id=1921&edd_options%5Bprice_id%5D=1\" target=\"_blank\" class=\"upgrade_link\">Purchase the User Import Add-On</a>."
|
158 |
+
msgstr ""
|
159 |
+
|
160 |
+
#: actions/wp_ajax_nested_xpath.php:51
|
161 |
+
msgid "XPath is required"
|
162 |
+
msgstr "XPath wird benötigt"
|
163 |
+
|
164 |
+
#: actions/wp_ajax_nested_xpath.php:65
|
165 |
+
#: actions/wp_ajax_parse_nested_file.php:159
|
166 |
+
msgid "Elements found"
|
167 |
+
msgstr "Elemente gefunden"
|
168 |
+
|
169 |
+
#: actions/wp_ajax_nested_xpath.php:65
|
170 |
+
#: actions/wp_ajax_parse_nested_file.php:159
|
171 |
+
msgid "Elements not found"
|
172 |
+
msgstr "Elemente nicht gefunden"
|
173 |
+
|
174 |
+
#: actions/wp_ajax_save_import_functions.php:31
|
175 |
+
#: actions/wp_ajax_save_import_functions.php:52
|
176 |
+
msgid "PHP code must be wrapped in \"<?php\" and \"?>\""
|
177 |
+
msgstr "PHP code muss von \"<?php\" und \"?>\" umschlossen sein."
|
178 |
+
|
179 |
+
#: actions/wp_ajax_save_import_functions.php:38
|
180 |
+
#: actions/wp_ajax_save_import_functions.php:61
|
181 |
+
msgid "File has been successfully updated."
|
182 |
+
msgstr "Die Datei wurde erfolgreich aktualisiert."
|
183 |
+
|
184 |
+
#: actions/wp_ajax_test_images.php:32
|
185 |
+
msgid "Uploads folder `%s` is not writable."
|
186 |
+
msgstr "Upload Ordner %s muss beschreibbar sein"
|
187 |
+
|
188 |
+
#: actions/wp_ajax_test_images.php:46
|
189 |
+
msgid "Use image name instead of URL `%s`."
|
190 |
+
msgstr "Benutzen Sie ein Bild anstatt einer URL '%s'"
|
191 |
+
|
192 |
+
#: actions/wp_ajax_test_images.php:53
|
193 |
+
msgid "File `%s` isn't readable"
|
194 |
+
msgstr "Datei `%s` nicht lesbar"
|
195 |
+
|
196 |
+
#: actions/wp_ajax_test_images.php:57
|
197 |
+
msgid "File `%s` doesn't exist"
|
198 |
+
msgstr "Datei `%s` existiert nicht"
|
199 |
+
|
200 |
+
#: actions/wp_ajax_test_images.php:63
|
201 |
+
msgid "%d image was successfully retrieved from `%s`"
|
202 |
+
msgstr "%d Bild wurde erfolgreich erneuert von `%s`"
|
203 |
+
|
204 |
+
#: actions/wp_ajax_test_images.php:67
|
205 |
+
msgid "%d images were successfully retrieved from `%s`"
|
206 |
+
msgstr "%d Bilder wurden erfolgreich erneuert von `%s`"
|
207 |
+
|
208 |
+
#: actions/wp_ajax_test_images.php:95
|
209 |
+
msgid "Image `%s` not found in media library."
|
210 |
+
msgstr "Das Bild `%s` wurde in der Medienbibliothek nicht gefunden."
|
211 |
+
|
212 |
+
#: actions/wp_ajax_test_images.php:102
|
213 |
+
msgid "%d image was successfully founded in media gallery"
|
214 |
+
msgstr "%d wurde erfolgreich in zur Galerie hinzu gefügt"
|
215 |
+
|
216 |
+
#: actions/wp_ajax_test_images.php:106
|
217 |
+
msgid "%d images were successfully founded in media gallery"
|
218 |
+
msgstr "%d Bilder wurden erfolgreich zur Galerie hinzu gefügt"
|
219 |
+
|
220 |
+
#: actions/wp_ajax_test_images.php:120
|
221 |
+
msgid "URL `%s` is not valid."
|
222 |
+
msgstr "URL `%s` ist ungültig."
|
223 |
+
|
224 |
+
#: actions/wp_ajax_test_images.php:135
|
225 |
+
msgid "File `%s` cannot be saved locally"
|
226 |
+
msgstr "Datei `%s` kann nicht lokal gespeichert werden"
|
227 |
+
|
228 |
+
#: actions/wp_ajax_test_images.php:137
|
229 |
+
msgid "File `%s` is not a valid image."
|
230 |
+
msgstr "Datei `%s` ist kein zulässiges Bild"
|
231 |
+
|
232 |
+
#: actions/wp_ajax_test_images.php:148
|
233 |
+
msgid "%d image was successfully downloaded in %s seconds"
|
234 |
+
msgstr "%d Bild wurde erfolgreich heruntergeladen in %s sekunden"
|
235 |
+
|
236 |
+
#: actions/wp_ajax_test_images.php:152
|
237 |
+
msgid "%d images were successfully downloaded in %s seconds"
|
238 |
+
msgstr "%d Bilder wurden erfolgreich heruntergeladen in %s Sekunden"
|
239 |
+
|
240 |
+
#: actions/wp_ajax_upload_resource.php:124
|
241 |
+
msgid "Please verify that the URL returns a valid import file."
|
242 |
+
msgstr "Bitte überprüfen Sie dass die URL auf eine gültige Import Datei zeigt."
|
243 |
+
|
244 |
+
#: actions/wp_loaded.php:38
|
245 |
+
msgid "Cleanup completed."
|
246 |
+
msgstr ""
|
247 |
+
|
248 |
+
#: actions/wp_loaded.php:44
|
249 |
+
msgid "Missing import ID."
|
250 |
+
msgstr ""
|
251 |
+
|
252 |
+
#: actions/wp_loaded.php:72
|
253 |
+
msgid "Other imports are currently in process [%s]."
|
254 |
+
msgstr "Zur Zeit sind andere Imports in Bearbeitung [%s]"
|
255 |
+
|
256 |
+
#: actions/wp_loaded.php:82
|
257 |
+
msgid "Scheduling update is not working with \"upload\" import type. Import #%s."
|
258 |
+
msgstr "Planung von updates funktioniert nicht mit \"upload\" Importtyp. Import #%s."
|
259 |
+
|
260 |
+
#: actions/wp_loaded.php:95 actions/wp_loaded.php:167
|
261 |
+
msgid "Import #%s is currently in manually process. Request skipped."
|
262 |
+
msgstr "Import #%s ist zur Zeit im manuellen Prozess. Anfrage übersprungen."
|
263 |
+
|
264 |
+
#: actions/wp_loaded.php:118 views/admin/history/index.php:170
|
265 |
+
msgid "triggered by cron"
|
266 |
+
msgstr "Ausgelöst von cron"
|
267 |
+
|
268 |
+
#: actions/wp_loaded.php:124
|
269 |
+
msgid "#%s Cron job triggered."
|
270 |
+
msgstr "#%s Cron Job ausgelöst"
|
271 |
+
|
272 |
+
#: actions/wp_loaded.php:131
|
273 |
+
msgid "Import #%s currently in process. Request skipped."
|
274 |
+
msgstr "Import #%s ist zur Zeit in Prozess. Anfrage übersprungen."
|
275 |
+
|
276 |
+
#: actions/wp_loaded.php:140
|
277 |
+
msgid "Import #%s already triggered. Request skipped."
|
278 |
+
msgstr "Import #%s bereits ausgelöst. Anfrage übersprungen."
|
279 |
+
|
280 |
+
#: actions/wp_loaded.php:160
|
281 |
+
msgid "Import #%s is not triggered. Request skipped."
|
282 |
+
msgstr "Import #%s nicht ausgelöst. Anfrage übersprungen."
|
283 |
+
|
284 |
+
#: actions/wp_loaded.php:198 views/admin/history/index.php:167
|
285 |
+
msgid "cron processing"
|
286 |
+
msgstr "cron Bearbeitung"
|
287 |
+
|
288 |
+
#: actions/wp_loaded.php:230 models/import/record.php:633
|
289 |
+
msgid "Import #%s complete"
|
290 |
+
msgstr "Import #%s Fertiggestellt."
|
291 |
+
|
292 |
+
#: actions/wp_loaded.php:239
|
293 |
+
msgid "Records Processed %s. Records Count %s."
|
294 |
+
msgstr "Datensätze bearbeitet %s. Datensätze gezählt %s."
|
295 |
+
|
296 |
+
#: actions/wp_loaded.php:251
|
297 |
+
msgid "Import #%s already processing. Request skipped."
|
298 |
+
msgstr "Import #%s bereits in Bearbeitung. Anfrage übersprungen."
|
299 |
+
|
300 |
+
#: actions/wp_loaded.php:275
|
301 |
+
msgid "Import #%s canceled"
|
302 |
+
msgstr "Import #%s abgebrochen "
|
303 |
+
|
304 |
+
#: classes/api.php:113 views/admin/import/template/_other_template.php:39
|
305 |
+
#: views/admin/import/template/_other_template.php:88
|
306 |
+
#: views/admin/import/template/_other_template.php:111
|
307 |
+
#: views/admin/import/template/_other_template.php:178
|
308 |
+
#: views/admin/import/template/_other_template.php:208
|
309 |
+
#: views/admin/import/template/_other_template.php:236
|
310 |
+
#: views/admin/import/template/_other_template.php:262
|
311 |
+
msgid "Set with XPath"
|
312 |
+
msgstr "Gesetzt mit XPath"
|
313 |
+
|
314 |
+
#: classes/api.php:129
|
315 |
+
#: views/admin/import/template/_custom_fields_template.php:69
|
316 |
+
#: views/admin/import/template/_custom_fields_template.php:278
|
317 |
+
#: views/admin/import/template/_custom_fields_template.php:412
|
318 |
+
#: views/admin/import/template/_term_meta_template.php:69
|
319 |
+
#: views/admin/import/template/_term_meta_template.php:278
|
320 |
+
#: views/admin/import/template/_term_meta_template.php:412
|
321 |
+
msgid "Field Options..."
|
322 |
+
msgstr "Feld Optionen..."
|
323 |
+
|
324 |
+
#: classes/api.php:132
|
325 |
+
#: views/admin/import/template/_custom_fields_template.php:75
|
326 |
+
#: views/admin/import/template/_custom_fields_template.php:284
|
327 |
+
#: views/admin/import/template/_custom_fields_template.php:418
|
328 |
+
#: views/admin/import/template/_term_meta_template.php:75
|
329 |
+
#: views/admin/import/template/_term_meta_template.php:284
|
330 |
+
#: views/admin/import/template/_term_meta_template.php:418
|
331 |
+
msgid "Mapping"
|
332 |
+
msgstr "Zuordnung"
|
333 |
+
|
334 |
+
#: classes/api.php:141
|
335 |
+
#: views/admin/import/template/_custom_fields_template.php:182
|
336 |
+
#: views/admin/import/template/_custom_fields_template.php:350
|
337 |
+
#: views/admin/import/template/_custom_fields_template.php:484
|
338 |
+
#: views/admin/import/template/_taxonomies_template.php:233
|
339 |
+
#: views/admin/import/template/_term_meta_template.php:182
|
340 |
+
#: views/admin/import/template/_term_meta_template.php:350
|
341 |
+
#: views/admin/import/template/_term_meta_template.php:484
|
342 |
+
msgid "In Your File"
|
343 |
+
msgstr "In Ihrer Datei"
|
344 |
+
|
345 |
+
#: classes/api.php:142
|
346 |
+
#: views/admin/import/template/_custom_fields_template.php:183
|
347 |
+
#: views/admin/import/template/_custom_fields_template.php:351
|
348 |
+
#: views/admin/import/template/_custom_fields_template.php:485
|
349 |
+
#: views/admin/import/template/_taxonomies_template.php:234
|
350 |
+
#: views/admin/import/template/_term_meta_template.php:183
|
351 |
+
#: views/admin/import/template/_term_meta_template.php:351
|
352 |
+
#: views/admin/import/template/_term_meta_template.php:485
|
353 |
+
msgid "Translated To"
|
354 |
+
msgstr "Übersetzt zu"
|
355 |
+
|
356 |
+
#: classes/api.php:221
|
357 |
+
#: views/admin/import/template/_custom_fields_template.php:156
|
358 |
+
#: views/admin/import/template/_custom_fields_template.php:245
|
359 |
+
#: views/admin/import/template/_custom_fields_template.php:324
|
360 |
+
#: views/admin/import/template/_custom_fields_template.php:380
|
361 |
+
#: views/admin/import/template/_custom_fields_template.php:458
|
362 |
+
#: views/admin/import/template/_custom_fields_template.php:514
|
363 |
+
#: views/admin/import/template/_term_meta_template.php:156
|
364 |
+
#: views/admin/import/template/_term_meta_template.php:245
|
365 |
+
#: views/admin/import/template/_term_meta_template.php:324
|
366 |
+
#: views/admin/import/template/_term_meta_template.php:380
|
367 |
+
#: views/admin/import/template/_term_meta_template.php:458
|
368 |
+
#: views/admin/import/template/_term_meta_template.php:514
|
369 |
+
msgid "Add Another"
|
370 |
+
msgstr "Weitere Hinzufügen"
|
371 |
+
|
372 |
+
#: classes/api.php:227
|
373 |
+
#: views/admin/import/template/_custom_fields_template.php:251
|
374 |
+
#: views/admin/import/template/_custom_fields_template.php:386
|
375 |
+
#: views/admin/import/template/_custom_fields_template.php:520
|
376 |
+
#: views/admin/import/template/_term_meta_template.php:251
|
377 |
+
#: views/admin/import/template/_term_meta_template.php:386
|
378 |
+
#: views/admin/import/template/_term_meta_template.php:520
|
379 |
+
msgid "Save Rules"
|
380 |
+
msgstr "Regel speichern"
|
381 |
+
|
382 |
+
#: classes/api.php:258
|
383 |
+
msgid "Download image hosted elsewhere"
|
384 |
+
msgstr "Bilder von Host herunterladen"
|
385 |
+
|
386 |
+
#: classes/api.php:259 classes/api.php:279
|
387 |
+
#: views/admin/import/template/_featured_template.php:16
|
388 |
+
#: views/admin/import/template/_featured_template.php:26
|
389 |
+
msgid "http:// or https://"
|
390 |
+
msgstr "http:// oder https://"
|
391 |
+
|
392 |
+
#: classes/api.php:264
|
393 |
+
msgid "Use image(s) currently uploaded in %s"
|
394 |
+
msgstr "Nutze Bild(er) die gerade hochgeladen werden in %s"
|
395 |
+
|
396 |
+
#: classes/api.php:278
|
397 |
+
msgid "Download file hosted elsewhere"
|
398 |
+
msgstr "Datei von Host herunterladen"
|
399 |
+
|
400 |
+
#: classes/api.php:284
|
401 |
+
msgid "Use file(s) currently uploaded in %s"
|
402 |
+
msgstr "Nutze Datei(en die gerade hochgeladen werden in %s"
|
403 |
+
|
404 |
+
#: classes/api.php:398 models/import/record.php:2710
|
405 |
+
msgid "- Searching for existing image `%s` in `%s` folder"
|
406 |
+
msgstr "- Suche nach existierendem Bild `%s` im Verzeichnis `%s` "
|
407 |
+
|
408 |
+
#: classes/api.php:405 classes/api.php:476 models/import/record.php:2717
|
409 |
+
#: models/import/record.php:2801 models/import/record.php:3064
|
410 |
+
msgid "- <b>WARNING</b>: Can't detect attachment file type %s"
|
411 |
+
msgstr "- <b>WARNUNG</b>: Kann den Dateityp nicht erkennen %s"
|
412 |
+
|
413 |
+
#: classes/api.php:410 classes/api.php:481 models/import/record.php:2723
|
414 |
+
#: models/import/record.php:2807
|
415 |
+
msgid "- File `%s` has been successfully found"
|
416 |
+
msgstr "- Datei `%s` wurde gefunden"
|
417 |
+
|
418 |
+
#: classes/api.php:416 classes/api.php:467 models/import/record.php:2631
|
419 |
+
#: models/import/record.php:2734 models/import/record.php:2760
|
420 |
+
#: models/import/record.php:2794
|
421 |
+
msgid "- <b>WARNING</b>: File %s is not a valid image and cannot be set as featured one"
|
422 |
+
msgstr "- <b>WARNUNG</b>: Datei %s ist kein zulässiges Bild und kann nicht als Featured-Bild gesetzt werden"
|
423 |
+
|
424 |
+
#: classes/api.php:419 models/import/record.php:2730
|
425 |
+
msgid "- Image `%s` has been successfully found"
|
426 |
+
msgstr "- Bild `%s` wurde gefunden"
|
427 |
+
|
428 |
+
#: classes/api.php:429 models/import/record.php:2743
|
429 |
+
msgid "- Downloading image from `%s`"
|
430 |
+
msgstr "- Bild wird Herunterladen von `%s`"
|
431 |
+
|
432 |
+
#: classes/api.php:432
|
433 |
+
msgid "- Downloading file from `%s`"
|
434 |
+
msgstr "- Datei wird Herunterladen von `%s`"
|
435 |
+
|
436 |
+
#: classes/api.php:444 classes/api.php:471 models/import/record.php:2756
|
437 |
+
#: models/import/record.php:2792
|
438 |
+
msgid "- Image `%s` has been successfully downloaded"
|
439 |
+
msgstr "- Bild `%s` wurde erfolgreich heruntergeladen"
|
440 |
+
|
441 |
+
#: classes/api.php:450 models/import/record.php:2767
|
442 |
+
msgid "- File `%s` has been successfully downloaded"
|
443 |
+
msgstr "- Datei `%s` wurde erfolgreich heruntergeladen"
|
444 |
+
|
445 |
+
#: classes/api.php:461 models/import/record.php:2784
|
446 |
+
msgid "- <b>WARNING</b>: File %s cannot be saved locally as %s"
|
447 |
+
msgstr "- <b>WARNUNG</b>: Datei %s kann lokal nicht gespeichert werden als %s"
|
448 |
+
|
449 |
+
#: classes/api.php:495 models/import/record.php:2845
|
450 |
+
msgid "- Creating an attachment for image `%s`"
|
451 |
+
msgstr "- Erstelle einen Anhang für Bild `%s`"
|
452 |
+
|
453 |
+
#: classes/api.php:498
|
454 |
+
msgid "- Creating an attachment for file `%s`"
|
455 |
+
msgstr "- Erstelle einen Anhang für Datei `%s`"
|
456 |
+
|
457 |
+
#: classes/api.php:517 models/import/record.php:2872
|
458 |
+
#: models/import/record.php:3086
|
459 |
+
msgid "- <b>WARNING</b>"
|
460 |
+
msgstr "- <b>WARNUNG</b>"
|
461 |
+
|
462 |
+
#: classes/api.php:521 models/import/record.php:2932
|
463 |
+
msgid "- Attachment has been successfully created for image `%s`"
|
464 |
+
msgstr "- Anhang wurde erstellt für das Bild `%s`"
|
465 |
+
|
466 |
+
#: classes/render.php:68 classes/render.php:88 classes/render.php:166
|
467 |
+
#: classes/render.php:186
|
468 |
+
msgid "<strong>%s</strong> %s more"
|
469 |
+
msgstr "<strong>%s</strong> %s mehr"
|
470 |
+
|
471 |
+
#: classes/render.php:68 classes/render.php:88 classes/render.php:166
|
472 |
+
#: classes/render.php:186 views/admin/import/evaluate.php:5
|
473 |
+
#: views/admin/import/evaluate_variations.php:3
|
474 |
+
msgid "element"
|
475 |
+
msgid_plural "elements"
|
476 |
+
msgstr[0] "Element"
|
477 |
+
msgstr[1] "Elemente"
|
478 |
+
|
479 |
+
#: classes/render.php:94 classes/render.php:192
|
480 |
+
msgid "more"
|
481 |
+
msgstr "mehr"
|
482 |
+
|
483 |
+
#: classes/updater.php:66
|
484 |
+
msgid "View WP All Import Pro Changelog"
|
485 |
+
msgstr ""
|
486 |
+
|
487 |
+
#: classes/updater.php:66
|
488 |
+
msgid "Changelog"
|
489 |
+
msgstr ""
|
490 |
+
|
491 |
+
#: classes/updater.php:261
|
492 |
+
msgid "There is a new version of %1$s available. <a target=\"_blank\" class=\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
|
493 |
+
msgstr "Eine neue Version von %1$s ist verfügbar. <a target=\"_blank\" class=\"thickbox\" href=\"%2$s\">Details ansehen von %3$s</a>."
|
494 |
+
|
495 |
+
#: classes/updater.php:268
|
496 |
+
msgid "There is a new version of %1$s available. <a target=\"_blank\" class=\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s\">update now</a>."
|
497 |
+
msgstr "Eine neue Version von %1$s ist verfügbar. <a target=\"_blank\" class=\"thickbox\" href=\"%2$s\">Details ansehen von %3$s</a> oder <a href=\"%4$s\">jetzt aktualisieren</a>."
|
498 |
+
|
499 |
+
#: classes/updater.php:456
|
500 |
+
msgid "You do not have permission to install plugin updates"
|
501 |
+
msgstr "Sie haben keine Berechtigung um Plug-In Aktualisierungen durchzuführen."
|
502 |
+
|
503 |
+
#: classes/updater.php:456
|
504 |
+
msgid "Error"
|
505 |
+
msgstr "Fehler"
|
506 |
+
|
507 |
+
#: classes/upload.php:50
|
508 |
+
msgid "Please specify a file to import.<br/><br/>If you are uploading the file from your computer, please wait for it to finish uploading (progress bar at 100%), before trying to continue."
|
509 |
+
msgstr "Bitte wählen Sie eine Datei für den Import.<br/><br/>Wenn Sie eine Datei von Ihrem Computer hochladen, warten Sie bitte bis der Upload fertig ist (Fortschrittsbalken bei 100% ) bevor Sie auf weiter klicken."
|
510 |
+
|
511 |
+
#: classes/upload.php:52
|
512 |
+
msgid "Uploaded file is empty"
|
513 |
+
msgstr "Hochgeladene Datei ist leer."
|
514 |
+
|
515 |
+
#: classes/upload.php:54 controllers/admin/settings.php:466
|
516 |
+
msgid "Uploaded file must be XML, CSV, ZIP, GZIP, GZ, JSON, SQL, TXT, DAT or PSV"
|
517 |
+
msgstr "Hochgeladene Datei muss XML, CSV, ZIP, GZIP, GZ, JSON, SQL, TXT, DAT oder PSV sein."
|
518 |
+
|
519 |
+
#: classes/upload.php:61 classes/upload.php:149 classes/upload.php:357
|
520 |
+
#: classes/upload.php:428 classes/upload.php:690 classes/upload.php:761
|
521 |
+
msgid "WP All Import couldn't find a file to import inside your ZIP.<br/><br/>Either the .ZIP file is broken, or doesn't contain a file with an extension of XML, CSV, PSV, DAT, or TXT. <br/>Please attempt to unzip your .ZIP file on your computer to ensure it is a valid .ZIP file which can actually be unzipped, and that it contains a file which WP All Import can import."
|
522 |
+
msgstr "WP All Import kann in Ihrem ZIP keine importierbare Datei finden.<br/><br/>Entweder ist die .ZIP beschädigt, oder sie enthält keinen Dateityp mit XML, CSV, PSV, DAT, or TXT. <br/>Bitte versuchen Sie das .ZIP auf Ihrem Computer zu entpacken um sicher zu gehen, dass es sich um ein gültiges .ZIP handelt. Und dass es eine von WP All Import importierbare Datei enthält."
|
523 |
+
|
524 |
+
#: classes/upload.php:129 classes/upload.php:169 classes/upload.php:408
|
525 |
+
#: classes/upload.php:677 classes/upload.php:741 classes/upload.php:781
|
526 |
+
#: classes/upload.php:808 classes/upload.php:847 classes/upload.php:871
|
527 |
+
#: classes/upload.php:895 classes/upload.php:967
|
528 |
+
msgid "WP All Import can't access your WordPress uploads folder."
|
529 |
+
msgstr "WP All Import hat keinen Zugang zu Ihrem Wordpress Upload Verzeichnis."
|
530 |
+
|
531 |
+
#: classes/upload.php:236 classes/upload.php:500 classes/upload.php:602
|
532 |
+
#: classes/upload.php:834 classes/upload.php:992
|
533 |
+
msgid "Can not import this file. JSON to XML convertation failed."
|
534 |
+
msgstr "Kann die Datei nicht importieren. JSON zu XML Umwandlung fehlgeschlagen."
|
535 |
+
|
536 |
+
#: classes/upload.php:326 classes/upload.php:673
|
537 |
+
msgid "Please specify a file to import."
|
538 |
+
msgstr "Bitte wählen Sie eine Datei zum importieren"
|
539 |
+
|
540 |
+
#: classes/upload.php:328
|
541 |
+
msgid "The URL to your file is not valid.<br/><br/>Please make sure the URL starts with http:// or https://. To import from https://, your server must have OpenSSL installed."
|
542 |
+
msgstr "Die URL zu Ihrer Datei ist nicht korrekt. <br/><br/>Bitte stellen Sie sicher, dass die URL mit http:// oder https:// beginnt. Um von https:// zu importieren, muss Ihr Server OpenSSL installiert haben."
|
543 |
+
|
544 |
+
#: classes/upload.php:330
|
545 |
+
msgid "Uploads folder "
|
546 |
+
msgstr ""
|
547 |
+
|
548 |
+
#: classes/upload.php:350
|
549 |
+
msgid "Failed upload ZIP archive"
|
550 |
+
msgstr "Fehler bei ZIP Upload"
|
551 |
+
|
552 |
+
#: classes/upload.php:461 classes/upload.php:565
|
553 |
+
msgid "WP All Import was not able to download your file.<br/><br/>Please make sure the URL to your file is valid.<br/>You can test this by pasting it into your browser.<br/>Other reasons for this error can include some server setting on your host restricting access to this particular URL or external URLs in general, or some setting on the server hosting the file you are trying to access preventing your server from accessing it."
|
554 |
+
msgstr "WP All Import konnte Ihre Datei nicht herunterladen.<br/><br/>Bitte stellen Sie sicher dass die URL zu Ihrer Datei korrekt ist.<br/>Sie können das testen indem Sie die URL in Ihren Browser kopieren.<br/>Andere Gründe für diesen Fehler können Servereinstellungen sein, die den Zugriff auf diese URL oder generell auf externe URLs verhindern. Oder Einstellungen auf dem Server verhindern den Zugriff."
|
555 |
+
|
556 |
+
#: controllers/admin/addons.php:21
|
557 |
+
msgid "WooCommerce Addon"
|
558 |
+
msgstr "WooCommerce Add-on"
|
559 |
+
|
560 |
+
#: controllers/admin/addons.php:22 controllers/admin/addons.php:76
|
561 |
+
msgid "Import Products from any XML or CSV to WooCommerce"
|
562 |
+
msgstr "Importiere Produkte von XML oder CSV in WooCommerce"
|
563 |
+
|
564 |
+
#: controllers/admin/addons.php:32
|
565 |
+
msgid "ACF Addon"
|
566 |
+
msgstr "ACF Add-on"
|
567 |
+
|
568 |
+
#: controllers/admin/addons.php:33
|
569 |
+
msgid "Import to advanced custom fields"
|
570 |
+
msgstr "Importiere in erweiterte benutzerdefinierte Felder"
|
571 |
+
|
572 |
+
#: controllers/admin/addons.php:43
|
573 |
+
msgid "WPML Addon"
|
574 |
+
msgstr "WPML Add-on"
|
575 |
+
|
576 |
+
#: controllers/admin/addons.php:44
|
577 |
+
msgid "Import to WPML"
|
578 |
+
msgstr "Importiere in WPML"
|
579 |
+
|
580 |
+
#: controllers/admin/addons.php:54
|
581 |
+
msgid "User Addon"
|
582 |
+
msgstr "Benutzer Add-on"
|
583 |
+
|
584 |
+
#: controllers/admin/addons.php:55
|
585 |
+
msgid "Import Users"
|
586 |
+
msgstr "Importiere Benutzer"
|
587 |
+
|
588 |
+
#: controllers/admin/addons.php:65
|
589 |
+
msgid "Link cloaking Addon"
|
590 |
+
msgstr "Maskiere Link Add-on"
|
591 |
+
|
592 |
+
#: controllers/admin/addons.php:66
|
593 |
+
msgid "Affiliate link cloaking"
|
594 |
+
msgstr "Maskiere Affiliate Link"
|
595 |
+
|
596 |
+
#: controllers/admin/addons.php:75
|
597 |
+
msgid "WooCommerce Addon - free edition"
|
598 |
+
msgstr "WooCommerce Add-on - Freie Version"
|
599 |
+
|
600 |
+
#: controllers/admin/addons.php:84
|
601 |
+
msgid "WooCommerce Tabs Addon"
|
602 |
+
msgstr "WooCommerce Tab Add-on"
|
603 |
+
|
604 |
+
#: controllers/admin/addons.php:85
|
605 |
+
msgid "Import data to WooCommerce tabs"
|
606 |
+
msgstr "Importiere Daten in WooCommerce Tabs"
|
607 |
+
|
608 |
+
#: controllers/admin/history.php:31
|
609 |
+
msgid "Import is not specified."
|
610 |
+
msgstr "Import nicht spezifiziert"
|
611 |
+
|
612 |
+
#: controllers/admin/history.php:57 controllers/admin/manage.php:60
|
613 |
+
msgid "«"
|
614 |
+
msgstr "«"
|
615 |
+
|
616 |
+
#: controllers/admin/history.php:58 controllers/admin/manage.php:61
|
617 |
+
msgid "»"
|
618 |
+
msgstr "»"
|
619 |
+
|
620 |
+
#: controllers/admin/history.php:92
|
621 |
+
msgid "Log file does not exists."
|
622 |
+
msgstr "Log Datei existiert nicht."
|
623 |
+
|
624 |
+
#: controllers/admin/history.php:112
|
625 |
+
msgid "History deleted"
|
626 |
+
msgstr "Chronik gelöscht"
|
627 |
+
|
628 |
+
#: controllers/admin/history.php:139 controllers/admin/manage.php:652
|
629 |
+
msgid "%d %s deleted"
|
630 |
+
msgstr "%d %s gelöscht"
|
631 |
+
|
632 |
+
#: controllers/admin/history.php:139
|
633 |
+
msgid "history"
|
634 |
+
msgid_plural "histories"
|
635 |
+
msgstr[0] "Chronik"
|
636 |
+
msgstr[1] "Chroniken"
|
637 |
+
|
638 |
+
#: controllers/admin/import.php:75
|
639 |
+
msgid "WP All Import lost track of where you are.<br/><br/>Maybe you cleared your cookies or maybe it is just a temporary issue on your or your web host's end.<br/>If you can't do an import without seeing this error, change your session settings on the All Import -> Settings page."
|
640 |
+
msgstr "WP All Import hat die Spur verloren.<br/><br/>Vielleicht haben Sie Ihre Cookies gelöscht oder es handelt sich um einen vorübergehenden Fehler bei Ihnen oder Ihrem Webspace Dienstanbieter.<br/>Wenn Sie einen Import durchführen können ohne diesen Fehler zu sehen, dann ändern Sie die Einstellung Ihrer Sitzung unter All Import -> Einstellungen"
|
641 |
+
|
642 |
+
#: controllers/admin/import.php:92 controllers/admin/import.php:684
|
643 |
+
msgid "There are no elements to import based on your XPath.<br/><br/>If you are in Step 2, you probably specified filtering options that don’t match any elements present in your file.<br/>If you are seeing this error elsewhere, it means that while the XPath expression for your initial import matched some elements in your file previously, there are now zero elements in the file that match this expression.<br/>You can edit the XPath for your import by going to the Manage Imports -> Import Settings page."
|
644 |
+
msgstr "Keine Elemente für den Import auf Ihrem XPath.<br/><br/>Wenn Sie bei Schritt 2 sind, haben Sie eventuell Filteroptionen eingestellt, die zu keinen Elementen in Ihrer Datei passen.<br/>Wenn Sie diesen Fehler anderswo sehen, bedeutet das, dass der XPath von Ihrem initialen Import mit Elementen Ihrer vorherigen Datei übereinstimmt. Jetzt sind Null Elemente in der Datei die mit diesem XPath übereinstimmen. <br/>Sie können den XPath für Ihren Import ändern unter Imports verwalten -> Import Einstellungen"
|
645 |
+
|
646 |
+
#: controllers/admin/import.php:151
|
647 |
+
msgid "The import associated with this export has been deleted."
|
648 |
+
msgstr "Der Import in Zusammenhang mit diesem Export wurde gelöscht."
|
649 |
+
|
650 |
+
#: controllers/admin/import.php:151
|
651 |
+
msgid "Please re-run your export by clicking Run Export on the All Export -> Manage Exports page. Then try your import again."
|
652 |
+
msgstr "Bitte starten Sie Ihren Export erneut durch klicken auf Export ausführen unter All Export -> Exports verwalten. Dann versuchen Sie den Import erneut."
|
653 |
+
|
654 |
+
#: controllers/admin/import.php:156
|
655 |
+
msgid "This import has been deleted."
|
656 |
+
msgstr "Dieser Import wurde gelöscht."
|
657 |
+
|
658 |
+
#: controllers/admin/import.php:177
|
659 |
+
msgid "Required PHP components are missing.<br/><br/>WP All Import requires DOMDocument, XMLReader, and XMLWriter PHP modules to be installed.<br/>These are standard features of PHP, and are necessary for WP All Import to read the files you are trying to import.<br/>Please contact your web hosting provider and ask them to install and activate the DOMDocument, XMLReader, and XMLWriter PHP modules."
|
660 |
+
msgstr "Benötigte PHP Komponenten fehlen.<br/><br/>WP All Import benötigt DOMDocument, XMLReader und XMLWriter PHP Module.<br/>Diese sind Standard Merkmale von PHP und werden von WP All Import benötigt um die Dateien zu lesen die Sie importieren wollen.<br/>Bitte kontaktieren Sie Ihren Webhosting Anbieter und fragen Sie nach der Installation und Aktivierung von DOMDocument, XMLReader und XMLWriter PHP Module."
|
661 |
+
|
662 |
+
#: controllers/admin/import.php:252
|
663 |
+
msgid "Select an item type to import the data"
|
664 |
+
msgstr "Wählen Sie einen Produkttyp um die Daten zu importieren."
|
665 |
+
|
666 |
+
#: controllers/admin/import.php:256
|
667 |
+
msgid "Previous import for update must be selected to proceed with a new one"
|
668 |
+
msgstr "Um vorherige Imports zu aktualisieren, müssen diese mit neuen selektiert werden."
|
669 |
+
|
670 |
+
#: controllers/admin/import.php:260
|
671 |
+
msgid "Select a taxonomy to import the data"
|
672 |
+
msgstr ""
|
673 |
+
|
674 |
+
#: controllers/admin/import.php:303
|
675 |
+
msgid "File is no longer in the correct format"
|
676 |
+
msgstr "Datei ist nicht mehr im korrekten Format."
|
677 |
+
|
678 |
+
#: controllers/admin/import.php:306 controllers/admin/import.php:349
|
679 |
+
msgid "Certain columns are required to be present in your file to enable it to be re-imported with WP All Import. These columns are missing. Re-export your file using WP All Export, and don't delete any of the columns when editing it. Then, re-import will work correctly."
|
680 |
+
msgstr "Bestimmte Spalten werden benötigt um erneut importiert werden zu können mit WP All Import. Diese Spalten fehlen. Exportieren Sie Ihre Datei erneut mit WP All Export. Löschen Sie dabei keine Spalte, dann wird der erneute Import korrekt funktionieren."
|
681 |
+
|
682 |
+
#: controllers/admin/import.php:309
|
683 |
+
msgid "The import template you are using requires User Import Add-On.<br/><a href=\"http://www.wpallimport.com/add-ons/user-import/?utm_source=wordpress.org&utm_medium=wpai-import-template&utm_campaign=free+wp+all+export+plugin\" target=\"_blank\">Purchase the User Import Add-On</a>"
|
684 |
+
msgstr "Die Import Vorlage die Sie benutzen, benötigt das Benutzer Import Add-on.<br/><a href=\"http://www.wpallimport.com/add-ons/user-import/?utm_source=wordpress.org&utm_medium=wpai-import-template&utm_campaign=free+wp+all+export+plugin\" target=\"_blank\">User Import Add-on kaufen</a>"
|
685 |
+
|
686 |
+
#: controllers/admin/import.php:384
|
687 |
+
msgid "Unable to download feed resource."
|
688 |
+
msgstr "Herunterladen des Feeds nicht möglich."
|
689 |
+
|
690 |
+
#: controllers/admin/import.php:461 controllers/admin/import.php:485
|
691 |
+
#: controllers/admin/settings.php:705
|
692 |
+
msgid "Please confirm you are importing a valid feed.<br/> Often, feed providers distribute feeds with invalid data, improperly wrapped HTML, line breaks where they should not be, faulty character encodings, syntax errors in the XML, and other issues.<br/><br/>WP All Import has checks in place to automatically fix some of the most common problems, but we can’t catch every single one.<br/><br/>It is also possible that there is a bug in WP All Import, and the problem is not with the feed.<br/><br/>If you need assistance, please contact support – <a href=\"mailto:support@wpallimport.com\">support@wpallimport.com</a> – with your XML/CSV file. We will identify the problem and release a bug fix if necessary."
|
693 |
+
msgstr "Bitte bestätigen: Sie importieren einen gültigen Feed.<br/> Oftmals enthalten Feeds von Anbietern falsche Daten wie, unpassend eingepacktes HTML, neue Zeile wo sie nicht sein soll, falsche Buchstaben Codierung, Syntax Fehler in der XML und andere Probleme.<br/><br/>WP All Import hat Kontrollen die automatisch einige der häufigsten Probleme beheben, aber wir können nicht jeden finden.<br/><br/>Es ist auch Möglich dass ein Fehler in WP All Import ist und das Problem nicht am Feed liegt.<br/><br/>Wenn Sie Hilfe brauchen, kontaktieren Sie bitte den Support – <a href=\"mailto:support@wpallimport.com\">support@wpallimport.com</a> - mit Ihrer XML/CSV Datei. Wir werden das Problem finden und eine Behebung des Fehlers herausgeben falls das nötig ist."
|
694 |
+
|
695 |
+
#: controllers/admin/import.php:480
|
696 |
+
msgid "WP All Import unable to detect file type.<br/><br/>WP All Import not able to determine what type of file you are importing. Make sure your file extension is correct for the file type you are importing.<br/> Please choose the correct file type from the dropdown below, or try adding &type=xml or &type=csv to the end of the URL, for example http://example.com/export-products.php?&type=xml"
|
697 |
+
msgstr "WP All Import kann den Dateityp nicht feststellen.<br/><br/>WP All Import kann den Typ Ihrer Importdatei nicht bestimmen. Stellen Sie sicher, dass die Dateiendung der zu importierenden Datei korrekt ist.<br/>Bitte wählen Sie einen korrekten Dateityp von der Dropdown-Liste unterhalb. Oder versuchen Sie &type=xml oder &type=csv an das Ende der URL anzufügen. Beispiel: http://example.com/export-products.php?&type=xml"
|
698 |
+
|
699 |
+
#: controllers/admin/import.php:513
|
700 |
+
msgid "No elements selected"
|
701 |
+
msgstr "Keine Elemente gewählt"
|
702 |
+
|
703 |
+
#: controllers/admin/import.php:518 controllers/admin/import.php:747
|
704 |
+
msgid "Your XPath is not valid.<br/><br/>Click \"get default XPath\" to get the default XPath."
|
705 |
+
msgstr "Ihr XPath ist nicht korrekt. <br/><br/>Klicken Sie auf \"Hole Standard XPath\" um den Standard XPath zu erhalten."
|
706 |
+
|
707 |
+
#: controllers/admin/import.php:522 controllers/admin/import.php:753
|
708 |
+
msgid "XPath must match only elements"
|
709 |
+
msgstr "XPath muss Elementen entsprechen"
|
710 |
+
|
711 |
+
#: controllers/admin/import.php:552
|
712 |
+
msgid "Warning: No matching elements found for XPath expression from the import being updated. It probably means that new XML file has different format. Though you can update XPath, procceed only if you sure about update operation being valid."
|
713 |
+
msgstr "Warnung: Keine passenden Elemente für diesen XPath gefunden von dem Import der aktualisiert wird. Das bedeutet eventuell, dass die XML Datei ein anderes Format hat. Obwohl Sie XPath aktualisieren können, sollten Sie das nur ausführen wenn Sie sicher sind dass die Aktualisierung zulässig ist. "
|
714 |
+
|
715 |
+
#: controllers/admin/import.php:594 controllers/admin/import.php:740
|
716 |
+
msgid "Your XPath is empty.<br/><br/>Please enter an XPath expression, or click \"get default XPath\" to get the default XPath."
|
717 |
+
msgstr "Ihr XPath is leer.<br/><br/>Bitte geben Sie einen XPath Ausdruck ein, oder klicken Sie auf \"Hole Standard XPath\" um den Standard XPath zu erhalten."
|
718 |
+
|
719 |
+
#: controllers/admin/import.php:749
|
720 |
+
msgid "No matching variations found for XPath specified"
|
721 |
+
msgstr "Keine passenden Varianten für den XPath gefunden"
|
722 |
+
|
723 |
+
#: controllers/admin/import.php:990 controllers/admin/import.php:1006
|
724 |
+
#: controllers/admin/import.php:1137
|
725 |
+
msgid "WP All Import lost track of where you are.<br/><br/>Maybe you cleared your cookies or maybe it is just a temporary issue on your web host's end.<br/>If you can't do an import without seeing this error, change your session settings on the All Import -> Settings page."
|
726 |
+
msgstr "WP All Import hat die Spur verloren.<br/><br/>Vielleicht haben Sie Ihre Cookies gelöscht oder es handelt sich um einen vorübergehenden Fehler bei Ihnen oder Ihrem Dienstanbieter.<br/>Wenn Sie einen Import durchführen können ohne diesen Fehler zu sehen, ändern Sie Ihre Einstellungen unter All Import -> Einstellungen."
|
727 |
+
|
728 |
+
#: controllers/admin/import.php:992
|
729 |
+
msgid "<strong>Warning</strong>: your title is blank."
|
730 |
+
msgstr "<strong>Warnung:</strong>Ihr Titel ist leer."
|
731 |
+
|
732 |
+
#: controllers/admin/import.php:997
|
733 |
+
msgid "<strong>Warning</strong>: resulting post title is empty"
|
734 |
+
msgstr "<strong>Warnung:</strong>:Ergebnis post Titel ist leer."
|
735 |
+
|
736 |
+
#: controllers/admin/import.php:1002
|
737 |
+
msgid "Error parsing title: %s"
|
738 |
+
msgstr "Fehler beim Parsen des Titel: %s"
|
739 |
+
|
740 |
+
#: controllers/admin/import.php:1008
|
741 |
+
msgid "<strong>Warning</strong>: your content is blank."
|
742 |
+
msgstr "<strong>Warnung:</strong>: Ihr Inhalt ist leer."
|
743 |
+
|
744 |
+
#: controllers/admin/import.php:1013
|
745 |
+
msgid "<strong>Warning</strong>: resulting post content is empty"
|
746 |
+
msgstr "<strong>Warnung:</strong>:Ergebnis post Titel ist leer."
|
747 |
+
|
748 |
+
#: controllers/admin/import.php:1018
|
749 |
+
msgid "Error parsing content: %s"
|
750 |
+
msgstr "Fehler beim Parsen des Inhalts: %s"
|
751 |
+
|
752 |
+
#: controllers/admin/import.php:1157 controllers/admin/import.php:1313
|
753 |
+
#: controllers/admin/import.php:1446
|
754 |
+
msgid "Error parsing: %s"
|
755 |
+
msgstr "Fehler beim Parsen: %s"
|
756 |
+
|
757 |
+
#: controllers/admin/import.php:1269 controllers/admin/import.php:1425
|
758 |
+
msgid "Error parsing: String could not be parsed as XML"
|
759 |
+
msgstr "Fehler beim Parsen: String kann nicht als XML geparst werden."
|
760 |
+
|
761 |
+
#: controllers/admin/import.php:1310 controllers/admin/import.php:1443
|
762 |
+
msgid "There is no data to preview"
|
763 |
+
msgstr "Keine Daten zur Vorschau"
|
764 |
+
|
765 |
+
#: controllers/admin/import.php:1506
|
766 |
+
msgid "You've reached your max_input_vars limit of %d. Please increase this."
|
767 |
+
msgstr ""
|
768 |
+
|
769 |
+
#: controllers/admin/import.php:1563 views/admin/import/template.php:71
|
770 |
+
msgid "Excerpt"
|
771 |
+
msgstr "Ausschnitt"
|
772 |
+
|
773 |
+
#: controllers/admin/import.php:1567 controllers/admin/import.php:1571
|
774 |
+
#: models/import/record.php:1340
|
775 |
+
#: views/admin/import/options/_reimport_options.php:143
|
776 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:106
|
777 |
+
#: views/admin/import/template.php:116
|
778 |
+
msgid "Images"
|
779 |
+
msgstr "Bilder"
|
780 |
+
|
781 |
+
#: controllers/admin/import.php:1577
|
782 |
+
msgid "Images meta "
|
783 |
+
msgstr ""
|
784 |
+
|
785 |
+
#: controllers/admin/import.php:1592
|
786 |
+
msgid "Custom Field Name"
|
787 |
+
msgstr "Name individuelles Feld"
|
788 |
+
|
789 |
+
#: controllers/admin/import.php:1596
|
790 |
+
msgid "Custom Field Value"
|
791 |
+
msgstr "Wert individuelles Feld"
|
792 |
+
|
793 |
+
#: controllers/admin/import.php:1609
|
794 |
+
msgid "Both name and value must be set for all woocommerce attributes"
|
795 |
+
msgstr "Name und Wert müssen für alle WooCommerce Merkmale gesetzt sein."
|
796 |
+
|
797 |
+
#: controllers/admin/import.php:1612
|
798 |
+
msgid "Attribute Field Name"
|
799 |
+
msgstr "Name Merkmalfeld"
|
800 |
+
|
801 |
+
#: controllers/admin/import.php:1615
|
802 |
+
msgid "Attribute Field Value"
|
803 |
+
msgstr "Wert Merkmalfeld"
|
804 |
+
|
805 |
+
#: controllers/admin/import.php:1626
|
806 |
+
msgid "Tags"
|
807 |
+
msgstr "Tags"
|
808 |
+
|
809 |
+
#: controllers/admin/import.php:1629 views/admin/history/index.php:33
|
810 |
+
msgid "Date"
|
811 |
+
msgstr "Datum"
|
812 |
+
|
813 |
+
#: controllers/admin/import.php:1631 controllers/admin/import.php:1632
|
814 |
+
msgid "Start Date"
|
815 |
+
msgstr "Start Datum"
|
816 |
+
|
817 |
+
#: controllers/admin/import.php:1666
|
818 |
+
msgid "Template updated"
|
819 |
+
msgstr "Vorlage aktualisiert"
|
820 |
+
|
821 |
+
#: controllers/admin/import.php:1766
|
822 |
+
msgid "%s template is invalid: %s"
|
823 |
+
msgstr "%s Vorlage ist ungültig: %s"
|
824 |
+
|
825 |
+
#: controllers/admin/import.php:1878
|
826 |
+
msgid "Records to import must be specified or uncheck `Import only specified records` option to process all records"
|
827 |
+
msgstr "Zu importierende Datensätze müssen ausgewählt werden, oder entfernen Sie die Markierung bei `Nur ausgewählte Datensätze importieren` um alle Datensätze zu verarbeiten."
|
828 |
+
|
829 |
+
#: controllers/admin/import.php:1883
|
830 |
+
msgid "Wrong format of `Import only specified records` value"
|
831 |
+
msgstr "Falsches Format bei `Nur ausgewählte Datensätze importieren`"
|
832 |
+
|
833 |
+
#: controllers/admin/import.php:1886
|
834 |
+
msgid "One of the numbers in `Import only specified records` value exceeds record quantity in XML file"
|
835 |
+
msgstr "Eine der Nummern in `Nur ausgewählte Datensätze importieren` übersteigt die Datensatz Anzahl in der XML"
|
836 |
+
|
837 |
+
#: controllers/admin/import.php:1893
|
838 |
+
msgid "Expression for `Post Unique Key` must be set, use the same expression as specified for post title if you are not sure what to put there"
|
839 |
+
msgstr "Ausdruck für `Sende einzigartige ID` muss gesetzt sein. Nutzen Sie den selben Ausdruck den Sie für den post Titel gewählt haben, wenn Sie nicht sicher sind."
|
840 |
+
|
841 |
+
#: controllers/admin/import.php:1895
|
842 |
+
msgid "Post Unique Key"
|
843 |
+
msgstr "Sende einzigartige ID"
|
844 |
+
|
845 |
+
#: controllers/admin/import.php:1899
|
846 |
+
msgid "Custom field name must be specified."
|
847 |
+
msgstr "Name vom individuellen Feld muss angegeben werden."
|
848 |
+
|
849 |
+
#: controllers/admin/import.php:1901
|
850 |
+
msgid "Custom field value must be specified."
|
851 |
+
msgstr "Wert vom individuellen Feld muss angegeben werden."
|
852 |
+
|
853 |
+
#: controllers/admin/import.php:1905
|
854 |
+
msgid "Post ID must be specified."
|
855 |
+
msgstr "Beitrags-ID muss angegeben werden "
|
856 |
+
|
857 |
+
#: controllers/admin/import.php:1909
|
858 |
+
msgid "Term name must be specified."
|
859 |
+
msgstr ""
|
860 |
+
|
861 |
+
#: controllers/admin/import.php:1912
|
862 |
+
msgid "Term slug must be specified."
|
863 |
+
msgstr ""
|
864 |
+
|
865 |
+
#: controllers/admin/import.php:1991
|
866 |
+
msgid "WP All Import doesn't support this import type."
|
867 |
+
msgstr "WP All Import unterstützt diesen Import Typ nicht."
|
868 |
+
|
869 |
+
#: controllers/admin/import.php:2039
|
870 |
+
msgid "<strong>Warning:</strong> this file does not have the same structure as the last file associated with this import. WP All Import won't be able to import this file with your current settings. Probably you'll need to adjust your XPath in the \"Configure Advanced Settings\" box below, and reconfigure your import by clicking \"Edit\" on the Manage Imports page."
|
871 |
+
msgstr "<strong>Warnung:</strong>diese Datei hat nicht die gleiche Struktur wie die letzte Datei die mit diesem Import durchgeführt wurde. WP All Import wird die Datei mit den gegenwärtigen Einstellungen nicht importieren können. Möglicherweise müssen Sie Ihren XPath umstellen in \" Konfiguriere erweiterte Einstellungen\" und ändern ihn durch klicken auf \"Bearbeiten\" auf der Imports verwalten Seite."
|
872 |
+
|
873 |
+
#: controllers/admin/import.php:2084
|
874 |
+
msgid "Root element not found for uploaded feed."
|
875 |
+
msgstr "Wurzelelement nicht gefunden für den hochgeladenen Feed."
|
876 |
+
|
877 |
+
#: controllers/admin/import.php:2136
|
878 |
+
msgid "Import updated"
|
879 |
+
msgstr "Import aktualisiert"
|
880 |
+
|
881 |
+
#: controllers/admin/import.php:2136
|
882 |
+
msgid "Import created"
|
883 |
+
msgstr "Import erstellt"
|
884 |
+
|
885 |
+
#: controllers/admin/import.php:2238
|
886 |
+
msgid "Configuration updated"
|
887 |
+
msgstr "Konfiguration aktualisiert"
|
888 |
+
|
889 |
+
#: controllers/admin/import.php:2417 controllers/admin/import.php:2737
|
890 |
+
#: controllers/admin/import.php:2876
|
891 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:7
|
892 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:6
|
893 |
+
#: views/admin/import/template/_custom_fields_template.php:6
|
894 |
+
#: views/admin/import/template/_term_meta_template.php:6
|
895 |
+
#: views/admin/import/template/_term_other_template.php:6
|
896 |
+
#: views/admin/manage/delete.php:45 views/admin/manage/index.php:284
|
897 |
+
msgid "Taxonomy Terms"
|
898 |
+
msgstr ""
|
899 |
+
|
900 |
+
#: controllers/admin/import.php:2443 controllers/admin/import.php:2745
|
901 |
+
#: controllers/admin/import.php:2883 models/import/record.php:650
|
902 |
+
msgid "%d %s created %d updated %d deleted %d skipped"
|
903 |
+
msgstr "%d %s erstellt %d aktualisiert %d gelöscht %d übersprungen"
|
904 |
+
|
905 |
+
#: controllers/admin/import.php:2890
|
906 |
+
msgid "Canceled"
|
907 |
+
msgstr "Abgebrochen"
|
908 |
+
|
909 |
+
#: controllers/admin/import.php:2890
|
910 |
+
msgid "Complete"
|
911 |
+
msgstr "Fertiggestellt"
|
912 |
+
|
913 |
+
#: controllers/admin/license.php:43
|
914 |
+
msgid "Licenses saved"
|
915 |
+
msgstr "Lizenz gespeichert"
|
916 |
+
|
917 |
+
#: controllers/admin/manage.php:257
|
918 |
+
msgid "The other two files in this zip are the export file containing all of your data and the import template for WP All Import. \n"
|
919 |
+
"\n"
|
920 |
+
"To import this data, create a new import with WP All Import and upload this zip file."
|
921 |
+
msgstr "Die anderen beiden Datein in diesem Zip-Archiv sind eine Export Datei, welche alle Daten enthält sowie eine Import Vorlage für WP All Import.\n"
|
922 |
+
"\n"
|
923 |
+
"Um diese Daten zu importieren, legen Sie mit WP All Import einen neuen Import an und laden Sie diese Zip-Datei hoch."
|
924 |
+
|
925 |
+
#: controllers/admin/manage.php:312 views/admin/manage/index.php:272
|
926 |
+
msgid "Import canceled"
|
927 |
+
msgstr "Import abgebrochen "
|
928 |
+
|
929 |
+
#: controllers/admin/manage.php:377
|
930 |
+
msgid "This import appears to be using FTP. Unfortunately WP All Import no longer supports the FTP protocol. Please contact <a href=\"mailto:support@wpallimport.com\">support@wpallimport.com</a> if you have any questions."
|
931 |
+
msgstr "Dieser Import scheint FTP zu nutzen. Leider unterstützt WP All Import das FTP Protokoll nicht mehr. Bitte kontaktieren Sie <a href=\"mailto:support@wpallimport.com\">support@wpallimport.com</a> wenn Sie fragen haben."
|
932 |
+
|
933 |
+
#: controllers/admin/manage.php:477
|
934 |
+
msgid "No matching elements found for Root element and XPath expression specified"
|
935 |
+
msgstr "Keine passenden Elemente für das Wurzelelement und den XPath Ausdruck gefunden"
|
936 |
+
|
937 |
+
#: controllers/admin/manage.php:573
|
938 |
+
msgid "File does not exists."
|
939 |
+
msgstr "Datei existiert nicht"
|
940 |
+
|
941 |
+
#: controllers/admin/manage.php:652 views/admin/manage/bulk.php:10
|
942 |
+
msgid "import"
|
943 |
+
msgid_plural "imports"
|
944 |
+
msgstr[0] "Import"
|
945 |
+
msgstr[1] "Importe"
|
946 |
+
|
947 |
+
#: controllers/admin/settings.php:60
|
948 |
+
msgid "History File Count must be a non-negative integer"
|
949 |
+
msgstr "Zählung der Datei Chronik muss ein nicht negativer integer sein"
|
950 |
+
|
951 |
+
#: controllers/admin/settings.php:63
|
952 |
+
msgid "History Age must be a non-negative integer"
|
953 |
+
msgstr "Chronik alter muss ein nicht negativer integer sein."
|
954 |
+
|
955 |
+
#: controllers/admin/settings.php:83
|
956 |
+
msgid "Settings saved"
|
957 |
+
msgstr "Einstellungen gespeichert"
|
958 |
+
|
959 |
+
#: controllers/admin/settings.php:114
|
960 |
+
msgid "Unknown File extension. Only txt files are permitted"
|
961 |
+
msgstr "Unbekannte Dateiendung. Nur txt Dateien sind erlaubt"
|
962 |
+
|
963 |
+
#: controllers/admin/settings.php:127
|
964 |
+
msgid "%d template imported"
|
965 |
+
msgid_plural "%d templates imported"
|
966 |
+
msgstr[0] "%d Vorlage importiert"
|
967 |
+
msgstr[1] "%d Vorlagen importiert"
|
968 |
+
|
969 |
+
#: controllers/admin/settings.php:129
|
970 |
+
msgid "Wrong imported data format"
|
971 |
+
msgstr "Falsches Import Dateiformat"
|
972 |
+
|
973 |
+
#: controllers/admin/settings.php:131
|
974 |
+
msgid "File is empty or doesn't exests"
|
975 |
+
msgstr "Datei ist leer oder existiert nicht"
|
976 |
+
|
977 |
+
#: controllers/admin/settings.php:134
|
978 |
+
msgid "Undefined entry!"
|
979 |
+
msgstr "Undefinierter Eintrag"
|
980 |
+
|
981 |
+
#: controllers/admin/settings.php:136
|
982 |
+
msgid "Please select file."
|
983 |
+
msgstr "Bitte wählen Sie eine Datei"
|
984 |
+
|
985 |
+
#: controllers/admin/settings.php:142
|
986 |
+
msgid "Templates must be selected"
|
987 |
+
msgstr "Vorlagen müssen gewählt sein"
|
988 |
+
|
989 |
+
#: controllers/admin/settings.php:151
|
990 |
+
msgid "%d template deleted"
|
991 |
+
msgid_plural "%d templates deleted"
|
992 |
+
msgstr[0] "%d Vorlage gelöscht"
|
993 |
+
msgstr[1] "%d Vorlagen gelöscht"
|
994 |
+
|
995 |
+
#: controllers/admin/settings.php:279
|
996 |
+
msgid "Files not found"
|
997 |
+
msgstr "Dateien nicht gefunden"
|
998 |
+
|
999 |
+
#: controllers/admin/settings.php:287
|
1000 |
+
msgid "Clean Up has been successfully completed."
|
1001 |
+
msgstr "Aufräumarbeiten erfolgreich beendet."
|
1002 |
+
|
1003 |
+
#: controllers/admin/settings.php:445
|
1004 |
+
msgid "Uploads folder is not writable."
|
1005 |
+
msgstr "Upload Verzeichnis ist nicht beschreibbar."
|
1006 |
+
|
1007 |
+
#: controllers/admin/settings.php:502
|
1008 |
+
msgid "Failed to open temp directory."
|
1009 |
+
msgstr "Fehler bei öffnen des temp Verzeichnisses."
|
1010 |
+
|
1011 |
+
#: controllers/admin/settings.php:527 controllers/admin/settings.php:552
|
1012 |
+
msgid "Failed to open input stream."
|
1013 |
+
msgstr "Fehler bei öffnen des Input streams."
|
1014 |
+
|
1015 |
+
#: controllers/admin/settings.php:534 controllers/admin/settings.php:559
|
1016 |
+
msgid "Failed to open output stream."
|
1017 |
+
msgstr "Fehler bei öffnen des Output streams."
|
1018 |
+
|
1019 |
+
#: controllers/admin/settings.php:538
|
1020 |
+
msgid "Failed to move uploaded file."
|
1021 |
+
msgstr "Fehler bei verschieben der hochgeladenen Datei."
|
1022 |
+
|
1023 |
+
#: controllers/admin/settings.php:713
|
1024 |
+
#: views/admin/import/options/_import_file.php:51
|
1025 |
+
msgid "This %s file has errors and is not valid."
|
1026 |
+
msgstr "Diese %s Datei hat Fehler und ist nicht gültig."
|
1027 |
+
|
1028 |
+
#: filters/pmxi_custom_types.php:8
|
1029 |
+
msgid "WooCommerce Products"
|
1030 |
+
msgstr ""
|
1031 |
+
|
1032 |
+
#: filters/pmxi_custom_types.php:9
|
1033 |
+
msgid "WooCommerce Orders"
|
1034 |
+
msgstr ""
|
1035 |
+
|
1036 |
+
#: filters/pmxi_custom_types.php:10
|
1037 |
+
msgid "WooCommerce Coupons"
|
1038 |
+
msgstr ""
|
1039 |
+
|
1040 |
+
#: helpers/import_custom_meta_box.php:25
|
1041 |
+
msgid "Custom fields can be used to add extra metadata to a post that you can <a href=\"http://codex.wordpress.org/Using_Custom_Fields\" target=\"_blank\">use in your theme</a>."
|
1042 |
+
msgstr "Individuelle Felder können genutzt werden um zusätzliche Daten in einen Post einzufügen. Sie können <a href=\"http://codex.wordpress.org/Using_Custom_Fields\" target=\"_blank\">sie in Ihrem Theme nutzen</a>."
|
1043 |
+
|
1044 |
+
#: helpers/reverse_taxonomies_html.php:18
|
1045 |
+
#: views/admin/import/template/_taxonomies_template.php:41
|
1046 |
+
#: views/admin/import/template/_taxonomies_template.php:63
|
1047 |
+
#: views/admin/import/template/_taxonomies_template.php:97
|
1048 |
+
#: views/admin/import/template/_taxonomies_template.php:107
|
1049 |
+
#: views/admin/import/template/_taxonomies_template.php:116
|
1050 |
+
#: views/admin/import/template/_taxonomies_template.php:164
|
1051 |
+
#: views/admin/import/template/_taxonomies_template.php:182
|
1052 |
+
#: views/admin/import/template/_taxonomies_template.php:189
|
1053 |
+
#: views/admin/import/template/_taxonomies_template.php:201
|
1054 |
+
msgid "Assign post to the taxonomy."
|
1055 |
+
msgstr "Post zuordnen zu Taxonomie."
|
1056 |
+
|
1057 |
+
#: helpers/wp_all_import_addon_notifications.php:108
|
1058 |
+
msgid "Make imports easier with the <strong>Advanced Custom Fields Add-On</strong> for WP All Import: <a href=\"%s\" target=\"_blank\">Read More</a>"
|
1059 |
+
msgstr "Machen Sie die Imports einfacher mit <strong>Erweiterte benutzerdefinierte Felder Add-on</strong> für WP All Import: <a href=\"%s\" target=\"_blank\">Mehr erfahren</a>"
|
1060 |
+
|
1061 |
+
#: helpers/wp_all_import_addon_notifications.php:124
|
1062 |
+
msgid "WP All Export"
|
1063 |
+
msgstr "WP All Export"
|
1064 |
+
|
1065 |
+
#: helpers/wp_all_import_addon_notifications.php:125
|
1066 |
+
msgid "Export anything in WordPress to CSV, XML, or Excel."
|
1067 |
+
msgstr "Exportieren Sie alles aus WordPress in CSV, XML oder Excel."
|
1068 |
+
|
1069 |
+
#: helpers/wp_all_import_addon_notifications.php:128
|
1070 |
+
#: views/admin/import/confirm.php:53 views/admin/import/index.php:356
|
1071 |
+
#: views/admin/import/index.php:373 views/admin/import/options.php:70
|
1072 |
+
#: views/admin/import/options/_import_file.php:40
|
1073 |
+
#: views/admin/import/options/_import_file.php:57
|
1074 |
+
#: views/admin/import/process.php:86 views/admin/import/process.php:120
|
1075 |
+
msgid "Read More"
|
1076 |
+
msgstr "Weiterlesen"
|
1077 |
+
|
1078 |
+
#: helpers/wp_all_import_addon_notifications.php:141
|
1079 |
+
msgid "Make imports easier with the <strong>free %s Add-On</strong> for WP All Import: <a href=\"%s\" target=\"_blank\">Get Add-On</a>"
|
1080 |
+
msgstr "Machen Sie die Imports einfacher mit <strong>freie %s Add-on</strong> für WP All Import: <a href=\"%s\" target=\"_blank\">Get Add-on</a>"
|
1081 |
+
|
1082 |
+
#: helpers/wp_all_import_is_json.php:13
|
1083 |
+
msgid "Maximum stack depth exceeded"
|
1084 |
+
msgstr "Maximale Stapeltiefe überschritten"
|
1085 |
+
|
1086 |
+
#: helpers/wp_all_import_is_json.php:16
|
1087 |
+
msgid "Underflow or the modes mismatch"
|
1088 |
+
msgstr "Unterlauf oder die Modi passen nicht"
|
1089 |
+
|
1090 |
+
#: helpers/wp_all_import_is_json.php:19
|
1091 |
+
msgid "Unexpected control character found"
|
1092 |
+
msgstr "Unerwarteter Buchstabe gefunden"
|
1093 |
+
|
1094 |
+
#: helpers/wp_all_import_is_json.php:22
|
1095 |
+
msgid "Syntax error, malformed JSON"
|
1096 |
+
msgstr "Syntax Fehler, deformiertes JSON"
|
1097 |
+
|
1098 |
+
#: helpers/wp_all_import_is_json.php:25
|
1099 |
+
msgid "Malformed UTF-8 characters, possibly incorrectly encoded"
|
1100 |
+
msgstr "Deformierte UTF-8 Buchstaben, möglicherweise falsch codiert"
|
1101 |
+
|
1102 |
+
#: helpers/wp_all_import_is_json.php:28
|
1103 |
+
msgid "Unknown json error"
|
1104 |
+
msgstr "Unbekannter JSON Fehler "
|
1105 |
+
|
1106 |
+
#: helpers/wp_all_import_template_notifications.php:14
|
1107 |
+
msgid "The import template you are using requires the %s. If you continue without it your data may import incorrectly.<br/><br/><a href=\"%s\" target=\"_blank\">"
|
1108 |
+
msgstr ""
|
1109 |
+
|
1110 |
+
#: helpers/wp_all_import_template_notifications.php:23
|
1111 |
+
msgid "The import template you are using requires the User Import Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href=\"http://www.wpallimport.com/add-ons/user-import/?utm_source=wordpress.org&utm_medium=wpai-import-template&utm_campaign=free+wp+all+export+plugin\" target=\"_blank\">Purchase the User Import Add-On</a>."
|
1112 |
+
msgstr "Die Import Vorlage die sie benutzen, benötigt das Benutzer Import Add-on. Wenn Sie ohne fortfahren, könnten Ihre Daten nicht korrekt importiert werden.<br/><br/><a href=\"http://www.wpallimport.com/add-ons/user-import/?utm_source=wordpress.org&utm_medium=wpai-import-template&utm_campaign=free+wp+all+export+plugin\" target=\"_blank\">Benutzer Import Add-On hier kaufen</a>."
|
1113 |
+
|
1114 |
+
#: helpers/wp_all_import_template_notifications.php:27
|
1115 |
+
msgid "The import template you are using requires the WooCommerce Import Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href=\"http://www.wpallimport.com/woocommerce-product-import/\" target=\"_blank\">Purchase the WooCommerce Import Add-On</a>."
|
1116 |
+
msgstr "Die Import Vorlage die sie benutzen, benötigt das WooCommerce Import Add-on. Wenn Sie ohne fortfahren, könnten Ihre Daten nicht korrekt importiert werden.<br/><br/><a href=\"http://www.wpallimport.com/woocommerce-product-import/\" target=\"_blank\">WooCommerce Import Add-On hier kaufen</a>."
|
1117 |
+
|
1118 |
+
#: helpers/wp_all_import_template_notifications.php:32
|
1119 |
+
msgid "The import template you are using requires the Realia Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress.org/plugins/realia-xml-csv-property-listings-import/\" target=\"_blank\">Download the Realia Add-On</a>."
|
1120 |
+
msgstr "Die Import Vorlage die sie benutzen, benötigt das Realia Add-on. Wenn Sie ohne fortfahren, könnten Ihre Daten nicht korrekt importiert werden.<br/><br/><a href=\"https://wordpress.org/plugins/realia-xml-csv-property-listings-import/\" target=\"_blank\">Realia Add-On hier herunterladen</a>."
|
1121 |
+
|
1122 |
+
#: helpers/wp_all_import_template_notifications.php:39
|
1123 |
+
msgid "The import template you are using requires the WP Residence Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress.org/plugins/wp-residence-add-on-for-wp-all-import/\" target=\"_blank\">Download the WP Residence Add-On</a>."
|
1124 |
+
msgstr "Die Import Vorlage die sie benutzen, benötigt das WP Residence Add-on. Wenn Sie ohne fortfahren, könnten Ihre Daten nicht korrekt importiert werden.<br/><br/><a href=\"https://wordpress.org/plugins/wp-residence-add-on-for-wp-all-import/\" target=\"_blank\">WP Residence Add-On hier herunterladen</a>."
|
1125 |
+
|
1126 |
+
#: helpers/wp_all_import_template_notifications.php:46
|
1127 |
+
msgid "The import template you are using requires the RealHomes Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress.org/plugins/realhomes-xml-csv-property-listings-import/\" target=\"_blank\">Download the RealHomes Add-On</a>."
|
1128 |
+
msgstr "Die Import Vorlage die sie benutzen, benötigt das RealHomes Add-on. Wenn Sie ohne fortfahren, könnten Ihre Daten nicht korrekt importiert werden.<br/><br/><a href=\"https://wordpress.org/plugins/realhomes-xml-csv-property-listings-import/\" target=\"_blank\">RealHomes Add-On hier herunterladen</a>."
|
1129 |
+
|
1130 |
+
#: helpers/wp_all_import_template_notifications.php:52
|
1131 |
+
msgid "The import template you are using requires the Jobify Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress.org/plugins/jobify-xml-csv-listings-import/\" target=\"_blank\">Download the Jobify Add-On</a>."
|
1132 |
+
msgstr "Die Import Vorlage die sie benutzen, benötigt das Jobify Add-on. Wenn Sie ohne fortfahren, könnten Ihre Daten nicht korrekt importiert werden.<br/><br/><a href=\"https://wordpress.org/plugins/jobify-xml-csv-listings-import/\" target=\"_blank\">Jobify Add-On hier herunterladen</a>."
|
1133 |
+
|
1134 |
+
#: helpers/wp_all_import_template_notifications.php:58
|
1135 |
+
msgid "The import template you are using requires the Listify Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress.org/plugins/listify-xml-csv-listings-import/\" target=\"_blank\">Download the Listify Add-On</a>."
|
1136 |
+
msgstr "Die Import Vorlage die sie benutzen, benötigt das Listify Add-on. Wenn Sie ohne fortfahren, könnten Ihre Daten nicht korrekt importiert werden.<br/><br/><a href=\"https://wordpress.org/plugins/listify-xml-csv-listings-import/\" target=\"_blank\">Listify Add-On hier herunterladen</a>."
|
1137 |
+
|
1138 |
+
#: helpers/wp_all_import_template_notifications.php:64
|
1139 |
+
msgid "The import template you are using requires the Reales WP Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress.org/plugins/reales-wp-xml-csv-property-listings-import/\" target=\"_blank\">Download the Reales WP Add-On</a>."
|
1140 |
+
msgstr "Die Import Vorlage die sie benutzen, benötigt das Reales WP Add-on. Wenn Sie ohne fortfahren, könnten Ihre Daten nicht korrekt importiert werden.<br/><br/><a href=\"https://wordpress.org/plugins/reales-wp-xml-csv-property-listings-import/\" target=\"_blank\">Reales WP Add-On hier herunterladen</a>."
|
1141 |
+
|
1142 |
+
#: helpers/wp_all_import_template_notifications.php:74
|
1143 |
+
msgid "The import template you are using requires the WP Job Manager Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress.org/plugins/wp-job-manager-xml-csv-listings-import/\" target=\"_blank\">Download the WP Job Manager Add-On</a>."
|
1144 |
+
msgstr "Die Import Vorlage die sie benutzen, benötigt das WP Job Add-on. Wenn Sie ohne fortfahren, könnten Ihre Daten nicht korrekt importiert werden.<br/><br/><a href=\"https://wordpress.org/plugins/wp-job-manager-xml-csv-listings-import/\" target=\"_blank\">WP Job Manager Add-On hier herunterladen</a>."
|
1145 |
+
|
1146 |
+
#: helpers/wp_all_import_template_notifications.php:80
|
1147 |
+
msgid "The import template you are using requires the Yoast SEO Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress.org/plugins/yoast-seo-settings-xml-csv-import/\" target=\"_blank\">Download the Yoast SEO Add-On</a>."
|
1148 |
+
msgstr "Die Import Vorlage die sie benutzen, benötigt das Yoast SEO Add-on. Wenn Sie ohne fortfahren, könnten Ihre Daten nicht korrekt importiert werden.<br/><br/><a href=\"https://wordpress.org/plugins/yoast-seo-settings-xml-csv-import/\" target=\"_blank\">Yoast SEO Add-On hier herunterladen</a>."
|
1149 |
+
|
1150 |
+
#: helpers/wp_all_import_template_notifications.php:86
|
1151 |
+
msgid "The import template you are using requires the Listable Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress.org/plugins/import-xml-csv-listings-to-listable-theme/\" target=\"_blank\">Download the Listable Add-On</a>."
|
1152 |
+
msgstr ""
|
1153 |
+
|
1154 |
+
#: helpers/wp_all_import_template_notifications.php:91
|
1155 |
+
msgid "The import template you are using requires an Add-On for WP All Import. If you continue without using this Add-On your data may import incorrectly."
|
1156 |
+
msgstr "Die Import Vorlage die sie benutzen, benötigt ein Add-on für WP All Import. Wenn Sie ohne fortfahren, könnten Ihre Daten nicht korrekt importiert werden."
|
1157 |
+
|
1158 |
+
#: helpers/wp_all_import_template_notifications.php:103
|
1159 |
+
msgid "<strong>Warning:</strong>"
|
1160 |
+
msgstr "<strong>Warnung:</strong>"
|
1161 |
+
|
1162 |
+
#: models/import/record.php:44
|
1163 |
+
msgid "WP All Import can't read your file.<br/><br/>Probably, you are trying to import an invalid XML feed. Try opening the XML feed in a web browser (Google Chrome is recommended for opening XML files) to see if there is an error message.<br/>Alternatively, run the feed through a validator: http://validator.w3.org/<br/>99% of the time, the reason for this error is because your XML feed isn't valid.<br/>If you are 100% sure you are importing a valid XML feed, please contact WP All Import support."
|
1164 |
+
msgstr "WP All Import kann Ihre Datei nicht lesen. <br/><br/> Eventuell versuchen Sie einen ungültigen XML Feed zu importieren. Versuchen Sie das XML in einem Browser zu öffnen ( Google Chrome wird empfohlen um XML Dateien zu öffnen) um zu sehen ob eine Fehlermeldung erscheint. <br/>Alternativ können Sie den Feed durch einen Validator prüfen lassen: http://validator.w3.org/<br/> In 99% der Fälle ist der Grund für einen Fehler ein ungültiger XML Feed. <br/> Wenn Sie 100% sicher sind dass sie einen gültigen XML Feed importieren, Kontaktieren Sie den WP All Import Support."
|
1165 |
+
|
1166 |
+
#: models/import/record.php:56
|
1167 |
+
msgid "Invalid XML"
|
1168 |
+
msgstr "Ungültiges XML"
|
1169 |
+
|
1170 |
+
#: models/import/record.php:59
|
1171 |
+
msgid "Line"
|
1172 |
+
msgstr "Zeile"
|
1173 |
+
|
1174 |
+
#: models/import/record.php:60
|
1175 |
+
msgid "Column"
|
1176 |
+
msgstr "Spalte"
|
1177 |
+
|
1178 |
+
#: models/import/record.php:61
|
1179 |
+
msgid "Code"
|
1180 |
+
msgstr "Code"
|
1181 |
+
|
1182 |
+
#: models/import/record.php:72
|
1183 |
+
msgid "Required PHP components are missing."
|
1184 |
+
msgstr "Benötige PHP Komponenten fehlen."
|
1185 |
+
|
1186 |
+
#: models/import/record.php:73
|
1187 |
+
msgid "WP All Import requires the SimpleXML PHP module to be installed. This is a standard feature of PHP, and is necessary for WP All Import to read the files you are trying to import.<br/>Please contact your web hosting provider and ask them to install and activate the SimpleXML PHP module."
|
1188 |
+
msgstr "WP All Import benötigt einfache XML PHP Module die installiert sein müssen. Diese sind Standardinhalte in PHP und werden von WP All Import benötigt um die Dateien zu lesen die Sie versuchen zu importieren.<br/>Bitte kontaktieren Sie Ihren Dienstanbieter und fragen Sie nach der Installation und Aktivierung der einfachen XML PHP Module."
|
1189 |
+
|
1190 |
+
#: models/import/record.php:117
|
1191 |
+
msgid "This import appears to be using FTP. Unfortunately WP All Import no longer supports the FTP protocol. Please contact <a href=\"mailto:support@wpallimport.com\">%s</a> if you have any questions."
|
1192 |
+
msgstr "Dieser Import scheint FTP zu nutzen. Leider unterstützt WP All Import das FTP Protokoll nicht mehr. Bitte kontaktieren Sie <a href=\"mailto:support@wpallimport.com\">%s</a> wenn Sie fragen haben."
|
1193 |
+
|
1194 |
+
#: models/import/record.php:267
|
1195 |
+
msgid "#%s No matching elements found for Root element and XPath expression specified"
|
1196 |
+
msgstr "#%s Keine passenden Elemente für das Wurzelelement und den XPath Ausdruck gefunden"
|
1197 |
+
|
1198 |
+
#: models/import/record.php:533
|
1199 |
+
msgid "Deleted missing records %s for import #%s"
|
1200 |
+
msgstr ""
|
1201 |
+
|
1202 |
+
#: models/import/record.php:596
|
1203 |
+
msgid "Updating stock status for missing records %s for import #%s"
|
1204 |
+
msgstr ""
|
1205 |
+
|
1206 |
+
#: models/import/record.php:624
|
1207 |
+
msgid "import finished & cron un-triggered<br>%s %s created %s updated %s deleted %s skipped"
|
1208 |
+
msgstr "Import Abgeschlossen & cron nicht ausgelöst<br/>%s%s erstellt %s aktualisiert %s gelöscht %s übersprungen"
|
1209 |
+
|
1210 |
+
#: models/import/record.php:657
|
1211 |
+
msgid "Records Processed %s. Records imported %s of %s."
|
1212 |
+
msgstr ""
|
1213 |
+
|
1214 |
+
#: models/import/record.php:676
|
1215 |
+
msgid "#%s source file not found"
|
1216 |
+
msgstr "#%s Quelle der Datei nicht gefunden"
|
1217 |
+
|
1218 |
+
#: models/import/record.php:729
|
1219 |
+
msgid "Composing titles..."
|
1220 |
+
msgstr "Zusammengesetzte Titel..."
|
1221 |
+
|
1222 |
+
#: models/import/record.php:739
|
1223 |
+
msgid "Composing parent terms..."
|
1224 |
+
msgstr ""
|
1225 |
+
|
1226 |
+
#: models/import/record.php:748
|
1227 |
+
msgid "Composing terms slug..."
|
1228 |
+
msgstr ""
|
1229 |
+
|
1230 |
+
#: models/import/record.php:758
|
1231 |
+
msgid "Composing excerpts..."
|
1232 |
+
msgstr "Zusammengesetzte Auszüge..."
|
1233 |
+
|
1234 |
+
#: models/import/record.php:769
|
1235 |
+
msgid "Composing statuses..."
|
1236 |
+
msgstr "Zusammengesetzter Status..."
|
1237 |
+
|
1238 |
+
#: models/import/record.php:780
|
1239 |
+
msgid "Composing comment statuses..."
|
1240 |
+
msgstr "Zusammengesetzter kommentierter Status..."
|
1241 |
+
|
1242 |
+
#: models/import/record.php:791
|
1243 |
+
msgid "Composing ping statuses..."
|
1244 |
+
msgstr "Zusammengesetzter ping Status..."
|
1245 |
+
|
1246 |
+
#: models/import/record.php:802
|
1247 |
+
msgid "Composing post formats..."
|
1248 |
+
msgstr "Zusammengesetzte post Formate..."
|
1249 |
+
|
1250 |
+
#: models/import/record.php:814
|
1251 |
+
msgid "Composing duplicate indicators..."
|
1252 |
+
msgstr ""
|
1253 |
+
|
1254 |
+
#: models/import/record.php:827
|
1255 |
+
msgid "Composing page templates..."
|
1256 |
+
msgstr "Zusammengesetzte Seiten Vorlagen..."
|
1257 |
+
|
1258 |
+
#: models/import/record.php:838
|
1259 |
+
msgid "Composing post types..."
|
1260 |
+
msgstr "Zusammengesetzte post Typen..."
|
1261 |
+
|
1262 |
+
#: models/import/record.php:852
|
1263 |
+
msgid "Composing page parent..."
|
1264 |
+
msgstr "Zusammengesetzte Elternseiten..."
|
1265 |
+
|
1266 |
+
#: models/import/record.php:912
|
1267 |
+
msgid "Composing authors..."
|
1268 |
+
msgstr "Zusammengesetzte Autoren..."
|
1269 |
+
|
1270 |
+
#: models/import/record.php:953
|
1271 |
+
msgid "Composing slugs..."
|
1272 |
+
msgstr "Zusammengesetzte slugs..."
|
1273 |
+
|
1274 |
+
#: models/import/record.php:962
|
1275 |
+
msgid "Composing menu order..."
|
1276 |
+
msgstr "Zusammengesetzte Menü Reihenfolge..."
|
1277 |
+
|
1278 |
+
#: models/import/record.php:971
|
1279 |
+
msgid "Composing contents..."
|
1280 |
+
msgstr "Zusammengesetzte Inhalte..."
|
1281 |
+
|
1282 |
+
#: models/import/record.php:984
|
1283 |
+
msgid "Composing dates..."
|
1284 |
+
msgstr "Zusammengesetztes Datum..."
|
1285 |
+
|
1286 |
+
#: models/import/record.php:992 models/import/record.php:1005
|
1287 |
+
#: models/import/record.php:1011
|
1288 |
+
msgid "<b>WARNING</b>: unrecognized date format `%s`, assigning current date"
|
1289 |
+
msgstr "<b>WARNUNG</b>: Nicht erkanntes Datums Format `%s`, übertrage aktuelles Datum"
|
1290 |
+
|
1291 |
+
#: models/import/record.php:1027
|
1292 |
+
msgid "Composing terms for `%s` taxonomy..."
|
1293 |
+
msgstr "Zusammengesetzte Bezeichnung für `%s` Taxonomien..."
|
1294 |
+
|
1295 |
+
#: models/import/record.php:1239
|
1296 |
+
msgid "Composing custom parameters..."
|
1297 |
+
msgstr "Zusammengesetzte individuelle Parameter..."
|
1298 |
+
|
1299 |
+
#: models/import/record.php:1346 models/import/record.php:1464
|
1300 |
+
msgid "<b>WARNING</b>"
|
1301 |
+
msgstr "<b>WARNUNG</b>"
|
1302 |
+
|
1303 |
+
#: models/import/record.php:1347
|
1304 |
+
msgid "<b>WARNING</b>: No featured images will be created. Uploads folder is not found."
|
1305 |
+
msgstr "<b>WARNUNG</b>: Keine Erstellung von featured Bildern. Upload Verzeichnis wurde nicht gefunden."
|
1306 |
+
|
1307 |
+
#: models/import/record.php:1358
|
1308 |
+
msgid "Composing URLs for "
|
1309 |
+
msgstr ""
|
1310 |
+
|
1311 |
+
#: models/import/record.php:1389 models/import/record.php:1401
|
1312 |
+
#: models/import/record.php:1413 models/import/record.php:1425
|
1313 |
+
#: models/import/record.php:1437 models/import/record.php:1448
|
1314 |
+
msgid "Composing "
|
1315 |
+
msgstr ""
|
1316 |
+
|
1317 |
+
#: models/import/record.php:1465
|
1318 |
+
msgid "<b>WARNING</b>: No attachments will be created"
|
1319 |
+
msgstr "<b>WARNUNG</b>:Anhänge werden nicht erstellt."
|
1320 |
+
|
1321 |
+
#: models/import/record.php:1468
|
1322 |
+
msgid "Composing URLs for attachments files..."
|
1323 |
+
msgstr "Zusammengesetzte URLs für Angehängte Dateien..."
|
1324 |
+
|
1325 |
+
#: models/import/record.php:1497
|
1326 |
+
msgid "Composing unique keys..."
|
1327 |
+
msgstr "Zusammengesetzte einzigartige Schlüssel..."
|
1328 |
+
|
1329 |
+
#: models/import/record.php:1505
|
1330 |
+
msgid "Processing posts..."
|
1331 |
+
msgstr "Bearbeite Posts..."
|
1332 |
+
|
1333 |
+
#: models/import/record.php:1511
|
1334 |
+
msgid "Data parsing via add-ons..."
|
1335 |
+
msgstr "Übersetze Daten mittels Add-on..."
|
1336 |
+
|
1337 |
+
#: models/import/record.php:1554
|
1338 |
+
msgid "Calculate specified records to import..."
|
1339 |
+
msgstr "Berechne spezifizierte Datensätze für den Import..."
|
1340 |
+
|
1341 |
+
#: models/import/record.php:1581
|
1342 |
+
msgid "---"
|
1343 |
+
msgstr "---"
|
1344 |
+
|
1345 |
+
#: models/import/record.php:1582
|
1346 |
+
msgid "Record #%s"
|
1347 |
+
msgstr "Aufnahme #%s"
|
1348 |
+
|
1349 |
+
#: models/import/record.php:1589 models/import/record.php:1779
|
1350 |
+
msgid "<b>SKIPPED</b>: by specified records option"
|
1351 |
+
msgstr "<b>SKIPPED</b>: Von spezifizierter schreib Option"
|
1352 |
+
|
1353 |
+
#: models/import/record.php:1598
|
1354 |
+
msgid "<b>ACTION</b>: pmxi_before_post_import ..."
|
1355 |
+
msgstr "<b>ACTION</b>: pmxi_before_post_import ..."
|
1356 |
+
|
1357 |
+
#: models/import/record.php:1606
|
1358 |
+
msgid "<b>WARNING</b>: title is empty."
|
1359 |
+
msgstr "<b>WARNUNG</b>: Titel ist leer."
|
1360 |
+
|
1361 |
+
#: models/import/record.php:1627
|
1362 |
+
msgid "Combine all data for user %s..."
|
1363 |
+
msgstr "Kombiniere alle Daten für Benutzer %s..."
|
1364 |
+
|
1365 |
+
#: models/import/record.php:1647
|
1366 |
+
msgid "Combine all data for term %s..."
|
1367 |
+
msgstr ""
|
1368 |
+
|
1369 |
+
#: models/import/record.php:1665
|
1370 |
+
msgid "Combine all data for post `%s`..."
|
1371 |
+
msgstr "Kombiniere alle Daten für post %s..."
|
1372 |
+
|
1373 |
+
#: models/import/record.php:1694
|
1374 |
+
msgid "Find corresponding article among previously imported for post `%s`..."
|
1375 |
+
msgstr "Finde zugehörige Artikel unter den vorherigen importieren Posts `%s`..."
|
1376 |
+
|
1377 |
+
#: models/import/record.php:1702
|
1378 |
+
msgid "Duplicate post was found for post %s with unique key `%s`..."
|
1379 |
+
msgstr "Doppelter post wurde für post %s erkannt mit dem einzigartigen Schlüssel `%s`..."
|
1380 |
+
|
1381 |
+
#: models/import/record.php:1716
|
1382 |
+
msgid "Duplicate post wasn't found with unique key `%s`..."
|
1383 |
+
msgstr "Doppelter post wurde nicht erkannt mit dem einzigartigen Schlüssel `%s`..."
|
1384 |
+
|
1385 |
+
#: models/import/record.php:1730
|
1386 |
+
msgid "Find corresponding article among database for post `%s`..."
|
1387 |
+
msgstr "Finde zugehörige Artikel in der Datenbank für Posts `%s`..."
|
1388 |
+
|
1389 |
+
#: models/import/record.php:1743
|
1390 |
+
msgid "Duplicate post was found for post `%s`..."
|
1391 |
+
msgstr "Doppelter post wurde erkannt in post `%s`..."
|
1392 |
+
|
1393 |
+
#: models/import/record.php:1757
|
1394 |
+
msgid "Duplicate post wasn't found for post `%s`..."
|
1395 |
+
msgstr ""
|
1396 |
+
|
1397 |
+
#: models/import/record.php:1800
|
1398 |
+
msgid "<b>SKIPPED</b>: By filter wp_all_import_is_post_to_update `%s`"
|
1399 |
+
msgstr "<b>SKIPPED</b>: Von Filter: wp_all_import_is_post_to_update `%s`"
|
1400 |
+
|
1401 |
+
#: models/import/record.php:1817
|
1402 |
+
msgid "<b>SKIPPED</b>: Previously imported record found for `%s`"
|
1403 |
+
msgstr "<b>SKIPPED</b>: Vorherige Import Aufzeichnung gefunden für `%s`"
|
1404 |
+
|
1405 |
+
#: models/import/record.php:1846
|
1406 |
+
msgid "Preserve description of already existing taxonomy term for `%s`"
|
1407 |
+
msgstr ""
|
1408 |
+
|
1409 |
+
#: models/import/record.php:1850
|
1410 |
+
msgid "Preserve name of already existing taxonomy term for `%s`"
|
1411 |
+
msgstr ""
|
1412 |
+
|
1413 |
+
#: models/import/record.php:1854
|
1414 |
+
msgid "Preserve slug of already existing taxonomy term for `%s`"
|
1415 |
+
msgstr ""
|
1416 |
+
|
1417 |
+
#: models/import/record.php:1862
|
1418 |
+
msgid "Preserve parent of already existing taxonomy term for `%s`"
|
1419 |
+
msgstr ""
|
1420 |
+
|
1421 |
+
#: models/import/record.php:1868
|
1422 |
+
msgid "Preserve taxonomies of already existing article for `%s`"
|
1423 |
+
msgstr "Erhalte Taxonomien von bereits existierenden Artikeln `%s`"
|
1424 |
+
|
1425 |
+
#: models/import/record.php:1873
|
1426 |
+
msgid "<b>WARNING</b>: Unable to get current taxonomies for article #%d, updating with those read from XML file"
|
1427 |
+
msgstr "<b>WARNING</b>: Erhalt von gegenwärtigen Taxonomien der Artikel #%d nicht möglich, aktualisiere mit Daten der XML Datei."
|
1428 |
+
|
1429 |
+
#: models/import/record.php:1890
|
1430 |
+
msgid "Preserve date of already existing article for `%s`"
|
1431 |
+
msgstr "Erhalte Daten von bereits existierenden Artikeln `%s`"
|
1432 |
+
|
1433 |
+
#: models/import/record.php:1894
|
1434 |
+
msgid "Preserve status of already existing article for `%s`"
|
1435 |
+
msgstr "Erhalte Status von bereits existierenden Artikeln `%s`"
|
1436 |
+
|
1437 |
+
#: models/import/record.php:1898
|
1438 |
+
msgid "Preserve content of already existing article for `%s`"
|
1439 |
+
msgstr "Erhalte Inhalt von bereits existierenden Artikeln `%s`"
|
1440 |
+
|
1441 |
+
#: models/import/record.php:1902
|
1442 |
+
msgid "Preserve title of already existing article for `%s`"
|
1443 |
+
msgstr "Erhalte Titel von bereits existierenden Artikeln `%s`"
|
1444 |
+
|
1445 |
+
#: models/import/record.php:1906
|
1446 |
+
msgid "Preserve slug of already existing article for `%s`"
|
1447 |
+
msgstr "Erhalte slug von bereits existierenden Artikeln `%s`"
|
1448 |
+
|
1449 |
+
#: models/import/record.php:1926
|
1450 |
+
msgid "Preserve excerpt of already existing article for `%s`"
|
1451 |
+
msgstr "Erhalte Auszug von bereits existierenden Artikeln `%s`"
|
1452 |
+
|
1453 |
+
#: models/import/record.php:1930
|
1454 |
+
msgid "Preserve menu order of already existing article for `%s`"
|
1455 |
+
msgstr "Erhalte Menü von bereits existierenden Artikeln `%s`"
|
1456 |
+
|
1457 |
+
#: models/import/record.php:1934
|
1458 |
+
msgid "Preserve post parent of already existing article for `%s`"
|
1459 |
+
msgstr "Erhalte Post von bereits existierenden Artikeln `%s`"
|
1460 |
+
|
1461 |
+
#: models/import/record.php:1938
|
1462 |
+
msgid "Preserve post type of already existing article for `%s`"
|
1463 |
+
msgstr ""
|
1464 |
+
|
1465 |
+
#: models/import/record.php:1942
|
1466 |
+
msgid "Preserve comment status of already existing article for `%s`"
|
1467 |
+
msgstr "Kommentar Status für bereits existierende Artikel beibehalten für `%s`"
|
1468 |
+
|
1469 |
+
#: models/import/record.php:1946
|
1470 |
+
msgid "Preserve post author of already existing article for `%s`"
|
1471 |
+
msgstr "Erhalte Post Autor von bereits existierenden Artikeln `%s`"
|
1472 |
+
|
1473 |
+
#: models/import/record.php:1962 models/import/record.php:1981
|
1474 |
+
msgid "Deleting images for `%s`"
|
1475 |
+
msgstr "Lösche Bilder für `%s`"
|
1476 |
+
|
1477 |
+
#: models/import/record.php:1976
|
1478 |
+
msgid "Deleting attachments for `%s`"
|
1479 |
+
msgstr "Lösche Anhänge für `%s`"
|
1480 |
+
|
1481 |
+
#: models/import/record.php:2004
|
1482 |
+
msgid "Applying filter `pmxi_article_data` for `%s`"
|
1483 |
+
msgstr "Benutze Filter `pmxi_article_data` für `%s`"
|
1484 |
+
|
1485 |
+
#: models/import/record.php:2012
|
1486 |
+
msgid "<b>SKIPPED</b>: by do not create new posts option."
|
1487 |
+
msgstr "<b>SKIPPED</b>:erstelle keine neue post Optionen"
|
1488 |
+
|
1489 |
+
#: models/import/record.php:2084
|
1490 |
+
msgid "<b>WARNING</b>: Unable to create cloaked link for %s"
|
1491 |
+
msgstr "<b>WARNING</b>:Verhüllten Link erstellen nicht möglich %s"
|
1492 |
+
|
1493 |
+
#: models/import/record.php:2111
|
1494 |
+
msgid "<b>SKIPPED</b>: By filter wp_all_import_is_post_to_create `%s`"
|
1495 |
+
msgstr "<b>ÜBERSPRUNGEN</b>: Durch den Filter wp_all_import_is_post_to_create `%s`"
|
1496 |
+
|
1497 |
+
#: models/import/record.php:2122
|
1498 |
+
msgid "<b>ERROR</b> Sorry, that email address `%s` is already used!"
|
1499 |
+
msgstr ""
|
1500 |
+
|
1501 |
+
#: models/import/record.php:2132 models/import/record.php:2162
|
1502 |
+
msgid "<b>CREATING</b> `%s` `%s`"
|
1503 |
+
msgstr "<b>CREATING</b> `%s` `%s`"
|
1504 |
+
|
1505 |
+
#: models/import/record.php:2135 models/import/record.php:2165
|
1506 |
+
msgid "<b>UPDATING</b> `%s` `%s`"
|
1507 |
+
msgstr "<b>UPDATING</b> `%s` `%s`"
|
1508 |
+
|
1509 |
+
#: models/import/record.php:2148 models/import/record.php:2173
|
1510 |
+
#: models/import/record.php:2178 models/import/record.php:3369
|
1511 |
+
msgid "<b>ERROR</b>"
|
1512 |
+
msgstr "<b>ERROR</b>"
|
1513 |
+
|
1514 |
+
#: models/import/record.php:2201
|
1515 |
+
msgid "Associate post `%s` with current import ..."
|
1516 |
+
msgstr "Verknüpfe post `%s` mit gegenwärtigen Import..."
|
1517 |
+
|
1518 |
+
#: models/import/record.php:2207
|
1519 |
+
msgid "Associate post `%s` with post format %s ..."
|
1520 |
+
msgstr "Verknüpfe post `%s` mit gegenwärtigen Format %s..."
|
1521 |
+
|
1522 |
+
#: models/import/record.php:2219
|
1523 |
+
msgid "<b>CUSTOM FIELDS:</b>"
|
1524 |
+
msgstr "<b>CUSTOM FIELDS:</b>"
|
1525 |
+
|
1526 |
+
#: models/import/record.php:2267
|
1527 |
+
msgid "- Custom field %s has been deleted for `%s` attempted to `update all custom fields` setting ..."
|
1528 |
+
msgstr "- Individuelles Feld %s wurde gelöscht für `%s` ausgelöst durch `aktualisiere alle individuellen Felder` Einstellungen... "
|
1529 |
+
|
1530 |
+
#: models/import/record.php:2285
|
1531 |
+
msgid "- Custom field %s has been deleted for `%s` attempted to `update only these custom fields: %s, leave rest alone` setting ..."
|
1532 |
+
msgstr "- Individuelles Feld %s wurde gelöscht für `%s` ausgelöst durch `aktualisiere nur diese individuellen Felder: %s, Rest bleibt leer` Einstellungen... "
|
1533 |
+
|
1534 |
+
#: models/import/record.php:2304
|
1535 |
+
msgid "- Custom field %s has been deleted for `%s` attempted to `leave these fields alone: %s, update all other Custom Fields` setting ..."
|
1536 |
+
msgstr "- Individuelles Feld %s wurde gelöscht für `%s` ausgelöst durch `Lasse diese Felder in Ruhe: %s, aktualisiere alle anderen individuellen Felder` Einstellungen... "
|
1537 |
+
|
1538 |
+
#: models/import/record.php:2374
|
1539 |
+
msgid "- Custom field `%s` has been skipped attempted to record matching options ..."
|
1540 |
+
msgstr "-Benutzerdefiniertes Feld `%s` wurde übersprungen, versuche übereinstimmende Optionen aufzuzeichnen..."
|
1541 |
+
|
1542 |
+
#: models/import/record.php:2382
|
1543 |
+
msgid "- <b>ACTION</b>: pmxi_custom_field"
|
1544 |
+
msgstr "- <b>ACTION</b>: pmxi_custom_field"
|
1545 |
+
|
1546 |
+
#: models/import/record.php:2421
|
1547 |
+
msgid "- Custom field `%s` has been updated with value `%s` for post `%s` ..."
|
1548 |
+
msgstr "-Benutzerdefiniertes Feld `%s` wurde mit Wert '`%s` für Post `%s` ..."
|
1549 |
+
|
1550 |
+
#: models/import/record.php:2422
|
1551 |
+
msgid "- <b>ACTION</b>: pmxi_update_post_meta"
|
1552 |
+
msgstr "- <b>ACTION</b>: pmxi_update_post_meta"
|
1553 |
+
|
1554 |
+
#: models/import/record.php:2462
|
1555 |
+
msgid "<b>IMAGES:</b>"
|
1556 |
+
msgstr "<b>IMAGES:</b>"
|
1557 |
+
|
1558 |
+
#: models/import/record.php:2466
|
1559 |
+
msgid "<b>ERROR</b>: Target directory %s is not writable"
|
1560 |
+
msgstr "<b>Fehler</b>: Ziel-Verzeichnis %s ist nicht beschreibbar"
|
1561 |
+
|
1562 |
+
#: models/import/record.php:2495
|
1563 |
+
msgid "- Keep existing and add newest images ..."
|
1564 |
+
msgstr "- Behalte existierende und ergänze neueste Bilder"
|
1565 |
+
|
1566 |
+
#: models/import/record.php:2581
|
1567 |
+
msgid "- Importing image `%s` for `%s` ..."
|
1568 |
+
msgstr "- Importiere Bild `%s` für `%s`..."
|
1569 |
+
|
1570 |
+
#: models/import/record.php:2610 models/import/record.php:2688
|
1571 |
+
msgid "- <b>WARNING</b>: Image %s not found in media gallery."
|
1572 |
+
msgstr "- <b>WARNUNG</b>: Bild %s wurde in der Mediengalerie nicht gefunden."
|
1573 |
+
|
1574 |
+
#: models/import/record.php:2614 models/import/record.php:2692
|
1575 |
+
msgid "- Using existing image `%s` for post `%s` ..."
|
1576 |
+
msgstr "- Verwende das existierende Bild `%s` für den Beitrag `%s` ..."
|
1577 |
+
|
1578 |
+
#: models/import/record.php:2625
|
1579 |
+
msgid "- found base64_encoded image"
|
1580 |
+
msgstr "- base64_codiertes Bild gefunden"
|
1581 |
+
|
1582 |
+
#: models/import/record.php:2899
|
1583 |
+
msgid "- <b>ACTION</b>: "
|
1584 |
+
msgstr ""
|
1585 |
+
|
1586 |
+
#: models/import/record.php:2928
|
1587 |
+
msgid "- Attachment has been successfully updated for image `%s`"
|
1588 |
+
msgstr "- Der Anhang für das Bild `%s` wurde erfolgreich aktualisiert."
|
1589 |
+
|
1590 |
+
#: models/import/record.php:2946
|
1591 |
+
msgid "- Post `%s` saved as Draft, because no images are downloaded successfully"
|
1592 |
+
msgstr "- Post `%s` als Entwurf gespeichert, da keine Bilder heruntergeladen werden konnten"
|
1593 |
+
|
1594 |
+
#: models/import/record.php:2955
|
1595 |
+
msgid "Post `%s` saved as Draft, because no images are downloaded successfully"
|
1596 |
+
msgstr "Post `%s` als Entwurf gespeichert, da keine Bilder heruntergeladen werden konnten"
|
1597 |
+
|
1598 |
+
#: models/import/record.php:2994
|
1599 |
+
msgid "Images import skipped for post `%s` according to 'pmxi_is_images_to_update' filter..."
|
1600 |
+
msgstr "Der Bildimport für den Beitrag `%s` wurde gemäss dem Filter 'pmxi_is_images_to_update' übersprungen…"
|
1601 |
+
|
1602 |
+
#: models/import/record.php:3006
|
1603 |
+
msgid "<b>ATTACHMENTS:</b>"
|
1604 |
+
msgstr "<b>ATTACHMENTS:</b>"
|
1605 |
+
|
1606 |
+
#: models/import/record.php:3009
|
1607 |
+
msgid "- <b>ERROR</b>: Target directory %s is not writable"
|
1608 |
+
msgstr "<b>Fehler</b>: Ziel-Verzeichnis %s ist nicht beschreibbar"
|
1609 |
+
|
1610 |
+
#: models/import/record.php:3018
|
1611 |
+
msgid "- Importing attachments for `%s` ..."
|
1612 |
+
msgstr "- Importiere Anhänge für `%s`..."
|
1613 |
+
|
1614 |
+
#: models/import/record.php:3043
|
1615 |
+
msgid "- Using existing file `%s` for post `%s` ..."
|
1616 |
+
msgstr ""
|
1617 |
+
|
1618 |
+
#: models/import/record.php:3052
|
1619 |
+
msgid "- Filename for attachment was generated as %s"
|
1620 |
+
msgstr "- Dateiname für Anhang wurde generiert als %s"
|
1621 |
+
|
1622 |
+
#: models/import/record.php:3059
|
1623 |
+
msgid "- <b>WARNING</b>: Attachment file %s cannot be saved locally as %s"
|
1624 |
+
msgstr "- <b>WARNUNG</b>: Anhang Datei %s kann lokal nicht gespeichert werden als %s"
|
1625 |
+
|
1626 |
+
#: models/import/record.php:3060
|
1627 |
+
msgid "- <b>WP Error</b>: %s"
|
1628 |
+
msgstr "- <b>WP Error</b>: %s"
|
1629 |
+
|
1630 |
+
#: models/import/record.php:3074
|
1631 |
+
msgid "- File %s has been successfully downloaded"
|
1632 |
+
msgstr "- Datei %s wurde erfolgreich heruntergeladen"
|
1633 |
+
|
1634 |
+
#: models/import/record.php:3090
|
1635 |
+
msgid "- Attachment has been successfully created for post `%s`"
|
1636 |
+
msgstr "- Anhang wurde erstellt für den Post `%s`"
|
1637 |
+
|
1638 |
+
#: models/import/record.php:3091 models/import/record.php:3116
|
1639 |
+
msgid "- <b>ACTION</b>: pmxi_attachment_uploaded"
|
1640 |
+
msgstr "- <b>ACTION</b>: pmxi_attachment_uploaded"
|
1641 |
+
|
1642 |
+
#: models/import/record.php:3110
|
1643 |
+
msgid "- Attachment has been successfully updated for file `%s`"
|
1644 |
+
msgstr ""
|
1645 |
+
|
1646 |
+
#: models/import/record.php:3114
|
1647 |
+
msgid "- Attachment has been successfully created for file `%s`"
|
1648 |
+
msgstr ""
|
1649 |
+
|
1650 |
+
#: models/import/record.php:3127
|
1651 |
+
msgid "Attachments import skipped for post `%s` according to 'pmxi_is_attachments_to_update' filter..."
|
1652 |
+
msgstr "Der Anhangsimport für den Beitrag `%s` wurde gemäss dem Filter 'pmxi_is_attachments_to_update' übersprungen…"
|
1653 |
+
|
1654 |
+
#: models/import/record.php:3134
|
1655 |
+
msgid "<b>TAXONOMIES:</b>"
|
1656 |
+
msgstr "<b>TAXONOMIES:</b>"
|
1657 |
+
|
1658 |
+
#: models/import/record.php:3143
|
1659 |
+
msgid "- Importing taxonomy `%s` ..."
|
1660 |
+
msgstr "- Importiere Taxonomie `%s`..."
|
1661 |
+
|
1662 |
+
#: models/import/record.php:3146
|
1663 |
+
msgid "- Auto-nest enabled with separator `%s` ..."
|
1664 |
+
msgstr "- Automatische Verschachtelung aktiviert mit Trennzeichen `%s`..."
|
1665 |
+
|
1666 |
+
#: models/import/record.php:3152
|
1667 |
+
msgid "- %s %s `%s` has been skipped attempted to `Leave these taxonomies alone, update all others`..."
|
1668 |
+
msgstr "- %s %s `%s` wurde übersprungen durch den Versuch `Lasse die Taxonomien in Ruhe, aktualisiere alle anderen`..."
|
1669 |
+
|
1670 |
+
#: models/import/record.php:3157
|
1671 |
+
msgid "- %s %s `%s` has been skipped attempted to `Update only these taxonomies, leave the rest alone`..."
|
1672 |
+
msgstr "- %s %s `%s` wurde übersprungen durch den Versuch `Aktualisiere nur diese Taxonomien, lasse den Rest in ruhe`..."
|
1673 |
+
|
1674 |
+
#: models/import/record.php:3196
|
1675 |
+
msgid "- Creating parent %s %s `%s` ..."
|
1676 |
+
msgstr "- Erstelle aktuell %s %s `%s` ..."
|
1677 |
+
|
1678 |
+
#: models/import/record.php:3199
|
1679 |
+
msgid "- Creating child %s %s for %s named `%s` ..."
|
1680 |
+
msgstr "- Erstelle Kind %s %s für %s Name: `%s` ..."
|
1681 |
+
|
1682 |
+
#: models/import/record.php:3206
|
1683 |
+
msgid "- <b>WARNING</b>: `%s`"
|
1684 |
+
msgstr "- <b>WARNING</b>: `%s`"
|
1685 |
+
|
1686 |
+
#: models/import/record.php:3227
|
1687 |
+
msgid "- Attempted to create parent %s %s `%s`, duplicate detected. Importing %s to existing `%s` %s, ID %d, slug `%s` ..."
|
1688 |
+
msgstr "- Versuche Eltern Element zu erstellen %s %s `%s`, Duplikat entdeckt. Importiere %s in existierendes` %s` %s, ID %d, slug `%s`..."
|
1689 |
+
|
1690 |
+
#: models/import/record.php:3230
|
1691 |
+
msgid "- Attempted to create child %s %s `%s`, duplicate detected. Importing %s to existing `%s` %s, ID %d, slug `%s` ..."
|
1692 |
+
msgstr "- Versuche Kind Element zu erstellen %s %s `%s`, Duplikat entdeckt. Importiere %s in existierendes` %s` %s, ID %d, slug `%s`..."
|
1693 |
+
|
1694 |
+
#: models/import/record.php:3245
|
1695 |
+
msgid "- %s %s `%s` has been skipped attempted to `Do not update Taxonomies (incl. Categories and Tags)`..."
|
1696 |
+
msgstr "- %s %s `%s` wurde übersprungen durch den Versuch `Taxonomien nicht aktualisieren ( incl. Kategorien und Tags)`..."
|
1697 |
+
|
1698 |
+
#: models/import/record.php:3264
|
1699 |
+
msgid "<b>CREATED</b> `%s` `%s` (ID: %s)"
|
1700 |
+
msgstr "<b>CREATED</b> `%s` `%s` (ID: %s)"
|
1701 |
+
|
1702 |
+
#: models/import/record.php:3266
|
1703 |
+
msgid "<b>UPDATED</b> `%s` `%s` (ID: %s)"
|
1704 |
+
msgstr "<b>UPDATED</b> `%s` `%s` (ID: %s)"
|
1705 |
+
|
1706 |
+
#: models/import/record.php:3309
|
1707 |
+
msgid "<b>ACTION</b>: pmxi_saved_post"
|
1708 |
+
msgstr "<b>ACTION</b>: pmxi_saved_post"
|
1709 |
+
|
1710 |
+
#: models/import/record.php:3316
|
1711 |
+
msgid "<span class=\"processing_info\"><span class=\"created_count\">%s</span><span class=\"updated_count\">%s</span><span class=\"percents_count\">%s</span></span>"
|
1712 |
+
msgstr "<span class=\"processing_info\"><span class=\"created_count\">%s</span><span class=\"updated_count\">%s</span><span class=\"percents_count\">%s</span></span>"
|
1713 |
+
|
1714 |
+
#: models/import/record.php:3320
|
1715 |
+
msgid "<b>ACTION</b>: pmxi_after_post_import"
|
1716 |
+
msgstr "<b>ACTION</b>: pmxi_after_post_import"
|
1717 |
+
|
1718 |
+
#: models/import/record.php:3349
|
1719 |
+
msgid "Update stock status previously imported posts which are no longer actual..."
|
1720 |
+
msgstr "Aktualisiere Lager Status vorherig importierter Posts welche nicht länger aktuell sind..."
|
1721 |
+
|
1722 |
+
#: models/import/record.php:3373
|
1723 |
+
msgid "Cleaning temporary data..."
|
1724 |
+
msgstr "Reinige temporäre Daten..."
|
1725 |
+
|
1726 |
+
#: models/import/record.php:3389
|
1727 |
+
msgid "Deleting source XML file..."
|
1728 |
+
msgstr "Lösche Ursprüngliche XML Datei..."
|
1729 |
+
|
1730 |
+
#: models/import/record.php:3393
|
1731 |
+
msgid "Deleting chunks files..."
|
1732 |
+
msgstr "Lösche Block Dateien..."
|
1733 |
+
|
1734 |
+
#: models/import/record.php:3400 models/import/record.php:3409
|
1735 |
+
msgid "<b>WARNING</b>: Unable to remove %s"
|
1736 |
+
msgstr "<b>WARNING</b>: Entfernen nicht möglich %s"
|
1737 |
+
|
1738 |
+
#: models/import/record.php:3421
|
1739 |
+
msgid "Removing previously imported posts which are no longer actual..."
|
1740 |
+
msgstr "Entferne vorher importierte Posts welche nicht länger aktuell sind..."
|
1741 |
+
|
1742 |
+
#: models/import/record.php:3443
|
1743 |
+
msgid "<b>ACTION</b>: pmxi_delete_post"
|
1744 |
+
msgstr "<b>ACTION</b>: pmxi_delete_post"
|
1745 |
+
|
1746 |
+
#: models/import/record.php:3445
|
1747 |
+
msgid "Deleting posts from database"
|
1748 |
+
msgstr "Lösche Posts aus der Datenbank"
|
1749 |
+
|
1750 |
+
#: models/import/record.php:3462
|
1751 |
+
msgid "Instead of deletion user with ID `%s`, set Custom Field `%s` to value `%s`"
|
1752 |
+
msgstr ""
|
1753 |
+
|
1754 |
+
#: models/import/record.php:3466
|
1755 |
+
msgid "Instead of deletion taxonomy term with ID `%s`, set Custom Field `%s` to value `%s`"
|
1756 |
+
msgstr ""
|
1757 |
+
|
1758 |
+
#: models/import/record.php:3470
|
1759 |
+
msgid "Instead of deletion post with ID `%s`, set Custom Field `%s` to value `%s`"
|
1760 |
+
msgstr "Anstatt die Posts mit der ID `%s` zu löschen, setze Individuelles Feld `%s` auf Wert `%s`"
|
1761 |
+
|
1762 |
+
#: models/import/record.php:3482
|
1763 |
+
msgid "Instead of deletion, change post with ID `%s` status to Draft"
|
1764 |
+
msgstr "Anstatt die Posts mit der ID `%s` zu löschen, setze Status auf Entwurf"
|
1765 |
+
|
1766 |
+
#: models/import/record.php:3566
|
1767 |
+
msgid "%d Posts deleted from database. IDs (%s)"
|
1768 |
+
msgstr ""
|
1769 |
+
|
1770 |
+
#: models/import/record.php:3658
|
1771 |
+
msgid "<b>ERROR</b> Could not insert term relationship into the database"
|
1772 |
+
msgstr "<b>ERROR</b> Einfügen von Beziehungen der Begriff in die Datenbank nicht möglich"
|
1773 |
+
|
1774 |
+
#: views/admin/addons/index.php:3
|
1775 |
+
msgid "WP All Import Add-ons"
|
1776 |
+
msgstr "WP All Import Add-ons"
|
1777 |
+
|
1778 |
+
#: views/admin/addons/index.php:8
|
1779 |
+
msgid "Premium Add-ons"
|
1780 |
+
msgstr "Premium Add-ons"
|
1781 |
+
|
1782 |
+
#: views/admin/addons/index.php:20 views/admin/addons/index.php:61
|
1783 |
+
msgid "Installed"
|
1784 |
+
msgstr "Installiert"
|
1785 |
+
|
1786 |
+
#: views/admin/addons/index.php:22
|
1787 |
+
msgid "Free Version Installed"
|
1788 |
+
msgstr "Gratis Version Installiert"
|
1789 |
+
|
1790 |
+
#: views/admin/addons/index.php:29 views/admin/addons/index.php:70
|
1791 |
+
msgid " required"
|
1792 |
+
msgstr "Benötigt"
|
1793 |
+
|
1794 |
+
#: views/admin/addons/index.php:36 views/admin/addons/index.php:77
|
1795 |
+
#: views/admin/addons/index.php:82 views/admin/import/index.php:115
|
1796 |
+
msgid "Download"
|
1797 |
+
msgstr "Herunterladen"
|
1798 |
+
|
1799 |
+
#: views/admin/addons/index.php:41
|
1800 |
+
msgid "Purchase & Install"
|
1801 |
+
msgstr "Bezahlen & Installieren"
|
1802 |
+
|
1803 |
+
#: views/admin/addons/index.php:49
|
1804 |
+
msgid "Free Add-ons"
|
1805 |
+
msgstr "Gratis Add-ons"
|
1806 |
+
|
1807 |
+
#: views/admin/addons/index.php:63
|
1808 |
+
msgid "Paid Version Installed"
|
1809 |
+
msgstr "Bezahlte Version Installiert"
|
1810 |
+
|
1811 |
+
#: views/admin/help/index.php:1
|
1812 |
+
msgid "WP All Import Help"
|
1813 |
+
msgstr "WP All Import Hilfe"
|
1814 |
+
|
1815 |
+
#: views/admin/history/index.php:16 views/admin/history/index.php:18
|
1816 |
+
#: views/admin/history/index.php:20
|
1817 |
+
msgid "%s - Import History"
|
1818 |
+
msgstr "%s - Import Chronik"
|
1819 |
+
|
1820 |
+
#: views/admin/history/index.php:32 views/admin/manage/index.php:27
|
1821 |
+
msgid "ID"
|
1822 |
+
msgstr "ID"
|
1823 |
+
|
1824 |
+
#: views/admin/history/index.php:34
|
1825 |
+
msgid "Run Time"
|
1826 |
+
msgstr "Laufzeit"
|
1827 |
+
|
1828 |
+
#: views/admin/history/index.php:35
|
1829 |
+
msgid "Type"
|
1830 |
+
msgstr "Typ"
|
1831 |
+
|
1832 |
+
#: views/admin/history/index.php:36 views/admin/manage/index.php:30
|
1833 |
+
msgid "Summary"
|
1834 |
+
msgstr "Zusammenfassung"
|
1835 |
+
|
1836 |
+
#: views/admin/history/index.php:42
|
1837 |
+
msgid "Scheduling Status"
|
1838 |
+
msgstr "Planung Status"
|
1839 |
+
|
1840 |
+
#: views/admin/history/index.php:42
|
1841 |
+
msgid "triggered"
|
1842 |
+
msgstr "ausgelöst"
|
1843 |
+
|
1844 |
+
#: views/admin/history/index.php:42
|
1845 |
+
msgid "and processing"
|
1846 |
+
msgstr "und bearbeitend"
|
1847 |
+
|
1848 |
+
#: views/admin/history/index.php:52 views/admin/history/index.php:226
|
1849 |
+
#: views/admin/manage/index.php:44 views/admin/manage/index.php:359
|
1850 |
+
msgid "Bulk Actions"
|
1851 |
+
msgstr "Massen Aktion"
|
1852 |
+
|
1853 |
+
#: views/admin/history/index.php:53 views/admin/history/index.php:228
|
1854 |
+
#: views/admin/manage/index.php:45 views/admin/manage/index.php:192
|
1855 |
+
#: views/admin/manage/index.php:361
|
1856 |
+
msgid "Delete"
|
1857 |
+
msgstr "Löschen"
|
1858 |
+
|
1859 |
+
#: views/admin/history/index.php:55 views/admin/history/index.php:234
|
1860 |
+
#: views/admin/import/element.php:97 views/admin/manage/index.php:47
|
1861 |
+
#: views/admin/manage/index.php:367
|
1862 |
+
msgid "Apply"
|
1863 |
+
msgstr "Anwenden"
|
1864 |
+
|
1865 |
+
#: views/admin/history/index.php:61 views/admin/manage/index.php:53
|
1866 |
+
msgid "Displaying %s–%s of %s"
|
1867 |
+
msgstr "Zeige %s–%s von %s"
|
1868 |
+
|
1869 |
+
#: views/admin/history/index.php:108
|
1870 |
+
msgid "No previous history found."
|
1871 |
+
msgstr "Keine vorherige Chronik gefunden."
|
1872 |
+
|
1873 |
+
#: views/admin/history/index.php:161
|
1874 |
+
msgid "manual run"
|
1875 |
+
msgstr "Manueller Lauf"
|
1876 |
+
|
1877 |
+
#: views/admin/history/index.php:164
|
1878 |
+
msgid "continue run"
|
1879 |
+
msgstr "Lauf fortsetzen"
|
1880 |
+
|
1881 |
+
#: views/admin/history/index.php:189
|
1882 |
+
msgid "Download Log"
|
1883 |
+
msgstr "Download Log"
|
1884 |
+
|
1885 |
+
#: views/admin/history/index.php:193
|
1886 |
+
msgid "Log Unavailable"
|
1887 |
+
msgstr "Log nicht verfügbar"
|
1888 |
+
|
1889 |
+
#: views/admin/history/index.php:230 views/admin/manage/index.php:363
|
1890 |
+
msgid "Restore"
|
1891 |
+
msgstr "Wiederherstellen"
|
1892 |
+
|
1893 |
+
#: views/admin/history/index.php:231 views/admin/manage/index.php:364
|
1894 |
+
msgid "Delete Permanently"
|
1895 |
+
msgstr "Permanent Löschen"
|
1896 |
+
|
1897 |
+
#: views/admin/history/index.php:238 views/admin/import/confirm.php:359
|
1898 |
+
#: views/admin/import/element.php:224 views/admin/import/index.php:388
|
1899 |
+
#: views/admin/import/options.php:104 views/admin/import/process.php:124
|
1900 |
+
#: views/admin/import/template.php:234 views/admin/manage/index.php:372
|
1901 |
+
#: views/admin/manage/scheduling.php:62 views/admin/settings/index.php:230
|
1902 |
+
msgid "Created by"
|
1903 |
+
msgstr "Erstellt von"
|
1904 |
+
|
1905 |
+
#: views/admin/import/confirm.php:12 views/admin/import/element.php:9
|
1906 |
+
#: views/admin/import/index.php:44 views/admin/import/options.php:19
|
1907 |
+
#: views/admin/import/process.php:9 views/admin/import/template.php:10
|
1908 |
+
msgid "Import XML / CSV"
|
1909 |
+
msgstr "Importiere XML / CSV"
|
1910 |
+
|
1911 |
+
#: views/admin/import/confirm.php:15 views/admin/import/element.php:12
|
1912 |
+
#: views/admin/import/index.php:47 views/admin/import/options.php:22
|
1913 |
+
#: views/admin/import/process.php:12 views/admin/import/template.php:13
|
1914 |
+
msgid "Support"
|
1915 |
+
msgstr "Support"
|
1916 |
+
|
1917 |
+
#: views/admin/import/confirm.php:15 views/admin/import/element.php:12
|
1918 |
+
#: views/admin/import/index.php:47 views/admin/import/options.php:22
|
1919 |
+
#: views/admin/import/process.php:12 views/admin/import/template.php:13
|
1920 |
+
msgid "Documentation"
|
1921 |
+
msgstr "Dokumentation"
|
1922 |
+
|
1923 |
+
#: views/admin/import/confirm.php:45 views/admin/import/options.php:62
|
1924 |
+
msgid "This URL no longer returns an import file"
|
1925 |
+
msgstr ""
|
1926 |
+
|
1927 |
+
#: views/admin/import/confirm.php:46 views/admin/import/options.php:63
|
1928 |
+
msgid "You must provide a URL that returns a valid import file."
|
1929 |
+
msgstr ""
|
1930 |
+
|
1931 |
+
#: views/admin/import/confirm.php:48 views/admin/import/index.php:362
|
1932 |
+
#: views/admin/import/options.php:65
|
1933 |
+
#: views/admin/import/options/_import_file.php:46
|
1934 |
+
msgid "There's a problem with your import file"
|
1935 |
+
msgstr "Es gibt ein Problem mit Ihrer Import Datei"
|
1936 |
+
|
1937 |
+
#: views/admin/import/confirm.php:49 views/admin/import/options.php:66
|
1938 |
+
msgid "It has changed and is not compatible with this import template."
|
1939 |
+
msgstr "Diese hat sich verändert und ist mit dieser Import-Vorlage nicht kompatibel."
|
1940 |
+
|
1941 |
+
#: views/admin/import/confirm.php:72
|
1942 |
+
msgid "Your file is all set up!"
|
1943 |
+
msgstr "Ihre Datei ist bereit!"
|
1944 |
+
|
1945 |
+
#: views/admin/import/confirm.php:74
|
1946 |
+
msgid "This import did not finish successfuly last time it was run."
|
1947 |
+
msgstr "Dieser Import wurde beim letzten mal nicht erfolgreich beendet."
|
1948 |
+
|
1949 |
+
#: views/admin/import/confirm.php:78
|
1950 |
+
msgid "Check the settings below, then click the green button to run the import."
|
1951 |
+
msgstr "Überprüfen Sie die Einstellungen unten, und klicken Sie auf den grünen Button um den Import zu starten."
|
1952 |
+
|
1953 |
+
#: views/admin/import/confirm.php:80
|
1954 |
+
msgid "You can attempt to continue where it left off."
|
1955 |
+
msgstr "Versuchen Sie an der letzten Stelle fortzusetzen."
|
1956 |
+
|
1957 |
+
#: views/admin/import/confirm.php:88 views/admin/import/confirm.php:348
|
1958 |
+
msgid "Confirm & Run Import"
|
1959 |
+
msgstr "Bestätigen & Import starten"
|
1960 |
+
|
1961 |
+
#: views/admin/import/confirm.php:98
|
1962 |
+
msgid "Continue from the last run"
|
1963 |
+
msgstr "Vom letzten Lauf fortsetzen"
|
1964 |
+
|
1965 |
+
#: views/admin/import/confirm.php:102
|
1966 |
+
msgid "Run from the beginning"
|
1967 |
+
msgstr "Starte von Beginn"
|
1968 |
+
|
1969 |
+
#: views/admin/import/confirm.php:105 views/admin/import/process.php:99
|
1970 |
+
msgid "Continue Import"
|
1971 |
+
msgstr "Import Fortsetzen"
|
1972 |
+
|
1973 |
+
#: views/admin/import/confirm.php:107
|
1974 |
+
msgid "Run entire import from the beginning"
|
1975 |
+
msgstr "Starte gesamten Import von Vorne"
|
1976 |
+
|
1977 |
+
#: views/admin/import/confirm.php:127
|
1978 |
+
msgid "Import Summary"
|
1979 |
+
msgstr "Import Zusammenfassung"
|
1980 |
+
|
1981 |
+
#: views/admin/import/confirm.php:133
|
1982 |
+
msgid "Your max_execution_time is %s seconds"
|
1983 |
+
msgstr "Ihre max_execution_time ist %s Sekunden"
|
1984 |
+
|
1985 |
+
#: views/admin/import/confirm.php:157
|
1986 |
+
msgid "WP All Import will import the file <span style=\"color:#40acad;\">%s</span>, which is <span style=\"color:#000; font-weight:bold;\">%s</span>"
|
1987 |
+
msgstr "WP All Import wird die Datei <span style=\"color:#40acad;\">%s</span> importieren, welche <span style=\"color:#000; font-weight:bold;\">%s</span>ist."
|
1988 |
+
|
1989 |
+
#: views/admin/import/confirm.php:157
|
1990 |
+
msgid "undefined"
|
1991 |
+
msgstr "Undefiniert"
|
1992 |
+
|
1993 |
+
#: views/admin/import/confirm.php:160
|
1994 |
+
msgid "WP All Import will process the records matching the XPath expression: <span style=\"color:#46ba69; font-weight:bold;\">%s</span>"
|
1995 |
+
msgstr "WP All Import bearbeitet die Datensätze die mit folgendem XPath Ausdruck: <span style=\"color:#46ba69; font-weight:bold;\">%s</span>"
|
1996 |
+
|
1997 |
+
#: views/admin/import/confirm.php:162
|
1998 |
+
msgid "WP All Import will process <span style=\"color:#46ba69; font-weight:bold;\">%s</span> rows in your file"
|
1999 |
+
msgstr "WP All Import bearbeitet <span style=\"color:#46ba69; font-weight:bold;\">%s</span> Zeilen in Ihrer Datei"
|
2000 |
+
|
2001 |
+
#: views/admin/import/confirm.php:164
|
2002 |
+
msgid "WP All Import will process all %s <span style=\"color:#46ba69; font-weight:bold;\"><%s></span> records in your file"
|
2003 |
+
msgstr "WP All Import bearbeitet alle %s <span style=\"color:#46ba69; font-weight:bold;\"><%s></span> Datensätze in Ihrer Datei"
|
2004 |
+
|
2005 |
+
#: views/admin/import/confirm.php:168
|
2006 |
+
msgid "WP All Import will process only specified records: %s"
|
2007 |
+
msgstr "WP All Import bearbeitet nur die spezifizierten Datensätze: %s"
|
2008 |
+
|
2009 |
+
#: views/admin/import/confirm.php:175
|
2010 |
+
msgid "Your unique key is <span style=\"color:#000; font-weight:bold;\">%s</span>"
|
2011 |
+
msgstr "Ihr einzigartiger Schlüssel ist <span style=\"color:#000; font-weight:bold;\">%s</span>"
|
2012 |
+
|
2013 |
+
#: views/admin/import/confirm.php:179
|
2014 |
+
msgid "%ss previously imported by this import (ID: %s) with the same unique key will be updated."
|
2015 |
+
msgstr "%ss vorher importiert von diesem Import (ID: %s) mit dem selben einzigartigen Schlüssel werden aktualisiert."
|
2016 |
+
|
2017 |
+
#: views/admin/import/confirm.php:182
|
2018 |
+
msgid "%ss previously imported by this import (ID: %s) that aren't present for this run of the import will be deleted."
|
2019 |
+
msgstr "%ss vorher importiert von diesem Import (ID: %s) die nicht präsent sind in diesem Import lauf, werden gelöscht."
|
2020 |
+
|
2021 |
+
#: views/admin/import/confirm.php:186
|
2022 |
+
msgid "%ss previously imported by this import (ID: %s) that aren't present for this run of the import will be set to draft."
|
2023 |
+
msgstr "%ss vorher importiert von diesem Import (ID: %s) die nicht präsent sind in diesem Import lauf, werden auf Entwurf gesetzt."
|
2024 |
+
|
2025 |
+
#: views/admin/import/confirm.php:190
|
2026 |
+
msgid "Records with unique keys that don't match any unique keys from %ss created by previous runs of this import (ID: %s) will be created."
|
2027 |
+
msgstr "Datensätze mit eindeutigem Schlüssel, die zu keinem Schlüssel von %ss passen, erstellt von früheren Durchläufen dieses Import (ID:%s) werden erstellt."
|
2028 |
+
|
2029 |
+
#: views/admin/import/confirm.php:204
|
2030 |
+
msgid "WP All Import will merge data into existing %ss, matching the following criteria: %s"
|
2031 |
+
msgstr "WP All Import werden die Daten in bestehende %ss, mit folgenden Suchkriterien zusammenzuführen:%s"
|
2032 |
+
|
2033 |
+
#: views/admin/import/confirm.php:207
|
2034 |
+
msgid "Existing data will be updated with the data specified in this import."
|
2035 |
+
msgstr "Bestehende Daten werden mit den in diesem Import angegebenen Daten aktualisiert werden."
|
2036 |
+
|
2037 |
+
#: views/admin/import/confirm.php:210
|
2038 |
+
msgid "Next %s data will be updated, <strong>all other data will be left alone</strong>"
|
2039 |
+
msgstr "Nächste %s Daten werden aktualisiert, <strong>alle anderen Daten werden in Ruhe gelassen</strong>"
|
2040 |
+
|
2041 |
+
#: views/admin/import/confirm.php:214
|
2042 |
+
msgid "status"
|
2043 |
+
msgstr "Status"
|
2044 |
+
|
2045 |
+
#: views/admin/import/confirm.php:217
|
2046 |
+
msgid "title"
|
2047 |
+
msgstr "Titel"
|
2048 |
+
|
2049 |
+
#: views/admin/import/confirm.php:220
|
2050 |
+
msgid "slug"
|
2051 |
+
msgstr "Slug"
|
2052 |
+
|
2053 |
+
#: views/admin/import/confirm.php:223
|
2054 |
+
msgid "content"
|
2055 |
+
msgstr "Inhalt"
|
2056 |
+
|
2057 |
+
#: views/admin/import/confirm.php:226
|
2058 |
+
msgid "excerpt"
|
2059 |
+
msgstr "Ausschnitt"
|
2060 |
+
|
2061 |
+
#: views/admin/import/confirm.php:229
|
2062 |
+
msgid "dates"
|
2063 |
+
msgstr "Datum"
|
2064 |
+
|
2065 |
+
#: views/admin/import/confirm.php:232
|
2066 |
+
msgid "menu order"
|
2067 |
+
msgstr "Menü Reihenfolge"
|
2068 |
+
|
2069 |
+
#: views/admin/import/confirm.php:235
|
2070 |
+
msgid "parent post"
|
2071 |
+
msgstr "Eltern post"
|
2072 |
+
|
2073 |
+
#: views/admin/import/confirm.php:238
|
2074 |
+
msgid "post type"
|
2075 |
+
msgstr ""
|
2076 |
+
|
2077 |
+
#: views/admin/import/confirm.php:241
|
2078 |
+
msgid "attachments"
|
2079 |
+
msgstr "Anhänge"
|
2080 |
+
|
2081 |
+
#: views/admin/import/confirm.php:248
|
2082 |
+
msgid "all advanced custom fields"
|
2083 |
+
msgstr "Alle erweiterte benutzerdefinierte Felder"
|
2084 |
+
|
2085 |
+
#: views/admin/import/confirm.php:251
|
2086 |
+
msgid "only ACF presented in import options"
|
2087 |
+
msgstr "Nur ACF präsent in den Import Optionen"
|
2088 |
+
|
2089 |
+
#: views/admin/import/confirm.php:254
|
2090 |
+
msgid "only these ACF : %s"
|
2091 |
+
msgstr "Nur diese ACF: %s"
|
2092 |
+
|
2093 |
+
#: views/admin/import/confirm.php:257
|
2094 |
+
msgid "all ACF except these: %s"
|
2095 |
+
msgstr "Alle ACF ausser diese: %s"
|
2096 |
+
|
2097 |
+
#: views/admin/import/confirm.php:267
|
2098 |
+
msgid "old images will be updated with new"
|
2099 |
+
msgstr "Alte Bilder werden aktualisiert"
|
2100 |
+
|
2101 |
+
#: views/admin/import/confirm.php:270
|
2102 |
+
msgid "only new images will be added"
|
2103 |
+
msgstr "Nur neue Bilder werden hinzugefügt"
|
2104 |
+
|
2105 |
+
#: views/admin/import/confirm.php:280
|
2106 |
+
msgid "all custom fields"
|
2107 |
+
msgstr "Alle individuellen Felder"
|
2108 |
+
|
2109 |
+
#: views/admin/import/confirm.php:283
|
2110 |
+
msgid "only these custom fields : %s"
|
2111 |
+
msgstr "Nur diese individuellen Felder: %s"
|
2112 |
+
|
2113 |
+
#: views/admin/import/confirm.php:286
|
2114 |
+
msgid "all cusom fields except these: %s"
|
2115 |
+
msgstr "Alle individuellen Felder ausser diese: %s"
|
2116 |
+
|
2117 |
+
#: views/admin/import/confirm.php:296
|
2118 |
+
msgid "remove existing taxonomies, add new taxonomies"
|
2119 |
+
msgstr "Entferne bestehende Taxonomien, füge neue hinzu"
|
2120 |
+
|
2121 |
+
#: views/admin/import/confirm.php:299
|
2122 |
+
msgid "only add new"
|
2123 |
+
msgstr "Nur neue hinzufügen"
|
2124 |
+
|
2125 |
+
#: views/admin/import/confirm.php:302
|
2126 |
+
msgid "update only these taxonomies: %s , leave the rest alone"
|
2127 |
+
msgstr "Aktualisiere nur diese Taxonomien: %s, lasse den Rest in Ruhe"
|
2128 |
+
|
2129 |
+
#: views/admin/import/confirm.php:305
|
2130 |
+
msgid "leave these taxonomies: %s alone, update all others"
|
2131 |
+
msgstr "Lasse diese Taxonomien in Ruhe: %s, aktualisiere alle anderen"
|
2132 |
+
|
2133 |
+
#: views/admin/import/confirm.php:316
|
2134 |
+
msgid "New %ss will be created from records that don't match the above criteria."
|
2135 |
+
msgstr "Neue %ss werden erstellt von den Datensätzen die nicht den oberen Kriterien entsprechen."
|
2136 |
+
|
2137 |
+
#: views/admin/import/confirm.php:322
|
2138 |
+
msgid "High-Speed, Small File Processing enabled. Your import will fail if it takes longer than your server's max_execution_time."
|
2139 |
+
msgstr "High-Speed, Bearbeitung kleiner Dateien aktiviert. Ihr Import wird fehlschlagen wenn es länger dauert als Ihr Server max_execution_time."
|
2140 |
+
|
2141 |
+
#: views/admin/import/confirm.php:324
|
2142 |
+
msgid "Piece By Piece Processing enabled. %s records will be processed each iteration. If it takes longer than your server's max_execution_time to process %s records, your import will fail."
|
2143 |
+
msgstr "Stück für Stück Bearbeitung aktiviert. %s Datensätze werden mit jedem Durchlauf bearbeitet. Wenn es länger dauert als Ihr Server max_execution_time benötigt für %s Datensätze, wird Ihr Import fehlschlagen."
|
2144 |
+
|
2145 |
+
#: views/admin/import/confirm.php:328
|
2146 |
+
msgid "Your file will be split into %s records chunks before processing."
|
2147 |
+
msgstr "Ihre Datei wird geteilt in %s Datensatz Blöcke vor der Bearbeitung."
|
2148 |
+
|
2149 |
+
#: views/admin/import/confirm.php:332
|
2150 |
+
msgid "do_action calls will be disabled in wp_insert_post and wp_insert_attachment during the import."
|
2151 |
+
msgstr "do_action Aufrufe werden deaktiviert in wp_insert_post und wp_insert_attachment während des Imports."
|
2152 |
+
|
2153 |
+
#: views/admin/import/confirm.php:351
|
2154 |
+
msgid "or go back to Step 4"
|
2155 |
+
msgstr "oder gehe zurück zu Schritt 4"
|
2156 |
+
|
2157 |
+
#: views/admin/import/confirm.php:353
|
2158 |
+
msgid "or go back to Manage Imports"
|
2159 |
+
msgstr "oder gehe zurück zu Imports Verwalten"
|
2160 |
+
|
2161 |
+
#: views/admin/import/element.php:34 views/admin/import/element.php:221
|
2162 |
+
msgid "Continue to Step 3"
|
2163 |
+
msgstr "Weiter zu Schritt 3"
|
2164 |
+
|
2165 |
+
#: views/admin/import/element.php:47
|
2166 |
+
msgid "What element are you looking for?"
|
2167 |
+
msgstr "Welches Element suchen Sie?"
|
2168 |
+
|
2169 |
+
#: views/admin/import/element.php:76
|
2170 |
+
msgid "of <span class=\"wpallimport-elements-count-info\">%s</span>"
|
2171 |
+
msgstr "von <span class=\"wpallimport-elements-count-info\">%s</span>"
|
2172 |
+
|
2173 |
+
#: views/admin/import/element.php:94
|
2174 |
+
msgid "Set delimiter for CSV fields:"
|
2175 |
+
msgstr "Setze Beschränkung für CSV Felder:"
|
2176 |
+
|
2177 |
+
#: views/admin/import/element.php:115
|
2178 |
+
msgid "Each <span><<span class=\"root_element\">%s</span>></span> element will be imported into a <span>New %s</span>"
|
2179 |
+
msgstr "Jedes <span><<span class=\"root_element\">%s</span>></span> Element wird importiert in ein <span>neues %s</span>"
|
2180 |
+
|
2181 |
+
#: views/admin/import/element.php:119
|
2182 |
+
msgid "Data in <span><<span class=\"root_element\">%s</span>></span> elements will be imported to <span>%s</span>"
|
2183 |
+
msgstr "Daten in <span><<span class=\"root_element\">%s</span>></span> Element werden Importiert in <span>%s</span>"
|
2184 |
+
|
2185 |
+
#: views/admin/import/element.php:124
|
2186 |
+
msgid "This doesn't look right, try manually selecting a different root element on the left."
|
2187 |
+
msgstr "Das sieht nicht korrekt aus, versuchen Sie auf der linken Seite manuell ein anderes Wurzelelement zu wählen."
|
2188 |
+
|
2189 |
+
#: views/admin/import/element.php:136
|
2190 |
+
msgid "Add Filtering Options"
|
2191 |
+
msgstr "Füge Filteroptionen hinzu"
|
2192 |
+
|
2193 |
+
#: views/admin/import/element.php:143 views/admin/import/element.php:195
|
2194 |
+
msgid "Element"
|
2195 |
+
msgstr "Element"
|
2196 |
+
|
2197 |
+
#: views/admin/import/element.php:144 views/admin/import/element.php:196
|
2198 |
+
msgid "Rule"
|
2199 |
+
msgstr "Regel"
|
2200 |
+
|
2201 |
+
#: views/admin/import/element.php:145 views/admin/import/element.php:197
|
2202 |
+
#: views/admin/import/options/_reimport_options.php:42
|
2203 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:46
|
2204 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:125
|
2205 |
+
#: views/admin/import/options/_reimport_template.php:107
|
2206 |
+
#: views/admin/import/template/_custom_fields_template.php:52
|
2207 |
+
#: views/admin/import/template/_custom_fields_template.php:86
|
2208 |
+
#: views/admin/import/template/_custom_fields_template.php:295
|
2209 |
+
#: views/admin/import/template/_custom_fields_template.php:429
|
2210 |
+
#: views/admin/import/template/_term_meta_template.php:52
|
2211 |
+
#: views/admin/import/template/_term_meta_template.php:86
|
2212 |
+
#: views/admin/import/template/_term_meta_template.php:295
|
2213 |
+
#: views/admin/import/template/_term_meta_template.php:429
|
2214 |
+
msgid "Value"
|
2215 |
+
msgstr "Wert"
|
2216 |
+
|
2217 |
+
#: views/admin/import/element.php:151
|
2218 |
+
msgid "Select Element"
|
2219 |
+
msgstr "Wähle Element"
|
2220 |
+
|
2221 |
+
#: views/admin/import/element.php:157
|
2222 |
+
msgid "Select Rule"
|
2223 |
+
msgstr "Wähle Regel"
|
2224 |
+
|
2225 |
+
#: views/admin/import/element.php:158
|
2226 |
+
msgid "equals"
|
2227 |
+
msgstr "gleich"
|
2228 |
+
|
2229 |
+
#: views/admin/import/element.php:159
|
2230 |
+
msgid "not equals"
|
2231 |
+
msgstr "ungleich"
|
2232 |
+
|
2233 |
+
#: views/admin/import/element.php:160
|
2234 |
+
msgid "greater than"
|
2235 |
+
msgstr "grösser als"
|
2236 |
+
|
2237 |
+
#: views/admin/import/element.php:161
|
2238 |
+
msgid "equals or greater than"
|
2239 |
+
msgstr "gleich oder grösser als"
|
2240 |
+
|
2241 |
+
#: views/admin/import/element.php:162
|
2242 |
+
msgid "less than"
|
2243 |
+
msgstr "weniger als"
|
2244 |
+
|
2245 |
+
#: views/admin/import/element.php:163
|
2246 |
+
msgid "equals or less than"
|
2247 |
+
msgstr "gleich oder weniger als"
|
2248 |
+
|
2249 |
+
#: views/admin/import/element.php:164
|
2250 |
+
msgid "contains"
|
2251 |
+
msgstr "beinhaltet"
|
2252 |
+
|
2253 |
+
#: views/admin/import/element.php:165
|
2254 |
+
msgid "not contains"
|
2255 |
+
msgstr "beinhaltet nicht"
|
2256 |
+
|
2257 |
+
#: views/admin/import/element.php:166
|
2258 |
+
msgid "is empty"
|
2259 |
+
msgstr "ist leer"
|
2260 |
+
|
2261 |
+
#: views/admin/import/element.php:167
|
2262 |
+
msgid "is not empty"
|
2263 |
+
msgstr "ist nicht leer"
|
2264 |
+
|
2265 |
+
#: views/admin/import/element.php:174
|
2266 |
+
msgid "Add Rule"
|
2267 |
+
msgstr "Regel hinzufügen"
|
2268 |
+
|
2269 |
+
#: views/admin/import/element.php:183
|
2270 |
+
#: views/admin/import/options/_settings_template.php:174
|
2271 |
+
msgid "XPath"
|
2272 |
+
msgstr "XPath"
|
2273 |
+
|
2274 |
+
#: views/admin/import/element.php:198
|
2275 |
+
msgid "Condition"
|
2276 |
+
msgstr "Bedingung"
|
2277 |
+
|
2278 |
+
#: views/admin/import/element.php:203
|
2279 |
+
msgid "No filtering options. Add filtering options to only import records matching some specified criteria."
|
2280 |
+
msgstr "Keine Filteroptionen. Füge Filteroptionen hinzu um nur Datensätze zu importieren, die spezifische Kriterien erfüllen."
|
2281 |
+
|
2282 |
+
#: views/admin/import/element.php:208
|
2283 |
+
msgid "Apply Filters To XPath"
|
2284 |
+
msgstr "Wende Filter für XPath an"
|
2285 |
+
|
2286 |
+
#: views/admin/import/element.php:217
|
2287 |
+
msgid "Back to Step 1"
|
2288 |
+
msgstr "Zurück zu Schritt 1"
|
2289 |
+
|
2290 |
+
#: views/admin/import/evaluate.php:3
|
2291 |
+
msgid "<span class=\"matches_count\">%s</span> <strong>%s</strong> will be imported"
|
2292 |
+
msgstr "<span class=\"matches_count\">%s</span> <strong>%s</strong> wird importiert"
|
2293 |
+
|
2294 |
+
#: views/admin/import/evaluate.php:3
|
2295 |
+
msgid "row"
|
2296 |
+
msgid_plural "rows"
|
2297 |
+
msgstr[0] "Zeile"
|
2298 |
+
msgstr[1] "Zeilen"
|
2299 |
+
|
2300 |
+
#: views/admin/import/evaluate.php:5
|
2301 |
+
msgid "<span class=\"matches_count\">%s</span> <strong>%s</strong> %s will be imported"
|
2302 |
+
msgstr "<span class=\"matches_count\">%s</span> <strong>%s</strong> %s wird importiert"
|
2303 |
+
|
2304 |
+
#: views/admin/import/evaluate.php:7
|
2305 |
+
msgid "Click an element to select it, or scroll down to add filtering options."
|
2306 |
+
msgstr "Klicken Sie auf ein Element um es auszuwählen, oder scrollen Sie runter um Filteroptionen hinzuzufügen."
|
2307 |
+
|
2308 |
+
#: views/admin/import/evaluate.php:9
|
2309 |
+
#: views/admin/import/evaluate_variations.php:5
|
2310 |
+
msgid "<strong>Note</strong>: Highlighting is turned off since can be very slow on large sets of elements."
|
2311 |
+
msgstr "<strong>Note</strong>: Hervorhebung ist ausgeschaltet, da es bei grosser Elementzahl verlangsamen kann."
|
2312 |
+
|
2313 |
+
#: views/admin/import/evaluate_variations.php:3
|
2314 |
+
msgid "Current selection matches <span class=\"matches_count\">%s</span> %s."
|
2315 |
+
msgstr "Gegenwärtige Selektion passt bei <span class=\"matches_count\">%s</span> %s."
|
2316 |
+
|
2317 |
+
#: views/admin/import/evaluate_variations.php:14
|
2318 |
+
msgid "#<strong>%s</strong> out of <strong>%s</strong>"
|
2319 |
+
msgstr "#<strong>%s</strong> aus <strong>%s</strong>"
|
2320 |
+
|
2321 |
+
#: views/admin/import/index.php:69
|
2322 |
+
msgid "First, specify how you want to import your data"
|
2323 |
+
msgstr "Wählen Sie zuerst wie Sie die Daten importieren wollen"
|
2324 |
+
|
2325 |
+
#: views/admin/import/index.php:71
|
2326 |
+
msgid "First, specify previously exported file"
|
2327 |
+
msgstr "Spezifizieren Sie zuerst Ihre exportierte Datei"
|
2328 |
+
|
2329 |
+
#: views/admin/import/index.php:72
|
2330 |
+
msgid "The data in this file can be modified, but the structure of the file (column/element names) should not change."
|
2331 |
+
msgstr "Die Daten in dieser Datei können geändert werden, aber die Struktur (Spalte/Element Namen) sollten sich nicht ändern."
|
2332 |
+
|
2333 |
+
#: views/admin/import/index.php:76
|
2334 |
+
#: views/admin/import/options/_import_file.php:74
|
2335 |
+
msgid "Upload a file"
|
2336 |
+
msgstr "Datei hochladen"
|
2337 |
+
|
2338 |
+
#: views/admin/import/index.php:80
|
2339 |
+
#: views/admin/import/options/_import_file.php:78
|
2340 |
+
msgid "Download from URL"
|
2341 |
+
msgstr "Download von URL"
|
2342 |
+
|
2343 |
+
#: views/admin/import/index.php:84
|
2344 |
+
#: views/admin/import/options/_import_file.php:82
|
2345 |
+
msgid "Use existing file"
|
2346 |
+
msgstr "Nutze bestehende Datei"
|
2347 |
+
|
2348 |
+
#: views/admin/import/index.php:94
|
2349 |
+
#: views/admin/import/options/_import_file.php:92
|
2350 |
+
msgid "Click here to select file from your computer..."
|
2351 |
+
msgstr "Hier klicken um Datei von Ihrem Computer zu wählen..."
|
2352 |
+
|
2353 |
+
#: views/admin/import/index.php:97
|
2354 |
+
msgid "Upload Complete"
|
2355 |
+
msgstr ""
|
2356 |
+
|
2357 |
+
#: views/admin/import/index.php:119
|
2358 |
+
msgid "<strong>Hint:</strong> After you create this import, you can schedule it to run automatically, on a pre-defined schedule, with cron jobs. If anything in your file has changed, WP All Import can update your site with the changed data automatically."
|
2359 |
+
msgstr "<strong>Hint:</strong> Nachdem Sie diesen Import erstellt haben, können Sie mit cron Jobs planen ihn automatisch auszuführen. Sollte sich in Ihrer Datei etwas ändern, kann WP All Import Ihre Seite mit den geänderten Daten automatisch aktualisieren."
|
2360 |
+
|
2361 |
+
#: views/admin/import/index.php:159
|
2362 |
+
#: views/admin/import/options/_import_file.php:144
|
2363 |
+
msgid "Select a previously uploaded file"
|
2364 |
+
msgstr "Wählen Sie eine vorher Hochgeladene Datei"
|
2365 |
+
|
2366 |
+
#: views/admin/import/index.php:168
|
2367 |
+
#: views/admin/import/options/_import_file.php:156
|
2368 |
+
msgid "Upload files to <strong>%s</strong> and they will appear in this list"
|
2369 |
+
msgstr "Laden Sie eine Datei in <strong>%s</strong> hoch und sie erscheint in dieser Liste"
|
2370 |
+
|
2371 |
+
#: views/admin/import/index.php:183
|
2372 |
+
msgid "Import data from this file into..."
|
2373 |
+
msgstr "Importiere Daten von dieser Datei in..."
|
2374 |
+
|
2375 |
+
#: views/admin/import/index.php:187
|
2376 |
+
msgid "New Items"
|
2377 |
+
msgstr "Neue Artikel"
|
2378 |
+
|
2379 |
+
#: views/admin/import/index.php:191
|
2380 |
+
msgid "Existing Items"
|
2381 |
+
msgstr "Bestehende Artikel"
|
2382 |
+
|
2383 |
+
#: views/admin/import/index.php:214
|
2384 |
+
msgid "Taxonomies"
|
2385 |
+
msgstr ""
|
2386 |
+
|
2387 |
+
#: views/admin/import/index.php:218
|
2388 |
+
#: views/admin/import/options/_settings_template.php:81
|
2389 |
+
msgid "Users"
|
2390 |
+
msgstr ""
|
2391 |
+
|
2392 |
+
#: views/admin/import/index.php:244
|
2393 |
+
msgid "Create new"
|
2394 |
+
msgstr "Erstelle neue"
|
2395 |
+
|
2396 |
+
#: views/admin/import/index.php:245
|
2397 |
+
msgid "Import to existing"
|
2398 |
+
msgstr "Importiere in bestehende"
|
2399 |
+
|
2400 |
+
#: views/admin/import/index.php:248
|
2401 |
+
msgid "for each record in my data file."
|
2402 |
+
msgstr "für jeden Datensatz in der Datei."
|
2403 |
+
|
2404 |
+
#: views/admin/import/index.php:249
|
2405 |
+
msgid "and update some or all of their data."
|
2406 |
+
msgstr "und aktualisiere einige von den Daten."
|
2407 |
+
|
2408 |
+
#: views/admin/import/index.php:298
|
2409 |
+
msgid "Select taxonomy to import into..."
|
2410 |
+
msgstr ""
|
2411 |
+
|
2412 |
+
#: views/admin/import/index.php:300
|
2413 |
+
#: views/admin/import/options/_settings_template.php:56
|
2414 |
+
msgid "Select Taxonomy"
|
2415 |
+
msgstr ""
|
2416 |
+
|
2417 |
+
#: views/admin/import/index.php:309
|
2418 |
+
#: views/admin/import/options/_settings_template.php:151
|
2419 |
+
msgid "The User Import Add-On is Required to Import Users"
|
2420 |
+
msgstr ""
|
2421 |
+
|
2422 |
+
#: views/admin/import/index.php:310
|
2423 |
+
#: views/admin/import/options/_settings_template.php:152
|
2424 |
+
msgid "Purchase the User Import Add-On"
|
2425 |
+
msgstr ""
|
2426 |
+
|
2427 |
+
#: views/admin/import/index.php:315
|
2428 |
+
#: views/admin/import/options/_settings_template.php:157
|
2429 |
+
msgid "The WooCommerce Add-On is Required to Import Products"
|
2430 |
+
msgstr ""
|
2431 |
+
|
2432 |
+
#: views/admin/import/index.php:316 views/admin/import/index.php:326
|
2433 |
+
#: views/admin/import/index.php:334
|
2434 |
+
#: views/admin/import/options/_settings_template.php:158
|
2435 |
+
#: views/admin/import/options/_settings_template.php:164
|
2436 |
+
#: views/admin/import/options/_settings_template.php:168
|
2437 |
+
msgid "Purchase the WooCommerce Add-On Pro"
|
2438 |
+
msgstr ""
|
2439 |
+
|
2440 |
+
#: views/admin/import/index.php:322
|
2441 |
+
msgid "The Pro version of the WooCommerce Add-On is required to Import Orders, but you have the free version installed"
|
2442 |
+
msgstr ""
|
2443 |
+
|
2444 |
+
#: views/admin/import/index.php:324
|
2445 |
+
#: views/admin/import/options/_settings_template.php:163
|
2446 |
+
msgid "The WooCommerce Add-On Pro is Required to Import Orders"
|
2447 |
+
msgstr ""
|
2448 |
+
|
2449 |
+
#: views/admin/import/index.php:330
|
2450 |
+
msgid "The Pro version of the WooCommerce Add-On is required to Import Coupons, but you have the free version installed"
|
2451 |
+
msgstr ""
|
2452 |
+
|
2453 |
+
#: views/admin/import/index.php:332
|
2454 |
+
#: views/admin/import/options/_settings_template.php:167
|
2455 |
+
msgid "The WooCommerce Add-On Pro is Required to Import Coupons"
|
2456 |
+
msgstr ""
|
2457 |
+
|
2458 |
+
#: views/admin/import/index.php:340
|
2459 |
+
msgid "In Step 4, you will map the records in your file to the existing items on your site and specify which data points will be updated and which will be left alone."
|
2460 |
+
msgstr "In Schritt 4 können Sie die Datensätze Ihrer Datei mit den existierenden Artikeln Ihrer Seite zusammenführen und bestimmen welche Daten aktualisiert werden und welche nicht."
|
2461 |
+
|
2462 |
+
#: views/admin/import/index.php:341
|
2463 |
+
msgid "The Existing Items option is commonly used to update existing products with new stock quantities while leaving all their other data alone, update properties on your site with new pricing, etc."
|
2464 |
+
msgstr "Die bestehende Artikel Option wird normalerweise genutzt um bestehende Produkte mit neuen Zahlen für die Lagerhaltung zu aktualisieren, während die anderen Daten unberührt bleiben. Aktualisieren Sie andere Eigenschaften wie neue Preise, etc."
|
2465 |
+
|
2466 |
+
#: views/admin/import/index.php:352
|
2467 |
+
#: views/admin/import/options/_import_file.php:36
|
2468 |
+
msgid "File upload rejected by server"
|
2469 |
+
msgstr "Datei-Upload wurde vom Server zurückgewiesen"
|
2470 |
+
|
2471 |
+
#: views/admin/import/index.php:353
|
2472 |
+
#: views/admin/import/options/_import_file.php:37
|
2473 |
+
msgid "Contact your host and have them check your server's error log."
|
2474 |
+
msgstr "Nehmen Sie Kontakt mit Ihrem Hoster auf und lassen Sie diese die Fehlerlogs des Servers prüfen."
|
2475 |
+
|
2476 |
+
#: views/admin/import/index.php:367
|
2477 |
+
msgid "Please verify that the file you using is a valid %s file."
|
2478 |
+
msgstr "Bitte stellen Sie sicher, dass die verwendete Datei %s gültig ist."
|
2479 |
+
|
2480 |
+
#: views/admin/import/index.php:382
|
2481 |
+
msgid "Skip to Step 4"
|
2482 |
+
msgstr "Überspringe zu Schritt 4"
|
2483 |
+
|
2484 |
+
#: views/admin/import/index.php:383
|
2485 |
+
msgid "Continue to Step 2"
|
2486 |
+
msgstr "Weiter zu Schritt 2"
|
2487 |
+
|
2488 |
+
#: views/admin/import/options.php:119
|
2489 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:22
|
2490 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:89
|
2491 |
+
#: views/admin/import/options/_reimport_template.php:14
|
2492 |
+
#: views/admin/import/options/_reimport_template.php:81
|
2493 |
+
msgid "Record Matching"
|
2494 |
+
msgstr "Datensatz Abgleich"
|
2495 |
+
|
2496 |
+
#: views/admin/import/options.php:122
|
2497 |
+
msgid "Record Matching is how WP All Import matches records in your file with posts that already exist WordPress."
|
2498 |
+
msgstr "Datensatz Abgleich ist der Vorgang von WP All Import in dem Datensätze in Ihrer Datei mit bereits bestehenden Posts in WordPress abgeglichen werden."
|
2499 |
+
|
2500 |
+
#: views/admin/import/options.php:126
|
2501 |
+
msgid "Record Matching is most commonly used to tell WP All Import how to match up records in your file with posts WP All Import has already created on your site, so that if your file is updated with new data, WP All Import can update your posts accordingly."
|
2502 |
+
msgstr "Datensatz Abgleich wird meistens genutzt um WP All Import mitzuteilen wie die Datensätze in Ihrer Datei mit den Posts abgeglichen werden sollen, die WP All Import bereits auf Ihrer Seite erstellt hat. So kann WP All Import Änderungen in Ihrer Datei direkt in die Posts übertragen."
|
2503 |
+
|
2504 |
+
#: views/admin/import/options.php:131
|
2505 |
+
msgid "AUTOMATIC RECORD MATCHING"
|
2506 |
+
msgstr "AUTOMATISCHER DATENSATZ ABGLEICH"
|
2507 |
+
|
2508 |
+
#: views/admin/import/options.php:134
|
2509 |
+
msgid "Automatic Record Matching allows WP All Import to update records that were imported or updated during the last run of this same import."
|
2510 |
+
msgstr "Automatischer Datensatz Abgleich erlaubt WP All Import die Datensätze zu aktualisieren die während dem letzten Import importiert wurden."
|
2511 |
+
|
2512 |
+
#: views/admin/import/options.php:138
|
2513 |
+
msgid "Your unique key must be UNIQUE for each record in your feed. Make sure you get it right - you can't change it later. You'll have to re-create your import."
|
2514 |
+
msgstr "Ihr einzigartiger Schlüssel muss EINZIGARTIG in jedem Datensatz Ihres Feeds sein. Stellen Sie sicher dass Sie es korrekt haben - Sie können es später ändern. Sie werden Ihren Import neu erstellen müssen."
|
2515 |
+
|
2516 |
+
#: views/admin/import/options.php:143
|
2517 |
+
msgid "MANUAL RECORD MATCHING"
|
2518 |
+
msgstr "MANUELLER DATENSATZ ABGLEICH"
|
2519 |
+
|
2520 |
+
#: views/admin/import/options.php:146
|
2521 |
+
msgid "Manual record matching allows WP All Import to update any records, even records that were not imported with WP All Import, or are part of a different import."
|
2522 |
+
msgstr "Manueller Datensatz Abgleich erlaubt WP All Import alle Datensätze zu aktualisieren, sogar Datensätze die nicht von WP All Import importiert wurden, oder die Teil eines anderen Imports sind."
|
2523 |
+
|
2524 |
+
#: views/admin/import/options/_buttons_template.php:2
|
2525 |
+
msgid "To run the import, click Run Import on the Manage Imports page."
|
2526 |
+
msgstr "Um den Import zu starten, klicken Sie auf Starte Import auf der Imports verwalten Seite."
|
2527 |
+
|
2528 |
+
#: views/admin/import/options/_buttons_template.php:11
|
2529 |
+
msgid "Back to Step 3"
|
2530 |
+
msgstr "Zurück zu Schritt 3"
|
2531 |
+
|
2532 |
+
#: views/admin/import/options/_buttons_template.php:15
|
2533 |
+
msgid "Save Only"
|
2534 |
+
msgstr "Nur Speichern"
|
2535 |
+
|
2536 |
+
#: views/admin/import/options/_buttons_template.php:18
|
2537 |
+
msgid "Continue"
|
2538 |
+
msgstr "Weiter"
|
2539 |
+
|
2540 |
+
#: views/admin/import/options/_buttons_template.php:21
|
2541 |
+
#: views/admin/import/template.php:227
|
2542 |
+
msgid "Back to Manage Imports"
|
2543 |
+
msgstr "Zurück zur Import Verwaltung"
|
2544 |
+
|
2545 |
+
#: views/admin/import/options/_buttons_template.php:22
|
2546 |
+
msgid "Save Import Configuration"
|
2547 |
+
msgstr "Speichere Import Einstellungen"
|
2548 |
+
|
2549 |
+
#: views/admin/import/options/_import_file.php:62
|
2550 |
+
msgid "Import File"
|
2551 |
+
msgstr "Importiere Datei"
|
2552 |
+
|
2553 |
+
#: views/admin/import/options/_import_file.php:71
|
2554 |
+
msgid "Specify the location of the file to use for future runs of this import."
|
2555 |
+
msgstr "Bestimmen Sie den Ort der Datei für zukünftige Läufe dieses Imports."
|
2556 |
+
|
2557 |
+
#: views/admin/import/options/_import_file.php:94
|
2558 |
+
msgid "<span>Upload Complete</span> - "
|
2559 |
+
msgstr ""
|
2560 |
+
|
2561 |
+
#: views/admin/import/options/_import_file.php:106
|
2562 |
+
msgid "Upload"
|
2563 |
+
msgstr "Hochladen"
|
2564 |
+
|
2565 |
+
#: views/admin/import/options/_reimport_options.php:2
|
2566 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:11
|
2567 |
+
msgid "When WP All Import finds new or changed data..."
|
2568 |
+
msgstr "Wenn WP All Import neue oder geänderte Daten findet..."
|
2569 |
+
|
2570 |
+
#: views/admin/import/options/_reimport_options.php:4
|
2571 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:13
|
2572 |
+
msgid "If this import is run again and WP All Import finds new or changed data..."
|
2573 |
+
msgstr "Wenn dieser Import erneut durchgeführt wird und WP All Imports neue oder veränderte Daten findet…"
|
2574 |
+
|
2575 |
+
#: views/admin/import/options/_reimport_options.php:9
|
2576 |
+
msgid "Create new posts from records newly present in your file"
|
2577 |
+
msgstr "Erstelle neue Posts von Datensätzen die neu sind in Ihrer Datei"
|
2578 |
+
|
2579 |
+
#: views/admin/import/options/_reimport_options.php:11
|
2580 |
+
msgid "New posts will only be created when ID column is present and value in ID column is unique."
|
2581 |
+
msgstr "Neue Posts werden nur erstellt wenn die spalte ID vorhanden ist und der Wert in der Spalte ID einzigartig ist."
|
2582 |
+
|
2583 |
+
#: views/admin/import/options/_reimport_options.php:18
|
2584 |
+
msgid "Delete posts that are no longer present in your file"
|
2585 |
+
msgstr "Lösche Posts die nicht länger vorhanden sind in der Datei"
|
2586 |
+
|
2587 |
+
#: views/admin/import/options/_reimport_options.php:20
|
2588 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:29
|
2589 |
+
msgid "Records removed from the import file can only be deleted when importing into New Items. This feature cannot be enabled when importing into Existing Items."
|
2590 |
+
msgstr "Einträge, welche aus der Import Datei entfernt wurden können nur gelsöcht werden, wenn in Neue Einträge importiert wird. Dies Feature kann nicht aktiviert werden, wenn in existierende Einträge importiert wird."
|
2591 |
+
|
2592 |
+
#: views/admin/import/options/_reimport_options.php:27
|
2593 |
+
msgid "Do not remove attachments"
|
2594 |
+
msgstr "Anhänge nicht entfernen"
|
2595 |
+
|
2596 |
+
#: views/admin/import/options/_reimport_options.php:32
|
2597 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:36
|
2598 |
+
msgid "Do not remove images"
|
2599 |
+
msgstr "Bilder nicht entfernen"
|
2600 |
+
|
2601 |
+
#: views/admin/import/options/_reimport_options.php:37
|
2602 |
+
msgid "Instead of deletion, set Custom Field"
|
2603 |
+
msgstr "Anstatt zu löschen, setze individuelles Feld"
|
2604 |
+
|
2605 |
+
#: views/admin/import/options/_reimport_options.php:40
|
2606 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:44
|
2607 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:73
|
2608 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:106
|
2609 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:123
|
2610 |
+
#: views/admin/import/options/_reimport_template.php:105
|
2611 |
+
#: views/admin/import/template/_custom_fields_template.php:51
|
2612 |
+
#: views/admin/import/template/_term_meta_template.php:51
|
2613 |
+
msgid "Name"
|
2614 |
+
msgstr "Name"
|
2615 |
+
|
2616 |
+
#: views/admin/import/options/_reimport_options.php:50
|
2617 |
+
msgid "Instead of deletion, change post status to Draft"
|
2618 |
+
msgstr "Anstatt zu löschen, ändere den Status des Posts auf Entwurf"
|
2619 |
+
|
2620 |
+
#: views/admin/import/options/_reimport_options.php:57
|
2621 |
+
msgid "Update existing posts with changed data in your file"
|
2622 |
+
msgstr "Aktualisiere existierende Posts mit geänderten Daten in Ihrer Datei"
|
2623 |
+
|
2624 |
+
#: views/admin/import/options/_reimport_options.php:59
|
2625 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:58
|
2626 |
+
msgid "These options will only be used if you run this import again later. All data is imported the first time you run an import."
|
2627 |
+
msgstr "Diese Optionen werden verwendet, wenn Sie diesen Import später wieder ausführen. Alle Daten werden mit Ihrem ersten Import importiert."
|
2628 |
+
|
2629 |
+
#: views/admin/import/options/_reimport_options.php:63
|
2630 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:62
|
2631 |
+
msgid "Update all data"
|
2632 |
+
msgstr "Aktualisiere alle Daten"
|
2633 |
+
|
2634 |
+
#: views/admin/import/options/_reimport_options.php:66
|
2635 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:65
|
2636 |
+
msgid "Choose which data to update"
|
2637 |
+
msgstr "Wählen Sie welch Daten aktualisiert werden sollen"
|
2638 |
+
|
2639 |
+
#: views/admin/import/options/_reimport_options.php:69
|
2640 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:68
|
2641 |
+
msgid "Unselect All"
|
2642 |
+
msgstr ""
|
2643 |
+
|
2644 |
+
#: views/admin/import/options/_reimport_options.php:69
|
2645 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:68
|
2646 |
+
msgid "Select All"
|
2647 |
+
msgstr ""
|
2648 |
+
|
2649 |
+
#: views/admin/import/options/_reimport_options.php:74
|
2650 |
+
msgid "Post status"
|
2651 |
+
msgstr "Post Status"
|
2652 |
+
|
2653 |
+
#: views/admin/import/options/_reimport_options.php:75
|
2654 |
+
msgid "Hint: uncheck this box to keep trashed posts in the trash."
|
2655 |
+
msgstr "Hinweis: Deaktivieren Sie dieses Kästchen, um Posts im Papierkorb im Papierkorb zu lassen."
|
2656 |
+
|
2657 |
+
#: views/admin/import/options/_reimport_options.php:80
|
2658 |
+
#: views/admin/import/options/_reimport_template.php:98
|
2659 |
+
msgid "Title"
|
2660 |
+
msgstr "Titel"
|
2661 |
+
|
2662 |
+
#: views/admin/import/options/_reimport_options.php:85
|
2663 |
+
msgid "Author"
|
2664 |
+
msgstr "Autor "
|
2665 |
+
|
2666 |
+
#: views/admin/import/options/_reimport_options.php:90
|
2667 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:78
|
2668 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:113
|
2669 |
+
#: views/admin/import/template/_other_template.php:290
|
2670 |
+
msgid "Slug"
|
2671 |
+
msgstr "Slug"
|
2672 |
+
|
2673 |
+
#: views/admin/import/options/_reimport_options.php:95
|
2674 |
+
#: views/admin/import/options/_reimport_template.php:100
|
2675 |
+
msgid "Content"
|
2676 |
+
msgstr "Inhalt"
|
2677 |
+
|
2678 |
+
#: views/admin/import/options/_reimport_options.php:100
|
2679 |
+
msgid "Excerpt/Short Description"
|
2680 |
+
msgstr "Auszug / Kurzbeschreibung"
|
2681 |
+
|
2682 |
+
#: views/admin/import/options/_reimport_options.php:105
|
2683 |
+
msgid "Dates"
|
2684 |
+
msgstr "Datum"
|
2685 |
+
|
2686 |
+
#: views/admin/import/options/_reimport_options.php:110
|
2687 |
+
msgid "Menu order"
|
2688 |
+
msgstr "Menü Reihenfolge"
|
2689 |
+
|
2690 |
+
#: views/admin/import/options/_reimport_options.php:115
|
2691 |
+
msgid "Parent post"
|
2692 |
+
msgstr "Eltern post"
|
2693 |
+
|
2694 |
+
#: views/admin/import/options/_reimport_options.php:120
|
2695 |
+
msgid "Post type"
|
2696 |
+
msgstr ""
|
2697 |
+
|
2698 |
+
#: views/admin/import/options/_reimport_options.php:125
|
2699 |
+
msgid "Comment status"
|
2700 |
+
msgstr "Kommentar Status"
|
2701 |
+
|
2702 |
+
#: views/admin/import/options/_reimport_options.php:130
|
2703 |
+
msgid "Attachments"
|
2704 |
+
msgstr "Anhänge"
|
2705 |
+
|
2706 |
+
#: views/admin/import/options/_reimport_options.php:144
|
2707 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:107
|
2708 |
+
msgid "This will keep the featured image if it exists, so you could modify the post image manually, and then do a reimport, and it would not overwrite the manually modified post image."
|
2709 |
+
msgstr "Dies wird die featured Bilder behalten wenn diese existieren, so können Sie die Bilder der Posts manuell ändern und dann einen Reimport machen. Dies wird die manuell geänderten Bilder nicht überschreiben."
|
2710 |
+
|
2711 |
+
#: views/admin/import/options/_reimport_options.php:148
|
2712 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:111
|
2713 |
+
msgid "Update all images"
|
2714 |
+
msgstr "Aktualisiere alle Bilder "
|
2715 |
+
|
2716 |
+
#: views/admin/import/options/_reimport_options.php:154
|
2717 |
+
msgid "Don't touch existing images, append new images"
|
2718 |
+
msgstr "Fasse existierende Bilder nicht an, hänge neue Bilder an"
|
2719 |
+
|
2720 |
+
#: views/admin/import/options/_reimport_options.php:163
|
2721 |
+
#: views/admin/import/template/_custom_fields_template.php:17
|
2722 |
+
msgid "Custom Fields"
|
2723 |
+
msgstr "Individuelle Felder"
|
2724 |
+
|
2725 |
+
#: views/admin/import/options/_reimport_options.php:164
|
2726 |
+
msgid "If Keep Custom Fields box is checked, it will keep all Custom Fields, and add any new Custom Fields specified in Custom Fields section, as long as they do not overwrite existing fields. If 'Only keep this Custom Fields' is specified, it will only keep the specified fields."
|
2727 |
+
msgstr "Wenn die Box: Behalte individuelle Felder markiert ist, wird es alle individuellen Felder behalten und neue hinzufügen die im Abschnitt individuelle Felder bestimmt wurden, solange sie bestehende Felder nicht überschreiben. Wenn 'Nur dieses individuelle Feld behalten' markiert ist, wird es nur die bestimmten Felder behalten."
|
2728 |
+
|
2729 |
+
#: views/admin/import/options/_reimport_options.php:168
|
2730 |
+
msgid "Update all Custom Fields"
|
2731 |
+
msgstr "Aktualisiere alle individuellen Felder"
|
2732 |
+
|
2733 |
+
#: views/admin/import/options/_reimport_options.php:172
|
2734 |
+
msgid "Update only these Custom Fields, leave the rest alone"
|
2735 |
+
msgstr "Aktualisiere nur diese individuellen Felder, lasse den Rest in Ruhe"
|
2736 |
+
|
2737 |
+
#: views/admin/import/options/_reimport_options.php:180
|
2738 |
+
msgid "Leave these fields alone, update all other Custom Fields"
|
2739 |
+
msgstr "Lasse den Rest in Ruhe, aktualisiere alle anderen individuellen Felder"
|
2740 |
+
|
2741 |
+
#: views/admin/import/options/_reimport_options.php:192
|
2742 |
+
msgid "Taxonomies (incl. Categories and Tags)"
|
2743 |
+
msgstr "Taxonomien ( incl. Kategorien und Tags)"
|
2744 |
+
|
2745 |
+
#: views/admin/import/options/_reimport_options.php:206
|
2746 |
+
msgid "Leave these taxonomies alone, update all others"
|
2747 |
+
msgstr "Lasse die Taxonomien in Ruhe, aktualisiere alle anderen"
|
2748 |
+
|
2749 |
+
#: views/admin/import/options/_reimport_options.php:214
|
2750 |
+
msgid "Update only these taxonomies, leave the rest alone"
|
2751 |
+
msgstr "Aktualisiere nur diese Taxonomien, lasse den Rest in Ruhe"
|
2752 |
+
|
2753 |
+
#: views/admin/import/options/_reimport_options.php:222
|
2754 |
+
msgid "Remove existing taxonomies, add new taxonomies"
|
2755 |
+
msgstr "Entferne bestehende Taxonomien, füge neue hinzu"
|
2756 |
+
|
2757 |
+
#: views/admin/import/options/_reimport_options.php:226
|
2758 |
+
msgid "Only add new"
|
2759 |
+
msgstr "Nur neue hinzufügen"
|
2760 |
+
|
2761 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:18
|
2762 |
+
msgid "Create new %s from records newly present in your file"
|
2763 |
+
msgstr ""
|
2764 |
+
|
2765 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:20
|
2766 |
+
msgid "New %s will only be created when ID column is present and value in ID column is unique."
|
2767 |
+
msgstr ""
|
2768 |
+
|
2769 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:27
|
2770 |
+
msgid "Delete %s that are no longer present in your file"
|
2771 |
+
msgstr ""
|
2772 |
+
|
2773 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:41
|
2774 |
+
msgid "Instead of deletion, set Term Meta"
|
2775 |
+
msgstr ""
|
2776 |
+
|
2777 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:56
|
2778 |
+
msgid "Update existing %s with changed data in your file"
|
2779 |
+
msgstr ""
|
2780 |
+
|
2781 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:83
|
2782 |
+
msgid "Description"
|
2783 |
+
msgstr ""
|
2784 |
+
|
2785 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:93
|
2786 |
+
#: views/admin/import/template/_term_other_template.php:23
|
2787 |
+
msgid "Parent term"
|
2788 |
+
msgstr ""
|
2789 |
+
|
2790 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:119
|
2791 |
+
#: views/admin/import/template/_term_meta_template.php:17
|
2792 |
+
msgid "Term Meta"
|
2793 |
+
msgstr ""
|
2794 |
+
|
2795 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:120
|
2796 |
+
msgid "If Keep Term Meta box is checked, it will keep all Term Meta, and add any new Term Meta specified in Term Meta section, as long as they do not overwrite existing fields. If 'Only keep this Term Meta' is specified, it will only keep the specified fields."
|
2797 |
+
msgstr ""
|
2798 |
+
|
2799 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:124
|
2800 |
+
msgid "Update all Term Meta"
|
2801 |
+
msgstr ""
|
2802 |
+
|
2803 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:128
|
2804 |
+
msgid "Update only these Term Meta, leave the rest alone"
|
2805 |
+
msgstr ""
|
2806 |
+
|
2807 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:136
|
2808 |
+
msgid "Leave these fields alone, update all other Term Meta"
|
2809 |
+
msgstr ""
|
2810 |
+
|
2811 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:30
|
2812 |
+
#: views/admin/import/options/_reimport_template.php:22
|
2813 |
+
msgid "Choose how exported data will be re-imported."
|
2814 |
+
msgstr "Wähle wie exportierte Daten erneut importiert werden."
|
2815 |
+
|
2816 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:36
|
2817 |
+
#: views/admin/import/options/_reimport_template.php:28
|
2818 |
+
msgid "WP All Import will create new %s for each unique record in your file."
|
2819 |
+
msgstr "WP All Import wird neue %s erstellen, für jeden einzigartigen Datensatz in Ihrer Datei."
|
2820 |
+
|
2821 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:49
|
2822 |
+
#: views/admin/import/options/_reimport_template.php:41
|
2823 |
+
msgid "WP All Import will associate records in your file with %s it has already created from previous runs of this import based on the Unique Identifier."
|
2824 |
+
msgstr "WP All Import verknüpft die Datensätze in Ihrer Datei mit %s die es bereits bei früheren Läufen erstellt hat, basierend auf der einzigartigen ID."
|
2825 |
+
|
2826 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:52
|
2827 |
+
#: views/admin/import/options/_reimport_template.php:44
|
2828 |
+
msgid "Unique Identifier"
|
2829 |
+
msgstr "Einzigartige ID"
|
2830 |
+
|
2831 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:58
|
2832 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:69
|
2833 |
+
#: views/admin/import/options/_reimport_template.php:50
|
2834 |
+
#: views/admin/import/options/_reimport_template.php:61
|
2835 |
+
msgid "Auto-detect"
|
2836 |
+
msgstr "Automatische Erkennung"
|
2837 |
+
|
2838 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:61
|
2839 |
+
#: views/admin/import/options/_reimport_template.php:53
|
2840 |
+
#: views/admin/manage/index.php:327
|
2841 |
+
msgid "Edit"
|
2842 |
+
msgstr "Ändern"
|
2843 |
+
|
2844 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:62
|
2845 |
+
#: views/admin/import/options/_reimport_template.php:54
|
2846 |
+
msgid "Warning: Are you sure you want to edit the Unique Identifier?"
|
2847 |
+
msgstr "Warnung: Sind Sie sicher dass Sie die einzigartige ID ändern wollen?"
|
2848 |
+
|
2849 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:63
|
2850 |
+
#: views/admin/import/options/_reimport_template.php:55
|
2851 |
+
msgid "It is recommended you delete all %s associated with this import before editing the unique identifier."
|
2852 |
+
msgstr "Es wird empfohlen dass Sie alle %s löschen, die mit diesem Import zusammenhängen. Bevor Sie die einzigartige ID Löschen."
|
2853 |
+
|
2854 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:64
|
2855 |
+
#: views/admin/import/options/_reimport_template.php:56
|
2856 |
+
msgid "Editing the unique identifier will dissociate all existing %s linked to this import. Future runs of the import will result in duplicates, as WP All Import will no longer be able to update these %s."
|
2857 |
+
msgstr "Ändern der einzigartigen ID wird alle existierenden %s zu diesem Import trennen. Zukünftige Läufe des Importes wird in Duplikaten enden, da es WP All Import nicht möglich sein wird diese zu aktualisieren: %s."
|
2858 |
+
|
2859 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:65
|
2860 |
+
#: views/admin/import/options/_reimport_template.php:57
|
2861 |
+
msgid "You really should just re-create your import, and pick the right unique identifier to start with."
|
2862 |
+
msgstr "Sie sollten wirklich Ihren Import neu erstellen und die richtige einzigartige ID wählen."
|
2863 |
+
|
2864 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:75
|
2865 |
+
#: views/admin/import/options/_reimport_template.php:67
|
2866 |
+
msgid "Drag an element, or combo of elements, to the box above. The Unique Identifier should be unique for each record in your file, and should stay the same even if your file is updated. Things like product IDs, titles, and SKUs are good Unique Identifiers because they probably won't change. Don't use a description or price, since that might be changed."
|
2867 |
+
msgstr "Ziehen Sie ein Element, oder eine Kombination von Element in die Box oben. Die einzigartige ID sollte einzigartig sein für jeden Datensatz in Ihrer Datei und sollte sich nicht verändern, auch nicht wenn die Datei aktualisiert wird. Dinge wie Produkt ID, Titel und SKU sind gute einzigartige IDs, da diese sich gewöhnlich nicht ändern. Nutzen Sie keine Beschreibung oder Preis, da sich diese häufig ändern."
|
2868 |
+
|
2869 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:76
|
2870 |
+
#: views/admin/import/options/_reimport_template.php:68
|
2871 |
+
msgid "If you run this import again with an updated file, the Unique Identifier allows WP All Import to correctly link the records in your updated file with the %s it will create right now. If multiple records in this file have the same Unique Identifier, only the first will be created. The others will be detected as duplicates."
|
2872 |
+
msgstr "Wenn Sie diesen Import mit einer aktualisierten Datei erneut starten, erlaubt die einzigartige ID dem Importer die Datensätze mit der aktualisierten Datei %s zu verbinden. Wenn mehrere Datensätze in dieser Datei die selbe einzigartige ID haben, wird nur der erste erstellt, die anderen werden als Duplikate erkannt."
|
2873 |
+
|
2874 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:91
|
2875 |
+
#: views/admin/import/options/_reimport_template.php:83
|
2876 |
+
msgid "WP All Import will merge data into existing %s."
|
2877 |
+
msgstr "WP All Import wird die Daten zusammenfügen mit den existierenden %s."
|
2878 |
+
|
2879 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:101
|
2880 |
+
msgid "Records in your file will be matched with %s on your site based on..."
|
2881 |
+
msgstr ""
|
2882 |
+
|
2883 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:120
|
2884 |
+
#: views/admin/import/options/_reimport_template.php:103
|
2885 |
+
msgid "Custom field"
|
2886 |
+
msgstr "Individuelles Feld"
|
2887 |
+
|
2888 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:130
|
2889 |
+
msgid "Term ID"
|
2890 |
+
msgstr ""
|
2891 |
+
|
2892 |
+
#: views/admin/import/options/_reimport_template.php:93
|
2893 |
+
msgid "Records in your file will be matched with %ss on your site based on..."
|
2894 |
+
msgstr "Datensätze in Ihrer Datei werden angepasst mit %ss auf Ihrer Seite basierend auf..."
|
2895 |
+
|
2896 |
+
#: views/admin/import/options/_reimport_template.php:113
|
2897 |
+
msgid "Post ID"
|
2898 |
+
msgstr "Beitrags-ID"
|
2899 |
+
|
2900 |
+
#: views/admin/import/options/_settings_template.php:4
|
2901 |
+
msgid "Configure Advanced Settings"
|
2902 |
+
msgstr "Bearbeite erweiterte Einstellungen"
|
2903 |
+
|
2904 |
+
#: views/admin/import/options/_settings_template.php:11
|
2905 |
+
msgid "Import Speed Optimization"
|
2906 |
+
msgstr "Importiere Geschwindigkeits Optimierung "
|
2907 |
+
|
2908 |
+
#: views/admin/import/options/_settings_template.php:15
|
2909 |
+
msgid "High Speed Small File Processing"
|
2910 |
+
msgstr "High-Speed Bearbeitung kleiner Dateien"
|
2911 |
+
|
2912 |
+
#: views/admin/import/options/_settings_template.php:15
|
2913 |
+
msgid "If the import takes longer than your server's timeout settings (max_execution_time, mod_fcgid read data timeout, etc.) it will fail."
|
2914 |
+
msgstr "Wenn der Import länger dauert als Ihr Server timeout ist, (max_execution_time, mod_fcgid read data timeout, etc.) wird er fehlschlagen."
|
2915 |
+
|
2916 |
+
#: views/admin/import/options/_settings_template.php:19
|
2917 |
+
msgid "Iterative, Piece-by-Piece Processing"
|
2918 |
+
msgstr "Wiederholende, Stück für Stück Bearbeitung"
|
2919 |
+
|
2920 |
+
#: views/admin/import/options/_settings_template.php:23
|
2921 |
+
msgid "In each iteration, process"
|
2922 |
+
msgstr "In jedem Durchlauf, bearbeiten"
|
2923 |
+
|
2924 |
+
#: views/admin/import/options/_settings_template.php:23
|
2925 |
+
#: views/admin/import/process.php:31
|
2926 |
+
msgid "records"
|
2927 |
+
msgstr "Datensätze"
|
2928 |
+
|
2929 |
+
#: views/admin/import/options/_settings_template.php:24
|
2930 |
+
msgid "WP All Import must be able to process this many records in less than your server's timeout settings. If your import fails before completion, to troubleshoot you should lower this number. If you are importing images, especially high resolution images, high numbers here are probably a bad idea, since downloading the images can take lots of time - for example, 20 posts with 5 images each = 100 images. At 500Kb per image that's 50Mb that needs to be downloaded. Can your server download that before timing out? If not, the import will fail."
|
2931 |
+
msgstr "WP All Import muss ermöglicht werden die Datensätze verarbeiten zu können innerhalb Ihres Server timeouts. Wenn Ihr Import fehlschlägt bevor er fertig ist, sollten Sie diese Zahl verringern. Wenn Sie Bilder importieren, speziell bei Hochauflösenden, ist eine hohe Anzahl eine schlechte Idee. Da der Download viel Zeit in Anspruch nehmen kann - Beispielsweise 20 Posts mit je 5 Bildern = 100 Bilder. Bei 500kb pro Bild sind das 50Mb die heruntergeladen werden müssen. Kann Ihr Server das herunterladen vor dem Timeout? Wenn nicht, wird der Import fehlschlagen."
|
2932 |
+
|
2933 |
+
#: views/admin/import/options/_settings_template.php:29
|
2934 |
+
msgid "Split file up into <strong>"
|
2935 |
+
msgstr ""
|
2936 |
+
|
2937 |
+
#: views/admin/import/options/_settings_template.php:30
|
2938 |
+
msgid "This option will decrease the amount of slowdown experienced at the end of large imports. The slowdown is partially caused by the need for WP All Import to read deeper and deeper into the file on each successive iteration. Splitting the file into pieces means that, for example, instead of having to read 19000 records into a 20000 record file when importing the last 1000 records, WP All Import will just split it into 20 chunks, and then read the last chunk from the beginning."
|
2939 |
+
msgstr "Diese Option verringert die Anzahl der Verlangsamungen am Ende von grossen Importen. Die Verlangsamung wird teilweise dadurch ausgelöst, dass WP All Import immer tiefer und tiefer in der Datei liest, sukzessiv mit jedem Durchlauf. Eine Aufteilung der Datei bedeutet beispielsweise, dass anstatt 19'000 Datensätze in 20'000 Datensätzen zu lesen, wenn die letzten 1000 Datensätze importiert werden, eine Aufteilung in 20 Datenblöcke erfolgt und dann der letzte Datenblock von Beginn gelesen wird."
|
2940 |
+
|
2941 |
+
#: views/admin/import/options/_settings_template.php:37
|
2942 |
+
msgid "Increase speed by disabling do_action calls in wp_insert_post during import."
|
2943 |
+
msgstr "Steigere die Geschwindigkeit durch Deaktivierung von do_action Aufrufen in wp_insert_post während dem Import."
|
2944 |
+
|
2945 |
+
#: views/admin/import/options/_settings_template.php:38
|
2946 |
+
msgid "This option is for advanced users with knowledge of WordPress development. Your theme or plugins may require these calls when posts are created. Next action will be disabled: 'transition_post_status', 'save_post', 'pre_post_update', 'add_attachment', 'edit_attachment', 'edit_post', 'post_updated', 'wp_insert_post'. Verify your created posts work properly if you check this box."
|
2947 |
+
msgstr "Diese Option ist für fortgeschrittene Benutzer mit Kenntnissen in der WordPress Entwicklung. Ihr Theme oder Plugin könnte diese Aufrufe benötigen wenn Posts erstellt werden. Die nächste Aktion wird deaktiviert: 'transition_post_status', 'save_post', 'pre_post_update', 'add_attachment', 'edit_attachment', 'edit_post', 'post_updated', 'wp_insert_post'. Verifizieren Sie Ihre Posts und arbeiten Sie sauber wenn Sie dieses Häkchen setzen."
|
2948 |
+
|
2949 |
+
#: views/admin/import/options/_settings_template.php:43
|
2950 |
+
msgid "Taxonomy Type"
|
2951 |
+
msgstr ""
|
2952 |
+
|
2953 |
+
#: views/admin/import/options/_settings_template.php:44
|
2954 |
+
msgid "Editing this will change the taxonomy type of the taxonomies processed by this import. Re-run the import for the changes to take effect."
|
2955 |
+
msgstr ""
|
2956 |
+
|
2957 |
+
#: views/admin/import/options/_settings_template.php:46
|
2958 |
+
msgid "Post Type"
|
2959 |
+
msgstr "Post Typ:"
|
2960 |
+
|
2961 |
+
#: views/admin/import/options/_settings_template.php:47
|
2962 |
+
msgid "Editing this will change the post type of the posts processed by this import. Re-run the import for the changes to take effect."
|
2963 |
+
msgstr "Die Bearbeitung wird den post typ von den Posts dieses Imports ändern. Starten Sie den Import erneut um die Änderungen zu erwirken."
|
2964 |
+
|
2965 |
+
#: views/admin/import/options/_settings_template.php:175
|
2966 |
+
msgid "Editing this can break your entire import. You will have to re-create it from scratch."
|
2967 |
+
msgstr "Diese Bearbeitung kann Ihren gesamten Import unterbrechen. Sie werden ihn von Grund auf neu erstellen müssen."
|
2968 |
+
|
2969 |
+
#: views/admin/import/options/_settings_template.php:180
|
2970 |
+
msgid "Downloads"
|
2971 |
+
msgstr "Downloads"
|
2972 |
+
|
2973 |
+
#: views/admin/import/options/_settings_template.php:183
|
2974 |
+
msgid "Import Template"
|
2975 |
+
msgstr "Vorlage importieren"
|
2976 |
+
|
2977 |
+
#: views/admin/import/options/_settings_template.php:184
|
2978 |
+
msgid "Import Bundle"
|
2979 |
+
msgstr "Bundle importieren"
|
2980 |
+
|
2981 |
+
#: views/admin/import/options/_settings_template.php:187
|
2982 |
+
msgid "Other"
|
2983 |
+
msgstr "Sonstige"
|
2984 |
+
|
2985 |
+
#: views/admin/import/options/_settings_template.php:191
|
2986 |
+
msgid "Import only specified records"
|
2987 |
+
msgstr "Nur angegebene Datensätze importieren"
|
2988 |
+
|
2989 |
+
#: views/admin/import/options/_settings_template.php:191
|
2990 |
+
msgid "Enter records or record ranges separated by commas, e.g. <b>1,5,7-10</b> would import the first, the fifth, and the seventh to tenth."
|
2991 |
+
msgstr "Geben Sie Datensätze oder Datensatz Bereiche durch Kommas getrennt an, z.B. <b>1,5,7-10</b> wäre der erste, der fünfte und der siebte bis zehnte Import."
|
2992 |
+
|
2993 |
+
#: views/admin/import/options/_settings_template.php:202
|
2994 |
+
msgid "Delete source XML file after importing"
|
2995 |
+
msgstr "XML-Quelldatei nach dem Importieren löschen"
|
2996 |
+
|
2997 |
+
#: views/admin/import/options/_settings_template.php:202
|
2998 |
+
msgid "This setting takes effect only when script has access rights to perform the action, e.g. file is not deleted when pulled via HTTP or delete permission is not granted to the user that script is executed under."
|
2999 |
+
msgstr "Diese Einstellung nimmt nur Einfluss, wenn das Skript Zugriffsrechte auf die Aktion hat. Bsp: Die Datei ist nicht gelöscht, wenn es mittelt HTTP gezogen wurde. Oder eine Erlaubnis zum Löschen liegt für das Skript, das der Benutzer gestartet, hat nicht vor."
|
3000 |
+
|
3001 |
+
#: views/admin/import/options/_settings_template.php:209
|
3002 |
+
msgid "Auto-Cloak Links"
|
3003 |
+
msgstr "Automatische Linkmaskierung"
|
3004 |
+
|
3005 |
+
#: views/admin/import/options/_settings_template.php:209
|
3006 |
+
msgid "Automatically process all links present in body of created post or page with <b>%s</b> plugin"
|
3007 |
+
msgstr "Bearbeite automatisch alle Links die im Body des erstellten Posts oder der erstellten Seite sind mit <b>%s</b> Plug-In"
|
3008 |
+
|
3009 |
+
#: views/admin/import/options/_settings_template.php:217
|
3010 |
+
#: views/admin/import/options/_settings_template.php:220
|
3011 |
+
msgid "Use StreamReader instead of XMLReader to parse import file"
|
3012 |
+
msgstr ""
|
3013 |
+
|
3014 |
+
#: views/admin/import/options/_settings_template.php:217
|
3015 |
+
msgid "WP All Import is being forced to use Stream Reader for all imports. Go to WP All Import ▸ Settings to modify this setting."
|
3016 |
+
msgstr ""
|
3017 |
+
|
3018 |
+
#: views/admin/import/options/_settings_template.php:220
|
3019 |
+
#: views/admin/settings/index.php:188
|
3020 |
+
msgid "XMLReader is much faster, but has a bug that sometimes prevents certain records from being imported with import files that contain special cases."
|
3021 |
+
msgstr ""
|
3022 |
+
|
3023 |
+
#: views/admin/import/options/_settings_template.php:225
|
3024 |
+
msgid "Friendly Name"
|
3025 |
+
msgstr "Benutzerfreundlicher Name"
|
3026 |
+
|
3027 |
+
#: views/admin/import/preview.php:6 views/admin/import/preview_images.php:6
|
3028 |
+
#: views/admin/import/preview_prices.php:6
|
3029 |
+
#: views/admin/import/preview_taxonomies.php:6 views/admin/import/tag.php:8
|
3030 |
+
msgid "<strong><input type=\"text\" value=\"%s\" name=\"tagno\" class=\"tagno\"/></strong><span class=\"out_of\"> of <strong class=\"pmxi_count\">%s</strong></span>"
|
3031 |
+
msgstr "<strong><input type=\"text\" value=\"%s\" name=\"tagno\" class=\"tagno\"/></strong><span class=\"out_of\"> von <strong class=\"pmxi_count\">%s</strong></span>"
|
3032 |
+
|
3033 |
+
#: views/admin/import/preview_images.php:17
|
3034 |
+
msgid "Test Images"
|
3035 |
+
msgstr "Bilder testen."
|
3036 |
+
|
3037 |
+
#: views/admin/import/preview_images.php:24
|
3038 |
+
msgid "Click to test that your images are able to be accessed by WP All Import."
|
3039 |
+
msgstr "Hier klicken um zu überprüfen, dass WP All Import auf Ihre Bilder zugreifen kann."
|
3040 |
+
|
3041 |
+
#: views/admin/import/preview_images.php:26
|
3042 |
+
msgid "Run Test"
|
3043 |
+
msgstr "Test starten"
|
3044 |
+
|
3045 |
+
#: views/admin/import/preview_images.php:60
|
3046 |
+
msgid "Retrieving images..."
|
3047 |
+
msgstr "Bilder wiederherstellen..."
|
3048 |
+
|
3049 |
+
#: views/admin/import/preview_images.php:64
|
3050 |
+
msgid "WP All Import will import images from the following file paths:"
|
3051 |
+
msgstr "WP All Import wird Bilder von folgenden Pfaden importieren:"
|
3052 |
+
|
3053 |
+
#: views/admin/import/preview_images.php:65
|
3054 |
+
msgid "Please ensure the images exists at these file paths"
|
3055 |
+
msgstr "Bitte gehen Sie sicher, dass die Bilder bei diesen Pfaden existieren"
|
3056 |
+
|
3057 |
+
#: views/admin/import/preview_images.php:73
|
3058 |
+
#: views/admin/import/preview_images.php:115
|
3059 |
+
#: views/admin/import/preview_images.php:154
|
3060 |
+
msgid "Here are the above URLs, in <img> tags. "
|
3061 |
+
msgstr "Hier sind die obigen URLs in <img> tags. "
|
3062 |
+
|
3063 |
+
#: views/admin/import/preview_images.php:92
|
3064 |
+
msgid "Searching images..."
|
3065 |
+
msgstr "Bilder werden gesucht…"
|
3066 |
+
|
3067 |
+
#: views/admin/import/preview_images.php:96
|
3068 |
+
msgid "WP All Import will import images from the media library"
|
3069 |
+
msgstr "WP All Import wird Bilder aus der Medienbibliothek importieren."
|
3070 |
+
|
3071 |
+
#: views/admin/import/preview_images.php:97
|
3072 |
+
msgid "Please ensure the images exists at media library"
|
3073 |
+
msgstr "Bitte stellen Sie sicher, dass die Bilder in der Medienbibliothek existieren."
|
3074 |
+
|
3075 |
+
#: views/admin/import/preview_images.php:141
|
3076 |
+
msgid "Download in progress..."
|
3077 |
+
msgstr "Herunterladen in Fortschritt..."
|
3078 |
+
|
3079 |
+
#: views/admin/import/preview_images.php:145
|
3080 |
+
msgid "WP All Import will attempt to import images from the following URLs:"
|
3081 |
+
msgstr "WP All Import wird versuchen die Bilder von folgender URL zu importieren:"
|
3082 |
+
|
3083 |
+
#: views/admin/import/preview_images.php:146
|
3084 |
+
msgid "Please check the URLs to ensure they point to valid images"
|
3085 |
+
msgstr "Bitte kontrollieren Sie die URL um sicher zu gehen dass sie auf korrekte Bilder zeigen"
|
3086 |
+
|
3087 |
+
#: views/admin/import/preview_images.php:169
|
3088 |
+
msgid "Images not found for current record."
|
3089 |
+
msgstr "Keine Bilder gefunden für diesen Datensatz."
|
3090 |
+
|
3091 |
+
#: views/admin/import/preview_prices.php:16
|
3092 |
+
msgid "Preview Prices"
|
3093 |
+
msgstr "Vorschau Preis"
|
3094 |
+
|
3095 |
+
#: views/admin/import/preview_prices.php:18
|
3096 |
+
msgid "Regular Price"
|
3097 |
+
msgstr "Regulärer Preis"
|
3098 |
+
|
3099 |
+
#: views/admin/import/preview_prices.php:19
|
3100 |
+
msgid "Sale Price"
|
3101 |
+
msgstr "Angebotspreis"
|
3102 |
+
|
3103 |
+
#: views/admin/import/preview_taxonomies.php:16
|
3104 |
+
msgid "Test Taxonomies Hierarchy"
|
3105 |
+
msgstr "Teste Taxonomie Hierarchie "
|
3106 |
+
|
3107 |
+
#: views/admin/import/process.php:21
|
3108 |
+
msgid "Import <span id=\"status\">in Progress</span>"
|
3109 |
+
msgstr "Import <span id=\"status\">in Bearbeitung</span>"
|
3110 |
+
|
3111 |
+
#: views/admin/import/process.php:22
|
3112 |
+
msgid "Importing may take some time. Please do not close your browser or refresh the page until the process is complete."
|
3113 |
+
msgstr "Der Import wird einige Zeit benötigen. Bitte nicht den Browser schliessen oder aktualisieren während die Bearbeitung läuft."
|
3114 |
+
|
3115 |
+
#: views/admin/import/process.php:29
|
3116 |
+
msgid "Time Elapsed"
|
3117 |
+
msgstr "Zeit vergangen"
|
3118 |
+
|
3119 |
+
#: views/admin/import/process.php:31
|
3120 |
+
msgid "Created"
|
3121 |
+
msgstr "Erstellt"
|
3122 |
+
|
3123 |
+
#: views/admin/import/process.php:31
|
3124 |
+
msgid "Updated"
|
3125 |
+
msgstr "Aktualisiert"
|
3126 |
+
|
3127 |
+
#: views/admin/import/process.php:31
|
3128 |
+
msgid "of"
|
3129 |
+
msgstr "von"
|
3130 |
+
|
3131 |
+
#: views/admin/import/process.php:48
|
3132 |
+
msgid "Import Complete!"
|
3133 |
+
msgstr "Import abgeschlossen"
|
3134 |
+
|
3135 |
+
#: views/admin/import/process.php:50
|
3136 |
+
msgid "Duplicate records detected during import"
|
3137 |
+
msgstr "Datensatz Duplikate während des Imports festgestellt"
|
3138 |
+
|
3139 |
+
#: views/admin/import/process.php:50
|
3140 |
+
msgid "The unique identifier is how WP All Import tells two items in your import file apart. If it is the same for two items, then the first item will be overwritten when the second is imported."
|
3141 |
+
msgstr "Die einzigartige ID ermöglicht es WP All Import zwei Artikel in Ihrer Datei unterscheiden zu können. Wenn dieser für zwei Artikel gleich ist, dann wird der erste überschrieben wenn der zweite importiert wird."
|
3142 |
+
|
3143 |
+
#: views/admin/import/process.php:52
|
3144 |
+
msgid "The file you are importing has %s records, but WP All Import only created <span class=\"inserted_count\"></span> %s. It detected the other records in your file as duplicates. This could be because they actually are duplicates or it could be because your Unique Identifier is not unique for each record.<br><br>If your import file has no duplicates and you want to import all %s records, you should delete everything that was just imported and then edit your Unique Identifier so it's unique for each item."
|
3145 |
+
msgstr "Die Datei die Sie importieren hat %s Datensätze, aber WP All Import erstellte nur <span class=\"inserted_count\"></span> %s. Es erkannte die anderen Datensätze in Ihrer Datei als Duplikate. Entweder weil es Duplikate sind oder weil Ihre einzigartige ID nicht einzigartig für jeden Datensatz ist. <br><br>Wenn Ihre Import Datei keine Duplikate hat und Sie alle Datensätze %s importieren wollen, sollten Sie alles Löschen was gerade importiert wurde und dann Ihre einzigartige ID ändern, so dass dieser einzigartig für jeden Artikel ist."
|
3146 |
+
|
3147 |
+
#: views/admin/import/process.php:54 views/admin/import/process.php:61
|
3148 |
+
msgid "Delete & Edit"
|
3149 |
+
msgstr "Löschen & Ändern"
|
3150 |
+
|
3151 |
+
#: views/admin/import/process.php:57
|
3152 |
+
msgid "<span id=\"skipped_count\">%s</span> orders were skipped during this import"
|
3153 |
+
msgstr ""
|
3154 |
+
|
3155 |
+
#: views/admin/import/process.php:59
|
3156 |
+
msgid "WP All Import is unable import an order when it cannot match the products or customer specified. <a href=\"%s\" style=\"margin: 0;\">See the import log</a> for a list of which orders were skipped and why."
|
3157 |
+
msgstr ""
|
3158 |
+
|
3159 |
+
#: views/admin/import/process.php:63
|
3160 |
+
msgid "WP All Import successfully imported your file <span>%s</span> into your WordPress installation!"
|
3161 |
+
msgstr "WP All Import hat Ihre Datei <span>%s</span> erfolgreich in Ihre WordPress Installation importiert!"
|
3162 |
+
|
3163 |
+
#: views/admin/import/process.php:65 views/admin/import/process.php:67
|
3164 |
+
msgid "There were <span class=\"wpallimport-errors-count\">%s</span> errors and <span class=\"wpallimport-warnings-count\">%s</span> warnings in this import. You can see these in the import log."
|
3165 |
+
msgstr "Es gab <span class=\"wpallimport-errors-count\">%s</span> Fehler und <span class=\"wpallimport-warnings-count\">%s</span> Warnungen in diesem Import. Sie können diese im Import Log sehen."
|
3166 |
+
|
3167 |
+
#: views/admin/import/process.php:70
|
3168 |
+
msgid "View Logs"
|
3169 |
+
msgstr "Logs ansehen"
|
3170 |
+
|
3171 |
+
#: views/admin/import/process.php:78
|
3172 |
+
msgid "Hide this notice."
|
3173 |
+
msgstr "Diesen Hinweis verstecken."
|
3174 |
+
|
3175 |
+
#: views/admin/import/process.php:82
|
3176 |
+
msgid "Want to speed up your import?"
|
3177 |
+
msgstr "Wollen Sie Ihren Import beschleunigen?"
|
3178 |
+
|
3179 |
+
#: views/admin/import/process.php:83
|
3180 |
+
msgid "Check out our guide on increasing import speed."
|
3181 |
+
msgstr "Lesen Sie unsere Anleitung, wie Sie die Import Geschwindigkeit steigern können."
|
3182 |
+
|
3183 |
+
#: views/admin/import/process.php:87
|
3184 |
+
msgid "opens in new tab"
|
3185 |
+
msgstr "wird in einem neuen Tab geöffnet."
|
3186 |
+
|
3187 |
+
#: views/admin/import/process.php:95 views/admin/import/process.php:116
|
3188 |
+
msgid "Your server terminated the import process"
|
3189 |
+
msgstr "Ihr Server hat den Import Prozess beendet."
|
3190 |
+
|
3191 |
+
#: views/admin/import/process.php:96
|
3192 |
+
msgid "<a href='%s' target='_blank'>Read more</a> about how to prevent this from happening again."
|
3193 |
+
msgstr "<a href='%s' target='_blank'>Hier lesen</a> wie dies in Zukunft verhindert werden kann."
|
3194 |
+
|
3195 |
+
#: views/admin/import/process.php:100
|
3196 |
+
msgid "with <span id='wpallimport-new-records-per-iteration'>%s</span> records per iteration"
|
3197 |
+
msgstr "mit <span id='wpallimport-new-records-per-iteration'>%s</span> Einträgen pro Durchgang"
|
3198 |
+
|
3199 |
+
#: views/admin/import/process.php:106
|
3200 |
+
msgid "Log"
|
3201 |
+
msgstr "Log"
|
3202 |
+
|
3203 |
+
#: views/admin/import/process.php:117
|
3204 |
+
msgid "Ask your host to check your server's error log. They will be able to determine why your server is terminating the import process."
|
3205 |
+
msgstr "Bitten Sie Ihren Hoster die Server Fehlerlogs zu prüfen. Diese werden schliessen können, warum Ihr Server den Import Prozess abgebrochen hat."
|
3206 |
+
|
3207 |
+
#: views/admin/import/tag.php:5
|
3208 |
+
msgid "Elements"
|
3209 |
+
msgstr "Elemente"
|
3210 |
+
|
3211 |
+
#: views/admin/import/tag.php:27
|
3212 |
+
msgid "History file not found. Probably you are using wrong encoding."
|
3213 |
+
msgstr "Chronik Datei nicht gefunden. Eventuell nutzen Sie eine andere Codierung."
|
3214 |
+
|
3215 |
+
#: views/admin/import/template.php:42
|
3216 |
+
msgid "Name & Description"
|
3217 |
+
msgstr ""
|
3218 |
+
|
3219 |
+
#: views/admin/import/template.php:44
|
3220 |
+
msgid "Title & Content"
|
3221 |
+
msgstr "Titel & Inhalt"
|
3222 |
+
|
3223 |
+
#: views/admin/import/template.php:52
|
3224 |
+
msgid "Drag & drop any element on the right to set the title."
|
3225 |
+
msgstr "Drag & drop ein Element von der rechten Seite um den Titel zu setzen."
|
3226 |
+
|
3227 |
+
#: views/admin/import/template.php:71
|
3228 |
+
msgid "WooCommerce Short Description"
|
3229 |
+
msgstr "WooCommerce Kurzbeschreibung"
|
3230 |
+
|
3231 |
+
#: views/admin/import/template.php:75
|
3232 |
+
#: views/admin/import/template/_taxonomies_template.php:138
|
3233 |
+
msgid "Preview"
|
3234 |
+
msgstr "Vorschau"
|
3235 |
+
|
3236 |
+
#: views/admin/import/template.php:81
|
3237 |
+
msgid "Advanced Options"
|
3238 |
+
msgstr "Erweiterte Optionen"
|
3239 |
+
|
3240 |
+
#: views/admin/import/template.php:88
|
3241 |
+
msgid "Keep line breaks from file"
|
3242 |
+
msgstr "Behalte Zeilenumbruch der Datei"
|
3243 |
+
|
3244 |
+
#: views/admin/import/template.php:93
|
3245 |
+
msgid "Decode HTML entities with <b>html_entity_decode</b>"
|
3246 |
+
msgstr "Dekodiere HTML Entitäten mit <b>html_entity_decode</b>"
|
3247 |
+
|
3248 |
+
#: views/admin/import/template.php:161 views/admin/settings/index.php:212
|
3249 |
+
msgid "Function Editor"
|
3250 |
+
msgstr "Funktions-Editor"
|
3251 |
+
|
3252 |
+
#: views/admin/import/template.php:171 views/admin/settings/index.php:220
|
3253 |
+
msgid "Save Functions"
|
3254 |
+
msgstr "Funktionen speichern"
|
3255 |
+
|
3256 |
+
#: views/admin/import/template.php:172 views/admin/settings/index.php:221
|
3257 |
+
msgid "Add functions here for use during your import. You can access this file at %s"
|
3258 |
+
msgstr "Fügen Sie hier Funktionen hinzu, welche während Ihrem Import verwendet werden. Sie können diese Datei hier finden: %s"
|
3259 |
+
|
3260 |
+
#: views/admin/import/template.php:197
|
3261 |
+
msgid "Save settings as a template"
|
3262 |
+
msgstr "Speichere Einstellungen als Vorlage"
|
3263 |
+
|
3264 |
+
#: views/admin/import/template.php:200
|
3265 |
+
msgid "Template name..."
|
3266 |
+
msgstr "Vorlagen Name..."
|
3267 |
+
|
3268 |
+
#: views/admin/import/template.php:205
|
3269 |
+
msgid "Load Template..."
|
3270 |
+
msgstr "Lade Vorlage..."
|
3271 |
+
|
3272 |
+
#: views/admin/import/template.php:225
|
3273 |
+
msgid "Back to Step 2"
|
3274 |
+
msgstr "Zurück zu Schritt 2"
|
3275 |
+
|
3276 |
+
#: views/admin/import/template.php:229
|
3277 |
+
msgid "Continue to Step 4"
|
3278 |
+
msgstr ""
|
3279 |
+
|
3280 |
+
#: views/admin/import/template/_custom_fields_template.php:27
|
3281 |
+
msgid "Your website is using Custom Fields to store data for %s."
|
3282 |
+
msgstr "Ihre Website benutzt individuelle Felder zur Datenspeicherung von %s."
|
3283 |
+
|
3284 |
+
#: views/admin/import/template/_custom_fields_template.php:28
|
3285 |
+
#: views/admin/import/template/_term_meta_template.php:28
|
3286 |
+
msgid "See Detected Fields"
|
3287 |
+
msgstr "Siehe erkannte Felder"
|
3288 |
+
|
3289 |
+
#: views/admin/import/template/_custom_fields_template.php:30
|
3290 |
+
msgid "No Custom Fields are present in your database for %s."
|
3291 |
+
msgstr "Keine selbst erstellten Felder in der Datenbank für %s"
|
3292 |
+
|
3293 |
+
#: views/admin/import/template/_custom_fields_template.php:31
|
3294 |
+
#: views/admin/import/template/_term_meta_template.php:31
|
3295 |
+
msgid "Manually create a %s, and fill out each field you want to import data to. WP All Import will then display these fields as available for import below."
|
3296 |
+
msgstr "Erstellen Sie Manuell ein %s und füllen Sie jedes Feld aus das Sie importieren wollen. WP All Import wird diese Felder als Verfügbar für den Import anzeigen."
|
3297 |
+
|
3298 |
+
#: views/admin/import/template/_custom_fields_template.php:33
|
3299 |
+
#: views/admin/import/template/_custom_fields_template.php:41
|
3300 |
+
#: views/admin/import/template/_term_meta_template.php:33
|
3301 |
+
#: views/admin/import/template/_term_meta_template.php:41
|
3302 |
+
msgid "Hide Notice"
|
3303 |
+
msgstr "Hinweis ausblenden"
|
3304 |
+
|
3305 |
+
#: views/admin/import/template/_custom_fields_template.php:38
|
3306 |
+
#: views/admin/import/template/_term_meta_template.php:38
|
3307 |
+
msgid "Clear All Fields"
|
3308 |
+
msgstr "Alle Felder leeren"
|
3309 |
+
|
3310 |
+
#: views/admin/import/template/_custom_fields_template.php:40
|
3311 |
+
#: views/admin/import/template/_term_meta_template.php:40
|
3312 |
+
msgid "If not all fields were detected, manually create a %s, and fill out each field you want to import data to. Then create a new import, and WP All Import will display these fields as available for import below."
|
3313 |
+
msgstr "Wenn nicht alle Felder erkannt wurden, erstellen Sie manuell ein %s und füllen Sie jedes Feld das Sie importieren wollen aus. Erstellen Sie dann einen neuen Import und WP All Import wird diese Felder für den Import anzeigen."
|
3314 |
+
|
3315 |
+
#: views/admin/import/template/_custom_fields_template.php:67
|
3316 |
+
#: views/admin/import/template/_custom_fields_template.php:276
|
3317 |
+
#: views/admin/import/template/_custom_fields_template.php:410
|
3318 |
+
#: views/admin/import/template/_term_meta_template.php:67
|
3319 |
+
#: views/admin/import/template/_term_meta_template.php:276
|
3320 |
+
#: views/admin/import/template/_term_meta_template.php:410
|
3321 |
+
msgid "Click to specify"
|
3322 |
+
msgstr "Hier klicken zum Bestimmen"
|
3323 |
+
|
3324 |
+
#: views/admin/import/template/_custom_fields_template.php:72
|
3325 |
+
#: views/admin/import/template/_custom_fields_template.php:281
|
3326 |
+
#: views/admin/import/template/_custom_fields_template.php:415
|
3327 |
+
#: views/admin/import/template/_term_meta_template.php:72
|
3328 |
+
#: views/admin/import/template/_term_meta_template.php:281
|
3329 |
+
#: views/admin/import/template/_term_meta_template.php:415
|
3330 |
+
msgid "Serialized"
|
3331 |
+
msgstr "Fortsetzung"
|
3332 |
+
|
3333 |
+
#: views/admin/import/template/_custom_fields_template.php:85
|
3334 |
+
#: views/admin/import/template/_custom_fields_template.php:294
|
3335 |
+
#: views/admin/import/template/_custom_fields_template.php:428
|
3336 |
+
#: views/admin/import/template/_term_meta_template.php:85
|
3337 |
+
#: views/admin/import/template/_term_meta_template.php:294
|
3338 |
+
#: views/admin/import/template/_term_meta_template.php:428
|
3339 |
+
msgid "Key"
|
3340 |
+
msgstr "Schlüssel"
|
3341 |
+
|
3342 |
+
#: views/admin/import/template/_custom_fields_template.php:156
|
3343 |
+
#: views/admin/import/template/_custom_fields_template.php:536
|
3344 |
+
msgid "Add Custom Field"
|
3345 |
+
msgstr "Individuelles Feld hinzufügen"
|
3346 |
+
|
3347 |
+
#: views/admin/import/template/_custom_fields_template.php:162
|
3348 |
+
#: views/admin/import/template/_custom_fields_template.php:330
|
3349 |
+
#: views/admin/import/template/_custom_fields_template.php:464
|
3350 |
+
#: views/admin/import/template/_term_meta_template.php:162
|
3351 |
+
#: views/admin/import/template/_term_meta_template.php:330
|
3352 |
+
#: views/admin/import/template/_term_meta_template.php:464
|
3353 |
+
msgid "Auto-Detect"
|
3354 |
+
msgstr "Automatische Erkennung"
|
3355 |
+
|
3356 |
+
#: views/admin/import/template/_custom_fields_template.php:167
|
3357 |
+
#: views/admin/import/template/_custom_fields_template.php:335
|
3358 |
+
#: views/admin/import/template/_custom_fields_template.php:469
|
3359 |
+
#: views/admin/import/template/_term_meta_template.php:167
|
3360 |
+
#: views/admin/import/template/_term_meta_template.php:335
|
3361 |
+
#: views/admin/import/template/_term_meta_template.php:469
|
3362 |
+
#: views/admin/license/index.php:40
|
3363 |
+
msgid "Save"
|
3364 |
+
msgstr "Speichern"
|
3365 |
+
|
3366 |
+
#: views/admin/import/template/_featured_template.php:8
|
3367 |
+
msgid "Show hints"
|
3368 |
+
msgstr "Zeige Hinweise"
|
3369 |
+
|
3370 |
+
#: views/admin/import/template/_featured_template.php:15
|
3371 |
+
msgid "Download images hosted elsewhere"
|
3372 |
+
msgstr "Bilder von einem anderen Server laden"
|
3373 |
+
|
3374 |
+
#: views/admin/import/template/_featured_template.php:19
|
3375 |
+
msgid "Enter image URL one per line, or separate them with a "
|
3376 |
+
msgstr "Geben Sie eine Bild URL pro Zeile ein, oder teilen Sie diese mit einem"
|
3377 |
+
|
3378 |
+
#: views/admin/import/template/_featured_template.php:25
|
3379 |
+
msgid "Use images currently in Media Library"
|
3380 |
+
msgstr "Benutze Bilder, welche zur Zeit in der Medienbibliothek sind"
|
3381 |
+
|
3382 |
+
#: views/admin/import/template/_featured_template.php:29
|
3383 |
+
#: views/admin/import/template/_featured_template.php:39
|
3384 |
+
msgid "Enter image filenames one per line, or separate them with a "
|
3385 |
+
msgstr "Geben Sie einen Bildnamen pro Zeile ein, oder teilen Sie diese mit einem"
|
3386 |
+
|
3387 |
+
#: views/admin/import/template/_featured_template.php:36
|
3388 |
+
msgid "Use images currently uploaded in %s"
|
3389 |
+
msgstr "Benutze Bilder, welche in das Verzeichnis %s geladen wurden."
|
3390 |
+
|
3391 |
+
#: views/admin/import/template/_featured_template.php:44
|
3392 |
+
msgid "Image Options"
|
3393 |
+
msgstr "Bild Optionen"
|
3394 |
+
|
3395 |
+
#: views/admin/import/template/_featured_template.php:49
|
3396 |
+
msgid "Search through the Media Library for existing images before importing new images"
|
3397 |
+
msgstr "Durchsuche die Medien Bibliothek nach existierenden Bildern bevor neue Bilder importiert werden."
|
3398 |
+
|
3399 |
+
#: views/admin/import/template/_featured_template.php:50
|
3400 |
+
msgid "If an image with the same file name is found in the Media Library then that image will be attached to this record instead of importing a new image. Disable this setting if your import has different images with the same file name."
|
3401 |
+
msgstr "Wird ein Bild mit dem selben Dateinamen in der Medien Bibliothek gefunden, dann wird dieses Bild an den Datensatz angehängt anstatt ein neues importiert. Deaktivieren Sie diese Einstellung wenn Ihr Import mehrere Bilder mit dem selben Dateinamen hat."
|
3402 |
+
|
3403 |
+
#: views/admin/import/template/_featured_template.php:55
|
3404 |
+
msgid "Keep images currently in Media Library"
|
3405 |
+
msgstr "Bilder, welche zur Zeit in der Medienbibliothek sind, behalten."
|
3406 |
+
|
3407 |
+
#: views/admin/import/template/_featured_template.php:56
|
3408 |
+
msgid "If disabled, images attached to imported posts will be deleted and then all images will be imported."
|
3409 |
+
msgstr "Ist dies deaktiviert, werden alle Bilder, welche zu importierten Beiträgen gehören gelöscht und neu importiert."
|
3410 |
+
|
3411 |
+
#: views/admin/import/template/_featured_template.php:62
|
3412 |
+
msgid "Preview & Test"
|
3413 |
+
msgstr "Vorschau & Test"
|
3414 |
+
|
3415 |
+
#: views/admin/import/template/_featured_template.php:67
|
3416 |
+
msgid "Set the first image to the Featured Image (_thumbnail_id)"
|
3417 |
+
msgstr "Setze das erste Bild als Featured Bild (_thumbnail_id)"
|
3418 |
+
|
3419 |
+
#: views/admin/import/template/_featured_template.php:72
|
3420 |
+
msgid "If no images are downloaded successfully, create entry as Draft."
|
3421 |
+
msgstr "Wenn keine Bilder heruntergeladen werden können, erstelle den Eintrag als Entwurf."
|
3422 |
+
|
3423 |
+
#: views/admin/import/template/_featured_template.php:83
|
3424 |
+
msgid "SEO & Advanced Options"
|
3425 |
+
msgstr "SEO & Erweiterte Optionen"
|
3426 |
+
|
3427 |
+
#: views/admin/import/template/_featured_template.php:91
|
3428 |
+
msgid "Meta Data"
|
3429 |
+
msgstr "Meta Daten"
|
3430 |
+
|
3431 |
+
#: views/admin/import/template/_featured_template.php:95
|
3432 |
+
msgid "Set Title(s)"
|
3433 |
+
msgstr "SEO Titel"
|
3434 |
+
|
3435 |
+
#: views/admin/import/template/_featured_template.php:97
|
3436 |
+
#: views/admin/import/template/_featured_template.php:108
|
3437 |
+
#: views/admin/import/template/_featured_template.php:119
|
3438 |
+
msgid "Enter one per line, or separate them with a "
|
3439 |
+
msgstr "Geben Sie eine pro Zeile ein, oder teilen Sie diese mit einem"
|
3440 |
+
|
3441 |
+
#: views/admin/import/template/_featured_template.php:99
|
3442 |
+
msgid "The first title will be linked to the first image, the second title will be linked to the second image, ..."
|
3443 |
+
msgstr "Der erste Titel wird mit dem ersten Bild verlinkt, der zweite wird mit dem zweiten Bild verlinkt, ..."
|
3444 |
+
|
3445 |
+
#: views/admin/import/template/_featured_template.php:106
|
3446 |
+
msgid "Set Caption(s)"
|
3447 |
+
msgstr "Setze Beschriftung"
|
3448 |
+
|
3449 |
+
#: views/admin/import/template/_featured_template.php:110
|
3450 |
+
msgid "The first caption will be linked to the first image, the second caption will be linked to the second image, ..."
|
3451 |
+
msgstr "Die erste Beschriftung wird mit dem ersten Bild verlinkt, die zweite wird mit dem zweiten Bild verlinkt, ..."
|
3452 |
+
|
3453 |
+
#: views/admin/import/template/_featured_template.php:117
|
3454 |
+
msgid "Set Alt Text(s)"
|
3455 |
+
msgstr "Setze alle Texte"
|
3456 |
+
|
3457 |
+
#: views/admin/import/template/_featured_template.php:121
|
3458 |
+
msgid "The first alt text will be linked to the first image, the second alt text will be linked to the second image, ..."
|
3459 |
+
msgstr "Der erste Text wird mit dem ersten Bild verlinkt, der zweite wird mit dem zweiten Bild verlinkt, ..."
|
3460 |
+
|
3461 |
+
#: views/admin/import/template/_featured_template.php:128
|
3462 |
+
msgid "Set Description(s)"
|
3463 |
+
msgstr "Setze Beschreibung(en)"
|
3464 |
+
|
3465 |
+
#: views/admin/import/template/_featured_template.php:132
|
3466 |
+
msgid "Separate them with a"
|
3467 |
+
msgstr "Trennen Sie diese mit einem"
|
3468 |
+
|
3469 |
+
#: views/admin/import/template/_featured_template.php:137
|
3470 |
+
msgid "Enter them one per line"
|
3471 |
+
msgstr "Tragen Sie einen pro Zeile ein"
|
3472 |
+
|
3473 |
+
#: views/admin/import/template/_featured_template.php:139
|
3474 |
+
msgid "The first description will be linked to the first image, the second description will be linked to the second image, ..."
|
3475 |
+
msgstr "Die erste Beschreibung wird mit dem ersten Bild verlinkt, die zweite wird mit dem zweiten Bild verlinkt, ..."
|
3476 |
+
|
3477 |
+
#: views/admin/import/template/_featured_template.php:143
|
3478 |
+
#: views/admin/settings/index.php:79
|
3479 |
+
msgid "Files"
|
3480 |
+
msgstr "Dateien"
|
3481 |
+
|
3482 |
+
#: views/admin/import/template/_featured_template.php:145
|
3483 |
+
msgid "These options only available if Download images hosted elsewhere is selected above."
|
3484 |
+
msgstr "Diese Optionen sind nur verfügbar, wenn oben Bilder von einem anderen Server laden aktiviert wurde."
|
3485 |
+
|
3486 |
+
#: views/admin/import/template/_featured_template.php:149
|
3487 |
+
msgid "Change image file names to"
|
3488 |
+
msgstr "Ändere die Dateinamen der Bilder zu"
|
3489 |
+
|
3490 |
+
#: views/admin/import/template/_featured_template.php:152
|
3491 |
+
msgid "Multiple image will have numbers appended, i.e. image-name-1.jpg, image-name-2.jpg "
|
3492 |
+
msgstr "Mehrfachen Bildern werden Zahlen angehängt, Bsp: Bild-name-1.jpg,Bild-name-2.jpg"
|
3493 |
+
|
3494 |
+
#: views/admin/import/template/_featured_template.php:158
|
3495 |
+
msgid "Change image file extensions"
|
3496 |
+
msgstr "Ändere Bild Dateierweiterung"
|
3497 |
+
|
3498 |
+
#: views/admin/import/template/_featured_template.php:176
|
3499 |
+
msgid "WP All Import will automatically ignore elements with blank image URLs/filenames."
|
3500 |
+
msgstr "WP All Import wird automatisch die Elemente ignorieren die leere Bild URLs oder Dateinamen haben."
|
3501 |
+
|
3502 |
+
#: views/admin/import/template/_featured_template.php:177
|
3503 |
+
msgid "WP All Import must download the images to your server. You can't have images in a Gallery that are referenced by external URL. That's just how WordPress works."
|
3504 |
+
msgstr "WP All Import muss die Bilder auf Ihren Server laden. Sie können keine Bilder in Ihrer Galerie haben die einen Link auf eine externe URL haben. So funktioniert WordPress."
|
3505 |
+
|
3506 |
+
#: views/admin/import/template/_featured_template.php:178
|
3507 |
+
msgid "Importing a variable number of images can be done using a <a href=\"%s\" target=\"_blank\">FOREACH LOOP</a>"
|
3508 |
+
msgstr "Eine Variable Anzahl an Bildern zu importieren kann mittels <a href=\"%s\" target=\"_blank\">Schleifendurchlauf</a> durchgeführt werden."
|
3509 |
+
|
3510 |
+
#: views/admin/import/template/_featured_template.php:179
|
3511 |
+
msgid "For more information check out our <a href=\"%s\" target=\"_blank\">comprehensive documentation</a>"
|
3512 |
+
msgstr "Für mehr Informationen schauen Sie doch in unserer <a href=\"%s\" target=\"_blank\">Umfassender Dokumentation</a>"
|
3513 |
+
|
3514 |
+
#: views/admin/import/template/_nested_template.php:35
|
3515 |
+
msgid "Nested XML/CSV files"
|
3516 |
+
msgstr "Verschachtelte XML/CSV Dateien"
|
3517 |
+
|
3518 |
+
#: views/admin/import/template/_nested_template.php:48
|
3519 |
+
msgid "remove"
|
3520 |
+
msgstr "Entfernen"
|
3521 |
+
|
3522 |
+
#: views/admin/import/template/_nested_template.php:69
|
3523 |
+
msgid "Specify the URL of the nested file to use."
|
3524 |
+
msgstr "Bestimmen Sie die URL der verschachtelten Datei."
|
3525 |
+
|
3526 |
+
#: views/admin/import/template/_nested_template.php:73
|
3527 |
+
msgid "Add"
|
3528 |
+
msgstr "Hinzufügen"
|
3529 |
+
|
3530 |
+
#: views/admin/import/template/_other_template.php:16
|
3531 |
+
#: views/admin/import/template/_term_other_template.php:13
|
3532 |
+
msgid "Other %s Options"
|
3533 |
+
msgstr "Andere %s Optionen"
|
3534 |
+
|
3535 |
+
#: views/admin/import/template/_other_template.php:28
|
3536 |
+
msgid "Post Status"
|
3537 |
+
msgstr "Post Status"
|
3538 |
+
|
3539 |
+
#: views/admin/import/template/_other_template.php:31
|
3540 |
+
msgid "Published"
|
3541 |
+
msgstr "Veröffentlicht"
|
3542 |
+
|
3543 |
+
#: views/admin/import/template/_other_template.php:35
|
3544 |
+
msgid "Draft"
|
3545 |
+
msgstr "Entwurf"
|
3546 |
+
|
3547 |
+
#: views/admin/import/template/_other_template.php:43
|
3548 |
+
msgid "The value of presented XPath should be one of the following: ('publish', 'draft', 'trash')."
|
3549 |
+
msgstr "Der Wert des gegenwärtigen XPath sollte einer der folgenden sein: ('veröffentlichen', 'Entwurf', 'Papierkorb')."
|
3550 |
+
|
3551 |
+
#: views/admin/import/template/_other_template.php:52
|
3552 |
+
msgid "Post Dates"
|
3553 |
+
msgstr "Post Datum"
|
3554 |
+
|
3555 |
+
#: views/admin/import/template/_other_template.php:52
|
3556 |
+
msgid "Use any format supported by the PHP <b>strtotime</b> function. That means pretty much any human-readable date will work."
|
3557 |
+
msgstr "Benutzen Sie ein Format das von der PHP <b>strtotime</b> Funktion unterstützt wird. Das bedeutet, dass jedes menschlich lesbare Datum funktioniert."
|
3558 |
+
|
3559 |
+
#: views/admin/import/template/_other_template.php:56
|
3560 |
+
msgid "As specified"
|
3561 |
+
msgstr "Wie Bestimmt"
|
3562 |
+
|
3563 |
+
#: views/admin/import/template/_other_template.php:65
|
3564 |
+
msgid "Random dates"
|
3565 |
+
msgstr "Zufällige Datum"
|
3566 |
+
|
3567 |
+
#: views/admin/import/template/_other_template.php:65
|
3568 |
+
msgid "Posts will be randomly assigned dates in this range. WordPress ensures posts with dates in the future will not appear until their date has been reached."
|
3569 |
+
msgstr "Posts bekommen zufällige Datum in diesem Bereich. WordPress lässt Posts mit Datum in der Zukunft zu, diese erscheinen nicht bis dieses Datum erreicht ist. "
|
3570 |
+
|
3571 |
+
#: views/admin/import/template/_other_template.php:69
|
3572 |
+
#: views/admin/manage/delete.php:56
|
3573 |
+
msgid "and"
|
3574 |
+
msgstr "und"
|
3575 |
+
|
3576 |
+
#: views/admin/import/template/_other_template.php:77
|
3577 |
+
msgid "Comments"
|
3578 |
+
msgstr "Kommentare"
|
3579 |
+
|
3580 |
+
#: views/admin/import/template/_other_template.php:80
|
3581 |
+
#: views/admin/import/template/_other_template.php:103
|
3582 |
+
msgid "Open"
|
3583 |
+
msgstr "Offen"
|
3584 |
+
|
3585 |
+
#: views/admin/import/template/_other_template.php:84
|
3586 |
+
#: views/admin/import/template/_other_template.php:107
|
3587 |
+
msgid "Closed"
|
3588 |
+
msgstr "Geschlossen"
|
3589 |
+
|
3590 |
+
#: views/admin/import/template/_other_template.php:92
|
3591 |
+
#: views/admin/import/template/_other_template.php:115
|
3592 |
+
msgid "The value of presented XPath should be one of the following: ('open', 'closed')."
|
3593 |
+
msgstr "Der Wert des gegenwärtigen XPath sollte einer der folgenden sein: ('Offen','Geschlossen')."
|
3594 |
+
|
3595 |
+
#: views/admin/import/template/_other_template.php:100
|
3596 |
+
msgid "Trackbacks and Pingbacks"
|
3597 |
+
msgstr "Trackbacks und Pingbacks"
|
3598 |
+
|
3599 |
+
#: views/admin/import/template/_other_template.php:123
|
3600 |
+
msgid "Post Slug"
|
3601 |
+
msgstr "Post Slug"
|
3602 |
+
|
3603 |
+
#: views/admin/import/template/_other_template.php:131
|
3604 |
+
msgid "Post Author"
|
3605 |
+
msgstr "Post Autor"
|
3606 |
+
|
3607 |
+
#: views/admin/import/template/_other_template.php:133
|
3608 |
+
msgid "Assign the post to an existing user account by specifying the user ID, username, or e-mail address."
|
3609 |
+
msgstr "Ordne den Post einem bestehenden Benutzerkonto zu durch bestimmen der ID, des Benutzernamen oder der Email Adresse."
|
3610 |
+
|
3611 |
+
#: views/admin/import/template/_other_template.php:139
|
3612 |
+
msgid "Download & Import Attachments"
|
3613 |
+
msgstr "Herunterladen & Importiere Anhänge"
|
3614 |
+
|
3615 |
+
#: views/admin/import/template/_other_template.php:140
|
3616 |
+
#: views/admin/import/template/_taxonomies_template.php:65
|
3617 |
+
#: views/admin/import/template/_taxonomies_template.php:122
|
3618 |
+
#: views/admin/import/template/_taxonomies_template.php:134
|
3619 |
+
#: views/admin/import/template/_taxonomies_template.php:212
|
3620 |
+
msgid "Separated by"
|
3621 |
+
msgstr "Getrennt durch"
|
3622 |
+
|
3623 |
+
#: views/admin/import/template/_other_template.php:148
|
3624 |
+
msgid "Search for existing attachments to prevent duplicates in media library"
|
3625 |
+
msgstr "Suche nach existierenden Anhängen um vor Duplikaten in der Medien Bibliothek zu schützen"
|
3626 |
+
|
3627 |
+
#: views/admin/import/template/_other_template.php:155
|
3628 |
+
msgid "Post Format"
|
3629 |
+
msgstr "Post Format"
|
3630 |
+
|
3631 |
+
#: views/admin/import/template/_other_template.php:161
|
3632 |
+
msgid "Standard"
|
3633 |
+
msgstr "Standard"
|
3634 |
+
|
3635 |
+
#: views/admin/import/template/_other_template.php:193
|
3636 |
+
msgid "Page Template"
|
3637 |
+
msgstr "Seiten Vorlage"
|
3638 |
+
|
3639 |
+
#: views/admin/import/template/_other_template.php:196
|
3640 |
+
msgid "Select a template"
|
3641 |
+
msgstr "Wählen Sie eine Vorlage"
|
3642 |
+
|
3643 |
+
#: views/admin/import/template/_other_template.php:200
|
3644 |
+
msgid "Default"
|
3645 |
+
msgstr "Standard"
|
3646 |
+
|
3647 |
+
#: views/admin/import/template/_other_template.php:222
|
3648 |
+
msgid "Page Parent"
|
3649 |
+
msgstr "Seiten Eltern"
|
3650 |
+
|
3651 |
+
#: views/admin/import/template/_other_template.php:222
|
3652 |
+
msgid "Enter the ID, title, or slug of the desired page parent. If adding the child and parent pages in the same import, set 'Records per Iteration' to 1, run the import twice, or run separate imports for child and parent pages."
|
3653 |
+
msgstr ""
|
3654 |
+
|
3655 |
+
#: views/admin/import/template/_other_template.php:226
|
3656 |
+
msgid "Select page parent"
|
3657 |
+
msgstr "Wähle Elternseite"
|
3658 |
+
|
3659 |
+
#: views/admin/import/template/_other_template.php:229
|
3660 |
+
msgid "(no parent)"
|
3661 |
+
msgstr "(keine Eltern)"
|
3662 |
+
|
3663 |
+
#: views/admin/import/template/_other_template.php:248
|
3664 |
+
msgid "Post Parent"
|
3665 |
+
msgstr "Eltern Post"
|
3666 |
+
|
3667 |
+
#: views/admin/import/template/_other_template.php:248
|
3668 |
+
msgid "Enter the ID, title, or slug of the desired post parent. If adding the child and parent posts in the same import, set 'Records per Iteration' to 1, run the import twice, or run separate imports for child and parent posts."
|
3669 |
+
msgstr ""
|
3670 |
+
|
3671 |
+
#: views/admin/import/template/_other_template.php:252
|
3672 |
+
msgid "Set post parent"
|
3673 |
+
msgstr "Setze Eltern Post"
|
3674 |
+
|
3675 |
+
#: views/admin/import/template/_other_template.php:276
|
3676 |
+
msgid "Menu Order"
|
3677 |
+
msgstr "Menü Reihenfolge"
|
3678 |
+
|
3679 |
+
#: views/admin/import/template/_other_template.php:285
|
3680 |
+
msgid "Dynamic Post Type"
|
3681 |
+
msgstr "Dynamischer Post Typ"
|
3682 |
+
|
3683 |
+
#: views/admin/import/template/_other_template.php:295
|
3684 |
+
msgid "If records in this import have different post types specify the slug of the desired post type here.\n"
|
3685 |
+
""
|
3686 |
+
msgstr "Falls die Einträge in diesem Import verschiedene Post Typen haben, geben Sie hier die Slug des gewünschten Post Typen an.\n"
|
3687 |
+
""
|
3688 |
+
|
3689 |
+
#: views/admin/import/template/_taxonomies_template.php:13
|
3690 |
+
msgid "Taxonomies, Categories, Tags"
|
3691 |
+
msgstr "Taxonomien, Kategorien, Tags"
|
3692 |
+
|
3693 |
+
#: views/admin/import/template/_taxonomies_template.php:17
|
3694 |
+
msgid "Show Hints"
|
3695 |
+
msgstr "Zeige Hinweise"
|
3696 |
+
|
3697 |
+
#: views/admin/import/template/_taxonomies_template.php:38
|
3698 |
+
msgid "Each %s has just one %s"
|
3699 |
+
msgstr "Jedes %s hat genau eine %s"
|
3700 |
+
|
3701 |
+
#: views/admin/import/template/_taxonomies_template.php:46
|
3702 |
+
#: views/admin/import/template/_taxonomies_template.php:70
|
3703 |
+
msgid "Try to match terms to existing child %s"
|
3704 |
+
msgstr "Versuche Begriffe mit bestehenden Kinder %s zusammen zu führen. "
|
3705 |
+
|
3706 |
+
#: views/admin/import/template/_taxonomies_template.php:51
|
3707 |
+
#: views/admin/import/template/_taxonomies_template.php:75
|
3708 |
+
msgid "Only assign %s to the imported %s, not the entire hierarchy"
|
3709 |
+
msgstr "Füge %s nur zu den importierten %s hinzu, nicht zu der vollständigen Hierarchie."
|
3710 |
+
|
3711 |
+
#: views/admin/import/template/_taxonomies_template.php:52
|
3712 |
+
#: views/admin/import/template/_taxonomies_template.php:76
|
3713 |
+
msgid "By default all categories above the matched category will also be assigned to the post. If enabled, only the imported category will be assigned to the post."
|
3714 |
+
msgstr "Standardmässig werden alle Kategorien über der zugeordneten Kategorie zu dem Post hinzugefügt. Wenn Sie das aktivieren, wird der Post nur zu der angegebenen Kategorie hinzugefügt."
|
3715 |
+
|
3716 |
+
#: views/admin/import/template/_taxonomies_template.php:60
|
3717 |
+
msgid "Each %s has multiple %s"
|
3718 |
+
msgstr "Jedes %s hat mehrere %s"
|
3719 |
+
|
3720 |
+
#: views/admin/import/template/_taxonomies_template.php:85
|
3721 |
+
msgid "%ss have hierarchical (parent/child) %s (i.e. Sports > Golf > Clubs > Putters)"
|
3722 |
+
msgstr "%ss haben Hierarchische (Eltern/Kind) %s (Bsp: Sport>Golf>Clubs>Putters)"
|
3723 |
+
|
3724 |
+
#: views/admin/import/template/_taxonomies_template.php:90
|
3725 |
+
msgid "An element in my file contains the entire hierarchy (i.e. you have an element with a value = Sports > Golf > Clubs > Putters)"
|
3726 |
+
msgstr "Ein Element in der Datei hat eine vollständige Hierarchie (Bsp: Ein Element hat den Wert = Sports > Golf > Clubs > Putters)"
|
3727 |
+
|
3728 |
+
#: views/admin/import/template/_taxonomies_template.php:127
|
3729 |
+
msgid "Only assign %s to the bottom level term in the hierarchy"
|
3730 |
+
msgstr "Füge %s nur an das unterste Level der Hierarchie hinzu."
|
3731 |
+
|
3732 |
+
#: views/admin/import/template/_taxonomies_template.php:132
|
3733 |
+
msgid "Separate hierarchy groups via symbol"
|
3734 |
+
msgstr "Teile die Hierarchie Gruppen durch das Symbol"
|
3735 |
+
|
3736 |
+
#: views/admin/import/template/_taxonomies_template.php:140
|
3737 |
+
msgid "Add Another Hierarchy Group"
|
3738 |
+
msgstr "Weitere Hierarchie Gruppen hinzufügen"
|
3739 |
+
|
3740 |
+
#: views/admin/import/template/_taxonomies_template.php:147
|
3741 |
+
msgid "Manually design the hierarchy with drag & drop"
|
3742 |
+
msgstr "Erstelle die Hierarchie manuell durch drag & drop"
|
3743 |
+
|
3744 |
+
#: views/admin/import/template/_taxonomies_template.php:149
|
3745 |
+
msgid "Drag the <img src=\"%s\" class=\"wpallimport-drag-icon\"/> to the right to create a child, drag up and down to re-order."
|
3746 |
+
msgstr "Ziehe das <img src=\"%s\" class=\"wpallimport-drag-icon\"/> nach rechts um ein Kind zu erstellen, ziehe rauf und runter zum Ordnen."
|
3747 |
+
|
3748 |
+
#: views/admin/import/template/_taxonomies_template.php:215
|
3749 |
+
msgid "Add Another Row"
|
3750 |
+
msgstr "Eine weitere Zeile hinzufügen"
|
3751 |
+
|
3752 |
+
#: views/admin/import/template/_taxonomies_template.php:227
|
3753 |
+
msgid "Enable Mapping for %s"
|
3754 |
+
msgstr "Aktiviere Zuordnung für %s"
|
3755 |
+
|
3756 |
+
#: views/admin/import/template/_taxonomies_template.php:296
|
3757 |
+
msgid "Add Another Rule"
|
3758 |
+
msgstr "Eine weitere Regel hinzufügen"
|
3759 |
+
|
3760 |
+
#: views/admin/import/template/_taxonomies_template.php:306
|
3761 |
+
msgid "Apply mapping rules before splitting via separator symbol"
|
3762 |
+
msgstr "Wende Regeln für Zuordnung an bevor eine Aufteilung mittels dem Separator Symbol erfolgt."
|
3763 |
+
|
3764 |
+
#: views/admin/import/template/_taxonomies_template.php:321
|
3765 |
+
msgid "Show \"private\" taxonomies"
|
3766 |
+
msgstr "Zeige \"Private\" Taxonomien"
|
3767 |
+
|
3768 |
+
#: views/admin/import/template/_taxonomies_template.php:332
|
3769 |
+
msgid "Taxonomies that don't already exist on your site will be created."
|
3770 |
+
msgstr "Taxonomien die noch nicht auf der Seite existieren werden erstellt."
|
3771 |
+
|
3772 |
+
#: views/admin/import/template/_taxonomies_template.php:333
|
3773 |
+
msgid "To import to existing parent taxonomies, use the existing taxonomy name or slug."
|
3774 |
+
msgstr "Zum importieren in existierende Eltern Taxonomien benutzen Sie bestehende Taxonomie Namen oder Slugs."
|
3775 |
+
|
3776 |
+
#: views/admin/import/template/_taxonomies_template.php:334
|
3777 |
+
msgid "To import to existing hierarchical taxonomies, create the entire hierarchy using the taxonomy names or slugs."
|
3778 |
+
msgstr "Um in existierende hierarchische Taxonomien zu importieren, erstellen Sie die gesamte Hierarchie und nutzen Sie die Taxonomien oder Slugs."
|
3779 |
+
|
3780 |
+
#: views/admin/import/template/_term_meta_template.php:27
|
3781 |
+
msgid "Your website is using Term Meta to store data for %s."
|
3782 |
+
msgstr ""
|
3783 |
+
|
3784 |
+
#: views/admin/import/template/_term_meta_template.php:30
|
3785 |
+
msgid "No Term Meta are present in your database for %s."
|
3786 |
+
msgstr ""
|
3787 |
+
|
3788 |
+
#: views/admin/import/template/_term_meta_template.php:156
|
3789 |
+
#: views/admin/import/template/_term_meta_template.php:536
|
3790 |
+
msgid "Add Term Meta"
|
3791 |
+
msgstr ""
|
3792 |
+
|
3793 |
+
#: views/admin/import/template/_term_other_template.php:21
|
3794 |
+
msgid "Parent Term"
|
3795 |
+
msgstr ""
|
3796 |
+
|
3797 |
+
#: views/admin/import/template/_term_other_template.php:33
|
3798 |
+
msgid "%s Slug"
|
3799 |
+
msgstr ""
|
3800 |
+
|
3801 |
+
#: views/admin/import/template/_term_other_template.php:36
|
3802 |
+
msgid "Set slug automatically"
|
3803 |
+
msgstr ""
|
3804 |
+
|
3805 |
+
#: views/admin/import/template/_term_other_template.php:40
|
3806 |
+
msgid "Set slug manually"
|
3807 |
+
msgstr ""
|
3808 |
+
|
3809 |
+
#: views/admin/import/template/_term_other_template.php:43
|
3810 |
+
msgid "Term Slug"
|
3811 |
+
msgstr ""
|
3812 |
+
|
3813 |
+
#: views/admin/import/template/_term_other_template.php:44
|
3814 |
+
msgid "The term slug must be unique. If the slug is already in use by another term, WP All Import will add a number to the end of the slug."
|
3815 |
+
msgstr ""
|
3816 |
+
|
3817 |
+
#: views/admin/license/index.php:3
|
3818 |
+
msgid "WP All Import Licenses"
|
3819 |
+
msgstr "WP All Import Lizenzen"
|
3820 |
+
|
3821 |
+
#: views/admin/license/index.php:23 views/admin/settings/index.php:163
|
3822 |
+
msgid "Active"
|
3823 |
+
msgstr "Aktiv"
|
3824 |
+
|
3825 |
+
#: views/admin/license/index.php:24
|
3826 |
+
msgid "Deactivate License"
|
3827 |
+
msgstr "Deaktiviere Lizenz"
|
3828 |
+
|
3829 |
+
#: views/admin/license/index.php:26 views/admin/settings/index.php:165
|
3830 |
+
msgid "Activate License"
|
3831 |
+
msgstr "Aktiviere Lizenz"
|
3832 |
+
|
3833 |
+
#: views/admin/manage/bulk.php:1
|
3834 |
+
msgid "Bulk Delete Imports"
|
3835 |
+
msgstr "Alle Importe löschen (Massen Aktion)"
|
3836 |
+
|
3837 |
+
#: views/admin/manage/bulk.php:10
|
3838 |
+
msgid "Are you sure you want to delete <strong>%s</strong> selected %s?"
|
3839 |
+
msgstr "Sind Sie sicher dass Sie das selektierte <strong>%s</strong> löschen wollen %s?"
|
3840 |
+
|
3841 |
+
#: views/admin/manage/bulk.php:12
|
3842 |
+
msgid "Delete associated posts as well"
|
3843 |
+
msgstr "Lösche auch assoziierte Posts"
|
3844 |
+
|
3845 |
+
#: views/admin/manage/bulk.php:17 views/admin/manage/delete.php:19
|
3846 |
+
msgid "Delete associated images from media gallery"
|
3847 |
+
msgstr "Lösche auch assoziierte Bilder aus der Medien Galerie"
|
3848 |
+
|
3849 |
+
#: views/admin/manage/bulk.php:22 views/admin/manage/delete.php:24
|
3850 |
+
msgid "Delete associated files from media gallery"
|
3851 |
+
msgstr "Lösche auch assoziierte Dateien aus der Media Galerie"
|
3852 |
+
|
3853 |
+
#: views/admin/manage/bulk.php:31 views/admin/manage/delete.php:32
|
3854 |
+
msgid "<p class=\"wpallimport-delete-posts-warning\"><strong>Important</strong>: this import was created automatically by WP All Export. All posts exported by the \"%s\" export job have been automatically associated with this import.</p>"
|
3855 |
+
msgstr "<p class=\"wpallimport-delete-posts-warning\"><strong>Wichtig</strong>: dieser Import wurde automatisch erstellt von WP All Export. Alle Posts die von \"%s\" exportiert wurden, wurden automatisch assoziiert mit diesem Import.</p>"
|
3856 |
+
|
3857 |
+
#: views/admin/manage/delete.php:1
|
3858 |
+
msgid "Delete Import"
|
3859 |
+
msgstr "Lösche Import"
|
3860 |
+
|
3861 |
+
#: views/admin/manage/delete.php:8
|
3862 |
+
msgid "Delete import"
|
3863 |
+
msgstr "Import löschen"
|
3864 |
+
|
3865 |
+
#: views/admin/manage/delete.php:13
|
3866 |
+
msgid "Delete %s created by %s"
|
3867 |
+
msgstr ""
|
3868 |
+
|
3869 |
+
#: views/admin/manage/delete.php:56
|
3870 |
+
msgid "Are you sure you want to delete "
|
3871 |
+
msgstr "Sind Sie sicher, dass Sie "
|
3872 |
+
|
3873 |
+
#: views/admin/manage/delete.php:56
|
3874 |
+
msgid "the <strong>%s</strong> import"
|
3875 |
+
msgstr "den <strong>%s</strong> löschen wollen"
|
3876 |
+
|
3877 |
+
#: views/admin/manage/index.php:18 views/admin/manage/index.php:20
|
3878 |
+
msgid "Search Imports"
|
3879 |
+
msgstr "Suche Imports"
|
3880 |
+
|
3881 |
+
#: views/admin/manage/index.php:28
|
3882 |
+
msgid "File"
|
3883 |
+
msgstr "Datei"
|
3884 |
+
|
3885 |
+
#: views/admin/manage/index.php:31
|
3886 |
+
msgid "Info & Options"
|
3887 |
+
msgstr "Info & Optionen"
|
3888 |
+
|
3889 |
+
#: views/admin/manage/index.php:100
|
3890 |
+
msgid "No previous imports found. <a href=\"%s\">Start a new import...</a>"
|
3891 |
+
msgstr "Keine vorherigen Imports gefunden. <a href=\"%s\">Starte einen neuen Import...</a>"
|
3892 |
+
|
3893 |
+
#: views/admin/manage/index.php:182
|
3894 |
+
msgid "Edit Import"
|
3895 |
+
msgstr "Ändere Import"
|
3896 |
+
|
3897 |
+
#: views/admin/manage/index.php:187
|
3898 |
+
msgid "Import Settings"
|
3899 |
+
msgstr "Import Einstellungen"
|
3900 |
+
|
3901 |
+
#: views/admin/manage/index.php:228
|
3902 |
+
msgid "triggered with cron"
|
3903 |
+
msgstr "Ausgelöst von cron"
|
3904 |
+
|
3905 |
+
#: views/admin/manage/index.php:235 views/admin/manage/index.php:250
|
3906 |
+
#: views/admin/manage/index.php:264
|
3907 |
+
msgid "last activity %s ago"
|
3908 |
+
msgstr "Letzte Aktivität vor %s "
|
3909 |
+
|
3910 |
+
#: views/admin/manage/index.php:242
|
3911 |
+
msgid "currently processing with cron"
|
3912 |
+
msgstr "cron Bearbeitung in Gang"
|
3913 |
+
|
3914 |
+
#: views/admin/manage/index.php:257
|
3915 |
+
msgid "Import currently in progress"
|
3916 |
+
msgstr "Import Bearbeitung in Gang"
|
3917 |
+
|
3918 |
+
#: views/admin/manage/index.php:271 views/admin/manage/index.php:275
|
3919 |
+
msgid "Import Attempt at %s"
|
3920 |
+
msgstr "Import Versuch bei %s"
|
3921 |
+
|
3922 |
+
#: views/admin/manage/index.php:276
|
3923 |
+
msgid "Import failed, please check logs"
|
3924 |
+
msgstr "Import fehlgeschlagen, Bitte Log überprüfen"
|
3925 |
+
|
3926 |
+
#: views/admin/manage/index.php:295
|
3927 |
+
msgid "Last run: %s"
|
3928 |
+
msgstr "Letzter Lauf: %s"
|
3929 |
+
|
3930 |
+
#: views/admin/manage/index.php:295
|
3931 |
+
msgid "never"
|
3932 |
+
msgstr "Nie"
|
3933 |
+
|
3934 |
+
#: views/admin/manage/index.php:296
|
3935 |
+
msgid "%d %s created"
|
3936 |
+
msgstr "%d %s erstellt"
|
3937 |
+
|
3938 |
+
#: views/admin/manage/index.php:297
|
3939 |
+
msgid "%d updated, %d skipped, %d deleted"
|
3940 |
+
msgstr "%d aktualisiert, %d übersprungen, %d gelöscht"
|
3941 |
+
|
3942 |
+
#: views/admin/manage/index.php:304
|
3943 |
+
msgid "settings edited since last run"
|
3944 |
+
msgstr "Einstellungen geändert seit letztem Lauf"
|
3945 |
+
|
3946 |
+
#: views/admin/manage/index.php:316 views/admin/manage/scheduling.php:2
|
3947 |
+
msgid "Cron Scheduling"
|
3948 |
+
msgstr "Cron Geplant"
|
3949 |
+
|
3950 |
+
#: views/admin/manage/index.php:318
|
3951 |
+
msgid "History Logs"
|
3952 |
+
msgstr "Chronik Log"
|
3953 |
+
|
3954 |
+
#: views/admin/manage/index.php:328
|
3955 |
+
msgid "Run Import"
|
3956 |
+
msgstr "Starte Import"
|
3957 |
+
|
3958 |
+
#: views/admin/manage/index.php:330
|
3959 |
+
msgid "Cancel Cron"
|
3960 |
+
msgstr "Cron Abbrechen"
|
3961 |
+
|
3962 |
+
#: views/admin/manage/index.php:332
|
3963 |
+
msgid "Cancel"
|
3964 |
+
msgstr "Abbrechen"
|
3965 |
+
|
3966 |
+
#: views/admin/manage/scheduling.php:8
|
3967 |
+
msgid "To schedule an import, you must create two cron jobs in your web hosting control panel. One cron job will be used to run the Trigger script, the other to run the Execution script."
|
3968 |
+
msgstr "Um einen Import zu planen, müssen Sie zwei Cron Jobs in Ihrem web Hosting Bedienfeld erstellen. Ein Cron Job wird genutzt um das auslöse Skript zu starten, das andere um das Ausführende Skript zu starten."
|
3969 |
+
|
3970 |
+
#: views/admin/manage/scheduling.php:19
|
3971 |
+
msgid "Trigger Script"
|
3972 |
+
msgstr "Auslösendes Skript"
|
3973 |
+
|
3974 |
+
#: views/admin/manage/scheduling.php:21
|
3975 |
+
msgid "Every time you want to schedule the import, run the trigger script."
|
3976 |
+
msgstr "Jedes mal wenn Sie den Import planen wollen, starten Sie das Auslöse Skript."
|
3977 |
+
|
3978 |
+
#: views/admin/manage/scheduling.php:23
|
3979 |
+
msgid "To schedule the import to run once every 24 hours, run the trigger script every 24 hours. Most hosts require you to use “wget” to access a URL. Ask your host for details."
|
3980 |
+
msgstr "Um den Import einmal in 24 Stunden zu planen, starten Sie das Auslöse Skript alle 24 Stunden. Die meisten Hosts erlauben \"wget\" für den Zugriff auf eine URL. Fragen Sie Ihren Host für Details."
|
3981 |
+
|
3982 |
+
#: views/admin/manage/scheduling.php:25 views/admin/manage/scheduling.php:37
|
3983 |
+
msgid "Example:"
|
3984 |
+
msgstr "Beispiel:"
|
3985 |
+
|
3986 |
+
#: views/admin/manage/scheduling.php:29
|
3987 |
+
msgid "Execution Script"
|
3988 |
+
msgstr "Ausführende Skript"
|
3989 |
+
|
3990 |
+
#: views/admin/manage/scheduling.php:31
|
3991 |
+
msgid "The Execution script actually executes the import, once it has been triggered with the Trigger script."
|
3992 |
+
msgstr "Das ausführende Skript erledigt den Import, wenn es vom auslösenden Skript gestartet wurde."
|
3993 |
+
|
3994 |
+
#: views/admin/manage/scheduling.php:33
|
3995 |
+
msgid "It processes in iteration (only importing a few records each time it runs) to optimize server load. It is recommended you run the execution script every 2 minutes."
|
3996 |
+
msgstr "Es bearbeitet in Schleifendurchläufen (importiert nur ein paar Datensätze mit jedem Durchlauf) zur Optimierung der Serverlast. Es wird empfohlen das Ausführende Skript alle 2 Minuten zu starten."
|
3997 |
+
|
3998 |
+
#: views/admin/manage/scheduling.php:35
|
3999 |
+
msgid "It also operates this way in case of unexpected crashes by your web host. If it crashes before the import is finished, the next run of the cron job two minutes later will continue it where it left off, ensuring reliability."
|
4000 |
+
msgstr "So funktioniert es auch wenn unerwartete Abstürze Ihres Hosts auftreten. Wenn es abstürzt bevor der Import fertig ist, wird der nächste Lauf des cron Jobs zwei Minuten später dort weiter machen, wo der vorherige aufgehört hat."
|
4001 |
+
|
4002 |
+
#: views/admin/manage/scheduling.php:41
|
4003 |
+
msgid "Notes"
|
4004 |
+
msgstr "Hinweis"
|
4005 |
+
|
4006 |
+
#: views/admin/manage/scheduling.php:44
|
4007 |
+
msgid "Your web host may require you to use a command other than wget, although wget is most common. In this case, you must asking your web hosting provider for help."
|
4008 |
+
msgstr "Ihr Webhost benötigt evtl einen anderen Befehl als \"wget\", obwohl \"wget\" das am häufigsten genutzte ist. In diesem Fall müssen Sie Ihren Webhost Anbieter um Hilfe fragen."
|
4009 |
+
|
4010 |
+
#: views/admin/manage/scheduling.php:54
|
4011 |
+
msgid "To schedule this import with a cron job, you must use the \"Download from URL\" option on the Import Settings screen of WP All Import."
|
4012 |
+
msgstr "Um einen Import mit einem Cron Job zu planen, müssen Sie \"Von URL Herunterladen\" wählen. Diese finden Sie in den Import Einstellungen von WP All Import."
|
4013 |
+
|
4014 |
+
#: views/admin/manage/scheduling.php:57
|
4015 |
+
msgid "Go to Import Settings now..."
|
4016 |
+
msgstr "Gehe zu Import Einstellungen..."
|
4017 |
+
|
4018 |
+
#: views/admin/manage/update.php:1
|
4019 |
+
msgid "Update Import"
|
4020 |
+
msgstr "Aktualisiere Import"
|
4021 |
+
|
4022 |
+
#: views/admin/manage/update.php:9
|
4023 |
+
msgid "Are you sure you want to update <strong>%s</strong> import?"
|
4024 |
+
msgstr "Sind Sie sicher dass Sie den Import <strong>%s</strong> aktualisieren wollen?"
|
4025 |
+
|
4026 |
+
#: views/admin/manage/update.php:10
|
4027 |
+
msgid "Source path is <strong>%s</strong>"
|
4028 |
+
msgstr "Quellpfad ist <strong>%s</strong>"
|
4029 |
+
|
4030 |
+
#: views/admin/manage/update.php:21
|
4031 |
+
msgid "Update feature is not available for this import since it has no external path linked."
|
4032 |
+
msgstr "Funktion für Aktualisierung ist nicht verfügbar für diesen Import, da es keinen externen Pfad verlinkt hat."
|
4033 |
+
|
4034 |
+
#: views/admin/settings/index.php:18
|
4035 |
+
msgid "Import/Export Templates"
|
4036 |
+
msgstr "Importiere/Exportiere Vorlagen"
|
4037 |
+
|
4038 |
+
#: views/admin/settings/index.php:32
|
4039 |
+
msgid "Delete Selected"
|
4040 |
+
msgstr "Lösche Ausgewählte"
|
4041 |
+
|
4042 |
+
#: views/admin/settings/index.php:33
|
4043 |
+
msgid "Export Selected"
|
4044 |
+
msgstr "Exportiere Ausgewählte"
|
4045 |
+
|
4046 |
+
#: views/admin/settings/index.php:36
|
4047 |
+
msgid "There are no templates saved"
|
4048 |
+
msgstr "Es sind keine Vorlagen gespeichert"
|
4049 |
+
|
4050 |
+
#: views/admin/settings/index.php:41
|
4051 |
+
msgid "Import Templates"
|
4052 |
+
msgstr "Importiere Templates"
|
4053 |
+
|
4054 |
+
#: views/admin/settings/index.php:49
|
4055 |
+
msgid "Cron Imports"
|
4056 |
+
msgstr "Cron Importieren"
|
4057 |
+
|
4058 |
+
#: views/admin/settings/index.php:54
|
4059 |
+
msgid "Secret Key"
|
4060 |
+
msgstr "Geheimer Schlüssel"
|
4061 |
+
|
4062 |
+
#: views/admin/settings/index.php:57
|
4063 |
+
msgid "Changing this will require you to re-create your existing cron jobs."
|
4064 |
+
msgstr "Wenn Sie das ändern, müssen Sie Ihre existierenden Cron Jobs neu erstellen."
|
4065 |
+
|
4066 |
+
#: views/admin/settings/index.php:61
|
4067 |
+
msgid "Cron Processing Time Limit"
|
4068 |
+
msgstr "Cron Bearbeitung Zeit Limit"
|
4069 |
+
|
4070 |
+
#: views/admin/settings/index.php:64
|
4071 |
+
msgid "Leave blank to use your server's limit on script run times."
|
4072 |
+
msgstr "Leer lassen um des Servers Limit für die Skript Läufe zu nutzen."
|
4073 |
+
|
4074 |
+
#: views/admin/settings/index.php:68
|
4075 |
+
msgid "Cron Sleep"
|
4076 |
+
msgstr "Cron Schläft"
|
4077 |
+
|
4078 |
+
#: views/admin/settings/index.php:71
|
4079 |
+
msgid "Sleep the specified number of seconds between each post created, updated, or deleted with cron. Leave blank to not sleep. Only necessary on servers that are slowed down by the cron job because they have very minimal processing power and resources."
|
4080 |
+
msgstr "Schlafe die bestimmte Zahl von Sekunden zwischen jedem erstellten, aktualisierten oder gelöschten Post. Leer lassen um nicht zu schlafen. Nur nötig auf Servern die durch den Cron verlangsamt werden da sie zu wenig Prozessorleistung und Ressourcen haben."
|
4081 |
+
|
4082 |
+
#: views/admin/settings/index.php:84 views/admin/settings/index.php:87
|
4083 |
+
msgid "Secure Mode"
|
4084 |
+
msgstr "Quellen Art"
|
4085 |
+
|
4086 |
+
#: views/admin/settings/index.php:89
|
4087 |
+
msgid "Randomize folder names"
|
4088 |
+
msgstr "Verzeichnis Namen zufällig anordnen"
|
4089 |
+
|
4090 |
+
#: views/admin/settings/index.php:95
|
4091 |
+
msgid "Imported files, chunks, logs and temporary files will be placed in a folder with a randomized name inside of %s."
|
4092 |
+
msgstr "Importierte Dateien, Datenblöcke, Logs und temporäre Dateien werden in ein Verzeichnis mit zufällig angeordneten Namen geschrieben %s.."
|
4093 |
+
|
4094 |
+
#: views/admin/settings/index.php:100
|
4095 |
+
msgid "Log Storage"
|
4096 |
+
msgstr "Log Speicher"
|
4097 |
+
|
4098 |
+
#: views/admin/settings/index.php:103
|
4099 |
+
msgid "Number of logs to store for each import. Enter 0 to never store logs."
|
4100 |
+
msgstr "Anzahl an Logs die für jeden Import gespeichert werden. Geben Sie 0 ein um niemals Logs zu speichern."
|
4101 |
+
|
4102 |
+
#: views/admin/settings/index.php:107
|
4103 |
+
msgid "Clean Up Temp Files"
|
4104 |
+
msgstr "Räume temporäre Dateien auf"
|
4105 |
+
|
4106 |
+
#: views/admin/settings/index.php:109
|
4107 |
+
msgid "Clean Up"
|
4108 |
+
msgstr "Aufräumen"
|
4109 |
+
|
4110 |
+
#: views/admin/settings/index.php:110
|
4111 |
+
msgid "Attempt to remove temp files left over by imports that were improperly terminated."
|
4112 |
+
msgstr "Versuche die temporären Dateien zu entfernen, die von unsachgemäss beendeten Imports übrig blieben."
|
4113 |
+
|
4114 |
+
#: views/admin/settings/index.php:118
|
4115 |
+
msgid "Advanced Settings"
|
4116 |
+
msgstr "Erweiterte Einstellungen"
|
4117 |
+
|
4118 |
+
#: views/admin/settings/index.php:123
|
4119 |
+
msgid "Chunk Size"
|
4120 |
+
msgstr "Datenblock Grösse "
|
4121 |
+
|
4122 |
+
#: views/admin/settings/index.php:126
|
4123 |
+
msgid "Split file into chunks containing the specified number of records."
|
4124 |
+
msgstr "Teile Datei in Datenblöcke die die bestimmte Zahl an Datensätzen enthalten."
|
4125 |
+
|
4126 |
+
#: views/admin/settings/index.php:130
|
4127 |
+
msgid "WP_IMPORTING"
|
4128 |
+
msgstr "WP_IMPORTIERT"
|
4129 |
+
|
4130 |
+
#: views/admin/settings/index.php:134
|
4131 |
+
msgid "Enable WP_IMPORTING"
|
4132 |
+
msgstr "Aktiviere WP_IMPORTIERT"
|
4133 |
+
|
4134 |
+
#: views/admin/settings/index.php:136
|
4135 |
+
msgid "Setting this constant avoids triggering pingback."
|
4136 |
+
msgstr "Wenn Sie diese Einstellung aktivieren, verhindern Sie die Auslösung eines pingback."
|
4137 |
+
|
4138 |
+
#: views/admin/settings/index.php:140
|
4139 |
+
msgid "Add Port To URL"
|
4140 |
+
msgstr "Füge Port zu URL hinzu"
|
4141 |
+
|
4142 |
+
#: views/admin/settings/index.php:143
|
4143 |
+
msgid "Specify the port number to add if you're having problems continuing to Step 2 and are running things on a custom port. Default is blank."
|
4144 |
+
msgstr "Bestimmen Sie die hinzuzufügende Port Nummer wenn Sie Probleme haben zu Schritt 2 zu gelangen und dinge auf einem individuellen Port laufen lassen. Standard ist leer."
|
4145 |
+
|
4146 |
+
#: views/admin/settings/index.php:150
|
4147 |
+
msgid "Licenses"
|
4148 |
+
msgstr "Lizenzen"
|
4149 |
+
|
4150 |
+
#: views/admin/settings/index.php:157
|
4151 |
+
msgid "License Key"
|
4152 |
+
msgstr "Lizenz Schlüssel"
|
4153 |
+
|
4154 |
+
#: views/admin/settings/index.php:170
|
4155 |
+
msgid "A license key is required to access plugin updates. You can use your license key on an unlimited number of websites. Do not distribute your license key to 3rd parties. You can get your license key in the <a target=\"_blank\" href=\"http://www.wpallimport.com/portal\">customer portal</a>."
|
4156 |
+
msgstr "Ein Lizenz Schlüssel wird benötigt um Zugang auf Plugin Updates zu haben. Sie können Ihren Lizenz Schlüssel auf einer unbestimmten Anzahl von Webseiten nutzen. Geben Sie Ihren Schlüssel nicht an dritte weiter. Sie können Ihren Lizenz Schlüssel im <a target=\"_blank\" href=\"http://www.wpallimport.com/portal\">Kunden Portal</a> bekommen."
|
4157 |
+
|
4158 |
+
#: views/admin/settings/index.php:177
|
4159 |
+
msgid "Force Stream Reader"
|
4160 |
+
msgstr ""
|
4161 |
+
|
4162 |
+
#: views/admin/settings/index.php:182
|
4163 |
+
msgid "Force WP All Import to use StreamReader instead of XMLReader to parse all import files"
|
4164 |
+
msgstr ""
|
4165 |
+
|
4166 |
+
#: views/admin/settings/index.php:186
|
4167 |
+
msgid "Enable Stream Reader"
|
4168 |
+
msgstr ""
|
4169 |
+
|
4170 |
+
#: wp-all-import-pro.php:20
|
4171 |
+
msgid "Please de-activate and remove the free version of WP All Import before activating the paid version."
|
4172 |
+
msgstr "Bitte deaktivieren und entfernen Sie die freie Version von WP All Import bevor Sie die bezahlte Version aktivieren."
|
4173 |
+
|
4174 |
+
#: wp-all-import-pro.php:332
|
4175 |
+
msgid "To enable updates, please enter your license key on the <a href=\"%s\">Licenses</a> page. If you don't have a licence key, please see <a href=\"%s\">details & pricing</a>"
|
4176 |
+
msgstr "Um Updates zu aktivieren, geben Sie bitte Ihren Lizenz Schlüssel auf der <a href=\"%s\">Lizenzen</a> Seite ein. Wenn Sie noch keinen Lizenz Schlüssel haben, finden Sie hier <a href=\"%s\">Details und Preise</a>"
|
4177 |
+
|
4178 |
+
#: wp-all-import-pro.php:819 wp-all-import-pro.php:823
|
4179 |
+
msgid "Uploads folder %s must be writable"
|
4180 |
+
msgstr "Ordner %s muss beschreibbar sein"
|
4181 |
+
|
4182 |
+
#: wp-all-import-pro.php:960
|
4183 |
+
msgid "<b>%s Plugin</b>: Current sql user %s doesn't have ALTER privileges"
|
4184 |
+
msgstr "<b>%s Plugin:</b> Aktuelle SQL-Benutzer%s verfügen nicht über Änderungsrechte"
|
4185 |
+
|
4186 |
+
#. Plugin Name of the plugin/theme
|
4187 |
+
#:
|
4188 |
+
msgid "WP All Import Pro"
|
4189 |
+
msgstr "WP All Import"
|
4190 |
+
|
4191 |
+
#. Plugin URI of the plugin/theme
|
4192 |
+
#:
|
4193 |
+
msgid "http://www.wpallimport.com/"
|
4194 |
+
msgstr ""
|
4195 |
+
|
4196 |
+
#. Description of the plugin/theme
|
4197 |
+
#:
|
4198 |
+
msgid "The most powerful solution for importing XML and CSV files to WordPress. Import to Posts, Pages, and Custom Post Types. Support for imports that run on a schedule, ability to update existing imports, and much more."
|
4199 |
+
msgstr "Die leistungsstärkste Lösung für den Import von XML und CSV-Dateien in Wordpress. Importiert zu Beiträgen, Seiten, und benutzerdefinierten Beitragstypen. Unterstützung für Importe nach einem Zeitplan, die Fähigkeit, bestehende Importe zu aktualisieren und vieles mehr."
|
4200 |
+
|
4201 |
+
#. Author of the plugin/theme
|
4202 |
+
#:
|
4203 |
+
msgid "Soflyy"
|
4204 |
+
msgstr "Soflyy"
|
4205 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
i18n/languages/wp_all_import_plugin-de_DE.mo
CHANGED
Binary file
|
i18n/languages/wp_all_import_plugin-de_DE.po
CHANGED
@@ -1,4943 +1,4202 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"
|
4 |
-
"
|
5 |
-
"
|
6 |
-
"
|
7 |
-
"
|
8 |
-
"Language
|
9 |
-
"
|
10 |
-
|
11 |
-
|
12 |
-
"
|
13 |
-
"
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
"
|
18 |
-
"
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
msgid ""
|
35 |
-
"
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
#:
|
46 |
-
msgid "All
|
47 |
-
msgstr ""
|
48 |
-
|
49 |
-
#:
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
#:
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
#:
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
#:
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
#:
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
#:
|
92 |
-
|
93 |
-
msgid "
|
94 |
-
msgstr ""
|
95 |
-
|
96 |
-
#:
|
97 |
-
#:
|
98 |
-
#:
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
#:
|
105 |
-
msgid "
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
"
|
118 |
-
"
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
msgstr
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
msgstr
|
135 |
-
|
136 |
-
#:
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
#:
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
#: /
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
#:
|
166 |
-
msgid "
|
167 |
-
msgstr ""
|
168 |
-
|
169 |
-
#:
|
170 |
-
|
171 |
-
msgid "
|
172 |
-
msgstr ""
|
173 |
-
|
174 |
-
#:
|
175 |
-
|
176 |
-
msgid "
|
177 |
-
msgstr ""
|
178 |
-
|
179 |
-
#:
|
180 |
-
|
181 |
-
msgid "
|
182 |
-
msgstr ""
|
183 |
-
|
184 |
-
#:
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
"
|
198 |
-
"
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
"
|
206 |
-
msgstr ""
|
207 |
-
|
208 |
-
#:
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
msgstr
|
227 |
-
|
228 |
-
#:
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
msgid "Please verify that the
|
242 |
-
msgstr ""
|
243 |
-
|
244 |
-
#:
|
245 |
-
msgid "
|
246 |
-
msgstr ""
|
247 |
-
|
248 |
-
#:
|
249 |
-
msgid "
|
250 |
-
msgstr ""
|
251 |
-
|
252 |
-
#:
|
253 |
-
msgid "
|
254 |
-
msgstr ""
|
255 |
-
|
256 |
-
#:
|
257 |
-
msgid "
|
258 |
-
msgstr ""
|
259 |
-
|
260 |
-
#:
|
261 |
-
msgid "
|
262 |
-
msgstr ""
|
263 |
-
|
264 |
-
#:
|
265 |
-
msgid "
|
266 |
-
msgstr ""
|
267 |
-
|
268 |
-
#:
|
269 |
-
msgid "
|
270 |
-
msgstr ""
|
271 |
-
|
272 |
-
#:
|
273 |
-
msgid "
|
274 |
-
msgstr ""
|
275 |
-
|
276 |
-
#:
|
277 |
-
msgid "
|
278 |
-
msgstr ""
|
279 |
-
|
280 |
-
#:
|
281 |
-
msgid "
|
282 |
-
msgstr ""
|
283 |
-
|
284 |
-
#:
|
285 |
-
msgid "
|
286 |
-
msgstr ""
|
287 |
-
|
288 |
-
#:
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
msgid ""
|
298 |
-
"
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
#:
|
309 |
-
#:
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
#:
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
#:
|
319 |
-
#:
|
320 |
-
|
321 |
-
msgid "
|
322 |
-
msgstr ""
|
323 |
-
|
324 |
-
#:
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
#:
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
msgstr ""
|
333 |
-
|
334 |
-
#:
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
#:
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
#:
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
#:
|
353 |
-
msgid "
|
354 |
-
msgstr ""
|
355 |
-
|
356 |
-
#:
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
#:
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
#:
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
#:
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
#:
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
#:
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
"
|
384 |
-
"
|
385 |
-
|
386 |
-
|
387 |
-
#:
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
"
|
398 |
-
"
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
#:
|
421 |
-
msgid "
|
422 |
-
msgstr ""
|
423 |
-
|
424 |
-
#:
|
425 |
-
msgid "
|
426 |
-
msgstr ""
|
427 |
-
|
428 |
-
#:
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
#:
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
"
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
"
|
455 |
-
"
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
"
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
msgid "
|
464 |
-
msgstr "
|
465 |
-
|
466 |
-
#:
|
467 |
-
|
468 |
-
msgid "<
|
469 |
-
msgstr "<
|
470 |
-
|
471 |
-
#:
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
#: /
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
"
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
msgid ""
|
513 |
-
"
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
"
|
522 |
-
msgstr "
|
523 |
-
|
524 |
-
#:
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
"
|
529 |
-
msgstr "
|
530 |
-
|
531 |
-
#:
|
532 |
-
|
533 |
-
msgid ""
|
534 |
-
"
|
535 |
-
|
536 |
-
|
537 |
-
"
|
538 |
-
msgstr ""
|
539 |
-
|
540 |
-
|
541 |
-
"
|
542 |
-
"
|
543 |
-
|
544 |
-
#:
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
|
555 |
-
|
556 |
-
#:
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
#: /
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
#:
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
#:
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
#:
|
573 |
-
|
574 |
-
|
575 |
-
|
576 |
-
#:
|
577 |
-
msgid "
|
578 |
-
msgstr "
|
579 |
-
|
580 |
-
#:
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
-
#:
|
597 |
-
msgid "
|
598 |
-
msgstr "
|
599 |
-
|
600 |
-
#:
|
601 |
-
msgid "
|
602 |
-
msgstr "
|
603 |
-
|
604 |
-
#:
|
605 |
-
|
606 |
-
|
607 |
-
|
608 |
-
|
609 |
-
|
610 |
-
|
611 |
-
|
612 |
-
|
613 |
-
|
614 |
-
|
615 |
-
|
616 |
-
|
617 |
-
|
618 |
-
|
619 |
-
|
620 |
-
|
621 |
-
msgid "
|
622 |
-
msgstr "
|
623 |
-
|
624 |
-
#:
|
625 |
-
|
626 |
-
|
627 |
-
|
628 |
-
|
629 |
-
|
630 |
-
|
631 |
-
|
632 |
-
|
633 |
-
|
634 |
-
|
635 |
-
|
636 |
-
|
637 |
-
|
638 |
-
|
639 |
-
|
640 |
-
|
641 |
-
|
642 |
-
|
643 |
-
|
644 |
-
|
645 |
-
|
646 |
-
|
647 |
-
|
648 |
-
|
649 |
-
|
650 |
-
|
651 |
-
msgid "
|
652 |
-
msgstr "
|
653 |
-
|
654 |
-
#:
|
655 |
-
|
656 |
-
|
657 |
-
|
658 |
-
|
659 |
-
|
660 |
-
|
661 |
-
|
662 |
-
|
663 |
-
|
664 |
-
|
665 |
-
|
666 |
-
|
667 |
-
|
668 |
-
|
669 |
-
|
670 |
-
|
671 |
-
msgid "
|
672 |
-
msgstr "
|
673 |
-
|
674 |
-
#:
|
675 |
-
|
676 |
-
|
677 |
-
|
678 |
-
|
679 |
-
|
680 |
-
|
681 |
-
|
682 |
-
|
683 |
-
|
684 |
-
|
685 |
-
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
|
693 |
-
|
694 |
-
|
695 |
-
|
696 |
-
|
697 |
-
|
698 |
-
|
699 |
-
|
700 |
-
msgid "
|
701 |
-
msgstr "
|
702 |
-
|
703 |
-
#:
|
704 |
-
|
705 |
-
|
706 |
-
|
707 |
-
|
708 |
-
|
709 |
-
|
710 |
-
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
|
715 |
-
|
716 |
-
|
717 |
-
|
718 |
-
|
719 |
-
|
720 |
-
|
721 |
-
|
722 |
-
|
723 |
-
|
724 |
-
|
725 |
-
|
726 |
-
|
727 |
-
|
728 |
-
#:
|
729 |
-
|
730 |
-
|
731 |
-
|
732 |
-
#: /
|
733 |
-
|
734 |
-
|
735 |
-
|
736 |
-
|
737 |
-
|
738 |
-
|
739 |
-
|
740 |
-
#: /
|
741 |
-
msgid "
|
742 |
-
msgstr "
|
743 |
-
|
744 |
-
#:
|
745 |
-
|
746 |
-
|
747 |
-
|
748 |
-
|
749 |
-
|
750 |
-
|
751 |
-
|
752 |
-
#: /
|
753 |
-
#: /
|
754 |
-
|
755 |
-
|
756 |
-
|
757 |
-
|
758 |
-
|
759 |
-
|
760 |
-
|
761 |
-
#: /
|
762 |
-
|
763 |
-
|
764 |
-
|
765 |
-
|
766 |
-
|
767 |
-
|
768 |
-
|
769 |
-
#: /views/admin/import/template
|
770 |
-
|
771 |
-
|
772 |
-
|
773 |
-
#: /
|
774 |
-
#: /
|
775 |
-
#:
|
776 |
-
#:
|
777 |
-
#:
|
778 |
-
|
779 |
-
|
780 |
-
|
781 |
-
|
782 |
-
|
783 |
-
|
784 |
-
|
785 |
-
#: /
|
786 |
-
msgid "
|
787 |
-
msgstr "
|
788 |
-
|
789 |
-
#:
|
790 |
-
msgid "
|
791 |
-
msgstr "
|
792 |
-
|
793 |
-
#:
|
794 |
-
|
795 |
-
|
796 |
-
|
797 |
-
|
798 |
-
|
799 |
-
|
800 |
-
|
801 |
-
|
802 |
-
|
803 |
-
|
804 |
-
|
805 |
-
|
806 |
-
|
807 |
-
|
808 |
-
|
809 |
-
|
810 |
-
msgid "
|
811 |
-
msgstr "
|
812 |
-
|
813 |
-
#:
|
814 |
-
|
815 |
-
|
816 |
-
|
817 |
-
|
818 |
-
|
819 |
-
|
820 |
-
|
821 |
-
|
822 |
-
|
823 |
-
|
824 |
-
|
825 |
-
#:
|
826 |
-
|
827 |
-
|
828 |
-
|
829 |
-
|
830 |
-
|
831 |
-
|
832 |
-
|
833 |
-
|
834 |
-
"
|
835 |
-
"
|
836 |
-
|
837 |
-
|
838 |
-
"
|
839 |
-
|
840 |
-
|
841 |
-
|
842 |
-
msgid "
|
843 |
-
msgstr "
|
844 |
-
|
845 |
-
#:
|
846 |
-
|
847 |
-
|
848 |
-
|
849 |
-
|
850 |
-
|
851 |
-
|
852 |
-
|
853 |
-
|
854 |
-
|
855 |
-
|
856 |
-
|
857 |
-
|
858 |
-
msgid "
|
859 |
-
msgstr "
|
860 |
-
|
861 |
-
#:
|
862 |
-
|
863 |
-
|
864 |
-
|
865 |
-
|
866 |
-
|
867 |
-
|
868 |
-
|
869 |
-
|
870 |
-
|
871 |
-
|
872 |
-
|
873 |
-
|
874 |
-
|
875 |
-
|
876 |
-
|
877 |
-
|
878 |
-
msgid "
|
879 |
-
msgstr "
|
880 |
-
|
881 |
-
#:
|
882 |
-
|
883 |
-
|
884 |
-
|
885 |
-
|
886 |
-
|
887 |
-
|
888 |
-
|
889 |
-
|
890 |
-
|
891 |
-
#:
|
892 |
-
#:
|
893 |
-
|
894 |
-
|
895 |
-
|
896 |
-
|
897 |
-
|
898 |
-
|
899 |
-
|
900 |
-
|
901 |
-
#:
|
902 |
-
|
903 |
-
|
904 |
-
|
905 |
-
|
906 |
-
|
907 |
-
|
908 |
-
|
909 |
-
|
910 |
-
|
911 |
-
|
912 |
-
|
913 |
-
|
914 |
-
|
915 |
-
"
|
916 |
-
|
917 |
-
|
918 |
-
|
919 |
-
"
|
920 |
-
|
921 |
-
|
922 |
-
|
923 |
-
|
924 |
-
|
925 |
-
|
926 |
-
|
927 |
-
|
928 |
-
|
929 |
-
|
930 |
-
|
931 |
-
|
932 |
-
"
|
933 |
-
"
|
934 |
-
|
935 |
-
|
936 |
-
"
|
937 |
-
"
|
938 |
-
|
939 |
-
#:
|
940 |
-
msgid "
|
941 |
-
|
942 |
-
|
943 |
-
|
944 |
-
|
945 |
-
|
946 |
-
"
|
947 |
-
"
|
948 |
-
|
949 |
-
#:
|
950 |
-
|
951 |
-
|
952 |
-
|
953 |
-
|
954 |
-
"
|
955 |
-
"
|
956 |
-
|
957 |
-
|
958 |
-
"
|
959 |
-
msgstr ""
|
960 |
-
|
961 |
-
|
962 |
-
"
|
963 |
-
"
|
964 |
-
|
965 |
-
|
966 |
-
|
967 |
-
#:
|
968 |
-
|
969 |
-
|
970 |
-
|
971 |
-
|
972 |
-
|
973 |
-
|
974 |
-
|
975 |
-
#:
|
976 |
-
|
977 |
-
|
978 |
-
|
979 |
-
|
980 |
-
|
981 |
-
|
982 |
-
|
983 |
-
|
984 |
-
|
985 |
-
|
986 |
-
|
987 |
-
|
988 |
-
"
|
989 |
-
|
990 |
-
|
991 |
-
|
992 |
-
|
993 |
-
|
994 |
-
|
995 |
-
|
996 |
-
|
997 |
-
|
998 |
-
|
999 |
-
|
1000 |
-
|
1001 |
-
|
1002 |
-
"
|
1003 |
-
"
|
1004 |
-
|
1005 |
-
|
1006 |
-
|
1007 |
-
"
|
1008 |
-
|
1009 |
-
|
1010 |
-
"
|
1011 |
-
"
|
1012 |
-
|
1013 |
-
|
1014 |
-
|
1015 |
-
|
1016 |
-
|
1017 |
-
|
1018 |
-
|
1019 |
-
|
1020 |
-
|
1021 |
-
|
1022 |
-
#:
|
1023 |
-
msgid "
|
1024 |
-
msgstr "
|
1025 |
-
|
1026 |
-
#:
|
1027 |
-
msgid "
|
1028 |
-
msgstr "
|
1029 |
-
|
1030 |
-
#:
|
1031 |
-
msgid "
|
1032 |
-
msgstr "
|
1033 |
-
|
1034 |
-
#:
|
1035 |
-
msgid "
|
1036 |
-
msgstr "
|
1037 |
-
|
1038 |
-
#:
|
1039 |
-
msgid "
|
1040 |
-
msgstr "
|
1041 |
-
|
1042 |
-
#:
|
1043 |
-
|
1044 |
-
|
1045 |
-
|
1046 |
-
#:
|
1047 |
-
|
1048 |
-
|
1049 |
-
|
1050 |
-
#:
|
1051 |
-
|
1052 |
-
|
1053 |
-
|
1054 |
-
|
1055 |
-
|
1056 |
-
|
1057 |
-
|
1058 |
-
|
1059 |
-
|
1060 |
-
|
1061 |
-
|
1062 |
-
|
1063 |
-
|
1064 |
-
|
1065 |
-
|
1066 |
-
|
1067 |
-
|
1068 |
-
|
1069 |
-
|
1070 |
-
#:
|
1071 |
-
|
1072 |
-
|
1073 |
-
|
1074 |
-
|
1075 |
-
|
1076 |
-
|
1077 |
-
|
1078 |
-
|
1079 |
-
|
1080 |
-
|
1081 |
-
|
1082 |
-
|
1083 |
-
|
1084 |
-
|
1085 |
-
|
1086 |
-
|
1087 |
-
|
1088 |
-
|
1089 |
-
|
1090 |
-
|
1091 |
-
|
1092 |
-
|
1093 |
-
"
|
1094 |
-
"
|
1095 |
-
|
1096 |
-
|
1097 |
-
|
1098 |
-
"
|
1099 |
-
|
1100 |
-
|
1101 |
-
"
|
1102 |
-
"
|
1103 |
-
|
1104 |
-
#:
|
1105 |
-
msgid ""
|
1106 |
-
|
1107 |
-
|
1108 |
-
|
1109 |
-
"
|
1110 |
-
"
|
1111 |
-
|
1112 |
-
|
1113 |
-
|
1114 |
-
"
|
1115 |
-
|
1116 |
-
|
1117 |
-
"
|
1118 |
-
"
|
1119 |
-
|
1120 |
-
|
1121 |
-
|
1122 |
-
|
1123 |
-
|
1124 |
-
|
1125 |
-
|
1126 |
-
|
1127 |
-
|
1128 |
-
|
1129 |
-
"
|
1130 |
-
msgstr ""
|
1131 |
-
|
1132 |
-
|
1133 |
-
|
1134 |
-
|
1135 |
-
|
1136 |
-
|
1137 |
-
|
1138 |
-
|
1139 |
-
|
1140 |
-
|
1141 |
-
"
|
1142 |
-
"
|
1143 |
-
|
1144 |
-
|
1145 |
-
"
|
1146 |
-
msgstr ""
|
1147 |
-
|
1148 |
-
|
1149 |
-
"
|
1150 |
-
|
1151 |
-
|
1152 |
-
|
1153 |
-
|
1154 |
-
|
1155 |
-
|
1156 |
-
|
1157 |
-
|
1158 |
-
|
1159 |
-
|
1160 |
-
|
1161 |
-
"
|
1162 |
-
"
|
1163 |
-
|
1164 |
-
#:
|
1165 |
-
msgid "
|
1166 |
-
msgstr "
|
1167 |
-
|
1168 |
-
#:
|
1169 |
-
msgid ""
|
1170 |
-
|
1171 |
-
|
1172 |
-
|
1173 |
-
|
1174 |
-
msgstr ""
|
1175 |
-
|
1176 |
-
|
1177 |
-
|
1178 |
-
|
1179 |
-
|
1180 |
-
#:
|
1181 |
-
msgid ""
|
1182 |
-
"
|
1183 |
-
|
1184 |
-
|
1185 |
-
"
|
1186 |
-
msgstr ""
|
1187 |
-
|
1188 |
-
|
1189 |
-
"
|
1190 |
-
"
|
1191 |
-
|
1192 |
-
|
1193 |
-
|
1194 |
-
|
1195 |
-
|
1196 |
-
|
1197 |
-
|
1198 |
-
|
1199 |
-
|
1200 |
-
|
1201 |
-
"
|
1202 |
-
|
1203 |
-
|
1204 |
-
|
1205 |
-
"
|
1206 |
-
"Import
|
1207 |
-
|
1208 |
-
|
1209 |
-
"
|
1210 |
-
msgstr ""
|
1211 |
-
|
1212 |
-
|
1213 |
-
"
|
1214 |
-
"
|
1215 |
-
|
1216 |
-
|
1217 |
-
"
|
1218 |
-
"
|
1219 |
-
|
1220 |
-
|
1221 |
-
"
|
1222 |
-
|
1223 |
-
|
1224 |
-
|
1225 |
-
"
|
1226 |
-
|
1227 |
-
|
1228 |
-
|
1229 |
-
"
|
1230 |
-
"
|
1231 |
-
|
1232 |
-
|
1233 |
-
"
|
1234 |
-
"
|
1235 |
-
|
1236 |
-
|
1237 |
-
"
|
1238 |
-
|
1239 |
-
|
1240 |
-
|
1241 |
-
|
1242 |
-
|
1243 |
-
|
1244 |
-
|
1245 |
-
|
1246 |
-
"
|
1247 |
-
|
1248 |
-
|
1249 |
-
"
|
1250 |
-
|
1251 |
-
|
1252 |
-
|
1253 |
-
|
1254 |
-
|
1255 |
-
|
1256 |
-
|
1257 |
-
"
|
1258 |
-
"
|
1259 |
-
|
1260 |
-
|
1261 |
-
|
1262 |
-
"
|
1263 |
-
|
1264 |
-
|
1265 |
-
"
|
1266 |
-
|
1267 |
-
|
1268 |
-
|
1269 |
-
"
|
1270 |
-
|
1271 |
-
|
1272 |
-
|
1273 |
-
|
1274 |
-
|
1275 |
-
|
1276 |
-
|
1277 |
-
|
1278 |
-
|
1279 |
-
|
1280 |
-
#:
|
1281 |
-
msgid ""
|
1282 |
-
"
|
1283 |
-
|
1284 |
-
|
1285 |
-
|
1286 |
-
|
1287 |
-
"
|
1288 |
-
|
1289 |
-
|
1290 |
-
"
|
1291 |
-
"
|
1292 |
-
|
1293 |
-
#:
|
1294 |
-
msgid "
|
1295 |
-
msgstr "
|
1296 |
-
|
1297 |
-
#:
|
1298 |
-
msgid "<
|
1299 |
-
msgstr "<
|
1300 |
-
|
1301 |
-
#:
|
1302 |
-
|
1303 |
-
|
1304 |
-
|
1305 |
-
|
1306 |
-
|
1307 |
-
|
1308 |
-
|
1309 |
-
|
1310 |
-
#:
|
1311 |
-
|
1312 |
-
|
1313 |
-
|
1314 |
-
|
1315 |
-
|
1316 |
-
msgid "
|
1317 |
-
msgstr "
|
1318 |
-
|
1319 |
-
#:
|
1320 |
-
|
1321 |
-
|
1322 |
-
|
1323 |
-
|
1324 |
-
|
1325 |
-
|
1326 |
-
|
1327 |
-
|
1328 |
-
|
1329 |
-
|
1330 |
-
|
1331 |
-
|
1332 |
-
|
1333 |
-
|
1334 |
-
|
1335 |
-
|
1336 |
-
|
1337 |
-
|
1338 |
-
|
1339 |
-
#:
|
1340 |
-
msgid "
|
1341 |
-
msgstr "
|
1342 |
-
|
1343 |
-
#:
|
1344 |
-
msgid "
|
1345 |
-
msgstr "
|
1346 |
-
|
1347 |
-
#:
|
1348 |
-
msgid "
|
1349 |
-
msgstr "
|
1350 |
-
|
1351 |
-
#:
|
1352 |
-
msgid "
|
1353 |
-
msgstr "
|
1354 |
-
|
1355 |
-
#:
|
1356 |
-
msgid "
|
1357 |
-
msgstr "
|
1358 |
-
|
1359 |
-
#:
|
1360 |
-
msgid "
|
1361 |
-
msgstr "
|
1362 |
-
|
1363 |
-
#:
|
1364 |
-
msgid "
|
1365 |
-
msgstr "
|
1366 |
-
|
1367 |
-
#:
|
1368 |
-
msgid "
|
1369 |
-
msgstr "
|
1370 |
-
|
1371 |
-
#:
|
1372 |
-
msgid "
|
1373 |
-
msgstr "
|
1374 |
-
|
1375 |
-
#:
|
1376 |
-
msgid "
|
1377 |
-
msgstr "
|
1378 |
-
|
1379 |
-
#:
|
1380 |
-
msgid "
|
1381 |
-
msgstr "
|
1382 |
-
|
1383 |
-
#:
|
1384 |
-
|
1385 |
-
|
1386 |
-
|
1387 |
-
|
1388 |
-
|
1389 |
-
|
1390 |
-
|
1391 |
-
|
1392 |
-
|
1393 |
-
|
1394 |
-
|
1395 |
-
|
1396 |
-
|
1397 |
-
|
1398 |
-
|
1399 |
-
|
1400 |
-
|
1401 |
-
|
1402 |
-
|
1403 |
-
|
1404 |
-
"
|
1405 |
-
msgstr ""
|
1406 |
-
|
1407 |
-
|
1408 |
-
|
1409 |
-
|
1410 |
-
|
1411 |
-
|
1412 |
-
"
|
1413 |
-
msgstr ""
|
1414 |
-
|
1415 |
-
|
1416 |
-
"
|
1417 |
-
|
1418 |
-
|
1419 |
-
|
1420 |
-
|
1421 |
-
|
1422 |
-
|
1423 |
-
|
1424 |
-
|
1425 |
-
|
1426 |
-
|
1427 |
-
|
1428 |
-
|
1429 |
-
|
1430 |
-
|
1431 |
-
|
1432 |
-
|
1433 |
-
|
1434 |
-
|
1435 |
-
|
1436 |
-
"
|
1437 |
-
"
|
1438 |
-
|
1439 |
-
|
1440 |
-
"
|
1441 |
-
msgstr ""
|
1442 |
-
|
1443 |
-
|
1444 |
-
"
|
1445 |
-
"
|
1446 |
-
|
1447 |
-
|
1448 |
-
|
1449 |
-
|
1450 |
-
|
1451 |
-
|
1452 |
-
|
1453 |
-
|
1454 |
-
|
1455 |
-
|
1456 |
-
|
1457 |
-
|
1458 |
-
|
1459 |
-
|
1460 |
-
|
1461 |
-
|
1462 |
-
|
1463 |
-
|
1464 |
-
|
1465 |
-
|
1466 |
-
|
1467 |
-
|
1468 |
-
msgid "
|
1469 |
-
msgstr "
|
1470 |
-
|
1471 |
-
#:
|
1472 |
-
msgid "
|
1473 |
-
msgstr "
|
1474 |
-
|
1475 |
-
#:
|
1476 |
-
msgid "
|
1477 |
-
msgstr "
|
1478 |
-
|
1479 |
-
#:
|
1480 |
-
msgid "
|
1481 |
-
msgstr "
|
1482 |
-
|
1483 |
-
#:
|
1484 |
-
msgid "
|
1485 |
-
msgstr "
|
1486 |
-
|
1487 |
-
#:
|
1488 |
-
msgid ""
|
1489 |
-
"
|
1490 |
-
|
1491 |
-
|
1492 |
-
"
|
1493 |
-
msgstr ""
|
1494 |
-
|
1495 |
-
|
1496 |
-
"
|
1497 |
-
|
1498 |
-
|
1499 |
-
|
1500 |
-
|
1501 |
-
"
|
1502 |
-
|
1503 |
-
|
1504 |
-
|
1505 |
-
|
1506 |
-
|
1507 |
-
|
1508 |
-
#:
|
1509 |
-
msgid "
|
1510 |
-
msgstr "
|
1511 |
-
|
1512 |
-
#:
|
1513 |
-
msgid "
|
1514 |
-
msgstr "
|
1515 |
-
|
1516 |
-
#:
|
1517 |
-
msgid "
|
1518 |
-
msgstr "
|
1519 |
-
|
1520 |
-
#:
|
1521 |
-
msgid "
|
1522 |
-
msgstr "
|
1523 |
-
|
1524 |
-
#:
|
1525 |
-
msgid "
|
1526 |
-
msgstr "
|
1527 |
-
|
1528 |
-
#:
|
1529 |
-
msgid "
|
1530 |
-
msgstr "
|
1531 |
-
|
1532 |
-
#:
|
1533 |
-
msgid "
|
1534 |
-
msgstr "
|
1535 |
-
|
1536 |
-
#:
|
1537 |
-
msgid "
|
1538 |
-
msgstr "
|
1539 |
-
|
1540 |
-
#:
|
1541 |
-
msgid "
|
1542 |
-
msgstr "
|
1543 |
-
|
1544 |
-
#:
|
1545 |
-
msgid "
|
1546 |
-
msgstr "
|
1547 |
-
|
1548 |
-
#:
|
1549 |
-
msgid "
|
1550 |
-
msgstr "
|
1551 |
-
|
1552 |
-
#:
|
1553 |
-
msgid "
|
1554 |
-
msgstr "
|
1555 |
-
|
1556 |
-
#:
|
1557 |
-
msgid "
|
1558 |
-
msgstr "Fehler
|
1559 |
-
|
1560 |
-
#:
|
1561 |
-
|
1562 |
-
|
1563 |
-
|
1564 |
-
|
1565 |
-
|
1566 |
-
|
1567 |
-
|
1568 |
-
|
1569 |
-
|
1570 |
-
|
1571 |
-
|
1572 |
-
|
1573 |
-
|
1574 |
-
|
1575 |
-
|
1576 |
-
|
1577 |
-
|
1578 |
-
"
|
1579 |
-
|
1580 |
-
|
1581 |
-
"
|
1582 |
-
|
1583 |
-
|
1584 |
-
#:
|
1585 |
-
|
1586 |
-
|
1587 |
-
|
1588 |
-
#: /
|
1589 |
-
|
1590 |
-
|
1591 |
-
|
1592 |
-
#: /
|
1593 |
-
|
1594 |
-
|
1595 |
-
|
1596 |
-
|
1597 |
-
|
1598 |
-
|
1599 |
-
|
1600 |
-
|
1601 |
-
"
|
1602 |
-
msgstr ""
|
1603 |
-
|
1604 |
-
|
1605 |
-
"
|
1606 |
-
|
1607 |
-
|
1608 |
-
|
1609 |
-
msgid ""
|
1610 |
-
"
|
1611 |
-
|
1612 |
-
|
1613 |
-
"
|
1614 |
-
|
1615 |
-
|
1616 |
-
#:
|
1617 |
-
msgid "
|
1618 |
-
msgstr "
|
1619 |
-
|
1620 |
-
#:
|
1621 |
-
msgid "
|
1622 |
-
msgstr "
|
1623 |
-
|
1624 |
-
#:
|
1625 |
-
msgid "
|
1626 |
-
msgstr "
|
1627 |
-
|
1628 |
-
#:
|
1629 |
-
msgid "
|
1630 |
-
msgstr "
|
1631 |
-
|
1632 |
-
#:
|
1633 |
-
msgid "
|
1634 |
-
msgstr "
|
1635 |
-
|
1636 |
-
#:
|
1637 |
-
msgid "
|
1638 |
-
msgstr "
|
1639 |
-
|
1640 |
-
#:
|
1641 |
-
msgid ""
|
1642 |
-
|
1643 |
-
|
1644 |
-
|
1645 |
-
"
|
1646 |
-
"
|
1647 |
-
|
1648 |
-
|
1649 |
-
"
|
1650 |
-
|
1651 |
-
|
1652 |
-
|
1653 |
-
|
1654 |
-
|
1655 |
-
|
1656 |
-
|
1657 |
-
"
|
1658 |
-
"
|
1659 |
-
|
1660 |
-
|
1661 |
-
|
1662 |
-
"
|
1663 |
-
|
1664 |
-
|
1665 |
-
"
|
1666 |
-
|
1667 |
-
|
1668 |
-
|
1669 |
-
"
|
1670 |
-
"
|
1671 |
-
|
1672 |
-
|
1673 |
-
|
1674 |
-
"
|
1675 |
-
|
1676 |
-
|
1677 |
-
"
|
1678 |
-
|
1679 |
-
|
1680 |
-
|
1681 |
-
"
|
1682 |
-
"
|
1683 |
-
|
1684 |
-
|
1685 |
-
|
1686 |
-
"
|
1687 |
-
|
1688 |
-
|
1689 |
-
"
|
1690 |
-
|
1691 |
-
|
1692 |
-
|
1693 |
-
"
|
1694 |
-
"
|
1695 |
-
|
1696 |
-
|
1697 |
-
|
1698 |
-
"
|
1699 |
-
|
1700 |
-
|
1701 |
-
|
1702 |
-
|
1703 |
-
|
1704 |
-
|
1705 |
-
"
|
1706 |
-
"
|
1707 |
-
|
1708 |
-
|
1709 |
-
|
1710 |
-
"
|
1711 |
-
|
1712 |
-
|
1713 |
-
|
1714 |
-
|
1715 |
-
|
1716 |
-
|
1717 |
-
"
|
1718 |
-
"
|
1719 |
-
|
1720 |
-
|
1721 |
-
|
1722 |
-
"
|
1723 |
-
|
1724 |
-
|
1725 |
-
|
1726 |
-
|
1727 |
-
|
1728 |
-
|
1729 |
-
"
|
1730 |
-
"
|
1731 |
-
|
1732 |
-
|
1733 |
-
|
1734 |
-
"
|
1735 |
-
|
1736 |
-
|
1737 |
-
|
1738 |
-
|
1739 |
-
|
1740 |
-
|
1741 |
-
"
|
1742 |
-
"
|
1743 |
-
|
1744 |
-
|
1745 |
-
|
1746 |
-
"
|
1747 |
-
|
1748 |
-
|
1749 |
-
|
1750 |
-
"
|
1751 |
-
|
1752 |
-
#:
|
1753 |
-
msgid ""
|
1754 |
-
|
1755 |
-
|
1756 |
-
|
1757 |
-
"
|
1758 |
-
msgstr ""
|
1759 |
-
|
1760 |
-
|
1761 |
-
"
|
1762 |
-
|
1763 |
-
|
1764 |
-
#:
|
1765 |
-
msgid ""
|
1766 |
-
|
1767 |
-
|
1768 |
-
|
1769 |
-
"
|
1770 |
-
"
|
1771 |
-
|
1772 |
-
#:
|
1773 |
-
msgid "
|
1774 |
-
msgstr "
|
1775 |
-
|
1776 |
-
#:
|
1777 |
-
|
1778 |
-
|
1779 |
-
|
1780 |
-
|
1781 |
-
|
1782 |
-
|
1783 |
-
|
1784 |
-
|
1785 |
-
"
|
1786 |
-
msgstr ""
|
1787 |
-
|
1788 |
-
|
1789 |
-
"
|
1790 |
-
|
1791 |
-
|
1792 |
-
|
1793 |
-
|
1794 |
-
|
1795 |
-
|
1796 |
-
|
1797 |
-
|
1798 |
-
|
1799 |
-
|
1800 |
-
|
1801 |
-
|
1802 |
-
|
1803 |
-
|
1804 |
-
|
1805 |
-
|
1806 |
-
|
1807 |
-
|
1808 |
-
|
1809 |
-
|
1810 |
-
|
1811 |
-
|
1812 |
-
|
1813 |
-
|
1814 |
-
|
1815 |
-
|
1816 |
-
|
1817 |
-
|
1818 |
-
|
1819 |
-
|
1820 |
-
|
1821 |
-
|
1822 |
-
|
1823 |
-
"
|
1824 |
-
|
1825 |
-
|
1826 |
-
|
1827 |
-
|
1828 |
-
|
1829 |
-
|
1830 |
-
|
1831 |
-
msgid ""
|
1832 |
-
|
1833 |
-
|
1834 |
-
|
1835 |
-
|
1836 |
-
"
|
1837 |
-
|
1838 |
-
|
1839 |
-
|
1840 |
-
|
1841 |
-
|
1842 |
-
|
1843 |
-
"
|
1844 |
-
"
|
1845 |
-
|
1846 |
-
|
1847 |
-
|
1848 |
-
|
1849 |
-
|
1850 |
-
|
1851 |
-
|
1852 |
-
|
1853 |
-
|
1854 |
-
|
1855 |
-
|
1856 |
-
|
1857 |
-
|
1858 |
-
#:
|
1859 |
-
|
1860 |
-
msgid "
|
1861 |
-
msgstr "
|
1862 |
-
|
1863 |
-
#:
|
1864 |
-
|
1865 |
-
|
1866 |
-
|
1867 |
-
|
1868 |
-
|
1869 |
-
|
1870 |
-
|
1871 |
-
|
1872 |
-
|
1873 |
-
|
1874 |
-
|
1875 |
-
|
1876 |
-
|
1877 |
-
|
1878 |
-
|
1879 |
-
|
1880 |
-
|
1881 |
-
|
1882 |
-
|
1883 |
-
|
1884 |
-
|
1885 |
-
|
1886 |
-
|
1887 |
-
|
1888 |
-
|
1889 |
-
|
1890 |
-
|
1891 |
-
|
1892 |
-
|
1893 |
-
|
1894 |
-
|
1895 |
-
|
1896 |
-
#:
|
1897 |
-
|
1898 |
-
|
1899 |
-
|
1900 |
-
|
1901 |
-
|
1902 |
-
|
1903 |
-
|
1904 |
-
#:
|
1905 |
-
|
1906 |
-
|
1907 |
-
|
1908 |
-
|
1909 |
-
|
1910 |
-
|
1911 |
-
|
1912 |
-
|
1913 |
-
|
1914 |
-
|
1915 |
-
|
1916 |
-
#:
|
1917 |
-
|
1918 |
-
|
1919 |
-
|
1920 |
-
|
1921 |
-
|
1922 |
-
|
1923 |
-
|
1924 |
-
|
1925 |
-
#: /
|
1926 |
-
|
1927 |
-
|
1928 |
-
|
1929 |
-
|
1930 |
-
#:
|
1931 |
-
|
1932 |
-
msgid "
|
1933 |
-
msgstr "
|
1934 |
-
|
1935 |
-
#:
|
1936 |
-
msgid "
|
1937 |
-
msgstr "
|
1938 |
-
|
1939 |
-
#:
|
1940 |
-
msgid "
|
1941 |
-
msgstr "
|
1942 |
-
|
1943 |
-
#:
|
1944 |
-
msgid ""
|
1945 |
-
"
|
1946 |
-
|
1947 |
-
|
1948 |
-
"
|
1949 |
-
"
|
1950 |
-
|
1951 |
-
#:
|
1952 |
-
msgid "
|
1953 |
-
msgstr "
|
1954 |
-
|
1955 |
-
#:
|
1956 |
-
msgid "
|
1957 |
-
msgstr "
|
1958 |
-
|
1959 |
-
#:
|
1960 |
-
msgid "
|
1961 |
-
msgstr "
|
1962 |
-
|
1963 |
-
#:
|
1964 |
-
msgid "
|
1965 |
-
msgstr "
|
1966 |
-
|
1967 |
-
#:
|
1968 |
-
msgid "
|
1969 |
-
msgstr "
|
1970 |
-
|
1971 |
-
#:
|
1972 |
-
msgid "
|
1973 |
-
msgstr "
|
1974 |
-
|
1975 |
-
#:
|
1976 |
-
msgid "
|
1977 |
-
msgstr "
|
1978 |
-
|
1979 |
-
#:
|
1980 |
-
|
1981 |
-
|
1982 |
-
|
1983 |
-
|
1984 |
-
|
1985 |
-
|
1986 |
-
|
1987 |
-
|
1988 |
-
|
1989 |
-
|
1990 |
-
|
1991 |
-
|
1992 |
-
|
1993 |
-
|
1994 |
-
|
1995 |
-
|
1996 |
-
|
1997 |
-
|
1998 |
-
|
1999 |
-
|
2000 |
-
|
2001 |
-
|
2002 |
-
|
2003 |
-
|
2004 |
-
msgid "
|
2005 |
-
msgstr "
|
2006 |
-
|
2007 |
-
#:
|
2008 |
-
|
2009 |
-
|
2010 |
-
|
2011 |
-
|
2012 |
-
"
|
2013 |
-
|
2014 |
-
|
2015 |
-
|
2016 |
-
msgid "
|
2017 |
-
msgstr "
|
2018 |
-
|
2019 |
-
#:
|
2020 |
-
|
2021 |
-
|
2022 |
-
|
2023 |
-
|
2024 |
-
|
2025 |
-
|
2026 |
-
|
2027 |
-
|
2028 |
-
|
2029 |
-
|
2030 |
-
|
2031 |
-
|
2032 |
-
|
2033 |
-
|
2034 |
-
|
2035 |
-
|
2036 |
-
|
2037 |
-
|
2038 |
-
|
2039 |
-
|
2040 |
-
msgid "
|
2041 |
-
msgstr "
|
2042 |
-
|
2043 |
-
#:
|
2044 |
-
|
2045 |
-
|
2046 |
-
|
2047 |
-
|
2048 |
-
|
2049 |
-
|
2050 |
-
|
2051 |
-
|
2052 |
-
|
2053 |
-
|
2054 |
-
|
2055 |
-
|
2056 |
-
|
2057 |
-
|
2058 |
-
|
2059 |
-
|
2060 |
-
|
2061 |
-
|
2062 |
-
|
2063 |
-
|
2064 |
-
msgid "
|
2065 |
-
msgstr "
|
2066 |
-
|
2067 |
-
#:
|
2068 |
-
|
2069 |
-
|
2070 |
-
|
2071 |
-
|
2072 |
-
|
2073 |
-
|
2074 |
-
|
2075 |
-
|
2076 |
-
|
2077 |
-
|
2078 |
-
|
2079 |
-
|
2080 |
-
|
2081 |
-
|
2082 |
-
|
2083 |
-
|
2084 |
-
msgid "
|
2085 |
-
msgstr "
|
2086 |
-
|
2087 |
-
#:
|
2088 |
-
|
2089 |
-
|
2090 |
-
|
2091 |
-
|
2092 |
-
|
2093 |
-
|
2094 |
-
|
2095 |
-
|
2096 |
-
|
2097 |
-
|
2098 |
-
|
2099 |
-
|
2100 |
-
|
2101 |
-
|
2102 |
-
|
2103 |
-
|
2104 |
-
msgid "
|
2105 |
-
msgstr "
|
2106 |
-
|
2107 |
-
#:
|
2108 |
-
|
2109 |
-
|
2110 |
-
|
2111 |
-
|
2112 |
-
|
2113 |
-
|
2114 |
-
|
2115 |
-
|
2116 |
-
|
2117 |
-
|
2118 |
-
|
2119 |
-
|
2120 |
-
|
2121 |
-
|
2122 |
-
|
2123 |
-
|
2124 |
-
|
2125 |
-
|
2126 |
-
|
2127 |
-
|
2128 |
-
msgid "
|
2129 |
-
msgstr "
|
2130 |
-
|
2131 |
-
#:
|
2132 |
-
|
2133 |
-
|
2134 |
-
|
2135 |
-
|
2136 |
-
|
2137 |
-
|
2138 |
-
|
2139 |
-
|
2140 |
-
|
2141 |
-
|
2142 |
-
|
2143 |
-
|
2144 |
-
|
2145 |
-
|
2146 |
-
|
2147 |
-
|
2148 |
-
msgid "
|
2149 |
-
msgstr "
|
2150 |
-
|
2151 |
-
#:
|
2152 |
-
|
2153 |
-
|
2154 |
-
|
2155 |
-
|
2156 |
-
|
2157 |
-
|
2158 |
-
|
2159 |
-
|
2160 |
-
|
2161 |
-
|
2162 |
-
|
2163 |
-
|
2164 |
-
"
|
2165 |
-
msgstr ""
|
2166 |
-
|
2167 |
-
|
2168 |
-
|
2169 |
-
|
2170 |
-
|
2171 |
-
|
2172 |
-
"
|
2173 |
-
"
|
2174 |
-
|
2175 |
-
|
2176 |
-
"
|
2177 |
-
"
|
2178 |
-
|
2179 |
-
#:
|
2180 |
-
|
2181 |
-
|
2182 |
-
|
2183 |
-
|
2184 |
-
|
2185 |
-
"
|
2186 |
-
|
2187 |
-
|
2188 |
-
|
2189 |
-
|
2190 |
-
|
2191 |
-
|
2192 |
-
|
2193 |
-
|
2194 |
-
|
2195 |
-
|
2196 |
-
|
2197 |
-
|
2198 |
-
|
2199 |
-
|
2200 |
-
#:
|
2201 |
-
|
2202 |
-
|
2203 |
-
|
2204 |
-
|
2205 |
-
#:
|
2206 |
-
|
2207 |
-
|
2208 |
-
|
2209 |
-
#:
|
2210 |
-
|
2211 |
-
|
2212 |
-
|
2213 |
-
|
2214 |
-
|
2215 |
-
|
2216 |
-
|
2217 |
-
|
2218 |
-
|
2219 |
-
|
2220 |
-
|
2221 |
-
|
2222 |
-
|
2223 |
-
|
2224 |
-
msgid "
|
2225 |
-
msgstr "
|
2226 |
-
|
2227 |
-
#:
|
2228 |
-
msgid "
|
2229 |
-
msgstr "
|
2230 |
-
|
2231 |
-
#:
|
2232 |
-
|
2233 |
-
|
2234 |
-
|
2235 |
-
|
2236 |
-
"
|
2237 |
-
|
2238 |
-
|
2239 |
-
|
2240 |
-
msgid "
|
2241 |
-
msgstr ""
|
2242 |
-
|
2243 |
-
|
2244 |
-
|
2245 |
-
|
2246 |
-
|
2247 |
-
|
2248 |
-
|
2249 |
-
|
2250 |
-
|
2251 |
-
|
2252 |
-
|
2253 |
-
|
2254 |
-
|
2255 |
-
|
2256 |
-
msgid "
|
2257 |
-
msgstr "
|
2258 |
-
|
2259 |
-
#:
|
2260 |
-
|
2261 |
-
|
2262 |
-
|
2263 |
-
|
2264 |
-
|
2265 |
-
|
2266 |
-
|
2267 |
-
|
2268 |
-
|
2269 |
-
|
2270 |
-
|
2271 |
-
|
2272 |
-
|
2273 |
-
|
2274 |
-
|
2275 |
-
|
2276 |
-
|
2277 |
-
|
2278 |
-
|
2279 |
-
|
2280 |
-
|
2281 |
-
msgid "
|
2282 |
-
msgstr "
|
2283 |
-
|
2284 |
-
#:
|
2285 |
-
msgid "
|
2286 |
-
msgstr "
|
2287 |
-
|
2288 |
-
#:
|
2289 |
-
msgid "<
|
2290 |
-
msgstr "<
|
2291 |
-
|
2292 |
-
#:
|
2293 |
-
|
2294 |
-
|
2295 |
-
msgstr "
|
2296 |
-
|
2297 |
-
|
2298 |
-
|
2299 |
-
msgid "
|
2300 |
-
msgstr "
|
2301 |
-
|
2302 |
-
#:
|
2303 |
-
|
2304 |
-
|
2305 |
-
|
2306 |
-
|
2307 |
-
|
2308 |
-
"
|
2309 |
-
"
|
2310 |
-
|
2311 |
-
#:
|
2312 |
-
|
2313 |
-
|
2314 |
-
|
2315 |
-
|
2316 |
-
|
2317 |
-
"
|
2318 |
-
|
2319 |
-
|
2320 |
-
|
2321 |
-
|
2322 |
-
|
2323 |
-
|
2324 |
-
|
2325 |
-
|
2326 |
-
|
2327 |
-
|
2328 |
-
|
2329 |
-
|
2330 |
-
|
2331 |
-
|
2332 |
-
|
2333 |
-
|
2334 |
-
|
2335 |
-
|
2336 |
-
|
2337 |
-
|
2338 |
-
"
|
2339 |
-
"
|
2340 |
-
|
2341 |
-
|
2342 |
-
|
2343 |
-
|
2344 |
-
|
2345 |
-
|
2346 |
-
|
2347 |
-
|
2348 |
-
"
|
2349 |
-
msgstr ""
|
2350 |
-
|
2351 |
-
|
2352 |
-
|
2353 |
-
|
2354 |
-
|
2355 |
-
|
2356 |
-
"-
|
2357 |
-
"
|
2358 |
-
|
2359 |
-
|
2360 |
-
|
2361 |
-
|
2362 |
-
|
2363 |
-
|
2364 |
-
|
2365 |
-
|
2366 |
-
|
2367 |
-
|
2368 |
-
|
2369 |
-
|
2370 |
-
|
2371 |
-
|
2372 |
-
|
2373 |
-
|
2374 |
-
|
2375 |
-
|
2376 |
-
|
2377 |
-
|
2378 |
-
msgid ""
|
2379 |
-
|
2380 |
-
|
2381 |
-
|
2382 |
-
|
2383 |
-
|
2384 |
-
|
2385 |
-
#:
|
2386 |
-
|
2387 |
-
|
2388 |
-
|
2389 |
-
|
2390 |
-
|
2391 |
-
|
2392 |
-
"
|
2393 |
-
|
2394 |
-
|
2395 |
-
|
2396 |
-
|
2397 |
-
|
2398 |
-
|
2399 |
-
|
2400 |
-
|
2401 |
-
|
2402 |
-
|
2403 |
-
|
2404 |
-
|
2405 |
-
|
2406 |
-
|
2407 |
-
|
2408 |
-
|
2409 |
-
|
2410 |
-
|
2411 |
-
|
2412 |
-
|
2413 |
-
|
2414 |
-
|
2415 |
-
|
2416 |
-
#:
|
2417 |
-
msgid "
|
2418 |
-
msgstr "
|
2419 |
-
|
2420 |
-
#:
|
2421 |
-
|
2422 |
-
|
2423 |
-
|
2424 |
-
|
2425 |
-
|
2426 |
-
|
2427 |
-
|
2428 |
-
|
2429 |
-
|
2430 |
-
|
2431 |
-
#:
|
2432 |
-
|
2433 |
-
|
2434 |
-
|
2435 |
-
|
2436 |
-
|
2437 |
-
|
2438 |
-
|
2439 |
-
"
|
2440 |
-
"
|
2441 |
-
|
2442 |
-
#:
|
2443 |
-
|
2444 |
-
|
2445 |
-
|
2446 |
-
|
2447 |
-
|
2448 |
-
|
2449 |
-
|
2450 |
-
|
2451 |
-
|
2452 |
-
|
2453 |
-
|
2454 |
-
|
2455 |
-
|
2456 |
-
|
2457 |
-
|
2458 |
-
|
2459 |
-
|
2460 |
-
|
2461 |
-
|
2462 |
-
|
2463 |
-
|
2464 |
-
|
2465 |
-
|
2466 |
-
|
2467 |
-
|
2468 |
-
|
2469 |
-
|
2470 |
-
|
2471 |
-
|
2472 |
-
|
2473 |
-
|
2474 |
-
|
2475 |
-
|
2476 |
-
|
2477 |
-
|
2478 |
-
|
2479 |
-
|
2480 |
-
|
2481 |
-
|
2482 |
-
|
2483 |
-
|
2484 |
-
|
2485 |
-
|
2486 |
-
|
2487 |
-
|
2488 |
-
|
2489 |
-
#:
|
2490 |
-
|
2491 |
-
|
2492 |
-
|
2493 |
-
|
2494 |
-
|
2495 |
-
|
2496 |
-
|
2497 |
-
|
2498 |
-
|
2499 |
-
|
2500 |
-
|
2501 |
-
|
2502 |
-
|
2503 |
-
|
2504 |
-
|
2505 |
-
|
2506 |
-
|
2507 |
-
|
2508 |
-
|
2509 |
-
|
2510 |
-
|
2511 |
-
|
2512 |
-
|
2513 |
-
|
2514 |
-
|
2515 |
-
|
2516 |
-
|
2517 |
-
|
2518 |
-
#:
|
2519 |
-
msgid "
|
2520 |
-
msgstr "
|
2521 |
-
|
2522 |
-
#:
|
2523 |
-
|
2524 |
-
|
2525 |
-
|
2526 |
-
|
2527 |
-
|
2528 |
-
|
2529 |
-
|
2530 |
-
#:
|
2531 |
-
msgid "
|
2532 |
-
msgstr "
|
2533 |
-
|
2534 |
-
#:
|
2535 |
-
|
2536 |
-
|
2537 |
-
|
2538 |
-
|
2539 |
-
#:
|
2540 |
-
msgid "
|
2541 |
-
msgstr "
|
2542 |
-
|
2543 |
-
#:
|
2544 |
-
msgid "
|
2545 |
-
msgstr "
|
2546 |
-
|
2547 |
-
#:
|
2548 |
-
msgid "
|
2549 |
-
msgstr "
|
2550 |
-
|
2551 |
-
#:
|
2552 |
-
msgid "
|
2553 |
-
msgstr "
|
2554 |
-
|
2555 |
-
#:
|
2556 |
-
msgid "
|
2557 |
-
msgstr "
|
2558 |
-
|
2559 |
-
#:
|
2560 |
-
msgid "
|
2561 |
-
msgstr "
|
2562 |
-
|
2563 |
-
#:
|
2564 |
-
|
2565 |
-
|
2566 |
-
|
2567 |
-
|
2568 |
-
#:
|
2569 |
-
#:
|
2570 |
-
|
2571 |
-
|
2572 |
-
|
2573 |
-
|
2574 |
-
|
2575 |
-
|
2576 |
-
|
2577 |
-
#:
|
2578 |
-
|
2579 |
-
|
2580 |
-
|
2581 |
-
|
2582 |
-
|
2583 |
-
|
2584 |
-
|
2585 |
-
#: php:
|
2586 |
-
|
2587 |
-
|
2588 |
-
|
2589 |
-
|
2590 |
-
#:
|
2591 |
-
|
2592 |
-
|
2593 |
-
|
2594 |
-
|
2595 |
-
|
2596 |
-
|
2597 |
-
|
2598 |
-
|
2599 |
-
|
2600 |
-
|
2601 |
-
|
2602 |
-
|
2603 |
-
|
2604 |
-
#:
|
2605 |
-
|
2606 |
-
|
2607 |
-
|
2608 |
-
|
2609 |
-
|
2610 |
-
#:
|
2611 |
-
msgid "
|
2612 |
-
msgstr "
|
2613 |
-
|
2614 |
-
#:
|
2615 |
-
msgid "
|
2616 |
-
msgstr "
|
2617 |
-
|
2618 |
-
#:
|
2619 |
-
msgid "
|
2620 |
-
msgstr "
|
2621 |
-
|
2622 |
-
#:
|
2623 |
-
|
2624 |
-
|
2625 |
-
|
2626 |
-
|
2627 |
-
|
2628 |
-
|
2629 |
-
|
2630 |
-
|
2631 |
-
|
2632 |
-
|
2633 |
-
|
2634 |
-
|
2635 |
-
|
2636 |
-
|
2637 |
-
|
2638 |
-
#:
|
2639 |
-
|
2640 |
-
|
2641 |
-
|
2642 |
-
|
2643 |
-
#:
|
2644 |
-
|
2645 |
-
|
2646 |
-
|
2647 |
-
|
2648 |
-
|
2649 |
-
|
2650 |
-
|
2651 |
-
|
2652 |
-
|
2653 |
-
|
2654 |
-
|
2655 |
-
|
2656 |
-
#:
|
2657 |
-
|
2658 |
-
|
2659 |
-
|
2660 |
-
|
2661 |
-
|
2662 |
-
"
|
2663 |
-
|
2664 |
-
|
2665 |
-
#:
|
2666 |
-
|
2667 |
-
|
2668 |
-
|
2669 |
-
"
|
2670 |
-
|
2671 |
-
|
2672 |
-
|
2673 |
-
|
2674 |
-
|
2675 |
-
|
2676 |
-
|
2677 |
-
|
2678 |
-
"
|
2679 |
-
|
2680 |
-
|
2681 |
-
"
|
2682 |
-
|
2683 |
-
|
2684 |
-
|
2685 |
-
msgid "
|
2686 |
-
msgstr "
|
2687 |
-
|
2688 |
-
#:
|
2689 |
-
|
2690 |
-
|
2691 |
-
|
2692 |
-
|
2693 |
-
"
|
2694 |
-
|
2695 |
-
|
2696 |
-
|
2697 |
-
msgid ""
|
2698 |
-
|
2699 |
-
|
2700 |
-
|
2701 |
-
|
2702 |
-
|
2703 |
-
|
2704 |
-
#:
|
2705 |
-
|
2706 |
-
msgid ""
|
2707 |
-
"
|
2708 |
-
|
2709 |
-
|
2710 |
-
|
2711 |
-
"
|
2712 |
-
|
2713 |
-
|
2714 |
-
|
2715 |
-
msgid ""
|
2716 |
-
"
|
2717 |
-
|
2718 |
-
|
2719 |
-
|
2720 |
-
"
|
2721 |
-
|
2722 |
-
|
2723 |
-
|
2724 |
-
msgid ""
|
2725 |
-
"
|
2726 |
-
|
2727 |
-
|
2728 |
-
"
|
2729 |
-
"
|
2730 |
-
|
2731 |
-
#:
|
2732 |
-
|
2733 |
-
|
2734 |
-
|
2735 |
-
|
2736 |
-
|
2737 |
-
"
|
2738 |
-
|
2739 |
-
|
2740 |
-
|
2741 |
-
|
2742 |
-
|
2743 |
-
|
2744 |
-
"
|
2745 |
-
|
2746 |
-
|
2747 |
-
|
2748 |
-
msgid ""
|
2749 |
-
"
|
2750 |
-
|
2751 |
-
|
2752 |
-
"
|
2753 |
-
"
|
2754 |
-
|
2755 |
-
#:
|
2756 |
-
msgid "
|
2757 |
-
msgstr "
|
2758 |
-
|
2759 |
-
#:
|
2760 |
-
msgid "
|
2761 |
-
msgstr "
|
2762 |
-
|
2763 |
-
#:
|
2764 |
-
msgid "
|
2765 |
-
msgstr "
|
2766 |
-
|
2767 |
-
#:
|
2768 |
-
msgid "
|
2769 |
-
msgstr "
|
2770 |
-
|
2771 |
-
#:
|
2772 |
-
msgid "
|
2773 |
-
msgstr "
|
2774 |
-
|
2775 |
-
#:
|
2776 |
-
msgid "
|
2777 |
-
msgstr "
|
2778 |
-
|
2779 |
-
#:
|
2780 |
-
msgid "
|
2781 |
-
msgstr "
|
2782 |
-
|
2783 |
-
#:
|
2784 |
-
|
2785 |
-
|
2786 |
-
|
2787 |
-
|
2788 |
-
|
2789 |
-
|
2790 |
-
|
2791 |
-
|
2792 |
-
|
2793 |
-
|
2794 |
-
|
2795 |
-
|
2796 |
-
|
2797 |
-
|
2798 |
-
|
2799 |
-
|
2800 |
-
|
2801 |
-
|
2802 |
-
|
2803 |
-
|
2804 |
-
|
2805 |
-
|
2806 |
-
msgid "all
|
2807 |
-
msgstr "
|
2808 |
-
|
2809 |
-
#:
|
2810 |
-
|
2811 |
-
|
2812 |
-
|
2813 |
-
|
2814 |
-
|
2815 |
-
|
2816 |
-
|
2817 |
-
|
2818 |
-
|
2819 |
-
|
2820 |
-
|
2821 |
-
|
2822 |
-
|
2823 |
-
|
2824 |
-
|
2825 |
-
|
2826 |
-
|
2827 |
-
|
2828 |
-
|
2829 |
-
|
2830 |
-
|
2831 |
-
#:
|
2832 |
-
|
2833 |
-
|
2834 |
-
|
2835 |
-
|
2836 |
-
|
2837 |
-
|
2838 |
-
|
2839 |
-
|
2840 |
-
|
2841 |
-
|
2842 |
-
|
2843 |
-
|
2844 |
-
|
2845 |
-
|
2846 |
-
|
2847 |
-
|
2848 |
-
|
2849 |
-
|
2850 |
-
|
2851 |
-
|
2852 |
-
|
2853 |
-
|
2854 |
-
"
|
2855 |
-
|
2856 |
-
|
2857 |
-
|
2858 |
-
|
2859 |
-
"
|
2860 |
-
msgstr ""
|
2861 |
-
|
2862 |
-
|
2863 |
-
|
2864 |
-
|
2865 |
-
|
2866 |
-
|
2867 |
-
|
2868 |
-
|
2869 |
-
"
|
2870 |
-
msgstr ""
|
2871 |
-
|
2872 |
-
|
2873 |
-
|
2874 |
-
|
2875 |
-
|
2876 |
-
|
2877 |
-
|
2878 |
-
|
2879 |
-
|
2880 |
-
|
2881 |
-
|
2882 |
-
|
2883 |
-
"
|
2884 |
-
msgstr ""
|
2885 |
-
|
2886 |
-
|
2887 |
-
|
2888 |
-
|
2889 |
-
|
2890 |
-
|
2891 |
-
|
2892 |
-
|
2893 |
-
|
2894 |
-
|
2895 |
-
|
2896 |
-
|
2897 |
-
|
2898 |
-
|
2899 |
-
|
2900 |
-
|
2901 |
-
|
2902 |
-
|
2903 |
-
|
2904 |
-
|
2905 |
-
|
2906 |
-
|
2907 |
-
|
2908 |
-
|
2909 |
-
|
2910 |
-
|
2911 |
-
|
2912 |
-
|
2913 |
-
|
2914 |
-
|
2915 |
-
msgid ""
|
2916 |
-
"
|
2917 |
-
|
2918 |
-
|
2919 |
-
|
2920 |
-
"
|
2921 |
-
|
2922 |
-
#:
|
2923 |
-
|
2924 |
-
msgid ""
|
2925 |
-
|
2926 |
-
|
2927 |
-
|
2928 |
-
"
|
2929 |
-
"werden
|
2930 |
-
|
2931 |
-
#:
|
2932 |
-
msgid ""
|
2933 |
-
|
2934 |
-
|
2935 |
-
|
2936 |
-
"
|
2937 |
-
"
|
2938 |
-
|
2939 |
-
#:
|
2940 |
-
msgid "
|
2941 |
-
msgstr "
|
2942 |
-
|
2943 |
-
#:
|
2944 |
-
|
2945 |
-
|
2946 |
-
|
2947 |
-
|
2948 |
-
|
2949 |
-
|
2950 |
-
|
2951 |
-
|
2952 |
-
|
2953 |
-
|
2954 |
-
|
2955 |
-
#:
|
2956 |
-
|
2957 |
-
|
2958 |
-
|
2959 |
-
#:
|
2960 |
-
msgid "
|
2961 |
-
msgstr "
|
2962 |
-
|
2963 |
-
#:
|
2964 |
-
msgid "
|
2965 |
-
msgstr "
|
2966 |
-
|
2967 |
-
#:
|
2968 |
-
msgid "
|
2969 |
-
msgstr "
|
2970 |
-
|
2971 |
-
#:
|
2972 |
-
msgid "
|
2973 |
-
msgstr "
|
2974 |
-
|
2975 |
-
#:
|
2976 |
-
msgid "
|
2977 |
-
msgstr "
|
2978 |
-
|
2979 |
-
#:
|
2980 |
-
msgid "
|
2981 |
-
msgstr "
|
2982 |
-
|
2983 |
-
#:
|
2984 |
-
msgid "
|
2985 |
-
msgstr "
|
2986 |
-
|
2987 |
-
#:
|
2988 |
-
msgid "
|
2989 |
-
msgstr "
|
2990 |
-
|
2991 |
-
#:
|
2992 |
-
msgid "
|
2993 |
-
msgstr "
|
2994 |
-
|
2995 |
-
#:
|
2996 |
-
msgid "
|
2997 |
-
msgstr "
|
2998 |
-
|
2999 |
-
#:
|
3000 |
-
msgid "
|
3001 |
-
msgstr "
|
3002 |
-
|
3003 |
-
#:
|
3004 |
-
msgid "
|
3005 |
-
msgstr "
|
3006 |
-
|
3007 |
-
#:
|
3008 |
-
|
3009 |
-
|
3010 |
-
|
3011 |
-
|
3012 |
-
|
3013 |
-
|
3014 |
-
|
3015 |
-
|
3016 |
-
#:
|
3017 |
-
|
3018 |
-
|
3019 |
-
|
3020 |
-
|
3021 |
-
|
3022 |
-
|
3023 |
-
|
3024 |
-
|
3025 |
-
|
3026 |
-
|
3027 |
-
|
3028 |
-
|
3029 |
-
"
|
3030 |
-
|
3031 |
-
|
3032 |
-
|
3033 |
-
|
3034 |
-
|
3035 |
-
|
3036 |
-
|
3037 |
-
|
3038 |
-
|
3039 |
-
|
3040 |
-
|
3041 |
-
|
3042 |
-
|
3043 |
-
|
3044 |
-
|
3045 |
-
|
3046 |
-
|
3047 |
-
|
3048 |
-
|
3049 |
-
|
3050 |
-
|
3051 |
-
|
3052 |
-
|
3053 |
-
"
|
3054 |
-
|
3055 |
-
|
3056 |
-
#:
|
3057 |
-
#:
|
3058 |
-
msgid ""
|
3059 |
-
"
|
3060 |
-
|
3061 |
-
|
3062 |
-
"
|
3063 |
-
|
3064 |
-
|
3065 |
-
#:
|
3066 |
-
|
3067 |
-
|
3068 |
-
|
3069 |
-
|
3070 |
-
|
3071 |
-
|
3072 |
-
|
3073 |
-
|
3074 |
-
|
3075 |
-
|
3076 |
-
|
3077 |
-
|
3078 |
-
|
3079 |
-
|
3080 |
-
|
3081 |
-
|
3082 |
-
|
3083 |
-
|
3084 |
-
|
3085 |
-
|
3086 |
-
"
|
3087 |
-
msgstr ""
|
3088 |
-
|
3089 |
-
|
3090 |
-
|
3091 |
-
|
3092 |
-
|
3093 |
-
|
3094 |
-
|
3095 |
-
|
3096 |
-
|
3097 |
-
#:
|
3098 |
-
msgid "
|
3099 |
-
msgstr "
|
3100 |
-
|
3101 |
-
#:
|
3102 |
-
|
3103 |
-
|
3104 |
-
|
3105 |
-
|
3106 |
-
|
3107 |
-
|
3108 |
-
|
3109 |
-
|
3110 |
-
|
3111 |
-
|
3112 |
-
|
3113 |
-
|
3114 |
-
"
|
3115 |
-
"
|
3116 |
-
|
3117 |
-
|
3118 |
-
|
3119 |
-
|
3120 |
-
|
3121 |
-
|
3122 |
-
|
3123 |
-
|
3124 |
-
|
3125 |
-
|
3126 |
-
|
3127 |
-
|
3128 |
-
|
3129 |
-
#:
|
3130 |
-
|
3131 |
-
|
3132 |
-
|
3133 |
-
|
3134 |
-
"
|
3135 |
-
|
3136 |
-
|
3137 |
-
|
3138 |
-
|
3139 |
-
|
3140 |
-
|
3141 |
-
|
3142 |
-
|
3143 |
-
|
3144 |
-
|
3145 |
-
|
3146 |
-
|
3147 |
-
|
3148 |
-
|
3149 |
-
|
3150 |
-
|
3151 |
-
|
3152 |
-
|
3153 |
-
|
3154 |
-
|
3155 |
-
|
3156 |
-
|
3157 |
-
|
3158 |
-
|
3159 |
-
|
3160 |
-
|
3161 |
-
|
3162 |
-
|
3163 |
-
|
3164 |
-
|
3165 |
-
|
3166 |
-
"
|
3167 |
-
"
|
3168 |
-
|
3169 |
-
|
3170 |
-
"
|
3171 |
-
|
3172 |
-
|
3173 |
-
|
3174 |
-
|
3175 |
-
|
3176 |
-
|
3177 |
-
|
3178 |
-
"
|
3179 |
-
msgstr ""
|
3180 |
-
|
3181 |
-
|
3182 |
-
"
|
3183 |
-
|
3184 |
-
|
3185 |
-
#:
|
3186 |
-
msgid "
|
3187 |
-
msgstr "
|
3188 |
-
|
3189 |
-
#:
|
3190 |
-
msgid "
|
3191 |
-
msgstr "
|
3192 |
-
|
3193 |
-
#:
|
3194 |
-
|
3195 |
-
|
3196 |
-
|
3197 |
-
|
3198 |
-
|
3199 |
-
|
3200 |
-
|
3201 |
-
|
3202 |
-
"
|
3203 |
-
msgstr ""
|
3204 |
-
|
3205 |
-
|
3206 |
-
|
3207 |
-
|
3208 |
-
|
3209 |
-
|
3210 |
-
"
|
3211 |
-
"
|
3212 |
-
|
3213 |
-
|
3214 |
-
"
|
3215 |
-
|
3216 |
-
|
3217 |
-
|
3218 |
-
|
3219 |
-
|
3220 |
-
|
3221 |
-
|
3222 |
-
|
3223 |
-
|
3224 |
-
|
3225 |
-
|
3226 |
-
"
|
3227 |
-
msgstr ""
|
3228 |
-
|
3229 |
-
|
3230 |
-
|
3231 |
-
|
3232 |
-
|
3233 |
-
|
3234 |
-
|
3235 |
-
"
|
3236 |
-
msgstr ""
|
3237 |
-
|
3238 |
-
|
3239 |
-
"
|
3240 |
-
|
3241 |
-
|
3242 |
-
|
3243 |
-
|
3244 |
-
|
3245 |
-
|
3246 |
-
|
3247 |
-
"
|
3248 |
-
|
3249 |
-
|
3250 |
-
|
3251 |
-
"
|
3252 |
-
|
3253 |
-
|
3254 |
-
|
3255 |
-
|
3256 |
-
|
3257 |
-
|
3258 |
-
|
3259 |
-
msgid ""
|
3260 |
-
|
3261 |
-
|
3262 |
-
|
3263 |
-
|
3264 |
-
|
3265 |
-
|
3266 |
-
|
3267 |
-
|
3268 |
-
|
3269 |
-
|
3270 |
-
|
3271 |
-
|
3272 |
-
|
3273 |
-
|
3274 |
-
|
3275 |
-
|
3276 |
-
|
3277 |
-
|
3278 |
-
|
3279 |
-
|
3280 |
-
|
3281 |
-
|
3282 |
-
#:
|
3283 |
-
|
3284 |
-
|
3285 |
-
|
3286 |
-
|
3287 |
-
|
3288 |
-
|
3289 |
-
|
3290 |
-
|
3291 |
-
|
3292 |
-
|
3293 |
-
|
3294 |
-
|
3295 |
-
|
3296 |
-
|
3297 |
-
|
3298 |
-
|
3299 |
-
|
3300 |
-
|
3301 |
-
|
3302 |
-
|
3303 |
-
|
3304 |
-
#:
|
3305 |
-
msgid "
|
3306 |
-
msgstr "
|
3307 |
-
|
3308 |
-
#:
|
3309 |
-
|
3310 |
-
|
3311 |
-
|
3312 |
-
|
3313 |
-
|
3314 |
-
|
3315 |
-
|
3316 |
-
#:
|
3317 |
-
|
3318 |
-
|
3319 |
-
|
3320 |
-
|
3321 |
-
|
3322 |
-
|
3323 |
-
|
3324 |
-
#:
|
3325 |
-
|
3326 |
-
|
3327 |
-
|
3328 |
-
|
3329 |
-
|
3330 |
-
|
3331 |
-
|
3332 |
-
#:
|
3333 |
-
|
3334 |
-
|
3335 |
-
|
3336 |
-
#:
|
3337 |
-
msgid "
|
3338 |
-
msgstr "
|
3339 |
-
|
3340 |
-
#:
|
3341 |
-
|
3342 |
-
|
3343 |
-
|
3344 |
-
|
3345 |
-
|
3346 |
-
|
3347 |
-
|
3348 |
-
#:
|
3349 |
-
#:
|
3350 |
-
|
3351 |
-
|
3352 |
-
|
3353 |
-
|
3354 |
-
|
3355 |
-
|
3356 |
-
|
3357 |
-
#:
|
3358 |
-
|
3359 |
-
|
3360 |
-
|
3361 |
-
|
3362 |
-
|
3363 |
-
|
3364 |
-
|
3365 |
-
"
|
3366 |
-
msgstr ""
|
3367 |
-
|
3368 |
-
|
3369 |
-
"
|
3370 |
-
|
3371 |
-
|
3372 |
-
|
3373 |
-
msgid ""
|
3374 |
-
"
|
3375 |
-
|
3376 |
-
|
3377 |
-
"
|
3378 |
-
|
3379 |
-
|
3380 |
-
|
3381 |
-
|
3382 |
-
"
|
3383 |
-
"
|
3384 |
-
|
3385 |
-
|
3386 |
-
"
|
3387 |
-
|
3388 |
-
|
3389 |
-
|
3390 |
-
|
3391 |
-
|
3392 |
-
|
3393 |
-
|
3394 |
-
|
3395 |
-
|
3396 |
-
|
3397 |
-
|
3398 |
-
"
|
3399 |
-
"
|
3400 |
-
|
3401 |
-
|
3402 |
-
"
|
3403 |
-
|
3404 |
-
|
3405 |
-
|
3406 |
-
msgid ""
|
3407 |
-
|
3408 |
-
|
3409 |
-
|
3410 |
-
|
3411 |
-
|
3412 |
-
|
3413 |
-
|
3414 |
-
|
3415 |
-
|
3416 |
-
|
3417 |
-
|
3418 |
-
|
3419 |
-
|
3420 |
-
|
3421 |
-
|
3422 |
-
|
3423 |
-
|
3424 |
-
|
3425 |
-
|
3426 |
-
|
3427 |
-
|
3428 |
-
|
3429 |
-
|
3430 |
-
|
3431 |
-
|
3432 |
-
|
3433 |
-
|
3434 |
-
|
3435 |
-
#:
|
3436 |
-
msgid "
|
3437 |
-
msgstr "
|
3438 |
-
|
3439 |
-
#:
|
3440 |
-
msgid "
|
3441 |
-
msgstr "
|
3442 |
-
|
3443 |
-
#:
|
3444 |
-
|
3445 |
-
|
3446 |
-
|
3447 |
-
|
3448 |
-
|
3449 |
-
|
3450 |
-
|
3451 |
-
|
3452 |
-
|
3453 |
-
|
3454 |
-
|
3455 |
-
|
3456 |
-
|
3457 |
-
|
3458 |
-
|
3459 |
-
|
3460 |
-
|
3461 |
-
|
3462 |
-
|
3463 |
-
|
3464 |
-
|
3465 |
-
|
3466 |
-
|
3467 |
-
|
3468 |
-
|
3469 |
-
|
3470 |
-
|
3471 |
-
|
3472 |
-
|
3473 |
-
|
3474 |
-
|
3475 |
-
|
3476 |
-
#:
|
3477 |
-
|
3478 |
-
|
3479 |
-
|
3480 |
-
|
3481 |
-
|
3482 |
-
|
3483 |
-
|
3484 |
-
|
3485 |
-
"
|
3486 |
-
|
3487 |
-
|
3488 |
-
|
3489 |
-
|
3490 |
-
|
3491 |
-
|
3492 |
-
|
3493 |
-
|
3494 |
-
|
3495 |
-
|
3496 |
-
|
3497 |
-
|
3498 |
-
|
3499 |
-
|
3500 |
-
|
3501 |
-
|
3502 |
-
|
3503 |
-
|
3504 |
-
|
3505 |
-
|
3506 |
-
|
3507 |
-
|
3508 |
-
|
3509 |
-
|
3510 |
-
|
3511 |
-
|
3512 |
-
|
3513 |
-
|
3514 |
-
|
3515 |
-
|
3516 |
-
|
3517 |
-
|
3518 |
-
|
3519 |
-
|
3520 |
-
|
3521 |
-
|
3522 |
-
|
3523 |
-
|
3524 |
-
|
3525 |
-
|
3526 |
-
|
3527 |
-
|
3528 |
-
|
3529 |
-
|
3530 |
-
|
3531 |
-
|
3532 |
-
|
3533 |
-
|
3534 |
-
|
3535 |
-
|
3536 |
-
|
3537 |
-
|
3538 |
-
|
3539 |
-
|
3540 |
-
|
3541 |
-
|
3542 |
-
|
3543 |
-
|
3544 |
-
|
3545 |
-
|
3546 |
-
|
3547 |
-
|
3548 |
-
|
3549 |
-
#:
|
3550 |
-
msgid "
|
3551 |
-
msgstr "
|
3552 |
-
|
3553 |
-
#:
|
3554 |
-
msgid "
|
3555 |
-
msgstr "
|
3556 |
-
|
3557 |
-
#:
|
3558 |
-
msgid "
|
3559 |
-
msgstr "
|
3560 |
-
|
3561 |
-
#:
|
3562 |
-
msgid "
|
3563 |
-
msgstr "
|
3564 |
-
|
3565 |
-
#:
|
3566 |
-
msgid "
|
3567 |
-
msgstr "
|
3568 |
-
|
3569 |
-
#:
|
3570 |
-
|
3571 |
-
|
3572 |
-
|
3573 |
-
|
3574 |
-
|
3575 |
-
|
3576 |
-
|
3577 |
-
|
3578 |
-
|
3579 |
-
#:
|
3580 |
-
|
3581 |
-
|
3582 |
-
|
3583 |
-
|
3584 |
-
#:
|
3585 |
-
msgid "
|
3586 |
-
msgstr "
|
3587 |
-
|
3588 |
-
#:
|
3589 |
-
#:
|
3590 |
-
msgid "
|
3591 |
-
msgstr "
|
3592 |
-
|
3593 |
-
#:
|
3594 |
-
|
3595 |
-
|
3596 |
-
|
3597 |
-
|
3598 |
-
|
3599 |
-
|
3600 |
-
|
3601 |
-
|
3602 |
-
|
3603 |
-
|
3604 |
-
|
3605 |
-
|
3606 |
-
|
3607 |
-
|
3608 |
-
|
3609 |
-
|
3610 |
-
|
3611 |
-
|
3612 |
-
|
3613 |
-
|
3614 |
-
#:
|
3615 |
-
|
3616 |
-
|
3617 |
-
|
3618 |
-
|
3619 |
-
|
3620 |
-
|
3621 |
-
|
3622 |
-
"
|
3623 |
-
msgstr ""
|
3624 |
-
|
3625 |
-
|
3626 |
-
"
|
3627 |
-
|
3628 |
-
|
3629 |
-
|
3630 |
-
|
3631 |
-
|
3632 |
-
|
3633 |
-
|
3634 |
-
|
3635 |
-
|
3636 |
-
|
3637 |
-
#:
|
3638 |
-
msgid "
|
3639 |
-
msgstr "
|
3640 |
-
|
3641 |
-
#:
|
3642 |
-
msgid ""
|
3643 |
-
|
3644 |
-
|
3645 |
-
|
3646 |
-
"
|
3647 |
-
msgstr ""
|
3648 |
-
|
3649 |
-
|
3650 |
-
"
|
3651 |
-
|
3652 |
-
|
3653 |
-
|
3654 |
-
|
3655 |
-
|
3656 |
-
|
3657 |
-
|
3658 |
-
|
3659 |
-
|
3660 |
-
|
3661 |
-
|
3662 |
-
|
3663 |
-
|
3664 |
-
|
3665 |
-
|
3666 |
-
|
3667 |
-
|
3668 |
-
|
3669 |
-
|
3670 |
-
|
3671 |
-
|
3672 |
-
|
3673 |
-
|
3674 |
-
|
3675 |
-
|
3676 |
-
|
3677 |
-
|
3678 |
-
|
3679 |
-
|
3680 |
-
|
3681 |
-
|
3682 |
-
|
3683 |
-
|
3684 |
-
msgstr "
|
3685 |
-
|
3686 |
-
#:
|
3687 |
-
msgid "
|
3688 |
-
msgstr "
|
3689 |
-
|
3690 |
-
#:
|
3691 |
-
|
3692 |
-
|
3693 |
-
|
3694 |
-
|
3695 |
-
"
|
3696 |
-
|
3697 |
-
|
3698 |
-
|
3699 |
-
|
3700 |
-
"
|
3701 |
-
"
|
3702 |
-
|
3703 |
-
|
3704 |
-
|
3705 |
-
|
3706 |
-
|
3707 |
-
|
3708 |
-
|
3709 |
-
|
3710 |
-
|
3711 |
-
|
3712 |
-
|
3713 |
-
|
3714 |
-
|
3715 |
-
|
3716 |
-
|
3717 |
-
|
3718 |
-
|
3719 |
-
|
3720 |
-
|
3721 |
-
|
3722 |
-
|
3723 |
-
|
3724 |
-
|
3725 |
-
|
3726 |
-
msgid ""
|
3727 |
-
"
|
3728 |
-
|
3729 |
-
|
3730 |
-
"
|
3731 |
-
"
|
3732 |
-
|
3733 |
-
#:
|
3734 |
-
|
3735 |
-
|
3736 |
-
|
3737 |
-
|
3738 |
-
"
|
3739 |
-
msgstr ""
|
3740 |
-
|
3741 |
-
|
3742 |
-
"
|
3743 |
-
|
3744 |
-
|
3745 |
-
|
3746 |
-
"
|
3747 |
-
|
3748 |
-
|
3749 |
-
|
3750 |
-
"
|
3751 |
-
|
3752 |
-
|
3753 |
-
|
3754 |
-
"
|
3755 |
-
|
3756 |
-
|
3757 |
-
|
3758 |
-
"
|
3759 |
-
msgstr ""
|
3760 |
-
|
3761 |
-
|
3762 |
-
"
|
3763 |
-
"
|
3764 |
-
|
3765 |
-
|
3766 |
-
|
3767 |
-
|
3768 |
-
|
3769 |
-
|
3770 |
-
"
|
3771 |
-
"
|
3772 |
-
|
3773 |
-
|
3774 |
-
"
|
3775 |
-
msgstr ""
|
3776 |
-
|
3777 |
-
|
3778 |
-
"
|
3779 |
-
|
3780 |
-
|
3781 |
-
|
3782 |
-
|
3783 |
-
|
3784 |
-
|
3785 |
-
|
3786 |
-
|
3787 |
-
|
3788 |
-
|
3789 |
-
|
3790 |
-
|
3791 |
-
"
|
3792 |
-
"
|
3793 |
-
|
3794 |
-
#:
|
3795 |
-
msgid "
|
3796 |
-
msgstr "
|
3797 |
-
|
3798 |
-
#:
|
3799 |
-
msgid "
|
3800 |
-
msgstr "
|
3801 |
-
|
3802 |
-
#:
|
3803 |
-
msgid "
|
3804 |
-
msgstr "
|
3805 |
-
|
3806 |
-
#:
|
3807 |
-
msgid "
|
3808 |
-
msgstr "
|
3809 |
-
|
3810 |
-
#:
|
3811 |
-
msgid ""
|
3812 |
-
|
3813 |
-
|
3814 |
-
|
3815 |
-
"
|
3816 |
-
"
|
3817 |
-
|
3818 |
-
#:
|
3819 |
-
msgid "
|
3820 |
-
msgstr "
|
3821 |
-
|
3822 |
-
#:
|
3823 |
-
msgid "
|
3824 |
-
msgstr "
|
3825 |
-
|
3826 |
-
#:
|
3827 |
-
msgid ""
|
3828 |
-
"
|
3829 |
-
|
3830 |
-
|
3831 |
-
"
|
3832 |
-
|
3833 |
-
|
3834 |
-
|
3835 |
-
"
|
3836 |
-
msgstr ""
|
3837 |
-
|
3838 |
-
|
3839 |
-
"
|
3840 |
-
"
|
3841 |
-
|
3842 |
-
|
3843 |
-
"
|
3844 |
-
"
|
3845 |
-
|
3846 |
-
#:
|
3847 |
-
msgid ""
|
3848 |
-
"
|
3849 |
-
|
3850 |
-
|
3851 |
-
"
|
3852 |
-
"
|
3853 |
-
|
3854 |
-
|
3855 |
-
|
3856 |
-
"
|
3857 |
-
|
3858 |
-
|
3859 |
-
"
|
3860 |
-
|
3861 |
-
|
3862 |
-
|
3863 |
-
|
3864 |
-
|
3865 |
-
|
3866 |
-
|
3867 |
-
"
|
3868 |
-
|
3869 |
-
|
3870 |
-
#:
|
3871 |
-
msgid ""
|
3872 |
-
|
3873 |
-
|
3874 |
-
|
3875 |
-
"
|
3876 |
-
"
|
3877 |
-
|
3878 |
-
|
3879 |
-
|
3880 |
-
|
3881 |
-
|
3882 |
-
|
3883 |
-
"
|
3884 |
-
"
|
3885 |
-
|
3886 |
-
|
3887 |
-
|
3888 |
-
|
3889 |
-
|
3890 |
-
|
3891 |
-
|
3892 |
-
|
3893 |
-
|
3894 |
-
|
3895 |
-
|
3896 |
-
"
|
3897 |
-
|
3898 |
-
|
3899 |
-
|
3900 |
-
|
3901 |
-
|
3902 |
-
|
3903 |
-
|
3904 |
-
"
|
3905 |
-
"
|
3906 |
-
|
3907 |
-
#:
|
3908 |
-
msgid "
|
3909 |
-
msgstr "
|
3910 |
-
|
3911 |
-
#:
|
3912 |
-
msgid "Import
|
3913 |
-
msgstr "
|
3914 |
-
|
3915 |
-
#:
|
3916 |
-
msgid ""
|
3917 |
-
"
|
3918 |
-
|
3919 |
-
|
3920 |
-
"
|
3921 |
-
"
|
3922 |
-
|
3923 |
-
#:
|
3924 |
-
msgid "
|
3925 |
-
msgstr "
|
3926 |
-
|
3927 |
-
#:
|
3928 |
-
msgid ""
|
3929 |
-
|
3930 |
-
|
3931 |
-
|
3932 |
-
|
3933 |
-
"
|
3934 |
-
|
3935 |
-
|
3936 |
-
"
|
3937 |
-
|
3938 |
-
|
3939 |
-
|
3940 |
-
|
3941 |
-
|
3942 |
-
|
3943 |
-
|
3944 |
-
msgid ""
|
3945 |
-
"
|
3946 |
-
|
3947 |
-
|
3948 |
-
"
|
3949 |
-
"
|
3950 |
-
|
3951 |
-
#:
|
3952 |
-
msgid "
|
3953 |
-
msgstr "
|
3954 |
-
|
3955 |
-
#:
|
3956 |
-
|
3957 |
-
|
3958 |
-
|
3959 |
-
|
3960 |
-
|
3961 |
-
|
3962 |
-
|
3963 |
-
|
3964 |
-
|
3965 |
-
|
3966 |
-
|
3967 |
-
|
3968 |
-
|
3969 |
-
|
3970 |
-
|
3971 |
-
|
3972 |
-
"
|
3973 |
-
"
|
3974 |
-
|
3975 |
-
|
3976 |
-
"
|
3977 |
-
"Import
|
3978 |
-
|
3979 |
-
#:
|
3980 |
-
|
3981 |
-
|
3982 |
-
|
3983 |
-
|
3984 |
-
|
3985 |
-
|
3986 |
-
|
3987 |
-
|
3988 |
-
|
3989 |
-
|
3990 |
-
|
3991 |
-
|
3992 |
-
"
|
3993 |
-
"
|
3994 |
-
|
3995 |
-
|
3996 |
-
"
|
3997 |
-
"
|
3998 |
-
|
3999 |
-
|
4000 |
-
|
4001 |
-
|
4002 |
-
|
4003 |
-
|
4004 |
-
|
4005 |
-
|
4006 |
-
|
4007 |
-
#:
|
4008 |
-
|
4009 |
-
|
4010 |
-
|
4011 |
-
|
4012 |
-
|
4013 |
-
|
4014 |
-
|
4015 |
-
|
4016 |
-
|
4017 |
-
|
4018 |
-
|
4019 |
-
#:
|
4020 |
-
|
4021 |
-
|
4022 |
-
|
4023 |
-
|
4024 |
-
|
4025 |
-
|
4026 |
-
|
4027 |
-
|
4028 |
-
|
4029 |
-
|
4030 |
-
|
4031 |
-
#:
|
4032 |
-
|
4033 |
-
|
4034 |
-
|
4035 |
-
|
4036 |
-
|
4037 |
-
|
4038 |
-
|
4039 |
-
|
4040 |
-
|
4041 |
-
|
4042 |
-
|
4043 |
-
|
4044 |
-
|
4045 |
-
|
4046 |
-
|
4047 |
-
|
4048 |
-
|
4049 |
-
|
4050 |
-
|
4051 |
-
|
4052 |
-
"
|
4053 |
-
"
|
4054 |
-
|
4055 |
-
|
4056 |
-
"
|
4057 |
-
|
4058 |
-
|
4059 |
-
|
4060 |
-
"
|
4061 |
-
"
|
4062 |
-
|
4063 |
-
|
4064 |
-
|
4065 |
-
"
|
4066 |
-
|
4067 |
-
|
4068 |
-
"
|
4069 |
-
|
4070 |
-
|
4071 |
-
|
4072 |
-
|
4073 |
-
|
4074 |
-
|
4075 |
-
|
4076 |
-
|
4077 |
-
|
4078 |
-
|
4079 |
-
|
4080 |
-
|
4081 |
-
"
|
4082 |
-
|
4083 |
-
|
4084 |
-
|
4085 |
-
|
4086 |
-
|
4087 |
-
|
4088 |
-
|
4089 |
-
|
4090 |
-
|
4091 |
-
|
4092 |
-
|
4093 |
-
|
4094 |
-
|
4095 |
-
|
4096 |
-
|
4097 |
-
|
4098 |
-
|
4099 |
-
|
4100 |
-
|
4101 |
-
|
4102 |
-
|
4103 |
-
|
4104 |
-
"
|
4105 |
-
|
4106 |
-
|
4107 |
-
|
4108 |
-
"
|
4109 |
-
|
4110 |
-
|
4111 |
-
|
4112 |
-
|
4113 |
-
|
4114 |
-
|
4115 |
-
|
4116 |
-
"
|
4117 |
-
"
|
4118 |
-
|
4119 |
-
|
4120 |
-
"
|
4121 |
-
|
4122 |
-
|
4123 |
-
|
4124 |
-
|
4125 |
-
|
4126 |
-
|
4127 |
-
|
4128 |
-
"
|
4129 |
-
"
|
4130 |
-
|
4131 |
-
|
4132 |
-
"
|
4133 |
-
|
4134 |
-
|
4135 |
-
|
4136 |
-
|
4137 |
-
|
4138 |
-
|
4139 |
-
|
4140 |
-
"
|
4141 |
-
"
|
4142 |
-
|
4143 |
-
|
4144 |
-
|
4145 |
-
|
4146 |
-
|
4147 |
-
#:
|
4148 |
-
msgid "
|
4149 |
-
msgstr "
|
4150 |
-
|
4151 |
-
#:
|
4152 |
-
msgid "
|
4153 |
-
msgstr "
|
4154 |
-
|
4155 |
-
#:
|
4156 |
-
msgid ""
|
4157 |
-
|
4158 |
-
|
4159 |
-
|
4160 |
-
"
|
4161 |
-
"
|
4162 |
-
|
4163 |
-
#:
|
4164 |
-
msgid "
|
4165 |
-
msgstr "
|
4166 |
-
|
4167 |
-
#:
|
4168 |
-
msgid ""
|
4169 |
-
"WP All Import
|
4170 |
-
|
4171 |
-
|
4172 |
-
"
|
4173 |
-
"
|
4174 |
-
|
4175 |
-
#:
|
4176 |
-
msgid ""
|
4177 |
-
"
|
4178 |
-
|
4179 |
-
|
4180 |
-
|
4181 |
-
"
|
4182 |
-
|
4183 |
-
|
4184 |
-
|
4185 |
-
|
4186 |
-
|
4187 |
-
|
4188 |
-
|
4189 |
-
|
4190 |
-
|
4191 |
-
|
4192 |
-
|
4193 |
-
|
4194 |
-
#:
|
4195 |
-
|
4196 |
-
|
4197 |
-
|
4198 |
-
|
4199 |
-
|
4200 |
-
|
4201 |
-
"
|
4202 |
-
|
4203 |
-
#: ../../views/admin/import/template/_nested_template.php:35
|
4204 |
-
msgid "Nested XML/CSV files"
|
4205 |
-
msgstr "Verschachtelte XML/CSV Dateien"
|
4206 |
-
|
4207 |
-
#: ../../views/admin/import/template/_nested_template.php:48
|
4208 |
-
msgid "remove"
|
4209 |
-
msgstr "Entfernen"
|
4210 |
-
|
4211 |
-
#: ../../views/admin/import/template/_nested_template.php:69
|
4212 |
-
msgid "Specify the URL of the nested file to use."
|
4213 |
-
msgstr "Bestimmen Sie die URL der verschachtelten Datei."
|
4214 |
-
|
4215 |
-
#: ../../views/admin/import/template/_nested_template.php:73
|
4216 |
-
msgid "Add"
|
4217 |
-
msgstr "Hinzufügen"
|
4218 |
-
|
4219 |
-
#: ../../views/admin/import/template/_other_template.php:5
|
4220 |
-
#, php-format
|
4221 |
-
msgid "Other %s Options"
|
4222 |
-
msgstr "Andere %s Optionen"
|
4223 |
-
|
4224 |
-
#: ../../views/admin/import/template/_other_template.php:17
|
4225 |
-
msgid "Post Status"
|
4226 |
-
msgstr "Post Status"
|
4227 |
-
|
4228 |
-
#: ../../views/admin/import/template/_other_template.php:20
|
4229 |
-
msgid "Published"
|
4230 |
-
msgstr "Veröffentlicht"
|
4231 |
-
|
4232 |
-
#: ../../views/admin/import/template/_other_template.php:24
|
4233 |
-
msgid "Draft"
|
4234 |
-
msgstr "Entwurf"
|
4235 |
-
|
4236 |
-
#: ../../views/admin/import/template/_other_template.php:32
|
4237 |
-
msgid ""
|
4238 |
-
"The value of presented XPath should be one of the following: ('publish', "
|
4239 |
-
"'draft', 'trash')."
|
4240 |
-
msgstr ""
|
4241 |
-
"Der Wert des gegenwärtigen XPath sollte einer der folgenden sein: "
|
4242 |
-
"('veröffentlichen', 'Entwurf', 'Papierkorb')."
|
4243 |
-
|
4244 |
-
#: ../../views/admin/import/template/_other_template.php:41
|
4245 |
-
msgid "Post Dates"
|
4246 |
-
msgstr "Post Datum"
|
4247 |
-
|
4248 |
-
#: ../../views/admin/import/template/_other_template.php:41
|
4249 |
-
msgid ""
|
4250 |
-
"Use any format supported by the PHP <b>strtotime</b> function. That means "
|
4251 |
-
"pretty much any human-readable date will work."
|
4252 |
-
msgstr ""
|
4253 |
-
"Benutzen Sie ein Format das von der PHP <b>strtotime</b> Funktion "
|
4254 |
-
"unterstützt wird. Das bedeutet, dass jedes menschlich lesbare Datum "
|
4255 |
-
"funktioniert."
|
4256 |
-
|
4257 |
-
#: ../../views/admin/import/template/_other_template.php:45
|
4258 |
-
msgid "As specified"
|
4259 |
-
msgstr "Wie Bestimmt"
|
4260 |
-
|
4261 |
-
#: ../../views/admin/import/template/_other_template.php:54
|
4262 |
-
msgid "Random dates"
|
4263 |
-
msgstr "Zufällige Datum"
|
4264 |
-
|
4265 |
-
#: ../../views/admin/import/template/_other_template.php:54
|
4266 |
-
msgid ""
|
4267 |
-
"Posts will be randomly assigned dates in this range. WordPress ensures posts "
|
4268 |
-
"with dates in the future will not appear until their date has been reached."
|
4269 |
-
msgstr ""
|
4270 |
-
"Posts bekommen zufällige Datum in diesem Bereich. WordPress lässt Posts mit "
|
4271 |
-
"Datum in der Zukunft zu, diese erscheinen nicht bis dieses Datum erreicht "
|
4272 |
-
"ist. "
|
4273 |
-
|
4274 |
-
#: ../../views/admin/import/template/_other_template.php:58 ../..
|
4275 |
-
#: /views/admin/manage/delete.php:46
|
4276 |
-
msgid "and"
|
4277 |
-
msgstr "und"
|
4278 |
-
|
4279 |
-
#: ../../views/admin/import/template/_other_template.php:66
|
4280 |
-
msgid "Comments"
|
4281 |
-
msgstr "Kommentare"
|
4282 |
-
|
4283 |
-
#: ../../views/admin/import/template/_other_template.php:69 ../..
|
4284 |
-
#: /views/admin/import/template/_other_template.php:92
|
4285 |
-
msgid "Open"
|
4286 |
-
msgstr "Offen"
|
4287 |
-
|
4288 |
-
#: ../../views/admin/import/template/_other_template.php:73 ../..
|
4289 |
-
#: /views/admin/import/template/_other_template.php:96
|
4290 |
-
msgid "Closed"
|
4291 |
-
msgstr "Geschlossen"
|
4292 |
-
|
4293 |
-
#: ../../views/admin/import/template/_other_template.php:81 ../..
|
4294 |
-
#: /views/admin/import/template/_other_template.php:104
|
4295 |
-
msgid ""
|
4296 |
-
"The value of presented XPath should be one of the following: ('open', "
|
4297 |
-
"'closed')."
|
4298 |
-
msgstr ""
|
4299 |
-
"Der Wert des gegenwärtigen XPath sollte einer der folgenden sein: ('Offen',"
|
4300 |
-
"'Geschlossen')."
|
4301 |
-
|
4302 |
-
#: ../../views/admin/import/template/_other_template.php:89
|
4303 |
-
msgid "Trackbacks and Pingbacks"
|
4304 |
-
msgstr "Trackbacks und Pingbacks"
|
4305 |
-
|
4306 |
-
#: ../../views/admin/import/template/_other_template.php:112
|
4307 |
-
msgid "Post Slug"
|
4308 |
-
msgstr "Post Slug"
|
4309 |
-
|
4310 |
-
#: ../../views/admin/import/template/_other_template.php:120
|
4311 |
-
msgid "Post Author"
|
4312 |
-
msgstr "Post Autor"
|
4313 |
-
|
4314 |
-
#: ../../views/admin/import/template/_other_template.php:122
|
4315 |
-
msgid ""
|
4316 |
-
"Assign the post to an existing user account by specifying the user ID, "
|
4317 |
-
"username, or e-mail address."
|
4318 |
-
msgstr ""
|
4319 |
-
"Ordne den Post einem bestehenden Benutzerkonto zu durch bestimmen der ID, "
|
4320 |
-
"des Benutzernamen oder der Email Adresse."
|
4321 |
-
|
4322 |
-
#: ../../views/admin/import/template/_other_template.php:128
|
4323 |
-
msgid "Download & Import Attachments"
|
4324 |
-
msgstr "Herunterladen & Importiere Anhänge"
|
4325 |
-
|
4326 |
-
#: ../../views/admin/import/template/_other_template.php:129 ../..
|
4327 |
-
#: /views/admin/import/template/_taxonomies_template.php:65 ../..
|
4328 |
-
#: /views/admin/import/template/_taxonomies_template.php:122 ../..
|
4329 |
-
#: /views/admin/import/template/_taxonomies_template.php:134 ../..
|
4330 |
-
#: /views/admin/import/template/_taxonomies_template.php:212
|
4331 |
-
msgid "Separated by"
|
4332 |
-
msgstr "Getrennt durch"
|
4333 |
-
|
4334 |
-
#: ../../views/admin/import/template/_other_template.php:137
|
4335 |
-
msgid "Search for existing attachments to prevent duplicates in media library"
|
4336 |
-
msgstr ""
|
4337 |
-
"Suche nach existierenden Anhängen um vor Duplikaten in der Medien Bibliothek "
|
4338 |
-
"zu schützen"
|
4339 |
-
|
4340 |
-
#: ../../views/admin/import/template/_other_template.php:144
|
4341 |
-
msgid "Post Format"
|
4342 |
-
msgstr "Post Format"
|
4343 |
-
|
4344 |
-
#: ../../views/admin/import/template/_other_template.php:150
|
4345 |
-
msgid "Standard"
|
4346 |
-
msgstr "Standard"
|
4347 |
-
|
4348 |
-
#: ../../views/admin/import/template/_other_template.php:182
|
4349 |
-
msgid "Page Template"
|
4350 |
-
msgstr "Seiten Vorlage"
|
4351 |
-
|
4352 |
-
#: ../../views/admin/import/template/_other_template.php:185
|
4353 |
-
msgid "Select a template"
|
4354 |
-
msgstr "Wählen Sie eine Vorlage"
|
4355 |
-
|
4356 |
-
#: ../../views/admin/import/template/_other_template.php:189
|
4357 |
-
msgid "Default"
|
4358 |
-
msgstr "Standard"
|
4359 |
-
|
4360 |
-
#: ../../views/admin/import/template/_other_template.php:211
|
4361 |
-
msgid "Page Parent"
|
4362 |
-
msgstr "Seiten Eltern"
|
4363 |
-
|
4364 |
-
#: ../../views/admin/import/template/_other_template.php:211
|
4365 |
-
msgid ""
|
4366 |
-
"Enter the slug of the desired page parent. If adding the child and parent "
|
4367 |
-
"pages in the same import, set 'Records per Iteration' to 1, run the import "
|
4368 |
-
"twice, or run separate imports for child and parent pages."
|
4369 |
-
msgstr ""
|
4370 |
-
"Geben Sie den Slug der gewünschten Elternseite ein. Wenn Sie Kind und "
|
4371 |
-
"Elternseiten im selben Import hinzufügen, setzen Sie 'Datensätze pro "
|
4372 |
-
"Durchlauf' auf 1. Oder Sie lassen den Import zweimal durchlaufen, oder Sie "
|
4373 |
-
"teilen die Imports auf Kind und Elternseiten auf."
|
4374 |
-
|
4375 |
-
#: ../../views/admin/import/template/_other_template.php:215
|
4376 |
-
msgid "Select page parent"
|
4377 |
-
msgstr "Wähle Elternseite"
|
4378 |
-
|
4379 |
-
#: ../../views/admin/import/template/_other_template.php:218
|
4380 |
-
msgid "(no parent)"
|
4381 |
-
msgstr "(keine Eltern)"
|
4382 |
-
|
4383 |
-
#: ../../views/admin/import/template/_other_template.php:237
|
4384 |
-
msgid "Post Parent"
|
4385 |
-
msgstr "Eltern Post"
|
4386 |
-
|
4387 |
-
#: ../../views/admin/import/template/_other_template.php:237
|
4388 |
-
msgid ""
|
4389 |
-
"Enter the slug of the desired post parent. If adding the child and parent "
|
4390 |
-
"posts in the same import, set 'Records per Iteration' to 1, run the import "
|
4391 |
-
"twice, or run separate imports for child and parent posts."
|
4392 |
-
msgstr ""
|
4393 |
-
"Geben Sie den Slug der gewünschten Eltern Post ein. Wenn Sie Kind und Eltern "
|
4394 |
-
"Posts im selben Import hinzufügen, setzen Sie 'Datensätze pro Durchlauf' auf "
|
4395 |
-
"1. Oder Sie lassen den Import zweimal durchlaufen, oder Sie teilen die "
|
4396 |
-
"Imports auf Kind und Elternseiten auf."
|
4397 |
-
|
4398 |
-
#: ../../views/admin/import/template/_other_template.php:241
|
4399 |
-
msgid "Set post parent"
|
4400 |
-
msgstr "Setze Eltern Post"
|
4401 |
-
|
4402 |
-
#: ../../views/admin/import/template/_other_template.php:265
|
4403 |
-
msgid "Menu Order"
|
4404 |
-
msgstr "Menü Reihenfolge"
|
4405 |
-
|
4406 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:13
|
4407 |
-
msgid "Taxonomies, Categories, Tags"
|
4408 |
-
msgstr "Taxonomien, Kategorien, Tags"
|
4409 |
-
|
4410 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:17
|
4411 |
-
msgid "Show Hints"
|
4412 |
-
msgstr "Zeige Hinweise"
|
4413 |
-
|
4414 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:38
|
4415 |
-
#, php-format
|
4416 |
-
msgid "Each %s has just one %s"
|
4417 |
-
msgstr "Jedes %s hat genau eine %s"
|
4418 |
-
|
4419 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:46 ../..
|
4420 |
-
#: /views/admin/import/template/_taxonomies_template.php:70
|
4421 |
-
#, php-format
|
4422 |
-
msgid "Try to match terms to existing child %s"
|
4423 |
-
msgstr "Versuche Begriffe mit bestehenden Kinder %s zusammen zu führen. "
|
4424 |
-
|
4425 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:51 ../..
|
4426 |
-
#: /views/admin/import/template/_taxonomies_template.php:75
|
4427 |
-
#, php-format
|
4428 |
-
msgid "Only assign %s to the imported %s, not the entire hierarchy"
|
4429 |
-
msgstr ""
|
4430 |
-
"Füge %s nur zu den importierten %s hinzu, nicht zu der vollständigen "
|
4431 |
-
"Hierarchie."
|
4432 |
-
|
4433 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:52 ../..
|
4434 |
-
#: /views/admin/import/template/_taxonomies_template.php:76
|
4435 |
-
msgid ""
|
4436 |
-
"By default all categories above the matched category will also be assigned "
|
4437 |
-
"to the post. If enabled, only the imported category will be assigned to the "
|
4438 |
-
"post."
|
4439 |
-
msgstr ""
|
4440 |
-
"Standardmäßig werden alle Kategorien über der zugeordneten Kategorie zu dem "
|
4441 |
-
"Post hinzugefügt. Wenn Sie das aktivieren, wird der Post nur zu der "
|
4442 |
-
"angegebenen Kategorie hinzugefügt."
|
4443 |
-
|
4444 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:60
|
4445 |
-
#, php-format
|
4446 |
-
msgid "Each %s has multiple %s"
|
4447 |
-
msgstr "Jedes %s hat mehrere %s"
|
4448 |
-
|
4449 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:85
|
4450 |
-
#, php-format
|
4451 |
-
msgid ""
|
4452 |
-
"%ss have hierarchical (parent/child) %s (i.e. Sports > Golf > Clubs > "
|
4453 |
-
"Putters)"
|
4454 |
-
msgstr "%ss haben Hierarchische (Eltern/Kind) %s (Bsp: Sport>Golf>Clubs>Putters)"
|
4455 |
-
|
4456 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:90
|
4457 |
-
msgid ""
|
4458 |
-
"An element in my file contains the entire hierarchy (i.e. you have an "
|
4459 |
-
"element with a value = Sports > Golf > Clubs > Putters)"
|
4460 |
-
msgstr ""
|
4461 |
-
"Ein Element in der Datei hat eine vollständige Hierarchie (Bsp: Ein Element "
|
4462 |
-
"hat den Wert = Sports > Golf > Clubs > Putters)"
|
4463 |
-
|
4464 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:127
|
4465 |
-
#, php-format
|
4466 |
-
msgid "Only assign %s to the bottom level term in the hierarchy"
|
4467 |
-
msgstr "Füge %s nur an das unterste Level der Hierarchie hinzu."
|
4468 |
-
|
4469 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:132
|
4470 |
-
msgid "Separate hierarchy groups via symbol"
|
4471 |
-
msgstr "Teile die Hierarchie Gruppen durch das Symbol"
|
4472 |
-
|
4473 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:140
|
4474 |
-
msgid "Add Another Hierarchy Group"
|
4475 |
-
msgstr "Weitere Hierarchie Gruppen hinzufügen"
|
4476 |
-
|
4477 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:147
|
4478 |
-
msgid "Manually design the hierarchy with drag & drop"
|
4479 |
-
msgstr "Erstelle die Hierarchie manuell durch drag & drop"
|
4480 |
-
|
4481 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:149
|
4482 |
-
#, php-format
|
4483 |
-
msgid ""
|
4484 |
-
"Drag the <img src=\"%s\" class=\"wpallimport-drag-icon\"/> to the right to "
|
4485 |
-
"create a child, drag up and down to re-order."
|
4486 |
-
msgstr ""
|
4487 |
-
"Ziehe das <img src=\"%s\" class=\"wpallimport-drag-icon\"/> nach rechts um ein "
|
4488 |
-
"Kind zu erstellen, ziehe rauf und runter zum Ordnen."
|
4489 |
-
|
4490 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:227
|
4491 |
-
#, php-format
|
4492 |
-
msgid "Enable Mapping for %s"
|
4493 |
-
msgstr "Aktiviere Zuordnung für %s"
|
4494 |
-
|
4495 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:306
|
4496 |
-
msgid "Apply mapping rules before splitting via separator symbol"
|
4497 |
-
msgstr ""
|
4498 |
-
"Wende Regeln für Zuordnung an bevor eine Aufteilung mittels dem Separator "
|
4499 |
-
"Symbol erfolgt."
|
4500 |
-
|
4501 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:321
|
4502 |
-
msgid "Show \"private\" taxonomies"
|
4503 |
-
msgstr "Zeige \"Private\" Taxonomien"
|
4504 |
-
|
4505 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:332
|
4506 |
-
msgid "Taxonomies that don't already exist on your site will be created."
|
4507 |
-
msgstr "Taxonomien die noch nicht auf der Seite existieren werden erstellt."
|
4508 |
-
|
4509 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:333
|
4510 |
-
msgid ""
|
4511 |
-
"To import to existing parent taxonomies, use the existing taxonomy name or "
|
4512 |
-
"slug."
|
4513 |
-
msgstr ""
|
4514 |
-
"Zum importieren in existierende Eltern Taxonomien benutzen Sie bestehende "
|
4515 |
-
"Taxonomie Namen oder Slugs."
|
4516 |
-
|
4517 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:334
|
4518 |
-
msgid ""
|
4519 |
-
"To import to existing hierarchical taxonomies, create the entire hierarchy "
|
4520 |
-
"using the taxonomy names or slugs."
|
4521 |
-
msgstr ""
|
4522 |
-
"Um in existierende hierarchische Taxonomien zu importieren, erstellen Sie "
|
4523 |
-
"die gesamte Hierarchie und nutzen Sie die Taxonomien oder Slugs."
|
4524 |
-
|
4525 |
-
#: ../../views/admin/license/index.php:3
|
4526 |
-
msgid "WP All Import Licenses"
|
4527 |
-
msgstr "WP All Import Lizenzen"
|
4528 |
-
|
4529 |
-
#: ../../views/admin/license/index.php:23 ../../views/admin/settings/index.php:163
|
4530 |
-
msgid "Active"
|
4531 |
-
msgstr "Aktiv"
|
4532 |
-
|
4533 |
-
#: ../../views/admin/license/index.php:24
|
4534 |
-
msgid "Deactivate License"
|
4535 |
-
msgstr "Deaktiviere Lizenz"
|
4536 |
-
|
4537 |
-
#: ../../views/admin/license/index.php:26 ../../views/admin/settings/index.php:165
|
4538 |
-
msgid "Activate License"
|
4539 |
-
msgstr "Aktiviere Lizenz"
|
4540 |
-
|
4541 |
-
#: ../../views/admin/manage/bulk.php:10
|
4542 |
-
#, php-format
|
4543 |
-
msgid "Are you sure you want to delete <strong>%s</strong> selected %s?"
|
4544 |
-
msgstr ""
|
4545 |
-
"Sind Sie sicher dass Sie das selektierte <strong>%s</strong> löschen wollen "
|
4546 |
-
"%s?"
|
4547 |
-
|
4548 |
-
#: ../../views/admin/manage/bulk.php:12
|
4549 |
-
msgid "Delete associated posts as well"
|
4550 |
-
msgstr "Lösche auch assoziierte Posts"
|
4551 |
-
|
4552 |
-
#: ../../views/admin/manage/bulk.php:17 ../../views/admin/manage/delete.php:19
|
4553 |
-
msgid "Delete associated images from media gallery"
|
4554 |
-
msgstr "Lösche auch assoziierte Bilder aus der Medien Galerie"
|
4555 |
-
|
4556 |
-
#: ../../views/admin/manage/bulk.php:22 ../../views/admin/manage/delete.php:24
|
4557 |
-
msgid "Delete associated files from media gallery"
|
4558 |
-
msgstr "Lösche auch assoziierte Dateien aus der Media Galerie"
|
4559 |
-
|
4560 |
-
#: ../../views/admin/manage/bulk.php:31 ../../views/admin/manage/delete.php:32
|
4561 |
-
#, php-format
|
4562 |
-
msgid ""
|
4563 |
-
"<p class=\"wpallimport-delete-posts-warning\"><strong>Important</strong>: this "
|
4564 |
-
"import was created automatically by WP All Export. All posts exported by the "
|
4565 |
-
"\"%s\" export job have been automatically associated with this import.</p>"
|
4566 |
-
msgstr ""
|
4567 |
-
"<p class=\"wpallimport-delete-posts-warning\"><strong>Wichtig</strong>: dieser "
|
4568 |
-
"Import wurde automatisch erstellt von WP All Export. Alle Posts die von \"%s\" "
|
4569 |
-
"exportiert wurden, wurden automatisch assoziiert mit diesem Import.</p>"
|
4570 |
-
|
4571 |
-
#: ../../views/admin/manage/delete.php:1
|
4572 |
-
msgid "Delete Import"
|
4573 |
-
msgstr "Lösche Import"
|
4574 |
-
|
4575 |
-
#: ../../views/admin/manage/index.php:18 ../../views/admin/manage/index.php:20
|
4576 |
-
msgid "Search Imports"
|
4577 |
-
msgstr "Suche Imports"
|
4578 |
-
|
4579 |
-
#: ../../views/admin/manage/index.php:28
|
4580 |
-
msgid "File"
|
4581 |
-
msgstr "Datei"
|
4582 |
-
|
4583 |
-
#: ../../views/admin/manage/index.php:31
|
4584 |
-
msgid "Info & Options"
|
4585 |
-
msgstr "Info & Optionen"
|
4586 |
-
|
4587 |
-
#: ../../views/admin/manage/index.php:100
|
4588 |
-
#, php-format
|
4589 |
-
msgid "No previous imports found. <a href=\"%s\">Start a new import...</a>"
|
4590 |
-
msgstr ""
|
4591 |
-
"Keine vorherigen Imports gefunden. <a href=\"%s\">Starte einen neuen Import..."
|
4592 |
-
"</a>"
|
4593 |
-
|
4594 |
-
#: ../../views/admin/manage/index.php:182
|
4595 |
-
msgid "Edit Import"
|
4596 |
-
msgstr "Ändere Import"
|
4597 |
-
|
4598 |
-
#: ../../views/admin/manage/index.php:187
|
4599 |
-
msgid "Import Settings"
|
4600 |
-
msgstr "Import Einstellungen"
|
4601 |
-
|
4602 |
-
#: ../../views/admin/manage/index.php:228
|
4603 |
-
msgid "triggered with cron"
|
4604 |
-
msgstr "Ausgelöst von cron"
|
4605 |
-
|
4606 |
-
#: ../../views/admin/manage/index.php:235 ../../views/admin/manage/index.php:250 .
|
4607 |
-
#: ./../views/admin/manage/index.php:264
|
4608 |
-
#, php-format
|
4609 |
-
msgid "last activity %s ago"
|
4610 |
-
msgstr "Letzte Aktivität vor %s "
|
4611 |
-
|
4612 |
-
#: ../../views/admin/manage/index.php:242
|
4613 |
-
msgid "currently processing with cron"
|
4614 |
-
msgstr "cron Bearbeitung in Gang"
|
4615 |
-
|
4616 |
-
#: ../../views/admin/manage/index.php:257
|
4617 |
-
msgid "Import currently in progress"
|
4618 |
-
msgstr "Import Bearbeitung in Gang"
|
4619 |
-
|
4620 |
-
#: ../../views/admin/manage/index.php:271 ../../views/admin/manage/index.php:275
|
4621 |
-
#, php-format
|
4622 |
-
msgid "Import Attempt at %s"
|
4623 |
-
msgstr "Import Versuch bei %s"
|
4624 |
-
|
4625 |
-
#: ../../views/admin/manage/index.php:276
|
4626 |
-
msgid "Import failed, please check logs"
|
4627 |
-
msgstr "Import fehlgeschlagen, Bitte Log überprüfen"
|
4628 |
-
|
4629 |
-
#: ../../views/admin/manage/index.php:286
|
4630 |
-
#, php-format
|
4631 |
-
msgid "Last run: %s"
|
4632 |
-
msgstr "Letzter Lauf: %s"
|
4633 |
-
|
4634 |
-
#: ../../views/admin/manage/index.php:286
|
4635 |
-
msgid "never"
|
4636 |
-
msgstr "Nie"
|
4637 |
-
|
4638 |
-
#: ../../views/admin/manage/index.php:287
|
4639 |
-
#, php-format
|
4640 |
-
msgid "%d %s created"
|
4641 |
-
msgstr "%d %s erstellt"
|
4642 |
-
|
4643 |
-
#: ../../views/admin/manage/index.php:288
|
4644 |
-
#, php-format
|
4645 |
-
msgid "%d updated, %d skipped, %d deleted"
|
4646 |
-
msgstr "%d aktualisiert, %d übersprungen, %d gelöscht"
|
4647 |
-
|
4648 |
-
#: ../../views/admin/manage/index.php:295
|
4649 |
-
msgid "settings edited since last run"
|
4650 |
-
msgstr "Einstellungen geändert seit letztem Lauf"
|
4651 |
-
|
4652 |
-
#: ../../views/admin/manage/index.php:307 ../../views/admin/manage/scheduling.php:2
|
4653 |
-
msgid "Cron Scheduling"
|
4654 |
-
msgstr "Cron Geplant"
|
4655 |
-
|
4656 |
-
#: ../../views/admin/manage/index.php:309
|
4657 |
-
msgid "History Logs"
|
4658 |
-
msgstr "Chronik Log"
|
4659 |
-
|
4660 |
-
#: ../../views/admin/manage/index.php:319
|
4661 |
-
msgid "Run Import"
|
4662 |
-
msgstr "Starte Import"
|
4663 |
-
|
4664 |
-
#: ../../views/admin/manage/index.php:321
|
4665 |
-
msgid "Cancel Cron"
|
4666 |
-
msgstr "Cron Abbrechen"
|
4667 |
-
|
4668 |
-
#: ../../views/admin/manage/index.php:323
|
4669 |
-
msgid "Cancel"
|
4670 |
-
msgstr "Abbrechen"
|
4671 |
-
|
4672 |
-
#: ../../views/admin/manage/scheduling.php:8
|
4673 |
-
msgid ""
|
4674 |
-
"To schedule an import, you must create two cron jobs in your web hosting "
|
4675 |
-
"control panel. One cron job will be used to run the Trigger script, the "
|
4676 |
-
"other to run the Execution script."
|
4677 |
-
msgstr ""
|
4678 |
-
"Um einen Import zu planen, müssen Sie zwei Cron Jobs in Ihrem web Hosting "
|
4679 |
-
"Bedienfeld erstellen. Ein Cron Job wird genutzt um das auslöse Skript zu "
|
4680 |
-
"starten, das andere um das Ausführende Skript zu starten."
|
4681 |
-
|
4682 |
-
#: ../../views/admin/manage/scheduling.php:19
|
4683 |
-
msgid "Trigger Script"
|
4684 |
-
msgstr "Auslösendes Skript"
|
4685 |
-
|
4686 |
-
#: ../../views/admin/manage/scheduling.php:21
|
4687 |
-
msgid "Every time you want to schedule the import, run the trigger script."
|
4688 |
-
msgstr "Jedes mal wenn Sie den Import planen wollen, starten Sie das Auslöse Skript."
|
4689 |
-
|
4690 |
-
#: ../../views/admin/manage/scheduling.php:23
|
4691 |
-
msgid ""
|
4692 |
-
"To schedule the import to run once every 24 hours, run the trigger script "
|
4693 |
-
"every 24 hours. Most hosts require you to use “wget” to access a URL. Ask "
|
4694 |
-
"your host for details."
|
4695 |
-
msgstr ""
|
4696 |
-
"Um den Import einmal in 24 Stunden zu planen, starten Sie das Auslöse Skript "
|
4697 |
-
"alle 24 Stunden. Die meisten Hosts erlauben \"wget\" für den Zugriff auf eine "
|
4698 |
-
"URL. Fragen Sie Ihren Host für Details."
|
4699 |
-
|
4700 |
-
#: ../../views/admin/manage/scheduling.php:25 ../../views/admin/manage/scheduling.
|
4701 |
-
#: php:37
|
4702 |
-
msgid "Example:"
|
4703 |
-
msgstr "Beispiel:"
|
4704 |
-
|
4705 |
-
#: ../../views/admin/manage/scheduling.php:29
|
4706 |
-
msgid "Execution Script"
|
4707 |
-
msgstr "Ausführende Skript"
|
4708 |
-
|
4709 |
-
#: ../../views/admin/manage/scheduling.php:31
|
4710 |
-
msgid ""
|
4711 |
-
"The Execution script actually executes the import, once it has been "
|
4712 |
-
"triggered with the Trigger script."
|
4713 |
-
msgstr ""
|
4714 |
-
"Das ausführende Skript erledigt den Import, wenn es vom auslösenden Skript "
|
4715 |
-
"gestartet wurde."
|
4716 |
-
|
4717 |
-
#: ../../views/admin/manage/scheduling.php:33
|
4718 |
-
msgid ""
|
4719 |
-
"It processes in iteration (only importing a few records each time it runs) "
|
4720 |
-
"to optimize server load. It is recommended you run the execution script "
|
4721 |
-
"every 2 minutes."
|
4722 |
-
msgstr ""
|
4723 |
-
"Es bearbeitet in Schleifendurchläufen (importiert nur ein paar Datensätze "
|
4724 |
-
"mit jedem Durchlauf) zur Optimierung der Serverlast. Es wird empfohlen das "
|
4725 |
-
"Ausführende Skript alle 2 Minuten zu starten."
|
4726 |
-
|
4727 |
-
#: ../../views/admin/manage/scheduling.php:35
|
4728 |
-
msgid ""
|
4729 |
-
"It also operates this way in case of unexpected crashes by your web host. If "
|
4730 |
-
"it crashes before the import is finished, the next run of the cron job two "
|
4731 |
-
"minutes later will continue it where it left off, ensuring reliability."
|
4732 |
-
msgstr ""
|
4733 |
-
"So funktioniert es auch wenn unerwartete Abstürze Ihres Hosts auftreten. "
|
4734 |
-
"Wenn es abstürzt bevor der Import fertig ist, wird der nächste Lauf des cron "
|
4735 |
-
"Jobs zwei Minuten später dort weiter machen, wo der vorherige aufgehört hat."
|
4736 |
-
|
4737 |
-
#: ../../views/admin/manage/scheduling.php:41
|
4738 |
-
msgid "Notes"
|
4739 |
-
msgstr "Hinweis"
|
4740 |
-
|
4741 |
-
#: ../../views/admin/manage/scheduling.php:44
|
4742 |
-
msgid ""
|
4743 |
-
"Your web host may require you to use a command other than wget, although "
|
4744 |
-
"wget is most common. In this case, you must asking your web hosting provider "
|
4745 |
-
"for help."
|
4746 |
-
msgstr ""
|
4747 |
-
"Ihr Webhost benötigt evtl einen anderen Befehl als \"wget\", obwohl \"wget\" das "
|
4748 |
-
"am häufigsten genutzte ist. In diesem Fall müssen Sie Ihren Webhost Anbieter "
|
4749 |
-
"um Hilfe fragen."
|
4750 |
-
|
4751 |
-
#: ../../views/admin/manage/scheduling.php:54
|
4752 |
-
msgid ""
|
4753 |
-
"To schedule this import with a cron job, you must use the \"Download from "
|
4754 |
-
"URL\" option on the Import Settings screen of WP All Import."
|
4755 |
-
msgstr ""
|
4756 |
-
"Um einen Import mit einem Cron Job zu planen, müssen Sie \"Von URL "
|
4757 |
-
"Herunterladen\" wählen. Diese finden Sie in den Import Einstellungen von WP "
|
4758 |
-
"All Import."
|
4759 |
-
|
4760 |
-
#: ../../views/admin/manage/scheduling.php:57
|
4761 |
-
msgid "Go to Import Settings now..."
|
4762 |
-
msgstr "Gehe zu Import Einstellungen..."
|
4763 |
-
|
4764 |
-
#: ../../views/admin/manage/update.php:1
|
4765 |
-
msgid "Update Import"
|
4766 |
-
msgstr "Aktualisiere Import"
|
4767 |
-
|
4768 |
-
#: ../../views/admin/manage/update.php:9
|
4769 |
-
#, php-format
|
4770 |
-
msgid "Are you sure you want to update <strong>%s</strong> import?"
|
4771 |
-
msgstr "Sind Sie sicher dass Sie den Import <strong>%s</strong> aktualisieren wollen?"
|
4772 |
-
|
4773 |
-
#: ../../views/admin/manage/update.php:10
|
4774 |
-
#, php-format
|
4775 |
-
msgid "Source path is <strong>%s</strong>"
|
4776 |
-
msgstr "Quellpfad ist <strong>%s</strong>"
|
4777 |
-
|
4778 |
-
#: ../../views/admin/manage/update.php:21
|
4779 |
-
msgid ""
|
4780 |
-
"Update feature is not available for this import since it has no external "
|
4781 |
-
"path linked."
|
4782 |
-
msgstr ""
|
4783 |
-
"Funktion für Aktualisierung ist nicht verfügbar für diesen Import, da es "
|
4784 |
-
"keinen externen Pfad verlinkt hat."
|
4785 |
-
|
4786 |
-
#: ../../views/admin/settings/index.php:18
|
4787 |
-
msgid "Import/Export Templates"
|
4788 |
-
msgstr "Importiere/Exportiere Vorlagen"
|
4789 |
-
|
4790 |
-
#: ../../views/admin/settings/index.php:32
|
4791 |
-
msgid "Delete Selected"
|
4792 |
-
msgstr "Lösche Ausgewählte"
|
4793 |
-
|
4794 |
-
#: ../../views/admin/settings/index.php:33
|
4795 |
-
msgid "Export Selected"
|
4796 |
-
msgstr "Exportiere Ausgewählte"
|
4797 |
-
|
4798 |
-
#: ../../views/admin/settings/index.php:36
|
4799 |
-
msgid "There are no templates saved"
|
4800 |
-
msgstr "Es sind keine Vorlagen gespeichert"
|
4801 |
-
|
4802 |
-
#: ../../views/admin/settings/index.php:41
|
4803 |
-
msgid "Import Templates"
|
4804 |
-
msgstr "Importiere Templates"
|
4805 |
-
|
4806 |
-
#: ../../views/admin/settings/index.php:49
|
4807 |
-
msgid "Cron Imports"
|
4808 |
-
msgstr "Cron Importieren"
|
4809 |
-
|
4810 |
-
#: ../../views/admin/settings/index.php:54
|
4811 |
-
msgid "Secret Key"
|
4812 |
-
msgstr "Geheimer Schlüssel"
|
4813 |
-
|
4814 |
-
#: ../../views/admin/settings/index.php:57
|
4815 |
-
msgid "Changing this will require you to re-create your existing cron jobs."
|
4816 |
-
msgstr "Wenn Sie das ändern, müssen Sie Ihre existierenden Cron Jobs neu erstellen."
|
4817 |
-
|
4818 |
-
#: ../../views/admin/settings/index.php:61
|
4819 |
-
msgid "Cron Processing Time Limit"
|
4820 |
-
msgstr "Cron Bearbeitung Zeit Limit"
|
4821 |
-
|
4822 |
-
#: ../../views/admin/settings/index.php:64
|
4823 |
-
msgid "Leave blank to use your server's limit on script run times."
|
4824 |
-
msgstr "Leer lassen um des Servers Limit für die Skript Läufe zu nutzen."
|
4825 |
-
|
4826 |
-
#: ../../views/admin/settings/index.php:68
|
4827 |
-
msgid "Cron Sleep"
|
4828 |
-
msgstr "Cron Schläft"
|
4829 |
-
|
4830 |
-
#: ../../views/admin/settings/index.php:71
|
4831 |
-
msgid ""
|
4832 |
-
"Sleep the specified number of seconds between each post created, updated, or "
|
4833 |
-
"deleted with cron. Leave blank to not sleep. Only necessary on servers that "
|
4834 |
-
"are slowed down by the cron job because they have very minimal processing "
|
4835 |
-
"power and resources."
|
4836 |
-
msgstr ""
|
4837 |
-
"Schlafe die bestimmte Zahl von Sekunden zwischen jedem erstellten, "
|
4838 |
-
"aktualisierten oder gelöschten Post. Leer lassen um nicht zu schlafen. Nur "
|
4839 |
-
"nötig auf Servern die durch den Cron verlangsamt werden da sie zu wenig "
|
4840 |
-
"Prozessorleistung und Ressourcen haben."
|
4841 |
-
|
4842 |
-
#: ../../views/admin/settings/index.php:84 ../../views/admin/settings/index.php:87
|
4843 |
-
msgid "Secure Mode"
|
4844 |
-
msgstr "Quellen Art"
|
4845 |
-
|
4846 |
-
#: ../../views/admin/settings/index.php:89
|
4847 |
-
msgid "Randomize folder names"
|
4848 |
-
msgstr "Verzeichnis Namen zufällig anordnen"
|
4849 |
-
|
4850 |
-
#: ../../views/admin/settings/index.php:95
|
4851 |
-
#, php-format
|
4852 |
-
msgid ""
|
4853 |
-
"Imported files, chunks, logs and temporary files will be placed in a folder "
|
4854 |
-
"with a randomized name inside of %s."
|
4855 |
-
msgstr ""
|
4856 |
-
"Importierte Dateien, Datenblöcke, Logs und temporäre Dateien werden in ein "
|
4857 |
-
"Verzeichnis mit zufällig angeordneten Namen geschrieben %s.."
|
4858 |
-
|
4859 |
-
#: ../../views/admin/settings/index.php:100
|
4860 |
-
msgid "Log Storage"
|
4861 |
-
msgstr "Log Speicher"
|
4862 |
-
|
4863 |
-
#: ../../views/admin/settings/index.php:103
|
4864 |
-
msgid "Number of logs to store for each import. Enter 0 to never store logs."
|
4865 |
-
msgstr ""
|
4866 |
-
"Anzahl an Logs die für jeden Import gespeichert werden. Geben Sie 0 ein um "
|
4867 |
-
"niemals Logs zu speichern."
|
4868 |
-
|
4869 |
-
#: ../../views/admin/settings/index.php:107
|
4870 |
-
msgid "Clean Up Temp Files"
|
4871 |
-
msgstr "Räume temporäre Dateien auf"
|
4872 |
-
|
4873 |
-
#: ../../views/admin/settings/index.php:109
|
4874 |
-
msgid "Clean Up"
|
4875 |
-
msgstr "Aufräumen"
|
4876 |
-
|
4877 |
-
#: ../../views/admin/settings/index.php:110
|
4878 |
-
msgid ""
|
4879 |
-
"Attempt to remove temp files left over by imports that were improperly "
|
4880 |
-
"terminated."
|
4881 |
-
msgstr ""
|
4882 |
-
"Versuche die temporären Dateien zu entfernen, die von unsachgemäß beendeten "
|
4883 |
-
"Imports übrig blieben."
|
4884 |
-
|
4885 |
-
#: ../../views/admin/settings/index.php:118
|
4886 |
-
msgid "Advanced Settings"
|
4887 |
-
msgstr "Erweiterte Einstellungen"
|
4888 |
-
|
4889 |
-
#: ../../views/admin/settings/index.php:123
|
4890 |
-
msgid "Chunk Size"
|
4891 |
-
msgstr "Datenblock Größe "
|
4892 |
-
|
4893 |
-
#: ../../views/admin/settings/index.php:126
|
4894 |
-
msgid "Split file into chunks containing the specified number of records."
|
4895 |
-
msgstr "Teile Datei in Datenblöcke die die bestimmte Zahl an Datensätzen enthalten."
|
4896 |
-
|
4897 |
-
#: ../../views/admin/settings/index.php:130
|
4898 |
-
msgid "WP_IMPORTING"
|
4899 |
-
msgstr "WP_IMPORTIERT"
|
4900 |
-
|
4901 |
-
#: ../../views/admin/settings/index.php:134
|
4902 |
-
msgid "Enable WP_IMPORTING"
|
4903 |
-
msgstr "Aktiviere WP_IMPORTIERT"
|
4904 |
-
|
4905 |
-
#: ../../views/admin/settings/index.php:136
|
4906 |
-
msgid "Setting this constant avoids triggering pingback."
|
4907 |
-
msgstr ""
|
4908 |
-
"Wenn Sie diese Einstellung aktivieren, verhindern Sie die Auslösung eines "
|
4909 |
-
"pingback."
|
4910 |
-
|
4911 |
-
#: ../../views/admin/settings/index.php:140
|
4912 |
-
msgid "Add Port To URL"
|
4913 |
-
msgstr "Füge Port zu URL hinzu"
|
4914 |
-
|
4915 |
-
#: ../../views/admin/settings/index.php:143
|
4916 |
-
msgid ""
|
4917 |
-
"Specify the port number to add if you're having problems continuing to Step "
|
4918 |
-
"2 and are running things on a custom port. Default is blank."
|
4919 |
-
msgstr ""
|
4920 |
-
"Bestimmen Sie die hinzuzufügende Port Nummer wenn Sie Probleme haben zu "
|
4921 |
-
"Schritt 2 zu gelangen und dinge auf einem individuellen Port laufen lassen. "
|
4922 |
-
"Standard ist leer."
|
4923 |
-
|
4924 |
-
#: ../../views/admin/settings/index.php:150
|
4925 |
-
msgid "Licenses"
|
4926 |
-
msgstr "Lizenzen"
|
4927 |
-
|
4928 |
-
#: ../../views/admin/settings/index.php:157
|
4929 |
-
msgid "License Key"
|
4930 |
-
msgstr "Lizenz Schlüssel"
|
4931 |
-
|
4932 |
-
#: ../../views/admin/settings/index.php:170
|
4933 |
-
msgid ""
|
4934 |
-
"A license key is required to access plugin updates. You can use your license "
|
4935 |
-
"key on an unlimited number of websites. Do not distribute your license key "
|
4936 |
-
"to 3rd parties. You can get your license key in the <a target=\"_blank\" "
|
4937 |
-
"href=\"http://www.wpallimport.com/portal\">customer portal</a>."
|
4938 |
-
msgstr ""
|
4939 |
-
"Ein Lizenz Schlüssel wird benötigt um Zugang auf Plugin Updates zu haben. "
|
4940 |
-
"Sie können Ihren Lizenz Schlüssel auf einer unbestimmten Anzahl von "
|
4941 |
-
"Webseiten nutzen. Geben Sie Ihren Schlüssel nicht an dritte weiter. Sie "
|
4942 |
-
"können Ihren Lizenz Schlüssel im <a target=\"_blank\" href=\"http://www."
|
4943 |
-
"wpallimport.com/portal\">Kunden Portal</a> bekommen."
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"MIME-Version: 1.0\n"
|
4 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
5 |
+
"Content-Transfer-Encoding: 8bit\n"
|
6 |
+
"X-Generator: POEditor.com\n"
|
7 |
+
"Project-Id-Version: WP All Import Pro\n"
|
8 |
+
"Language: de\n"
|
9 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
10 |
+
|
11 |
+
#: actions/admin_menu.php:12
|
12 |
+
msgid "New Import"
|
13 |
+
msgstr "Neuer Import"
|
14 |
+
|
15 |
+
#: actions/admin_menu.php:13 views/admin/import/process.php:71
|
16 |
+
#: views/admin/manage/index.php:5
|
17 |
+
msgid "Manage Imports"
|
18 |
+
msgstr "Imports verwalten"
|
19 |
+
|
20 |
+
#: actions/admin_menu.php:14 views/admin/settings/index.php:7
|
21 |
+
msgid "Settings"
|
22 |
+
msgstr "Einstellungen"
|
23 |
+
|
24 |
+
#: actions/admin_menu.php:16
|
25 |
+
msgid "History"
|
26 |
+
msgstr "Chronik"
|
27 |
+
|
28 |
+
#: actions/admin_menu.php:22 controllers/admin/license.php:18
|
29 |
+
#: controllers/admin/settings.php:50 views/admin/import/confirm.php:11
|
30 |
+
#: views/admin/import/element.php:8 views/admin/import/index.php:43
|
31 |
+
#: views/admin/import/options.php:18 views/admin/import/process.php:8
|
32 |
+
#: views/admin/import/template.php:9 views/admin/manage/index.php:4
|
33 |
+
#: views/admin/settings/index.php:6
|
34 |
+
msgid "WP All Import"
|
35 |
+
msgstr "WP All Import"
|
36 |
+
|
37 |
+
#: actions/admin_menu.php:22
|
38 |
+
msgid "All Import"
|
39 |
+
msgstr "All Import"
|
40 |
+
|
41 |
+
#: actions/admin_notices.php:12
|
42 |
+
msgid "<b>%s Plugin</b>: Please update your WP All Import WooCommerce add-on to the latest version"
|
43 |
+
msgstr "<b>%s Plugin</b>: Bitte aktualisieren Sie das WP All Import WooCommerce add-on."
|
44 |
+
|
45 |
+
#: actions/admin_notices.php:39
|
46 |
+
msgid "<b>%s Plugin</b>: Please update your WP All Import ACF add-on to the latest version"
|
47 |
+
msgstr "<b>%s Plugin</b>: Bitte aktualisieren Sie das WP All Import ACF add-on."
|
48 |
+
|
49 |
+
#: actions/admin_notices.php:56
|
50 |
+
msgid "<b>%s Plugin</b>: Please update your WP All Import Linkcloak add-on to the latest version"
|
51 |
+
msgstr "<b>%s Plugin</b>: Bitte aktualisieren Sie das WP All Import Linkcloak add-on."
|
52 |
+
|
53 |
+
#: actions/admin_notices.php:73
|
54 |
+
msgid "<b>%s Plugin</b>: Please update your WP All Import User add-on to the latest version"
|
55 |
+
msgstr "<b>%s Plugin</b>: Bitte aktualisieren Sie das WP All Import User add-on."
|
56 |
+
|
57 |
+
#: actions/admin_notices.php:90
|
58 |
+
msgid "<b>%s Plugin</b>: The WPML Add-On Plugin is no longer compatible with this version of WP All Import - please contact support@wpallimport.com and we will supply the latest version of WP All Import that is compatible with the WPML Add-On."
|
59 |
+
msgstr "<b>%s Plugin</b>: Das WPML add-on Plugin ist leider nicht mehr kompatibel mit dieser Version von WP All Import. Bitte kontaktieren Sie den Support unter support@wpallimport.com und wir werden Ihnen die neueste Version von WP All Import anbieten die mit dem WPML add-on kompatibel ist."
|
60 |
+
|
61 |
+
#: actions/admin_notices.php:119 controllers/admin/import.php:1547
|
62 |
+
#: controllers/admin/import.php:1789 controllers/admin/import.php:2339
|
63 |
+
msgid "<strong>Warning:</strong> your title is blank."
|
64 |
+
msgstr "<strong>Warnung:</strong>Ihr Titel ist leer."
|
65 |
+
|
66 |
+
#: actions/admin_notices.php:122 controllers/admin/import.php:1554
|
67 |
+
msgid "<strong>Warning:</strong> your content is blank."
|
68 |
+
msgstr "<strong>Warnung:</strong> Ihr Inhalt ist leer."
|
69 |
+
|
70 |
+
#: actions/wp_ajax_auto_detect_cf.php:5 actions/wp_ajax_auto_detect_cf.php:9
|
71 |
+
#: actions/wp_ajax_auto_detect_sf.php:5 actions/wp_ajax_auto_detect_sf.php:9
|
72 |
+
#: actions/wp_ajax_delete_import.php:5 actions/wp_ajax_delete_import.php:9
|
73 |
+
#: actions/wp_ajax_dismiss_notifications.php:5
|
74 |
+
#: actions/wp_ajax_dismiss_notifications.php:9
|
75 |
+
#: actions/wp_ajax_get_bundle_post_type.php:6
|
76 |
+
#: actions/wp_ajax_get_bundle_post_type.php:10
|
77 |
+
#: actions/wp_ajax_import_failed.php:5 actions/wp_ajax_import_failed.php:9
|
78 |
+
#: actions/wp_ajax_nested_merge.php:6 actions/wp_ajax_nested_merge.php:10
|
79 |
+
#: actions/wp_ajax_nested_xpath.php:6 actions/wp_ajax_nested_xpath.php:10
|
80 |
+
#: actions/wp_ajax_parse_nested_file.php:10
|
81 |
+
#: actions/wp_ajax_parse_nested_file.php:14
|
82 |
+
#: actions/wp_ajax_save_import_functions.php:6
|
83 |
+
#: actions/wp_ajax_save_import_functions.php:10
|
84 |
+
#: actions/wp_ajax_test_images.php:6 actions/wp_ajax_test_images.php:10
|
85 |
+
#: actions/wp_ajax_unmerge_file.php:5 actions/wp_ajax_unmerge_file.php:9
|
86 |
+
#: actions/wp_ajax_upload_resource.php:6 actions/wp_ajax_upload_resource.php:10
|
87 |
+
#: controllers/admin/history.php:74 controllers/admin/import.php:591
|
88 |
+
#: controllers/admin/import.php:899 controllers/admin/import.php:1037
|
89 |
+
#: controllers/admin/import.php:1177 controllers/admin/import.php:1333
|
90 |
+
#: controllers/admin/import.php:2589 controllers/admin/manage.php:136
|
91 |
+
#: controllers/admin/manage.php:179 controllers/admin/manage.php:293
|
92 |
+
#: controllers/admin/manage.php:545 controllers/admin/settings.php:427
|
93 |
+
msgid "Security check"
|
94 |
+
msgstr "Sicherheitskontrolle"
|
95 |
+
|
96 |
+
#: actions/wp_ajax_auto_detect_cf.php:71 models/import/record.php:1572
|
97 |
+
#: views/admin/import/element.php:21
|
98 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:8
|
99 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:7
|
100 |
+
#: views/admin/import/process.php:40
|
101 |
+
#: views/admin/import/template/_custom_fields_template.php:7
|
102 |
+
#: views/admin/import/template/_other_template.php:6
|
103 |
+
#: views/admin/import/template/_term_meta_template.php:7
|
104 |
+
#: views/admin/import/template/_term_other_template.php:7
|
105 |
+
msgid "Taxonomy Term"
|
106 |
+
msgstr ""
|
107 |
+
|
108 |
+
#: actions/wp_ajax_auto_detect_cf.php:77
|
109 |
+
msgid "No Custom Fields are present in your database for %s"
|
110 |
+
msgstr "Keine selbst erstellten Felder in der Datenbank %s"
|
111 |
+
|
112 |
+
#: actions/wp_ajax_auto_detect_cf.php:80
|
113 |
+
msgid "%s field was automatically detected."
|
114 |
+
msgstr "%s Feld wurde automatisch erkannt."
|
115 |
+
|
116 |
+
#: actions/wp_ajax_auto_detect_cf.php:82
|
117 |
+
msgid "%s fields were automatically detected."
|
118 |
+
msgstr "%s Felder wurden automatisch erkannt."
|
119 |
+
|
120 |
+
#: actions/wp_ajax_delete_import.php:32 controllers/admin/manage.php:608
|
121 |
+
msgid "Import deleted"
|
122 |
+
msgstr "Import gelöscht"
|
123 |
+
|
124 |
+
#: actions/wp_ajax_delete_import.php:36 controllers/admin/manage.php:612
|
125 |
+
msgid "All associated posts deleted."
|
126 |
+
msgstr ""
|
127 |
+
|
128 |
+
#: actions/wp_ajax_delete_import.php:40 controllers/admin/manage.php:616
|
129 |
+
msgid "Import and all associated posts deleted."
|
130 |
+
msgstr ""
|
131 |
+
|
132 |
+
#: actions/wp_ajax_delete_import.php:44 controllers/admin/manage.php:597
|
133 |
+
msgid "Nothing to delete."
|
134 |
+
msgstr ""
|
135 |
+
|
136 |
+
#: actions/wp_ajax_delete_import.php:66
|
137 |
+
msgid "Import #%d - %d records deleted"
|
138 |
+
msgstr ""
|
139 |
+
|
140 |
+
#: actions/wp_ajax_get_bundle_post_type.php:73
|
141 |
+
#: actions/wp_ajax_upload_resource.php:141 controllers/admin/settings.php:610
|
142 |
+
msgid "<p class=\"wpallimport-bundle-notice\">The import bundle you are using requires WooCommerce.</p><a class=\"upgrade_link\" href=\"https://wordpress.org/plugins/woocommerce/\" target=\"_blank\">Get WooCommerce</a>."
|
143 |
+
msgstr ""
|
144 |
+
|
145 |
+
#: actions/wp_ajax_get_bundle_post_type.php:79
|
146 |
+
#: actions/wp_ajax_upload_resource.php:147 controllers/admin/settings.php:616
|
147 |
+
msgid "<p class=\"wpallimport-bundle-notice\">The import bundle you are using requires the Pro version of the WooCommerce Add-On.</p><a href=\"http://www.wpallimport.com/checkout/?edd_action=add_to_cart&download_id=1529&edd_options%5Bprice_id%5D=1\" class=\"upgrade_link\" target=\"_blank\">Purchase the WooCommerce Add-On</a>."
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: actions/wp_ajax_get_bundle_post_type.php:84
|
151 |
+
#: actions/wp_ajax_upload_resource.php:152 controllers/admin/settings.php:621
|
152 |
+
msgid "<p class=\"wpallimport-bundle-notice\">The import bundle you are using requires the Pro version of the WooCommerce Add-On, but you have the free version installed.</p><a href=\"http://www.wpallimport.com/checkout/?edd_action=add_to_cart&download_id=1529&edd_options%5Bprice_id%5D=1\" target=\"_blank\" class=\"upgrade_link\">Purchase the WooCommerce Add-On</a>."
|
153 |
+
msgstr ""
|
154 |
+
|
155 |
+
#: actions/wp_ajax_get_bundle_post_type.php:94
|
156 |
+
#: actions/wp_ajax_upload_resource.php:162 controllers/admin/settings.php:631
|
157 |
+
msgid "<p class=\"wpallimport-bundle-notice\">The import bundle you are using requires the User Import Add-On.</p><a href=\"http://www.wpallimport.com/checkout/?edd_action=add_to_cart&download_id=1921&edd_options%5Bprice_id%5D=1\" target=\"_blank\" class=\"upgrade_link\">Purchase the User Import Add-On</a>."
|
158 |
+
msgstr ""
|
159 |
+
|
160 |
+
#: actions/wp_ajax_nested_xpath.php:51
|
161 |
+
msgid "XPath is required"
|
162 |
+
msgstr "XPath wird benötigt"
|
163 |
+
|
164 |
+
#: actions/wp_ajax_nested_xpath.php:65
|
165 |
+
#: actions/wp_ajax_parse_nested_file.php:159
|
166 |
+
msgid "Elements found"
|
167 |
+
msgstr "Elemente gefunden"
|
168 |
+
|
169 |
+
#: actions/wp_ajax_nested_xpath.php:65
|
170 |
+
#: actions/wp_ajax_parse_nested_file.php:159
|
171 |
+
msgid "Elements not found"
|
172 |
+
msgstr "Elemente nicht gefunden"
|
173 |
+
|
174 |
+
#: actions/wp_ajax_save_import_functions.php:31
|
175 |
+
#: actions/wp_ajax_save_import_functions.php:52
|
176 |
+
msgid "PHP code must be wrapped in \"<?php\" and \"?>\""
|
177 |
+
msgstr ""
|
178 |
+
|
179 |
+
#: actions/wp_ajax_save_import_functions.php:38
|
180 |
+
#: actions/wp_ajax_save_import_functions.php:61
|
181 |
+
msgid "File has been successfully updated."
|
182 |
+
msgstr ""
|
183 |
+
|
184 |
+
#: actions/wp_ajax_test_images.php:32
|
185 |
+
msgid "Uploads folder `%s` is not writable."
|
186 |
+
msgstr "Upload Ordner %s muss beschreibbar sein"
|
187 |
+
|
188 |
+
#: actions/wp_ajax_test_images.php:46
|
189 |
+
msgid "Use image name instead of URL `%s`."
|
190 |
+
msgstr "Benutzen Sie ein Bild anstatt einer URL '%s'"
|
191 |
+
|
192 |
+
#: actions/wp_ajax_test_images.php:53
|
193 |
+
msgid "File `%s` isn't readable"
|
194 |
+
msgstr "Datei `%s` nicht lesbar"
|
195 |
+
|
196 |
+
#: actions/wp_ajax_test_images.php:57
|
197 |
+
msgid "File `%s` doesn't exist"
|
198 |
+
msgstr "Datei `%s` existiert nicht"
|
199 |
+
|
200 |
+
#: actions/wp_ajax_test_images.php:63
|
201 |
+
msgid "%d image was successfully retrieved from `%s`"
|
202 |
+
msgstr "%d Bild wurde erfolgreich erneuert von `%s`"
|
203 |
+
|
204 |
+
#: actions/wp_ajax_test_images.php:67
|
205 |
+
msgid "%d images were successfully retrieved from `%s`"
|
206 |
+
msgstr "%d Bilder wurden erfolgreich erneuert von `%s`"
|
207 |
+
|
208 |
+
#: actions/wp_ajax_test_images.php:95
|
209 |
+
msgid "Image `%s` not found in media library."
|
210 |
+
msgstr ""
|
211 |
+
|
212 |
+
#: actions/wp_ajax_test_images.php:102
|
213 |
+
msgid "%d image was successfully founded in media gallery"
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: actions/wp_ajax_test_images.php:106
|
217 |
+
msgid "%d images were successfully founded in media gallery"
|
218 |
+
msgstr ""
|
219 |
+
|
220 |
+
#: actions/wp_ajax_test_images.php:120
|
221 |
+
msgid "URL `%s` is not valid."
|
222 |
+
msgstr "URL `%s` ist ungültig."
|
223 |
+
|
224 |
+
#: actions/wp_ajax_test_images.php:135
|
225 |
+
msgid "File `%s` cannot be saved locally"
|
226 |
+
msgstr "Datei `%s` kann nicht lokal gespeichert werden"
|
227 |
+
|
228 |
+
#: actions/wp_ajax_test_images.php:137
|
229 |
+
msgid "File `%s` is not a valid image."
|
230 |
+
msgstr "Datei `%s` ist kein zulässiges Bild"
|
231 |
+
|
232 |
+
#: actions/wp_ajax_test_images.php:148
|
233 |
+
msgid "%d image was successfully downloaded in %s seconds"
|
234 |
+
msgstr "%d Bild wurde erfolgreich heruntergeladen in %s sekunden"
|
235 |
+
|
236 |
+
#: actions/wp_ajax_test_images.php:152
|
237 |
+
msgid "%d images were successfully downloaded in %s seconds"
|
238 |
+
msgstr "%d Bilder wurden erfolgreich heruntergeladen in %s Sekunden"
|
239 |
+
|
240 |
+
#: actions/wp_ajax_upload_resource.php:124
|
241 |
+
msgid "Please verify that the URL returns a valid import file."
|
242 |
+
msgstr ""
|
243 |
+
|
244 |
+
#: actions/wp_loaded.php:38
|
245 |
+
msgid "Cleanup completed."
|
246 |
+
msgstr ""
|
247 |
+
|
248 |
+
#: actions/wp_loaded.php:44
|
249 |
+
msgid "Missing import ID."
|
250 |
+
msgstr ""
|
251 |
+
|
252 |
+
#: actions/wp_loaded.php:72
|
253 |
+
msgid "Other imports are currently in process [%s]."
|
254 |
+
msgstr "Zur Zeit sind andere Imports in Bearbeitung [%s]"
|
255 |
+
|
256 |
+
#: actions/wp_loaded.php:82
|
257 |
+
msgid "Scheduling update is not working with \"upload\" import type. Import #%s."
|
258 |
+
msgstr "Planung von updates funktioniert nicht mit \"upload\" Importtyp. Import #%s."
|
259 |
+
|
260 |
+
#: actions/wp_loaded.php:95 actions/wp_loaded.php:167
|
261 |
+
msgid "Import #%s is currently in manually process. Request skipped."
|
262 |
+
msgstr "Import #%s ist zur Zeit im manuellen Prozess. Anfrage übersprungen."
|
263 |
+
|
264 |
+
#: actions/wp_loaded.php:118 views/admin/history/index.php:170
|
265 |
+
msgid "triggered by cron"
|
266 |
+
msgstr "Ausgelöst von cron"
|
267 |
+
|
268 |
+
#: actions/wp_loaded.php:124
|
269 |
+
msgid "#%s Cron job triggered."
|
270 |
+
msgstr "#%s Cron Job ausgelöst"
|
271 |
+
|
272 |
+
#: actions/wp_loaded.php:131
|
273 |
+
msgid "Import #%s currently in process. Request skipped."
|
274 |
+
msgstr "Import #%s ist zur Zeit in Prozess. Anfrage übersprungen."
|
275 |
+
|
276 |
+
#: actions/wp_loaded.php:140
|
277 |
+
msgid "Import #%s already triggered. Request skipped."
|
278 |
+
msgstr "Import #%s bereits ausgelöst. Anfrage übersprungen."
|
279 |
+
|
280 |
+
#: actions/wp_loaded.php:160
|
281 |
+
msgid "Import #%s is not triggered. Request skipped."
|
282 |
+
msgstr "Import #%s nicht ausgelöst. Anfrage übersprungen."
|
283 |
+
|
284 |
+
#: actions/wp_loaded.php:198 views/admin/history/index.php:167
|
285 |
+
msgid "cron processing"
|
286 |
+
msgstr "cron Bearbeitung"
|
287 |
+
|
288 |
+
#: actions/wp_loaded.php:230 models/import/record.php:633
|
289 |
+
msgid "Import #%s complete"
|
290 |
+
msgstr "Import #%s Fertiggestellt."
|
291 |
+
|
292 |
+
#: actions/wp_loaded.php:239
|
293 |
+
msgid "Records Processed %s. Records Count %s."
|
294 |
+
msgstr "Datensätze bearbeitet %s. Datensätze gezählt %s."
|
295 |
+
|
296 |
+
#: actions/wp_loaded.php:251
|
297 |
+
msgid "Import #%s already processing. Request skipped."
|
298 |
+
msgstr "Import #%s bereits in Bearbeitung. Anfrage übersprungen."
|
299 |
+
|
300 |
+
#: actions/wp_loaded.php:275
|
301 |
+
msgid "Import #%s canceled"
|
302 |
+
msgstr ""
|
303 |
+
|
304 |
+
#: classes/api.php:113 views/admin/import/template/_other_template.php:39
|
305 |
+
#: views/admin/import/template/_other_template.php:88
|
306 |
+
#: views/admin/import/template/_other_template.php:111
|
307 |
+
#: views/admin/import/template/_other_template.php:178
|
308 |
+
#: views/admin/import/template/_other_template.php:208
|
309 |
+
#: views/admin/import/template/_other_template.php:236
|
310 |
+
#: views/admin/import/template/_other_template.php:262
|
311 |
+
msgid "Set with XPath"
|
312 |
+
msgstr "Gesetzt mit XPath"
|
313 |
+
|
314 |
+
#: classes/api.php:129
|
315 |
+
#: views/admin/import/template/_custom_fields_template.php:69
|
316 |
+
#: views/admin/import/template/_custom_fields_template.php:278
|
317 |
+
#: views/admin/import/template/_custom_fields_template.php:412
|
318 |
+
#: views/admin/import/template/_term_meta_template.php:69
|
319 |
+
#: views/admin/import/template/_term_meta_template.php:278
|
320 |
+
#: views/admin/import/template/_term_meta_template.php:412
|
321 |
+
msgid "Field Options..."
|
322 |
+
msgstr "Feld Optionen..."
|
323 |
+
|
324 |
+
#: classes/api.php:132
|
325 |
+
#: views/admin/import/template/_custom_fields_template.php:75
|
326 |
+
#: views/admin/import/template/_custom_fields_template.php:284
|
327 |
+
#: views/admin/import/template/_custom_fields_template.php:418
|
328 |
+
#: views/admin/import/template/_term_meta_template.php:75
|
329 |
+
#: views/admin/import/template/_term_meta_template.php:284
|
330 |
+
#: views/admin/import/template/_term_meta_template.php:418
|
331 |
+
msgid "Mapping"
|
332 |
+
msgstr "Zuordnung"
|
333 |
+
|
334 |
+
#: classes/api.php:141
|
335 |
+
#: views/admin/import/template/_custom_fields_template.php:182
|
336 |
+
#: views/admin/import/template/_custom_fields_template.php:350
|
337 |
+
#: views/admin/import/template/_custom_fields_template.php:484
|
338 |
+
#: views/admin/import/template/_taxonomies_template.php:233
|
339 |
+
#: views/admin/import/template/_term_meta_template.php:182
|
340 |
+
#: views/admin/import/template/_term_meta_template.php:350
|
341 |
+
#: views/admin/import/template/_term_meta_template.php:484
|
342 |
+
msgid "In Your File"
|
343 |
+
msgstr "In Ihrer Datei"
|
344 |
+
|
345 |
+
#: classes/api.php:142
|
346 |
+
#: views/admin/import/template/_custom_fields_template.php:183
|
347 |
+
#: views/admin/import/template/_custom_fields_template.php:351
|
348 |
+
#: views/admin/import/template/_custom_fields_template.php:485
|
349 |
+
#: views/admin/import/template/_taxonomies_template.php:234
|
350 |
+
#: views/admin/import/template/_term_meta_template.php:183
|
351 |
+
#: views/admin/import/template/_term_meta_template.php:351
|
352 |
+
#: views/admin/import/template/_term_meta_template.php:485
|
353 |
+
msgid "Translated To"
|
354 |
+
msgstr "Übersetzt zu"
|
355 |
+
|
356 |
+
#: classes/api.php:221
|
357 |
+
#: views/admin/import/template/_custom_fields_template.php:156
|
358 |
+
#: views/admin/import/template/_custom_fields_template.php:245
|
359 |
+
#: views/admin/import/template/_custom_fields_template.php:324
|
360 |
+
#: views/admin/import/template/_custom_fields_template.php:380
|
361 |
+
#: views/admin/import/template/_custom_fields_template.php:458
|
362 |
+
#: views/admin/import/template/_custom_fields_template.php:514
|
363 |
+
#: views/admin/import/template/_term_meta_template.php:156
|
364 |
+
#: views/admin/import/template/_term_meta_template.php:245
|
365 |
+
#: views/admin/import/template/_term_meta_template.php:324
|
366 |
+
#: views/admin/import/template/_term_meta_template.php:380
|
367 |
+
#: views/admin/import/template/_term_meta_template.php:458
|
368 |
+
#: views/admin/import/template/_term_meta_template.php:514
|
369 |
+
msgid "Add Another"
|
370 |
+
msgstr "Weitere Hinzufügen"
|
371 |
+
|
372 |
+
#: classes/api.php:227
|
373 |
+
#: views/admin/import/template/_custom_fields_template.php:251
|
374 |
+
#: views/admin/import/template/_custom_fields_template.php:386
|
375 |
+
#: views/admin/import/template/_custom_fields_template.php:520
|
376 |
+
#: views/admin/import/template/_term_meta_template.php:251
|
377 |
+
#: views/admin/import/template/_term_meta_template.php:386
|
378 |
+
#: views/admin/import/template/_term_meta_template.php:520
|
379 |
+
msgid "Save Rules"
|
380 |
+
msgstr "Regel speichern"
|
381 |
+
|
382 |
+
#: classes/api.php:258
|
383 |
+
msgid "Download image hosted elsewhere"
|
384 |
+
msgstr "Bilder von Host herunterladen"
|
385 |
+
|
386 |
+
#: classes/api.php:259 classes/api.php:279
|
387 |
+
#: views/admin/import/template/_featured_template.php:16
|
388 |
+
#: views/admin/import/template/_featured_template.php:26
|
389 |
+
msgid "http:// or https://"
|
390 |
+
msgstr "http:// oder https://"
|
391 |
+
|
392 |
+
#: classes/api.php:264
|
393 |
+
msgid "Use image(s) currently uploaded in %s"
|
394 |
+
msgstr "Nutze Bild(er) die gerade hochgeladen werden in %s"
|
395 |
+
|
396 |
+
#: classes/api.php:278
|
397 |
+
msgid "Download file hosted elsewhere"
|
398 |
+
msgstr "Datei von Host herunterladen"
|
399 |
+
|
400 |
+
#: classes/api.php:284
|
401 |
+
msgid "Use file(s) currently uploaded in %s"
|
402 |
+
msgstr "Nutze Datei(en die gerade hochgeladen werden in %s"
|
403 |
+
|
404 |
+
#: classes/api.php:398 models/import/record.php:2710
|
405 |
+
msgid "- Searching for existing image `%s` in `%s` folder"
|
406 |
+
msgstr "- Suche nach existierendem Bild `%s` im Verzeichnis `%s` "
|
407 |
+
|
408 |
+
#: classes/api.php:405 classes/api.php:476 models/import/record.php:2717
|
409 |
+
#: models/import/record.php:2801 models/import/record.php:3064
|
410 |
+
msgid "- <b>WARNING</b>: Can't detect attachment file type %s"
|
411 |
+
msgstr "- <b>WARNUNG</b>: Kann den Dateityp nicht erkennen %s"
|
412 |
+
|
413 |
+
#: classes/api.php:410 classes/api.php:481 models/import/record.php:2723
|
414 |
+
#: models/import/record.php:2807
|
415 |
+
msgid "- File `%s` has been successfully found"
|
416 |
+
msgstr "- Datei `%s` wurde gefunden"
|
417 |
+
|
418 |
+
#: classes/api.php:416 classes/api.php:467 models/import/record.php:2631
|
419 |
+
#: models/import/record.php:2734 models/import/record.php:2760
|
420 |
+
#: models/import/record.php:2794
|
421 |
+
msgid "- <b>WARNING</b>: File %s is not a valid image and cannot be set as featured one"
|
422 |
+
msgstr "- <b>WARNUNG</b>: Datei %s ist kein zulässiges Bild und kann nicht als Featured-Bild gesetzt werden"
|
423 |
+
|
424 |
+
#: classes/api.php:419 models/import/record.php:2730
|
425 |
+
msgid "- Image `%s` has been successfully found"
|
426 |
+
msgstr "- Bild `%s` wurde gefunden"
|
427 |
+
|
428 |
+
#: classes/api.php:429 models/import/record.php:2743
|
429 |
+
msgid "- Downloading image from `%s`"
|
430 |
+
msgstr "- Bild wird Herunterladen von `%s`"
|
431 |
+
|
432 |
+
#: classes/api.php:432
|
433 |
+
msgid "- Downloading file from `%s`"
|
434 |
+
msgstr "- Datei wird Herunterladen von `%s`"
|
435 |
+
|
436 |
+
#: classes/api.php:444 classes/api.php:471 models/import/record.php:2756
|
437 |
+
#: models/import/record.php:2792
|
438 |
+
msgid "- Image `%s` has been successfully downloaded"
|
439 |
+
msgstr "- Bild `%s` wurde erfolgreich heruntergeladen"
|
440 |
+
|
441 |
+
#: classes/api.php:450 models/import/record.php:2767
|
442 |
+
msgid "- File `%s` has been successfully downloaded"
|
443 |
+
msgstr "- Datei `%s` wurde erfolgreich heruntergeladen"
|
444 |
+
|
445 |
+
#: classes/api.php:461 models/import/record.php:2784
|
446 |
+
msgid "- <b>WARNING</b>: File %s cannot be saved locally as %s"
|
447 |
+
msgstr "- <b>WARNUNG</b>: Datei %s kann lokal nicht gespeichert werden als %s"
|
448 |
+
|
449 |
+
#: classes/api.php:495 models/import/record.php:2845
|
450 |
+
msgid "- Creating an attachment for image `%s`"
|
451 |
+
msgstr "- Erstelle einen Anhang für Bild `%s`"
|
452 |
+
|
453 |
+
#: classes/api.php:498
|
454 |
+
msgid "- Creating an attachment for file `%s`"
|
455 |
+
msgstr "- Erstelle einen Anhang für Datei `%s`"
|
456 |
+
|
457 |
+
#: classes/api.php:517 models/import/record.php:2872
|
458 |
+
#: models/import/record.php:3086
|
459 |
+
msgid "- <b>WARNING</b>"
|
460 |
+
msgstr "- <b>WARNUNG</b>"
|
461 |
+
|
462 |
+
#: classes/api.php:521 models/import/record.php:2932
|
463 |
+
msgid "- Attachment has been successfully created for image `%s`"
|
464 |
+
msgstr "- Anhang wurde erstellt für das Bild `%s`"
|
465 |
+
|
466 |
+
#: classes/render.php:68 classes/render.php:88 classes/render.php:166
|
467 |
+
#: classes/render.php:186
|
468 |
+
msgid "<strong>%s</strong> %s more"
|
469 |
+
msgstr "<strong>%s</strong> %s mehr"
|
470 |
+
|
471 |
+
#: classes/render.php:68 classes/render.php:88 classes/render.php:166
|
472 |
+
#: classes/render.php:186 views/admin/import/evaluate.php:5
|
473 |
+
#: views/admin/import/evaluate_variations.php:3
|
474 |
+
msgid "element"
|
475 |
+
msgid_plural "elements"
|
476 |
+
msgstr[0] ""
|
477 |
+
msgstr[1] ""
|
478 |
+
|
479 |
+
#: classes/render.php:94 classes/render.php:192
|
480 |
+
msgid "more"
|
481 |
+
msgstr "mehr"
|
482 |
+
|
483 |
+
#: classes/updater.php:66
|
484 |
+
msgid "View WP All Import Pro Changelog"
|
485 |
+
msgstr ""
|
486 |
+
|
487 |
+
#: classes/updater.php:66
|
488 |
+
msgid "Changelog"
|
489 |
+
msgstr ""
|
490 |
+
|
491 |
+
#: classes/updater.php:261
|
492 |
+
msgid "There is a new version of %1$s available. <a target=\"_blank\" class=\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
|
493 |
+
msgstr "Eine neue Version von %1$s ist verfügbar. <a target=\"_blank\" class=\"thickbox\" href=\"%2$s\">Details ansehen von %3$s</a>."
|
494 |
+
|
495 |
+
#: classes/updater.php:268
|
496 |
+
msgid "There is a new version of %1$s available. <a target=\"_blank\" class=\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s\">update now</a>."
|
497 |
+
msgstr "Eine neue Version von %1$s ist verfügbar. <a target=\"_blank\" class=\"thickbox\" href=\"%2$s\">Details ansehen von %3$s</a> oder <a href=\"%4$s\">jetzt aktualisieren</a>."
|
498 |
+
|
499 |
+
#: classes/updater.php:456
|
500 |
+
msgid "You do not have permission to install plugin updates"
|
501 |
+
msgstr "Sie haben keine Berechtigung um Plug-In Aktualisierungen durchzuführen."
|
502 |
+
|
503 |
+
#: classes/updater.php:456
|
504 |
+
msgid "Error"
|
505 |
+
msgstr "Fehler"
|
506 |
+
|
507 |
+
#: classes/upload.php:50
|
508 |
+
msgid "Please specify a file to import.<br/><br/>If you are uploading the file from your computer, please wait for it to finish uploading (progress bar at 100%), before trying to continue."
|
509 |
+
msgstr "Bitte wählen Sie eine Datei für den Import.<br/><br/>Wenn Sie eine Datei von Ihrem Computer hochladen, warten Sie bitte bis der Upload fertig ist (Fortschrittsbalken bei 100% ) bevor Sie auf weiter klicken."
|
510 |
+
|
511 |
+
#: classes/upload.php:52
|
512 |
+
msgid "Uploaded file is empty"
|
513 |
+
msgstr "Hochgeladene Datei ist leer."
|
514 |
+
|
515 |
+
#: classes/upload.php:54 controllers/admin/settings.php:466
|
516 |
+
msgid "Uploaded file must be XML, CSV, ZIP, GZIP, GZ, JSON, SQL, TXT, DAT or PSV"
|
517 |
+
msgstr "Hochgeladene Datei muss XML, CSV, ZIP, GZIP, GZ, JSON, SQL, TXT, DAT oder PSV sein."
|
518 |
+
|
519 |
+
#: classes/upload.php:61 classes/upload.php:149 classes/upload.php:357
|
520 |
+
#: classes/upload.php:428 classes/upload.php:690 classes/upload.php:761
|
521 |
+
msgid "WP All Import couldn't find a file to import inside your ZIP.<br/><br/>Either the .ZIP file is broken, or doesn't contain a file with an extension of XML, CSV, PSV, DAT, or TXT. <br/>Please attempt to unzip your .ZIP file on your computer to ensure it is a valid .ZIP file which can actually be unzipped, and that it contains a file which WP All Import can import."
|
522 |
+
msgstr "WP All Import kann in Ihrem ZIP keine importierbare Datei finden.<br/><br/>Entweder ist die .ZIP beschädigt, oder sie enthält keinen Dateityp mit XML, CSV, PSV, DAT, or TXT. <br/>Bitte versuchen Sie das .ZIP auf Ihrem Computer zu entpacken um sicher zu gehen, dass es sich um ein gültiges .ZIP handelt. Und dass es eine von WP All Import importierbare Datei enthält."
|
523 |
+
|
524 |
+
#: classes/upload.php:129 classes/upload.php:169 classes/upload.php:408
|
525 |
+
#: classes/upload.php:677 classes/upload.php:741 classes/upload.php:781
|
526 |
+
#: classes/upload.php:808 classes/upload.php:847 classes/upload.php:871
|
527 |
+
#: classes/upload.php:895 classes/upload.php:967
|
528 |
+
msgid "WP All Import can't access your WordPress uploads folder."
|
529 |
+
msgstr "WP All Import hat keinen Zugang zu Ihrem Wordpress Upload Verzeichnis."
|
530 |
+
|
531 |
+
#: classes/upload.php:236 classes/upload.php:500 classes/upload.php:602
|
532 |
+
#: classes/upload.php:834 classes/upload.php:992
|
533 |
+
msgid "Can not import this file. JSON to XML convertation failed."
|
534 |
+
msgstr "Kann die Datei nicht importieren. JSON zu XML Umwandlung fehlgeschlagen."
|
535 |
+
|
536 |
+
#: classes/upload.php:326 classes/upload.php:673
|
537 |
+
msgid "Please specify a file to import."
|
538 |
+
msgstr "Bitte wählen Sie eine Datei zum importieren"
|
539 |
+
|
540 |
+
#: classes/upload.php:328
|
541 |
+
msgid "The URL to your file is not valid.<br/><br/>Please make sure the URL starts with http:// or https://. To import from https://, your server must have OpenSSL installed."
|
542 |
+
msgstr "Die URL zu Ihrer Datei ist nicht korrekt. <br/><br/>Bitte stellen Sie sicher, dass die URL mit http:// oder https:// beginnt. Um von https:// zu importieren, muss Ihr Server OpenSSL installiert haben."
|
543 |
+
|
544 |
+
#: classes/upload.php:330
|
545 |
+
msgid "Uploads folder "
|
546 |
+
msgstr ""
|
547 |
+
|
548 |
+
#: classes/upload.php:350
|
549 |
+
msgid "Failed upload ZIP archive"
|
550 |
+
msgstr "Fehler bei ZIP Upload"
|
551 |
+
|
552 |
+
#: classes/upload.php:461 classes/upload.php:565
|
553 |
+
msgid "WP All Import was not able to download your file.<br/><br/>Please make sure the URL to your file is valid.<br/>You can test this by pasting it into your browser.<br/>Other reasons for this error can include some server setting on your host restricting access to this particular URL or external URLs in general, or some setting on the server hosting the file you are trying to access preventing your server from accessing it."
|
554 |
+
msgstr "WP All Import konnte Ihre Datei nicht herunterladen.<br/><br/>Bitte stellen Sie sicher dass die URL zu Ihrer Datei korrekt ist.<br/>Sie können das testen indem Sie die URL in Ihren Browser kopieren.<br/>Andere Gründe für diesen Fehler können Servereinstellungen sein, die den Zugriff auf diese URL oder generell auf externe URLs verhindern. Oder Einstellungen auf dem Server verhindern den Zugriff."
|
555 |
+
|
556 |
+
#: controllers/admin/addons.php:21
|
557 |
+
msgid "WooCommerce Addon"
|
558 |
+
msgstr "WooCommerce Add-on"
|
559 |
+
|
560 |
+
#: controllers/admin/addons.php:22 controllers/admin/addons.php:76
|
561 |
+
msgid "Import Products from any XML or CSV to WooCommerce"
|
562 |
+
msgstr "Importiere Produkte von XML oder CSV in WooCommerce"
|
563 |
+
|
564 |
+
#: controllers/admin/addons.php:32
|
565 |
+
msgid "ACF Addon"
|
566 |
+
msgstr "ACF Add-on"
|
567 |
+
|
568 |
+
#: controllers/admin/addons.php:33
|
569 |
+
msgid "Import to advanced custom fields"
|
570 |
+
msgstr "Importiere in erweiterte benutzerdefinierte Felder"
|
571 |
+
|
572 |
+
#: controllers/admin/addons.php:43
|
573 |
+
msgid "WPML Addon"
|
574 |
+
msgstr "WPML Add-on"
|
575 |
+
|
576 |
+
#: controllers/admin/addons.php:44
|
577 |
+
msgid "Import to WPML"
|
578 |
+
msgstr "Importiere in WPML"
|
579 |
+
|
580 |
+
#: controllers/admin/addons.php:54
|
581 |
+
msgid "User Addon"
|
582 |
+
msgstr "Benutzer Add-on"
|
583 |
+
|
584 |
+
#: controllers/admin/addons.php:55
|
585 |
+
msgid "Import Users"
|
586 |
+
msgstr "Importiere Benutzer"
|
587 |
+
|
588 |
+
#: controllers/admin/addons.php:65
|
589 |
+
msgid "Link cloaking Addon"
|
590 |
+
msgstr "Maskiere Link Add-on"
|
591 |
+
|
592 |
+
#: controllers/admin/addons.php:66
|
593 |
+
msgid "Affiliate link cloaking"
|
594 |
+
msgstr "Maskiere Affiliate Link"
|
595 |
+
|
596 |
+
#: controllers/admin/addons.php:75
|
597 |
+
msgid "WooCommerce Addon - free edition"
|
598 |
+
msgstr "WooCommerce Add-on - Freie Version"
|
599 |
+
|
600 |
+
#: controllers/admin/addons.php:84
|
601 |
+
msgid "WooCommerce Tabs Addon"
|
602 |
+
msgstr "WooCommerce Tab Add-on"
|
603 |
+
|
604 |
+
#: controllers/admin/addons.php:85
|
605 |
+
msgid "Import data to WooCommerce tabs"
|
606 |
+
msgstr "Importiere Daten in WooCommerce Tabs"
|
607 |
+
|
608 |
+
#: controllers/admin/history.php:31
|
609 |
+
msgid "Import is not specified."
|
610 |
+
msgstr "Import nicht spezifiziert"
|
611 |
+
|
612 |
+
#: controllers/admin/history.php:57 controllers/admin/manage.php:60
|
613 |
+
msgid "«"
|
614 |
+
msgstr "«"
|
615 |
+
|
616 |
+
#: controllers/admin/history.php:58 controllers/admin/manage.php:61
|
617 |
+
msgid "»"
|
618 |
+
msgstr "»"
|
619 |
+
|
620 |
+
#: controllers/admin/history.php:92
|
621 |
+
msgid "Log file does not exists."
|
622 |
+
msgstr "Log Datei existiert nicht."
|
623 |
+
|
624 |
+
#: controllers/admin/history.php:112
|
625 |
+
msgid "History deleted"
|
626 |
+
msgstr "Chronik gelöscht"
|
627 |
+
|
628 |
+
#: controllers/admin/history.php:139 controllers/admin/manage.php:652
|
629 |
+
msgid "%d %s deleted"
|
630 |
+
msgstr "%d %s gelöscht"
|
631 |
+
|
632 |
+
#: controllers/admin/history.php:139
|
633 |
+
msgid "history"
|
634 |
+
msgid_plural "histories"
|
635 |
+
msgstr[0] ""
|
636 |
+
msgstr[1] ""
|
637 |
+
|
638 |
+
#: controllers/admin/import.php:75
|
639 |
+
msgid "WP All Import lost track of where you are.<br/><br/>Maybe you cleared your cookies or maybe it is just a temporary issue on your or your web host's end.<br/>If you can't do an import without seeing this error, change your session settings on the All Import -> Settings page."
|
640 |
+
msgstr "WP All Import hat die Spur verloren.<br/><br/>Vielleicht haben Sie Ihre Cookies gelöscht oder es handelt sich um einen vorübergehenden Fehler bei Ihnen oder Ihrem Webspace Dienstanbieter.<br/>Wenn Sie einen Import durchführen können ohne diesen Fehler zu sehen, dann ändern Sie die Einstellung Ihrer Sitzung unter All Import -> Einstellungen"
|
641 |
+
|
642 |
+
#: controllers/admin/import.php:92 controllers/admin/import.php:684
|
643 |
+
msgid "There are no elements to import based on your XPath.<br/><br/>If you are in Step 2, you probably specified filtering options that don’t match any elements present in your file.<br/>If you are seeing this error elsewhere, it means that while the XPath expression for your initial import matched some elements in your file previously, there are now zero elements in the file that match this expression.<br/>You can edit the XPath for your import by going to the Manage Imports -> Import Settings page."
|
644 |
+
msgstr "Keine Elemente für den Import auf Ihrem XPath.<br/><br/>Wenn Sie bei Schritt 2 sind, haben Sie eventuell Filteroptionen eingestellt, die zu keinen Elementen in Ihrer Datei passen.<br/>Wenn Sie diesen Fehler anderswo sehen, bedeutet das, dass der XPath von Ihrem initialen Import mit Elementen Ihrer vorherigen Datei übereinstimmt. Jetzt sind Null Elemente in der Datei die mit diesem XPath übereinstimmen. <br/>Sie können den XPath für Ihren Import ändern unter Imports verwalten -> Import Einstellungen"
|
645 |
+
|
646 |
+
#: controllers/admin/import.php:151
|
647 |
+
msgid "The import associated with this export has been deleted."
|
648 |
+
msgstr "Der Import in Zusammenhang mit diesem Export wurde gelöscht."
|
649 |
+
|
650 |
+
#: controllers/admin/import.php:151
|
651 |
+
msgid "Please re-run your export by clicking Run Export on the All Export -> Manage Exports page. Then try your import again."
|
652 |
+
msgstr "Bitte starten Sie Ihren Export erneut durch klicken auf Export ausführen unter All Export -> Exports verwalten. Dann versuchen Sie den Import erneut."
|
653 |
+
|
654 |
+
#: controllers/admin/import.php:156
|
655 |
+
msgid "This import has been deleted."
|
656 |
+
msgstr "Dieser Import wurde gelöscht."
|
657 |
+
|
658 |
+
#: controllers/admin/import.php:177
|
659 |
+
msgid "Required PHP components are missing.<br/><br/>WP All Import requires DOMDocument, XMLReader, and XMLWriter PHP modules to be installed.<br/>These are standard features of PHP, and are necessary for WP All Import to read the files you are trying to import.<br/>Please contact your web hosting provider and ask them to install and activate the DOMDocument, XMLReader, and XMLWriter PHP modules."
|
660 |
+
msgstr "Benötigte PHP Komponenten fehlen.<br/><br/>WP All Import benötigt DOMDocument, XMLReader und XMLWriter PHP Module.<br/>Diese sind Standard Merkmale von PHP und werden von WP All Import benötigt um die Dateien zu lesen die Sie importieren wollen.<br/>Bitte kontaktieren Sie Ihren Webhosting Anbieter und fragen Sie nach der Installation und Aktivierung von DOMDocument, XMLReader und XMLWriter PHP Module."
|
661 |
+
|
662 |
+
#: controllers/admin/import.php:252
|
663 |
+
msgid "Select an item type to import the data"
|
664 |
+
msgstr "Wählen Sie einen Produkttyp um die Daten zu importieren."
|
665 |
+
|
666 |
+
#: controllers/admin/import.php:256
|
667 |
+
msgid "Previous import for update must be selected to proceed with a new one"
|
668 |
+
msgstr "Um vorherige Imports zu aktualisieren, müssen diese mit neuen selektiert werden."
|
669 |
+
|
670 |
+
#: controllers/admin/import.php:260
|
671 |
+
msgid "Select a taxonomy to import the data"
|
672 |
+
msgstr ""
|
673 |
+
|
674 |
+
#: controllers/admin/import.php:303
|
675 |
+
msgid "File is no longer in the correct format"
|
676 |
+
msgstr "Datei ist nicht mehr im korrekten Format."
|
677 |
+
|
678 |
+
#: controllers/admin/import.php:306 controllers/admin/import.php:349
|
679 |
+
msgid "Certain columns are required to be present in your file to enable it to be re-imported with WP All Import. These columns are missing. Re-export your file using WP All Export, and don't delete any of the columns when editing it. Then, re-import will work correctly."
|
680 |
+
msgstr "Bestimmte Spalten werden benötigt um erneut importiert werden zu können mit WP All Import. Diese Spalten fehlen. Exportieren Sie Ihre Datei erneut mit WP All Export. Löschen Sie dabei keine Spalte, dann wird der erneute Import korrekt funktionieren."
|
681 |
+
|
682 |
+
#: controllers/admin/import.php:309
|
683 |
+
msgid "The import template you are using requires User Import Add-On.<br/><a href=\"http://www.wpallimport.com/add-ons/user-import/?utm_source=wordpress.org&utm_medium=wpai-import-template&utm_campaign=free+wp+all+export+plugin\" target=\"_blank\">Purchase the User Import Add-On</a>"
|
684 |
+
msgstr "Die Import Vorlage die Sie benutzen, benötigt das Benutzer Import Add-on.<br/><a href=\"http://www.wpallimport.com/add-ons/user-import/?utm_source=wordpress.org&utm_medium=wpai-import-template&utm_campaign=free+wp+all+export+plugin\" target=\"_blank\">User Import Add-on kaufen</a>"
|
685 |
+
|
686 |
+
#: controllers/admin/import.php:384
|
687 |
+
msgid "Unable to download feed resource."
|
688 |
+
msgstr "Herunterladen des Feeds nicht möglich."
|
689 |
+
|
690 |
+
#: controllers/admin/import.php:461 controllers/admin/import.php:485
|
691 |
+
#: controllers/admin/settings.php:705
|
692 |
+
msgid "Please confirm you are importing a valid feed.<br/> Often, feed providers distribute feeds with invalid data, improperly wrapped HTML, line breaks where they should not be, faulty character encodings, syntax errors in the XML, and other issues.<br/><br/>WP All Import has checks in place to automatically fix some of the most common problems, but we can’t catch every single one.<br/><br/>It is also possible that there is a bug in WP All Import, and the problem is not with the feed.<br/><br/>If you need assistance, please contact support – <a href=\"mailto:support@wpallimport.com\">support@wpallimport.com</a> – with your XML/CSV file. We will identify the problem and release a bug fix if necessary."
|
693 |
+
msgstr "Bitte bestätigen: Sie importieren einen gültigen Feed.<br/> Oftmals enthalten Feeds von Anbietern falsche Daten wie, unpassend eingepacktes HTML, neue Zeile wo sie nicht sein soll, falsche Buchstaben Codierung, Syntax Fehler in der XML und andere Probleme.<br/><br/>WP All Import hat Kontrollen die automatisch einige der häufigsten Probleme beheben, aber wir können nicht jeden finden.<br/><br/>Es ist auch Möglich dass ein Fehler in WP All Import ist und das Problem nicht am Feed liegt.<br/><br/>Wenn Sie Hilfe brauchen, kontaktieren Sie bitte den Support – <a href=\"mailto:support@wpallimport.com\">support@wpallimport.com</a> - mit Ihrer XML/CSV Datei. Wir werden das Problem finden und eine Behebung des Fehlers herausgeben falls das nötig ist."
|
694 |
+
|
695 |
+
#: controllers/admin/import.php:480
|
696 |
+
msgid "WP All Import unable to detect file type.<br/><br/>WP All Import not able to determine what type of file you are importing. Make sure your file extension is correct for the file type you are importing.<br/> Please choose the correct file type from the dropdown below, or try adding &type=xml or &type=csv to the end of the URL, for example http://example.com/export-products.php?&type=xml"
|
697 |
+
msgstr "WP All Import kann den Dateityp nicht feststellen.<br/><br/>WP All Import kann den Typ Ihrer Importdatei nicht bestimmen. Stellen Sie sicher, dass die Dateiendung der zu importierenden Datei korrekt ist.<br/>Bitte wählen Sie einen korrekten Dateityp von der Dropdown-Liste unterhalb. Oder versuchen Sie &type=xml oder &type=csv an das Ende der URL anzufügen. Beispiel: http://example.com/export-products.php?&type=xml"
|
698 |
+
|
699 |
+
#: controllers/admin/import.php:513
|
700 |
+
msgid "No elements selected"
|
701 |
+
msgstr "Keine Elemente gewählt"
|
702 |
+
|
703 |
+
#: controllers/admin/import.php:518 controllers/admin/import.php:747
|
704 |
+
msgid "Your XPath is not valid.<br/><br/>Click \"get default XPath\" to get the default XPath."
|
705 |
+
msgstr "Ihr XPath ist nicht korrekt. <br/><br/>Klicken Sie auf \"Hole Standard XPath\" um den Standard XPath zu erhalten."
|
706 |
+
|
707 |
+
#: controllers/admin/import.php:522 controllers/admin/import.php:753
|
708 |
+
msgid "XPath must match only elements"
|
709 |
+
msgstr "XPath muss Elementen entsprechen"
|
710 |
+
|
711 |
+
#: controllers/admin/import.php:552
|
712 |
+
msgid "Warning: No matching elements found for XPath expression from the import being updated. It probably means that new XML file has different format. Though you can update XPath, procceed only if you sure about update operation being valid."
|
713 |
+
msgstr "Warnung: Keine passenden Elemente für diesen XPath gefunden von dem Import der aktualisiert wird. Das bedeutet eventuell, dass die XML Datei ein anderes Format hat. Obwohl Sie XPath aktualisieren können, sollten Sie das nur ausführen wenn Sie sicher sind dass die Aktualisierung zulässig ist. "
|
714 |
+
|
715 |
+
#: controllers/admin/import.php:594 controllers/admin/import.php:740
|
716 |
+
msgid "Your XPath is empty.<br/><br/>Please enter an XPath expression, or click \"get default XPath\" to get the default XPath."
|
717 |
+
msgstr "Ihr XPath is leer.<br/><br/>Bitte geben Sie einen XPath Ausdruck ein, oder klicken Sie auf \"Hole Standard XPath\" um den Standard XPath zu erhalten."
|
718 |
+
|
719 |
+
#: controllers/admin/import.php:749
|
720 |
+
msgid "No matching variations found for XPath specified"
|
721 |
+
msgstr "Keine passenden Varianten für den XPath gefunden"
|
722 |
+
|
723 |
+
#: controllers/admin/import.php:990 controllers/admin/import.php:1006
|
724 |
+
#: controllers/admin/import.php:1137
|
725 |
+
msgid "WP All Import lost track of where you are.<br/><br/>Maybe you cleared your cookies or maybe it is just a temporary issue on your web host's end.<br/>If you can't do an import without seeing this error, change your session settings on the All Import -> Settings page."
|
726 |
+
msgstr "WP All Import hat die Spur verloren.<br/><br/>Vielleicht haben Sie Ihre Cookies gelöscht oder es handelt sich um einen vorübergehenden Fehler bei Ihnen oder Ihrem Dienstanbieter.<br/>Wenn Sie einen Import durchführen können ohne diesen Fehler zu sehen, ändern Sie Ihre Einstellungen unter All Import -> Einstellungen."
|
727 |
+
|
728 |
+
#: controllers/admin/import.php:992
|
729 |
+
msgid "<strong>Warning</strong>: your title is blank."
|
730 |
+
msgstr "<strong>Warnung:</strong>Ihr Titel ist leer."
|
731 |
+
|
732 |
+
#: controllers/admin/import.php:997
|
733 |
+
msgid "<strong>Warning</strong>: resulting post title is empty"
|
734 |
+
msgstr "<strong>Warnung:</strong>:Ergebnis post Titel ist leer."
|
735 |
+
|
736 |
+
#: controllers/admin/import.php:1002
|
737 |
+
msgid "Error parsing title: %s"
|
738 |
+
msgstr "Fehler beim Parsen des Titel: %s"
|
739 |
+
|
740 |
+
#: controllers/admin/import.php:1008
|
741 |
+
msgid "<strong>Warning</strong>: your content is blank."
|
742 |
+
msgstr "<strong>Warnung:</strong>: Ihr Inhalt ist leer."
|
743 |
+
|
744 |
+
#: controllers/admin/import.php:1013
|
745 |
+
msgid "<strong>Warning</strong>: resulting post content is empty"
|
746 |
+
msgstr "<strong>Warnung:</strong>:Ergebnis post Titel ist leer."
|
747 |
+
|
748 |
+
#: controllers/admin/import.php:1018
|
749 |
+
msgid "Error parsing content: %s"
|
750 |
+
msgstr "Fehler beim Parsen des Inhalts: %s"
|
751 |
+
|
752 |
+
#: controllers/admin/import.php:1157 controllers/admin/import.php:1313
|
753 |
+
#: controllers/admin/import.php:1446
|
754 |
+
msgid "Error parsing: %s"
|
755 |
+
msgstr "Fehler beim Parsen: %s"
|
756 |
+
|
757 |
+
#: controllers/admin/import.php:1269 controllers/admin/import.php:1425
|
758 |
+
msgid "Error parsing: String could not be parsed as XML"
|
759 |
+
msgstr "Fehler beim Parsen: String kann nicht als XML geparst werden."
|
760 |
+
|
761 |
+
#: controllers/admin/import.php:1310 controllers/admin/import.php:1443
|
762 |
+
msgid "There is no data to preview"
|
763 |
+
msgstr "Keine Daten zur Vorschau"
|
764 |
+
|
765 |
+
#: controllers/admin/import.php:1506
|
766 |
+
msgid "You've reached your max_input_vars limit of %d. Please increase this."
|
767 |
+
msgstr ""
|
768 |
+
|
769 |
+
#: controllers/admin/import.php:1563 views/admin/import/template.php:71
|
770 |
+
msgid "Excerpt"
|
771 |
+
msgstr "Ausschnitt"
|
772 |
+
|
773 |
+
#: controllers/admin/import.php:1567 controllers/admin/import.php:1571
|
774 |
+
#: models/import/record.php:1340
|
775 |
+
#: views/admin/import/options/_reimport_options.php:143
|
776 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:106
|
777 |
+
#: views/admin/import/template.php:116
|
778 |
+
msgid "Images"
|
779 |
+
msgstr "Bilder"
|
780 |
+
|
781 |
+
#: controllers/admin/import.php:1577
|
782 |
+
msgid "Images meta "
|
783 |
+
msgstr ""
|
784 |
+
|
785 |
+
#: controllers/admin/import.php:1592
|
786 |
+
msgid "Custom Field Name"
|
787 |
+
msgstr "Name individuelles Feld"
|
788 |
+
|
789 |
+
#: controllers/admin/import.php:1596
|
790 |
+
msgid "Custom Field Value"
|
791 |
+
msgstr "Wert individuelles Feld"
|
792 |
+
|
793 |
+
#: controllers/admin/import.php:1609
|
794 |
+
msgid "Both name and value must be set for all woocommerce attributes"
|
795 |
+
msgstr "Name und Wert müssen für alle WooCommerce Merkmale gesetzt sein."
|
796 |
+
|
797 |
+
#: controllers/admin/import.php:1612
|
798 |
+
msgid "Attribute Field Name"
|
799 |
+
msgstr "Name Merkmalfeld"
|
800 |
+
|
801 |
+
#: controllers/admin/import.php:1615
|
802 |
+
msgid "Attribute Field Value"
|
803 |
+
msgstr "Wert Merkmalfeld"
|
804 |
+
|
805 |
+
#: controllers/admin/import.php:1626
|
806 |
+
msgid "Tags"
|
807 |
+
msgstr "Tags"
|
808 |
+
|
809 |
+
#: controllers/admin/import.php:1629 views/admin/history/index.php:33
|
810 |
+
msgid "Date"
|
811 |
+
msgstr "Datum"
|
812 |
+
|
813 |
+
#: controllers/admin/import.php:1631 controllers/admin/import.php:1632
|
814 |
+
msgid "Start Date"
|
815 |
+
msgstr "Start Datum"
|
816 |
+
|
817 |
+
#: controllers/admin/import.php:1666
|
818 |
+
msgid "Template updated"
|
819 |
+
msgstr "Vorlage aktualisiert"
|
820 |
+
|
821 |
+
#: controllers/admin/import.php:1766
|
822 |
+
msgid "%s template is invalid: %s"
|
823 |
+
msgstr "%s Vorlage ist ungültig: %s"
|
824 |
+
|
825 |
+
#: controllers/admin/import.php:1878
|
826 |
+
msgid "Records to import must be specified or uncheck `Import only specified records` option to process all records"
|
827 |
+
msgstr "Zu importierende Datensätze müssen ausgewählt werden, oder entfernen Sie die Markierung bei `Nur ausgewählte Datensätze importieren` um alle Datensätze zu verarbeiten."
|
828 |
+
|
829 |
+
#: controllers/admin/import.php:1883
|
830 |
+
msgid "Wrong format of `Import only specified records` value"
|
831 |
+
msgstr "Falsches Format bei `Nur ausgewählte Datensätze importieren`"
|
832 |
+
|
833 |
+
#: controllers/admin/import.php:1886
|
834 |
+
msgid "One of the numbers in `Import only specified records` value exceeds record quantity in XML file"
|
835 |
+
msgstr "Eine der Nummern in `Nur ausgewählte Datensätze importieren` übersteigt die Datensatz Anzahl in der XML"
|
836 |
+
|
837 |
+
#: controllers/admin/import.php:1893
|
838 |
+
msgid "Expression for `Post Unique Key` must be set, use the same expression as specified for post title if you are not sure what to put there"
|
839 |
+
msgstr "Ausdruck für `Sende einzigartige ID` muss gesetzt sein. Nutzen Sie den selben Ausdruck den Sie für den post Titel gewählt haben, wenn Sie nicht sicher sind."
|
840 |
+
|
841 |
+
#: controllers/admin/import.php:1895
|
842 |
+
msgid "Post Unique Key"
|
843 |
+
msgstr "Sende einzigartige ID"
|
844 |
+
|
845 |
+
#: controllers/admin/import.php:1899
|
846 |
+
msgid "Custom field name must be specified."
|
847 |
+
msgstr "Name vom individuellen Feld muss angegeben werden."
|
848 |
+
|
849 |
+
#: controllers/admin/import.php:1901
|
850 |
+
msgid "Custom field value must be specified."
|
851 |
+
msgstr "Wert vom individuellen Feld muss angegeben werden."
|
852 |
+
|
853 |
+
#: controllers/admin/import.php:1905
|
854 |
+
msgid "Post ID must be specified."
|
855 |
+
msgstr ""
|
856 |
+
|
857 |
+
#: controllers/admin/import.php:1909
|
858 |
+
msgid "Term name must be specified."
|
859 |
+
msgstr ""
|
860 |
+
|
861 |
+
#: controllers/admin/import.php:1912
|
862 |
+
msgid "Term slug must be specified."
|
863 |
+
msgstr ""
|
864 |
+
|
865 |
+
#: controllers/admin/import.php:1991
|
866 |
+
msgid "WP All Import doesn't support this import type."
|
867 |
+
msgstr "WP All Import unterstützt diesen Import Typ nicht."
|
868 |
+
|
869 |
+
#: controllers/admin/import.php:2039
|
870 |
+
msgid "<strong>Warning:</strong> this file does not have the same structure as the last file associated with this import. WP All Import won't be able to import this file with your current settings. Probably you'll need to adjust your XPath in the \"Configure Advanced Settings\" box below, and reconfigure your import by clicking \"Edit\" on the Manage Imports page."
|
871 |
+
msgstr "<strong>Warnung:</strong>diese Datei hat nicht die gleiche Struktur wie die letzte Datei die mit diesem Import durchgeführt wurde. WP All Import wird die Datei mit den gegenwärtigen Einstellungen nicht importieren können. Möglicherweise müssen Sie Ihren XPath umstellen in \" Konfiguriere erweiterte Einstellungen\" und ändern ihn durch klicken auf \"Bearbeiten\" auf der Imports verwalten Seite."
|
872 |
+
|
873 |
+
#: controllers/admin/import.php:2084
|
874 |
+
msgid "Root element not found for uploaded feed."
|
875 |
+
msgstr "Wurzelelement nicht gefunden für den hochgeladenen Feed."
|
876 |
+
|
877 |
+
#: controllers/admin/import.php:2136
|
878 |
+
msgid "Import updated"
|
879 |
+
msgstr "Import aktualisiert"
|
880 |
+
|
881 |
+
#: controllers/admin/import.php:2136
|
882 |
+
msgid "Import created"
|
883 |
+
msgstr "Import erstellt"
|
884 |
+
|
885 |
+
#: controllers/admin/import.php:2238
|
886 |
+
msgid "Configuration updated"
|
887 |
+
msgstr "Konfiguration aktualisiert"
|
888 |
+
|
889 |
+
#: controllers/admin/import.php:2417 controllers/admin/import.php:2737
|
890 |
+
#: controllers/admin/import.php:2876
|
891 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:7
|
892 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:6
|
893 |
+
#: views/admin/import/template/_custom_fields_template.php:6
|
894 |
+
#: views/admin/import/template/_term_meta_template.php:6
|
895 |
+
#: views/admin/import/template/_term_other_template.php:6
|
896 |
+
#: views/admin/manage/delete.php:45 views/admin/manage/index.php:284
|
897 |
+
msgid "Taxonomy Terms"
|
898 |
+
msgstr ""
|
899 |
+
|
900 |
+
#: controllers/admin/import.php:2443 controllers/admin/import.php:2745
|
901 |
+
#: controllers/admin/import.php:2883 models/import/record.php:650
|
902 |
+
msgid "%d %s created %d updated %d deleted %d skipped"
|
903 |
+
msgstr "%d %s erstellt %d aktualisiert %d gelöscht %d übersprungen"
|
904 |
+
|
905 |
+
#: controllers/admin/import.php:2890
|
906 |
+
msgid "Canceled"
|
907 |
+
msgstr "Abgebrochen"
|
908 |
+
|
909 |
+
#: controllers/admin/import.php:2890
|
910 |
+
msgid "Complete"
|
911 |
+
msgstr "Fertiggestellt"
|
912 |
+
|
913 |
+
#: controllers/admin/license.php:43
|
914 |
+
msgid "Licenses saved"
|
915 |
+
msgstr "Lizenz gespeichert"
|
916 |
+
|
917 |
+
#: controllers/admin/manage.php:257
|
918 |
+
msgid "The other two files in this zip are the export file containing all of your data and the import template for WP All Import. \n"
|
919 |
+
"\n"
|
920 |
+
"To import this data, create a new import with WP All Import and upload this zip file."
|
921 |
+
msgstr ""
|
922 |
+
|
923 |
+
#: controllers/admin/manage.php:312 views/admin/manage/index.php:272
|
924 |
+
msgid "Import canceled"
|
925 |
+
msgstr "Import abgebrochen "
|
926 |
+
|
927 |
+
#: controllers/admin/manage.php:377
|
928 |
+
msgid "This import appears to be using FTP. Unfortunately WP All Import no longer supports the FTP protocol. Please contact <a href=\"mailto:support@wpallimport.com\">support@wpallimport.com</a> if you have any questions."
|
929 |
+
msgstr "Dieser Import scheint FTP zu nutzen. Leider unterstützt WP All Import das FTP Protokoll nicht mehr. Bitte kontaktieren Sie <a href=\"mailto:support@wpallimport.com\">support@wpallimport.com</a> wenn Sie fragen haben."
|
930 |
+
|
931 |
+
#: controllers/admin/manage.php:477
|
932 |
+
msgid "No matching elements found for Root element and XPath expression specified"
|
933 |
+
msgstr "Keine passenden Elemente für das Wurzelelement und den XPath Ausdruck gefunden"
|
934 |
+
|
935 |
+
#: controllers/admin/manage.php:573
|
936 |
+
msgid "File does not exists."
|
937 |
+
msgstr "Datei existiert nicht"
|
938 |
+
|
939 |
+
#: controllers/admin/manage.php:652 views/admin/manage/bulk.php:10
|
940 |
+
msgid "import"
|
941 |
+
msgid_plural "imports"
|
942 |
+
msgstr[0] ""
|
943 |
+
msgstr[1] ""
|
944 |
+
|
945 |
+
#: controllers/admin/settings.php:60
|
946 |
+
msgid "History File Count must be a non-negative integer"
|
947 |
+
msgstr "Zählung der Datei Chronik muss ein nicht negativer integer sein"
|
948 |
+
|
949 |
+
#: controllers/admin/settings.php:63
|
950 |
+
msgid "History Age must be a non-negative integer"
|
951 |
+
msgstr "Chronik alter muss ein nicht negativer integer sein."
|
952 |
+
|
953 |
+
#: controllers/admin/settings.php:83
|
954 |
+
msgid "Settings saved"
|
955 |
+
msgstr "Einstellungen gespeichert"
|
956 |
+
|
957 |
+
#: controllers/admin/settings.php:114
|
958 |
+
msgid "Unknown File extension. Only txt files are permitted"
|
959 |
+
msgstr "Unbekannte Dateiendung. Nur txt Dateien sind erlaubt"
|
960 |
+
|
961 |
+
#: controllers/admin/settings.php:127
|
962 |
+
msgid "%d template imported"
|
963 |
+
msgid_plural "%d templates imported"
|
964 |
+
msgstr[0] ""
|
965 |
+
msgstr[1] ""
|
966 |
+
|
967 |
+
#: controllers/admin/settings.php:129
|
968 |
+
msgid "Wrong imported data format"
|
969 |
+
msgstr "Falsches Import Dateiformat"
|
970 |
+
|
971 |
+
#: controllers/admin/settings.php:131
|
972 |
+
msgid "File is empty or doesn't exests"
|
973 |
+
msgstr "Datei ist leer oder existiert nicht"
|
974 |
+
|
975 |
+
#: controllers/admin/settings.php:134
|
976 |
+
msgid "Undefined entry!"
|
977 |
+
msgstr "Undefinierter Eintrag"
|
978 |
+
|
979 |
+
#: controllers/admin/settings.php:136
|
980 |
+
msgid "Please select file."
|
981 |
+
msgstr "Bitte wählen Sie eine Datei"
|
982 |
+
|
983 |
+
#: controllers/admin/settings.php:142
|
984 |
+
msgid "Templates must be selected"
|
985 |
+
msgstr "Vorlagen müssen gewählt sein"
|
986 |
+
|
987 |
+
#: controllers/admin/settings.php:151
|
988 |
+
msgid "%d template deleted"
|
989 |
+
msgid_plural "%d templates deleted"
|
990 |
+
msgstr[0] ""
|
991 |
+
msgstr[1] ""
|
992 |
+
|
993 |
+
#: controllers/admin/settings.php:279
|
994 |
+
msgid "Files not found"
|
995 |
+
msgstr "Dateien nicht gefunden"
|
996 |
+
|
997 |
+
#: controllers/admin/settings.php:287
|
998 |
+
msgid "Clean Up has been successfully completed."
|
999 |
+
msgstr "Aufräumarbeiten erfolgreich beendet."
|
1000 |
+
|
1001 |
+
#: controllers/admin/settings.php:445
|
1002 |
+
msgid "Uploads folder is not writable."
|
1003 |
+
msgstr "Upload Verzeichnis ist nicht beschreibbar."
|
1004 |
+
|
1005 |
+
#: controllers/admin/settings.php:502
|
1006 |
+
msgid "Failed to open temp directory."
|
1007 |
+
msgstr "Fehler bei öffnen des temp Verzeichnisses."
|
1008 |
+
|
1009 |
+
#: controllers/admin/settings.php:527 controllers/admin/settings.php:552
|
1010 |
+
msgid "Failed to open input stream."
|
1011 |
+
msgstr "Fehler bei öffnen des Input streams."
|
1012 |
+
|
1013 |
+
#: controllers/admin/settings.php:534 controllers/admin/settings.php:559
|
1014 |
+
msgid "Failed to open output stream."
|
1015 |
+
msgstr "Fehler bei öffnen des Output streams."
|
1016 |
+
|
1017 |
+
#: controllers/admin/settings.php:538
|
1018 |
+
msgid "Failed to move uploaded file."
|
1019 |
+
msgstr "Fehler bei verschieben der hochgeladenen Datei."
|
1020 |
+
|
1021 |
+
#: controllers/admin/settings.php:713
|
1022 |
+
#: views/admin/import/options/_import_file.php:51
|
1023 |
+
msgid "This %s file has errors and is not valid."
|
1024 |
+
msgstr ""
|
1025 |
+
|
1026 |
+
#: filters/pmxi_custom_types.php:8
|
1027 |
+
msgid "WooCommerce Products"
|
1028 |
+
msgstr ""
|
1029 |
+
|
1030 |
+
#: filters/pmxi_custom_types.php:9
|
1031 |
+
msgid "WooCommerce Orders"
|
1032 |
+
msgstr ""
|
1033 |
+
|
1034 |
+
#: filters/pmxi_custom_types.php:10
|
1035 |
+
msgid "WooCommerce Coupons"
|
1036 |
+
msgstr ""
|
1037 |
+
|
1038 |
+
#: helpers/import_custom_meta_box.php:25
|
1039 |
+
msgid "Custom fields can be used to add extra metadata to a post that you can <a href=\"http://codex.wordpress.org/Using_Custom_Fields\" target=\"_blank\">use in your theme</a>."
|
1040 |
+
msgstr "Individuelle Felder können genutzt werden um zusätzliche Daten in einen Post einzufügen. Sie können <a href=\"http://codex.wordpress.org/Using_Custom_Fields\" target=\"_blank\">sie in Ihrem Theme nutzen</a>."
|
1041 |
+
|
1042 |
+
#: helpers/reverse_taxonomies_html.php:18
|
1043 |
+
#: views/admin/import/template/_taxonomies_template.php:41
|
1044 |
+
#: views/admin/import/template/_taxonomies_template.php:63
|
1045 |
+
#: views/admin/import/template/_taxonomies_template.php:97
|
1046 |
+
#: views/admin/import/template/_taxonomies_template.php:107
|
1047 |
+
#: views/admin/import/template/_taxonomies_template.php:116
|
1048 |
+
#: views/admin/import/template/_taxonomies_template.php:164
|
1049 |
+
#: views/admin/import/template/_taxonomies_template.php:182
|
1050 |
+
#: views/admin/import/template/_taxonomies_template.php:189
|
1051 |
+
#: views/admin/import/template/_taxonomies_template.php:201
|
1052 |
+
msgid "Assign post to the taxonomy."
|
1053 |
+
msgstr "Post zuordnen zu Taxonomie."
|
1054 |
+
|
1055 |
+
#: helpers/wp_all_import_addon_notifications.php:108
|
1056 |
+
msgid "Make imports easier with the <strong>Advanced Custom Fields Add-On</strong> for WP All Import: <a href=\"%s\" target=\"_blank\">Read More</a>"
|
1057 |
+
msgstr "Machen Sie die Imports einfacher mit <strong>Erweiterte benutzerdefinierte Felder Add-on</strong> für WP All Import: <a href=\"%s\" target=\"_blank\">Mehr erfahren</a>"
|
1058 |
+
|
1059 |
+
#: helpers/wp_all_import_addon_notifications.php:124
|
1060 |
+
msgid "WP All Export"
|
1061 |
+
msgstr ""
|
1062 |
+
|
1063 |
+
#: helpers/wp_all_import_addon_notifications.php:125
|
1064 |
+
msgid "Export anything in WordPress to CSV, XML, or Excel."
|
1065 |
+
msgstr ""
|
1066 |
+
|
1067 |
+
#: helpers/wp_all_import_addon_notifications.php:128
|
1068 |
+
#: views/admin/import/confirm.php:53 views/admin/import/index.php:356
|
1069 |
+
#: views/admin/import/index.php:373 views/admin/import/options.php:70
|
1070 |
+
#: views/admin/import/options/_import_file.php:40
|
1071 |
+
#: views/admin/import/options/_import_file.php:57
|
1072 |
+
#: views/admin/import/process.php:86 views/admin/import/process.php:120
|
1073 |
+
msgid "Read More"
|
1074 |
+
msgstr ""
|
1075 |
+
|
1076 |
+
#: helpers/wp_all_import_addon_notifications.php:141
|
1077 |
+
msgid "Make imports easier with the <strong>free %s Add-On</strong> for WP All Import: <a href=\"%s\" target=\"_blank\">Get Add-On</a>"
|
1078 |
+
msgstr "Machen Sie die Imports einfacher mit <strong>freie %s Add-on</strong> für WP All Import: <a href=\"%s\" target=\"_blank\">Get Add-on</a>"
|
1079 |
+
|
1080 |
+
#: helpers/wp_all_import_is_json.php:13
|
1081 |
+
msgid "Maximum stack depth exceeded"
|
1082 |
+
msgstr "Maximale Stapeltiefe überschritten"
|
1083 |
+
|
1084 |
+
#: helpers/wp_all_import_is_json.php:16
|
1085 |
+
msgid "Underflow or the modes mismatch"
|
1086 |
+
msgstr "Unterlauf oder die Modi passen nicht"
|
1087 |
+
|
1088 |
+
#: helpers/wp_all_import_is_json.php:19
|
1089 |
+
msgid "Unexpected control character found"
|
1090 |
+
msgstr "Unerwarteter Buchstabe gefunden"
|
1091 |
+
|
1092 |
+
#: helpers/wp_all_import_is_json.php:22
|
1093 |
+
msgid "Syntax error, malformed JSON"
|
1094 |
+
msgstr "Syntax Fehler, deformiertes JSON"
|
1095 |
+
|
1096 |
+
#: helpers/wp_all_import_is_json.php:25
|
1097 |
+
msgid "Malformed UTF-8 characters, possibly incorrectly encoded"
|
1098 |
+
msgstr "Deformierte UTF-8 Buchstaben, möglicherweise falsch codiert"
|
1099 |
+
|
1100 |
+
#: helpers/wp_all_import_is_json.php:28
|
1101 |
+
msgid "Unknown json error"
|
1102 |
+
msgstr "Unbekannter JSON Fehler "
|
1103 |
+
|
1104 |
+
#: helpers/wp_all_import_template_notifications.php:14
|
1105 |
+
msgid "The import template you are using requires the %s. If you continue without it your data may import incorrectly.<br/><br/><a href=\"%s\" target=\"_blank\">"
|
1106 |
+
msgstr ""
|
1107 |
+
|
1108 |
+
#: helpers/wp_all_import_template_notifications.php:23
|
1109 |
+
msgid "The import template you are using requires the User Import Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href=\"http://www.wpallimport.com/add-ons/user-import/?utm_source=wordpress.org&utm_medium=wpai-import-template&utm_campaign=free+wp+all+export+plugin\" target=\"_blank\">Purchase the User Import Add-On</a>."
|
1110 |
+
msgstr "Die Import Vorlage die sie benutzen, benötigt das Benutzer Import Add-on. Wenn Sie ohne fortfahren, könnten Ihre Daten nicht korrekt importiert werden.<br/><br/><a href=\"http://www.wpallimport.com/add-ons/user-import/?utm_source=wordpress.org&utm_medium=wpai-import-template&utm_campaign=free+wp+all+export+plugin\" target=\"_blank\">Benutzer Import Add-On hier kaufen</a>."
|
1111 |
+
|
1112 |
+
#: helpers/wp_all_import_template_notifications.php:27
|
1113 |
+
msgid "The import template you are using requires the WooCommerce Import Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href=\"http://www.wpallimport.com/woocommerce-product-import/\" target=\"_blank\">Purchase the WooCommerce Import Add-On</a>."
|
1114 |
+
msgstr "Die Import Vorlage die sie benutzen, benötigt das WooCommerce Import Add-on. Wenn Sie ohne fortfahren, könnten Ihre Daten nicht korrekt importiert werden.<br/><br/><a href=\"http://www.wpallimport.com/woocommerce-product-import/\" target=\"_blank\">WooCommerce Import Add-On hier kaufen</a>."
|
1115 |
+
|
1116 |
+
#: helpers/wp_all_import_template_notifications.php:32
|
1117 |
+
msgid "The import template you are using requires the Realia Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress.org/plugins/realia-xml-csv-property-listings-import/\" target=\"_blank\">Download the Realia Add-On</a>."
|
1118 |
+
msgstr "Die Import Vorlage die sie benutzen, benötigt das Realia Add-on. Wenn Sie ohne fortfahren, könnten Ihre Daten nicht korrekt importiert werden.<br/><br/><a href=\"https://wordpress.org/plugins/realia-xml-csv-property-listings-import/\" target=\"_blank\">Realia Add-On hier herunterladen</a>."
|
1119 |
+
|
1120 |
+
#: helpers/wp_all_import_template_notifications.php:39
|
1121 |
+
msgid "The import template you are using requires the WP Residence Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress.org/plugins/wp-residence-add-on-for-wp-all-import/\" target=\"_blank\">Download the WP Residence Add-On</a>."
|
1122 |
+
msgstr "Die Import Vorlage die sie benutzen, benötigt das WP Residence Add-on. Wenn Sie ohne fortfahren, könnten Ihre Daten nicht korrekt importiert werden.<br/><br/><a href=\"https://wordpress.org/plugins/wp-residence-add-on-for-wp-all-import/\" target=\"_blank\">WP Residence Add-On hier herunterladen</a>."
|
1123 |
+
|
1124 |
+
#: helpers/wp_all_import_template_notifications.php:46
|
1125 |
+
msgid "The import template you are using requires the RealHomes Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress.org/plugins/realhomes-xml-csv-property-listings-import/\" target=\"_blank\">Download the RealHomes Add-On</a>."
|
1126 |
+
msgstr "Die Import Vorlage die sie benutzen, benötigt das RealHomes Add-on. Wenn Sie ohne fortfahren, könnten Ihre Daten nicht korrekt importiert werden.<br/><br/><a href=\"https://wordpress.org/plugins/realhomes-xml-csv-property-listings-import/\" target=\"_blank\">RealHomes Add-On hier herunterladen</a>."
|
1127 |
+
|
1128 |
+
#: helpers/wp_all_import_template_notifications.php:52
|
1129 |
+
msgid "The import template you are using requires the Jobify Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress.org/plugins/jobify-xml-csv-listings-import/\" target=\"_blank\">Download the Jobify Add-On</a>."
|
1130 |
+
msgstr "Die Import Vorlage die sie benutzen, benötigt das Jobify Add-on. Wenn Sie ohne fortfahren, könnten Ihre Daten nicht korrekt importiert werden.<br/><br/><a href=\"https://wordpress.org/plugins/jobify-xml-csv-listings-import/\" target=\"_blank\">Jobify Add-On hier herunterladen</a>."
|
1131 |
+
|
1132 |
+
#: helpers/wp_all_import_template_notifications.php:58
|
1133 |
+
msgid "The import template you are using requires the Listify Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress.org/plugins/listify-xml-csv-listings-import/\" target=\"_blank\">Download the Listify Add-On</a>."
|
1134 |
+
msgstr "Die Import Vorlage die sie benutzen, benötigt das Listify Add-on. Wenn Sie ohne fortfahren, könnten Ihre Daten nicht korrekt importiert werden.<br/><br/><a href=\"https://wordpress.org/plugins/listify-xml-csv-listings-import/\" target=\"_blank\">Listify Add-On hier herunterladen</a>."
|
1135 |
+
|
1136 |
+
#: helpers/wp_all_import_template_notifications.php:64
|
1137 |
+
msgid "The import template you are using requires the Reales WP Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress.org/plugins/reales-wp-xml-csv-property-listings-import/\" target=\"_blank\">Download the Reales WP Add-On</a>."
|
1138 |
+
msgstr "Die Import Vorlage die sie benutzen, benötigt das Reales WP Add-on. Wenn Sie ohne fortfahren, könnten Ihre Daten nicht korrekt importiert werden.<br/><br/><a href=\"https://wordpress.org/plugins/reales-wp-xml-csv-property-listings-import/\" target=\"_blank\">Reales WP Add-On hier herunterladen</a>."
|
1139 |
+
|
1140 |
+
#: helpers/wp_all_import_template_notifications.php:74
|
1141 |
+
msgid "The import template you are using requires the WP Job Manager Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress.org/plugins/wp-job-manager-xml-csv-listings-import/\" target=\"_blank\">Download the WP Job Manager Add-On</a>."
|
1142 |
+
msgstr "Die Import Vorlage die sie benutzen, benötigt das WP Job Add-on. Wenn Sie ohne fortfahren, könnten Ihre Daten nicht korrekt importiert werden.<br/><br/><a href=\"https://wordpress.org/plugins/wp-job-manager-xml-csv-listings-import/\" target=\"_blank\">WP Job Manager Add-On hier herunterladen</a>."
|
1143 |
+
|
1144 |
+
#: helpers/wp_all_import_template_notifications.php:80
|
1145 |
+
msgid "The import template you are using requires the Yoast SEO Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress.org/plugins/yoast-seo-settings-xml-csv-import/\" target=\"_blank\">Download the Yoast SEO Add-On</a>."
|
1146 |
+
msgstr "Die Import Vorlage die sie benutzen, benötigt das Yoast SEO Add-on. Wenn Sie ohne fortfahren, könnten Ihre Daten nicht korrekt importiert werden.<br/><br/><a href=\"https://wordpress.org/plugins/yoast-seo-settings-xml-csv-import/\" target=\"_blank\">Yoast SEO Add-On hier herunterladen</a>."
|
1147 |
+
|
1148 |
+
#: helpers/wp_all_import_template_notifications.php:86
|
1149 |
+
msgid "The import template you are using requires the Listable Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress.org/plugins/import-xml-csv-listings-to-listable-theme/\" target=\"_blank\">Download the Listable Add-On</a>."
|
1150 |
+
msgstr ""
|
1151 |
+
|
1152 |
+
#: helpers/wp_all_import_template_notifications.php:91
|
1153 |
+
msgid "The import template you are using requires an Add-On for WP All Import. If you continue without using this Add-On your data may import incorrectly."
|
1154 |
+
msgstr "Die Import Vorlage die sie benutzen, benötigt ein Add-on für WP All Import. Wenn Sie ohne fortfahren, könnten Ihre Daten nicht korrekt importiert werden."
|
1155 |
+
|
1156 |
+
#: helpers/wp_all_import_template_notifications.php:103
|
1157 |
+
msgid "<strong>Warning:</strong>"
|
1158 |
+
msgstr "<strong>Warnung:</strong>"
|
1159 |
+
|
1160 |
+
#: models/import/record.php:44
|
1161 |
+
msgid "WP All Import can't read your file.<br/><br/>Probably, you are trying to import an invalid XML feed. Try opening the XML feed in a web browser (Google Chrome is recommended for opening XML files) to see if there is an error message.<br/>Alternatively, run the feed through a validator: http://validator.w3.org/<br/>99% of the time, the reason for this error is because your XML feed isn't valid.<br/>If you are 100% sure you are importing a valid XML feed, please contact WP All Import support."
|
1162 |
+
msgstr "WP All Import kann Ihre Datei nicht lesen. <br/><br/> Eventuell versuchen Sie einen ungültigen XML Feed zu importieren. Versuchen Sie das XML in einem Browser zu öffnen ( Google Chrome wird empfohlen um XML Dateien zu öffnen) um zu sehen ob eine Fehlermeldung erscheint. <br/>Alternativ können Sie den Feed durch einen Validator prüfen lassen: http://validator.w3.org/<br/> In 99% der Fälle ist der Grund für einen Fehler ein ungültiger XML Feed. <br/> Wenn Sie 100% sicher sind dass sie einen gültigen XML Feed importieren, Kontaktieren Sie den WP All Import Support."
|
1163 |
+
|
1164 |
+
#: models/import/record.php:56
|
1165 |
+
msgid "Invalid XML"
|
1166 |
+
msgstr "Ungültiges XML"
|
1167 |
+
|
1168 |
+
#: models/import/record.php:59
|
1169 |
+
msgid "Line"
|
1170 |
+
msgstr "Zeile"
|
1171 |
+
|
1172 |
+
#: models/import/record.php:60
|
1173 |
+
msgid "Column"
|
1174 |
+
msgstr "Spalte"
|
1175 |
+
|
1176 |
+
#: models/import/record.php:61
|
1177 |
+
msgid "Code"
|
1178 |
+
msgstr "Code"
|
1179 |
+
|
1180 |
+
#: models/import/record.php:72
|
1181 |
+
msgid "Required PHP components are missing."
|
1182 |
+
msgstr "Benötige PHP Komponenten fehlen."
|
1183 |
+
|
1184 |
+
#: models/import/record.php:73
|
1185 |
+
msgid "WP All Import requires the SimpleXML PHP module to be installed. This is a standard feature of PHP, and is necessary for WP All Import to read the files you are trying to import.<br/>Please contact your web hosting provider and ask them to install and activate the SimpleXML PHP module."
|
1186 |
+
msgstr "WP All Import benötigt einfache XML PHP Module die installiert sein müssen. Diese sind Standardinhalte in PHP und werden von WP All Import benötigt um die Dateien zu lesen die Sie versuchen zu importieren.<br/>Bitte kontaktieren Sie Ihren Dienstanbieter und fragen Sie nach der Installation und Aktivierung der einfachen XML PHP Module."
|
1187 |
+
|
1188 |
+
#: models/import/record.php:117
|
1189 |
+
msgid "This import appears to be using FTP. Unfortunately WP All Import no longer supports the FTP protocol. Please contact <a href=\"mailto:support@wpallimport.com\">%s</a> if you have any questions."
|
1190 |
+
msgstr "Dieser Import scheint FTP zu nutzen. Leider unterstützt WP All Import das FTP Protokoll nicht mehr. Bitte kontaktieren Sie <a href=\"mailto:support@wpallimport.com\">%s</a> wenn Sie fragen haben."
|
1191 |
+
|
1192 |
+
#: models/import/record.php:267
|
1193 |
+
msgid "#%s No matching elements found for Root element and XPath expression specified"
|
1194 |
+
msgstr "#%s Keine passenden Elemente für das Wurzelelement und den XPath Ausdruck gefunden"
|
1195 |
+
|
1196 |
+
#: models/import/record.php:533
|
1197 |
+
msgid "Deleted missing records %s for import #%s"
|
1198 |
+
msgstr ""
|
1199 |
+
|
1200 |
+
#: models/import/record.php:596
|
1201 |
+
msgid "Updating stock status for missing records %s for import #%s"
|
1202 |
+
msgstr ""
|
1203 |
+
|
1204 |
+
#: models/import/record.php:624
|
1205 |
+
msgid "import finished & cron un-triggered<br>%s %s created %s updated %s deleted %s skipped"
|
1206 |
+
msgstr "Import Abgeschlossen & cron nicht ausgelöst<br/>%s%s erstellt %s aktualisiert %s gelöscht %s übersprungen"
|
1207 |
+
|
1208 |
+
#: models/import/record.php:657
|
1209 |
+
msgid "Records Processed %s. Records imported %s of %s."
|
1210 |
+
msgstr ""
|
1211 |
+
|
1212 |
+
#: models/import/record.php:676
|
1213 |
+
msgid "#%s source file not found"
|
1214 |
+
msgstr "#%s Quelle der Datei nicht gefunden"
|
1215 |
+
|
1216 |
+
#: models/import/record.php:729
|
1217 |
+
msgid "Composing titles..."
|
1218 |
+
msgstr "Zusammengesetzte Titel..."
|
1219 |
+
|
1220 |
+
#: models/import/record.php:739
|
1221 |
+
msgid "Composing parent terms..."
|
1222 |
+
msgstr ""
|
1223 |
+
|
1224 |
+
#: models/import/record.php:748
|
1225 |
+
msgid "Composing terms slug..."
|
1226 |
+
msgstr ""
|
1227 |
+
|
1228 |
+
#: models/import/record.php:758
|
1229 |
+
msgid "Composing excerpts..."
|
1230 |
+
msgstr "Zusammengesetzte Auszüge..."
|
1231 |
+
|
1232 |
+
#: models/import/record.php:769
|
1233 |
+
msgid "Composing statuses..."
|
1234 |
+
msgstr "Zusammengesetzter Status..."
|
1235 |
+
|
1236 |
+
#: models/import/record.php:780
|
1237 |
+
msgid "Composing comment statuses..."
|
1238 |
+
msgstr "Zusammengesetzter kommentierter Status..."
|
1239 |
+
|
1240 |
+
#: models/import/record.php:791
|
1241 |
+
msgid "Composing ping statuses..."
|
1242 |
+
msgstr "Zusammengesetzter ping Status..."
|
1243 |
+
|
1244 |
+
#: models/import/record.php:802
|
1245 |
+
msgid "Composing post formats..."
|
1246 |
+
msgstr "Zusammengesetzte post Formate..."
|
1247 |
+
|
1248 |
+
#: models/import/record.php:814
|
1249 |
+
msgid "Composing duplicate indicators..."
|
1250 |
+
msgstr ""
|
1251 |
+
|
1252 |
+
#: models/import/record.php:827
|
1253 |
+
msgid "Composing page templates..."
|
1254 |
+
msgstr "Zusammengesetzte Seiten Vorlagen..."
|
1255 |
+
|
1256 |
+
#: models/import/record.php:838
|
1257 |
+
msgid "Composing post types..."
|
1258 |
+
msgstr "Zusammengesetzte post Typen..."
|
1259 |
+
|
1260 |
+
#: models/import/record.php:852
|
1261 |
+
msgid "Composing page parent..."
|
1262 |
+
msgstr "Zusammengesetzte Elternseiten..."
|
1263 |
+
|
1264 |
+
#: models/import/record.php:912
|
1265 |
+
msgid "Composing authors..."
|
1266 |
+
msgstr "Zusammengesetzte Autoren..."
|
1267 |
+
|
1268 |
+
#: models/import/record.php:953
|
1269 |
+
msgid "Composing slugs..."
|
1270 |
+
msgstr "Zusammengesetzte slugs..."
|
1271 |
+
|
1272 |
+
#: models/import/record.php:962
|
1273 |
+
msgid "Composing menu order..."
|
1274 |
+
msgstr "Zusammengesetzte Menü Reihenfolge..."
|
1275 |
+
|
1276 |
+
#: models/import/record.php:971
|
1277 |
+
msgid "Composing contents..."
|
1278 |
+
msgstr "Zusammengesetzte Inhalte..."
|
1279 |
+
|
1280 |
+
#: models/import/record.php:984
|
1281 |
+
msgid "Composing dates..."
|
1282 |
+
msgstr "Zusammengesetztes Datum..."
|
1283 |
+
|
1284 |
+
#: models/import/record.php:992 models/import/record.php:1005
|
1285 |
+
#: models/import/record.php:1011
|
1286 |
+
msgid "<b>WARNING</b>: unrecognized date format `%s`, assigning current date"
|
1287 |
+
msgstr "<b>WARNUNG</b>: Nicht erkanntes Datums Format `%s`, übertrage aktuelles Datum"
|
1288 |
+
|
1289 |
+
#: models/import/record.php:1027
|
1290 |
+
msgid "Composing terms for `%s` taxonomy..."
|
1291 |
+
msgstr "Zusammengesetzte Bezeichnung für `%s` Taxonomien..."
|
1292 |
+
|
1293 |
+
#: models/import/record.php:1239
|
1294 |
+
msgid "Composing custom parameters..."
|
1295 |
+
msgstr "Zusammengesetzte individuelle Parameter..."
|
1296 |
+
|
1297 |
+
#: models/import/record.php:1346 models/import/record.php:1464
|
1298 |
+
msgid "<b>WARNING</b>"
|
1299 |
+
msgstr "<b>WARNUNG</b>"
|
1300 |
+
|
1301 |
+
#: models/import/record.php:1347
|
1302 |
+
msgid "<b>WARNING</b>: No featured images will be created. Uploads folder is not found."
|
1303 |
+
msgstr "<b>WARNUNG</b>: Keine Erstellung von featured Bildern. Upload Verzeichnis wurde nicht gefunden."
|
1304 |
+
|
1305 |
+
#: models/import/record.php:1358
|
1306 |
+
msgid "Composing URLs for "
|
1307 |
+
msgstr ""
|
1308 |
+
|
1309 |
+
#: models/import/record.php:1389 models/import/record.php:1401
|
1310 |
+
#: models/import/record.php:1413 models/import/record.php:1425
|
1311 |
+
#: models/import/record.php:1437 models/import/record.php:1448
|
1312 |
+
msgid "Composing "
|
1313 |
+
msgstr ""
|
1314 |
+
|
1315 |
+
#: models/import/record.php:1465
|
1316 |
+
msgid "<b>WARNING</b>: No attachments will be created"
|
1317 |
+
msgstr "<b>WARNUNG</b>:Anhänge werden nicht erstellt."
|
1318 |
+
|
1319 |
+
#: models/import/record.php:1468
|
1320 |
+
msgid "Composing URLs for attachments files..."
|
1321 |
+
msgstr "Zusammengesetzte URLs für Angehängte Dateien..."
|
1322 |
+
|
1323 |
+
#: models/import/record.php:1497
|
1324 |
+
msgid "Composing unique keys..."
|
1325 |
+
msgstr "Zusammengesetzte einzigartige Schlüssel..."
|
1326 |
+
|
1327 |
+
#: models/import/record.php:1505
|
1328 |
+
msgid "Processing posts..."
|
1329 |
+
msgstr "Bearbeite Posts..."
|
1330 |
+
|
1331 |
+
#: models/import/record.php:1511
|
1332 |
+
msgid "Data parsing via add-ons..."
|
1333 |
+
msgstr "Übersetze Daten mittels Add-on..."
|
1334 |
+
|
1335 |
+
#: models/import/record.php:1554
|
1336 |
+
msgid "Calculate specified records to import..."
|
1337 |
+
msgstr "Berechne spezifizierte Datensätze für den Import..."
|
1338 |
+
|
1339 |
+
#: models/import/record.php:1581
|
1340 |
+
msgid "---"
|
1341 |
+
msgstr "---"
|
1342 |
+
|
1343 |
+
#: models/import/record.php:1582
|
1344 |
+
msgid "Record #%s"
|
1345 |
+
msgstr "Aufnahme #%s"
|
1346 |
+
|
1347 |
+
#: models/import/record.php:1589 models/import/record.php:1779
|
1348 |
+
msgid "<b>SKIPPED</b>: by specified records option"
|
1349 |
+
msgstr "<b>SKIPPED</b>: Von spezifizierter schreib Option"
|
1350 |
+
|
1351 |
+
#: models/import/record.php:1598
|
1352 |
+
msgid "<b>ACTION</b>: pmxi_before_post_import ..."
|
1353 |
+
msgstr "<b>ACTION</b>: pmxi_before_post_import ..."
|
1354 |
+
|
1355 |
+
#: models/import/record.php:1606
|
1356 |
+
msgid "<b>WARNING</b>: title is empty."
|
1357 |
+
msgstr "<b>WARNUNG</b>: Titel ist leer."
|
1358 |
+
|
1359 |
+
#: models/import/record.php:1627
|
1360 |
+
msgid "Combine all data for user %s..."
|
1361 |
+
msgstr "Kombiniere alle Daten für Benutzer %s..."
|
1362 |
+
|
1363 |
+
#: models/import/record.php:1647
|
1364 |
+
msgid "Combine all data for term %s..."
|
1365 |
+
msgstr ""
|
1366 |
+
|
1367 |
+
#: models/import/record.php:1665
|
1368 |
+
msgid "Combine all data for post `%s`..."
|
1369 |
+
msgstr "Kombiniere alle Daten für post %s..."
|
1370 |
+
|
1371 |
+
#: models/import/record.php:1694
|
1372 |
+
msgid "Find corresponding article among previously imported for post `%s`..."
|
1373 |
+
msgstr "Finde zugehörige Artikel unter den vorherigen importieren Posts `%s`..."
|
1374 |
+
|
1375 |
+
#: models/import/record.php:1702
|
1376 |
+
msgid "Duplicate post was found for post %s with unique key `%s`..."
|
1377 |
+
msgstr "Doppelter post wurde für post %s erkannt mit dem einzigartigen Schlüssel `%s`..."
|
1378 |
+
|
1379 |
+
#: models/import/record.php:1716
|
1380 |
+
msgid "Duplicate post wasn't found with unique key `%s`..."
|
1381 |
+
msgstr "Doppelter post wurde nicht erkannt mit dem einzigartigen Schlüssel `%s`..."
|
1382 |
+
|
1383 |
+
#: models/import/record.php:1730
|
1384 |
+
msgid "Find corresponding article among database for post `%s`..."
|
1385 |
+
msgstr "Finde zugehörige Artikel in der Datenbank für Posts `%s`..."
|
1386 |
+
|
1387 |
+
#: models/import/record.php:1743
|
1388 |
+
msgid "Duplicate post was found for post `%s`..."
|
1389 |
+
msgstr "Doppelter post wurde erkannt in post `%s`..."
|
1390 |
+
|
1391 |
+
#: models/import/record.php:1757
|
1392 |
+
msgid "Duplicate post wasn't found for post `%s`..."
|
1393 |
+
msgstr ""
|
1394 |
+
|
1395 |
+
#: models/import/record.php:1800
|
1396 |
+
msgid "<b>SKIPPED</b>: By filter wp_all_import_is_post_to_update `%s`"
|
1397 |
+
msgstr "<b>SKIPPED</b>: Von Filter: wp_all_import_is_post_to_update `%s`"
|
1398 |
+
|
1399 |
+
#: models/import/record.php:1817
|
1400 |
+
msgid "<b>SKIPPED</b>: Previously imported record found for `%s`"
|
1401 |
+
msgstr "<b>SKIPPED</b>: Vorherige Import Aufzeichnung gefunden für `%s`"
|
1402 |
+
|
1403 |
+
#: models/import/record.php:1846
|
1404 |
+
msgid "Preserve description of already existing taxonomy term for `%s`"
|
1405 |
+
msgstr ""
|
1406 |
+
|
1407 |
+
#: models/import/record.php:1850
|
1408 |
+
msgid "Preserve name of already existing taxonomy term for `%s`"
|
1409 |
+
msgstr ""
|
1410 |
+
|
1411 |
+
#: models/import/record.php:1854
|
1412 |
+
msgid "Preserve slug of already existing taxonomy term for `%s`"
|
1413 |
+
msgstr ""
|
1414 |
+
|
1415 |
+
#: models/import/record.php:1862
|
1416 |
+
msgid "Preserve parent of already existing taxonomy term for `%s`"
|
1417 |
+
msgstr ""
|
1418 |
+
|
1419 |
+
#: models/import/record.php:1868
|
1420 |
+
msgid "Preserve taxonomies of already existing article for `%s`"
|
1421 |
+
msgstr "Erhalte Taxonomien von bereits existierenden Artikeln `%s`"
|
1422 |
+
|
1423 |
+
#: models/import/record.php:1873
|
1424 |
+
msgid "<b>WARNING</b>: Unable to get current taxonomies for article #%d, updating with those read from XML file"
|
1425 |
+
msgstr "<b>WARNING</b>: Erhalt von gegenwärtigen Taxonomien der Artikel #%d nicht möglich, aktualisiere mit Daten der XML Datei."
|
1426 |
+
|
1427 |
+
#: models/import/record.php:1890
|
1428 |
+
msgid "Preserve date of already existing article for `%s`"
|
1429 |
+
msgstr "Erhalte Daten von bereits existierenden Artikeln `%s`"
|
1430 |
+
|
1431 |
+
#: models/import/record.php:1894
|
1432 |
+
msgid "Preserve status of already existing article for `%s`"
|
1433 |
+
msgstr "Erhalte Status von bereits existierenden Artikeln `%s`"
|
1434 |
+
|
1435 |
+
#: models/import/record.php:1898
|
1436 |
+
msgid "Preserve content of already existing article for `%s`"
|
1437 |
+
msgstr "Erhalte Inhalt von bereits existierenden Artikeln `%s`"
|
1438 |
+
|
1439 |
+
#: models/import/record.php:1902
|
1440 |
+
msgid "Preserve title of already existing article for `%s`"
|
1441 |
+
msgstr "Erhalte Titel von bereits existierenden Artikeln `%s`"
|
1442 |
+
|
1443 |
+
#: models/import/record.php:1906
|
1444 |
+
msgid "Preserve slug of already existing article for `%s`"
|
1445 |
+
msgstr "Erhalte slug von bereits existierenden Artikeln `%s`"
|
1446 |
+
|
1447 |
+
#: models/import/record.php:1926
|
1448 |
+
msgid "Preserve excerpt of already existing article for `%s`"
|
1449 |
+
msgstr "Erhalte Auszug von bereits existierenden Artikeln `%s`"
|
1450 |
+
|
1451 |
+
#: models/import/record.php:1930
|
1452 |
+
msgid "Preserve menu order of already existing article for `%s`"
|
1453 |
+
msgstr "Erhalte Menü von bereits existierenden Artikeln `%s`"
|
1454 |
+
|
1455 |
+
#: models/import/record.php:1934
|
1456 |
+
msgid "Preserve post parent of already existing article for `%s`"
|
1457 |
+
msgstr "Erhalte Post von bereits existierenden Artikeln `%s`"
|
1458 |
+
|
1459 |
+
#: models/import/record.php:1938
|
1460 |
+
msgid "Preserve post type of already existing article for `%s`"
|
1461 |
+
msgstr ""
|
1462 |
+
|
1463 |
+
#: models/import/record.php:1942
|
1464 |
+
msgid "Preserve comment status of already existing article for `%s`"
|
1465 |
+
msgstr ""
|
1466 |
+
|
1467 |
+
#: models/import/record.php:1946
|
1468 |
+
msgid "Preserve post author of already existing article for `%s`"
|
1469 |
+
msgstr "Erhalte Post Autor von bereits existierenden Artikeln `%s`"
|
1470 |
+
|
1471 |
+
#: models/import/record.php:1962 models/import/record.php:1981
|
1472 |
+
msgid "Deleting images for `%s`"
|
1473 |
+
msgstr "Lösche Bilder für `%s`"
|
1474 |
+
|
1475 |
+
#: models/import/record.php:1976
|
1476 |
+
msgid "Deleting attachments for `%s`"
|
1477 |
+
msgstr "Lösche Anhänge für `%s`"
|
1478 |
+
|
1479 |
+
#: models/import/record.php:2004
|
1480 |
+
msgid "Applying filter `pmxi_article_data` for `%s`"
|
1481 |
+
msgstr "Benutze Filter `pmxi_article_data` für `%s`"
|
1482 |
+
|
1483 |
+
#: models/import/record.php:2012
|
1484 |
+
msgid "<b>SKIPPED</b>: by do not create new posts option."
|
1485 |
+
msgstr "<b>SKIPPED</b>:erstelle keine neue post Optionen"
|
1486 |
+
|
1487 |
+
#: models/import/record.php:2084
|
1488 |
+
msgid "<b>WARNING</b>: Unable to create cloaked link for %s"
|
1489 |
+
msgstr "<b>WARNING</b>:Verhüllten Link erstellen nicht möglich %s"
|
1490 |
+
|
1491 |
+
#: models/import/record.php:2111
|
1492 |
+
msgid "<b>SKIPPED</b>: By filter wp_all_import_is_post_to_create `%s`"
|
1493 |
+
msgstr ""
|
1494 |
+
|
1495 |
+
#: models/import/record.php:2122
|
1496 |
+
msgid "<b>ERROR</b> Sorry, that email address `%s` is already used!"
|
1497 |
+
msgstr ""
|
1498 |
+
|
1499 |
+
#: models/import/record.php:2132 models/import/record.php:2162
|
1500 |
+
msgid "<b>CREATING</b> `%s` `%s`"
|
1501 |
+
msgstr "<b>CREATING</b> `%s` `%s`"
|
1502 |
+
|
1503 |
+
#: models/import/record.php:2135 models/import/record.php:2165
|
1504 |
+
msgid "<b>UPDATING</b> `%s` `%s`"
|
1505 |
+
msgstr "<b>UPDATING</b> `%s` `%s`"
|
1506 |
+
|
1507 |
+
#: models/import/record.php:2148 models/import/record.php:2173
|
1508 |
+
#: models/import/record.php:2178 models/import/record.php:3369
|
1509 |
+
msgid "<b>ERROR</b>"
|
1510 |
+
msgstr "<b>ERROR</b>"
|
1511 |
+
|
1512 |
+
#: models/import/record.php:2201
|
1513 |
+
msgid "Associate post `%s` with current import ..."
|
1514 |
+
msgstr "Verknüpfe post `%s` mit gegenwärtigen Import..."
|
1515 |
+
|
1516 |
+
#: models/import/record.php:2207
|
1517 |
+
msgid "Associate post `%s` with post format %s ..."
|
1518 |
+
msgstr "Verknüpfe post `%s` mit gegenwärtigen Format %s..."
|
1519 |
+
|
1520 |
+
#: models/import/record.php:2219
|
1521 |
+
msgid "<b>CUSTOM FIELDS:</b>"
|
1522 |
+
msgstr "<b>CUSTOM FIELDS:</b>"
|
1523 |
+
|
1524 |
+
#: models/import/record.php:2267
|
1525 |
+
msgid "- Custom field %s has been deleted for `%s` attempted to `update all custom fields` setting ..."
|
1526 |
+
msgstr "- Individuelles Feld %s wurde gelöscht für `%s` ausgelöst durch `aktualisiere alle individuellen Felder` Einstellungen... "
|
1527 |
+
|
1528 |
+
#: models/import/record.php:2285
|
1529 |
+
msgid "- Custom field %s has been deleted for `%s` attempted to `update only these custom fields: %s, leave rest alone` setting ..."
|
1530 |
+
msgstr "- Individuelles Feld %s wurde gelöscht für `%s` ausgelöst durch `aktualisiere nur diese individuellen Felder: %s, Rest bleibt leer` Einstellungen... "
|
1531 |
+
|
1532 |
+
#: models/import/record.php:2304
|
1533 |
+
msgid "- Custom field %s has been deleted for `%s` attempted to `leave these fields alone: %s, update all other Custom Fields` setting ..."
|
1534 |
+
msgstr "- Individuelles Feld %s wurde gelöscht für `%s` ausgelöst durch `Lasse diese Felder in Ruhe: %s, aktualisiere alle anderen individuellen Felder` Einstellungen... "
|
1535 |
+
|
1536 |
+
#: models/import/record.php:2374
|
1537 |
+
msgid "- Custom field `%s` has been skipped attempted to record matching options ..."
|
1538 |
+
msgstr "-Benutzerdefiniertes Feld `%s` wurde übersprungen, versuche übereinstimmende Optionen aufzuzeichnen..."
|
1539 |
+
|
1540 |
+
#: models/import/record.php:2382
|
1541 |
+
msgid "- <b>ACTION</b>: pmxi_custom_field"
|
1542 |
+
msgstr "- <b>ACTION</b>: pmxi_custom_field"
|
1543 |
+
|
1544 |
+
#: models/import/record.php:2421
|
1545 |
+
msgid "- Custom field `%s` has been updated with value `%s` for post `%s` ..."
|
1546 |
+
msgstr "-Benutzerdefiniertes Feld `%s` wurde mit Wert '`%s` für Post `%s` ..."
|
1547 |
+
|
1548 |
+
#: models/import/record.php:2422
|
1549 |
+
msgid "- <b>ACTION</b>: pmxi_update_post_meta"
|
1550 |
+
msgstr "- <b>ACTION</b>: pmxi_update_post_meta"
|
1551 |
+
|
1552 |
+
#: models/import/record.php:2462
|
1553 |
+
msgid "<b>IMAGES:</b>"
|
1554 |
+
msgstr "<b>IMAGES:</b>"
|
1555 |
+
|
1556 |
+
#: models/import/record.php:2466
|
1557 |
+
msgid "<b>ERROR</b>: Target directory %s is not writable"
|
1558 |
+
msgstr "<b>Fehler</b>: Ziel-Verzeichnis %s ist nicht beschreibbar"
|
1559 |
+
|
1560 |
+
#: models/import/record.php:2495
|
1561 |
+
msgid "- Keep existing and add newest images ..."
|
1562 |
+
msgstr "- Behalte existierende und ergänze neueste Bilder"
|
1563 |
+
|
1564 |
+
#: models/import/record.php:2581
|
1565 |
+
msgid "- Importing image `%s` for `%s` ..."
|
1566 |
+
msgstr "- Importiere Bild `%s` für `%s`..."
|
1567 |
+
|
1568 |
+
#: models/import/record.php:2610 models/import/record.php:2688
|
1569 |
+
msgid "- <b>WARNING</b>: Image %s not found in media gallery."
|
1570 |
+
msgstr ""
|
1571 |
+
|
1572 |
+
#: models/import/record.php:2614 models/import/record.php:2692
|
1573 |
+
msgid "- Using existing image `%s` for post `%s` ..."
|
1574 |
+
msgstr ""
|
1575 |
+
|
1576 |
+
#: models/import/record.php:2625
|
1577 |
+
msgid "- found base64_encoded image"
|
1578 |
+
msgstr "- base64_codiertes Bild gefunden"
|
1579 |
+
|
1580 |
+
#: models/import/record.php:2899
|
1581 |
+
msgid "- <b>ACTION</b>: "
|
1582 |
+
msgstr ""
|
1583 |
+
|
1584 |
+
#: models/import/record.php:2928
|
1585 |
+
msgid "- Attachment has been successfully updated for image `%s`"
|
1586 |
+
msgstr ""
|
1587 |
+
|
1588 |
+
#: models/import/record.php:2946
|
1589 |
+
msgid "- Post `%s` saved as Draft, because no images are downloaded successfully"
|
1590 |
+
msgstr "- Post `%s` als Entwurf gespeichert, da keine Bilder heruntergeladen werden konnten"
|
1591 |
+
|
1592 |
+
#: models/import/record.php:2955
|
1593 |
+
msgid "Post `%s` saved as Draft, because no images are downloaded successfully"
|
1594 |
+
msgstr "Post `%s` als Entwurf gespeichert, da keine Bilder heruntergeladen werden konnten"
|
1595 |
+
|
1596 |
+
#: models/import/record.php:2994
|
1597 |
+
msgid "Images import skipped for post `%s` according to 'pmxi_is_images_to_update' filter..."
|
1598 |
+
msgstr ""
|
1599 |
+
|
1600 |
+
#: models/import/record.php:3006
|
1601 |
+
msgid "<b>ATTACHMENTS:</b>"
|
1602 |
+
msgstr "<b>ATTACHMENTS:</b>"
|
1603 |
+
|
1604 |
+
#: models/import/record.php:3009
|
1605 |
+
msgid "- <b>ERROR</b>: Target directory %s is not writable"
|
1606 |
+
msgstr "<b>Fehler</b>: Ziel-Verzeichnis %s ist nicht beschreibbar"
|
1607 |
+
|
1608 |
+
#: models/import/record.php:3018
|
1609 |
+
msgid "- Importing attachments for `%s` ..."
|
1610 |
+
msgstr "- Importiere Anhänge für `%s`..."
|
1611 |
+
|
1612 |
+
#: models/import/record.php:3043
|
1613 |
+
msgid "- Using existing file `%s` for post `%s` ..."
|
1614 |
+
msgstr ""
|
1615 |
+
|
1616 |
+
#: models/import/record.php:3052
|
1617 |
+
msgid "- Filename for attachment was generated as %s"
|
1618 |
+
msgstr "- Dateiname für Anhang wurde generiert als %s"
|
1619 |
+
|
1620 |
+
#: models/import/record.php:3059
|
1621 |
+
msgid "- <b>WARNING</b>: Attachment file %s cannot be saved locally as %s"
|
1622 |
+
msgstr "- <b>WARNUNG</b>: Anhang Datei %s kann lokal nicht gespeichert werden als %s"
|
1623 |
+
|
1624 |
+
#: models/import/record.php:3060
|
1625 |
+
msgid "- <b>WP Error</b>: %s"
|
1626 |
+
msgstr "- <b>WP Error</b>: %s"
|
1627 |
+
|
1628 |
+
#: models/import/record.php:3074
|
1629 |
+
msgid "- File %s has been successfully downloaded"
|
1630 |
+
msgstr "- Datei %s wurde erfolgreich heruntergeladen"
|
1631 |
+
|
1632 |
+
#: models/import/record.php:3090
|
1633 |
+
msgid "- Attachment has been successfully created for post `%s`"
|
1634 |
+
msgstr "- Anhang wurde erstellt für den Post `%s`"
|
1635 |
+
|
1636 |
+
#: models/import/record.php:3091 models/import/record.php:3116
|
1637 |
+
msgid "- <b>ACTION</b>: pmxi_attachment_uploaded"
|
1638 |
+
msgstr "- <b>ACTION</b>: pmxi_attachment_uploaded"
|
1639 |
+
|
1640 |
+
#: models/import/record.php:3110
|
1641 |
+
msgid "- Attachment has been successfully updated for file `%s`"
|
1642 |
+
msgstr ""
|
1643 |
+
|
1644 |
+
#: models/import/record.php:3114
|
1645 |
+
msgid "- Attachment has been successfully created for file `%s`"
|
1646 |
+
msgstr ""
|
1647 |
+
|
1648 |
+
#: models/import/record.php:3127
|
1649 |
+
msgid "Attachments import skipped for post `%s` according to 'pmxi_is_attachments_to_update' filter..."
|
1650 |
+
msgstr ""
|
1651 |
+
|
1652 |
+
#: models/import/record.php:3134
|
1653 |
+
msgid "<b>TAXONOMIES:</b>"
|
1654 |
+
msgstr "<b>TAXONOMIES:</b>"
|
1655 |
+
|
1656 |
+
#: models/import/record.php:3143
|
1657 |
+
msgid "- Importing taxonomy `%s` ..."
|
1658 |
+
msgstr "- Importiere Taxonomie `%s`..."
|
1659 |
+
|
1660 |
+
#: models/import/record.php:3146
|
1661 |
+
msgid "- Auto-nest enabled with separator `%s` ..."
|
1662 |
+
msgstr "- Automatische Verschachtelung aktiviert mit Trennzeichen `%s`..."
|
1663 |
+
|
1664 |
+
#: models/import/record.php:3152
|
1665 |
+
msgid "- %s %s `%s` has been skipped attempted to `Leave these taxonomies alone, update all others`..."
|
1666 |
+
msgstr "- %s %s `%s` wurde übersprungen durch den Versuch `Lasse die Taxonomien in Ruhe, aktualisiere alle anderen`..."
|
1667 |
+
|
1668 |
+
#: models/import/record.php:3157
|
1669 |
+
msgid "- %s %s `%s` has been skipped attempted to `Update only these taxonomies, leave the rest alone`..."
|
1670 |
+
msgstr "- %s %s `%s` wurde übersprungen durch den Versuch `Aktualisiere nur diese Taxonomien, lasse den Rest in ruhe`..."
|
1671 |
+
|
1672 |
+
#: models/import/record.php:3196
|
1673 |
+
msgid "- Creating parent %s %s `%s` ..."
|
1674 |
+
msgstr "- Erstelle aktuell %s %s `%s` ..."
|
1675 |
+
|
1676 |
+
#: models/import/record.php:3199
|
1677 |
+
msgid "- Creating child %s %s for %s named `%s` ..."
|
1678 |
+
msgstr "- Erstelle Kind %s %s für %s Name: `%s` ..."
|
1679 |
+
|
1680 |
+
#: models/import/record.php:3206
|
1681 |
+
msgid "- <b>WARNING</b>: `%s`"
|
1682 |
+
msgstr "- <b>WARNING</b>: `%s`"
|
1683 |
+
|
1684 |
+
#: models/import/record.php:3227
|
1685 |
+
msgid "- Attempted to create parent %s %s `%s`, duplicate detected. Importing %s to existing `%s` %s, ID %d, slug `%s` ..."
|
1686 |
+
msgstr "- Versuche Eltern Element zu erstellen %s %s `%s`, Duplikat entdeckt. Importiere %s in existierendes` %s` %s, ID %d, slug `%s`..."
|
1687 |
+
|
1688 |
+
#: models/import/record.php:3230
|
1689 |
+
msgid "- Attempted to create child %s %s `%s`, duplicate detected. Importing %s to existing `%s` %s, ID %d, slug `%s` ..."
|
1690 |
+
msgstr "- Versuche Kind Element zu erstellen %s %s `%s`, Duplikat entdeckt. Importiere %s in existierendes` %s` %s, ID %d, slug `%s`..."
|
1691 |
+
|
1692 |
+
#: models/import/record.php:3245
|
1693 |
+
msgid "- %s %s `%s` has been skipped attempted to `Do not update Taxonomies (incl. Categories and Tags)`..."
|
1694 |
+
msgstr "- %s %s `%s` wurde übersprungen durch den Versuch `Taxonomien nicht aktualisieren ( incl. Kategorien und Tags)`..."
|
1695 |
+
|
1696 |
+
#: models/import/record.php:3264
|
1697 |
+
msgid "<b>CREATED</b> `%s` `%s` (ID: %s)"
|
1698 |
+
msgstr "<b>CREATED</b> `%s` `%s` (ID: %s)"
|
1699 |
+
|
1700 |
+
#: models/import/record.php:3266
|
1701 |
+
msgid "<b>UPDATED</b> `%s` `%s` (ID: %s)"
|
1702 |
+
msgstr "<b>UPDATED</b> `%s` `%s` (ID: %s)"
|
1703 |
+
|
1704 |
+
#: models/import/record.php:3309
|
1705 |
+
msgid "<b>ACTION</b>: pmxi_saved_post"
|
1706 |
+
msgstr "<b>ACTION</b>: pmxi_saved_post"
|
1707 |
+
|
1708 |
+
#: models/import/record.php:3316
|
1709 |
+
msgid "<span class=\"processing_info\"><span class=\"created_count\">%s</span><span class=\"updated_count\">%s</span><span class=\"percents_count\">%s</span></span>"
|
1710 |
+
msgstr "<span class=\"processing_info\"><span class=\"created_count\">%s</span><span class=\"updated_count\">%s</span><span class=\"percents_count\">%s</span></span>"
|
1711 |
+
|
1712 |
+
#: models/import/record.php:3320
|
1713 |
+
msgid "<b>ACTION</b>: pmxi_after_post_import"
|
1714 |
+
msgstr "<b>ACTION</b>: pmxi_after_post_import"
|
1715 |
+
|
1716 |
+
#: models/import/record.php:3349
|
1717 |
+
msgid "Update stock status previously imported posts which are no longer actual..."
|
1718 |
+
msgstr "Aktualisiere Lager Status vorherig importierter Posts welche nicht länger aktuell sind..."
|
1719 |
+
|
1720 |
+
#: models/import/record.php:3373
|
1721 |
+
msgid "Cleaning temporary data..."
|
1722 |
+
msgstr "Reinige temporäre Daten..."
|
1723 |
+
|
1724 |
+
#: models/import/record.php:3389
|
1725 |
+
msgid "Deleting source XML file..."
|
1726 |
+
msgstr "Lösche Ursprüngliche XML Datei..."
|
1727 |
+
|
1728 |
+
#: models/import/record.php:3393
|
1729 |
+
msgid "Deleting chunks files..."
|
1730 |
+
msgstr "Lösche Block Dateien..."
|
1731 |
+
|
1732 |
+
#: models/import/record.php:3400 models/import/record.php:3409
|
1733 |
+
msgid "<b>WARNING</b>: Unable to remove %s"
|
1734 |
+
msgstr "<b>WARNING</b>: Entfernen nicht möglich %s"
|
1735 |
+
|
1736 |
+
#: models/import/record.php:3421
|
1737 |
+
msgid "Removing previously imported posts which are no longer actual..."
|
1738 |
+
msgstr "Entferne vorher importierte Posts welche nicht länger aktuell sind..."
|
1739 |
+
|
1740 |
+
#: models/import/record.php:3443
|
1741 |
+
msgid "<b>ACTION</b>: pmxi_delete_post"
|
1742 |
+
msgstr "<b>ACTION</b>: pmxi_delete_post"
|
1743 |
+
|
1744 |
+
#: models/import/record.php:3445
|
1745 |
+
msgid "Deleting posts from database"
|
1746 |
+
msgstr "Lösche Posts aus der Datenbank"
|
1747 |
+
|
1748 |
+
#: models/import/record.php:3462
|
1749 |
+
msgid "Instead of deletion user with ID `%s`, set Custom Field `%s` to value `%s`"
|
1750 |
+
msgstr ""
|
1751 |
+
|
1752 |
+
#: models/import/record.php:3466
|
1753 |
+
msgid "Instead of deletion taxonomy term with ID `%s`, set Custom Field `%s` to value `%s`"
|
1754 |
+
msgstr ""
|
1755 |
+
|
1756 |
+
#: models/import/record.php:3470
|
1757 |
+
msgid "Instead of deletion post with ID `%s`, set Custom Field `%s` to value `%s`"
|
1758 |
+
msgstr "Anstatt die Posts mit der ID `%s` zu löschen, setze Individuelles Feld `%s` auf Wert `%s`"
|
1759 |
+
|
1760 |
+
#: models/import/record.php:3482
|
1761 |
+
msgid "Instead of deletion, change post with ID `%s` status to Draft"
|
1762 |
+
msgstr "Anstatt die Posts mit der ID `%s` zu löschen, setze Status auf Entwurf"
|
1763 |
+
|
1764 |
+
#: models/import/record.php:3566
|
1765 |
+
msgid "%d Posts deleted from database. IDs (%s)"
|
1766 |
+
msgstr ""
|
1767 |
+
|
1768 |
+
#: models/import/record.php:3658
|
1769 |
+
msgid "<b>ERROR</b> Could not insert term relationship into the database"
|
1770 |
+
msgstr "<b>ERROR</b> Einfügen von Beziehungen der Begriff in die Datenbank nicht möglich"
|
1771 |
+
|
1772 |
+
#: views/admin/addons/index.php:3
|
1773 |
+
msgid "WP All Import Add-ons"
|
1774 |
+
msgstr "WP All Import Add-ons"
|
1775 |
+
|
1776 |
+
#: views/admin/addons/index.php:8
|
1777 |
+
msgid "Premium Add-ons"
|
1778 |
+
msgstr "Premium Add-ons"
|
1779 |
+
|
1780 |
+
#: views/admin/addons/index.php:20 views/admin/addons/index.php:61
|
1781 |
+
msgid "Installed"
|
1782 |
+
msgstr "Installiert"
|
1783 |
+
|
1784 |
+
#: views/admin/addons/index.php:22
|
1785 |
+
msgid "Free Version Installed"
|
1786 |
+
msgstr "Gratis Version Installiert"
|
1787 |
+
|
1788 |
+
#: views/admin/addons/index.php:29 views/admin/addons/index.php:70
|
1789 |
+
msgid " required"
|
1790 |
+
msgstr "Benötigt"
|
1791 |
+
|
1792 |
+
#: views/admin/addons/index.php:36 views/admin/addons/index.php:77
|
1793 |
+
#: views/admin/addons/index.php:82 views/admin/import/index.php:115
|
1794 |
+
msgid "Download"
|
1795 |
+
msgstr "Herunterladen"
|
1796 |
+
|
1797 |
+
#: views/admin/addons/index.php:41
|
1798 |
+
msgid "Purchase & Install"
|
1799 |
+
msgstr "Bezahlen & Installieren"
|
1800 |
+
|
1801 |
+
#: views/admin/addons/index.php:49
|
1802 |
+
msgid "Free Add-ons"
|
1803 |
+
msgstr "Gratis Add-ons"
|
1804 |
+
|
1805 |
+
#: views/admin/addons/index.php:63
|
1806 |
+
msgid "Paid Version Installed"
|
1807 |
+
msgstr "Bezahlte Version Installiert"
|
1808 |
+
|
1809 |
+
#: views/admin/help/index.php:1
|
1810 |
+
msgid "WP All Import Help"
|
1811 |
+
msgstr "WP All Import Hilfe"
|
1812 |
+
|
1813 |
+
#: views/admin/history/index.php:16 views/admin/history/index.php:18
|
1814 |
+
#: views/admin/history/index.php:20
|
1815 |
+
msgid "%s - Import History"
|
1816 |
+
msgstr "%s - Import Chronik"
|
1817 |
+
|
1818 |
+
#: views/admin/history/index.php:32 views/admin/manage/index.php:27
|
1819 |
+
msgid "ID"
|
1820 |
+
msgstr "ID"
|
1821 |
+
|
1822 |
+
#: views/admin/history/index.php:34
|
1823 |
+
msgid "Run Time"
|
1824 |
+
msgstr "Laufzeit"
|
1825 |
+
|
1826 |
+
#: views/admin/history/index.php:35
|
1827 |
+
msgid "Type"
|
1828 |
+
msgstr "Typ"
|
1829 |
+
|
1830 |
+
#: views/admin/history/index.php:36 views/admin/manage/index.php:30
|
1831 |
+
msgid "Summary"
|
1832 |
+
msgstr "Zusammenfassung"
|
1833 |
+
|
1834 |
+
#: views/admin/history/index.php:42
|
1835 |
+
msgid "Scheduling Status"
|
1836 |
+
msgstr "Planung Status"
|
1837 |
+
|
1838 |
+
#: views/admin/history/index.php:42
|
1839 |
+
msgid "triggered"
|
1840 |
+
msgstr "ausgelöst"
|
1841 |
+
|
1842 |
+
#: views/admin/history/index.php:42
|
1843 |
+
msgid "and processing"
|
1844 |
+
msgstr "und bearbeitend"
|
1845 |
+
|
1846 |
+
#: views/admin/history/index.php:52 views/admin/history/index.php:226
|
1847 |
+
#: views/admin/manage/index.php:44 views/admin/manage/index.php:359
|
1848 |
+
msgid "Bulk Actions"
|
1849 |
+
msgstr "Massen Aktion"
|
1850 |
+
|
1851 |
+
#: views/admin/history/index.php:53 views/admin/history/index.php:228
|
1852 |
+
#: views/admin/manage/index.php:45 views/admin/manage/index.php:192
|
1853 |
+
#: views/admin/manage/index.php:361
|
1854 |
+
msgid "Delete"
|
1855 |
+
msgstr "Löschen"
|
1856 |
+
|
1857 |
+
#: views/admin/history/index.php:55 views/admin/history/index.php:234
|
1858 |
+
#: views/admin/import/element.php:97 views/admin/manage/index.php:47
|
1859 |
+
#: views/admin/manage/index.php:367
|
1860 |
+
msgid "Apply"
|
1861 |
+
msgstr "Anwenden"
|
1862 |
+
|
1863 |
+
#: views/admin/history/index.php:61 views/admin/manage/index.php:53
|
1864 |
+
msgid "Displaying %s–%s of %s"
|
1865 |
+
msgstr "Zeige %s–%s von %s"
|
1866 |
+
|
1867 |
+
#: views/admin/history/index.php:108
|
1868 |
+
msgid "No previous history found."
|
1869 |
+
msgstr "Keine vorherige Chronik gefunden."
|
1870 |
+
|
1871 |
+
#: views/admin/history/index.php:161
|
1872 |
+
msgid "manual run"
|
1873 |
+
msgstr "Manueller Lauf"
|
1874 |
+
|
1875 |
+
#: views/admin/history/index.php:164
|
1876 |
+
msgid "continue run"
|
1877 |
+
msgstr "Lauf fortsetzen"
|
1878 |
+
|
1879 |
+
#: views/admin/history/index.php:189
|
1880 |
+
msgid "Download Log"
|
1881 |
+
msgstr "Download Log"
|
1882 |
+
|
1883 |
+
#: views/admin/history/index.php:193
|
1884 |
+
msgid "Log Unavailable"
|
1885 |
+
msgstr "Log nicht verfügbar"
|
1886 |
+
|
1887 |
+
#: views/admin/history/index.php:230 views/admin/manage/index.php:363
|
1888 |
+
msgid "Restore"
|
1889 |
+
msgstr "Wiederherstellen"
|
1890 |
+
|
1891 |
+
#: views/admin/history/index.php:231 views/admin/manage/index.php:364
|
1892 |
+
msgid "Delete Permanently"
|
1893 |
+
msgstr "Permanent Löschen"
|
1894 |
+
|
1895 |
+
#: views/admin/history/index.php:238 views/admin/import/confirm.php:359
|
1896 |
+
#: views/admin/import/element.php:224 views/admin/import/index.php:388
|
1897 |
+
#: views/admin/import/options.php:104 views/admin/import/process.php:124
|
1898 |
+
#: views/admin/import/template.php:234 views/admin/manage/index.php:372
|
1899 |
+
#: views/admin/manage/scheduling.php:62 views/admin/settings/index.php:230
|
1900 |
+
msgid "Created by"
|
1901 |
+
msgstr "Erstellt von"
|
1902 |
+
|
1903 |
+
#: views/admin/import/confirm.php:12 views/admin/import/element.php:9
|
1904 |
+
#: views/admin/import/index.php:44 views/admin/import/options.php:19
|
1905 |
+
#: views/admin/import/process.php:9 views/admin/import/template.php:10
|
1906 |
+
msgid "Import XML / CSV"
|
1907 |
+
msgstr "Importiere XML / CSV"
|
1908 |
+
|
1909 |
+
#: views/admin/import/confirm.php:15 views/admin/import/element.php:12
|
1910 |
+
#: views/admin/import/index.php:47 views/admin/import/options.php:22
|
1911 |
+
#: views/admin/import/process.php:12 views/admin/import/template.php:13
|
1912 |
+
msgid "Support"
|
1913 |
+
msgstr "Support"
|
1914 |
+
|
1915 |
+
#: views/admin/import/confirm.php:15 views/admin/import/element.php:12
|
1916 |
+
#: views/admin/import/index.php:47 views/admin/import/options.php:22
|
1917 |
+
#: views/admin/import/process.php:12 views/admin/import/template.php:13
|
1918 |
+
msgid "Documentation"
|
1919 |
+
msgstr "Dokumentation"
|
1920 |
+
|
1921 |
+
#: views/admin/import/confirm.php:45 views/admin/import/options.php:62
|
1922 |
+
msgid "This URL no longer returns an import file"
|
1923 |
+
msgstr ""
|
1924 |
+
|
1925 |
+
#: views/admin/import/confirm.php:46 views/admin/import/options.php:63
|
1926 |
+
msgid "You must provide a URL that returns a valid import file."
|
1927 |
+
msgstr ""
|
1928 |
+
|
1929 |
+
#: views/admin/import/confirm.php:48 views/admin/import/index.php:362
|
1930 |
+
#: views/admin/import/options.php:65
|
1931 |
+
#: views/admin/import/options/_import_file.php:46
|
1932 |
+
msgid "There's a problem with your import file"
|
1933 |
+
msgstr ""
|
1934 |
+
|
1935 |
+
#: views/admin/import/confirm.php:49 views/admin/import/options.php:66
|
1936 |
+
msgid "It has changed and is not compatible with this import template."
|
1937 |
+
msgstr ""
|
1938 |
+
|
1939 |
+
#: views/admin/import/confirm.php:72
|
1940 |
+
msgid "Your file is all set up!"
|
1941 |
+
msgstr "Ihre Datei ist bereit!"
|
1942 |
+
|
1943 |
+
#: views/admin/import/confirm.php:74
|
1944 |
+
msgid "This import did not finish successfuly last time it was run."
|
1945 |
+
msgstr "Dieser Import wurde beim letzten mal nicht erfolgreich beendet."
|
1946 |
+
|
1947 |
+
#: views/admin/import/confirm.php:78
|
1948 |
+
msgid "Check the settings below, then click the green button to run the import."
|
1949 |
+
msgstr "Überprüfen Sie die Einstellungen unten, und klicken Sie auf den grünen Button um den Import zu starten."
|
1950 |
+
|
1951 |
+
#: views/admin/import/confirm.php:80
|
1952 |
+
msgid "You can attempt to continue where it left off."
|
1953 |
+
msgstr "Versuchen Sie an der letzten Stelle fortzusetzen."
|
1954 |
+
|
1955 |
+
#: views/admin/import/confirm.php:88 views/admin/import/confirm.php:348
|
1956 |
+
msgid "Confirm & Run Import"
|
1957 |
+
msgstr "Bestätigen & Import starten"
|
1958 |
+
|
1959 |
+
#: views/admin/import/confirm.php:98
|
1960 |
+
msgid "Continue from the last run"
|
1961 |
+
msgstr "Vom letzten Lauf fortsetzen"
|
1962 |
+
|
1963 |
+
#: views/admin/import/confirm.php:102
|
1964 |
+
msgid "Run from the beginning"
|
1965 |
+
msgstr "Starte von Beginn"
|
1966 |
+
|
1967 |
+
#: views/admin/import/confirm.php:105 views/admin/import/process.php:99
|
1968 |
+
msgid "Continue Import"
|
1969 |
+
msgstr "Import Fortsetzen"
|
1970 |
+
|
1971 |
+
#: views/admin/import/confirm.php:107
|
1972 |
+
msgid "Run entire import from the beginning"
|
1973 |
+
msgstr "Starte gesamten Import von Vorne"
|
1974 |
+
|
1975 |
+
#: views/admin/import/confirm.php:127
|
1976 |
+
msgid "Import Summary"
|
1977 |
+
msgstr "Import Zusammenfassung"
|
1978 |
+
|
1979 |
+
#: views/admin/import/confirm.php:133
|
1980 |
+
msgid "Your max_execution_time is %s seconds"
|
1981 |
+
msgstr "Ihre max_execution_time ist %s Sekunden"
|
1982 |
+
|
1983 |
+
#: views/admin/import/confirm.php:157
|
1984 |
+
msgid "WP All Import will import the file <span style=\"color:#40acad;\">%s</span>, which is <span style=\"color:#000; font-weight:bold;\">%s</span>"
|
1985 |
+
msgstr "WP All Import wird die Datei <span style=\"color:#40acad;\">%s</span> importieren, welche <span style=\"color:#000; font-weight:bold;\">%s</span>ist."
|
1986 |
+
|
1987 |
+
#: views/admin/import/confirm.php:157
|
1988 |
+
msgid "undefined"
|
1989 |
+
msgstr "Undefiniert"
|
1990 |
+
|
1991 |
+
#: views/admin/import/confirm.php:160
|
1992 |
+
msgid "WP All Import will process the records matching the XPath expression: <span style=\"color:#46ba69; font-weight:bold;\">%s</span>"
|
1993 |
+
msgstr "WP All Import bearbeitet die Datensätze die mit folgendem XPath Ausdruck: <span style=\"color:#46ba69; font-weight:bold;\">%s</span>"
|
1994 |
+
|
1995 |
+
#: views/admin/import/confirm.php:162
|
1996 |
+
msgid "WP All Import will process <span style=\"color:#46ba69; font-weight:bold;\">%s</span> rows in your file"
|
1997 |
+
msgstr "WP All Import bearbeitet <span style=\"color:#46ba69; font-weight:bold;\">%s</span> Zeilen in Ihrer Datei"
|
1998 |
+
|
1999 |
+
#: views/admin/import/confirm.php:164
|
2000 |
+
msgid "WP All Import will process all %s <span style=\"color:#46ba69; font-weight:bold;\"><%s></span> records in your file"
|
2001 |
+
msgstr "WP All Import bearbeitet alle %s <span style=\"color:#46ba69; font-weight:bold;\"><%s></span> Datensätze in Ihrer Datei"
|
2002 |
+
|
2003 |
+
#: views/admin/import/confirm.php:168
|
2004 |
+
msgid "WP All Import will process only specified records: %s"
|
2005 |
+
msgstr "WP All Import bearbeitet nur die spezifizierten Datensätze: %s"
|
2006 |
+
|
2007 |
+
#: views/admin/import/confirm.php:175
|
2008 |
+
msgid "Your unique key is <span style=\"color:#000; font-weight:bold;\">%s</span>"
|
2009 |
+
msgstr "Ihr einzigartiger Schlüssel ist <span style=\"color:#000; font-weight:bold;\">%s</span>"
|
2010 |
+
|
2011 |
+
#: views/admin/import/confirm.php:179
|
2012 |
+
msgid "%ss previously imported by this import (ID: %s) with the same unique key will be updated."
|
2013 |
+
msgstr "%ss vorher importiert von diesem Import (ID: %s) mit dem selben einzigartigen Schlüssel werden aktualisiert."
|
2014 |
+
|
2015 |
+
#: views/admin/import/confirm.php:182
|
2016 |
+
msgid "%ss previously imported by this import (ID: %s) that aren't present for this run of the import will be deleted."
|
2017 |
+
msgstr "%ss vorher importiert von diesem Import (ID: %s) die nicht präsent sind in diesem Import lauf, werden gelöscht."
|
2018 |
+
|
2019 |
+
#: views/admin/import/confirm.php:186
|
2020 |
+
msgid "%ss previously imported by this import (ID: %s) that aren't present for this run of the import will be set to draft."
|
2021 |
+
msgstr "%ss vorher importiert von diesem Import (ID: %s) die nicht präsent sind in diesem Import lauf, werden auf Entwurf gesetzt."
|
2022 |
+
|
2023 |
+
#: views/admin/import/confirm.php:190
|
2024 |
+
msgid "Records with unique keys that don't match any unique keys from %ss created by previous runs of this import (ID: %s) will be created."
|
2025 |
+
msgstr "Datensätze mit eindeutigem Schlüssel, die zu keinem Schlüssel von %ss passen, erstellt von früheren Durchläufen dieses Import (ID:%s) werden erstellt."
|
2026 |
+
|
2027 |
+
#: views/admin/import/confirm.php:204
|
2028 |
+
msgid "WP All Import will merge data into existing %ss, matching the following criteria: %s"
|
2029 |
+
msgstr "WP All Import werden die Daten in bestehende %ss, mit folgenden Suchkriterien zusammenzuführen:%s"
|
2030 |
+
|
2031 |
+
#: views/admin/import/confirm.php:207
|
2032 |
+
msgid "Existing data will be updated with the data specified in this import."
|
2033 |
+
msgstr "Bestehende Daten werden mit den in diesem Import angegebenen Daten aktualisiert werden."
|
2034 |
+
|
2035 |
+
#: views/admin/import/confirm.php:210
|
2036 |
+
msgid "Next %s data will be updated, <strong>all other data will be left alone</strong>"
|
2037 |
+
msgstr "Nächste %s Daten werden aktualisiert, <strong>alle anderen Daten werden in Ruhe gelassen</strong>"
|
2038 |
+
|
2039 |
+
#: views/admin/import/confirm.php:214
|
2040 |
+
msgid "status"
|
2041 |
+
msgstr "Status"
|
2042 |
+
|
2043 |
+
#: views/admin/import/confirm.php:217
|
2044 |
+
msgid "title"
|
2045 |
+
msgstr "Titel"
|
2046 |
+
|
2047 |
+
#: views/admin/import/confirm.php:220
|
2048 |
+
msgid "slug"
|
2049 |
+
msgstr "Slug"
|
2050 |
+
|
2051 |
+
#: views/admin/import/confirm.php:223
|
2052 |
+
msgid "content"
|
2053 |
+
msgstr "Inhalt"
|
2054 |
+
|
2055 |
+
#: views/admin/import/confirm.php:226
|
2056 |
+
msgid "excerpt"
|
2057 |
+
msgstr "Ausschnitt"
|
2058 |
+
|
2059 |
+
#: views/admin/import/confirm.php:229
|
2060 |
+
msgid "dates"
|
2061 |
+
msgstr "Datum"
|
2062 |
+
|
2063 |
+
#: views/admin/import/confirm.php:232
|
2064 |
+
msgid "menu order"
|
2065 |
+
msgstr "Menü Reihenfolge"
|
2066 |
+
|
2067 |
+
#: views/admin/import/confirm.php:235
|
2068 |
+
msgid "parent post"
|
2069 |
+
msgstr "Eltern post"
|
2070 |
+
|
2071 |
+
#: views/admin/import/confirm.php:238
|
2072 |
+
msgid "post type"
|
2073 |
+
msgstr ""
|
2074 |
+
|
2075 |
+
#: views/admin/import/confirm.php:241
|
2076 |
+
msgid "attachments"
|
2077 |
+
msgstr "Anhänge"
|
2078 |
+
|
2079 |
+
#: views/admin/import/confirm.php:248
|
2080 |
+
msgid "all advanced custom fields"
|
2081 |
+
msgstr "Alle erweiterte benutzerdefinierte Felder"
|
2082 |
+
|
2083 |
+
#: views/admin/import/confirm.php:251
|
2084 |
+
msgid "only ACF presented in import options"
|
2085 |
+
msgstr "Nur ACF präsent in den Import Optionen"
|
2086 |
+
|
2087 |
+
#: views/admin/import/confirm.php:254
|
2088 |
+
msgid "only these ACF : %s"
|
2089 |
+
msgstr "Nur diese ACF: %s"
|
2090 |
+
|
2091 |
+
#: views/admin/import/confirm.php:257
|
2092 |
+
msgid "all ACF except these: %s"
|
2093 |
+
msgstr "Alle ACF außer diese: %s"
|
2094 |
+
|
2095 |
+
#: views/admin/import/confirm.php:267
|
2096 |
+
msgid "old images will be updated with new"
|
2097 |
+
msgstr "Alte Bilder werden aktualisiert"
|
2098 |
+
|
2099 |
+
#: views/admin/import/confirm.php:270
|
2100 |
+
msgid "only new images will be added"
|
2101 |
+
msgstr "Nur neue Bilder werden hinzugefügt"
|
2102 |
+
|
2103 |
+
#: views/admin/import/confirm.php:280
|
2104 |
+
msgid "all custom fields"
|
2105 |
+
msgstr "Alle individuellen Felder"
|
2106 |
+
|
2107 |
+
#: views/admin/import/confirm.php:283
|
2108 |
+
msgid "only these custom fields : %s"
|
2109 |
+
msgstr "Nur diese individuellen Felder: %s"
|
2110 |
+
|
2111 |
+
#: views/admin/import/confirm.php:286
|
2112 |
+
msgid "all cusom fields except these: %s"
|
2113 |
+
msgstr "Alle individuellen Felder außer diese: %s"
|
2114 |
+
|
2115 |
+
#: views/admin/import/confirm.php:296
|
2116 |
+
msgid "remove existing taxonomies, add new taxonomies"
|
2117 |
+
msgstr "Entferne bestehende Taxonomien, füge neue hinzu"
|
2118 |
+
|
2119 |
+
#: views/admin/import/confirm.php:299
|
2120 |
+
msgid "only add new"
|
2121 |
+
msgstr "Nur neue hinzufügen"
|
2122 |
+
|
2123 |
+
#: views/admin/import/confirm.php:302
|
2124 |
+
msgid "update only these taxonomies: %s , leave the rest alone"
|
2125 |
+
msgstr "Aktualisiere nur diese Taxonomien: %s, lasse den Rest in Ruhe"
|
2126 |
+
|
2127 |
+
#: views/admin/import/confirm.php:305
|
2128 |
+
msgid "leave these taxonomies: %s alone, update all others"
|
2129 |
+
msgstr "Lasse diese Taxonomien in Ruhe: %s, aktualisiere alle anderen"
|
2130 |
+
|
2131 |
+
#: views/admin/import/confirm.php:316
|
2132 |
+
msgid "New %ss will be created from records that don't match the above criteria."
|
2133 |
+
msgstr "Neue %ss werden erstellt von den Datensätzen die nicht den oberen Kriterien entsprechen."
|
2134 |
+
|
2135 |
+
#: views/admin/import/confirm.php:322
|
2136 |
+
msgid "High-Speed, Small File Processing enabled. Your import will fail if it takes longer than your server's max_execution_time."
|
2137 |
+
msgstr "High-Speed, Bearbeitung kleiner Dateien aktiviert. Ihr Import wird fehlschlagen wenn es länger dauert als Ihr Server max_execution_time."
|
2138 |
+
|
2139 |
+
#: views/admin/import/confirm.php:324
|
2140 |
+
msgid "Piece By Piece Processing enabled. %s records will be processed each iteration. If it takes longer than your server's max_execution_time to process %s records, your import will fail."
|
2141 |
+
msgstr "Stück für Stück Bearbeitung aktiviert. %s Datensätze werden mit jedem Durchlauf bearbeitet. Wenn es länger dauert als Ihr Server max_execution_time benötigt für %s Datensätze, wird Ihr Import fehlschlagen."
|
2142 |
+
|
2143 |
+
#: views/admin/import/confirm.php:328
|
2144 |
+
msgid "Your file will be split into %s records chunks before processing."
|
2145 |
+
msgstr "Ihre Datei wird geteilt in %s Datensatz Blöcke vor der Bearbeitung."
|
2146 |
+
|
2147 |
+
#: views/admin/import/confirm.php:332
|
2148 |
+
msgid "do_action calls will be disabled in wp_insert_post and wp_insert_attachment during the import."
|
2149 |
+
msgstr "do_action Aufrufe werden deaktiviert in wp_insert_post und wp_insert_attachment während des Imports."
|
2150 |
+
|
2151 |
+
#: views/admin/import/confirm.php:351
|
2152 |
+
msgid "or go back to Step 4"
|
2153 |
+
msgstr "oder gehe zurück zu Schritt 4"
|
2154 |
+
|
2155 |
+
#: views/admin/import/confirm.php:353
|
2156 |
+
msgid "or go back to Manage Imports"
|
2157 |
+
msgstr "oder gehe zurück zu Imports Verwalten"
|
2158 |
+
|
2159 |
+
#: views/admin/import/element.php:34 views/admin/import/element.php:221
|
2160 |
+
msgid "Continue to Step 3"
|
2161 |
+
msgstr "Weiter zu Schritt 3"
|
2162 |
+
|
2163 |
+
#: views/admin/import/element.php:47
|
2164 |
+
msgid "What element are you looking for?"
|
2165 |
+
msgstr "Welches Element suchen Sie?"
|
2166 |
+
|
2167 |
+
#: views/admin/import/element.php:76
|
2168 |
+
msgid "of <span class=\"wpallimport-elements-count-info\">%s</span>"
|
2169 |
+
msgstr "von <span class=\"wpallimport-elements-count-info\">%s</span>"
|
2170 |
+
|
2171 |
+
#: views/admin/import/element.php:94
|
2172 |
+
msgid "Set delimiter for CSV fields:"
|
2173 |
+
msgstr "Setze Beschränkung für CSV Felder:"
|
2174 |
+
|
2175 |
+
#: views/admin/import/element.php:115
|
2176 |
+
msgid "Each <span><<span class=\"root_element\">%s</span>></span> element will be imported into a <span>New %s</span>"
|
2177 |
+
msgstr "Jedes <span><<span class=\"root_element\">%s</span>></span> Element wird importiert in ein <span>neues %s</span>"
|
2178 |
+
|
2179 |
+
#: views/admin/import/element.php:119
|
2180 |
+
msgid "Data in <span><<span class=\"root_element\">%s</span>></span> elements will be imported to <span>%s</span>"
|
2181 |
+
msgstr "Daten in <span><<span class=\"root_element\">%s</span>></span> Element werden Importiert in <span>%s</span>"
|
2182 |
+
|
2183 |
+
#: views/admin/import/element.php:124
|
2184 |
+
msgid "This doesn't look right, try manually selecting a different root element on the left."
|
2185 |
+
msgstr "Das sieht nicht korrekt aus, versuchen Sie auf der linken Seite manuell ein anderes Wurzelelement zu wählen."
|
2186 |
+
|
2187 |
+
#: views/admin/import/element.php:136
|
2188 |
+
msgid "Add Filtering Options"
|
2189 |
+
msgstr "Füge Filteroptionen hinzu"
|
2190 |
+
|
2191 |
+
#: views/admin/import/element.php:143 views/admin/import/element.php:195
|
2192 |
+
msgid "Element"
|
2193 |
+
msgstr "Element"
|
2194 |
+
|
2195 |
+
#: views/admin/import/element.php:144 views/admin/import/element.php:196
|
2196 |
+
msgid "Rule"
|
2197 |
+
msgstr "Regel"
|
2198 |
+
|
2199 |
+
#: views/admin/import/element.php:145 views/admin/import/element.php:197
|
2200 |
+
#: views/admin/import/options/_reimport_options.php:42
|
2201 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:46
|
2202 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:125
|
2203 |
+
#: views/admin/import/options/_reimport_template.php:107
|
2204 |
+
#: views/admin/import/template/_custom_fields_template.php:52
|
2205 |
+
#: views/admin/import/template/_custom_fields_template.php:86
|
2206 |
+
#: views/admin/import/template/_custom_fields_template.php:295
|
2207 |
+
#: views/admin/import/template/_custom_fields_template.php:429
|
2208 |
+
#: views/admin/import/template/_term_meta_template.php:52
|
2209 |
+
#: views/admin/import/template/_term_meta_template.php:86
|
2210 |
+
#: views/admin/import/template/_term_meta_template.php:295
|
2211 |
+
#: views/admin/import/template/_term_meta_template.php:429
|
2212 |
+
msgid "Value"
|
2213 |
+
msgstr "Wert"
|
2214 |
+
|
2215 |
+
#: views/admin/import/element.php:151
|
2216 |
+
msgid "Select Element"
|
2217 |
+
msgstr "Wähle Element"
|
2218 |
+
|
2219 |
+
#: views/admin/import/element.php:157
|
2220 |
+
msgid "Select Rule"
|
2221 |
+
msgstr "Wähle Regel"
|
2222 |
+
|
2223 |
+
#: views/admin/import/element.php:158
|
2224 |
+
msgid "equals"
|
2225 |
+
msgstr "gleich"
|
2226 |
+
|
2227 |
+
#: views/admin/import/element.php:159
|
2228 |
+
msgid "not equals"
|
2229 |
+
msgstr "ungleich"
|
2230 |
+
|
2231 |
+
#: views/admin/import/element.php:160
|
2232 |
+
msgid "greater than"
|
2233 |
+
msgstr "größer als"
|
2234 |
+
|
2235 |
+
#: views/admin/import/element.php:161
|
2236 |
+
msgid "equals or greater than"
|
2237 |
+
msgstr "gleich oder größer als"
|
2238 |
+
|
2239 |
+
#: views/admin/import/element.php:162
|
2240 |
+
msgid "less than"
|
2241 |
+
msgstr "weniger als"
|
2242 |
+
|
2243 |
+
#: views/admin/import/element.php:163
|
2244 |
+
msgid "equals or less than"
|
2245 |
+
msgstr "gleich oder weniger als"
|
2246 |
+
|
2247 |
+
#: views/admin/import/element.php:164
|
2248 |
+
msgid "contains"
|
2249 |
+
msgstr "beinhaltet"
|
2250 |
+
|
2251 |
+
#: views/admin/import/element.php:165
|
2252 |
+
msgid "not contains"
|
2253 |
+
msgstr "beinhaltet nicht"
|
2254 |
+
|
2255 |
+
#: views/admin/import/element.php:166
|
2256 |
+
msgid "is empty"
|
2257 |
+
msgstr "ist leer"
|
2258 |
+
|
2259 |
+
#: views/admin/import/element.php:167
|
2260 |
+
msgid "is not empty"
|
2261 |
+
msgstr "ist nicht leer"
|
2262 |
+
|
2263 |
+
#: views/admin/import/element.php:174
|
2264 |
+
msgid "Add Rule"
|
2265 |
+
msgstr "Regel hinzufügen"
|
2266 |
+
|
2267 |
+
#: views/admin/import/element.php:183
|
2268 |
+
#: views/admin/import/options/_settings_template.php:174
|
2269 |
+
msgid "XPath"
|
2270 |
+
msgstr "XPath"
|
2271 |
+
|
2272 |
+
#: views/admin/import/element.php:198
|
2273 |
+
msgid "Condition"
|
2274 |
+
msgstr "Bedingung"
|
2275 |
+
|
2276 |
+
#: views/admin/import/element.php:203
|
2277 |
+
msgid "No filtering options. Add filtering options to only import records matching some specified criteria."
|
2278 |
+
msgstr "Keine Filteroptionen. Füge Filteroptionen hinzu um nur Datensätze zu importieren, die spezifische Kriterien erfüllen."
|
2279 |
+
|
2280 |
+
#: views/admin/import/element.php:208
|
2281 |
+
msgid "Apply Filters To XPath"
|
2282 |
+
msgstr "Wende Filter für XPath an"
|
2283 |
+
|
2284 |
+
#: views/admin/import/element.php:217
|
2285 |
+
msgid "Back to Step 1"
|
2286 |
+
msgstr "Zurück zu Schritt 1"
|
2287 |
+
|
2288 |
+
#: views/admin/import/evaluate.php:3
|
2289 |
+
msgid "<span class=\"matches_count\">%s</span> <strong>%s</strong> will be imported"
|
2290 |
+
msgstr "<span class=\"matches_count\">%s</span> <strong>%s</strong> wird importiert"
|
2291 |
+
|
2292 |
+
#: views/admin/import/evaluate.php:3
|
2293 |
+
msgid "row"
|
2294 |
+
msgid_plural "rows"
|
2295 |
+
msgstr[0] ""
|
2296 |
+
msgstr[1] ""
|
2297 |
+
|
2298 |
+
#: views/admin/import/evaluate.php:5
|
2299 |
+
msgid "<span class=\"matches_count\">%s</span> <strong>%s</strong> %s will be imported"
|
2300 |
+
msgstr "<span class=\"matches_count\">%s</span> <strong>%s</strong> %s wird importiert"
|
2301 |
+
|
2302 |
+
#: views/admin/import/evaluate.php:7
|
2303 |
+
msgid "Click an element to select it, or scroll down to add filtering options."
|
2304 |
+
msgstr "Klicken Sie auf ein Element um es auszuwählen, oder scrollen Sie runter um Filteroptionen hinzuzufügen."
|
2305 |
+
|
2306 |
+
#: views/admin/import/evaluate.php:9
|
2307 |
+
#: views/admin/import/evaluate_variations.php:5
|
2308 |
+
msgid "<strong>Note</strong>: Highlighting is turned off since can be very slow on large sets of elements."
|
2309 |
+
msgstr "<strong>Note</strong>: Hervorhebung ist ausgeschaltet, da es bei großer Elementzahl verlangsamen kann."
|
2310 |
+
|
2311 |
+
#: views/admin/import/evaluate_variations.php:3
|
2312 |
+
msgid "Current selection matches <span class=\"matches_count\">%s</span> %s."
|
2313 |
+
msgstr "Gegenwärtige Selektion passt bei <span class=\"matches_count\">%s</span> %s."
|
2314 |
+
|
2315 |
+
#: views/admin/import/evaluate_variations.php:14
|
2316 |
+
msgid "#<strong>%s</strong> out of <strong>%s</strong>"
|
2317 |
+
msgstr "#<strong>%s</strong> aus <strong>%s</strong>"
|
2318 |
+
|
2319 |
+
#: views/admin/import/index.php:69
|
2320 |
+
msgid "First, specify how you want to import your data"
|
2321 |
+
msgstr "Wählen Sie zuerst wie Sie die Daten importieren wollen"
|
2322 |
+
|
2323 |
+
#: views/admin/import/index.php:71
|
2324 |
+
msgid "First, specify previously exported file"
|
2325 |
+
msgstr "Spezifizieren Sie zuerst Ihre exportierte Datei"
|
2326 |
+
|
2327 |
+
#: views/admin/import/index.php:72
|
2328 |
+
msgid "The data in this file can be modified, but the structure of the file (column/element names) should not change."
|
2329 |
+
msgstr "Die Daten in dieser Datei können geändert werden, aber die Struktur (Spalte/Element Namen) sollten sich nicht ändern."
|
2330 |
+
|
2331 |
+
#: views/admin/import/index.php:76
|
2332 |
+
#: views/admin/import/options/_import_file.php:74
|
2333 |
+
msgid "Upload a file"
|
2334 |
+
msgstr "Datei hochladen"
|
2335 |
+
|
2336 |
+
#: views/admin/import/index.php:80
|
2337 |
+
#: views/admin/import/options/_import_file.php:78
|
2338 |
+
msgid "Download from URL"
|
2339 |
+
msgstr "Download von URL"
|
2340 |
+
|
2341 |
+
#: views/admin/import/index.php:84
|
2342 |
+
#: views/admin/import/options/_import_file.php:82
|
2343 |
+
msgid "Use existing file"
|
2344 |
+
msgstr "Nutze bestehende Datei"
|
2345 |
+
|
2346 |
+
#: views/admin/import/index.php:94
|
2347 |
+
#: views/admin/import/options/_import_file.php:92
|
2348 |
+
msgid "Click here to select file from your computer..."
|
2349 |
+
msgstr "Hier klicken um Datei von Ihrem Computer zu wählen..."
|
2350 |
+
|
2351 |
+
#: views/admin/import/index.php:97
|
2352 |
+
msgid "Upload Complete"
|
2353 |
+
msgstr ""
|
2354 |
+
|
2355 |
+
#: views/admin/import/index.php:119
|
2356 |
+
msgid "<strong>Hint:</strong> After you create this import, you can schedule it to run automatically, on a pre-defined schedule, with cron jobs. If anything in your file has changed, WP All Import can update your site with the changed data automatically."
|
2357 |
+
msgstr "<strong>Hint:</strong> Nachdem Sie diesen Import erstellt haben, können Sie mit cron Jobs planen ihn automatisch auszuführen. Sollte sich in Ihrer Datei etwas ändern, kann WP All Import Ihre Seite mit den geänderten Daten automatisch aktualisieren."
|
2358 |
+
|
2359 |
+
#: views/admin/import/index.php:159
|
2360 |
+
#: views/admin/import/options/_import_file.php:144
|
2361 |
+
msgid "Select a previously uploaded file"
|
2362 |
+
msgstr "Wählen Sie eine vorher Hochgeladene Datei"
|
2363 |
+
|
2364 |
+
#: views/admin/import/index.php:168
|
2365 |
+
#: views/admin/import/options/_import_file.php:156
|
2366 |
+
msgid "Upload files to <strong>%s</strong> and they will appear in this list"
|
2367 |
+
msgstr "Laden Sie eine Datei in <strong>%s</strong> hoch und sie erscheint in dieser Liste"
|
2368 |
+
|
2369 |
+
#: views/admin/import/index.php:183
|
2370 |
+
msgid "Import data from this file into..."
|
2371 |
+
msgstr "Importiere Daten von dieser Datei in..."
|
2372 |
+
|
2373 |
+
#: views/admin/import/index.php:187
|
2374 |
+
msgid "New Items"
|
2375 |
+
msgstr "Neue Artikel"
|
2376 |
+
|
2377 |
+
#: views/admin/import/index.php:191
|
2378 |
+
msgid "Existing Items"
|
2379 |
+
msgstr "Bestehende Artikel"
|
2380 |
+
|
2381 |
+
#: views/admin/import/index.php:214
|
2382 |
+
msgid "Taxonomies"
|
2383 |
+
msgstr ""
|
2384 |
+
|
2385 |
+
#: views/admin/import/index.php:218
|
2386 |
+
#: views/admin/import/options/_settings_template.php:81
|
2387 |
+
msgid "Users"
|
2388 |
+
msgstr ""
|
2389 |
+
|
2390 |
+
#: views/admin/import/index.php:244
|
2391 |
+
msgid "Create new"
|
2392 |
+
msgstr "Erstelle neue"
|
2393 |
+
|
2394 |
+
#: views/admin/import/index.php:245
|
2395 |
+
msgid "Import to existing"
|
2396 |
+
msgstr "Importiere in bestehende"
|
2397 |
+
|
2398 |
+
#: views/admin/import/index.php:248
|
2399 |
+
msgid "for each record in my data file."
|
2400 |
+
msgstr "für jeden Datensatz in der Datei."
|
2401 |
+
|
2402 |
+
#: views/admin/import/index.php:249
|
2403 |
+
msgid "and update some or all of their data."
|
2404 |
+
msgstr "und aktualisiere einige von den Daten."
|
2405 |
+
|
2406 |
+
#: views/admin/import/index.php:298
|
2407 |
+
msgid "Select taxonomy to import into..."
|
2408 |
+
msgstr ""
|
2409 |
+
|
2410 |
+
#: views/admin/import/index.php:300
|
2411 |
+
#: views/admin/import/options/_settings_template.php:56
|
2412 |
+
msgid "Select Taxonomy"
|
2413 |
+
msgstr ""
|
2414 |
+
|
2415 |
+
#: views/admin/import/index.php:309
|
2416 |
+
#: views/admin/import/options/_settings_template.php:151
|
2417 |
+
msgid "The User Import Add-On is Required to Import Users"
|
2418 |
+
msgstr ""
|
2419 |
+
|
2420 |
+
#: views/admin/import/index.php:310
|
2421 |
+
#: views/admin/import/options/_settings_template.php:152
|
2422 |
+
msgid "Purchase the User Import Add-On"
|
2423 |
+
msgstr ""
|
2424 |
+
|
2425 |
+
#: views/admin/import/index.php:315
|
2426 |
+
#: views/admin/import/options/_settings_template.php:157
|
2427 |
+
msgid "The WooCommerce Add-On is Required to Import Products"
|
2428 |
+
msgstr ""
|
2429 |
+
|
2430 |
+
#: views/admin/import/index.php:316 views/admin/import/index.php:326
|
2431 |
+
#: views/admin/import/index.php:334
|
2432 |
+
#: views/admin/import/options/_settings_template.php:158
|
2433 |
+
#: views/admin/import/options/_settings_template.php:164
|
2434 |
+
#: views/admin/import/options/_settings_template.php:168
|
2435 |
+
msgid "Purchase the WooCommerce Add-On Pro"
|
2436 |
+
msgstr ""
|
2437 |
+
|
2438 |
+
#: views/admin/import/index.php:322
|
2439 |
+
msgid "The Pro version of the WooCommerce Add-On is required to Import Orders, but you have the free version installed"
|
2440 |
+
msgstr ""
|
2441 |
+
|
2442 |
+
#: views/admin/import/index.php:324
|
2443 |
+
#: views/admin/import/options/_settings_template.php:163
|
2444 |
+
msgid "The WooCommerce Add-On Pro is Required to Import Orders"
|
2445 |
+
msgstr ""
|
2446 |
+
|
2447 |
+
#: views/admin/import/index.php:330
|
2448 |
+
msgid "The Pro version of the WooCommerce Add-On is required to Import Coupons, but you have the free version installed"
|
2449 |
+
msgstr ""
|
2450 |
+
|
2451 |
+
#: views/admin/import/index.php:332
|
2452 |
+
#: views/admin/import/options/_settings_template.php:167
|
2453 |
+
msgid "The WooCommerce Add-On Pro is Required to Import Coupons"
|
2454 |
+
msgstr ""
|
2455 |
+
|
2456 |
+
#: views/admin/import/index.php:340
|
2457 |
+
msgid "In Step 4, you will map the records in your file to the existing items on your site and specify which data points will be updated and which will be left alone."
|
2458 |
+
msgstr "In Schritt 4 können Sie die Datensätze Ihrer Datei mit den existierenden Artikeln Ihrer Seite zusammenführen und bestimmen welche Daten aktualisiert werden und welche nicht."
|
2459 |
+
|
2460 |
+
#: views/admin/import/index.php:341
|
2461 |
+
msgid "The Existing Items option is commonly used to update existing products with new stock quantities while leaving all their other data alone, update properties on your site with new pricing, etc."
|
2462 |
+
msgstr "Die bestehende Artikel Option wird normalerweise genutzt um bestehende Produkte mit neuen Zahlen für die Lagerhaltung zu aktualisieren, während die anderen Daten unberührt bleiben. Aktualisieren Sie andere Eigenschaften wie neue Preise, etc."
|
2463 |
+
|
2464 |
+
#: views/admin/import/index.php:352
|
2465 |
+
#: views/admin/import/options/_import_file.php:36
|
2466 |
+
msgid "File upload rejected by server"
|
2467 |
+
msgstr ""
|
2468 |
+
|
2469 |
+
#: views/admin/import/index.php:353
|
2470 |
+
#: views/admin/import/options/_import_file.php:37
|
2471 |
+
msgid "Contact your host and have them check your server's error log."
|
2472 |
+
msgstr ""
|
2473 |
+
|
2474 |
+
#: views/admin/import/index.php:367
|
2475 |
+
msgid "Please verify that the file you using is a valid %s file."
|
2476 |
+
msgstr ""
|
2477 |
+
|
2478 |
+
#: views/admin/import/index.php:382
|
2479 |
+
msgid "Skip to Step 4"
|
2480 |
+
msgstr "Überspringe zu Schritt 4"
|
2481 |
+
|
2482 |
+
#: views/admin/import/index.php:383
|
2483 |
+
msgid "Continue to Step 2"
|
2484 |
+
msgstr "Weiter zu Schritt 2"
|
2485 |
+
|
2486 |
+
#: views/admin/import/options.php:119
|
2487 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:22
|
2488 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:89
|
2489 |
+
#: views/admin/import/options/_reimport_template.php:14
|
2490 |
+
#: views/admin/import/options/_reimport_template.php:81
|
2491 |
+
msgid "Record Matching"
|
2492 |
+
msgstr "Datensatz Abgleich"
|
2493 |
+
|
2494 |
+
#: views/admin/import/options.php:122
|
2495 |
+
msgid "Record Matching is how WP All Import matches records in your file with posts that already exist WordPress."
|
2496 |
+
msgstr "Datensatz Abgleich ist der Vorgang von WP All Import in dem Datensätze in Ihrer Datei mit bereits bestehenden Posts in WordPress abgeglichen werden."
|
2497 |
+
|
2498 |
+
#: views/admin/import/options.php:126
|
2499 |
+
msgid "Record Matching is most commonly used to tell WP All Import how to match up records in your file with posts WP All Import has already created on your site, so that if your file is updated with new data, WP All Import can update your posts accordingly."
|
2500 |
+
msgstr "Datensatz Abgleich wird meistens genutzt um WP All Import mitzuteilen wie die Datensätze in Ihrer Datei mit den Posts abgeglichen werden sollen, die WP All Import bereits auf Ihrer Seite erstellt hat. So kann WP All Import Änderungen in Ihrer Datei direkt in die Posts übertragen."
|
2501 |
+
|
2502 |
+
#: views/admin/import/options.php:131
|
2503 |
+
msgid "AUTOMATIC RECORD MATCHING"
|
2504 |
+
msgstr "AUTOMATISCHER DATENSATZ ABGLEICH"
|
2505 |
+
|
2506 |
+
#: views/admin/import/options.php:134
|
2507 |
+
msgid "Automatic Record Matching allows WP All Import to update records that were imported or updated during the last run of this same import."
|
2508 |
+
msgstr "Automatischer Datensatz Abgleich erlaubt WP All Import die Datensätze zu aktualisieren die während dem letzten Import importiert wurden."
|
2509 |
+
|
2510 |
+
#: views/admin/import/options.php:138
|
2511 |
+
msgid "Your unique key must be UNIQUE for each record in your feed. Make sure you get it right - you can't change it later. You'll have to re-create your import."
|
2512 |
+
msgstr "Ihr einzigartiger Schlüssel muss EINZIGARTIG in jedem Datensatz Ihres Feeds sein. Stellen Sie sicher dass Sie es korrekt haben - Sie können es später ändern. Sie werden Ihren Import neu erstellen müssen."
|
2513 |
+
|
2514 |
+
#: views/admin/import/options.php:143
|
2515 |
+
msgid "MANUAL RECORD MATCHING"
|
2516 |
+
msgstr "MANUELLER DATENSATZ ABGLEICH"
|
2517 |
+
|
2518 |
+
#: views/admin/import/options.php:146
|
2519 |
+
msgid "Manual record matching allows WP All Import to update any records, even records that were not imported with WP All Import, or are part of a different import."
|
2520 |
+
msgstr "Manueller Datensatz Abgleich erlaubt WP All Import alle Datensätze zu aktualisieren, sogar Datensätze die nicht von WP All Import importiert wurden, oder die Teil eines anderen Imports sind."
|
2521 |
+
|
2522 |
+
#: views/admin/import/options/_buttons_template.php:2
|
2523 |
+
msgid "To run the import, click Run Import on the Manage Imports page."
|
2524 |
+
msgstr "Um den Import zu starten, klicken Sie auf Starte Import auf der Imports verwalten Seite."
|
2525 |
+
|
2526 |
+
#: views/admin/import/options/_buttons_template.php:11
|
2527 |
+
msgid "Back to Step 3"
|
2528 |
+
msgstr "Zurück zu Schritt 3"
|
2529 |
+
|
2530 |
+
#: views/admin/import/options/_buttons_template.php:15
|
2531 |
+
msgid "Save Only"
|
2532 |
+
msgstr "Nur Speichern"
|
2533 |
+
|
2534 |
+
#: views/admin/import/options/_buttons_template.php:18
|
2535 |
+
msgid "Continue"
|
2536 |
+
msgstr "Weiter"
|
2537 |
+
|
2538 |
+
#: views/admin/import/options/_buttons_template.php:21
|
2539 |
+
#: views/admin/import/template.php:227
|
2540 |
+
msgid "Back to Manage Imports"
|
2541 |
+
msgstr "Zurück zur Import Verwaltung"
|
2542 |
+
|
2543 |
+
#: views/admin/import/options/_buttons_template.php:22
|
2544 |
+
msgid "Save Import Configuration"
|
2545 |
+
msgstr "Speichere Import Einstellungen"
|
2546 |
+
|
2547 |
+
#: views/admin/import/options/_import_file.php:62
|
2548 |
+
msgid "Import File"
|
2549 |
+
msgstr "Importiere Datei"
|
2550 |
+
|
2551 |
+
#: views/admin/import/options/_import_file.php:71
|
2552 |
+
msgid "Specify the location of the file to use for future runs of this import."
|
2553 |
+
msgstr "Bestimmen Sie den Ort der Datei für zukünftige Läufe dieses Imports."
|
2554 |
+
|
2555 |
+
#: views/admin/import/options/_import_file.php:94
|
2556 |
+
msgid "<span>Upload Complete</span> - "
|
2557 |
+
msgstr ""
|
2558 |
+
|
2559 |
+
#: views/admin/import/options/_import_file.php:106
|
2560 |
+
msgid "Upload"
|
2561 |
+
msgstr "Hochladen"
|
2562 |
+
|
2563 |
+
#: views/admin/import/options/_reimport_options.php:2
|
2564 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:11
|
2565 |
+
msgid "When WP All Import finds new or changed data..."
|
2566 |
+
msgstr "Wenn WP All Import neue oder geänderte Daten findet..."
|
2567 |
+
|
2568 |
+
#: views/admin/import/options/_reimport_options.php:4
|
2569 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:13
|
2570 |
+
msgid "If this import is run again and WP All Import finds new or changed data..."
|
2571 |
+
msgstr ""
|
2572 |
+
|
2573 |
+
#: views/admin/import/options/_reimport_options.php:9
|
2574 |
+
msgid "Create new posts from records newly present in your file"
|
2575 |
+
msgstr "Erstelle neue Posts von Datensätzen die neu sind in Ihrer Datei"
|
2576 |
+
|
2577 |
+
#: views/admin/import/options/_reimport_options.php:11
|
2578 |
+
msgid "New posts will only be created when ID column is present and value in ID column is unique."
|
2579 |
+
msgstr "Neue Posts werden nur erstellt wenn die spalte ID vorhanden ist und der Wert in der Spalte ID einzigartig ist."
|
2580 |
+
|
2581 |
+
#: views/admin/import/options/_reimport_options.php:18
|
2582 |
+
msgid "Delete posts that are no longer present in your file"
|
2583 |
+
msgstr "Lösche Posts die nicht länger vorhanden sind in der Datei"
|
2584 |
+
|
2585 |
+
#: views/admin/import/options/_reimport_options.php:20
|
2586 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:29
|
2587 |
+
msgid "Records removed from the import file can only be deleted when importing into New Items. This feature cannot be enabled when importing into Existing Items."
|
2588 |
+
msgstr ""
|
2589 |
+
|
2590 |
+
#: views/admin/import/options/_reimport_options.php:27
|
2591 |
+
msgid "Do not remove attachments"
|
2592 |
+
msgstr "Anhänge nicht entfernen"
|
2593 |
+
|
2594 |
+
#: views/admin/import/options/_reimport_options.php:32
|
2595 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:36
|
2596 |
+
msgid "Do not remove images"
|
2597 |
+
msgstr "Bilder nicht entfernen"
|
2598 |
+
|
2599 |
+
#: views/admin/import/options/_reimport_options.php:37
|
2600 |
+
msgid "Instead of deletion, set Custom Field"
|
2601 |
+
msgstr "Anstatt zu löschen, setze individuelles Feld"
|
2602 |
+
|
2603 |
+
#: views/admin/import/options/_reimport_options.php:40
|
2604 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:44
|
2605 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:73
|
2606 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:106
|
2607 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:123
|
2608 |
+
#: views/admin/import/options/_reimport_template.php:105
|
2609 |
+
#: views/admin/import/template/_custom_fields_template.php:51
|
2610 |
+
#: views/admin/import/template/_term_meta_template.php:51
|
2611 |
+
msgid "Name"
|
2612 |
+
msgstr "Name"
|
2613 |
+
|
2614 |
+
#: views/admin/import/options/_reimport_options.php:50
|
2615 |
+
msgid "Instead of deletion, change post status to Draft"
|
2616 |
+
msgstr "Anstatt zu löschen, ändere den Status des Posts auf Entwurf"
|
2617 |
+
|
2618 |
+
#: views/admin/import/options/_reimport_options.php:57
|
2619 |
+
msgid "Update existing posts with changed data in your file"
|
2620 |
+
msgstr "Aktualisiere existierende Posts mit geänderten Daten in Ihrer Datei"
|
2621 |
+
|
2622 |
+
#: views/admin/import/options/_reimport_options.php:59
|
2623 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:58
|
2624 |
+
msgid "These options will only be used if you run this import again later. All data is imported the first time you run an import."
|
2625 |
+
msgstr ""
|
2626 |
+
|
2627 |
+
#: views/admin/import/options/_reimport_options.php:63
|
2628 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:62
|
2629 |
+
msgid "Update all data"
|
2630 |
+
msgstr "Aktualisiere alle Daten"
|
2631 |
+
|
2632 |
+
#: views/admin/import/options/_reimport_options.php:66
|
2633 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:65
|
2634 |
+
msgid "Choose which data to update"
|
2635 |
+
msgstr "Wählen Sie welch Daten aktualisiert werden sollen"
|
2636 |
+
|
2637 |
+
#: views/admin/import/options/_reimport_options.php:69
|
2638 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:68
|
2639 |
+
msgid "Unselect All"
|
2640 |
+
msgstr ""
|
2641 |
+
|
2642 |
+
#: views/admin/import/options/_reimport_options.php:69
|
2643 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:68
|
2644 |
+
msgid "Select All"
|
2645 |
+
msgstr ""
|
2646 |
+
|
2647 |
+
#: views/admin/import/options/_reimport_options.php:74
|
2648 |
+
msgid "Post status"
|
2649 |
+
msgstr "Post Status"
|
2650 |
+
|
2651 |
+
#: views/admin/import/options/_reimport_options.php:75
|
2652 |
+
msgid "Hint: uncheck this box to keep trashed posts in the trash."
|
2653 |
+
msgstr "Hinweis: Deaktivieren Sie dieses Kästchen, um Posts im Papierkorb im Papierkorb zu lassen."
|
2654 |
+
|
2655 |
+
#: views/admin/import/options/_reimport_options.php:80
|
2656 |
+
#: views/admin/import/options/_reimport_template.php:98
|
2657 |
+
msgid "Title"
|
2658 |
+
msgstr "Titel"
|
2659 |
+
|
2660 |
+
#: views/admin/import/options/_reimport_options.php:85
|
2661 |
+
msgid "Author"
|
2662 |
+
msgstr "Autor "
|
2663 |
+
|
2664 |
+
#: views/admin/import/options/_reimport_options.php:90
|
2665 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:78
|
2666 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:113
|
2667 |
+
#: views/admin/import/template/_other_template.php:290
|
2668 |
+
msgid "Slug"
|
2669 |
+
msgstr "Slug"
|
2670 |
+
|
2671 |
+
#: views/admin/import/options/_reimport_options.php:95
|
2672 |
+
#: views/admin/import/options/_reimport_template.php:100
|
2673 |
+
msgid "Content"
|
2674 |
+
msgstr "Inhalt"
|
2675 |
+
|
2676 |
+
#: views/admin/import/options/_reimport_options.php:100
|
2677 |
+
msgid "Excerpt/Short Description"
|
2678 |
+
msgstr "Auszug / Kurzbeschreibung"
|
2679 |
+
|
2680 |
+
#: views/admin/import/options/_reimport_options.php:105
|
2681 |
+
msgid "Dates"
|
2682 |
+
msgstr "Datum"
|
2683 |
+
|
2684 |
+
#: views/admin/import/options/_reimport_options.php:110
|
2685 |
+
msgid "Menu order"
|
2686 |
+
msgstr "Menü Reihenfolge"
|
2687 |
+
|
2688 |
+
#: views/admin/import/options/_reimport_options.php:115
|
2689 |
+
msgid "Parent post"
|
2690 |
+
msgstr "Eltern post"
|
2691 |
+
|
2692 |
+
#: views/admin/import/options/_reimport_options.php:120
|
2693 |
+
msgid "Post type"
|
2694 |
+
msgstr ""
|
2695 |
+
|
2696 |
+
#: views/admin/import/options/_reimport_options.php:125
|
2697 |
+
msgid "Comment status"
|
2698 |
+
msgstr ""
|
2699 |
+
|
2700 |
+
#: views/admin/import/options/_reimport_options.php:130
|
2701 |
+
msgid "Attachments"
|
2702 |
+
msgstr "Anhänge"
|
2703 |
+
|
2704 |
+
#: views/admin/import/options/_reimport_options.php:144
|
2705 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:107
|
2706 |
+
msgid "This will keep the featured image if it exists, so you could modify the post image manually, and then do a reimport, and it would not overwrite the manually modified post image."
|
2707 |
+
msgstr "Dies wird die featured Bilder behalten wenn diese existieren, so können Sie die Bilder der Posts manuell ändern und dann einen Reimport machen. Dies wird die manuell geänderten Bilder nicht überschreiben."
|
2708 |
+
|
2709 |
+
#: views/admin/import/options/_reimport_options.php:148
|
2710 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:111
|
2711 |
+
msgid "Update all images"
|
2712 |
+
msgstr "Aktualisiere alle Bilder "
|
2713 |
+
|
2714 |
+
#: views/admin/import/options/_reimport_options.php:154
|
2715 |
+
msgid "Don't touch existing images, append new images"
|
2716 |
+
msgstr "Fasse existierende Bilder nicht an, hänge neue Bilder an"
|
2717 |
+
|
2718 |
+
#: views/admin/import/options/_reimport_options.php:163
|
2719 |
+
#: views/admin/import/template/_custom_fields_template.php:17
|
2720 |
+
msgid "Custom Fields"
|
2721 |
+
msgstr "Individuelle Felder"
|
2722 |
+
|
2723 |
+
#: views/admin/import/options/_reimport_options.php:164
|
2724 |
+
msgid "If Keep Custom Fields box is checked, it will keep all Custom Fields, and add any new Custom Fields specified in Custom Fields section, as long as they do not overwrite existing fields. If 'Only keep this Custom Fields' is specified, it will only keep the specified fields."
|
2725 |
+
msgstr "Wenn die Box: Behalte individuelle Felder markiert ist, wird es alle individuellen Felder behalten und neue hinzufügen die im Abschnitt individuelle Felder bestimmt wurden, solange sie bestehende Felder nicht überschreiben. Wenn 'Nur dieses individuelle Feld behalten' markiert ist, wird es nur die bestimmten Felder behalten."
|
2726 |
+
|
2727 |
+
#: views/admin/import/options/_reimport_options.php:168
|
2728 |
+
msgid "Update all Custom Fields"
|
2729 |
+
msgstr "Aktualisiere alle individuellen Felder"
|
2730 |
+
|
2731 |
+
#: views/admin/import/options/_reimport_options.php:172
|
2732 |
+
msgid "Update only these Custom Fields, leave the rest alone"
|
2733 |
+
msgstr "Aktualisiere nur diese individuellen Felder, lasse den Rest in Ruhe"
|
2734 |
+
|
2735 |
+
#: views/admin/import/options/_reimport_options.php:180
|
2736 |
+
msgid "Leave these fields alone, update all other Custom Fields"
|
2737 |
+
msgstr "Lasse den Rest in Ruhe, aktualisiere alle anderen individuellen Felder"
|
2738 |
+
|
2739 |
+
#: views/admin/import/options/_reimport_options.php:192
|
2740 |
+
msgid "Taxonomies (incl. Categories and Tags)"
|
2741 |
+
msgstr "Taxonomien ( incl. Kategorien und Tags)"
|
2742 |
+
|
2743 |
+
#: views/admin/import/options/_reimport_options.php:206
|
2744 |
+
msgid "Leave these taxonomies alone, update all others"
|
2745 |
+
msgstr "Lasse die Taxonomien in Ruhe, aktualisiere alle anderen"
|
2746 |
+
|
2747 |
+
#: views/admin/import/options/_reimport_options.php:214
|
2748 |
+
msgid "Update only these taxonomies, leave the rest alone"
|
2749 |
+
msgstr "Aktualisiere nur diese Taxonomien, lasse den Rest in Ruhe"
|
2750 |
+
|
2751 |
+
#: views/admin/import/options/_reimport_options.php:222
|
2752 |
+
msgid "Remove existing taxonomies, add new taxonomies"
|
2753 |
+
msgstr "Entferne bestehende Taxonomien, füge neue hinzu"
|
2754 |
+
|
2755 |
+
#: views/admin/import/options/_reimport_options.php:226
|
2756 |
+
msgid "Only add new"
|
2757 |
+
msgstr "Nur neue hinzufügen"
|
2758 |
+
|
2759 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:18
|
2760 |
+
msgid "Create new %s from records newly present in your file"
|
2761 |
+
msgstr ""
|
2762 |
+
|
2763 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:20
|
2764 |
+
msgid "New %s will only be created when ID column is present and value in ID column is unique."
|
2765 |
+
msgstr ""
|
2766 |
+
|
2767 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:27
|
2768 |
+
msgid "Delete %s that are no longer present in your file"
|
2769 |
+
msgstr ""
|
2770 |
+
|
2771 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:41
|
2772 |
+
msgid "Instead of deletion, set Term Meta"
|
2773 |
+
msgstr ""
|
2774 |
+
|
2775 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:56
|
2776 |
+
msgid "Update existing %s with changed data in your file"
|
2777 |
+
msgstr ""
|
2778 |
+
|
2779 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:83
|
2780 |
+
msgid "Description"
|
2781 |
+
msgstr ""
|
2782 |
+
|
2783 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:93
|
2784 |
+
#: views/admin/import/template/_term_other_template.php:23
|
2785 |
+
msgid "Parent term"
|
2786 |
+
msgstr ""
|
2787 |
+
|
2788 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:119
|
2789 |
+
#: views/admin/import/template/_term_meta_template.php:17
|
2790 |
+
msgid "Term Meta"
|
2791 |
+
msgstr ""
|
2792 |
+
|
2793 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:120
|
2794 |
+
msgid "If Keep Term Meta box is checked, it will keep all Term Meta, and add any new Term Meta specified in Term Meta section, as long as they do not overwrite existing fields. If 'Only keep this Term Meta' is specified, it will only keep the specified fields."
|
2795 |
+
msgstr ""
|
2796 |
+
|
2797 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:124
|
2798 |
+
msgid "Update all Term Meta"
|
2799 |
+
msgstr ""
|
2800 |
+
|
2801 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:128
|
2802 |
+
msgid "Update only these Term Meta, leave the rest alone"
|
2803 |
+
msgstr ""
|
2804 |
+
|
2805 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:136
|
2806 |
+
msgid "Leave these fields alone, update all other Term Meta"
|
2807 |
+
msgstr ""
|
2808 |
+
|
2809 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:30
|
2810 |
+
#: views/admin/import/options/_reimport_template.php:22
|
2811 |
+
msgid "Choose how exported data will be re-imported."
|
2812 |
+
msgstr "Wähle wie exportierte Daten erneut importiert werden."
|
2813 |
+
|
2814 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:36
|
2815 |
+
#: views/admin/import/options/_reimport_template.php:28
|
2816 |
+
msgid "WP All Import will create new %s for each unique record in your file."
|
2817 |
+
msgstr "WP All Import wird neue %s erstellen, für jeden einzigartigen Datensatz in Ihrer Datei."
|
2818 |
+
|
2819 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:49
|
2820 |
+
#: views/admin/import/options/_reimport_template.php:41
|
2821 |
+
msgid "WP All Import will associate records in your file with %s it has already created from previous runs of this import based on the Unique Identifier."
|
2822 |
+
msgstr "WP All Import verknüpft die Datensätze in Ihrer Datei mit %s die es bereits bei früheren Läufen erstellt hat, basierend auf der einzigartigen ID."
|
2823 |
+
|
2824 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:52
|
2825 |
+
#: views/admin/import/options/_reimport_template.php:44
|
2826 |
+
msgid "Unique Identifier"
|
2827 |
+
msgstr "Einzigartige ID"
|
2828 |
+
|
2829 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:58
|
2830 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:69
|
2831 |
+
#: views/admin/import/options/_reimport_template.php:50
|
2832 |
+
#: views/admin/import/options/_reimport_template.php:61
|
2833 |
+
msgid "Auto-detect"
|
2834 |
+
msgstr "Automatische Erkennung"
|
2835 |
+
|
2836 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:61
|
2837 |
+
#: views/admin/import/options/_reimport_template.php:53
|
2838 |
+
#: views/admin/manage/index.php:327
|
2839 |
+
msgid "Edit"
|
2840 |
+
msgstr "Ändern"
|
2841 |
+
|
2842 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:62
|
2843 |
+
#: views/admin/import/options/_reimport_template.php:54
|
2844 |
+
msgid "Warning: Are you sure you want to edit the Unique Identifier?"
|
2845 |
+
msgstr "Warnung: Sind Sie sicher dass Sie die einzigartige ID ändern wollen?"
|
2846 |
+
|
2847 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:63
|
2848 |
+
#: views/admin/import/options/_reimport_template.php:55
|
2849 |
+
msgid "It is recommended you delete all %s associated with this import before editing the unique identifier."
|
2850 |
+
msgstr "Es wird empfohlen dass Sie alle %s löschen, die mit diesem Import zusammenhängen. Bevor Sie die einzigartige ID Löschen."
|
2851 |
+
|
2852 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:64
|
2853 |
+
#: views/admin/import/options/_reimport_template.php:56
|
2854 |
+
msgid "Editing the unique identifier will dissociate all existing %s linked to this import. Future runs of the import will result in duplicates, as WP All Import will no longer be able to update these %s."
|
2855 |
+
msgstr "Ändern der einzigartigen ID wird alle existierenden %s zu diesem Import trennen. Zukünftige Läufe des Importes wird in Duplikaten enden, da es WP All Import nicht möglich sein wird diese zu aktualisieren: %s."
|
2856 |
+
|
2857 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:65
|
2858 |
+
#: views/admin/import/options/_reimport_template.php:57
|
2859 |
+
msgid "You really should just re-create your import, and pick the right unique identifier to start with."
|
2860 |
+
msgstr "Sie sollten wirklich Ihren Import neu erstellen und die richtige einzigartige ID wählen."
|
2861 |
+
|
2862 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:75
|
2863 |
+
#: views/admin/import/options/_reimport_template.php:67
|
2864 |
+
msgid "Drag an element, or combo of elements, to the box above. The Unique Identifier should be unique for each record in your file, and should stay the same even if your file is updated. Things like product IDs, titles, and SKUs are good Unique Identifiers because they probably won't change. Don't use a description or price, since that might be changed."
|
2865 |
+
msgstr "Ziehen Sie ein Element, oder eine Kombination von Element in die Box oben. Die einzigartige ID sollte einzigartig sein für jeden Datensatz in Ihrer Datei und sollte sich nicht verändern, auch nicht wenn die Datei aktualisiert wird. Dinge wie Produkt ID, Titel und SKU sind gute einzigartige IDs, da diese sich gewöhnlich nicht ändern. Nutzen Sie keine Beschreibung oder Preis, da sich diese häufig ändern."
|
2866 |
+
|
2867 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:76
|
2868 |
+
#: views/admin/import/options/_reimport_template.php:68
|
2869 |
+
msgid "If you run this import again with an updated file, the Unique Identifier allows WP All Import to correctly link the records in your updated file with the %s it will create right now. If multiple records in this file have the same Unique Identifier, only the first will be created. The others will be detected as duplicates."
|
2870 |
+
msgstr "Wenn Sie diesen Import mit einer aktualisierten Datei erneut starten, erlaubt die einzigartige ID dem Importer die Datensätze mit der aktualisierten Datei %s zu verbinden. Wenn mehrere Datensätze in dieser Datei die selbe einzigartige ID haben, wird nur der erste erstellt, die anderen werden als Duplikate erkannt."
|
2871 |
+
|
2872 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:91
|
2873 |
+
#: views/admin/import/options/_reimport_template.php:83
|
2874 |
+
msgid "WP All Import will merge data into existing %s."
|
2875 |
+
msgstr "WP All Import wird die Daten zusammenfügen mit den existierenden %s."
|
2876 |
+
|
2877 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:101
|
2878 |
+
msgid "Records in your file will be matched with %s on your site based on..."
|
2879 |
+
msgstr ""
|
2880 |
+
|
2881 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:120
|
2882 |
+
#: views/admin/import/options/_reimport_template.php:103
|
2883 |
+
msgid "Custom field"
|
2884 |
+
msgstr "Individuelles Feld"
|
2885 |
+
|
2886 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:130
|
2887 |
+
msgid "Term ID"
|
2888 |
+
msgstr ""
|
2889 |
+
|
2890 |
+
#: views/admin/import/options/_reimport_template.php:93
|
2891 |
+
msgid "Records in your file will be matched with %ss on your site based on..."
|
2892 |
+
msgstr "Datensätze in Ihrer Datei werden angepasst mit %ss auf Ihrer Seite basierend auf..."
|
2893 |
+
|
2894 |
+
#: views/admin/import/options/_reimport_template.php:113
|
2895 |
+
msgid "Post ID"
|
2896 |
+
msgstr ""
|
2897 |
+
|
2898 |
+
#: views/admin/import/options/_settings_template.php:4
|
2899 |
+
msgid "Configure Advanced Settings"
|
2900 |
+
msgstr "Bearbeite erweiterte Einstellungen"
|
2901 |
+
|
2902 |
+
#: views/admin/import/options/_settings_template.php:11
|
2903 |
+
msgid "Import Speed Optimization"
|
2904 |
+
msgstr "Importiere Geschwindigkeits Optimierung "
|
2905 |
+
|
2906 |
+
#: views/admin/import/options/_settings_template.php:15
|
2907 |
+
msgid "High Speed Small File Processing"
|
2908 |
+
msgstr "High-Speed Bearbeitung kleiner Dateien"
|
2909 |
+
|
2910 |
+
#: views/admin/import/options/_settings_template.php:15
|
2911 |
+
msgid "If the import takes longer than your server's timeout settings (max_execution_time, mod_fcgid read data timeout, etc.) it will fail."
|
2912 |
+
msgstr "Wenn der Import länger dauert als Ihr Server timeout ist, (max_execution_time, mod_fcgid read data timeout, etc.) wird er fehlschlagen."
|
2913 |
+
|
2914 |
+
#: views/admin/import/options/_settings_template.php:19
|
2915 |
+
msgid "Iterative, Piece-by-Piece Processing"
|
2916 |
+
msgstr "Wiederholende, Stück für Stück Bearbeitung"
|
2917 |
+
|
2918 |
+
#: views/admin/import/options/_settings_template.php:23
|
2919 |
+
msgid "In each iteration, process"
|
2920 |
+
msgstr "In jedem Durchlauf, bearbeiten"
|
2921 |
+
|
2922 |
+
#: views/admin/import/options/_settings_template.php:23
|
2923 |
+
#: views/admin/import/process.php:31
|
2924 |
+
msgid "records"
|
2925 |
+
msgstr "Datensätze"
|
2926 |
+
|
2927 |
+
#: views/admin/import/options/_settings_template.php:24
|
2928 |
+
msgid "WP All Import must be able to process this many records in less than your server's timeout settings. If your import fails before completion, to troubleshoot you should lower this number. If you are importing images, especially high resolution images, high numbers here are probably a bad idea, since downloading the images can take lots of time - for example, 20 posts with 5 images each = 100 images. At 500Kb per image that's 50Mb that needs to be downloaded. Can your server download that before timing out? If not, the import will fail."
|
2929 |
+
msgstr "WP All Import muss ermöglicht werden die Datensätze verarbeiten zu können innerhalb Ihres Server timeouts. Wenn Ihr Import fehlschlägt bevor er fertig ist, sollten Sie diese Zahl verringern. Wenn Sie Bilder importieren, speziell bei Hochauflösenden, ist eine hohe Anzahl eine schlechte Idee. Da der Download viel Zeit in Anspruch nehmen kann - Beispielsweise 20 Posts mit je 5 Bildern = 100 Bilder. Bei 500kb pro Bild sind das 50Mb die heruntergeladen werden müssen. Kann Ihr Server das herunterladen vor dem Timeout? Wenn nicht, wird der Import fehlschlagen."
|
2930 |
+
|
2931 |
+
#: views/admin/import/options/_settings_template.php:29
|
2932 |
+
msgid "Split file up into <strong>"
|
2933 |
+
msgstr ""
|
2934 |
+
|
2935 |
+
#: views/admin/import/options/_settings_template.php:30
|
2936 |
+
msgid "This option will decrease the amount of slowdown experienced at the end of large imports. The slowdown is partially caused by the need for WP All Import to read deeper and deeper into the file on each successive iteration. Splitting the file into pieces means that, for example, instead of having to read 19000 records into a 20000 record file when importing the last 1000 records, WP All Import will just split it into 20 chunks, and then read the last chunk from the beginning."
|
2937 |
+
msgstr "Diese Option verringert die Anzahl der Verlangsamungen am Ende von großen Importen. Die Verlangsamung wird teilweise dadurch ausgelöst, dass WP All Import immer tiefer und tiefer in der Datei liest, sukzessiv mit jedem Durchlauf. Eine Aufteilung der Datei bedeutet beispielsweise, dass anstatt 19'000 Datensätze in 20'000 Datensätzen zu lesen, wenn die letzten 1000 Datensätze importiert werden, eine Aufteilung in 20 Datenblöcke erfolgt und dann der letzte Datenblock von Beginn gelesen wird."
|
2938 |
+
|
2939 |
+
#: views/admin/import/options/_settings_template.php:37
|
2940 |
+
msgid "Increase speed by disabling do_action calls in wp_insert_post during import."
|
2941 |
+
msgstr "Steigere die Geschwindigkeit durch Deaktivierung von do_action Aufrufen in wp_insert_post während dem Import."
|
2942 |
+
|
2943 |
+
#: views/admin/import/options/_settings_template.php:38
|
2944 |
+
msgid "This option is for advanced users with knowledge of WordPress development. Your theme or plugins may require these calls when posts are created. Next action will be disabled: 'transition_post_status', 'save_post', 'pre_post_update', 'add_attachment', 'edit_attachment', 'edit_post', 'post_updated', 'wp_insert_post'. Verify your created posts work properly if you check this box."
|
2945 |
+
msgstr "Diese Option ist für fortgeschrittene Benutzer mit Kenntnissen in der WordPress Entwicklung. Ihr Theme oder Plugin könnte diese Aufrufe benötigen wenn Posts erstellt werden. Die nächste Aktion wird deaktiviert: 'transition_post_status', 'save_post', 'pre_post_update', 'add_attachment', 'edit_attachment', 'edit_post', 'post_updated', 'wp_insert_post'. Verifizieren Sie Ihre Posts und arbeiten Sie sauber wenn Sie dieses Häkchen setzen."
|
2946 |
+
|
2947 |
+
#: views/admin/import/options/_settings_template.php:43
|
2948 |
+
msgid "Taxonomy Type"
|
2949 |
+
msgstr ""
|
2950 |
+
|
2951 |
+
#: views/admin/import/options/_settings_template.php:44
|
2952 |
+
msgid "Editing this will change the taxonomy type of the taxonomies processed by this import. Re-run the import for the changes to take effect."
|
2953 |
+
msgstr ""
|
2954 |
+
|
2955 |
+
#: views/admin/import/options/_settings_template.php:46
|
2956 |
+
msgid "Post Type"
|
2957 |
+
msgstr "Post Typ:"
|
2958 |
+
|
2959 |
+
#: views/admin/import/options/_settings_template.php:47
|
2960 |
+
msgid "Editing this will change the post type of the posts processed by this import. Re-run the import for the changes to take effect."
|
2961 |
+
msgstr "Die Bearbeitung wird den post typ von den Posts dieses Imports ändern. Starten Sie den Import erneut um die Änderungen zu erwirken."
|
2962 |
+
|
2963 |
+
#: views/admin/import/options/_settings_template.php:175
|
2964 |
+
msgid "Editing this can break your entire import. You will have to re-create it from scratch."
|
2965 |
+
msgstr "Diese Bearbeitung kann Ihren gesamten Import unterbrechen. Sie werden ihn von Grund auf neu erstellen müssen."
|
2966 |
+
|
2967 |
+
#: views/admin/import/options/_settings_template.php:180
|
2968 |
+
msgid "Downloads"
|
2969 |
+
msgstr ""
|
2970 |
+
|
2971 |
+
#: views/admin/import/options/_settings_template.php:183
|
2972 |
+
msgid "Import Template"
|
2973 |
+
msgstr ""
|
2974 |
+
|
2975 |
+
#: views/admin/import/options/_settings_template.php:184
|
2976 |
+
msgid "Import Bundle"
|
2977 |
+
msgstr ""
|
2978 |
+
|
2979 |
+
#: views/admin/import/options/_settings_template.php:187
|
2980 |
+
msgid "Other"
|
2981 |
+
msgstr "Sonstige"
|
2982 |
+
|
2983 |
+
#: views/admin/import/options/_settings_template.php:191
|
2984 |
+
msgid "Import only specified records"
|
2985 |
+
msgstr "Nur angegebene Datensätze importieren"
|
2986 |
+
|
2987 |
+
#: views/admin/import/options/_settings_template.php:191
|
2988 |
+
msgid "Enter records or record ranges separated by commas, e.g. <b>1,5,7-10</b> would import the first, the fifth, and the seventh to tenth."
|
2989 |
+
msgstr "Geben Sie Datensätze oder Datensatz Bereiche durch Kommas getrennt an, z.B. <b>1,5,7-10</b> wäre der erste, der fünfte und der siebte bis zehnte Import."
|
2990 |
+
|
2991 |
+
#: views/admin/import/options/_settings_template.php:202
|
2992 |
+
msgid "Delete source XML file after importing"
|
2993 |
+
msgstr "XML-Quelldatei nach dem Importieren löschen"
|
2994 |
+
|
2995 |
+
#: views/admin/import/options/_settings_template.php:202
|
2996 |
+
msgid "This setting takes effect only when script has access rights to perform the action, e.g. file is not deleted when pulled via HTTP or delete permission is not granted to the user that script is executed under."
|
2997 |
+
msgstr "Diese Einstellung nimmt nur Einfluss, wenn das Skript Zugriffsrechte auf die Aktion hat. Bsp: Die Datei ist nicht gelöscht, wenn es mittelt HTTP gezogen wurde. Oder eine Erlaubnis zum Löschen liegt für das Skript, das der Benutzer gestartet, hat nicht vor."
|
2998 |
+
|
2999 |
+
#: views/admin/import/options/_settings_template.php:209
|
3000 |
+
msgid "Auto-Cloak Links"
|
3001 |
+
msgstr "Automatische Linkmaskierung"
|
3002 |
+
|
3003 |
+
#: views/admin/import/options/_settings_template.php:209
|
3004 |
+
msgid "Automatically process all links present in body of created post or page with <b>%s</b> plugin"
|
3005 |
+
msgstr "Bearbeite automatisch alle Links die im Body des erstellten Posts oder der erstellten Seite sind mit <b>%s</b> Plug-In"
|
3006 |
+
|
3007 |
+
#: views/admin/import/options/_settings_template.php:217
|
3008 |
+
#: views/admin/import/options/_settings_template.php:220
|
3009 |
+
msgid "Use StreamReader instead of XMLReader to parse import file"
|
3010 |
+
msgstr ""
|
3011 |
+
|
3012 |
+
#: views/admin/import/options/_settings_template.php:217
|
3013 |
+
msgid "WP All Import is being forced to use Stream Reader for all imports. Go to WP All Import ▸ Settings to modify this setting."
|
3014 |
+
msgstr ""
|
3015 |
+
|
3016 |
+
#: views/admin/import/options/_settings_template.php:220
|
3017 |
+
#: views/admin/settings/index.php:188
|
3018 |
+
msgid "XMLReader is much faster, but has a bug that sometimes prevents certain records from being imported with import files that contain special cases."
|
3019 |
+
msgstr ""
|
3020 |
+
|
3021 |
+
#: views/admin/import/options/_settings_template.php:225
|
3022 |
+
msgid "Friendly Name"
|
3023 |
+
msgstr "Benutzerfreundlicher Name"
|
3024 |
+
|
3025 |
+
#: views/admin/import/preview.php:6 views/admin/import/preview_images.php:6
|
3026 |
+
#: views/admin/import/preview_prices.php:6
|
3027 |
+
#: views/admin/import/preview_taxonomies.php:6 views/admin/import/tag.php:8
|
3028 |
+
msgid "<strong><input type=\"text\" value=\"%s\" name=\"tagno\" class=\"tagno\"/></strong><span class=\"out_of\"> of <strong class=\"pmxi_count\">%s</strong></span>"
|
3029 |
+
msgstr "<strong><input type=\"text\" value=\"%s\" name=\"tagno\" class=\"tagno\"/></strong><span class=\"out_of\"> von <strong class=\"pmxi_count\">%s</strong></span>"
|
3030 |
+
|
3031 |
+
#: views/admin/import/preview_images.php:17
|
3032 |
+
msgid "Test Images"
|
3033 |
+
msgstr ""
|
3034 |
+
|
3035 |
+
#: views/admin/import/preview_images.php:24
|
3036 |
+
msgid "Click to test that your images are able to be accessed by WP All Import."
|
3037 |
+
msgstr ""
|
3038 |
+
|
3039 |
+
#: views/admin/import/preview_images.php:26
|
3040 |
+
msgid "Run Test"
|
3041 |
+
msgstr ""
|
3042 |
+
|
3043 |
+
#: views/admin/import/preview_images.php:60
|
3044 |
+
msgid "Retrieving images..."
|
3045 |
+
msgstr "Bilder wiederherstellen..."
|
3046 |
+
|
3047 |
+
#: views/admin/import/preview_images.php:64
|
3048 |
+
msgid "WP All Import will import images from the following file paths:"
|
3049 |
+
msgstr "WP All Import wird Bilder von folgenden Pfaden importieren:"
|
3050 |
+
|
3051 |
+
#: views/admin/import/preview_images.php:65
|
3052 |
+
msgid "Please ensure the images exists at these file paths"
|
3053 |
+
msgstr "Bitte gehen Sie sicher, dass die Bilder bei diesen Pfaden existieren"
|
3054 |
+
|
3055 |
+
#: views/admin/import/preview_images.php:73
|
3056 |
+
#: views/admin/import/preview_images.php:115
|
3057 |
+
#: views/admin/import/preview_images.php:154
|
3058 |
+
msgid "Here are the above URLs, in <img> tags. "
|
3059 |
+
msgstr "Hier sind die obigen URLs in <img> tags. "
|
3060 |
+
|
3061 |
+
#: views/admin/import/preview_images.php:92
|
3062 |
+
msgid "Searching images..."
|
3063 |
+
msgstr ""
|
3064 |
+
|
3065 |
+
#: views/admin/import/preview_images.php:96
|
3066 |
+
msgid "WP All Import will import images from the media library"
|
3067 |
+
msgstr ""
|
3068 |
+
|
3069 |
+
#: views/admin/import/preview_images.php:97
|
3070 |
+
msgid "Please ensure the images exists at media library"
|
3071 |
+
msgstr ""
|
3072 |
+
|
3073 |
+
#: views/admin/import/preview_images.php:141
|
3074 |
+
msgid "Download in progress..."
|
3075 |
+
msgstr "Herunterladen in Fortschritt..."
|
3076 |
+
|
3077 |
+
#: views/admin/import/preview_images.php:145
|
3078 |
+
msgid "WP All Import will attempt to import images from the following URLs:"
|
3079 |
+
msgstr "WP All Import wird versuchen die Bilder von folgender URL zu importieren:"
|
3080 |
+
|
3081 |
+
#: views/admin/import/preview_images.php:146
|
3082 |
+
msgid "Please check the URLs to ensure they point to valid images"
|
3083 |
+
msgstr "Bitte kontrollieren Sie die URL um sicher zu gehen dass sie auf korrekte Bilder zeigen"
|
3084 |
+
|
3085 |
+
#: views/admin/import/preview_images.php:169
|
3086 |
+
msgid "Images not found for current record."
|
3087 |
+
msgstr "Keine Bilder gefunden für diesen Datensatz."
|
3088 |
+
|
3089 |
+
#: views/admin/import/preview_prices.php:16
|
3090 |
+
msgid "Preview Prices"
|
3091 |
+
msgstr "Vorschau Preis"
|
3092 |
+
|
3093 |
+
#: views/admin/import/preview_prices.php:18
|
3094 |
+
msgid "Regular Price"
|
3095 |
+
msgstr "Regulärer Preis"
|
3096 |
+
|
3097 |
+
#: views/admin/import/preview_prices.php:19
|
3098 |
+
msgid "Sale Price"
|
3099 |
+
msgstr "Angebotspreis"
|
3100 |
+
|
3101 |
+
#: views/admin/import/preview_taxonomies.php:16
|
3102 |
+
msgid "Test Taxonomies Hierarchy"
|
3103 |
+
msgstr "Teste Taxonomie Hierarchie "
|
3104 |
+
|
3105 |
+
#: views/admin/import/process.php:21
|
3106 |
+
msgid "Import <span id=\"status\">in Progress</span>"
|
3107 |
+
msgstr "Import <span id=\"status\">in Bearbeitung</span>"
|
3108 |
+
|
3109 |
+
#: views/admin/import/process.php:22
|
3110 |
+
msgid "Importing may take some time. Please do not close your browser or refresh the page until the process is complete."
|
3111 |
+
msgstr "Der Import wird einige Zeit benötigen. Bitte nicht den Browser schließen oder aktualisieren während die Bearbeitung läuft."
|
3112 |
+
|
3113 |
+
#: views/admin/import/process.php:29
|
3114 |
+
msgid "Time Elapsed"
|
3115 |
+
msgstr "Zeit vergangen"
|
3116 |
+
|
3117 |
+
#: views/admin/import/process.php:31
|
3118 |
+
msgid "Created"
|
3119 |
+
msgstr "Erstellt"
|
3120 |
+
|
3121 |
+
#: views/admin/import/process.php:31
|
3122 |
+
msgid "Updated"
|
3123 |
+
msgstr "Aktualisiert"
|
3124 |
+
|
3125 |
+
#: views/admin/import/process.php:31
|
3126 |
+
msgid "of"
|
3127 |
+
msgstr "von"
|
3128 |
+
|
3129 |
+
#: views/admin/import/process.php:48
|
3130 |
+
msgid "Import Complete!"
|
3131 |
+
msgstr "Import abgeschlossen"
|
3132 |
+
|
3133 |
+
#: views/admin/import/process.php:50
|
3134 |
+
msgid "Duplicate records detected during import"
|
3135 |
+
msgstr "Datensatz Duplikate während des Imports festgestellt"
|
3136 |
+
|
3137 |
+
#: views/admin/import/process.php:50
|
3138 |
+
msgid "The unique identifier is how WP All Import tells two items in your import file apart. If it is the same for two items, then the first item will be overwritten when the second is imported."
|
3139 |
+
msgstr "Die einzigartige ID ermöglicht es WP All Import zwei Artikel in Ihrer Datei unterscheiden zu können. Wenn dieser für zwei Artikel gleich ist, dann wird der erste überschrieben wenn der zweite importiert wird."
|
3140 |
+
|
3141 |
+
#: views/admin/import/process.php:52
|
3142 |
+
msgid "The file you are importing has %s records, but WP All Import only created <span class=\"inserted_count\"></span> %s. It detected the other records in your file as duplicates. This could be because they actually are duplicates or it could be because your Unique Identifier is not unique for each record.<br><br>If your import file has no duplicates and you want to import all %s records, you should delete everything that was just imported and then edit your Unique Identifier so it's unique for each item."
|
3143 |
+
msgstr "Die Datei die Sie importieren hat %s Datensätze, aber WP All Import erstellte nur <span class=\"inserted_count\"></span> %s. Es erkannte die anderen Datensätze in Ihrer Datei als Duplikate. Entweder weil es Duplikate sind oder weil Ihre einzigartige ID nicht einzigartig für jeden Datensatz ist. <br><br>Wenn Ihre Import Datei keine Duplikate hat und Sie alle Datensätze %s importieren wollen, sollten Sie alles Löschen was gerade importiert wurde und dann Ihre einzigartige ID ändern, so dass dieser einzigartig für jeden Artikel ist."
|
3144 |
+
|
3145 |
+
#: views/admin/import/process.php:54 views/admin/import/process.php:61
|
3146 |
+
msgid "Delete & Edit"
|
3147 |
+
msgstr "Löschen & Ändern"
|
3148 |
+
|
3149 |
+
#: views/admin/import/process.php:57
|
3150 |
+
msgid "<span id=\"skipped_count\">%s</span> orders were skipped during this import"
|
3151 |
+
msgstr ""
|
3152 |
+
|
3153 |
+
#: views/admin/import/process.php:59
|
3154 |
+
msgid "WP All Import is unable import an order when it cannot match the products or customer specified. <a href=\"%s\" style=\"margin: 0;\">See the import log</a> for a list of which orders were skipped and why."
|
3155 |
+
msgstr ""
|
3156 |
+
|
3157 |
+
#: views/admin/import/process.php:63
|
3158 |
+
msgid "WP All Import successfully imported your file <span>%s</span> into your WordPress installation!"
|
3159 |
+
msgstr "WP All Import hat Ihre Datei <span>%s</span> erfolgreich in Ihre WordPress Installation importiert!"
|
3160 |
+
|
3161 |
+
#: views/admin/import/process.php:65 views/admin/import/process.php:67
|
3162 |
+
msgid "There were <span class=\"wpallimport-errors-count\">%s</span> errors and <span class=\"wpallimport-warnings-count\">%s</span> warnings in this import. You can see these in the import log."
|
3163 |
+
msgstr "Es gab <span class=\"wpallimport-errors-count\">%s</span> Fehler und <span class=\"wpallimport-warnings-count\">%s</span> Warnungen in diesem Import. Sie können diese im Import Log sehen."
|
3164 |
+
|
3165 |
+
#: views/admin/import/process.php:70
|
3166 |
+
msgid "View Logs"
|
3167 |
+
msgstr "Logs ansehen"
|
3168 |
+
|
3169 |
+
#: views/admin/import/process.php:78
|
3170 |
+
msgid "Hide this notice."
|
3171 |
+
msgstr ""
|
3172 |
+
|
3173 |
+
#: views/admin/import/process.php:82
|
3174 |
+
msgid "Want to speed up your import?"
|
3175 |
+
msgstr ""
|
3176 |
+
|
3177 |
+
#: views/admin/import/process.php:83
|
3178 |
+
msgid "Check out our guide on increasing import speed."
|
3179 |
+
msgstr ""
|
3180 |
+
|
3181 |
+
#: views/admin/import/process.php:87
|
3182 |
+
msgid "opens in new tab"
|
3183 |
+
msgstr ""
|
3184 |
+
|
3185 |
+
#: views/admin/import/process.php:95 views/admin/import/process.php:116
|
3186 |
+
msgid "Your server terminated the import process"
|
3187 |
+
msgstr ""
|
3188 |
+
|
3189 |
+
#: views/admin/import/process.php:96
|
3190 |
+
msgid "<a href='%s' target='_blank'>Read more</a> about how to prevent this from happening again."
|
3191 |
+
msgstr ""
|
3192 |
+
|
3193 |
+
#: views/admin/import/process.php:100
|
3194 |
+
msgid "with <span id='wpallimport-new-records-per-iteration'>%s</span> records per iteration"
|
3195 |
+
msgstr ""
|
3196 |
+
|
3197 |
+
#: views/admin/import/process.php:106
|
3198 |
+
msgid "Log"
|
3199 |
+
msgstr "Log"
|
3200 |
+
|
3201 |
+
#: views/admin/import/process.php:117
|
3202 |
+
msgid "Ask your host to check your server's error log. They will be able to determine why your server is terminating the import process."
|
3203 |
+
msgstr ""
|
3204 |
+
|
3205 |
+
#: views/admin/import/tag.php:5
|
3206 |
+
msgid "Elements"
|
3207 |
+
msgstr "Elemente"
|
3208 |
+
|
3209 |
+
#: views/admin/import/tag.php:27
|
3210 |
+
msgid "History file not found. Probably you are using wrong encoding."
|
3211 |
+
msgstr "Chronik Datei nicht gefunden. Eventuell nutzen Sie eine andere Codierung."
|
3212 |
+
|
3213 |
+
#: views/admin/import/template.php:42
|
3214 |
+
msgid "Name & Description"
|
3215 |
+
msgstr ""
|
3216 |
+
|
3217 |
+
#: views/admin/import/template.php:44
|
3218 |
+
msgid "Title & Content"
|
3219 |
+
msgstr "Titel & Inhalt"
|
3220 |
+
|
3221 |
+
#: views/admin/import/template.php:52
|
3222 |
+
msgid "Drag & drop any element on the right to set the title."
|
3223 |
+
msgstr "Drag & drop ein Element von der rechten Seite um den Titel zu setzen."
|
3224 |
+
|
3225 |
+
#: views/admin/import/template.php:71
|
3226 |
+
msgid "WooCommerce Short Description"
|
3227 |
+
msgstr "WooCommerce Kurzbeschreibung"
|
3228 |
+
|
3229 |
+
#: views/admin/import/template.php:75
|
3230 |
+
#: views/admin/import/template/_taxonomies_template.php:138
|
3231 |
+
msgid "Preview"
|
3232 |
+
msgstr "Vorschau"
|
3233 |
+
|
3234 |
+
#: views/admin/import/template.php:81
|
3235 |
+
msgid "Advanced Options"
|
3236 |
+
msgstr "Erweiterte Optionen"
|
3237 |
+
|
3238 |
+
#: views/admin/import/template.php:88
|
3239 |
+
msgid "Keep line breaks from file"
|
3240 |
+
msgstr "Behalte Zeilenumbruch der Datei"
|
3241 |
+
|
3242 |
+
#: views/admin/import/template.php:93
|
3243 |
+
msgid "Decode HTML entities with <b>html_entity_decode</b>"
|
3244 |
+
msgstr "Dekodiere HTML Entitäten mit <b>html_entity_decode</b>"
|
3245 |
+
|
3246 |
+
#: views/admin/import/template.php:161 views/admin/settings/index.php:212
|
3247 |
+
msgid "Function Editor"
|
3248 |
+
msgstr ""
|
3249 |
+
|
3250 |
+
#: views/admin/import/template.php:171 views/admin/settings/index.php:220
|
3251 |
+
msgid "Save Functions"
|
3252 |
+
msgstr ""
|
3253 |
+
|
3254 |
+
#: views/admin/import/template.php:172 views/admin/settings/index.php:221
|
3255 |
+
msgid "Add functions here for use during your import. You can access this file at %s"
|
3256 |
+
msgstr ""
|
3257 |
+
|
3258 |
+
#: views/admin/import/template.php:197
|
3259 |
+
msgid "Save settings as a template"
|
3260 |
+
msgstr "Speichere Einstellungen als Vorlage"
|
3261 |
+
|
3262 |
+
#: views/admin/import/template.php:200
|
3263 |
+
msgid "Template name..."
|
3264 |
+
msgstr "Vorlagen Name..."
|
3265 |
+
|
3266 |
+
#: views/admin/import/template.php:205
|
3267 |
+
msgid "Load Template..."
|
3268 |
+
msgstr "Lade Vorlage..."
|
3269 |
+
|
3270 |
+
#: views/admin/import/template.php:225
|
3271 |
+
msgid "Back to Step 2"
|
3272 |
+
msgstr "Zurück zu Schritt 2"
|
3273 |
+
|
3274 |
+
#: views/admin/import/template.php:229
|
3275 |
+
msgid "Continue to Step 4"
|
3276 |
+
msgstr ""
|
3277 |
+
|
3278 |
+
#: views/admin/import/template/_custom_fields_template.php:27
|
3279 |
+
msgid "Your website is using Custom Fields to store data for %s."
|
3280 |
+
msgstr "Ihre Website benutzt individuelle Felder zur Datenspeicherung von %s."
|
3281 |
+
|
3282 |
+
#: views/admin/import/template/_custom_fields_template.php:28
|
3283 |
+
#: views/admin/import/template/_term_meta_template.php:28
|
3284 |
+
msgid "See Detected Fields"
|
3285 |
+
msgstr "Siehe erkannte Felder"
|
3286 |
+
|
3287 |
+
#: views/admin/import/template/_custom_fields_template.php:30
|
3288 |
+
msgid "No Custom Fields are present in your database for %s."
|
3289 |
+
msgstr "Keine selbst erstellten Felder in der Datenbank für %s"
|
3290 |
+
|
3291 |
+
#: views/admin/import/template/_custom_fields_template.php:31
|
3292 |
+
#: views/admin/import/template/_term_meta_template.php:31
|
3293 |
+
msgid "Manually create a %s, and fill out each field you want to import data to. WP All Import will then display these fields as available for import below."
|
3294 |
+
msgstr "Erstellen Sie Manuell ein %s und füllen Sie jedes Feld aus das Sie importieren wollen. WP All Import wird diese Felder als Verfügbar für den Import anzeigen."
|
3295 |
+
|
3296 |
+
#: views/admin/import/template/_custom_fields_template.php:33
|
3297 |
+
#: views/admin/import/template/_custom_fields_template.php:41
|
3298 |
+
#: views/admin/import/template/_term_meta_template.php:33
|
3299 |
+
#: views/admin/import/template/_term_meta_template.php:41
|
3300 |
+
msgid "Hide Notice"
|
3301 |
+
msgstr "Hinweis ausblenden"
|
3302 |
+
|
3303 |
+
#: views/admin/import/template/_custom_fields_template.php:38
|
3304 |
+
#: views/admin/import/template/_term_meta_template.php:38
|
3305 |
+
msgid "Clear All Fields"
|
3306 |
+
msgstr "Alle Felder leeren"
|
3307 |
+
|
3308 |
+
#: views/admin/import/template/_custom_fields_template.php:40
|
3309 |
+
#: views/admin/import/template/_term_meta_template.php:40
|
3310 |
+
msgid "If not all fields were detected, manually create a %s, and fill out each field you want to import data to. Then create a new import, and WP All Import will display these fields as available for import below."
|
3311 |
+
msgstr "Wenn nicht alle Felder erkannt wurden, erstellen Sie manuell ein %s und füllen Sie jedes Feld das Sie importieren wollen aus. Erstellen Sie dann einen neuen Import und WP All Import wird diese Felder für den Import anzeigen."
|
3312 |
+
|
3313 |
+
#: views/admin/import/template/_custom_fields_template.php:67
|
3314 |
+
#: views/admin/import/template/_custom_fields_template.php:276
|
3315 |
+
#: views/admin/import/template/_custom_fields_template.php:410
|
3316 |
+
#: views/admin/import/template/_term_meta_template.php:67
|
3317 |
+
#: views/admin/import/template/_term_meta_template.php:276
|
3318 |
+
#: views/admin/import/template/_term_meta_template.php:410
|
3319 |
+
msgid "Click to specify"
|
3320 |
+
msgstr "Hier klicken zum Bestimmen"
|
3321 |
+
|
3322 |
+
#: views/admin/import/template/_custom_fields_template.php:72
|
3323 |
+
#: views/admin/import/template/_custom_fields_template.php:281
|
3324 |
+
#: views/admin/import/template/_custom_fields_template.php:415
|
3325 |
+
#: views/admin/import/template/_term_meta_template.php:72
|
3326 |
+
#: views/admin/import/template/_term_meta_template.php:281
|
3327 |
+
#: views/admin/import/template/_term_meta_template.php:415
|
3328 |
+
msgid "Serialized"
|
3329 |
+
msgstr "Fortsetzung"
|
3330 |
+
|
3331 |
+
#: views/admin/import/template/_custom_fields_template.php:85
|
3332 |
+
#: views/admin/import/template/_custom_fields_template.php:294
|
3333 |
+
#: views/admin/import/template/_custom_fields_template.php:428
|
3334 |
+
#: views/admin/import/template/_term_meta_template.php:85
|
3335 |
+
#: views/admin/import/template/_term_meta_template.php:294
|
3336 |
+
#: views/admin/import/template/_term_meta_template.php:428
|
3337 |
+
msgid "Key"
|
3338 |
+
msgstr "Schlüssel"
|
3339 |
+
|
3340 |
+
#: views/admin/import/template/_custom_fields_template.php:156
|
3341 |
+
#: views/admin/import/template/_custom_fields_template.php:536
|
3342 |
+
msgid "Add Custom Field"
|
3343 |
+
msgstr "Individuelles Feld hinzufügen"
|
3344 |
+
|
3345 |
+
#: views/admin/import/template/_custom_fields_template.php:162
|
3346 |
+
#: views/admin/import/template/_custom_fields_template.php:330
|
3347 |
+
#: views/admin/import/template/_custom_fields_template.php:464
|
3348 |
+
#: views/admin/import/template/_term_meta_template.php:162
|
3349 |
+
#: views/admin/import/template/_term_meta_template.php:330
|
3350 |
+
#: views/admin/import/template/_term_meta_template.php:464
|
3351 |
+
msgid "Auto-Detect"
|
3352 |
+
msgstr "Automatische Erkennung"
|
3353 |
+
|
3354 |
+
#: views/admin/import/template/_custom_fields_template.php:167
|
3355 |
+
#: views/admin/import/template/_custom_fields_template.php:335
|
3356 |
+
#: views/admin/import/template/_custom_fields_template.php:469
|
3357 |
+
#: views/admin/import/template/_term_meta_template.php:167
|
3358 |
+
#: views/admin/import/template/_term_meta_template.php:335
|
3359 |
+
#: views/admin/import/template/_term_meta_template.php:469
|
3360 |
+
#: views/admin/license/index.php:40
|
3361 |
+
msgid "Save"
|
3362 |
+
msgstr "Speichern"
|
3363 |
+
|
3364 |
+
#: views/admin/import/template/_featured_template.php:8
|
3365 |
+
msgid "Show hints"
|
3366 |
+
msgstr "Zeige Hinweise"
|
3367 |
+
|
3368 |
+
#: views/admin/import/template/_featured_template.php:15
|
3369 |
+
msgid "Download images hosted elsewhere"
|
3370 |
+
msgstr ""
|
3371 |
+
|
3372 |
+
#: views/admin/import/template/_featured_template.php:19
|
3373 |
+
msgid "Enter image URL one per line, or separate them with a "
|
3374 |
+
msgstr "Geben Sie eine Bild URL pro Zeile ein, oder teilen Sie diese mit einem"
|
3375 |
+
|
3376 |
+
#: views/admin/import/template/_featured_template.php:25
|
3377 |
+
msgid "Use images currently in Media Library"
|
3378 |
+
msgstr ""
|
3379 |
+
|
3380 |
+
#: views/admin/import/template/_featured_template.php:29
|
3381 |
+
#: views/admin/import/template/_featured_template.php:39
|
3382 |
+
msgid "Enter image filenames one per line, or separate them with a "
|
3383 |
+
msgstr "Geben Sie einen Bildnamen pro Zeile ein, oder teilen Sie diese mit einem"
|
3384 |
+
|
3385 |
+
#: views/admin/import/template/_featured_template.php:36
|
3386 |
+
msgid "Use images currently uploaded in %s"
|
3387 |
+
msgstr ""
|
3388 |
+
|
3389 |
+
#: views/admin/import/template/_featured_template.php:44
|
3390 |
+
msgid "Image Options"
|
3391 |
+
msgstr ""
|
3392 |
+
|
3393 |
+
#: views/admin/import/template/_featured_template.php:49
|
3394 |
+
msgid "Search through the Media Library for existing images before importing new images"
|
3395 |
+
msgstr "Durchsuche die Medien Bibliothek nach existierenden Bildern bevor neue Bilder importiert werden."
|
3396 |
+
|
3397 |
+
#: views/admin/import/template/_featured_template.php:50
|
3398 |
+
msgid "If an image with the same file name is found in the Media Library then that image will be attached to this record instead of importing a new image. Disable this setting if your import has different images with the same file name."
|
3399 |
+
msgstr "Wird ein Bild mit dem selben Dateinamen in der Medien Bibliothek gefunden, dann wird dieses Bild an den Datensatz angehängt anstatt ein neues importiert. Deaktivieren Sie diese Einstellung wenn Ihr Import mehrere Bilder mit dem selben Dateinamen hat."
|
3400 |
+
|
3401 |
+
#: views/admin/import/template/_featured_template.php:55
|
3402 |
+
msgid "Keep images currently in Media Library"
|
3403 |
+
msgstr ""
|
3404 |
+
|
3405 |
+
#: views/admin/import/template/_featured_template.php:56
|
3406 |
+
msgid "If disabled, images attached to imported posts will be deleted and then all images will be imported."
|
3407 |
+
msgstr ""
|
3408 |
+
|
3409 |
+
#: views/admin/import/template/_featured_template.php:62
|
3410 |
+
msgid "Preview & Test"
|
3411 |
+
msgstr "Vorschau & Test"
|
3412 |
+
|
3413 |
+
#: views/admin/import/template/_featured_template.php:67
|
3414 |
+
msgid "Set the first image to the Featured Image (_thumbnail_id)"
|
3415 |
+
msgstr "Setze das erste Bild als Featured Bild (_thumbnail_id)"
|
3416 |
+
|
3417 |
+
#: views/admin/import/template/_featured_template.php:72
|
3418 |
+
msgid "If no images are downloaded successfully, create entry as Draft."
|
3419 |
+
msgstr "Wenn keine Bilder heruntergeladen werden können, erstelle den Eintrag als Entwurf."
|
3420 |
+
|
3421 |
+
#: views/admin/import/template/_featured_template.php:83
|
3422 |
+
msgid "SEO & Advanced Options"
|
3423 |
+
msgstr "SEO & Erweiterte Optionen"
|
3424 |
+
|
3425 |
+
#: views/admin/import/template/_featured_template.php:91
|
3426 |
+
msgid "Meta Data"
|
3427 |
+
msgstr "Meta Daten"
|
3428 |
+
|
3429 |
+
#: views/admin/import/template/_featured_template.php:95
|
3430 |
+
msgid "Set Title(s)"
|
3431 |
+
msgstr "SEO Titel"
|
3432 |
+
|
3433 |
+
#: views/admin/import/template/_featured_template.php:97
|
3434 |
+
#: views/admin/import/template/_featured_template.php:108
|
3435 |
+
#: views/admin/import/template/_featured_template.php:119
|
3436 |
+
msgid "Enter one per line, or separate them with a "
|
3437 |
+
msgstr "Geben Sie eine pro Zeile ein, oder teilen Sie diese mit einem"
|
3438 |
+
|
3439 |
+
#: views/admin/import/template/_featured_template.php:99
|
3440 |
+
msgid "The first title will be linked to the first image, the second title will be linked to the second image, ..."
|
3441 |
+
msgstr "Der erste Titel wird mit dem ersten Bild verlinkt, der zweite wird mit dem zweiten Bild verlinkt, ..."
|
3442 |
+
|
3443 |
+
#: views/admin/import/template/_featured_template.php:106
|
3444 |
+
msgid "Set Caption(s)"
|
3445 |
+
msgstr "Setze Beschriftung"
|
3446 |
+
|
3447 |
+
#: views/admin/import/template/_featured_template.php:110
|
3448 |
+
msgid "The first caption will be linked to the first image, the second caption will be linked to the second image, ..."
|
3449 |
+
msgstr "Die erste Beschriftung wird mit dem ersten Bild verlinkt, die zweite wird mit dem zweiten Bild verlinkt, ..."
|
3450 |
+
|
3451 |
+
#: views/admin/import/template/_featured_template.php:117
|
3452 |
+
msgid "Set Alt Text(s)"
|
3453 |
+
msgstr "Setze alle Texte"
|
3454 |
+
|
3455 |
+
#: views/admin/import/template/_featured_template.php:121
|
3456 |
+
msgid "The first alt text will be linked to the first image, the second alt text will be linked to the second image, ..."
|
3457 |
+
msgstr "Der erste Text wird mit dem ersten Bild verlinkt, der zweite wird mit dem zweiten Bild verlinkt, ..."
|
3458 |
+
|
3459 |
+
#: views/admin/import/template/_featured_template.php:128
|
3460 |
+
msgid "Set Description(s)"
|
3461 |
+
msgstr "Setze Beschreibung(en)"
|
3462 |
+
|
3463 |
+
#: views/admin/import/template/_featured_template.php:132
|
3464 |
+
msgid "Separate them with a"
|
3465 |
+
msgstr ""
|
3466 |
+
|
3467 |
+
#: views/admin/import/template/_featured_template.php:137
|
3468 |
+
msgid "Enter them one per line"
|
3469 |
+
msgstr ""
|
3470 |
+
|
3471 |
+
#: views/admin/import/template/_featured_template.php:139
|
3472 |
+
msgid "The first description will be linked to the first image, the second description will be linked to the second image, ..."
|
3473 |
+
msgstr "Die erste Beschreibung wird mit dem ersten Bild verlinkt, die zweite wird mit dem zweiten Bild verlinkt, ..."
|
3474 |
+
|
3475 |
+
#: views/admin/import/template/_featured_template.php:143
|
3476 |
+
#: views/admin/settings/index.php:79
|
3477 |
+
msgid "Files"
|
3478 |
+
msgstr "Dateien"
|
3479 |
+
|
3480 |
+
#: views/admin/import/template/_featured_template.php:145
|
3481 |
+
msgid "These options only available if Download images hosted elsewhere is selected above."
|
3482 |
+
msgstr ""
|
3483 |
+
|
3484 |
+
#: views/admin/import/template/_featured_template.php:149
|
3485 |
+
msgid "Change image file names to"
|
3486 |
+
msgstr "Ändere die Dateinamen der Bilder zu"
|
3487 |
+
|
3488 |
+
#: views/admin/import/template/_featured_template.php:152
|
3489 |
+
msgid "Multiple image will have numbers appended, i.e. image-name-1.jpg, image-name-2.jpg "
|
3490 |
+
msgstr "Mehrfachen Bildern werden Zahlen angehängt, Bsp: Bild-name-1.jpg,Bild-name-2.jpg"
|
3491 |
+
|
3492 |
+
#: views/admin/import/template/_featured_template.php:158
|
3493 |
+
msgid "Change image file extensions"
|
3494 |
+
msgstr "Ändere Bild Dateierweiterung"
|
3495 |
+
|
3496 |
+
#: views/admin/import/template/_featured_template.php:176
|
3497 |
+
msgid "WP All Import will automatically ignore elements with blank image URLs/filenames."
|
3498 |
+
msgstr "WP All Import wird automatisch die Elemente ignorieren die leere Bild URLs oder Dateinamen haben."
|
3499 |
+
|
3500 |
+
#: views/admin/import/template/_featured_template.php:177
|
3501 |
+
msgid "WP All Import must download the images to your server. You can't have images in a Gallery that are referenced by external URL. That's just how WordPress works."
|
3502 |
+
msgstr "WP All Import muss die Bilder auf Ihren Server laden. Sie können keine Bilder in Ihrer Galerie haben die einen Link auf eine externe URL haben. So funktioniert WordPress."
|
3503 |
+
|
3504 |
+
#: views/admin/import/template/_featured_template.php:178
|
3505 |
+
msgid "Importing a variable number of images can be done using a <a href=\"%s\" target=\"_blank\">FOREACH LOOP</a>"
|
3506 |
+
msgstr "Eine Variable Anzahl an Bildern zu importieren kann mittels <a href=\"%s\" target=\"_blank\">Schleifendurchlauf</a> durchgeführt werden."
|
3507 |
+
|
3508 |
+
#: views/admin/import/template/_featured_template.php:179
|
3509 |
+
msgid "For more information check out our <a href=\"%s\" target=\"_blank\">comprehensive documentation</a>"
|
3510 |
+
msgstr "Für mehr Informationen schauen Sie doch in unserer <a href=\"%s\" target=\"_blank\">Umfassender Dokumentation</a>"
|
3511 |
+
|
3512 |
+
#: views/admin/import/template/_nested_template.php:35
|
3513 |
+
msgid "Nested XML/CSV files"
|
3514 |
+
msgstr "Verschachtelte XML/CSV Dateien"
|
3515 |
+
|
3516 |
+
#: views/admin/import/template/_nested_template.php:48
|
3517 |
+
msgid "remove"
|
3518 |
+
msgstr "Entfernen"
|
3519 |
+
|
3520 |
+
#: views/admin/import/template/_nested_template.php:69
|
3521 |
+
msgid "Specify the URL of the nested file to use."
|
3522 |
+
msgstr "Bestimmen Sie die URL der verschachtelten Datei."
|
3523 |
+
|
3524 |
+
#: views/admin/import/template/_nested_template.php:73
|
3525 |
+
msgid "Add"
|
3526 |
+
msgstr "Hinzufügen"
|
3527 |
+
|
3528 |
+
#: views/admin/import/template/_other_template.php:16
|
3529 |
+
#: views/admin/import/template/_term_other_template.php:13
|
3530 |
+
msgid "Other %s Options"
|
3531 |
+
msgstr "Andere %s Optionen"
|
3532 |
+
|
3533 |
+
#: views/admin/import/template/_other_template.php:28
|
3534 |
+
msgid "Post Status"
|
3535 |
+
msgstr "Post Status"
|
3536 |
+
|
3537 |
+
#: views/admin/import/template/_other_template.php:31
|
3538 |
+
msgid "Published"
|
3539 |
+
msgstr "Veröffentlicht"
|
3540 |
+
|
3541 |
+
#: views/admin/import/template/_other_template.php:35
|
3542 |
+
msgid "Draft"
|
3543 |
+
msgstr "Entwurf"
|
3544 |
+
|
3545 |
+
#: views/admin/import/template/_other_template.php:43
|
3546 |
+
msgid "The value of presented XPath should be one of the following: ('publish', 'draft', 'trash')."
|
3547 |
+
msgstr "Der Wert des gegenwärtigen XPath sollte einer der folgenden sein: ('veröffentlichen', 'Entwurf', 'Papierkorb')."
|
3548 |
+
|
3549 |
+
#: views/admin/import/template/_other_template.php:52
|
3550 |
+
msgid "Post Dates"
|
3551 |
+
msgstr "Post Datum"
|
3552 |
+
|
3553 |
+
#: views/admin/import/template/_other_template.php:52
|
3554 |
+
msgid "Use any format supported by the PHP <b>strtotime</b> function. That means pretty much any human-readable date will work."
|
3555 |
+
msgstr "Benutzen Sie ein Format das von der PHP <b>strtotime</b> Funktion unterstützt wird. Das bedeutet, dass jedes menschlich lesbare Datum funktioniert."
|
3556 |
+
|
3557 |
+
#: views/admin/import/template/_other_template.php:56
|
3558 |
+
msgid "As specified"
|
3559 |
+
msgstr "Wie Bestimmt"
|
3560 |
+
|
3561 |
+
#: views/admin/import/template/_other_template.php:65
|
3562 |
+
msgid "Random dates"
|
3563 |
+
msgstr "Zufällige Datum"
|
3564 |
+
|
3565 |
+
#: views/admin/import/template/_other_template.php:65
|
3566 |
+
msgid "Posts will be randomly assigned dates in this range. WordPress ensures posts with dates in the future will not appear until their date has been reached."
|
3567 |
+
msgstr "Posts bekommen zufällige Datum in diesem Bereich. WordPress lässt Posts mit Datum in der Zukunft zu, diese erscheinen nicht bis dieses Datum erreicht ist. "
|
3568 |
+
|
3569 |
+
#: views/admin/import/template/_other_template.php:69
|
3570 |
+
#: views/admin/manage/delete.php:56
|
3571 |
+
msgid "and"
|
3572 |
+
msgstr "und"
|
3573 |
+
|
3574 |
+
#: views/admin/import/template/_other_template.php:77
|
3575 |
+
msgid "Comments"
|
3576 |
+
msgstr "Kommentare"
|
3577 |
+
|
3578 |
+
#: views/admin/import/template/_other_template.php:80
|
3579 |
+
#: views/admin/import/template/_other_template.php:103
|
3580 |
+
msgid "Open"
|
3581 |
+
msgstr "Offen"
|
3582 |
+
|
3583 |
+
#: views/admin/import/template/_other_template.php:84
|
3584 |
+
#: views/admin/import/template/_other_template.php:107
|
3585 |
+
msgid "Closed"
|
3586 |
+
msgstr "Geschlossen"
|
3587 |
+
|
3588 |
+
#: views/admin/import/template/_other_template.php:92
|
3589 |
+
#: views/admin/import/template/_other_template.php:115
|
3590 |
+
msgid "The value of presented XPath should be one of the following: ('open', 'closed')."
|
3591 |
+
msgstr "Der Wert des gegenwärtigen XPath sollte einer der folgenden sein: ('Offen','Geschlossen')."
|
3592 |
+
|
3593 |
+
#: views/admin/import/template/_other_template.php:100
|
3594 |
+
msgid "Trackbacks and Pingbacks"
|
3595 |
+
msgstr "Trackbacks und Pingbacks"
|
3596 |
+
|
3597 |
+
#: views/admin/import/template/_other_template.php:123
|
3598 |
+
msgid "Post Slug"
|
3599 |
+
msgstr "Post Slug"
|
3600 |
+
|
3601 |
+
#: views/admin/import/template/_other_template.php:131
|
3602 |
+
msgid "Post Author"
|
3603 |
+
msgstr "Post Autor"
|
3604 |
+
|
3605 |
+
#: views/admin/import/template/_other_template.php:133
|
3606 |
+
msgid "Assign the post to an existing user account by specifying the user ID, username, or e-mail address."
|
3607 |
+
msgstr "Ordne den Post einem bestehenden Benutzerkonto zu durch bestimmen der ID, des Benutzernamen oder der Email Adresse."
|
3608 |
+
|
3609 |
+
#: views/admin/import/template/_other_template.php:139
|
3610 |
+
msgid "Download & Import Attachments"
|
3611 |
+
msgstr "Herunterladen & Importiere Anhänge"
|
3612 |
+
|
3613 |
+
#: views/admin/import/template/_other_template.php:140
|
3614 |
+
#: views/admin/import/template/_taxonomies_template.php:65
|
3615 |
+
#: views/admin/import/template/_taxonomies_template.php:122
|
3616 |
+
#: views/admin/import/template/_taxonomies_template.php:134
|
3617 |
+
#: views/admin/import/template/_taxonomies_template.php:212
|
3618 |
+
msgid "Separated by"
|
3619 |
+
msgstr "Getrennt durch"
|
3620 |
+
|
3621 |
+
#: views/admin/import/template/_other_template.php:148
|
3622 |
+
msgid "Search for existing attachments to prevent duplicates in media library"
|
3623 |
+
msgstr "Suche nach existierenden Anhängen um vor Duplikaten in der Medien Bibliothek zu schützen"
|
3624 |
+
|
3625 |
+
#: views/admin/import/template/_other_template.php:155
|
3626 |
+
msgid "Post Format"
|
3627 |
+
msgstr "Post Format"
|
3628 |
+
|
3629 |
+
#: views/admin/import/template/_other_template.php:161
|
3630 |
+
msgid "Standard"
|
3631 |
+
msgstr "Standard"
|
3632 |
+
|
3633 |
+
#: views/admin/import/template/_other_template.php:193
|
3634 |
+
msgid "Page Template"
|
3635 |
+
msgstr "Seiten Vorlage"
|
3636 |
+
|
3637 |
+
#: views/admin/import/template/_other_template.php:196
|
3638 |
+
msgid "Select a template"
|
3639 |
+
msgstr "Wählen Sie eine Vorlage"
|
3640 |
+
|
3641 |
+
#: views/admin/import/template/_other_template.php:200
|
3642 |
+
msgid "Default"
|
3643 |
+
msgstr "Standard"
|
3644 |
+
|
3645 |
+
#: views/admin/import/template/_other_template.php:222
|
3646 |
+
msgid "Page Parent"
|
3647 |
+
msgstr "Seiten Eltern"
|
3648 |
+
|
3649 |
+
#: views/admin/import/template/_other_template.php:222
|
3650 |
+
msgid "Enter the ID, title, or slug of the desired page parent. If adding the child and parent pages in the same import, set 'Records per Iteration' to 1, run the import twice, or run separate imports for child and parent pages."
|
3651 |
+
msgstr ""
|
3652 |
+
|
3653 |
+
#: views/admin/import/template/_other_template.php:226
|
3654 |
+
msgid "Select page parent"
|
3655 |
+
msgstr "Wähle Elternseite"
|
3656 |
+
|
3657 |
+
#: views/admin/import/template/_other_template.php:229
|
3658 |
+
msgid "(no parent)"
|
3659 |
+
msgstr "(keine Eltern)"
|
3660 |
+
|
3661 |
+
#: views/admin/import/template/_other_template.php:248
|
3662 |
+
msgid "Post Parent"
|
3663 |
+
msgstr "Eltern Post"
|
3664 |
+
|
3665 |
+
#: views/admin/import/template/_other_template.php:248
|
3666 |
+
msgid "Enter the ID, title, or slug of the desired post parent. If adding the child and parent posts in the same import, set 'Records per Iteration' to 1, run the import twice, or run separate imports for child and parent posts."
|
3667 |
+
msgstr ""
|
3668 |
+
|
3669 |
+
#: views/admin/import/template/_other_template.php:252
|
3670 |
+
msgid "Set post parent"
|
3671 |
+
msgstr "Setze Eltern Post"
|
3672 |
+
|
3673 |
+
#: views/admin/import/template/_other_template.php:276
|
3674 |
+
msgid "Menu Order"
|
3675 |
+
msgstr "Menü Reihenfolge"
|
3676 |
+
|
3677 |
+
#: views/admin/import/template/_other_template.php:285
|
3678 |
+
msgid "Dynamic Post Type"
|
3679 |
+
msgstr ""
|
3680 |
+
|
3681 |
+
#: views/admin/import/template/_other_template.php:295
|
3682 |
+
msgid "If records in this import have different post types specify the slug of the desired post type here.\n"
|
3683 |
+
""
|
3684 |
+
msgstr ""
|
3685 |
+
|
3686 |
+
#: views/admin/import/template/_taxonomies_template.php:13
|
3687 |
+
msgid "Taxonomies, Categories, Tags"
|
3688 |
+
msgstr "Taxonomien, Kategorien, Tags"
|
3689 |
+
|
3690 |
+
#: views/admin/import/template/_taxonomies_template.php:17
|
3691 |
+
msgid "Show Hints"
|
3692 |
+
msgstr "Zeige Hinweise"
|
3693 |
+
|
3694 |
+
#: views/admin/import/template/_taxonomies_template.php:38
|
3695 |
+
msgid "Each %s has just one %s"
|
3696 |
+
msgstr "Jedes %s hat genau eine %s"
|
3697 |
+
|
3698 |
+
#: views/admin/import/template/_taxonomies_template.php:46
|
3699 |
+
#: views/admin/import/template/_taxonomies_template.php:70
|
3700 |
+
msgid "Try to match terms to existing child %s"
|
3701 |
+
msgstr "Versuche Begriffe mit bestehenden Kinder %s zusammen zu führen. "
|
3702 |
+
|
3703 |
+
#: views/admin/import/template/_taxonomies_template.php:51
|
3704 |
+
#: views/admin/import/template/_taxonomies_template.php:75
|
3705 |
+
msgid "Only assign %s to the imported %s, not the entire hierarchy"
|
3706 |
+
msgstr "Füge %s nur zu den importierten %s hinzu, nicht zu der vollständigen Hierarchie."
|
3707 |
+
|
3708 |
+
#: views/admin/import/template/_taxonomies_template.php:52
|
3709 |
+
#: views/admin/import/template/_taxonomies_template.php:76
|
3710 |
+
msgid "By default all categories above the matched category will also be assigned to the post. If enabled, only the imported category will be assigned to the post."
|
3711 |
+
msgstr "Standardmäßig werden alle Kategorien über der zugeordneten Kategorie zu dem Post hinzugefügt. Wenn Sie das aktivieren, wird der Post nur zu der angegebenen Kategorie hinzugefügt."
|
3712 |
+
|
3713 |
+
#: views/admin/import/template/_taxonomies_template.php:60
|
3714 |
+
msgid "Each %s has multiple %s"
|
3715 |
+
msgstr "Jedes %s hat mehrere %s"
|
3716 |
+
|
3717 |
+
#: views/admin/import/template/_taxonomies_template.php:85
|
3718 |
+
msgid "%ss have hierarchical (parent/child) %s (i.e. Sports > Golf > Clubs > Putters)"
|
3719 |
+
msgstr "%ss haben Hierarchische (Eltern/Kind) %s (Bsp: Sport>Golf>Clubs>Putters)"
|
3720 |
+
|
3721 |
+
#: views/admin/import/template/_taxonomies_template.php:90
|
3722 |
+
msgid "An element in my file contains the entire hierarchy (i.e. you have an element with a value = Sports > Golf > Clubs > Putters)"
|
3723 |
+
msgstr "Ein Element in der Datei hat eine vollständige Hierarchie (Bsp: Ein Element hat den Wert = Sports > Golf > Clubs > Putters)"
|
3724 |
+
|
3725 |
+
#: views/admin/import/template/_taxonomies_template.php:127
|
3726 |
+
msgid "Only assign %s to the bottom level term in the hierarchy"
|
3727 |
+
msgstr "Füge %s nur an das unterste Level der Hierarchie hinzu."
|
3728 |
+
|
3729 |
+
#: views/admin/import/template/_taxonomies_template.php:132
|
3730 |
+
msgid "Separate hierarchy groups via symbol"
|
3731 |
+
msgstr "Teile die Hierarchie Gruppen durch das Symbol"
|
3732 |
+
|
3733 |
+
#: views/admin/import/template/_taxonomies_template.php:140
|
3734 |
+
msgid "Add Another Hierarchy Group"
|
3735 |
+
msgstr "Weitere Hierarchie Gruppen hinzufügen"
|
3736 |
+
|
3737 |
+
#: views/admin/import/template/_taxonomies_template.php:147
|
3738 |
+
msgid "Manually design the hierarchy with drag & drop"
|
3739 |
+
msgstr "Erstelle die Hierarchie manuell durch drag & drop"
|
3740 |
+
|
3741 |
+
#: views/admin/import/template/_taxonomies_template.php:149
|
3742 |
+
msgid "Drag the <img src=\"%s\" class=\"wpallimport-drag-icon\"/> to the right to create a child, drag up and down to re-order."
|
3743 |
+
msgstr "Ziehe das <img src=\"%s\" class=\"wpallimport-drag-icon\"/> nach rechts um ein Kind zu erstellen, ziehe rauf und runter zum Ordnen."
|
3744 |
+
|
3745 |
+
#: views/admin/import/template/_taxonomies_template.php:215
|
3746 |
+
msgid "Add Another Row"
|
3747 |
+
msgstr ""
|
3748 |
+
|
3749 |
+
#: views/admin/import/template/_taxonomies_template.php:227
|
3750 |
+
msgid "Enable Mapping for %s"
|
3751 |
+
msgstr "Aktiviere Zuordnung für %s"
|
3752 |
+
|
3753 |
+
#: views/admin/import/template/_taxonomies_template.php:296
|
3754 |
+
msgid "Add Another Rule"
|
3755 |
+
msgstr ""
|
3756 |
+
|
3757 |
+
#: views/admin/import/template/_taxonomies_template.php:306
|
3758 |
+
msgid "Apply mapping rules before splitting via separator symbol"
|
3759 |
+
msgstr "Wende Regeln für Zuordnung an bevor eine Aufteilung mittels dem Separator Symbol erfolgt."
|
3760 |
+
|
3761 |
+
#: views/admin/import/template/_taxonomies_template.php:321
|
3762 |
+
msgid "Show \"private\" taxonomies"
|
3763 |
+
msgstr "Zeige \"Private\" Taxonomien"
|
3764 |
+
|
3765 |
+
#: views/admin/import/template/_taxonomies_template.php:332
|
3766 |
+
msgid "Taxonomies that don't already exist on your site will be created."
|
3767 |
+
msgstr "Taxonomien die noch nicht auf der Seite existieren werden erstellt."
|
3768 |
+
|
3769 |
+
#: views/admin/import/template/_taxonomies_template.php:333
|
3770 |
+
msgid "To import to existing parent taxonomies, use the existing taxonomy name or slug."
|
3771 |
+
msgstr "Zum importieren in existierende Eltern Taxonomien benutzen Sie bestehende Taxonomie Namen oder Slugs."
|
3772 |
+
|
3773 |
+
#: views/admin/import/template/_taxonomies_template.php:334
|
3774 |
+
msgid "To import to existing hierarchical taxonomies, create the entire hierarchy using the taxonomy names or slugs."
|
3775 |
+
msgstr "Um in existierende hierarchische Taxonomien zu importieren, erstellen Sie die gesamte Hierarchie und nutzen Sie die Taxonomien oder Slugs."
|
3776 |
+
|
3777 |
+
#: views/admin/import/template/_term_meta_template.php:27
|
3778 |
+
msgid "Your website is using Term Meta to store data for %s."
|
3779 |
+
msgstr ""
|
3780 |
+
|
3781 |
+
#: views/admin/import/template/_term_meta_template.php:30
|
3782 |
+
msgid "No Term Meta are present in your database for %s."
|
3783 |
+
msgstr ""
|
3784 |
+
|
3785 |
+
#: views/admin/import/template/_term_meta_template.php:156
|
3786 |
+
#: views/admin/import/template/_term_meta_template.php:536
|
3787 |
+
msgid "Add Term Meta"
|
3788 |
+
msgstr ""
|
3789 |
+
|
3790 |
+
#: views/admin/import/template/_term_other_template.php:21
|
3791 |
+
msgid "Parent Term"
|
3792 |
+
msgstr ""
|
3793 |
+
|
3794 |
+
#: views/admin/import/template/_term_other_template.php:33
|
3795 |
+
msgid "%s Slug"
|
3796 |
+
msgstr ""
|
3797 |
+
|
3798 |
+
#: views/admin/import/template/_term_other_template.php:36
|
3799 |
+
msgid "Set slug automatically"
|
3800 |
+
msgstr ""
|
3801 |
+
|
3802 |
+
#: views/admin/import/template/_term_other_template.php:40
|
3803 |
+
msgid "Set slug manually"
|
3804 |
+
msgstr ""
|
3805 |
+
|
3806 |
+
#: views/admin/import/template/_term_other_template.php:43
|
3807 |
+
msgid "Term Slug"
|
3808 |
+
msgstr ""
|
3809 |
+
|
3810 |
+
#: views/admin/import/template/_term_other_template.php:44
|
3811 |
+
msgid "The term slug must be unique. If the slug is already in use by another term, WP All Import will add a number to the end of the slug."
|
3812 |
+
msgstr ""
|
3813 |
+
|
3814 |
+
#: views/admin/license/index.php:3
|
3815 |
+
msgid "WP All Import Licenses"
|
3816 |
+
msgstr "WP All Import Lizenzen"
|
3817 |
+
|
3818 |
+
#: views/admin/license/index.php:23 views/admin/settings/index.php:163
|
3819 |
+
msgid "Active"
|
3820 |
+
msgstr "Aktiv"
|
3821 |
+
|
3822 |
+
#: views/admin/license/index.php:24
|
3823 |
+
msgid "Deactivate License"
|
3824 |
+
msgstr "Deaktiviere Lizenz"
|
3825 |
+
|
3826 |
+
#: views/admin/license/index.php:26 views/admin/settings/index.php:165
|
3827 |
+
msgid "Activate License"
|
3828 |
+
msgstr "Aktiviere Lizenz"
|
3829 |
+
|
3830 |
+
#: views/admin/manage/bulk.php:1
|
3831 |
+
msgid "Bulk Delete Imports"
|
3832 |
+
msgstr ""
|
3833 |
+
|
3834 |
+
#: views/admin/manage/bulk.php:10
|
3835 |
+
msgid "Are you sure you want to delete <strong>%s</strong> selected %s?"
|
3836 |
+
msgstr "Sind Sie sicher dass Sie das selektierte <strong>%s</strong> löschen wollen %s?"
|
3837 |
+
|
3838 |
+
#: views/admin/manage/bulk.php:12
|
3839 |
+
msgid "Delete associated posts as well"
|
3840 |
+
msgstr "Lösche auch assoziierte Posts"
|
3841 |
+
|
3842 |
+
#: views/admin/manage/bulk.php:17 views/admin/manage/delete.php:19
|
3843 |
+
msgid "Delete associated images from media gallery"
|
3844 |
+
msgstr "Lösche auch assoziierte Bilder aus der Medien Galerie"
|
3845 |
+
|
3846 |
+
#: views/admin/manage/bulk.php:22 views/admin/manage/delete.php:24
|
3847 |
+
msgid "Delete associated files from media gallery"
|
3848 |
+
msgstr "Lösche auch assoziierte Dateien aus der Media Galerie"
|
3849 |
+
|
3850 |
+
#: views/admin/manage/bulk.php:31 views/admin/manage/delete.php:32
|
3851 |
+
msgid "<p class=\"wpallimport-delete-posts-warning\"><strong>Important</strong>: this import was created automatically by WP All Export. All posts exported by the \"%s\" export job have been automatically associated with this import.</p>"
|
3852 |
+
msgstr "<p class=\"wpallimport-delete-posts-warning\"><strong>Wichtig</strong>: dieser Import wurde automatisch erstellt von WP All Export. Alle Posts die von \"%s\" exportiert wurden, wurden automatisch assoziiert mit diesem Import.</p>"
|
3853 |
+
|
3854 |
+
#: views/admin/manage/delete.php:1
|
3855 |
+
msgid "Delete Import"
|
3856 |
+
msgstr "Lösche Import"
|
3857 |
+
|
3858 |
+
#: views/admin/manage/delete.php:8
|
3859 |
+
msgid "Delete import"
|
3860 |
+
msgstr ""
|
3861 |
+
|
3862 |
+
#: views/admin/manage/delete.php:13
|
3863 |
+
msgid "Delete %s created by %s"
|
3864 |
+
msgstr ""
|
3865 |
+
|
3866 |
+
#: views/admin/manage/delete.php:56
|
3867 |
+
msgid "Are you sure you want to delete "
|
3868 |
+
msgstr ""
|
3869 |
+
|
3870 |
+
#: views/admin/manage/delete.php:56
|
3871 |
+
msgid "the <strong>%s</strong> import"
|
3872 |
+
msgstr ""
|
3873 |
+
|
3874 |
+
#: views/admin/manage/index.php:18 views/admin/manage/index.php:20
|
3875 |
+
msgid "Search Imports"
|
3876 |
+
msgstr "Suche Imports"
|
3877 |
+
|
3878 |
+
#: views/admin/manage/index.php:28
|
3879 |
+
msgid "File"
|
3880 |
+
msgstr "Datei"
|
3881 |
+
|
3882 |
+
#: views/admin/manage/index.php:31
|
3883 |
+
msgid "Info & Options"
|
3884 |
+
msgstr "Info & Optionen"
|
3885 |
+
|
3886 |
+
#: views/admin/manage/index.php:100
|
3887 |
+
msgid "No previous imports found. <a href=\"%s\">Start a new import...</a>"
|
3888 |
+
msgstr "Keine vorherigen Imports gefunden. <a href=\"%s\">Starte einen neuen Import...</a>"
|
3889 |
+
|
3890 |
+
#: views/admin/manage/index.php:182
|
3891 |
+
msgid "Edit Import"
|
3892 |
+
msgstr "Ändere Import"
|
3893 |
+
|
3894 |
+
#: views/admin/manage/index.php:187
|
3895 |
+
msgid "Import Settings"
|
3896 |
+
msgstr "Import Einstellungen"
|
3897 |
+
|
3898 |
+
#: views/admin/manage/index.php:228
|
3899 |
+
msgid "triggered with cron"
|
3900 |
+
msgstr "Ausgelöst von cron"
|
3901 |
+
|
3902 |
+
#: views/admin/manage/index.php:235 views/admin/manage/index.php:250
|
3903 |
+
#: views/admin/manage/index.php:264
|
3904 |
+
msgid "last activity %s ago"
|
3905 |
+
msgstr "Letzte Aktivität vor %s "
|
3906 |
+
|
3907 |
+
#: views/admin/manage/index.php:242
|
3908 |
+
msgid "currently processing with cron"
|
3909 |
+
msgstr "cron Bearbeitung in Gang"
|
3910 |
+
|
3911 |
+
#: views/admin/manage/index.php:257
|
3912 |
+
msgid "Import currently in progress"
|
3913 |
+
msgstr "Import Bearbeitung in Gang"
|
3914 |
+
|
3915 |
+
#: views/admin/manage/index.php:271 views/admin/manage/index.php:275
|
3916 |
+
msgid "Import Attempt at %s"
|
3917 |
+
msgstr "Import Versuch bei %s"
|
3918 |
+
|
3919 |
+
#: views/admin/manage/index.php:276
|
3920 |
+
msgid "Import failed, please check logs"
|
3921 |
+
msgstr "Import fehlgeschlagen, Bitte Log überprüfen"
|
3922 |
+
|
3923 |
+
#: views/admin/manage/index.php:295
|
3924 |
+
msgid "Last run: %s"
|
3925 |
+
msgstr "Letzter Lauf: %s"
|
3926 |
+
|
3927 |
+
#: views/admin/manage/index.php:295
|
3928 |
+
msgid "never"
|
3929 |
+
msgstr "Nie"
|
3930 |
+
|
3931 |
+
#: views/admin/manage/index.php:296
|
3932 |
+
msgid "%d %s created"
|
3933 |
+
msgstr "%d %s erstellt"
|
3934 |
+
|
3935 |
+
#: views/admin/manage/index.php:297
|
3936 |
+
msgid "%d updated, %d skipped, %d deleted"
|
3937 |
+
msgstr "%d aktualisiert, %d übersprungen, %d gelöscht"
|
3938 |
+
|
3939 |
+
#: views/admin/manage/index.php:304
|
3940 |
+
msgid "settings edited since last run"
|
3941 |
+
msgstr "Einstellungen geändert seit letztem Lauf"
|
3942 |
+
|
3943 |
+
#: views/admin/manage/index.php:316 views/admin/manage/scheduling.php:2
|
3944 |
+
msgid "Cron Scheduling"
|
3945 |
+
msgstr "Cron Geplant"
|
3946 |
+
|
3947 |
+
#: views/admin/manage/index.php:318
|
3948 |
+
msgid "History Logs"
|
3949 |
+
msgstr "Chronik Log"
|
3950 |
+
|
3951 |
+
#: views/admin/manage/index.php:328
|
3952 |
+
msgid "Run Import"
|
3953 |
+
msgstr "Starte Import"
|
3954 |
+
|
3955 |
+
#: views/admin/manage/index.php:330
|
3956 |
+
msgid "Cancel Cron"
|
3957 |
+
msgstr "Cron Abbrechen"
|
3958 |
+
|
3959 |
+
#: views/admin/manage/index.php:332
|
3960 |
+
msgid "Cancel"
|
3961 |
+
msgstr "Abbrechen"
|
3962 |
+
|
3963 |
+
#: views/admin/manage/scheduling.php:8
|
3964 |
+
msgid "To schedule an import, you must create two cron jobs in your web hosting control panel. One cron job will be used to run the Trigger script, the other to run the Execution script."
|
3965 |
+
msgstr "Um einen Import zu planen, müssen Sie zwei Cron Jobs in Ihrem web Hosting Bedienfeld erstellen. Ein Cron Job wird genutzt um das auslöse Skript zu starten, das andere um das Ausführende Skript zu starten."
|
3966 |
+
|
3967 |
+
#: views/admin/manage/scheduling.php:19
|
3968 |
+
msgid "Trigger Script"
|
3969 |
+
msgstr "Auslösendes Skript"
|
3970 |
+
|
3971 |
+
#: views/admin/manage/scheduling.php:21
|
3972 |
+
msgid "Every time you want to schedule the import, run the trigger script."
|
3973 |
+
msgstr "Jedes mal wenn Sie den Import planen wollen, starten Sie das Auslöse Skript."
|
3974 |
+
|
3975 |
+
#: views/admin/manage/scheduling.php:23
|
3976 |
+
msgid "To schedule the import to run once every 24 hours, run the trigger script every 24 hours. Most hosts require you to use “wget” to access a URL. Ask your host for details."
|
3977 |
+
msgstr "Um den Import einmal in 24 Stunden zu planen, starten Sie das Auslöse Skript alle 24 Stunden. Die meisten Hosts erlauben \"wget\" für den Zugriff auf eine URL. Fragen Sie Ihren Host für Details."
|
3978 |
+
|
3979 |
+
#: views/admin/manage/scheduling.php:25 views/admin/manage/scheduling.php:37
|
3980 |
+
msgid "Example:"
|
3981 |
+
msgstr "Beispiel:"
|
3982 |
+
|
3983 |
+
#: views/admin/manage/scheduling.php:29
|
3984 |
+
msgid "Execution Script"
|
3985 |
+
msgstr "Ausführende Skript"
|
3986 |
+
|
3987 |
+
#: views/admin/manage/scheduling.php:31
|
3988 |
+
msgid "The Execution script actually executes the import, once it has been triggered with the Trigger script."
|
3989 |
+
msgstr "Das ausführende Skript erledigt den Import, wenn es vom auslösenden Skript gestartet wurde."
|
3990 |
+
|
3991 |
+
#: views/admin/manage/scheduling.php:33
|
3992 |
+
msgid "It processes in iteration (only importing a few records each time it runs) to optimize server load. It is recommended you run the execution script every 2 minutes."
|
3993 |
+
msgstr "Es bearbeitet in Schleifendurchläufen (importiert nur ein paar Datensätze mit jedem Durchlauf) zur Optimierung der Serverlast. Es wird empfohlen das Ausführende Skript alle 2 Minuten zu starten."
|
3994 |
+
|
3995 |
+
#: views/admin/manage/scheduling.php:35
|
3996 |
+
msgid "It also operates this way in case of unexpected crashes by your web host. If it crashes before the import is finished, the next run of the cron job two minutes later will continue it where it left off, ensuring reliability."
|
3997 |
+
msgstr "So funktioniert es auch wenn unerwartete Abstürze Ihres Hosts auftreten. Wenn es abstürzt bevor der Import fertig ist, wird der nächste Lauf des cron Jobs zwei Minuten später dort weiter machen, wo der vorherige aufgehört hat."
|
3998 |
+
|
3999 |
+
#: views/admin/manage/scheduling.php:41
|
4000 |
+
msgid "Notes"
|
4001 |
+
msgstr "Hinweis"
|
4002 |
+
|
4003 |
+
#: views/admin/manage/scheduling.php:44
|
4004 |
+
msgid "Your web host may require you to use a command other than wget, although wget is most common. In this case, you must asking your web hosting provider for help."
|
4005 |
+
msgstr "Ihr Webhost benötigt evtl einen anderen Befehl als \"wget\", obwohl \"wget\" das am häufigsten genutzte ist. In diesem Fall müssen Sie Ihren Webhost Anbieter um Hilfe fragen."
|
4006 |
+
|
4007 |
+
#: views/admin/manage/scheduling.php:54
|
4008 |
+
msgid "To schedule this import with a cron job, you must use the \"Download from URL\" option on the Import Settings screen of WP All Import."
|
4009 |
+
msgstr "Um einen Import mit einem Cron Job zu planen, müssen Sie \"Von URL Herunterladen\" wählen. Diese finden Sie in den Import Einstellungen von WP All Import."
|
4010 |
+
|
4011 |
+
#: views/admin/manage/scheduling.php:57
|
4012 |
+
msgid "Go to Import Settings now..."
|
4013 |
+
msgstr "Gehe zu Import Einstellungen..."
|
4014 |
+
|
4015 |
+
#: views/admin/manage/update.php:1
|
4016 |
+
msgid "Update Import"
|
4017 |
+
msgstr "Aktualisiere Import"
|
4018 |
+
|
4019 |
+
#: views/admin/manage/update.php:9
|
4020 |
+
msgid "Are you sure you want to update <strong>%s</strong> import?"
|
4021 |
+
msgstr "Sind Sie sicher dass Sie den Import <strong>%s</strong> aktualisieren wollen?"
|
4022 |
+
|
4023 |
+
#: views/admin/manage/update.php:10
|
4024 |
+
msgid "Source path is <strong>%s</strong>"
|
4025 |
+
msgstr "Quellpfad ist <strong>%s</strong>"
|
4026 |
+
|
4027 |
+
#: views/admin/manage/update.php:21
|
4028 |
+
msgid "Update feature is not available for this import since it has no external path linked."
|
4029 |
+
msgstr "Funktion für Aktualisierung ist nicht verfügbar für diesen Import, da es keinen externen Pfad verlinkt hat."
|
4030 |
+
|
4031 |
+
#: views/admin/settings/index.php:18
|
4032 |
+
msgid "Import/Export Templates"
|
4033 |
+
msgstr "Importiere/Exportiere Vorlagen"
|
4034 |
+
|
4035 |
+
#: views/admin/settings/index.php:32
|
4036 |
+
msgid "Delete Selected"
|
4037 |
+
msgstr "Lösche Ausgewählte"
|
4038 |
+
|
4039 |
+
#: views/admin/settings/index.php:33
|
4040 |
+
msgid "Export Selected"
|
4041 |
+
msgstr "Exportiere Ausgewählte"
|
4042 |
+
|
4043 |
+
#: views/admin/settings/index.php:36
|
4044 |
+
msgid "There are no templates saved"
|
4045 |
+
msgstr "Es sind keine Vorlagen gespeichert"
|
4046 |
+
|
4047 |
+
#: views/admin/settings/index.php:41
|
4048 |
+
msgid "Import Templates"
|
4049 |
+
msgstr "Importiere Templates"
|
4050 |
+
|
4051 |
+
#: views/admin/settings/index.php:49
|
4052 |
+
msgid "Cron Imports"
|
4053 |
+
msgstr "Cron Importieren"
|
4054 |
+
|
4055 |
+
#: views/admin/settings/index.php:54
|
4056 |
+
msgid "Secret Key"
|
4057 |
+
msgstr "Geheimer Schlüssel"
|
4058 |
+
|
4059 |
+
#: views/admin/settings/index.php:57
|
4060 |
+
msgid "Changing this will require you to re-create your existing cron jobs."
|
4061 |
+
msgstr "Wenn Sie das ändern, müssen Sie Ihre existierenden Cron Jobs neu erstellen."
|
4062 |
+
|
4063 |
+
#: views/admin/settings/index.php:61
|
4064 |
+
msgid "Cron Processing Time Limit"
|
4065 |
+
msgstr "Cron Bearbeitung Zeit Limit"
|
4066 |
+
|
4067 |
+
#: views/admin/settings/index.php:64
|
4068 |
+
msgid "Leave blank to use your server's limit on script run times."
|
4069 |
+
msgstr "Leer lassen um des Servers Limit für die Skript Läufe zu nutzen."
|
4070 |
+
|
4071 |
+
#: views/admin/settings/index.php:68
|
4072 |
+
msgid "Cron Sleep"
|
4073 |
+
msgstr "Cron Schläft"
|
4074 |
+
|
4075 |
+
#: views/admin/settings/index.php:71
|
4076 |
+
msgid "Sleep the specified number of seconds between each post created, updated, or deleted with cron. Leave blank to not sleep. Only necessary on servers that are slowed down by the cron job because they have very minimal processing power and resources."
|
4077 |
+
msgstr "Schlafe die bestimmte Zahl von Sekunden zwischen jedem erstellten, aktualisierten oder gelöschten Post. Leer lassen um nicht zu schlafen. Nur nötig auf Servern die durch den Cron verlangsamt werden da sie zu wenig Prozessorleistung und Ressourcen haben."
|
4078 |
+
|
4079 |
+
#: views/admin/settings/index.php:84 views/admin/settings/index.php:87
|
4080 |
+
msgid "Secure Mode"
|
4081 |
+
msgstr "Quellen Art"
|
4082 |
+
|
4083 |
+
#: views/admin/settings/index.php:89
|
4084 |
+
msgid "Randomize folder names"
|
4085 |
+
msgstr "Verzeichnis Namen zufällig anordnen"
|
4086 |
+
|
4087 |
+
#: views/admin/settings/index.php:95
|
4088 |
+
msgid "Imported files, chunks, logs and temporary files will be placed in a folder with a randomized name inside of %s."
|
4089 |
+
msgstr "Importierte Dateien, Datenblöcke, Logs und temporäre Dateien werden in ein Verzeichnis mit zufällig angeordneten Namen geschrieben %s.."
|
4090 |
+
|
4091 |
+
#: views/admin/settings/index.php:100
|
4092 |
+
msgid "Log Storage"
|
4093 |
+
msgstr "Log Speicher"
|
4094 |
+
|
4095 |
+
#: views/admin/settings/index.php:103
|
4096 |
+
msgid "Number of logs to store for each import. Enter 0 to never store logs."
|
4097 |
+
msgstr "Anzahl an Logs die für jeden Import gespeichert werden. Geben Sie 0 ein um niemals Logs zu speichern."
|
4098 |
+
|
4099 |
+
#: views/admin/settings/index.php:107
|
4100 |
+
msgid "Clean Up Temp Files"
|
4101 |
+
msgstr "Räume temporäre Dateien auf"
|
4102 |
+
|
4103 |
+
#: views/admin/settings/index.php:109
|
4104 |
+
msgid "Clean Up"
|
4105 |
+
msgstr "Aufräumen"
|
4106 |
+
|
4107 |
+
#: views/admin/settings/index.php:110
|
4108 |
+
msgid "Attempt to remove temp files left over by imports that were improperly terminated."
|
4109 |
+
msgstr "Versuche die temporären Dateien zu entfernen, die von unsachgemäß beendeten Imports übrig blieben."
|
4110 |
+
|
4111 |
+
#: views/admin/settings/index.php:118
|
4112 |
+
msgid "Advanced Settings"
|
4113 |
+
msgstr "Erweiterte Einstellungen"
|
4114 |
+
|
4115 |
+
#: views/admin/settings/index.php:123
|
4116 |
+
msgid "Chunk Size"
|
4117 |
+
msgstr "Datenblock Größe "
|
4118 |
+
|
4119 |
+
#: views/admin/settings/index.php:126
|
4120 |
+
msgid "Split file into chunks containing the specified number of records."
|
4121 |
+
msgstr "Teile Datei in Datenblöcke die die bestimmte Zahl an Datensätzen enthalten."
|
4122 |
+
|
4123 |
+
#: views/admin/settings/index.php:130
|
4124 |
+
msgid "WP_IMPORTING"
|
4125 |
+
msgstr "WP_IMPORTIERT"
|
4126 |
+
|
4127 |
+
#: views/admin/settings/index.php:134
|
4128 |
+
msgid "Enable WP_IMPORTING"
|
4129 |
+
msgstr "Aktiviere WP_IMPORTIERT"
|
4130 |
+
|
4131 |
+
#: views/admin/settings/index.php:136
|
4132 |
+
msgid "Setting this constant avoids triggering pingback."
|
4133 |
+
msgstr "Wenn Sie diese Einstellung aktivieren, verhindern Sie die Auslösung eines pingback."
|
4134 |
+
|
4135 |
+
#: views/admin/settings/index.php:140
|
4136 |
+
msgid "Add Port To URL"
|
4137 |
+
msgstr "Füge Port zu URL hinzu"
|
4138 |
+
|
4139 |
+
#: views/admin/settings/index.php:143
|
4140 |
+
msgid "Specify the port number to add if you're having problems continuing to Step 2 and are running things on a custom port. Default is blank."
|
4141 |
+
msgstr "Bestimmen Sie die hinzuzufügende Port Nummer wenn Sie Probleme haben zu Schritt 2 zu gelangen und dinge auf einem individuellen Port laufen lassen. Standard ist leer."
|
4142 |
+
|
4143 |
+
#: views/admin/settings/index.php:150
|
4144 |
+
msgid "Licenses"
|
4145 |
+
msgstr "Lizenzen"
|
4146 |
+
|
4147 |
+
#: views/admin/settings/index.php:157
|
4148 |
+
msgid "License Key"
|
4149 |
+
msgstr "Lizenz Schlüssel"
|
4150 |
+
|
4151 |
+
#: views/admin/settings/index.php:170
|
4152 |
+
msgid "A license key is required to access plugin updates. You can use your license key on an unlimited number of websites. Do not distribute your license key to 3rd parties. You can get your license key in the <a target=\"_blank\" href=\"http://www.wpallimport.com/portal\">customer portal</a>."
|
4153 |
+
msgstr "Ein Lizenz Schlüssel wird benötigt um Zugang auf Plugin Updates zu haben. Sie können Ihren Lizenz Schlüssel auf einer unbestimmten Anzahl von Webseiten nutzen. Geben Sie Ihren Schlüssel nicht an dritte weiter. Sie können Ihren Lizenz Schlüssel im <a target=\"_blank\" href=\"http://www.wpallimport.com/portal\">Kunden Portal</a> bekommen."
|
4154 |
+
|
4155 |
+
#: views/admin/settings/index.php:177
|
4156 |
+
msgid "Force Stream Reader"
|
4157 |
+
msgstr ""
|
4158 |
+
|
4159 |
+
#: views/admin/settings/index.php:182
|
4160 |
+
msgid "Force WP All Import to use StreamReader instead of XMLReader to parse all import files"
|
4161 |
+
msgstr ""
|
4162 |
+
|
4163 |
+
#: views/admin/settings/index.php:186
|
4164 |
+
msgid "Enable Stream Reader"
|
4165 |
+
msgstr ""
|
4166 |
+
|
4167 |
+
#: wp-all-import-pro.php:20
|
4168 |
+
msgid "Please de-activate and remove the free version of WP All Import before activating the paid version."
|
4169 |
+
msgstr "Bitte deaktivieren und entfernen Sie die freie Version von WP All Import bevor Sie die bezahlte Version aktivieren."
|
4170 |
+
|
4171 |
+
#: wp-all-import-pro.php:332
|
4172 |
+
msgid "To enable updates, please enter your license key on the <a href=\"%s\">Licenses</a> page. If you don't have a licence key, please see <a href=\"%s\">details & pricing</a>"
|
4173 |
+
msgstr "Um Updates zu aktivieren, geben Sie bitte Ihren Lizenz Schlüssel auf der <a href=\"%s\">Lizenzen</a> Seite ein. Wenn Sie noch keinen Lizenz Schlüssel haben, finden Sie hier <a href=\"%s\">Details und Preise</a>"
|
4174 |
+
|
4175 |
+
#: wp-all-import-pro.php:819 wp-all-import-pro.php:823
|
4176 |
+
msgid "Uploads folder %s must be writable"
|
4177 |
+
msgstr "Ordner %s muss beschreibbar sein"
|
4178 |
+
|
4179 |
+
#: wp-all-import-pro.php:960
|
4180 |
+
msgid "<b>%s Plugin</b>: Current sql user %s doesn't have ALTER privileges"
|
4181 |
+
msgstr "<b>%s Plugin:</b> Aktuelle SQL-Benutzer%s verfügen nicht über Änderungsrechte"
|
4182 |
+
|
4183 |
+
#. Plugin Name of the plugin/theme
|
4184 |
+
#:
|
4185 |
+
msgid "WP All Import Pro"
|
4186 |
+
msgstr ""
|
4187 |
+
|
4188 |
+
#. Plugin URI of the plugin/theme
|
4189 |
+
#:
|
4190 |
+
msgid "http://www.wpallimport.com/"
|
4191 |
+
msgstr ""
|
4192 |
+
|
4193 |
+
#. Description of the plugin/theme
|
4194 |
+
#:
|
4195 |
+
msgid "The most powerful solution for importing XML and CSV files to WordPress. Import to Posts, Pages, and Custom Post Types. Support for imports that run on a schedule, ability to update existing imports, and much more."
|
4196 |
+
msgstr ""
|
4197 |
+
|
4198 |
+
#. Author of the plugin/theme
|
4199 |
+
#:
|
4200 |
+
msgid "Soflyy"
|
4201 |
+
msgstr ""
|
4202 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
i18n/languages/wp_all_import_plugin-es_ES.mo
CHANGED
Binary file
|
i18n/languages/wp_all_import_plugin-es_ES.po
CHANGED
@@ -1,4964 +1,4202 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"
|
4 |
-
"
|
5 |
-
"
|
6 |
-
"
|
7 |
-
"
|
8 |
-
"Language
|
9 |
-
"
|
10 |
-
|
11 |
-
|
12 |
-
"
|
13 |
-
"
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
"
|
18 |
-
"
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
msgid ""
|
35 |
-
"
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
#:
|
46 |
-
msgid "All
|
47 |
-
msgstr ""
|
48 |
-
|
49 |
-
#:
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
#:
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
#:
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
#:
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
#:
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
#:
|
92 |
-
|
93 |
-
msgid "
|
94 |
-
msgstr ""
|
95 |
-
|
96 |
-
#:
|
97 |
-
#:
|
98 |
-
#:
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
#:
|
105 |
-
msgid "
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
"
|
118 |
-
"
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
msgstr
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
msgstr
|
135 |
-
|
136 |
-
#:
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
#:
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
#: /
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
#:
|
166 |
-
msgid "
|
167 |
-
msgstr ""
|
168 |
-
|
169 |
-
#:
|
170 |
-
|
171 |
-
msgid "
|
172 |
-
msgstr ""
|
173 |
-
|
174 |
-
#:
|
175 |
-
|
176 |
-
msgid "
|
177 |
-
msgstr ""
|
178 |
-
|
179 |
-
#:
|
180 |
-
|
181 |
-
msgid "
|
182 |
-
msgstr ""
|
183 |
-
|
184 |
-
#:
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
"
|
198 |
-
"
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
"
|
206 |
-
msgstr ""
|
207 |
-
|
208 |
-
#:
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
msgstr
|
227 |
-
|
228 |
-
#:
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
msgid "Please verify that the
|
242 |
-
msgstr ""
|
243 |
-
|
244 |
-
#:
|
245 |
-
msgid "
|
246 |
-
msgstr ""
|
247 |
-
|
248 |
-
#:
|
249 |
-
msgid "
|
250 |
-
msgstr ""
|
251 |
-
|
252 |
-
#:
|
253 |
-
msgid "
|
254 |
-
msgstr ""
|
255 |
-
|
256 |
-
#:
|
257 |
-
msgid "
|
258 |
-
msgstr ""
|
259 |
-
|
260 |
-
#:
|
261 |
-
msgid "
|
262 |
-
msgstr ""
|
263 |
-
|
264 |
-
#:
|
265 |
-
msgid "
|
266 |
-
msgstr ""
|
267 |
-
|
268 |
-
#:
|
269 |
-
msgid "
|
270 |
-
msgstr ""
|
271 |
-
|
272 |
-
#:
|
273 |
-
msgid "
|
274 |
-
msgstr ""
|
275 |
-
|
276 |
-
#:
|
277 |
-
msgid "
|
278 |
-
msgstr ""
|
279 |
-
|
280 |
-
#:
|
281 |
-
msgid "
|
282 |
-
msgstr ""
|
283 |
-
|
284 |
-
#:
|
285 |
-
msgid "
|
286 |
-
msgstr ""
|
287 |
-
|
288 |
-
#:
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
msgid ""
|
298 |
-
"
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
#:
|
309 |
-
#:
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
#:
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
#:
|
319 |
-
#:
|
320 |
-
|
321 |
-
msgid "
|
322 |
-
msgstr ""
|
323 |
-
|
324 |
-
#:
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
#:
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
msgstr ""
|
333 |
-
|
334 |
-
#:
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
#:
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
#:
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
#:
|
353 |
-
msgid "
|
354 |
-
msgstr ""
|
355 |
-
|
356 |
-
#:
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
#:
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
#:
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
#:
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
#:
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
#:
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
"
|
384 |
-
"
|
385 |
-
|
386 |
-
|
387 |
-
#:
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
"
|
398 |
-
"
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
#:
|
421 |
-
msgid "
|
422 |
-
msgstr ""
|
423 |
-
|
424 |
-
#:
|
425 |
-
msgid "
|
426 |
-
msgstr ""
|
427 |
-
|
428 |
-
#:
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
#:
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
"
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
"
|
455 |
-
"
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
"
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
msgid "
|
464 |
-
msgstr "
|
465 |
-
|
466 |
-
#:
|
467 |
-
|
468 |
-
msgid "<
|
469 |
-
msgstr "<
|
470 |
-
|
471 |
-
#:
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
#: /
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
"
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
msgid ""
|
513 |
-
"
|
514 |
-
|
515 |
-
|
516 |
-
"
|
517 |
-
"
|
518 |
-
|
519 |
-
#:
|
520 |
-
|
521 |
-
msgid ""
|
522 |
-
"<
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
"
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
"
|
542 |
-
"
|
543 |
-
|
544 |
-
|
545 |
-
"
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
|
555 |
-
|
556 |
-
#:
|
557 |
-
msgid "
|
558 |
-
msgstr "
|
559 |
-
|
560 |
-
#:
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
#:
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
#:
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
#: /
|
573 |
-
|
574 |
-
|
575 |
-
|
576 |
-
#:
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
#:
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
msgid "
|
594 |
-
msgstr "
|
595 |
-
|
596 |
-
#:
|
597 |
-
|
598 |
-
|
599 |
-
|
600 |
-
|
601 |
-
|
602 |
-
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
|
608 |
-
|
609 |
-
|
610 |
-
|
611 |
-
|
612 |
-
|
613 |
-
|
614 |
-
|
615 |
-
|
616 |
-
#: /
|
617 |
-
msgid "
|
618 |
-
msgstr "
|
619 |
-
|
620 |
-
#:
|
621 |
-
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
|
626 |
-
|
627 |
-
|
628 |
-
|
629 |
-
|
630 |
-
|
631 |
-
|
632 |
-
|
633 |
-
|
634 |
-
|
635 |
-
|
636 |
-
|
637 |
-
|
638 |
-
|
639 |
-
|
640 |
-
|
641 |
-
|
642 |
-
|
643 |
-
|
644 |
-
|
645 |
-
|
646 |
-
|
647 |
-
msgid "
|
648 |
-
msgstr "
|
649 |
-
|
650 |
-
#:
|
651 |
-
|
652 |
-
|
653 |
-
|
654 |
-
|
655 |
-
|
656 |
-
|
657 |
-
|
658 |
-
|
659 |
-
|
660 |
-
|
661 |
-
|
662 |
-
|
663 |
-
|
664 |
-
|
665 |
-
|
666 |
-
|
667 |
-
msgid "
|
668 |
-
msgstr "
|
669 |
-
|
670 |
-
#:
|
671 |
-
|
672 |
-
|
673 |
-
|
674 |
-
|
675 |
-
|
676 |
-
|
677 |
-
|
678 |
-
|
679 |
-
|
680 |
-
|
681 |
-
|
682 |
-
|
683 |
-
|
684 |
-
"La
|
685 |
-
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
|
693 |
-
|
694 |
-
|
695 |
-
|
696 |
-
|
697 |
-
|
698 |
-
|
699 |
-
|
700 |
-
|
701 |
-
|
702 |
-
|
703 |
-
|
704 |
-
|
705 |
-
|
706 |
-
|
707 |
-
|
708 |
-
msgid "
|
709 |
-
msgstr "
|
710 |
-
|
711 |
-
#:
|
712 |
-
|
713 |
-
|
714 |
-
|
715 |
-
|
716 |
-
|
717 |
-
|
718 |
-
|
719 |
-
|
720 |
-
|
721 |
-
|
722 |
-
|
723 |
-
|
724 |
-
|
725 |
-
|
726 |
-
|
727 |
-
|
728 |
-
|
729 |
-
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
|
734 |
-
|
735 |
-
|
736 |
-
#:
|
737 |
-
|
738 |
-
|
739 |
-
|
740 |
-
#: /
|
741 |
-
|
742 |
-
|
743 |
-
|
744 |
-
|
745 |
-
|
746 |
-
|
747 |
-
|
748 |
-
#: /
|
749 |
-
msgid "
|
750 |
-
msgstr "
|
751 |
-
|
752 |
-
#:
|
753 |
-
#: /
|
754 |
-
|
755 |
-
|
756 |
-
|
757 |
-
|
758 |
-
|
759 |
-
|
760 |
-
|
761 |
-
#: /
|
762 |
-
|
763 |
-
|
764 |
-
|
765 |
-
|
766 |
-
|
767 |
-
|
768 |
-
|
769 |
-
#: /views/admin/import/template
|
770 |
-
|
771 |
-
|
772 |
-
|
773 |
-
|
774 |
-
|
775 |
-
#:
|
776 |
-
#:
|
777 |
-
#:
|
778 |
-
|
779 |
-
|
780 |
-
|
781 |
-
#: /
|
782 |
-
|
783 |
-
|
784 |
-
|
785 |
-
#: /
|
786 |
-
|
787 |
-
|
788 |
-
|
789 |
-
|
790 |
-
|
791 |
-
|
792 |
-
|
793 |
-
#: /
|
794 |
-
msgid "
|
795 |
-
msgstr "
|
796 |
-
|
797 |
-
#:
|
798 |
-
msgid "
|
799 |
-
msgstr "
|
800 |
-
|
801 |
-
#:
|
802 |
-
|
803 |
-
|
804 |
-
|
805 |
-
|
806 |
-
|
807 |
-
|
808 |
-
|
809 |
-
|
810 |
-
|
811 |
-
|
812 |
-
|
813 |
-
|
814 |
-
|
815 |
-
|
816 |
-
|
817 |
-
|
818 |
-
msgid "
|
819 |
-
msgstr "
|
820 |
-
|
821 |
-
#:
|
822 |
-
|
823 |
-
|
824 |
-
|
825 |
-
|
826 |
-
|
827 |
-
|
828 |
-
|
829 |
-
|
830 |
-
|
831 |
-
|
832 |
-
|
833 |
-
#:
|
834 |
-
|
835 |
-
|
836 |
-
|
837 |
-
|
838 |
-
|
839 |
-
|
840 |
-
|
841 |
-
|
842 |
-
"
|
843 |
-
"
|
844 |
-
|
845 |
-
|
846 |
-
"
|
847 |
-
|
848 |
-
|
849 |
-
|
850 |
-
msgid "
|
851 |
-
msgstr "
|
852 |
-
|
853 |
-
#:
|
854 |
-
|
855 |
-
|
856 |
-
|
857 |
-
|
858 |
-
|
859 |
-
|
860 |
-
|
861 |
-
|
862 |
-
|
863 |
-
|
864 |
-
|
865 |
-
|
866 |
-
msgid "
|
867 |
-
msgstr "
|
868 |
-
|
869 |
-
#:
|
870 |
-
|
871 |
-
|
872 |
-
|
873 |
-
|
874 |
-
|
875 |
-
|
876 |
-
|
877 |
-
|
878 |
-
|
879 |
-
|
880 |
-
|
881 |
-
|
882 |
-
|
883 |
-
|
884 |
-
|
885 |
-
|
886 |
-
msgid "
|
887 |
-
msgstr "
|
888 |
-
|
889 |
-
#:
|
890 |
-
#: /
|
891 |
-
|
892 |
-
|
893 |
-
|
894 |
-
#:
|
895 |
-
|
896 |
-
|
897 |
-
|
898 |
-
|
899 |
-
|
900 |
-
#: php:
|
901 |
-
|
902 |
-
msgid "
|
903 |
-
msgstr "
|
904 |
-
|
905 |
-
#:
|
906 |
-
msgid "
|
907 |
-
msgstr "
|
908 |
-
|
909 |
-
#:
|
910 |
-
|
911 |
-
|
912 |
-
|
913 |
-
|
914 |
-
|
915 |
-
|
916 |
-
|
917 |
-
|
918 |
-
|
919 |
-
|
920 |
-
|
921 |
-
|
922 |
-
|
923 |
-
|
924 |
-
|
925 |
-
|
926 |
-
|
927 |
-
|
928 |
-
|
929 |
-
|
930 |
-
|
931 |
-
|
932 |
-
|
933 |
-
|
934 |
-
|
935 |
-
|
936 |
-
|
937 |
-
|
938 |
-
|
939 |
-
|
940 |
-
|
941 |
-
|
942 |
-
msgstr ""
|
943 |
-
|
944 |
-
|
945 |
-
|
946 |
-
|
947 |
-
|
948 |
-
|
949 |
-
|
950 |
-
|
951 |
-
|
952 |
-
|
953 |
-
|
954 |
-
"
|
955 |
-
"
|
956 |
-
|
957 |
-
#:
|
958 |
-
|
959 |
-
|
960 |
-
|
961 |
-
|
962 |
-
"
|
963 |
-
"
|
964 |
-
|
965 |
-
|
966 |
-
|
967 |
-
|
968 |
-
"
|
969 |
-
"
|
970 |
-
|
971 |
-
|
972 |
-
"
|
973 |
-
"
|
974 |
-
|
975 |
-
#:
|
976 |
-
|
977 |
-
|
978 |
-
|
979 |
-
#: /
|
980 |
-
msgid "
|
981 |
-
msgstr "
|
982 |
-
|
983 |
-
#:
|
984 |
-
|
985 |
-
|
986 |
-
|
987 |
-
|
988 |
-
|
989 |
-
|
990 |
-
|
991 |
-
msgstr "
|
992 |
-
|
993 |
-
#:
|
994 |
-
msgid ""
|
995 |
-
"
|
996 |
-
|
997 |
-
|
998 |
-
|
999 |
-
"La
|
1000 |
-
|
1001 |
-
|
1002 |
-
|
1003 |
-
|
1004 |
-
|
1005 |
-
|
1006 |
-
|
1007 |
-
|
1008 |
-
|
1009 |
-
|
1010 |
-
"
|
1011 |
-
"
|
1012 |
-
|
1013 |
-
|
1014 |
-
"
|
1015 |
-
msgstr ""
|
1016 |
-
|
1017 |
-
|
1018 |
-
"
|
1019 |
-
"
|
1020 |
-
|
1021 |
-
|
1022 |
-
|
1023 |
-
|
1024 |
-
|
1025 |
-
|
1026 |
-
|
1027 |
-
|
1028 |
-
|
1029 |
-
|
1030 |
-
|
1031 |
-
|
1032 |
-
|
1033 |
-
|
1034 |
-
|
1035 |
-
|
1036 |
-
|
1037 |
-
|
1038 |
-
|
1039 |
-
|
1040 |
-
|
1041 |
-
|
1042 |
-
|
1043 |
-
#:
|
1044 |
-
|
1045 |
-
|
1046 |
-
|
1047 |
-
#:
|
1048 |
-
|
1049 |
-
|
1050 |
-
|
1051 |
-
#:
|
1052 |
-
msgid "
|
1053 |
-
msgstr "
|
1054 |
-
|
1055 |
-
#:
|
1056 |
-
msgid "
|
1057 |
-
msgstr "
|
1058 |
-
|
1059 |
-
#:
|
1060 |
-
msgid "
|
1061 |
-
msgstr "
|
1062 |
-
|
1063 |
-
#:
|
1064 |
-
msgid "
|
1065 |
-
msgstr "
|
1066 |
-
|
1067 |
-
#:
|
1068 |
-
|
1069 |
-
|
1070 |
-
|
1071 |
-
#:
|
1072 |
-
|
1073 |
-
|
1074 |
-
|
1075 |
-
|
1076 |
-
|
1077 |
-
|
1078 |
-
|
1079 |
-
|
1080 |
-
|
1081 |
-
|
1082 |
-
|
1083 |
-
|
1084 |
-
|
1085 |
-
|
1086 |
-
|
1087 |
-
|
1088 |
-
|
1089 |
-
|
1090 |
-
|
1091 |
-
|
1092 |
-
|
1093 |
-
|
1094 |
-
|
1095 |
-
|
1096 |
-
|
1097 |
-
msgid "
|
1098 |
-
msgstr "
|
1099 |
-
|
1100 |
-
#:
|
1101 |
-
msgid ""
|
1102 |
-
"
|
1103 |
-
|
1104 |
-
|
1105 |
-
"
|
1106 |
-
msgstr ""
|
1107 |
-
|
1108 |
-
|
1109 |
-
"
|
1110 |
-
"
|
1111 |
-
|
1112 |
-
#:
|
1113 |
-
msgid ""
|
1114 |
-
"
|
1115 |
-
|
1116 |
-
|
1117 |
-
"
|
1118 |
-
"
|
1119 |
-
|
1120 |
-
|
1121 |
-
|
1122 |
-
"
|
1123 |
-
|
1124 |
-
|
1125 |
-
"
|
1126 |
-
"
|
1127 |
-
|
1128 |
-
|
1129 |
-
"
|
1130 |
-
|
1131 |
-
|
1132 |
-
|
1133 |
-
|
1134 |
-
|
1135 |
-
|
1136 |
-
|
1137 |
-
"
|
1138 |
-
"
|
1139 |
-
|
1140 |
-
|
1141 |
-
"
|
1142 |
-
"
|
1143 |
-
|
1144 |
-
#:
|
1145 |
-
msgid "
|
1146 |
-
msgstr "
|
1147 |
-
|
1148 |
-
#:
|
1149 |
-
msgid ""
|
1150 |
-
|
1151 |
-
|
1152 |
-
|
1153 |
-
"
|
1154 |
-
"
|
1155 |
-
|
1156 |
-
|
1157 |
-
"
|
1158 |
-
|
1159 |
-
|
1160 |
-
|
1161 |
-
"
|
1162 |
-
"
|
1163 |
-
|
1164 |
-
#:
|
1165 |
-
msgid "
|
1166 |
-
msgstr "
|
1167 |
-
|
1168 |
-
#:
|
1169 |
-
msgid "
|
1170 |
-
msgstr ""
|
1171 |
-
|
1172 |
-
|
1173 |
-
|
1174 |
-
|
1175 |
-
|
1176 |
-
|
1177 |
-
|
1178 |
-
|
1179 |
-
|
1180 |
-
|
1181 |
-
"
|
1182 |
-
"
|
1183 |
-
|
1184 |
-
|
1185 |
-
"
|
1186 |
-
"
|
1187 |
-
|
1188 |
-
|
1189 |
-
"
|
1190 |
-
|
1191 |
-
|
1192 |
-
|
1193 |
-
"
|
1194 |
-
"
|
1195 |
-
|
1196 |
-
|
1197 |
-
|
1198 |
-
|
1199 |
-
|
1200 |
-
|
1201 |
-
|
1202 |
-
|
1203 |
-
|
1204 |
-
#:
|
1205 |
-
msgid "
|
1206 |
-
msgstr "
|
1207 |
-
|
1208 |
-
#:
|
1209 |
-
|
1210 |
-
|
1211 |
-
|
1212 |
-
|
1213 |
-
"
|
1214 |
-
"
|
1215 |
-
|
1216 |
-
|
1217 |
-
"
|
1218 |
-
"
|
1219 |
-
|
1220 |
-
|
1221 |
-
|
1222 |
-
|
1223 |
-
|
1224 |
-
|
1225 |
-
"
|
1226 |
-
|
1227 |
-
|
1228 |
-
|
1229 |
-
"
|
1230 |
-
"
|
1231 |
-
|
1232 |
-
|
1233 |
-
|
1234 |
-
|
1235 |
-
|
1236 |
-
|
1237 |
-
"
|
1238 |
-
"
|
1239 |
-
|
1240 |
-
|
1241 |
-
"
|
1242 |
-
msgstr ""
|
1243 |
-
|
1244 |
-
|
1245 |
-
"
|
1246 |
-
"
|
1247 |
-
|
1248 |
-
|
1249 |
-
|
1250 |
-
|
1251 |
-
|
1252 |
-
|
1253 |
-
|
1254 |
-
|
1255 |
-
|
1256 |
-
|
1257 |
-
"
|
1258 |
-
msgstr ""
|
1259 |
-
|
1260 |
-
|
1261 |
-
|
1262 |
-
|
1263 |
-
|
1264 |
-
|
1265 |
-
|
1266 |
-
|
1267 |
-
|
1268 |
-
|
1269 |
-
"
|
1270 |
-
"
|
1271 |
-
|
1272 |
-
|
1273 |
-
"
|
1274 |
-
"
|
1275 |
-
|
1276 |
-
|
1277 |
-
"
|
1278 |
-
|
1279 |
-
|
1280 |
-
|
1281 |
-
"
|
1282 |
-
|
1283 |
-
|
1284 |
-
|
1285 |
-
|
1286 |
-
|
1287 |
-
|
1288 |
-
|
1289 |
-
|
1290 |
-
|
1291 |
-
|
1292 |
-
|
1293 |
-
|
1294 |
-
"
|
1295 |
-
"
|
1296 |
-
|
1297 |
-
|
1298 |
-
|
1299 |
-
|
1300 |
-
|
1301 |
-
|
1302 |
-
"
|
1303 |
-
|
1304 |
-
|
1305 |
-
|
1306 |
-
|
1307 |
-
|
1308 |
-
|
1309 |
-
|
1310 |
-
|
1311 |
-
|
1312 |
-
|
1313 |
-
|
1314 |
-
|
1315 |
-
|
1316 |
-
|
1317 |
-
|
1318 |
-
|
1319 |
-
|
1320 |
-
|
1321 |
-
|
1322 |
-
|
1323 |
-
|
1324 |
-
|
1325 |
-
|
1326 |
-
|
1327 |
-
|
1328 |
-
|
1329 |
-
|
1330 |
-
|
1331 |
-
#:
|
1332 |
-
|
1333 |
-
|
1334 |
-
|
1335 |
-
|
1336 |
-
|
1337 |
-
|
1338 |
-
|
1339 |
-
|
1340 |
-
|
1341 |
-
|
1342 |
-
|
1343 |
-
|
1344 |
-
|
1345 |
-
|
1346 |
-
|
1347 |
-
|
1348 |
-
|
1349 |
-
|
1350 |
-
|
1351 |
-
|
1352 |
-
|
1353 |
-
|
1354 |
-
|
1355 |
-
|
1356 |
-
|
1357 |
-
"
|
1358 |
-
|
1359 |
-
|
1360 |
-
|
1361 |
-
|
1362 |
-
|
1363 |
-
|
1364 |
-
|
1365 |
-
|
1366 |
-
|
1367 |
-
|
1368 |
-
|
1369 |
-
|
1370 |
-
|
1371 |
-
|
1372 |
-
"
|
1373 |
-
|
1374 |
-
|
1375 |
-
|
1376 |
-
|
1377 |
-
|
1378 |
-
|
1379 |
-
|
1380 |
-
|
1381 |
-
|
1382 |
-
|
1383 |
-
|
1384 |
-
|
1385 |
-
|
1386 |
-
|
1387 |
-
|
1388 |
-
|
1389 |
-
|
1390 |
-
|
1391 |
-
|
1392 |
-
|
1393 |
-
|
1394 |
-
|
1395 |
-
|
1396 |
-
|
1397 |
-
|
1398 |
-
|
1399 |
-
|
1400 |
-
msgid "
|
1401 |
-
msgstr "
|
1402 |
-
|
1403 |
-
#:
|
1404 |
-
msgid ""
|
1405 |
-
|
1406 |
-
|
1407 |
-
|
1408 |
-
"
|
1409 |
-
|
1410 |
-
|
1411 |
-
|
1412 |
-
|
1413 |
-
|
1414 |
-
|
1415 |
-
|
1416 |
-
|
1417 |
-
|
1418 |
-
|
1419 |
-
|
1420 |
-
|
1421 |
-
"
|
1422 |
-
|
1423 |
-
|
1424 |
-
|
1425 |
-
|
1426 |
-
|
1427 |
-
|
1428 |
-
|
1429 |
-
"
|
1430 |
-
|
1431 |
-
|
1432 |
-
|
1433 |
-
|
1434 |
-
|
1435 |
-
|
1436 |
-
|
1437 |
-
|
1438 |
-
|
1439 |
-
|
1440 |
-
|
1441 |
-
|
1442 |
-
|
1443 |
-
|
1444 |
-
|
1445 |
-
|
1446 |
-
|
1447 |
-
|
1448 |
-
|
1449 |
-
|
1450 |
-
|
1451 |
-
|
1452 |
-
"
|
1453 |
-
"
|
1454 |
-
|
1455 |
-
|
1456 |
-
|
1457 |
-
"
|
1458 |
-
|
1459 |
-
|
1460 |
-
"
|
1461 |
-
|
1462 |
-
|
1463 |
-
|
1464 |
-
|
1465 |
-
|
1466 |
-
|
1467 |
-
|
1468 |
-
|
1469 |
-
|
1470 |
-
|
1471 |
-
|
1472 |
-
|
1473 |
-
|
1474 |
-
|
1475 |
-
|
1476 |
-
|
1477 |
-
|
1478 |
-
|
1479 |
-
|
1480 |
-
|
1481 |
-
|
1482 |
-
|
1483 |
-
|
1484 |
-
|
1485 |
-
|
1486 |
-
|
1487 |
-
|
1488 |
-
|
1489 |
-
|
1490 |
-
|
1491 |
-
|
1492 |
-
|
1493 |
-
|
1494 |
-
|
1495 |
-
|
1496 |
-
|
1497 |
-
|
1498 |
-
|
1499 |
-
|
1500 |
-
|
1501 |
-
|
1502 |
-
|
1503 |
-
|
1504 |
-
"
|
1505 |
-
"
|
1506 |
-
|
1507 |
-
|
1508 |
-
|
1509 |
-
|
1510 |
-
"
|
1511 |
-
|
1512 |
-
|
1513 |
-
|
1514 |
-
|
1515 |
-
|
1516 |
-
|
1517 |
-
"
|
1518 |
-
"
|
1519 |
-
|
1520 |
-
#:
|
1521 |
-
msgid "
|
1522 |
-
msgstr "
|
1523 |
-
|
1524 |
-
#:
|
1525 |
-
msgid "
|
1526 |
-
msgstr "
|
1527 |
-
|
1528 |
-
#:
|
1529 |
-
msgid "
|
1530 |
-
msgstr "
|
1531 |
-
|
1532 |
-
#:
|
1533 |
-
msgid "
|
1534 |
-
msgstr "
|
1535 |
-
|
1536 |
-
#:
|
1537 |
-
msgid "
|
1538 |
-
msgstr "
|
1539 |
-
|
1540 |
-
#:
|
1541 |
-
msgid "
|
1542 |
-
msgstr "
|
1543 |
-
|
1544 |
-
#:
|
1545 |
-
msgid "
|
1546 |
-
msgstr "
|
1547 |
-
|
1548 |
-
#:
|
1549 |
-
msgid "
|
1550 |
-
msgstr "
|
1551 |
-
|
1552 |
-
#:
|
1553 |
-
msgid "
|
1554 |
-
msgstr "
|
1555 |
-
|
1556 |
-
#:
|
1557 |
-
msgid "
|
1558 |
-
msgstr "
|
1559 |
-
|
1560 |
-
#:
|
1561 |
-
msgid "
|
1562 |
-
msgstr "
|
1563 |
-
|
1564 |
-
#:
|
1565 |
-
msgid "
|
1566 |
-
msgstr "
|
1567 |
-
|
1568 |
-
#:
|
1569 |
-
msgid "
|
1570 |
-
msgstr "
|
1571 |
-
|
1572 |
-
#:
|
1573 |
-
msgid "
|
1574 |
-
msgstr "
|
1575 |
-
|
1576 |
-
#:
|
1577 |
-
|
1578 |
-
|
1579 |
-
|
1580 |
-
|
1581 |
-
|
1582 |
-
|
1583 |
-
|
1584 |
-
|
1585 |
-
|
1586 |
-
|
1587 |
-
|
1588 |
-
|
1589 |
-
|
1590 |
-
|
1591 |
-
|
1592 |
-
|
1593 |
-
|
1594 |
-
"
|
1595 |
-
|
1596 |
-
|
1597 |
-
"
|
1598 |
-
"
|
1599 |
-
|
1600 |
-
#:
|
1601 |
-
|
1602 |
-
|
1603 |
-
|
1604 |
-
#: /
|
1605 |
-
|
1606 |
-
|
1607 |
-
|
1608 |
-
#: /
|
1609 |
-
|
1610 |
-
|
1611 |
-
|
1612 |
-
|
1613 |
-
|
1614 |
-
|
1615 |
-
|
1616 |
-
|
1617 |
-
"for
|
1618 |
-
msgstr ""
|
1619 |
-
|
1620 |
-
|
1621 |
-
"
|
1622 |
-
|
1623 |
-
|
1624 |
-
|
1625 |
-
msgid ""
|
1626 |
-
"
|
1627 |
-
|
1628 |
-
|
1629 |
-
"
|
1630 |
-
"
|
1631 |
-
|
1632 |
-
|
1633 |
-
|
1634 |
-
|
1635 |
-
|
1636 |
-
|
1637 |
-
|
1638 |
-
|
1639 |
-
|
1640 |
-
|
1641 |
-
|
1642 |
-
|
1643 |
-
|
1644 |
-
|
1645 |
-
|
1646 |
-
|
1647 |
-
|
1648 |
-
|
1649 |
-
|
1650 |
-
|
1651 |
-
|
1652 |
-
|
1653 |
-
|
1654 |
-
|
1655 |
-
|
1656 |
-
|
1657 |
-
|
1658 |
-
|
1659 |
-
|
1660 |
-
|
1661 |
-
"
|
1662 |
-
"
|
1663 |
-
|
1664 |
-
|
1665 |
-
"
|
1666 |
-
"
|
1667 |
-
|
1668 |
-
|
1669 |
-
|
1670 |
-
"
|
1671 |
-
|
1672 |
-
#:
|
1673 |
-
msgid ""
|
1674 |
-
"
|
1675 |
-
|
1676 |
-
|
1677 |
-
"
|
1678 |
-
msgstr ""
|
1679 |
-
|
1680 |
-
|
1681 |
-
|
1682 |
-
"
|
1683 |
-
|
1684 |
-
#:
|
1685 |
-
msgid ""
|
1686 |
-
"
|
1687 |
-
|
1688 |
-
|
1689 |
-
|
1690 |
-
msgstr ""
|
1691 |
-
|
1692 |
-
|
1693 |
-
"
|
1694 |
-
"
|
1695 |
-
|
1696 |
-
#:
|
1697 |
-
msgid ""
|
1698 |
-
"
|
1699 |
-
|
1700 |
-
|
1701 |
-
"
|
1702 |
-
msgstr ""
|
1703 |
-
|
1704 |
-
|
1705 |
-
"<
|
1706 |
-
|
1707 |
-
|
1708 |
-
#:
|
1709 |
-
msgid ""
|
1710 |
-
"
|
1711 |
-
"continue without it your data may import incorrectly.<br/><br/><a "
|
1712 |
-
"href=\"https://wordpress.org/plugins/realhomes-xml-csv-property-listings-"
|
1713 |
-
"import/\" target=\"_blank\">Download the RealHomes Add-On</a>."
|
1714 |
-
msgstr ""
|
1715 |
-
"La plantilla de importación que esta utilizando requiere el RealHomes Add-On."
|
1716 |
-
" Si continua sin el, su información puede importarse incorrectamente."
|
1717 |
-
"<br/><br/><a href=\"https://wordpress.org/plugins/realhomes-xml-csv-property-"
|
1718 |
-
"listings-import/\" target=\"_blank\">Descargar el RealHomes Add-On</a>."
|
1719 |
-
|
1720 |
-
#: ../../helpers/wp_all_import_template_notifications.php:52
|
1721 |
-
msgid ""
|
1722 |
-
"The import template you are using requires the Jobify Add-On. If you "
|
1723 |
-
"continue without it your data may import incorrectly.<br/><br/><a "
|
1724 |
-
"href=\"https://wordpress.org/plugins/jobify-xml-csv-listings-import/\" "
|
1725 |
-
"target=\"_blank\">Download the Jobify Add-On</a>."
|
1726 |
-
msgstr ""
|
1727 |
-
"La plantilla de importación que esta utilizando requiere el Jobify Add-On. "
|
1728 |
-
"Si continua sin el, su información puede importarse incorrectamente."
|
1729 |
-
"<br/><br/><a href=\"https://wordpress.org/plugins/jobify-xml-csv-listings-"
|
1730 |
-
"import/\" target=\"_blank\">Descargar el Jobify Add-On</a>."
|
1731 |
-
|
1732 |
-
#: ../../helpers/wp_all_import_template_notifications.php:58
|
1733 |
-
msgid ""
|
1734 |
-
"The import template you are using requires the Listify Add-On. If you "
|
1735 |
-
"continue without it your data may import incorrectly.<br/><br/><a "
|
1736 |
-
"href=\"https://wordpress.org/plugins/listify-xml-csv-listings-import/\" "
|
1737 |
-
"target=\"_blank\">Download the Listify Add-On</a>."
|
1738 |
-
msgstr ""
|
1739 |
-
"La plantilla de importación que esta utilizando requiere el Listify Add-On. "
|
1740 |
-
"Si continua sin el, su información puede importarse incorrectamente."
|
1741 |
-
"<br/><br/><a href=\"https://wordpress.org/plugins/listify-xml-csv-listings-"
|
1742 |
-
"import/\" target=\"_blank\">Descargar el Listify Add-On</a>."
|
1743 |
-
|
1744 |
-
#: ../../helpers/wp_all_import_template_notifications.php:64
|
1745 |
-
msgid ""
|
1746 |
-
"The import template you are using requires the Reales WP Add-On. If you "
|
1747 |
-
"continue without it your data may import incorrectly.<br/><br/><a "
|
1748 |
-
"href=\"https://wordpress.org/plugins/reales-wp-xml-csv-property-listings-"
|
1749 |
-
"import/\" target=\"_blank\">Download the Reales WP Add-On</a>."
|
1750 |
-
msgstr ""
|
1751 |
-
"La plantilla de importación que esta utilizando requiere el Reales WP Add-On."
|
1752 |
-
" Si continua sin el, su información puede importarse incorrectamente."
|
1753 |
-
"<br/><br/><a href=\"https://wordpress.org/plugins/reales-wp-xml-csv-property-"
|
1754 |
-
"listings-import/\" target=\"_blank\">Descargar el Reales WP Add-On</a>."
|
1755 |
-
|
1756 |
-
#: ../../helpers/wp_all_import_template_notifications.php:70
|
1757 |
-
msgid ""
|
1758 |
-
"The import template you are using requires the WP Job Manager Add-On. If you "
|
1759 |
-
"continue without it your data may import incorrectly.<br/><br/><a "
|
1760 |
-
"href=\"https://wordpress.org/plugins/wp-job-manager-xml-csv-listings-import/\" "
|
1761 |
-
"target=\"_blank\">Download the WP Job Manager Add-On</a>."
|
1762 |
-
msgstr ""
|
1763 |
-
"La plantilla de importación que esta utilizando requiere el WP Job Manager "
|
1764 |
-
"Add-On. Si continua sin el, su información puede importarse incorrectamente."
|
1765 |
-
"<br/><br/><a href=\"https://wordpress.org/plugins/wp-job-manager-xml-csv-"
|
1766 |
-
"listings-import/\" target=\"_blank\">Descargar el WP Job Manager Add-On</a>."
|
1767 |
-
|
1768 |
-
#: ../../helpers/wp_all_import_template_notifications.php:76
|
1769 |
-
msgid ""
|
1770 |
-
"The import template you are using requires the Yoast SEO Add-On. If you "
|
1771 |
-
"continue without it your data may import incorrectly.<br/><br/><a "
|
1772 |
-
"href=\"https://wordpress.org/plugins/yoast-seo-settings-xml-csv-import/\" "
|
1773 |
-
"target=\"_blank\">Download the Yoast SEO Add-On</a>."
|
1774 |
-
msgstr ""
|
1775 |
-
"La plantilla de importación que esta utilizando requiere el Yoast SEO Add-"
|
1776 |
-
"On. Si continua sin el, su información puede importarse incorrectamente."
|
1777 |
-
"<br/><br/><a href=\"https://wordpress.org/plugins/yoast-seo-settings-xml-csv-"
|
1778 |
-
"import/\" target=\"_blank\">Descargar el Yoast SEO Add-On</a>."
|
1779 |
-
|
1780 |
-
#: ../../helpers/wp_all_import_template_notifications.php:81
|
1781 |
-
msgid ""
|
1782 |
-
"The import template you are using requires an Add-On for WP All Import. If "
|
1783 |
-
"you continue without using this Add-On your data may import incorrectly."
|
1784 |
-
msgstr ""
|
1785 |
-
"La plantilla de importación que esta utilizando requiere un Add-On para WP "
|
1786 |
-
"All Import. Si usted continua sin este Add-On su información podrá "
|
1787 |
-
"importarse incorrectamente."
|
1788 |
-
|
1789 |
-
#: ../../helpers/wp_all_import_template_notifications.php:93
|
1790 |
-
msgid "<strong>Warning:</strong>"
|
1791 |
-
msgstr "<strong>Advertencia:</strong>"
|
1792 |
-
|
1793 |
-
#: ../../models/import/record.php:42
|
1794 |
-
#, php-format
|
1795 |
-
msgid ""
|
1796 |
-
"WP All Import can't read your file.<br/><br/>Probably, you are trying to "
|
1797 |
-
"import an invalid XML feed. Try opening the XML feed in a web browser "
|
1798 |
-
"(Google Chrome is recommended for opening XML files) to see if there is an "
|
1799 |
-
"error message.<br/>Alternatively, run the feed through a validator: http:"
|
1800 |
-
"//validator.w3.org/<br/>99% of the time, the reason for this error is "
|
1801 |
-
"because your XML feed isn't valid.<br/>If you are 100% sure you are "
|
1802 |
-
"importing a valid XML feed, please contact WP All Import support."
|
1803 |
-
msgstr ""
|
1804 |
-
"WP All Import no puede leer su archivo.<br/><br/>Probablemente, esta "
|
1805 |
-
"intentando importar información XML inválida. Intente abrir la inforamación "
|
1806 |
-
"XML feed en un navegador (Google Chrome es recomendado para abrir archivos "
|
1807 |
-
"XML) para ver si encuentra algún mensaje de error.<br/>Alternativamente, "
|
1808 |
-
"ejecute la información mediante un validador: http://validator.w3."
|
1809 |
-
"org/<br/>99% del tiempo la razon para este error es por que la información "
|
1810 |
-
"XML no es válida.<br/>Si usted esta 100% seguro que está importando "
|
1811 |
-
"información XML válida, por favor contacte a soporte de WP All Import."
|
1812 |
-
|
1813 |
-
#: ../../models/import/record.php:54
|
1814 |
-
msgid "Invalid XML"
|
1815 |
-
msgstr "XML inválido"
|
1816 |
-
|
1817 |
-
#: ../../models/import/record.php:57
|
1818 |
-
msgid "Line"
|
1819 |
-
msgstr "Linea"
|
1820 |
-
|
1821 |
-
#: ../../models/import/record.php:58
|
1822 |
-
msgid "Column"
|
1823 |
-
msgstr "Columna"
|
1824 |
-
|
1825 |
-
#: ../../models/import/record.php:59
|
1826 |
-
msgid "Code"
|
1827 |
-
msgstr "Código"
|
1828 |
-
|
1829 |
-
#: ../../models/import/record.php:70
|
1830 |
-
msgid "Required PHP components are missing."
|
1831 |
-
msgstr "Componentes PHP requeridos están faltantes."
|
1832 |
-
|
1833 |
-
#: ../../models/import/record.php:71
|
1834 |
-
msgid ""
|
1835 |
-
"WP All Import requires the SimpleXML PHP module to be installed. This is a "
|
1836 |
-
"standard feature of PHP, and is necessary for WP All Import to read the "
|
1837 |
-
"files you are trying to import.<br/>Please contact your web hosting provider "
|
1838 |
-
"and ask them to install and activate the SimpleXML PHP module."
|
1839 |
-
msgstr ""
|
1840 |
-
"WP All Import requiere de módulos SimpeXML PHP para ser instalado. Esta es "
|
1841 |
-
"una característica estándar de PHP y es necesario para que el Importador WP "
|
1842 |
-
"pueda leer los archivos que esta intentando importar. <br/>Por favor "
|
1843 |
-
"contacte a su proveedor de alojamiento web and y pidales que le instale y "
|
1844 |
-
"active el modulo SimpleXML PHP."
|
1845 |
-
|
1846 |
-
#: ../../models/import/record.php:115
|
1847 |
-
#, php-format
|
1848 |
-
msgid ""
|
1849 |
-
"This import appears to be using FTP. Unfortunately WP All Import no longer "
|
1850 |
-
"supports the FTP protocol. Please contact <a href=\"mailto:"
|
1851 |
-
"support@wpallimport.com\">%s</a> if you have any questions."
|
1852 |
-
msgstr ""
|
1853 |
-
"Esta importación parece estar utilizando FTP. Desafortunadamente el WP All "
|
1854 |
-
"Import no admite el protocolo FTP. Por favor contacte <a href=\"mailto:"
|
1855 |
-
"support@wpallimport.com\">%s</a> si usted tiene alguna consulta."
|
1856 |
-
|
1857 |
-
#: ../../models/import/record.php:261
|
1858 |
-
#, php-format
|
1859 |
-
msgid ""
|
1860 |
-
"#%s No matching elements found for Root element and XPath expression "
|
1861 |
-
"specified"
|
1862 |
-
msgstr ""
|
1863 |
-
"#%s No se encontraron elementos que coincidan para el elemento de raíz y la "
|
1864 |
-
"expresión XPath especificada"
|
1865 |
-
|
1866 |
-
#: ../../models/import/record.php:506
|
1867 |
-
#, php-format
|
1868 |
-
msgid ""
|
1869 |
-
"import finished & cron un-triggered<br>%s %s created %s updated %s deleted "
|
1870 |
-
"%s skipped"
|
1871 |
-
msgstr ""
|
1872 |
-
"importación finalizada y cron no desencadenado<br>%s %s creada %s "
|
1873 |
-
"actualizada %s eliminada %s omitida"
|
1874 |
-
|
1875 |
-
#: ../../models/import/record.php:532
|
1876 |
-
#, php-format
|
1877 |
-
msgid "%d %s created %d updated %d deleted %d skipped"
|
1878 |
-
msgstr "%d %s creada %d actualizada %d eliminada %d omitida"
|
1879 |
-
|
1880 |
-
#: ../../models/import/record.php:558
|
1881 |
-
#, php-format
|
1882 |
-
msgid "#%s source file not found"
|
1883 |
-
msgstr "#%s archivo de origen no encontrado"
|
1884 |
-
|
1885 |
-
#: ../../models/import/record.php:600
|
1886 |
-
msgid "Composing titles..."
|
1887 |
-
msgstr "Escribiendo títulos..."
|
1888 |
-
|
1889 |
-
#: ../../models/import/record.php:608
|
1890 |
-
msgid "Composing excerpts..."
|
1891 |
-
msgstr "Escribiendo extractos..."
|
1892 |
-
|
1893 |
-
#: ../../models/import/record.php:618
|
1894 |
-
msgid "Composing statuses..."
|
1895 |
-
msgstr "Escribiendo estados...."
|
1896 |
-
|
1897 |
-
#: ../../models/import/record.php:629
|
1898 |
-
msgid "Composing comment statuses..."
|
1899 |
-
msgstr "Escribiendo estados de comentarios...."
|
1900 |
-
|
1901 |
-
#: ../../models/import/record.php:640
|
1902 |
-
msgid "Composing ping statuses..."
|
1903 |
-
msgstr "Escribiendo estados de ping..."
|
1904 |
-
|
1905 |
-
#: ../../models/import/record.php:651
|
1906 |
-
msgid "Composing post formats..."
|
1907 |
-
msgstr "Escribiendo formatos de publicaciones..."
|
1908 |
-
|
1909 |
-
#: ../../models/import/record.php:673
|
1910 |
-
msgid "Composing page templates..."
|
1911 |
-
msgstr "Escribiendo plantillas de páginas...."
|
1912 |
-
|
1913 |
-
#: ../../models/import/record.php:684
|
1914 |
-
msgid "Composing post types..."
|
1915 |
-
msgstr "Escribiendo tipos de publicaciones..."
|
1916 |
-
|
1917 |
-
#: ../../models/import/record.php:698
|
1918 |
-
msgid "Composing page parent..."
|
1919 |
-
msgstr "Escribiendo pagina padre..."
|
1920 |
-
|
1921 |
-
#: ../../models/import/record.php:758
|
1922 |
-
msgid "Composing authors..."
|
1923 |
-
msgstr "Escribiendo autores...."
|
1924 |
-
|
1925 |
-
#: ../../models/import/record.php:799
|
1926 |
-
msgid "Composing slugs..."
|
1927 |
-
msgstr "Escribiendo slug..."
|
1928 |
-
|
1929 |
-
#: ../../models/import/record.php:808
|
1930 |
-
msgid "Composing menu order..."
|
1931 |
-
msgstr "Escribiendo orden de los menús..."
|
1932 |
-
|
1933 |
-
#: ../../models/import/record.php:817
|
1934 |
-
msgid "Composing contents..."
|
1935 |
-
msgstr "Escribiendo contenidos..."
|
1936 |
-
|
1937 |
-
#: ../../models/import/record.php:830
|
1938 |
-
msgid "Composing dates..."
|
1939 |
-
msgstr "Escribiendo fechas...."
|
1940 |
-
|
1941 |
-
#: ../../models/import/record.php:838 ../../models/import/record.php:851 ../..
|
1942 |
-
#: /models/import/record.php:857
|
1943 |
-
#, php-format
|
1944 |
-
msgid "<b>WARNING</b>: unrecognized date format `%s`, assigning current date"
|
1945 |
-
msgstr ""
|
1946 |
-
"<b>ADVERTENCIA</b>: formato de fecha no reconocido `%s`, asignando fecha "
|
1947 |
-
"actual"
|
1948 |
-
|
1949 |
-
#: ../../models/import/record.php:873
|
1950 |
-
#, php-format
|
1951 |
-
msgid "Composing terms for `%s` taxonomy..."
|
1952 |
-
msgstr "Escribiendo termino para `%s` taxonomía..."
|
1953 |
-
|
1954 |
-
#: ../../models/import/record.php:1085
|
1955 |
-
msgid "Composing custom parameters..."
|
1956 |
-
msgstr "Escribiendo parámetros personalizados..."
|
1957 |
-
|
1958 |
-
#: ../../models/import/record.php:1192 ../../models/import/record.php:1310
|
1959 |
-
msgid "<b>WARNING</b>"
|
1960 |
-
msgstr "<b>ADVERTENCIA</b>"
|
1961 |
-
|
1962 |
-
#: ../../models/import/record.php:1193
|
1963 |
-
msgid ""
|
1964 |
-
"<b>WARNING</b>: No featured images will be created. Uploads folder is not "
|
1965 |
-
"found."
|
1966 |
-
msgstr ""
|
1967 |
-
"<b>ADVERTENCIA</b>: Ninguna imagen destaca será creada. Carpeta de cargas no "
|
1968 |
-
"ha sido encontrada."
|
1969 |
-
|
1970 |
-
#: ../../models/import/record.php:1311
|
1971 |
-
msgid "<b>WARNING</b>: No attachments will be created"
|
1972 |
-
msgstr "<b>ADVERTENCIA</b>: Ningún archivo adjunto será creado"
|
1973 |
-
|
1974 |
-
#: ../../models/import/record.php:1314
|
1975 |
-
msgid "Composing URLs for attachments files..."
|
1976 |
-
msgstr "Escribiendo URLs para archivos adjuntos..."
|
1977 |
-
|
1978 |
-
#: ../../models/import/record.php:1343
|
1979 |
-
msgid "Composing unique keys..."
|
1980 |
-
msgstr "Escribiendo claves únicas..."
|
1981 |
-
|
1982 |
-
#: ../../models/import/record.php:1351
|
1983 |
-
msgid "Processing posts..."
|
1984 |
-
msgstr "Procesando entradas..."
|
1985 |
-
|
1986 |
-
#: ../../models/import/record.php:1357
|
1987 |
-
msgid "Data parsing via add-ons..."
|
1988 |
-
msgstr "Análisis de datos vía add-ons..."
|
1989 |
-
|
1990 |
-
#: ../../models/import/record.php:1396
|
1991 |
-
msgid "Calculate specified records to import..."
|
1992 |
-
msgstr "Calculando registros específicos para importar..."
|
1993 |
-
|
1994 |
-
#: ../../models/import/record.php:1417
|
1995 |
-
msgid "---"
|
1996 |
-
msgstr "---"
|
1997 |
-
|
1998 |
-
#: ../../models/import/record.php:1418
|
1999 |
-
#, php-format
|
2000 |
-
msgid "Record #%s"
|
2001 |
-
msgstr "Registros #%s"
|
2002 |
-
|
2003 |
-
#: ../../models/import/record.php:1422
|
2004 |
-
msgid "<b>ACTION</b>: pmxi_before_post_import ..."
|
2005 |
-
msgstr "<b>ACCION</b>:pmxi_before_post_import ..."
|
2006 |
-
|
2007 |
-
#: ../../models/import/record.php:1430
|
2008 |
-
msgid "<b>WARNING</b>: title is empty."
|
2009 |
-
msgstr "<b>WARNING</b>: titulo esta vacío."
|
2010 |
-
|
2011 |
-
#: ../../models/import/record.php:1450
|
2012 |
-
#, php-format
|
2013 |
-
msgid "Combine all data for user %s..."
|
2014 |
-
msgstr "Combinar toda la información para usuario %s..."
|
2015 |
-
|
2016 |
-
#: ../../models/import/record.php:1468
|
2017 |
-
#, php-format
|
2018 |
-
msgid "Combine all data for post `%s`..."
|
2019 |
-
msgstr "Combinar toda la información para entrada `%s`... "
|
2020 |
-
|
2021 |
-
#: ../../models/import/record.php:1481
|
2022 |
-
#, php-format
|
2023 |
-
msgid "Find corresponding article among previously imported for post `%s`..."
|
2024 |
-
msgstr ""
|
2025 |
-
"Encontrar artículo correspondiente entre las entradas previamente importadas "
|
2026 |
-
"`%s`..."
|
2027 |
-
|
2028 |
-
#: ../../models/import/record.php:1489
|
2029 |
-
#, php-format
|
2030 |
-
msgid "Duplicate post was found for post %s with unique key `%s`..."
|
2031 |
-
msgstr "Entrada duplicada fue encontrada para entrada %s con clave única `%s`..."
|
2032 |
-
|
2033 |
-
#: ../../models/import/record.php:1498
|
2034 |
-
#, php-format
|
2035 |
-
msgid "Duplicate post wasn't found with unique key `%s`..."
|
2036 |
-
msgstr "Entrada duplicada no fue encontrada con clave única `%s`..."
|
2037 |
-
|
2038 |
-
#: ../../models/import/record.php:1512
|
2039 |
-
#, php-format
|
2040 |
-
msgid "Find corresponding article among database for post `%s`..."
|
2041 |
-
msgstr ""
|
2042 |
-
"Encontrar articulo correspondiente entre la base de datos para entrada `%s`.."
|
2043 |
-
"."
|
2044 |
-
|
2045 |
-
#: ../../models/import/record.php:1525
|
2046 |
-
#, php-format
|
2047 |
-
msgid "Duplicate post was found for post `%s`..."
|
2048 |
-
msgstr "Entrada duplicada fue encontrada para entrada `%s`..."
|
2049 |
-
|
2050 |
-
#: ../../models/import/record.php:1534
|
2051 |
-
#, php-format
|
2052 |
-
msgid "Duplicate post wasn'n found for post `%s`..."
|
2053 |
-
msgstr "Entrada duplicada no fue encontrada para entrada `%s`..."
|
2054 |
-
|
2055 |
-
#: ../../models/import/record.php:1545
|
2056 |
-
msgid "<b>SKIPPED</b>: by specified records option"
|
2057 |
-
msgstr "<b>OMITIDO</b>: por opción de registro específicos "
|
2058 |
-
|
2059 |
-
#: ../../models/import/record.php:1566
|
2060 |
-
#, php-format
|
2061 |
-
msgid "<b>SKIPPED</b>: By filter wp_all_import_is_post_to_update `%s`"
|
2062 |
-
msgstr "<b>OMITIDO</b>: por filtro wp_all_import_is_post_to_update `%s`"
|
2063 |
-
|
2064 |
-
#: ../../models/import/record.php:1583
|
2065 |
-
#, php-format
|
2066 |
-
msgid "<b>SKIPPED</b>: Previously imported record found for `%s`"
|
2067 |
-
msgstr "<b>SKIPPED</b>: Registros previamente importados encontrados para `%s`"
|
2068 |
-
|
2069 |
-
#: ../../models/import/record.php:1598
|
2070 |
-
#, php-format
|
2071 |
-
msgid "Preserve taxonomies of already existing article for `%s`"
|
2072 |
-
msgstr "Conservar taxonomías para artículos actualmente existentes para `%s`"
|
2073 |
-
|
2074 |
-
#: ../../models/import/record.php:1603
|
2075 |
-
#, php-format
|
2076 |
-
msgid ""
|
2077 |
-
"<b>WARNING</b>: Unable to get current taxonomies for article #%d, updating "
|
2078 |
-
"with those read from XML file"
|
2079 |
-
msgstr ""
|
2080 |
-
"<b>ADVERTENCIA</b>: No se pudo obtener taxonomías actuales para artículo #%d,"
|
2081 |
-
" actualizando con la lectura del archivo XML"
|
2082 |
-
|
2083 |
-
#: ../../models/import/record.php:1620
|
2084 |
-
#, php-format
|
2085 |
-
msgid "Preserve date of already existing article for `%s`"
|
2086 |
-
msgstr "Conservar fecha de artículos existentes para `%s`"
|
2087 |
-
|
2088 |
-
#: ../../models/import/record.php:1624
|
2089 |
-
#, php-format
|
2090 |
-
msgid "Preserve status of already existing article for `%s`"
|
2091 |
-
msgstr "Conservar estado de artículos existentes para `%s`"
|
2092 |
-
|
2093 |
-
#: ../../models/import/record.php:1628
|
2094 |
-
#, php-format
|
2095 |
-
msgid "Preserve content of already existing article for `%s`"
|
2096 |
-
msgstr "Conservar contenido de artículos existentes para `%s`"
|
2097 |
-
|
2098 |
-
#: ../../models/import/record.php:1632
|
2099 |
-
#, php-format
|
2100 |
-
msgid "Preserve title of already existing article for `%s`"
|
2101 |
-
msgstr "Conservar títulos de artículos ya existentes para `%s`"
|
2102 |
-
|
2103 |
-
#: ../../models/import/record.php:1636
|
2104 |
-
#, php-format
|
2105 |
-
msgid "Preserve slug of already existing article for `%s`"
|
2106 |
-
msgstr "Conservar slug de artículos ya existentes para `%s`"
|
2107 |
-
|
2108 |
-
#: ../../models/import/record.php:1644
|
2109 |
-
#, php-format
|
2110 |
-
msgid "Preserve excerpt of already existing article for `%s`"
|
2111 |
-
msgstr "Conservar extracto de articulo ya existente para `%s`"
|
2112 |
-
|
2113 |
-
#: ../../models/import/record.php:1648
|
2114 |
-
#, php-format
|
2115 |
-
msgid "Preserve menu order of already existing article for `%s`"
|
2116 |
-
msgstr "Conservar orden de menus de artículos ya existentes para `%s`"
|
2117 |
-
|
2118 |
-
#: ../../models/import/record.php:1652
|
2119 |
-
#, php-format
|
2120 |
-
msgid "Preserve post parent of already existing article for `%s`"
|
2121 |
-
msgstr "Conservar entradas padres de artículos ya existentes para `%s`"
|
2122 |
-
|
2123 |
-
#: ../../models/import/record.php:1660
|
2124 |
-
#, php-format
|
2125 |
-
msgid "Preserve post author of already existing article for `%s`"
|
2126 |
-
msgstr "Conservar autor de entradas de artículos ya existentes para `%s`"
|
2127 |
-
|
2128 |
-
#: ../../models/import/record.php:1678
|
2129 |
-
#, php-format
|
2130 |
-
msgid "Applying filter `pmxi_article_data` for `%s`"
|
2131 |
-
msgstr "Aplicando filtro `pmxi_article_data` para `%s`"
|
2132 |
-
|
2133 |
-
#: ../../models/import/record.php:1690
|
2134 |
-
#, php-format
|
2135 |
-
msgid "Deleting attachments for `%s`"
|
2136 |
-
msgstr "Eliminando archivos adjuntos para `%s`"
|
2137 |
-
|
2138 |
-
#: ../../models/import/record.php:1695
|
2139 |
-
#, php-format
|
2140 |
-
msgid "Deleting images for `%s`"
|
2141 |
-
msgstr "Eliminando imágenes para `%s`"
|
2142 |
-
|
2143 |
-
#: ../../models/import/record.php:1713
|
2144 |
-
msgid "<b>SKIPPED</b>: by do not create new posts option."
|
2145 |
-
msgstr "<b>OMITIDO</b>: por no crear opción de nuevas entradas."
|
2146 |
-
|
2147 |
-
#: ../../models/import/record.php:1785
|
2148 |
-
#, php-format
|
2149 |
-
msgid "<b>WARNING</b>: Unable to create cloaked link for %s"
|
2150 |
-
msgstr "<b>ADVERTENCIA</b>: No se ha podido crear enlace encubierto para %s"
|
2151 |
-
|
2152 |
-
#: ../../models/import/record.php:1822
|
2153 |
-
#, php-format
|
2154 |
-
msgid "<b>CREATING</b> `%s` `%s`"
|
2155 |
-
msgstr "<b>CREANDO</b> `%s` `%s`"
|
2156 |
-
|
2157 |
-
#: ../../models/import/record.php:1825
|
2158 |
-
#, php-format
|
2159 |
-
msgid "<b>UPDATING</b> `%s` `%s`"
|
2160 |
-
msgstr "<b>ACTUALIZANDO</b> `%s` `%s`"
|
2161 |
-
|
2162 |
-
#: ../../models/import/record.php:1836 ../../models/import/record.php:1841 ../..
|
2163 |
-
#: /models/import/record.php:2885
|
2164 |
-
msgid "<b>ERROR</b>"
|
2165 |
-
msgstr "<b>ERROR</b>"
|
2166 |
-
|
2167 |
-
#: ../../models/import/record.php:1860
|
2168 |
-
#, php-format
|
2169 |
-
msgid "Associate post `%s` with current import ..."
|
2170 |
-
msgstr "Entradas asociadas `%s` con el importe actual..."
|
2171 |
-
|
2172 |
-
#: ../../models/import/record.php:1866
|
2173 |
-
#, php-format
|
2174 |
-
msgid "Associate post `%s` with post format %s ..."
|
2175 |
-
msgstr "Entradas asociadas `%s` con el formato de la entrada `%s`..."
|
2176 |
-
|
2177 |
-
#: ../../models/import/record.php:1878
|
2178 |
-
msgid "<b>CUSTOM FIELDS:</b>"
|
2179 |
-
msgstr "<b>CAMPOS PERSONALIZADOS:</b>"
|
2180 |
-
|
2181 |
-
#: ../../models/import/record.php:1915
|
2182 |
-
#, php-format
|
2183 |
-
msgid ""
|
2184 |
-
"- Custom field %s has been deleted for `%s` attempted to `update all custom "
|
2185 |
-
"fields` setting ..."
|
2186 |
-
msgstr ""
|
2187 |
-
"- Campo personalizado %s ha sido eliminado para `%s` intentando configurar "
|
2188 |
-
"`actualizar todos los campos personalizados` ..."
|
2189 |
-
|
2190 |
-
#: ../../models/import/record.php:1928
|
2191 |
-
#, php-format
|
2192 |
-
msgid ""
|
2193 |
-
"- Custom field %s has been deleted for `%s` attempted to `update only these "
|
2194 |
-
"custom fields: %s, leave rest alone` setting ..."
|
2195 |
-
msgstr ""
|
2196 |
-
"- Campo personalizado %s ha sido eliminado para `%s` intentando configurar "
|
2197 |
-
"`actualizar solo estos campos personalizados: %s, dejar el resto igual` ...."
|
2198 |
-
|
2199 |
-
#: ../../models/import/record.php:1942
|
2200 |
-
#, php-format
|
2201 |
-
msgid ""
|
2202 |
-
"- Custom field %s has been deleted for `%s` attempted to `leave these fields "
|
2203 |
-
"alone: %s, update all other Custom Fields` setting ..."
|
2204 |
-
msgstr ""
|
2205 |
-
"- Campo personalizado %s ha sido eliminado para`%s` intentando configurar "
|
2206 |
-
"`dejar estos campos si editar: %s, actualizar todos los otros campos "
|
2207 |
-
"personalizados` ..."
|
2208 |
-
|
2209 |
-
#: ../../models/import/record.php:2013
|
2210 |
-
#, php-format
|
2211 |
-
msgid "- Custom field `%s` has been skipped attempted to record matching options ..."
|
2212 |
-
msgstr ""
|
2213 |
-
"- Campo personalizado `%s` ha sido omitido intentando guarda opciones que "
|
2214 |
-
"coindicen ..."
|
2215 |
-
|
2216 |
-
#: ../../models/import/record.php:2021
|
2217 |
-
msgid "- <b>ACTION</b>: pmxi_custom_field"
|
2218 |
-
msgstr "- <b>ACCION</b>: pmxi_custom_field"
|
2219 |
-
|
2220 |
-
#: ../../models/import/record.php:2049
|
2221 |
-
#, php-format
|
2222 |
-
msgid "- Custom field `%s` has been updated with value `%s` for post `%s` ..."
|
2223 |
-
msgstr ""
|
2224 |
-
"-Campo personalizado '%s' se ha actualizado con valor de '%s' para entrada "
|
2225 |
-
"'%s'..."
|
2226 |
-
|
2227 |
-
#: ../../models/import/record.php:2050
|
2228 |
-
msgid "- <b>ACTION</b>: pmxi_update_post_meta"
|
2229 |
-
msgstr "- <b>ACCION</b>: pmxi_update_post_meta"
|
2230 |
-
|
2231 |
-
#: ../../models/import/record.php:2090
|
2232 |
-
msgid "<b>IMAGES:</b>"
|
2233 |
-
msgstr "<b>IMAGENES:</b>"
|
2234 |
-
|
2235 |
-
#: ../../models/import/record.php:2094
|
2236 |
-
#, php-format
|
2237 |
-
msgid "<b>ERROR</b>: Target directory %s is not writable"
|
2238 |
-
msgstr "<b>ERROR</b>: Directorio de destino %s no es modificable"
|
2239 |
-
|
2240 |
-
#: ../../models/import/record.php:2123
|
2241 |
-
msgid "- Keep existing and add newest images ..."
|
2242 |
-
msgstr "- Mantener existentes y agregar imágenes mas nuevas ..."
|
2243 |
-
|
2244 |
-
#: ../../models/import/record.php:2205
|
2245 |
-
#, php-format
|
2246 |
-
msgid "- Importing image `%s` for `%s` ..."
|
2247 |
-
msgstr "- Importando imagen `%s` para `%s` ..."
|
2248 |
-
|
2249 |
-
#: ../../models/import/record.php:2219
|
2250 |
-
msgid "- found base64_encoded image"
|
2251 |
-
msgstr "- imagen base64_encoded encontrada"
|
2252 |
-
|
2253 |
-
#: ../../models/import/record.php:2490
|
2254 |
-
#, php-format
|
2255 |
-
msgid "- Post `%s` saved as Draft, because no images are downloaded successfully"
|
2256 |
-
msgstr ""
|
2257 |
-
"- Entrada `%s` guardada como borrador por que ninguna imagen ha sido "
|
2258 |
-
"descargada satisfactoriamente"
|
2259 |
-
|
2260 |
-
#: ../../models/import/record.php:2499
|
2261 |
-
#, php-format
|
2262 |
-
msgid "Post `%s` saved as Draft, because no images are downloaded successfully"
|
2263 |
-
msgstr ""
|
2264 |
-
"Entrada `%s` guardada como borrador por que ninguna imagen ha sido "
|
2265 |
-
"descargada satisfactoriamente"
|
2266 |
-
|
2267 |
-
#: ../../models/import/record.php:2549
|
2268 |
-
msgid "<b>ATTACHMENTS:</b>"
|
2269 |
-
msgstr "<b>ARCHIVOS ADJUNTOS:</b>"
|
2270 |
-
|
2271 |
-
#: ../../models/import/record.php:2552
|
2272 |
-
#, php-format
|
2273 |
-
msgid "- <b>ERROR</b>: Target directory %s is not writable"
|
2274 |
-
msgstr "- <b>ERROR</b>: Directorio de destino %s no es modificable"
|
2275 |
-
|
2276 |
-
#: ../../models/import/record.php:2561
|
2277 |
-
#, php-format
|
2278 |
-
msgid "- Importing attachments for `%s` ..."
|
2279 |
-
msgstr "- Importando archivos adjuntos para `%s` ..."
|
2280 |
-
|
2281 |
-
#: ../../models/import/record.php:2593
|
2282 |
-
#, php-format
|
2283 |
-
msgid "- Filename for attachment was generated as %s"
|
2284 |
-
msgstr "- El nombre del archivo para archivo adjunto fue generado como %s"
|
2285 |
-
|
2286 |
-
#: ../../models/import/record.php:2598
|
2287 |
-
#, php-format
|
2288 |
-
msgid "- <b>WARNING</b>: Attachment file %s cannot be saved locally as %s"
|
2289 |
-
msgstr ""
|
2290 |
-
"- <b>ADVERTENCIA</b>: Archivo adjunto %s no puede ser guardado localmente "
|
2291 |
-
"como %s"
|
2292 |
-
|
2293 |
-
#: ../../models/import/record.php:2599
|
2294 |
-
#, php-format
|
2295 |
-
msgid "- <b>WP Error</b>: %s"
|
2296 |
-
msgstr "- <b>Error WP</b>: %s"
|
2297 |
-
|
2298 |
-
#: ../../models/import/record.php:2613
|
2299 |
-
#, php-format
|
2300 |
-
msgid "- File %s has been successfully downloaded"
|
2301 |
-
msgstr "- Archivo %s ha sido descargado satisfactoriamente"
|
2302 |
-
|
2303 |
-
#: ../../models/import/record.php:2629
|
2304 |
-
#, php-format
|
2305 |
-
msgid "- Attachment has been successfully created for post `%s`"
|
2306 |
-
msgstr "- Archivo adjunto ha sido creado satisfactoriamente para entrada `%s`"
|
2307 |
-
|
2308 |
-
#: ../../models/import/record.php:2630 ../../models/import/record.php:2636
|
2309 |
-
msgid "- <b>ACTION</b>: pmxi_attachment_uploaded"
|
2310 |
-
msgstr "- <b>ACCION</b>: pmxi_attachment_uploaded"
|
2311 |
-
|
2312 |
-
#: ../../models/import/record.php:2654
|
2313 |
-
msgid "<b>TAXONOMIES:</b>"
|
2314 |
-
msgstr "<b>TAXONOMIAS:</b>"
|
2315 |
-
|
2316 |
-
#: ../../models/import/record.php:2663
|
2317 |
-
#, php-format
|
2318 |
-
msgid "- Importing taxonomy `%s` ..."
|
2319 |
-
msgstr "- Importando taxonomía `%s` ..."
|
2320 |
-
|
2321 |
-
#: ../../models/import/record.php:2666
|
2322 |
-
#, php-format
|
2323 |
-
msgid "- Auto-nest enabled with separator `%s` ..."
|
2324 |
-
msgstr "- Auto-nido habilitado con separador `%s` ..."
|
2325 |
-
|
2326 |
-
#: ../../models/import/record.php:2672
|
2327 |
-
#, php-format
|
2328 |
-
msgid ""
|
2329 |
-
"- %s %s `%s` has been skipped attempted to `Leave these taxonomies alone, "
|
2330 |
-
"update all others`..."
|
2331 |
-
msgstr ""
|
2332 |
-
"- %s %s `%s` ha sido omitido intentando `Dejar estas taxonomías sin tocas, "
|
2333 |
-
"actualiza todas las demas`..."
|
2334 |
-
|
2335 |
-
#: ../../models/import/record.php:2677
|
2336 |
-
#, php-format
|
2337 |
-
msgid ""
|
2338 |
-
"- %s %s `%s` has been skipped attempted to `Update only these taxonomies, "
|
2339 |
-
"leave the rest alone`..."
|
2340 |
-
msgstr ""
|
2341 |
-
"- %s %s `%s` ha sido omitido intentando `Actualizar solo estas taxonomias, "
|
2342 |
-
"dejar el resto sin tocar`..."
|
2343 |
-
|
2344 |
-
#: ../../models/import/record.php:2714
|
2345 |
-
#, php-format
|
2346 |
-
msgid "- Creating parent %s %s `%s` ..."
|
2347 |
-
msgstr "- Creando padre %s %s `%s` ..."
|
2348 |
-
|
2349 |
-
#: ../../models/import/record.php:2717
|
2350 |
-
#, php-format
|
2351 |
-
msgid "- Creating child %s %s for %s named `%s` ..."
|
2352 |
-
msgstr "- Creando hijo %s %s para %s llamado `%s` ..."
|
2353 |
-
|
2354 |
-
#: ../../models/import/record.php:2724
|
2355 |
-
#, php-format
|
2356 |
-
msgid "- <b>WARNING</b>: `%s`"
|
2357 |
-
msgstr "- <b>ADVERTENCIA</b>: `%s`"
|
2358 |
-
|
2359 |
-
#: ../../models/import/record.php:2745
|
2360 |
-
#, php-format
|
2361 |
-
msgid ""
|
2362 |
-
"- Attempted to create parent %s %s `%s`, duplicate detected. Importing %s to "
|
2363 |
-
"existing `%s` %s, ID %d, slug `%s` ..."
|
2364 |
-
msgstr ""
|
2365 |
-
"- Intentando crear padre %s %s `%s`, duplicado detectado. Importando %s a un "
|
2366 |
-
"existente `%s` %s, ID %d, slug `%s` ..."
|
2367 |
-
|
2368 |
-
#: ../../models/import/record.php:2748
|
2369 |
-
#, php-format
|
2370 |
-
msgid ""
|
2371 |
-
"- Attempted to create child %s %s `%s`, duplicate detected. Importing %s to "
|
2372 |
-
"existing `%s` %s, ID %d, slug `%s` ..."
|
2373 |
-
msgstr ""
|
2374 |
-
"- Intentando crear hijo %s %s `%s`, duplicado encontrado. Importando %s a "
|
2375 |
-
"un existente `%s` %s, ID %d, slug `%s` ..."
|
2376 |
-
|
2377 |
-
#: ../../models/import/record.php:2763
|
2378 |
-
#, php-format
|
2379 |
-
msgid ""
|
2380 |
-
"- %s %s `%s` has been skipped attempted to `Do not update Taxonomies (incl. "
|
2381 |
-
"Categories and Tags)`..."
|
2382 |
-
msgstr ""
|
2383 |
-
"- %s %s `%s` ha sido omitido intento para `No actualizar Taxonomías (incl. "
|
2384 |
-
"Categorias and Etiquetas)`..."
|
2385 |
-
|
2386 |
-
#: ../../models/import/record.php:2782
|
2387 |
-
#, php-format
|
2388 |
-
msgid "<b>CREATED</b> `%s` `%s` (ID: %s)"
|
2389 |
-
msgstr "<b>CREADO</b> `%s` `%s` (ID: %s)"
|
2390 |
-
|
2391 |
-
#: ../../models/import/record.php:2784
|
2392 |
-
#, php-format
|
2393 |
-
msgid "<b>UPDATED</b> `%s` `%s` (ID: %s)"
|
2394 |
-
msgstr "<b>ACTUALIZADO</b> `%s` `%s` (ID: %s)"
|
2395 |
-
|
2396 |
-
#: ../../models/import/record.php:2825
|
2397 |
-
msgid "<b>ACTION</b>: pmxi_saved_post"
|
2398 |
-
msgstr "<b>ACCION</b>: pmxi_saved_post"
|
2399 |
-
|
2400 |
-
#: ../../models/import/record.php:2832
|
2401 |
-
#, php-format
|
2402 |
-
msgid ""
|
2403 |
-
"<span class=\"processing_info\"><span class=\"created_count\">%s</span><span "
|
2404 |
-
"class=\"updated_count\">%s</span><span class=\"percents_count\">%s</span></span>"
|
2405 |
-
msgstr ""
|
2406 |
-
"<span class=\"processing_info\"><span class=\"created_count\">%s</span><span "
|
2407 |
-
"class=\"updated_count\">%s</span><span class=\"percents_count\">%s</span></span>"
|
2408 |
-
|
2409 |
-
#: ../../models/import/record.php:2836
|
2410 |
-
msgid "<b>ACTION</b>: pmxi_after_post_import"
|
2411 |
-
msgstr "<b>ACCION</b>: pmxi_after_post_import"
|
2412 |
-
|
2413 |
-
#: ../../models/import/record.php:2865
|
2414 |
-
msgid "Update stock status previously imported posts which are no longer actual..."
|
2415 |
-
msgstr ""
|
2416 |
-
"Actualizar estado de stock de entradas previamente importadas que ya no son "
|
2417 |
-
"actuales..."
|
2418 |
-
|
2419 |
-
#: ../../models/import/record.php:2889
|
2420 |
-
msgid "Cleaning temporary data..."
|
2421 |
-
msgstr "Limpiando datos temporales..."
|
2422 |
-
|
2423 |
-
#: ../../models/import/record.php:2905
|
2424 |
-
msgid "Deleting source XML file..."
|
2425 |
-
msgstr "Eliminando archivo fuente XML"
|
2426 |
-
|
2427 |
-
#: ../../models/import/record.php:2909
|
2428 |
-
msgid "Deleting chunks files..."
|
2429 |
-
msgstr "Eliminando pedazos de archivos..."
|
2430 |
-
|
2431 |
-
#: ../../models/import/record.php:2916 ../../models/import/record.php:2925
|
2432 |
-
#, php-format
|
2433 |
-
msgid "<b>WARNING</b>: Unable to remove %s"
|
2434 |
-
msgstr "<b>ADVERTENCIA</b>: No se puedo remover %s"
|
2435 |
-
|
2436 |
-
#: ../../models/import/record.php:2937
|
2437 |
-
msgid "Removing previously imported posts which are no longer actual..."
|
2438 |
-
msgstr "Quitando entradas previamente importadas que ya no son actuales..."
|
2439 |
-
|
2440 |
-
#: ../../models/import/record.php:2959
|
2441 |
-
msgid "<b>ACTION</b>: pmxi_delete_post"
|
2442 |
-
msgstr "<b>ACCION</b>: pmxi_delete_post"
|
2443 |
-
|
2444 |
-
#: ../../models/import/record.php:2961
|
2445 |
-
msgid "Deleting posts from database"
|
2446 |
-
msgstr "Eliminando entradas de la base de datos"
|
2447 |
-
|
2448 |
-
#: ../../models/import/record.php:2977
|
2449 |
-
#, php-format
|
2450 |
-
msgid "Instead of deletion post with ID `%s`, set Custom Field `%s` to value `%s`"
|
2451 |
-
msgstr ""
|
2452 |
-
"En vez de eliminar entradas con ID `%s`, establezca Campo Personalizado `%s` "
|
2453 |
-
"para el valor `%s`"
|
2454 |
-
|
2455 |
-
#: ../../models/import/record.php:2985
|
2456 |
-
#, php-format
|
2457 |
-
msgid "Instead of deletion, change post with ID `%s` status to Draft"
|
2458 |
-
msgstr "En vez de eliminar, cambie la entrada con ID `%s` a estado borrador"
|
2459 |
-
|
2460 |
-
#: ../../models/import/record.php:3118
|
2461 |
-
msgid "<b>ERROR</b> Could not insert term relationship into the database"
|
2462 |
-
msgstr ""
|
2463 |
-
"<b>ERROR</b> No se pudo insertar el termino de la relación en la base de "
|
2464 |
-
"datos"
|
2465 |
-
|
2466 |
-
#: ../../views/admin/addons/index.php:3
|
2467 |
-
msgid "WP All Import Add-ons"
|
2468 |
-
msgstr "Add-ons de WP All Import"
|
2469 |
-
|
2470 |
-
#: ../../views/admin/addons/index.php:8
|
2471 |
-
msgid "Premium Add-ons"
|
2472 |
-
msgstr "Add-ons Premium"
|
2473 |
-
|
2474 |
-
#: ../../views/admin/addons/index.php:20 ../../views/admin/addons/index.php:61
|
2475 |
-
msgid "Installed"
|
2476 |
-
msgstr "Instalado"
|
2477 |
-
|
2478 |
-
#: ../../views/admin/addons/index.php:22
|
2479 |
-
msgid "Free Version Installed"
|
2480 |
-
msgstr "Versión gratis instalada"
|
2481 |
-
|
2482 |
-
#: ../../views/admin/addons/index.php:29 ../../views/admin/addons/index.php:70
|
2483 |
-
msgid " required"
|
2484 |
-
msgstr " requerido"
|
2485 |
-
|
2486 |
-
#: ../../views/admin/addons/index.php:36 ../../views/admin/addons/index.php:77 ..
|
2487 |
-
#: /../views/admin/addons/index.php:82 ../../views/admin/import/index.php:108
|
2488 |
-
msgid "Download"
|
2489 |
-
msgstr "Descargado"
|
2490 |
-
|
2491 |
-
#: ../../views/admin/addons/index.php:41
|
2492 |
-
msgid "Purchase & Install"
|
2493 |
-
msgstr "Comprar e instalar"
|
2494 |
-
|
2495 |
-
#: ../../views/admin/addons/index.php:49
|
2496 |
-
msgid "Free Add-ons"
|
2497 |
-
msgstr "Add-ons Gratuitos"
|
2498 |
-
|
2499 |
-
#: ../../views/admin/addons/index.php:63
|
2500 |
-
msgid "Paid Version Installed"
|
2501 |
-
msgstr "Versión pagada instalada"
|
2502 |
-
|
2503 |
-
#: ../../views/admin/help/index.php:1
|
2504 |
-
msgid "WP All Import Help"
|
2505 |
-
msgstr "Ayuda para WP All Import"
|
2506 |
-
|
2507 |
-
#: ../../views/admin/history/index.php:16 ../../views/admin/history/index.php:18 .
|
2508 |
-
#: ./../views/admin/history/index.php:20
|
2509 |
-
#, php-format
|
2510 |
-
msgid "%s - Import History"
|
2511 |
-
msgstr "%s - Importar Historial"
|
2512 |
-
|
2513 |
-
#: ../../views/admin/history/index.php:32 ../../views/admin/manage/index.php:27
|
2514 |
-
msgid "ID"
|
2515 |
-
msgstr "ID"
|
2516 |
-
|
2517 |
-
#: ../../views/admin/history/index.php:34
|
2518 |
-
msgid "Run Time"
|
2519 |
-
msgstr "Tiempo de Ejecución"
|
2520 |
-
|
2521 |
-
#: ../../views/admin/history/index.php:35
|
2522 |
-
msgid "Type"
|
2523 |
-
msgstr "Tipo"
|
2524 |
-
|
2525 |
-
#: ../../views/admin/history/index.php:36 ../../views/admin/manage/index.php:30
|
2526 |
-
msgid "Summary"
|
2527 |
-
msgstr "Sumatoria"
|
2528 |
-
|
2529 |
-
#: ../../views/admin/history/index.php:42
|
2530 |
-
msgid "Scheduling Status"
|
2531 |
-
msgstr "Estado de Planificación"
|
2532 |
-
|
2533 |
-
#: ../../views/admin/history/index.php:42
|
2534 |
-
msgid "triggered"
|
2535 |
-
msgstr "desencadenada"
|
2536 |
-
|
2537 |
-
#: ../../views/admin/history/index.php:42
|
2538 |
-
msgid "and processing"
|
2539 |
-
msgstr "y procesando"
|
2540 |
-
|
2541 |
-
#: ../../views/admin/history/index.php:52 ../../views/admin/history/index.php:226
|
2542 |
-
#: ../../views/admin/manage/index.php:44 ../../views/admin/manage/index.php:350
|
2543 |
-
msgid "Bulk Actions"
|
2544 |
-
msgstr "Acciones en masa"
|
2545 |
-
|
2546 |
-
#: ../../views/admin/history/index.php:53 ../../views/admin/history/index.php:228
|
2547 |
-
#: ../../views/admin/manage/index.php:45 ../../views/admin/manage/index.php:192 ..
|
2548 |
-
#: /../views/admin/manage/index.php:352
|
2549 |
-
msgid "Delete"
|
2550 |
-
msgstr "Eliminar"
|
2551 |
-
|
2552 |
-
#: ../../views/admin/history/index.php:55 ../../views/admin/history/index.php:234
|
2553 |
-
#: ../../views/admin/import/element.php:86 ../../views/admin/manage/index.php:47 .
|
2554 |
-
#: ./../views/admin/manage/index.php:358
|
2555 |
-
msgid "Apply"
|
2556 |
-
msgstr "Aplicar"
|
2557 |
-
|
2558 |
-
#: ../../views/admin/history/index.php:61 ../../views/admin/manage/index.php:53
|
2559 |
-
#, php-format
|
2560 |
-
msgid "Displaying %s–%s of %s"
|
2561 |
-
msgstr "Mostrando %s–%s de %s"
|
2562 |
-
|
2563 |
-
#: ../../views/admin/history/index.php:108
|
2564 |
-
msgid "No previous history found."
|
2565 |
-
msgstr "No se encontró historial previo."
|
2566 |
-
|
2567 |
-
#: ../../views/admin/history/index.php:161
|
2568 |
-
msgid "manual run"
|
2569 |
-
msgstr "ejecución manual"
|
2570 |
-
|
2571 |
-
#: ../../views/admin/history/index.php:164
|
2572 |
-
msgid "continue run"
|
2573 |
-
msgstr "continuar ejecución"
|
2574 |
-
|
2575 |
-
#: ../../views/admin/history/index.php:189
|
2576 |
-
msgid "Download Log"
|
2577 |
-
msgstr "Descargar bitácora"
|
2578 |
-
|
2579 |
-
#: ../../views/admin/history/index.php:193
|
2580 |
-
msgid "Log Unavailable"
|
2581 |
-
msgstr "Bitácora no disponible"
|
2582 |
-
|
2583 |
-
#: ../../views/admin/history/index.php:230 ../../views/admin/manage/index.php:354
|
2584 |
-
msgid "Restore"
|
2585 |
-
msgstr "Recuperar"
|
2586 |
-
|
2587 |
-
#: ../../views/admin/history/index.php:231 ../../views/admin/manage/index.php:355
|
2588 |
-
msgid "Delete Permanently"
|
2589 |
-
msgstr "Borrar Permanentemente"
|
2590 |
-
|
2591 |
-
#: ../../views/admin/history/index.php:238 ../../views/admin/import/confirm.php:
|
2592 |
-
#: 337 ../../views/admin/import/element.php:213 ../../views/admin/import/index.
|
2593 |
-
#: php:286 ../../views/admin/import/options.php:73 ../..
|
2594 |
-
#: /views/admin/import/process.php:107 ../../views/admin/import/template.php:219 .
|
2595 |
-
#: ./../views/admin/manage/index.php:363 ../../views/admin/manage/scheduling.php:
|
2596 |
-
#: 62 ../../views/admin/settings/index.php:212
|
2597 |
-
msgid "Created by"
|
2598 |
-
msgstr "Creado por"
|
2599 |
-
|
2600 |
-
#: ../../views/admin/import/confirm.php:12 ../../views/admin/import/element.php:9
|
2601 |
-
#: ../../views/admin/import/index.php:44 ../../views/admin/import/options.php:19 .
|
2602 |
-
#: ./../views/admin/import/process.php:9 ../../views/admin/import/template.php:10
|
2603 |
-
msgid "Import XML / CSV"
|
2604 |
-
msgstr "Importar XML/ CSV"
|
2605 |
-
|
2606 |
-
#: ../../views/admin/import/confirm.php:15 ../../views/admin/import/element.php:
|
2607 |
-
#: 12 ../../views/admin/import/index.php:47 ../../views/admin/import/options.php:
|
2608 |
-
#: 22 ../../views/admin/import/process.php:12 ../../views/admin/import/template.
|
2609 |
-
#: php:13
|
2610 |
-
msgid "Support"
|
2611 |
-
msgstr "Soporte"
|
2612 |
-
|
2613 |
-
#: ../../views/admin/import/confirm.php:15 ../../views/admin/import/element.php:
|
2614 |
-
#: 12 ../../views/admin/import/index.php:47 ../../views/admin/import/options.php:
|
2615 |
-
#: 22 ../../views/admin/import/process.php:12 ../../views/admin/import/template.
|
2616 |
-
#: php:13
|
2617 |
-
msgid "Documentation"
|
2618 |
-
msgstr "Documentación"
|
2619 |
-
|
2620 |
-
#: ../../views/admin/import/confirm.php:56
|
2621 |
-
msgid "Your file is all set up!"
|
2622 |
-
msgstr "Su archivo tiene todo listo!"
|
2623 |
-
|
2624 |
-
#: ../../views/admin/import/confirm.php:58
|
2625 |
-
msgid "This import did not finish successfuly last time it was run."
|
2626 |
-
msgstr "La importación no termino correctamente la ultima vez que fue ejecutada."
|
2627 |
-
|
2628 |
-
#: ../../views/admin/import/confirm.php:62
|
2629 |
-
msgid "Check the settings below, then click the green button to run the import."
|
2630 |
-
msgstr ""
|
2631 |
-
"Revise las configuraciones de abajo, entonces haga click en el botón verde "
|
2632 |
-
"para ejecutar la importación."
|
2633 |
-
|
2634 |
-
#: ../../views/admin/import/confirm.php:64
|
2635 |
-
msgid "You can attempt to continue where it left off."
|
2636 |
-
msgstr "Puede intentar continuar donde lo dejo."
|
2637 |
-
|
2638 |
-
#: ../../views/admin/import/confirm.php:72 ../../views/admin/import/confirm.php:326
|
2639 |
-
msgid "Confirm & Run Import"
|
2640 |
-
msgstr "Confirmar y Ejecutar la Importación"
|
2641 |
-
|
2642 |
-
#: ../../views/admin/import/confirm.php:82
|
2643 |
-
msgid "Continue from the last run"
|
2644 |
-
msgstr "Continuar desde la ultima ejecución"
|
2645 |
-
|
2646 |
-
#: ../../views/admin/import/confirm.php:86
|
2647 |
-
msgid "Run from the beginning"
|
2648 |
-
msgstr "Ejecutar desde el inicio"
|
2649 |
-
|
2650 |
-
#: ../../views/admin/import/confirm.php:89 ../../views/admin/import/process.php:82
|
2651 |
-
msgid "Continue Import"
|
2652 |
-
msgstr "Continuar Impotación"
|
2653 |
-
|
2654 |
-
#: ../../views/admin/import/confirm.php:91
|
2655 |
-
msgid "Run entire import from the beginning"
|
2656 |
-
msgstr "Ejecutar la importación entera desde el inicio"
|
2657 |
-
|
2658 |
-
#: ../../views/admin/import/confirm.php:110
|
2659 |
-
msgid "Import Summary"
|
2660 |
-
msgstr "Sumatoria de la Importación"
|
2661 |
-
|
2662 |
-
#: ../../views/admin/import/confirm.php:116
|
2663 |
-
#, php-format
|
2664 |
-
msgid "Your max_execution_time is %s seconds"
|
2665 |
-
msgstr "Su max_execution_time es %s segundos"
|
2666 |
-
|
2667 |
-
#: ../../views/admin/import/confirm.php:140
|
2668 |
-
#, php-format
|
2669 |
-
msgid ""
|
2670 |
-
"WP All Import will import the file <span style=\"color:#40acad;\">%s</span>, "
|
2671 |
-
"which is <span style=\"color:#000; font-weight:bold;\">%s</span>"
|
2672 |
-
msgstr ""
|
2673 |
-
"WP All Import importará el archivo <span style=\"color:#40acad;\">%s</span>, "
|
2674 |
-
"que es <span style=\"color:#000; font-weight:bold;\">%s</span>"
|
2675 |
-
|
2676 |
-
#: ../../views/admin/import/confirm.php:140
|
2677 |
-
msgid "undefined"
|
2678 |
-
msgstr "indefinido"
|
2679 |
-
|
2680 |
-
#: ../../views/admin/import/confirm.php:143
|
2681 |
-
#, php-format
|
2682 |
-
msgid ""
|
2683 |
-
"WP All Import will process the records matching the XPath expression: <span "
|
2684 |
-
"style=\"color:#46ba69; font-weight:bold;\">%s</span>"
|
2685 |
-
msgstr ""
|
2686 |
-
"WP All Import procesara los registros que coinciden con la expresión XPath: "
|
2687 |
-
"<span style=\"color:#46ba69; font-weight:bold;\">%s</span>"
|
2688 |
-
|
2689 |
-
#: ../../views/admin/import/confirm.php:145
|
2690 |
-
#, php-format
|
2691 |
-
msgid ""
|
2692 |
-
"WP All Import will process <span style=\"color:#46ba69; font-weight:bold;"
|
2693 |
-
"\">%s</span> rows in your file"
|
2694 |
-
msgstr ""
|
2695 |
-
"WP All Import procesará <span style=\"color:#46ba69; font-weight:bold;"
|
2696 |
-
"\">%s</span> líneas en su archivo"
|
2697 |
-
|
2698 |
-
#: ../../views/admin/import/confirm.php:147
|
2699 |
-
#, php-format
|
2700 |
-
msgid ""
|
2701 |
-
"WP All Import will process all %s <span style=\"color:#46ba69; font-weight:"
|
2702 |
-
"bold;\"><%s></span> records in your file"
|
2703 |
-
msgstr ""
|
2704 |
-
"WP All Import procesará todo %s<span style=\"color:#46ba69; font-weight:bold;"
|
2705 |
-
"\"><%s></span> registros en su archivo"
|
2706 |
-
|
2707 |
-
#: ../../views/admin/import/confirm.php:151
|
2708 |
-
#, php-format
|
2709 |
-
msgid "WP All Import will process only specified records: %s"
|
2710 |
-
msgstr "WP All Import procesará solamente solo registros especificados: %s"
|
2711 |
-
|
2712 |
-
#: ../../views/admin/import/confirm.php:159
|
2713 |
-
#, php-format
|
2714 |
-
msgid "Your unique key is <span style=\"color:#000; font-weight:bold;\">%s</span>"
|
2715 |
-
msgstr "Su clave única es <span style=\"color:#000; font-weight:bold;\">%s</span>"
|
2716 |
-
|
2717 |
-
#: ../../views/admin/import/confirm.php:163
|
2718 |
-
#, php-format
|
2719 |
-
msgid ""
|
2720 |
-
"%ss previously imported by this import (ID: %s) with the same unique key "
|
2721 |
-
"will be updated."
|
2722 |
-
msgstr ""
|
2723 |
-
"%ss previamente importado por esta importación (ID: %s) con la misma llave "
|
2724 |
-
"única será actualizado."
|
2725 |
-
|
2726 |
-
#: ../../views/admin/import/confirm.php:166
|
2727 |
-
#, php-format
|
2728 |
-
msgid ""
|
2729 |
-
"%ss previously imported by this import (ID: %s) that aren't present for this "
|
2730 |
-
"run of the import will be deleted."
|
2731 |
-
msgstr ""
|
2732 |
-
"%ss previamente importado por esta importación (ID: %s) que no esta presente "
|
2733 |
-
"para esta ejecución de la importación será eliminada."
|
2734 |
-
|
2735 |
-
#: ../../views/admin/import/confirm.php:170
|
2736 |
-
#, php-format
|
2737 |
-
msgid ""
|
2738 |
-
"%ss previously imported by this import (ID: %s) that aren't present for this "
|
2739 |
-
"run of the import will be set to draft."
|
2740 |
-
msgstr ""
|
2741 |
-
"%ss previamente importado por esta importación (ID: %s) que no están "
|
2742 |
-
"presente para esta ejecución de la importación será puesto como borrador."
|
2743 |
-
|
2744 |
-
#: ../../views/admin/import/confirm.php:174
|
2745 |
-
#, php-format
|
2746 |
-
msgid ""
|
2747 |
-
"Records with unique keys that don't match any unique keys from %ss created "
|
2748 |
-
"by previous runs of this import (ID: %s) will be created."
|
2749 |
-
msgstr ""
|
2750 |
-
"Registros con clave única que no coincidan con ninguna clave única de %ss "
|
2751 |
-
"creado por ejecuciones previas de esta importación (ID: %s) será creado."
|
2752 |
-
|
2753 |
-
#: ../../views/admin/import/confirm.php:188
|
2754 |
-
#, php-format
|
2755 |
-
msgid ""
|
2756 |
-
"WP All Import will merge data into existing %ss, matching the following "
|
2757 |
-
"criteria: %s"
|
2758 |
-
msgstr ""
|
2759 |
-
"WP All Import fusionará datos en un %ss existente, coincidiendo con el "
|
2760 |
-
"siguiente criterio: %s"
|
2761 |
-
|
2762 |
-
#: ../../views/admin/import/confirm.php:191
|
2763 |
-
msgid "Existing data will be updated with the data specified in this import."
|
2764 |
-
msgstr ""
|
2765 |
-
"Datos existentes serán actualizados con los datos especificados en esta "
|
2766 |
-
"importación"
|
2767 |
-
|
2768 |
-
#: ../../views/admin/import/confirm.php:194
|
2769 |
-
#, php-format
|
2770 |
-
msgid ""
|
2771 |
-
"Next %s data will be updated, <strong>all other data will be left "
|
2772 |
-
"alone</strong>"
|
2773 |
-
msgstr ""
|
2774 |
-
"Siguiente %s información será actualizada, <strong>toda la otra información "
|
2775 |
-
"de dejara intacta</strong>"
|
2776 |
-
|
2777 |
-
#: ../../views/admin/import/confirm.php:197
|
2778 |
-
msgid "status"
|
2779 |
-
msgstr "estado"
|
2780 |
-
|
2781 |
-
#: ../../views/admin/import/confirm.php:200
|
2782 |
-
msgid "title"
|
2783 |
-
msgstr "titulo"
|
2784 |
-
|
2785 |
-
#: ../../views/admin/import/confirm.php:203
|
2786 |
-
msgid "slug"
|
2787 |
-
msgstr "slug"
|
2788 |
-
|
2789 |
-
#: ../../views/admin/import/confirm.php:206
|
2790 |
-
msgid "content"
|
2791 |
-
msgstr "contenido"
|
2792 |
-
|
2793 |
-
#: ../../views/admin/import/confirm.php:209
|
2794 |
-
msgid "excerpt"
|
2795 |
-
msgstr "extracto"
|
2796 |
-
|
2797 |
-
#: ../../views/admin/import/confirm.php:212
|
2798 |
-
msgid "dates"
|
2799 |
-
msgstr "fechas"
|
2800 |
-
|
2801 |
-
#: ../../views/admin/import/confirm.php:215
|
2802 |
-
msgid "menu order"
|
2803 |
-
msgstr "orden de menús"
|
2804 |
-
|
2805 |
-
#: ../../views/admin/import/confirm.php:218
|
2806 |
-
msgid "parent post"
|
2807 |
-
msgstr "entrada padre"
|
2808 |
-
|
2809 |
-
#: ../../views/admin/import/confirm.php:221
|
2810 |
-
msgid "attachments"
|
2811 |
-
msgstr "archivos adjuntos"
|
2812 |
-
|
2813 |
-
#: ../../views/admin/import/confirm.php:228
|
2814 |
-
msgid "all advanced custom fields"
|
2815 |
-
msgstr "todos los campos personalizados avanzados"
|
2816 |
-
|
2817 |
-
#: ../../views/admin/import/confirm.php:231
|
2818 |
-
msgid "only ACF presented in import options"
|
2819 |
-
msgstr "solamente ACF presentado en opciones de importacion"
|
2820 |
-
|
2821 |
-
#: ../../views/admin/import/confirm.php:234
|
2822 |
-
#, php-format
|
2823 |
-
msgid "only these ACF : %s"
|
2824 |
-
msgstr "solamente estas ACF : %s"
|
2825 |
-
|
2826 |
-
#: ../../views/admin/import/confirm.php:237
|
2827 |
-
#, php-format
|
2828 |
-
msgid "all ACF except these: %s"
|
2829 |
-
msgstr "todos los ACF excepto estos: %s"
|
2830 |
-
|
2831 |
-
#: ../../views/admin/import/confirm.php:247
|
2832 |
-
msgid "old images will be updated with new"
|
2833 |
-
msgstr "imágenes antiguas serán actualizadas por nuevas"
|
2834 |
-
|
2835 |
-
#: ../../views/admin/import/confirm.php:250
|
2836 |
-
msgid "only new images will be added"
|
2837 |
-
msgstr "solamente imágenes nuevas serán agregadas"
|
2838 |
-
|
2839 |
-
#: ../../views/admin/import/confirm.php:260
|
2840 |
-
msgid "all custom fields"
|
2841 |
-
msgstr "todos los campos personalizados"
|
2842 |
-
|
2843 |
-
#: ../../views/admin/import/confirm.php:263
|
2844 |
-
#, php-format
|
2845 |
-
msgid "only these custom fields : %s"
|
2846 |
-
msgstr "solamente estos campos personalizados: %s"
|
2847 |
-
|
2848 |
-
#: ../../views/admin/import/confirm.php:266
|
2849 |
-
#, php-format
|
2850 |
-
msgid "all cusom fields except these: %s"
|
2851 |
-
msgstr "todos los campos personalizados excepto estos: %s"
|
2852 |
-
|
2853 |
-
#: ../../views/admin/import/confirm.php:276
|
2854 |
-
msgid "remove existing taxonomies, add new taxonomies"
|
2855 |
-
msgstr "quitar taxonomías existentes, agregar nuevas taxonomias"
|
2856 |
-
|
2857 |
-
#: ../../views/admin/import/confirm.php:279
|
2858 |
-
msgid "only add new"
|
2859 |
-
msgstr "solamente agregar nuevas"
|
2860 |
-
|
2861 |
-
#: ../../views/admin/import/confirm.php:282
|
2862 |
-
#, php-format
|
2863 |
-
msgid "update only these taxonomies: %s , leave the rest alone"
|
2864 |
-
msgstr "actualizar solo estas taxonomías: %s, dejar el resto intactos"
|
2865 |
-
|
2866 |
-
#: ../../views/admin/import/confirm.php:285
|
2867 |
-
#, php-format
|
2868 |
-
msgid "leave these taxonomies: %s alone, update all others"
|
2869 |
-
msgstr "dejar estas taxonomias: %s intactas, actualiza las demás "
|
2870 |
-
|
2871 |
-
#: ../../views/admin/import/confirm.php:294
|
2872 |
-
#, php-format
|
2873 |
-
msgid "New %ss will be created from records that don't match the above criteria."
|
2874 |
-
msgstr ""
|
2875 |
-
"%ss nuevos serán creados desde los registros que no coincidan con el "
|
2876 |
-
"criterio de arriba."
|
2877 |
-
|
2878 |
-
#: ../../views/admin/import/confirm.php:300
|
2879 |
-
msgid ""
|
2880 |
-
"High-Speed, Small File Processing enabled. Your import will fail if it takes "
|
2881 |
-
"longer than your server's max_execution_time."
|
2882 |
-
msgstr ""
|
2883 |
-
"Alta-Velocidad, Procesamiento de Archivos Pequeños habilitado. Su "
|
2884 |
-
"importación fallara si toma mas tiempo que el tiempo máximo de ejecución de "
|
2885 |
-
"su servidor."
|
2886 |
-
|
2887 |
-
#: ../../views/admin/import/confirm.php:302
|
2888 |
-
#, php-format
|
2889 |
-
msgid ""
|
2890 |
-
"Piece By Piece Processing enabled. %s records will be processed each "
|
2891 |
-
"iteration. If it takes longer than your server's max_execution_time to "
|
2892 |
-
"process %s records, your import will fail."
|
2893 |
-
msgstr ""
|
2894 |
-
"Procesamiento de Pieza por Pieza habilitado. %s registros serán procesados "
|
2895 |
-
"en cada iteración. Si toma mas tiempo que el tiempo máximo de ejecución de "
|
2896 |
-
"su servidor para procesar %s registros su importación fallará. "
|
2897 |
-
|
2898 |
-
#: ../../views/admin/import/confirm.php:306
|
2899 |
-
#, php-format
|
2900 |
-
msgid "Your file will be split into %s records chunks before processing."
|
2901 |
-
msgstr "Su archivo se separará en %s pedazos de registros antes de ser procesado."
|
2902 |
-
|
2903 |
-
#: ../../views/admin/import/confirm.php:310
|
2904 |
-
msgid ""
|
2905 |
-
"do_action calls will be disabled in wp_insert_post and wp_insert_attachment "
|
2906 |
-
"during the import."
|
2907 |
-
msgstr ""
|
2908 |
-
"llamadas de do_action será deshabilitado en wp_insert_post y "
|
2909 |
-
"wp_insert_attachment durante la importación."
|
2910 |
-
|
2911 |
-
#: ../../views/admin/import/confirm.php:329
|
2912 |
-
msgid "or go back to Step 4"
|
2913 |
-
msgstr "o regrese al paso 4"
|
2914 |
-
|
2915 |
-
#: ../../views/admin/import/confirm.php:331
|
2916 |
-
msgid "or go back to Manage Imports"
|
2917 |
-
msgstr "o regrese a Manejar Importaciones"
|
2918 |
-
|
2919 |
-
#: ../../views/admin/import/element.php:23 ../../views/admin/import/element.php:210
|
2920 |
-
msgid "Continue to Step 3"
|
2921 |
-
msgstr "Continuar al paso 3"
|
2922 |
-
|
2923 |
-
#: ../../views/admin/import/element.php:36
|
2924 |
-
msgid "What element are you looking for?"
|
2925 |
-
msgstr "Que elemento esta buscando?"
|
2926 |
-
|
2927 |
-
#: ../../views/admin/import/element.php:65
|
2928 |
-
#, php-format
|
2929 |
-
msgid "of <span class=\"wpallimport-elements-count-info\">%s</span>"
|
2930 |
-
msgstr "de <span class=\"wpallimport-elements-count-info\">%s</span>"
|
2931 |
-
|
2932 |
-
#: ../../views/admin/import/element.php:83
|
2933 |
-
msgid "Set delimiter for CSV fields:"
|
2934 |
-
msgstr "Defina delimitador para campos CSV:"
|
2935 |
-
|
2936 |
-
#: ../../views/admin/import/element.php:104
|
2937 |
-
#, php-format
|
2938 |
-
msgid ""
|
2939 |
-
"Each <span><<span class=\"root_element\">%s</span>></span> element will "
|
2940 |
-
"be imported into a <span>New %s</span>"
|
2941 |
-
msgstr ""
|
2942 |
-
"Cada <span><<span class=\"root_element\">%s</span>></span> elemento será "
|
2943 |
-
"importado en un <span>Nuevo %s</span>"
|
2944 |
-
|
2945 |
-
#: ../../views/admin/import/element.php:108
|
2946 |
-
#, php-format
|
2947 |
-
msgid ""
|
2948 |
-
"Data in <span><<span class=\"root_element\">%s</span>></span> elements "
|
2949 |
-
"will be imported to <span>%s</span>"
|
2950 |
-
msgstr ""
|
2951 |
-
"Datos en <span><<span class=\"root_element\">%s</span>></span> elementos "
|
2952 |
-
"serán importados para <span>%s</span>"
|
2953 |
-
|
2954 |
-
#: ../../views/admin/import/element.php:113
|
2955 |
-
msgid ""
|
2956 |
-
"This doesn't look right, try manually selecting a different root element on "
|
2957 |
-
"the left."
|
2958 |
-
msgstr ""
|
2959 |
-
"Esto no se ve correcto, intente manualmente seleccionando elemento de raíz "
|
2960 |
-
"diferente en la izquierda."
|
2961 |
-
|
2962 |
-
#: ../../views/admin/import/element.php:125
|
2963 |
-
msgid "Add Filtering Options"
|
2964 |
-
msgstr "Agregar Opciones de Filtrado"
|
2965 |
-
|
2966 |
-
#: ../../views/admin/import/element.php:132 ../../views/admin/import/element.php:
|
2967 |
-
#: 184
|
2968 |
-
msgid "Element"
|
2969 |
-
msgstr "Elemento"
|
2970 |
-
|
2971 |
-
#: ../../views/admin/import/element.php:133 ../../views/admin/import/element.php:
|
2972 |
-
#: 185
|
2973 |
-
msgid "Rule"
|
2974 |
-
msgstr "Regla"
|
2975 |
-
|
2976 |
-
#: ../../views/admin/import/element.php:134 ../../views/admin/import/element.php:
|
2977 |
-
#: 186 ../../views/admin/import/options/_reimport_options.php:42 ../..
|
2978 |
-
#: /views/admin/import/options/_reimport_template.php:107 ../..
|
2979 |
-
#: /views/admin/import/template/_custom_fields_template.php:40 ../..
|
2980 |
-
#: /views/admin/import/template/_custom_fields_template.php:74 ../..
|
2981 |
-
#: /views/admin/import/template/_custom_fields_template.php:283 ../..
|
2982 |
-
#: /views/admin/import/template/_custom_fields_template.php:417
|
2983 |
-
msgid "Value"
|
2984 |
-
msgstr "Valor"
|
2985 |
-
|
2986 |
-
#: ../../views/admin/import/element.php:140
|
2987 |
-
msgid "Select Element"
|
2988 |
-
msgstr "Seleccionar Elemento"
|
2989 |
-
|
2990 |
-
#: ../../views/admin/import/element.php:146
|
2991 |
-
msgid "Select Rule"
|
2992 |
-
msgstr "Seleccionar Regla"
|
2993 |
-
|
2994 |
-
#: ../../views/admin/import/element.php:147
|
2995 |
-
msgid "equals"
|
2996 |
-
msgstr "es igual a "
|
2997 |
-
|
2998 |
-
#: ../../views/admin/import/element.php:148
|
2999 |
-
msgid "not equals"
|
3000 |
-
msgstr "no es igual a"
|
3001 |
-
|
3002 |
-
#: ../../views/admin/import/element.php:149
|
3003 |
-
msgid "greater than"
|
3004 |
-
msgstr "mayor que"
|
3005 |
-
|
3006 |
-
#: ../../views/admin/import/element.php:150
|
3007 |
-
msgid "equals or greater than"
|
3008 |
-
msgstr "es igual o mayor que "
|
3009 |
-
|
3010 |
-
#: ../../views/admin/import/element.php:151
|
3011 |
-
msgid "less than"
|
3012 |
-
msgstr "menor que"
|
3013 |
-
|
3014 |
-
#: ../../views/admin/import/element.php:152
|
3015 |
-
msgid "equals or less than"
|
3016 |
-
msgstr "es igual o menor que"
|
3017 |
-
|
3018 |
-
#: ../../views/admin/import/element.php:153
|
3019 |
-
msgid "contains"
|
3020 |
-
msgstr "contiene"
|
3021 |
-
|
3022 |
-
#: ../../views/admin/import/element.php:154
|
3023 |
-
msgid "not contains"
|
3024 |
-
msgstr "no contiene"
|
3025 |
-
|
3026 |
-
#: ../../views/admin/import/element.php:155
|
3027 |
-
msgid "is empty"
|
3028 |
-
msgstr "esta vacío"
|
3029 |
-
|
3030 |
-
#: ../../views/admin/import/element.php:156
|
3031 |
-
msgid "is not empty"
|
3032 |
-
msgstr "no está vacío"
|
3033 |
-
|
3034 |
-
#: ../../views/admin/import/element.php:163
|
3035 |
-
msgid "Add Rule"
|
3036 |
-
msgstr "Agregrar Regla"
|
3037 |
-
|
3038 |
-
#: ../../views/admin/import/element.php:172 ../..
|
3039 |
-
#: /views/admin/import/options/_settings_template.php:88
|
3040 |
-
msgid "XPath"
|
3041 |
-
msgstr "Xpath"
|
3042 |
-
|
3043 |
-
#: ../../views/admin/import/element.php:187
|
3044 |
-
msgid "Condition"
|
3045 |
-
msgstr "Condición"
|
3046 |
-
|
3047 |
-
#: ../../views/admin/import/element.php:192
|
3048 |
-
msgid ""
|
3049 |
-
"No filtering options. Add filtering options to only import records matching "
|
3050 |
-
"some specified criteria."
|
3051 |
-
msgstr ""
|
3052 |
-
"Sin opciones de filtrado. Agregue opciones de filtrado solo para importar "
|
3053 |
-
"registro que coincidan algún criterio especificado."
|
3054 |
-
|
3055 |
-
#: ../../views/admin/import/element.php:197
|
3056 |
-
msgid "Apply Filters To XPath"
|
3057 |
-
msgstr "Aplicar Filtros Para XPath"
|
3058 |
-
|
3059 |
-
#: ../../views/admin/import/element.php:206
|
3060 |
-
msgid "Back to Step 1"
|
3061 |
-
msgstr "Regresar a Paso 1"
|
3062 |
-
|
3063 |
-
#: ../../views/admin/import/evaluate.php:3
|
3064 |
-
#, php-format
|
3065 |
-
msgid "<span class=\"matches_count\">%s</span> <strong>%s</strong> will be imported"
|
3066 |
-
msgstr "<span class=\"matches_count\">%s</span> <strong>%s</strong> será importado"
|
3067 |
-
|
3068 |
-
#: ../../views/admin/import/evaluate.php:5
|
3069 |
-
#, php-format
|
3070 |
-
msgid "<span class=\"matches_count\">%s</span> <strong>%s</strong> %s will be imported"
|
3071 |
-
msgstr "<span class=\"matches_count\">%s</span> <strong>%s</strong> %s será importado"
|
3072 |
-
|
3073 |
-
#: ../../views/admin/import/evaluate.php:7
|
3074 |
-
msgid "Click an element to select it, or scroll down to add filtering options."
|
3075 |
-
msgstr ""
|
3076 |
-
"De click a un elemento para seleccionarlo, o vaya hacia abajo para agregar "
|
3077 |
-
"opciones de filtrado."
|
3078 |
-
|
3079 |
-
#: ../../views/admin/import/evaluate.php:9 ../..
|
3080 |
-
#: /views/admin/import/evaluate_variations.php:5
|
3081 |
-
msgid ""
|
3082 |
-
"<strong>Note</strong>: Highlighting is turned off since can be very slow on "
|
3083 |
-
"large sets of elements."
|
3084 |
-
msgstr ""
|
3085 |
-
"<strong>Nota</strong>: Resaltado se apaga ya que puede ser muy lento en "
|
3086 |
-
"grandes conjuntos de elementos."
|
3087 |
-
|
3088 |
-
#: ../../views/admin/import/evaluate_variations.php:3
|
3089 |
-
#, php-format
|
3090 |
-
msgid "Current selection matches <span class=\"matches_count\">%s</span> %s."
|
3091 |
-
msgstr "La selección actual coincide <span class=\"matches_count\">%s</span> %s."
|
3092 |
-
|
3093 |
-
#: ../../views/admin/import/evaluate_variations.php:14
|
3094 |
-
#, php-format
|
3095 |
-
msgid "#<strong>%s</strong> out of <strong>%s</strong>"
|
3096 |
-
msgstr "#<strong>%s</strong> fuera de <strong>%s</strong>"
|
3097 |
-
|
3098 |
-
#: ../../views/admin/import/index.php:69
|
3099 |
-
msgid "First, specify how you want to import your data"
|
3100 |
-
msgstr "Primero, especifique como quiere importar su información"
|
3101 |
-
|
3102 |
-
#: ../../views/admin/import/index.php:71
|
3103 |
-
msgid "First, specify previously exported file"
|
3104 |
-
msgstr "Primero, especifique su archivo previamente exportado"
|
3105 |
-
|
3106 |
-
#: ../../views/admin/import/index.php:72
|
3107 |
-
msgid ""
|
3108 |
-
"The data in this file can be modified, but the structure of the file "
|
3109 |
-
"(column/element names) should not change."
|
3110 |
-
msgstr ""
|
3111 |
-
"La información en este archivo puede ser modificada, pero la estructura del "
|
3112 |
-
"archivo (columna/ nombres de elementos) no deberían de cambiar."
|
3113 |
-
|
3114 |
-
#: ../../views/admin/import/index.php:76 ../..
|
3115 |
-
#: /views/admin/import/options/_import_file.php:74
|
3116 |
-
msgid "Upload a file"
|
3117 |
-
msgstr "Cargar un archivo"
|
3118 |
-
|
3119 |
-
#: ../../views/admin/import/index.php:80 ../..
|
3120 |
-
#: /views/admin/import/options/_import_file.php:78
|
3121 |
-
msgid "Download from URL"
|
3122 |
-
msgstr "Descargar desde un URL"
|
3123 |
-
|
3124 |
-
#: ../../views/admin/import/index.php:84 ../..
|
3125 |
-
#: /views/admin/import/options/_import_file.php:82
|
3126 |
-
msgid "Use existing file"
|
3127 |
-
msgstr "Utilizar archivo existente"
|
3128 |
-
|
3129 |
-
#: ../../views/admin/import/index.php:94 ../..
|
3130 |
-
#: /views/admin/import/options/_import_file.php:92
|
3131 |
-
msgid "Click here to select file from your computer..."
|
3132 |
-
msgstr "Haga click aquí para seleccionar un archivo desde su computadora..."
|
3133 |
-
|
3134 |
-
#: ../../views/admin/import/index.php:112
|
3135 |
-
msgid ""
|
3136 |
-
"<strong>Hint:</strong> After you create this import, you can schedule it to "
|
3137 |
-
"run automatically, on a pre-defined schedule, with cron jobs. If anything in "
|
3138 |
-
"your file has changed, WP All Import can update your site with the changed "
|
3139 |
-
"data automatically."
|
3140 |
-
msgstr ""
|
3141 |
-
"<strong>Consejo:</strong> Después de que creat esta importación, puedes "
|
3142 |
-
"programar que se ejecute automáticamente, en una programación pre-definida, "
|
3143 |
-
"con trabajos cron. Si algo en tu archivo ha cambiado, WP All Import puede "
|
3144 |
-
"actualizar tu sitio con el cambio de información automáticamente."
|
3145 |
-
|
3146 |
-
#: ../../views/admin/import/index.php:151 ../..
|
3147 |
-
#: /views/admin/import/options/_import_file.php:144
|
3148 |
-
msgid "Select a previously uploaded file"
|
3149 |
-
msgstr "Seleccione un archivo previamente cargado"
|
3150 |
-
|
3151 |
-
#: ../../views/admin/import/index.php:160 ../..
|
3152 |
-
#: /views/admin/import/options/_import_file.php:156
|
3153 |
-
#, php-format
|
3154 |
-
msgid "Upload files to <strong>%s</strong> and they will appear in this list"
|
3155 |
-
msgstr "Cargar archivos a <strong>%s</strong> y ellos aparecerán en esta lista"
|
3156 |
-
|
3157 |
-
#: ../../views/admin/import/index.php:174
|
3158 |
-
msgid "Import data from this file into..."
|
3159 |
-
msgstr "Importar información desde este archivo en..."
|
3160 |
-
|
3161 |
-
#: ../../views/admin/import/index.php:178
|
3162 |
-
msgid "New Items"
|
3163 |
-
msgstr "Articulos Nuevos"
|
3164 |
-
|
3165 |
-
#: ../../views/admin/import/index.php:182
|
3166 |
-
msgid "Existing Items"
|
3167 |
-
msgstr "Artículos Existentes"
|
3168 |
-
|
3169 |
-
#: ../../views/admin/import/index.php:204
|
3170 |
-
msgid "Create new"
|
3171 |
-
msgstr "Crear nuevo"
|
3172 |
-
|
3173 |
-
#: ../../views/admin/import/index.php:205
|
3174 |
-
msgid "Import to existing"
|
3175 |
-
msgstr "Importar a existente"
|
3176 |
-
|
3177 |
-
#: ../../views/admin/import/index.php:208
|
3178 |
-
msgid "for each record in my data file."
|
3179 |
-
msgstr "por cada registro en mi archivo de datos."
|
3180 |
-
|
3181 |
-
#: ../../views/admin/import/index.php:209
|
3182 |
-
msgid "and update some or all of their data."
|
3183 |
-
msgstr "y actualiza algunos o todo de sus datos."
|
3184 |
-
|
3185 |
-
#: ../../views/admin/import/index.php:238
|
3186 |
-
msgid ""
|
3187 |
-
"In Step 4, you will map the records in your file to the existing items on "
|
3188 |
-
"your site and specify which data points will be updated and which will be "
|
3189 |
-
"left alone."
|
3190 |
-
msgstr ""
|
3191 |
-
"En el Paso 4, usted mapeara los registros en su archivo para los elementos "
|
3192 |
-
"existentes en su sitio y especificara que puntos de datos se actualizaran y "
|
3193 |
-
"cuales quedarán intactos."
|
3194 |
-
|
3195 |
-
#: ../../views/admin/import/index.php:239
|
3196 |
-
msgid ""
|
3197 |
-
"The Existing Items option is commonly used to update existing products with "
|
3198 |
-
"new stock quantities while leaving all their other data alone, update "
|
3199 |
-
"properties on your site with new pricing, etc."
|
3200 |
-
msgstr ""
|
3201 |
-
"La opción de Artículos Existentes es comúnmente utilizada para actualizar "
|
3202 |
-
"productos existentes con nuevas cantidades de stock mientras deja la otra "
|
3203 |
-
"información sin tocar, propiedades de actualización en su sitio con nuevos "
|
3204 |
-
"precios, etc."
|
3205 |
-
|
3206 |
-
#: ../../views/admin/import/index.php:280
|
3207 |
-
msgid "Skip to Step 4"
|
3208 |
-
msgstr "Saltarse al paso 4"
|
3209 |
-
|
3210 |
-
#: ../../views/admin/import/index.php:281
|
3211 |
-
msgid "Continue to Step 2"
|
3212 |
-
msgstr "Continuar al Paso 2"
|
3213 |
-
|
3214 |
-
#: ../../views/admin/import/options.php:88 ../..
|
3215 |
-
#: /views/admin/import/options/_reimport_template.php:14 ../..
|
3216 |
-
#: /views/admin/import/options/_reimport_template.php:81
|
3217 |
-
msgid "Record Matching"
|
3218 |
-
msgstr "Registro que Coincide"
|
3219 |
-
|
3220 |
-
#: ../../views/admin/import/options.php:91
|
3221 |
-
msgid ""
|
3222 |
-
"Record Matching is how WP All Import matches records in your file with posts "
|
3223 |
-
"that already exist WordPress."
|
3224 |
-
msgstr ""
|
3225 |
-
"Registro que Coincide es como WP All Import coincide registros en tu archivo "
|
3226 |
-
"con entradas que ya existen en Wordpress."
|
3227 |
-
|
3228 |
-
#: ../../views/admin/import/options.php:95
|
3229 |
-
msgid ""
|
3230 |
-
"Record Matching is most commonly used to tell WP All Import how to match up "
|
3231 |
-
"records in your file with posts WP All Import has already created on your "
|
3232 |
-
"site, so that if your file is updated with new data, WP All Import can "
|
3233 |
-
"update your posts accordingly."
|
3234 |
-
msgstr ""
|
3235 |
-
"Registro que Coincide se utiliza comúnmente para decirle a WP All Import "
|
3236 |
-
"como puede juntar registros en tu archivo con entradas que WP All Import ya "
|
3237 |
-
"ha creado en tu sitio, así que si tu archivo es actualizado con nueva "
|
3238 |
-
"información, WP All Import pues actualizar tus entradas en consecuencia."
|
3239 |
-
|
3240 |
-
#: ../../views/admin/import/options.php:100
|
3241 |
-
msgid "AUTOMATIC RECORD MATCHING"
|
3242 |
-
msgstr "CONCORDANCIA AUTOMATICA DE REGISTRO"
|
3243 |
-
|
3244 |
-
#: ../../views/admin/import/options.php:103
|
3245 |
-
msgid ""
|
3246 |
-
"Automatic Record Matching allows WP All Import to update records that were "
|
3247 |
-
"imported or updated during the last run of this same import."
|
3248 |
-
msgstr ""
|
3249 |
-
"Concordancia Automática de Registro permite a WP All Import actualizar "
|
3250 |
-
"registros que fueron importados o actualizados durante la ultima ejecución "
|
3251 |
-
"de esta misma importación."
|
3252 |
-
|
3253 |
-
#: ../../views/admin/import/options.php:107
|
3254 |
-
msgid ""
|
3255 |
-
"Your unique key must be UNIQUE for each record in your feed. Make sure you "
|
3256 |
-
"get it right - you can't change it later. You'll have to re-create your "
|
3257 |
-
"import."
|
3258 |
-
msgstr ""
|
3259 |
-
"Su clave única debe se UNICA por cada registro en su proveedor de "
|
3260 |
-
"información. Asegurese de tenerlo correctamente - no puedes cambiarlos "
|
3261 |
-
"después. Tendrá que recrear su importación."
|
3262 |
-
|
3263 |
-
#: ../../views/admin/import/options.php:112
|
3264 |
-
msgid "MANUAL RECORD MATCHING"
|
3265 |
-
msgstr "CONCORDANCIA MANUAL DE REGISTROS"
|
3266 |
-
|
3267 |
-
#: ../../views/admin/import/options.php:115
|
3268 |
-
msgid ""
|
3269 |
-
"Manual record matching allows WP All Import to update any records, even "
|
3270 |
-
"records that were not imported with WP All Import, or are part of a "
|
3271 |
-
"different import."
|
3272 |
-
msgstr ""
|
3273 |
-
"Concordancia Manual de Registros permite a WP All Import actualizar "
|
3274 |
-
"cualquier registro, aun cuando registros que no fueron importado por El "
|
3275 |
-
"Importador WP o son parte de una importación diferente."
|
3276 |
-
|
3277 |
-
#: ../../views/admin/import/preview.php:6 ../../views/admin/import/preview_images.
|
3278 |
-
#: php:6 ../../views/admin/import/preview_prices.php:6 ../..
|
3279 |
-
#: /views/admin/import/preview_taxonomies.php:6 ../../views/admin/import/tag.php:8
|
3280 |
-
#, php-format
|
3281 |
-
msgid ""
|
3282 |
-
"<strong><input type=\"text\" value=\"%s\" name=\"tagno\" "
|
3283 |
-
"class=\"tagno\"/></strong><span class=\"out_of\"> of <strong "
|
3284 |
-
"class=\"pmxi_count\">%s</strong></span>"
|
3285 |
-
msgstr ""
|
3286 |
-
"<strong><input type=\"text\" value=\"%s\" name=\"tagno\" "
|
3287 |
-
"class=\"tagno\"/></strong><span class=\"out_of\"> de <strong "
|
3288 |
-
"class=\"pmxi_count\">%s</strong></span>"
|
3289 |
-
|
3290 |
-
#: ../../views/admin/import/preview_images.php:60
|
3291 |
-
msgid "Retrieving images..."
|
3292 |
-
msgstr "Recuperando imágenes..."
|
3293 |
-
|
3294 |
-
#: ../../views/admin/import/preview_images.php:64
|
3295 |
-
msgid "WP All Import will import images from the following file paths:"
|
3296 |
-
msgstr "WP All Import importara las imágenes desde las siguientes rutas de archivo:"
|
3297 |
-
|
3298 |
-
#: ../../views/admin/import/preview_images.php:65
|
3299 |
-
msgid "Please ensure the images exists at these file paths"
|
3300 |
-
msgstr "Por favor asegurese que las imágenes existen en esta ruta de archivos"
|
3301 |
-
|
3302 |
-
#: ../../views/admin/import/preview_images.php:73 ../..
|
3303 |
-
#: /views/admin/import/preview_images.php:115 ../..
|
3304 |
-
#: /views/admin/import/preview_images.php:153
|
3305 |
-
msgid "Here are the above URLs, in <img> tags. "
|
3306 |
-
msgstr "Aquí están las URLS, en <img> tags."
|
3307 |
-
|
3308 |
-
#: ../../views/admin/import/preview_images.php:140
|
3309 |
-
msgid "Download in progress..."
|
3310 |
-
msgstr "Descarga en progreso....."
|
3311 |
-
|
3312 |
-
#: ../../views/admin/import/preview_images.php:144
|
3313 |
-
msgid "WP All Import will attempt to import images from the following URLs:"
|
3314 |
-
msgstr "WP All Import intentará importar las imágenes desde las siguientes URLs:"
|
3315 |
-
|
3316 |
-
#: ../../views/admin/import/preview_images.php:145
|
3317 |
-
msgid "Please check the URLs to ensure they point to valid images"
|
3318 |
-
msgstr "Por favor revise las URLs para asegurarse que apuntan a imágenes válidas"
|
3319 |
-
|
3320 |
-
#: ../../views/admin/import/preview_images.php:168
|
3321 |
-
msgid "Images not found for current record."
|
3322 |
-
msgstr "Las imágenes no fueron encontradas para el registro actual."
|
3323 |
-
|
3324 |
-
#: ../../views/admin/import/preview_prices.php:16
|
3325 |
-
msgid "Preview Prices"
|
3326 |
-
msgstr "Vista previa de Precios"
|
3327 |
-
|
3328 |
-
#: ../../views/admin/import/preview_prices.php:18
|
3329 |
-
msgid "Regular Price"
|
3330 |
-
msgstr "Precio Regular"
|
3331 |
-
|
3332 |
-
#: ../../views/admin/import/preview_prices.php:19
|
3333 |
-
msgid "Sale Price"
|
3334 |
-
msgstr "Precio de Oferta"
|
3335 |
-
|
3336 |
-
#: ../../views/admin/import/preview_taxonomies.php:16
|
3337 |
-
msgid "Test Taxonomies Hierarchy"
|
3338 |
-
msgstr "Prueba de Jerarquía de Taxonomías"
|
3339 |
-
|
3340 |
-
#: ../../views/admin/import/process.php:21
|
3341 |
-
msgid "Import <span id=\"status\">in Progress</span>"
|
3342 |
-
msgstr "Importación <span id=\"status\">en Progreso</span>"
|
3343 |
-
|
3344 |
-
#: ../../views/admin/import/process.php:22
|
3345 |
-
msgid ""
|
3346 |
-
"Importing may take some time. Please do not close your browser or refresh "
|
3347 |
-
"the page until the process is complete."
|
3348 |
-
msgstr ""
|
3349 |
-
"La importación puede tomar algún tiempo. Por favor no cierre su navegador o "
|
3350 |
-
"refresque la pagina hasta que el se haya completado el proceso."
|
3351 |
-
|
3352 |
-
#: ../../views/admin/import/process.php:29
|
3353 |
-
msgid "Time Elapsed"
|
3354 |
-
msgstr "Tiempo Transcurrido"
|
3355 |
-
|
3356 |
-
#: ../../views/admin/import/process.php:31
|
3357 |
-
msgid "Created"
|
3358 |
-
msgstr "Creado"
|
3359 |
-
|
3360 |
-
#: ../../views/admin/import/process.php:31
|
3361 |
-
msgid "Updated"
|
3362 |
-
msgstr "Actualizado"
|
3363 |
-
|
3364 |
-
#: ../../views/admin/import/process.php:31
|
3365 |
-
msgid "of"
|
3366 |
-
msgstr "de"
|
3367 |
-
|
3368 |
-
#: ../../views/admin/import/process.php:31 ../..
|
3369 |
-
#: /views/admin/import/options/_settings_template.php:23
|
3370 |
-
msgid "records"
|
3371 |
-
msgstr "registros"
|
3372 |
-
|
3373 |
-
#: ../../views/admin/import/process.php:38
|
3374 |
-
msgid "Import Complete!"
|
3375 |
-
msgstr "Importación Completada!"
|
3376 |
-
|
3377 |
-
#: ../../views/admin/import/process.php:40
|
3378 |
-
msgid "Duplicate records detected during import"
|
3379 |
-
msgstr "Se detectaron registros duplicados durante la importación"
|
3380 |
-
|
3381 |
-
#: ../../views/admin/import/process.php:40
|
3382 |
-
msgid ""
|
3383 |
-
"The unique identifier is how WP All Import tells two items in your import "
|
3384 |
-
"file apart. If it is the same for two items, then the first item will be "
|
3385 |
-
"overwritten when the second is imported."
|
3386 |
-
msgstr ""
|
3387 |
-
"El identificador único es como WP All Import identifica dos artículos en tu "
|
3388 |
-
"archivo de importación de cada uno. Si es el mismo identificador para los "
|
3389 |
-
"dos, entonces el primero será sobreescrito cuando el segundo sea importado."
|
3390 |
-
|
3391 |
-
#: ../../views/admin/import/process.php:42
|
3392 |
-
#, php-format
|
3393 |
-
msgid ""
|
3394 |
-
"The file you are importing has %s records, but WP All Import only created "
|
3395 |
-
"<span class=\"inserted_count\"></span> %s. It detected the other records in "
|
3396 |
-
"your file as duplicates. This could be because they actually are duplicates "
|
3397 |
-
"or it could be because your Unique Identifier is not unique for each record."
|
3398 |
-
"<br><br>If your import file has no duplicates and you want to import all %s "
|
3399 |
-
"records, you should delete everything that was just imported and then edit "
|
3400 |
-
"your Unique Identifier so it's unique for each item."
|
3401 |
-
msgstr ""
|
3402 |
-
"El archivo que esta importando tiene %s registros, pero WP All Import solo "
|
3403 |
-
"creó <span class=\"inserted_count\"></span> %s. Ha detectado los otros "
|
3404 |
-
"registros en tu archivo como duplicados. Esto puede ser debido a que ellos "
|
3405 |
-
"actualmente son duplicados o solo por que el Identificador Unico no es único "
|
3406 |
-
"para cada registro.<br><br>Si su importación no tiene duplicados y quiere "
|
3407 |
-
"importar todo los %s registros, debería de borrar todo que fue importado y "
|
3408 |
-
"luego editar el Identificador Unico para que sea único para cada articulo."
|
3409 |
-
|
3410 |
-
#: ../../views/admin/import/process.php:44
|
3411 |
-
msgid "Delete & Edit"
|
3412 |
-
msgstr "Borrar y Editar"
|
3413 |
-
|
3414 |
-
#: ../../views/admin/import/process.php:46
|
3415 |
-
#, php-format
|
3416 |
-
msgid ""
|
3417 |
-
"WP All Import successfully imported your file <span>%s</span> into your "
|
3418 |
-
"WordPress installation!"
|
3419 |
-
msgstr ""
|
3420 |
-
"WP All Import importó satisfactoriamente su archivo <span>%s</span> en su "
|
3421 |
-
"instalación de WordPress!"
|
3422 |
-
|
3423 |
-
#: ../../views/admin/import/process.php:48 ../../views/admin/import/process.php:50
|
3424 |
-
#, php-format
|
3425 |
-
msgid ""
|
3426 |
-
"There were <span class=\"wpallimport-errors-count\">%s</span> errors and <span "
|
3427 |
-
"class=\"wpallimport-warnings-count\">%s</span> warnings in this import. You "
|
3428 |
-
"can see these in the import log."
|
3429 |
-
msgstr ""
|
3430 |
-
"Hubieron algunos <span class=\"wpallimport-errors-count\">%s</span> errores y "
|
3431 |
-
"<span class=\"wpallimport-warnings-count\">%s</span> advertencias en esta "
|
3432 |
-
"importación. Puede verlos en la bitácora de importación"
|
3433 |
-
|
3434 |
-
#: ../../views/admin/import/process.php:53
|
3435 |
-
msgid "View Logs"
|
3436 |
-
msgstr "Ver Bitácora"
|
3437 |
-
|
3438 |
-
#: ../../views/admin/import/process.php:89
|
3439 |
-
msgid "Log"
|
3440 |
-
msgstr "Bitácora"
|
3441 |
-
|
3442 |
-
#: ../../views/admin/import/tag.php:5
|
3443 |
-
msgid "Elements"
|
3444 |
-
msgstr "Elementos"
|
3445 |
-
|
3446 |
-
#: ../../views/admin/import/tag.php:27
|
3447 |
-
msgid "History file not found. Probably you are using wrong encoding."
|
3448 |
-
msgstr ""
|
3449 |
-
"Archivo de Historial no encontrado. Probablemente esta utilizando "
|
3450 |
-
"codificación equivocada."
|
3451 |
-
|
3452 |
-
#: ../../views/admin/import/template.php:41
|
3453 |
-
msgid "Title & Content"
|
3454 |
-
msgstr "Título y Contenido"
|
3455 |
-
|
3456 |
-
#: ../../views/admin/import/template.php:48
|
3457 |
-
msgid "Drag & drop any element on the right to set the title."
|
3458 |
-
msgstr ""
|
3459 |
-
"Arrastrar y Soltar cualquier elemento a la derecha para establecer el titulo."
|
3460 |
-
" "
|
3461 |
-
|
3462 |
-
#: ../../views/admin/import/template.php:67
|
3463 |
-
msgid "WooCommerce Short Description"
|
3464 |
-
msgstr "Descripción Corta de WoooCommerce"
|
3465 |
-
|
3466 |
-
#: ../../views/admin/import/template.php:71 ../..
|
3467 |
-
#: /views/admin/import/template/_taxonomies_template.php:138
|
3468 |
-
msgid "Preview"
|
3469 |
-
msgstr "Vista Previa"
|
3470 |
-
|
3471 |
-
#: ../../views/admin/import/template.php:77
|
3472 |
-
msgid "Advanced Options"
|
3473 |
-
msgstr "Opciones Avanzadas"
|
3474 |
-
|
3475 |
-
#: ../../views/admin/import/template.php:84
|
3476 |
-
msgid "Keep line breaks from file"
|
3477 |
-
msgstr "Mantener los saltos de línea del archivo"
|
3478 |
-
|
3479 |
-
#: ../../views/admin/import/template.php:89
|
3480 |
-
msgid "Decode HTML entities with <b>html_entity_decode</b>"
|
3481 |
-
msgstr "Decodificar entidades HTML con <b>html_entity_decode</b>"
|
3482 |
-
|
3483 |
-
#: ../../views/admin/import/template.php:182
|
3484 |
-
msgid "Save settings as a template"
|
3485 |
-
msgstr "Guardar configuraciones como una plantilla"
|
3486 |
-
|
3487 |
-
#: ../../views/admin/import/template.php:185
|
3488 |
-
msgid "Template name..."
|
3489 |
-
msgstr "Nombre de Plantilla..."
|
3490 |
-
|
3491 |
-
#: ../../views/admin/import/template.php:190
|
3492 |
-
msgid "Load Template..."
|
3493 |
-
msgstr "Cargar Plantilla..."
|
3494 |
-
|
3495 |
-
#: ../../views/admin/import/template.php:210
|
3496 |
-
msgid "Back to Step 2"
|
3497 |
-
msgstr "Regresar a Paso 2"
|
3498 |
-
|
3499 |
-
#: ../../views/admin/import/template.php:212 ../..
|
3500 |
-
#: /views/admin/import/options/_buttons_template.php:21
|
3501 |
-
msgid "Back to Manage Imports"
|
3502 |
-
msgstr "Regresar a Manejar Importaciones"
|
3503 |
-
|
3504 |
-
#: ../../views/admin/import/options/_buttons_template.php:2
|
3505 |
-
msgid "To run the import, click Run Import on the Manage Imports page."
|
3506 |
-
msgstr ""
|
3507 |
-
"Para ejecutar la importación, haga click en Ejecutar Importación en la "
|
3508 |
-
"pagina de Manejar Importaciones."
|
3509 |
-
|
3510 |
-
#: ../../views/admin/import/options/_buttons_template.php:11
|
3511 |
-
msgid "Back to Step 3"
|
3512 |
-
msgstr "Regresar a Paso 3"
|
3513 |
-
|
3514 |
-
#: ../../views/admin/import/options/_buttons_template.php:15
|
3515 |
-
msgid "Save Only"
|
3516 |
-
msgstr "Guardar Solamente"
|
3517 |
-
|
3518 |
-
#: ../../views/admin/import/options/_buttons_template.php:18
|
3519 |
-
msgid "Continue"
|
3520 |
-
msgstr "Continuar"
|
3521 |
-
|
3522 |
-
#: ../../views/admin/import/options/_buttons_template.php:22
|
3523 |
-
msgid "Save Import Configuration"
|
3524 |
-
msgstr "Guardar Configuración de Importación"
|
3525 |
-
|
3526 |
-
#: ../../views/admin/import/options/_import_file.php:62
|
3527 |
-
msgid "Import File"
|
3528 |
-
msgstr "Importar Archivo"
|
3529 |
-
|
3530 |
-
#: ../../views/admin/import/options/_import_file.php:71
|
3531 |
-
msgid "Specify the location of the file to use for future runs of this import."
|
3532 |
-
msgstr ""
|
3533 |
-
"Especifique la ubicación del archivo a usar para la ejecución futura para "
|
3534 |
-
"esta importación."
|
3535 |
-
|
3536 |
-
#: ../../views/admin/import/options/_import_file.php:106
|
3537 |
-
msgid "Upload"
|
3538 |
-
msgstr "Cargar"
|
3539 |
-
|
3540 |
-
#: ../../views/admin/import/options/_reimport_options.php:2
|
3541 |
-
msgid "When WP All Import finds new or changed data..."
|
3542 |
-
msgstr "Cuando WP All Import encuentra datos nuevos o modificados..."
|
3543 |
-
|
3544 |
-
#: ../../views/admin/import/options/_reimport_options.php:9
|
3545 |
-
msgid "Create new posts from records newly present in your file"
|
3546 |
-
msgstr "Crear nuevas entradas desde registros nuevos presentes en tu archivo"
|
3547 |
-
|
3548 |
-
#: ../../views/admin/import/options/_reimport_options.php:11
|
3549 |
-
msgid ""
|
3550 |
-
"New posts will only be created when ID column is present and value in ID "
|
3551 |
-
"column is unique."
|
3552 |
-
msgstr ""
|
3553 |
-
"Nuevas entradas solamente serán creadas cuando el ID de columna este "
|
3554 |
-
"presente y el valor en ID de columna es único."
|
3555 |
-
|
3556 |
-
#: ../../views/admin/import/options/_reimport_options.php:18
|
3557 |
-
msgid "Delete posts that are no longer present in your file"
|
3558 |
-
msgstr "Eliminar entradas que ya no están presentes en tu archivo"
|
3559 |
-
|
3560 |
-
#: ../../views/admin/import/options/_reimport_options.php:27
|
3561 |
-
msgid "Do not remove attachments"
|
3562 |
-
msgstr "No remover archivos adjuntos"
|
3563 |
-
|
3564 |
-
#: ../../views/admin/import/options/_reimport_options.php:32
|
3565 |
-
msgid "Do not remove images"
|
3566 |
-
msgstr "No remover imagenes"
|
3567 |
-
|
3568 |
-
#: ../../views/admin/import/options/_reimport_options.php:37
|
3569 |
-
msgid "Instead of deletion, set Custom Field"
|
3570 |
-
msgstr "En vez de eliminar, establecer campo personalizado"
|
3571 |
-
|
3572 |
-
#: ../../views/admin/import/options/_reimport_options.php:40 ../..
|
3573 |
-
#: /views/admin/import/options/_reimport_template.php:105 ../..
|
3574 |
-
#: /views/admin/import/template/_custom_fields_template.php:39
|
3575 |
-
msgid "Name"
|
3576 |
-
msgstr "Nombre"
|
3577 |
-
|
3578 |
-
#: ../../views/admin/import/options/_reimport_options.php:50
|
3579 |
-
msgid "Instead of deletion, change post status to Draft"
|
3580 |
-
msgstr "En vez de eliminar, cambiar estado de entrada a borrador"
|
3581 |
-
|
3582 |
-
#: ../../views/admin/import/options/_reimport_options.php:57
|
3583 |
-
msgid "Update existing posts with changed data in your file"
|
3584 |
-
msgstr "Actualizar entradas existentes con información modificada en tu archivo"
|
3585 |
-
|
3586 |
-
#: ../../views/admin/import/options/_reimport_options.php:63
|
3587 |
-
msgid "Update all data"
|
3588 |
-
msgstr "Actualizar toda la información"
|
3589 |
-
|
3590 |
-
#: ../../views/admin/import/options/_reimport_options.php:66
|
3591 |
-
msgid "Choose which data to update"
|
3592 |
-
msgstr "Escoja información para actualizar"
|
3593 |
-
|
3594 |
-
#: ../../views/admin/import/options/_reimport_options.php:71
|
3595 |
-
msgid "Post status"
|
3596 |
-
msgstr "Estado de Entrada"
|
3597 |
-
|
3598 |
-
#: ../../views/admin/import/options/_reimport_options.php:72
|
3599 |
-
msgid "Hint: uncheck this box to keep trashed posts in the trash."
|
3600 |
-
msgstr ""
|
3601 |
-
"Consejo: Desactive esta casilla para mantener entradas eliminadas en la "
|
3602 |
-
"basura"
|
3603 |
-
|
3604 |
-
#: ../../views/admin/import/options/_reimport_options.php:77 ../..
|
3605 |
-
#: /views/admin/import/options/_reimport_template.php:98
|
3606 |
-
msgid "Title"
|
3607 |
-
msgstr "Título"
|
3608 |
-
|
3609 |
-
#: ../../views/admin/import/options/_reimport_options.php:82
|
3610 |
-
msgid "Author"
|
3611 |
-
msgstr "Autor"
|
3612 |
-
|
3613 |
-
#: ../../views/admin/import/options/_reimport_options.php:87 ../..
|
3614 |
-
#: /views/admin/import/template/_other_template.php:279
|
3615 |
-
msgid "Slug"
|
3616 |
-
msgstr "Slug"
|
3617 |
-
|
3618 |
-
#: ../../views/admin/import/options/_reimport_options.php:92 ../..
|
3619 |
-
#: /views/admin/import/options/_reimport_template.php:100
|
3620 |
-
msgid "Content"
|
3621 |
-
msgstr "Contenido"
|
3622 |
-
|
3623 |
-
#: ../../views/admin/import/options/_reimport_options.php:97
|
3624 |
-
msgid "Excerpt/Short Description"
|
3625 |
-
msgstr "Extracto/Descripción Corta"
|
3626 |
-
|
3627 |
-
#: ../../views/admin/import/options/_reimport_options.php:102
|
3628 |
-
msgid "Dates"
|
3629 |
-
msgstr "Fechas"
|
3630 |
-
|
3631 |
-
#: ../../views/admin/import/options/_reimport_options.php:107
|
3632 |
-
msgid "Menu order"
|
3633 |
-
msgstr "Orden de Menú"
|
3634 |
-
|
3635 |
-
#: ../../views/admin/import/options/_reimport_options.php:112
|
3636 |
-
msgid "Parent post"
|
3637 |
-
msgstr "Entrada Padre"
|
3638 |
-
|
3639 |
-
#: ../../views/admin/import/options/_reimport_options.php:122
|
3640 |
-
msgid "Attachments"
|
3641 |
-
msgstr "Archivos Adjuntos"
|
3642 |
-
|
3643 |
-
#: ../../views/admin/import/options/_reimport_options.php:136
|
3644 |
-
msgid ""
|
3645 |
-
"This will keep the featured image if it exists, so you could modify the post "
|
3646 |
-
"image manually, and then do a reimport, and it would not overwrite the "
|
3647 |
-
"manually modified post image."
|
3648 |
-
msgstr ""
|
3649 |
-
"Esto mantendrá la imagen destacada si es que existe, asi puedes modificar la "
|
3650 |
-
"imagen de la entrada manualmente, y después hacer una reimportación, que no "
|
3651 |
-
"va a sobreescribir la imagen manualmente modificada de la entrada."
|
3652 |
-
|
3653 |
-
#: ../../views/admin/import/options/_reimport_options.php:140
|
3654 |
-
msgid "Update all images"
|
3655 |
-
msgstr "Subir todas las imagenes"
|
3656 |
-
|
3657 |
-
#: ../../views/admin/import/options/_reimport_options.php:146
|
3658 |
-
msgid "Don't touch existing images, append new images"
|
3659 |
-
msgstr "No tocar imágenes existentes, anexar imágenes nuevas"
|
3660 |
-
|
3661 |
-
#: ../../views/admin/import/options/_reimport_options.php:155 ../..
|
3662 |
-
#: /views/admin/import/template/_custom_fields_template.php:5
|
3663 |
-
msgid "Custom Fields"
|
3664 |
-
msgstr "Campos Personalizados"
|
3665 |
-
|
3666 |
-
#: ../../views/admin/import/options/_reimport_options.php:156
|
3667 |
-
msgid ""
|
3668 |
-
"If Keep Custom Fields box is checked, it will keep all Custom Fields, and "
|
3669 |
-
"add any new Custom Fields specified in Custom Fields section, as long as "
|
3670 |
-
"they do not overwrite existing fields. If 'Only keep this Custom Fields' is "
|
3671 |
-
"specified, it will only keep the specified fields."
|
3672 |
-
msgstr ""
|
3673 |
-
"Si mantiene marcada la casilla de Campos Personalizados esto mantendrá todos "
|
3674 |
-
"los campos personalizados y agregar un nuevo Campo Personalizado en la "
|
3675 |
-
"sección de Campos Personalizados, siempre y cuando no sobre escriban campos "
|
3676 |
-
"existentes. Si solo se mantiene este Campo Personalizado específicamente, "
|
3677 |
-
"solo se mantendrá campos especificados."
|
3678 |
-
|
3679 |
-
#: ../../views/admin/import/options/_reimport_options.php:160
|
3680 |
-
msgid "Update all Custom Fields"
|
3681 |
-
msgstr "Actualizar todos los Campos Personalizados."
|
3682 |
-
|
3683 |
-
#: ../../views/admin/import/options/_reimport_options.php:164
|
3684 |
-
msgid "Update only these Custom Fields, leave the rest alone"
|
3685 |
-
msgstr "Actualizar solo estos Campos Personalizados, dejar el resto intacto"
|
3686 |
-
|
3687 |
-
#: ../../views/admin/import/options/_reimport_options.php:172
|
3688 |
-
msgid "Leave these fields alone, update all other Custom Fields"
|
3689 |
-
msgstr "Dejar estos campos intactos, actualizar todos los demás Campos Personalizados"
|
3690 |
-
|
3691 |
-
#: ../../views/admin/import/options/_reimport_options.php:184
|
3692 |
-
msgid "Taxonomies (incl. Categories and Tags)"
|
3693 |
-
msgstr "Taxonomías (incl. Categorías y Tags)"
|
3694 |
-
|
3695 |
-
#: ../../views/admin/import/options/_reimport_options.php:198
|
3696 |
-
msgid "Leave these taxonomies alone, update all others"
|
3697 |
-
msgstr "Dejar estas taxonomías intactas, actualizar todas las demás"
|
3698 |
-
|
3699 |
-
#: ../../views/admin/import/options/_reimport_options.php:206
|
3700 |
-
msgid "Update only these taxonomies, leave the rest alone"
|
3701 |
-
msgstr "Actualizar solo estas taxonomías, dejar el resto intacta"
|
3702 |
-
|
3703 |
-
#: ../../views/admin/import/options/_reimport_options.php:214
|
3704 |
-
msgid "Remove existing taxonomies, add new taxonomies"
|
3705 |
-
msgstr "Remover taxonomía existentes, agregar taxonomías nuevas"
|
3706 |
-
|
3707 |
-
#: ../../views/admin/import/options/_reimport_options.php:218
|
3708 |
-
msgid "Only add new"
|
3709 |
-
msgstr "Solamente agregar nuevo"
|
3710 |
-
|
3711 |
-
#: ../../views/admin/import/options/_reimport_template.php:22
|
3712 |
-
msgid "Choose how exported data will be re-imported."
|
3713 |
-
msgstr "Escoja como la información exportada será re-importada."
|
3714 |
-
|
3715 |
-
#: ../../views/admin/import/options/_reimport_template.php:28
|
3716 |
-
#, php-format
|
3717 |
-
msgid "WP All Import will create new %s for each unique record in your file."
|
3718 |
-
msgstr "WP All Import creará un nuevo %s por cada registro único en su archivo."
|
3719 |
-
|
3720 |
-
#: ../../views/admin/import/options/_reimport_template.php:41
|
3721 |
-
#, php-format
|
3722 |
-
msgid ""
|
3723 |
-
"WP All Import will associate records in your file with %s it has already "
|
3724 |
-
"created from previous runs of this import based on the Unique Identifier."
|
3725 |
-
msgstr ""
|
3726 |
-
"WP All Import asociará registros en su archivo con %s que ya ha creado a "
|
3727 |
-
"partir de ejecuciones anteriores de esta importación basado en el "
|
3728 |
-
"Identificador Único."
|
3729 |
-
|
3730 |
-
#: ../../views/admin/import/options/_reimport_template.php:44
|
3731 |
-
msgid "Unique Identifier"
|
3732 |
-
msgstr "Identificador Único"
|
3733 |
-
|
3734 |
-
#: ../../views/admin/import/options/_reimport_template.php:50 ../..
|
3735 |
-
#: /views/admin/import/options/_reimport_template.php:61
|
3736 |
-
msgid "Auto-detect"
|
3737 |
-
msgstr "Auto-detectar"
|
3738 |
-
|
3739 |
-
#: ../../views/admin/import/options/_reimport_template.php:53 ../..
|
3740 |
-
#: /views/admin/manage/index.php:318
|
3741 |
-
msgid "Edit"
|
3742 |
-
msgstr "Edit"
|
3743 |
-
|
3744 |
-
#: ../../views/admin/import/options/_reimport_template.php:54
|
3745 |
-
msgid "Warning: Are you sure you want to edit the Unique Identifier?"
|
3746 |
-
msgstr "Advertencia: Esta seguro que quiere editar el Identificador Único?"
|
3747 |
-
|
3748 |
-
#: ../../views/admin/import/options/_reimport_template.php:55
|
3749 |
-
#, php-format
|
3750 |
-
msgid ""
|
3751 |
-
"It is recommended you delete all %s associated with this import before "
|
3752 |
-
"editing the unique identifier."
|
3753 |
-
msgstr ""
|
3754 |
-
"Es recomendable que elimine todo %s asociado con esta importación antes de "
|
3755 |
-
"editar el Identificador Único."
|
3756 |
-
|
3757 |
-
#: ../../views/admin/import/options/_reimport_template.php:56
|
3758 |
-
#, php-format
|
3759 |
-
msgid ""
|
3760 |
-
"Editing the unique identifier will dissociate all existing %s linked to this "
|
3761 |
-
"import. Future runs of the import will result in duplicates, as WP All "
|
3762 |
-
"Import will no longer be able to update these %s."
|
3763 |
-
msgstr ""
|
3764 |
-
"Editar el Identificador Único va a desasociar los %s existentes vinculados a "
|
3765 |
-
"esta importación. Ejecuciones futuras de la importación resultaran con "
|
3766 |
-
"duplicados, mientras WP All Import no será capaz de actualizar estos %s."
|
3767 |
-
|
3768 |
-
#: ../../views/admin/import/options/_reimport_template.php:57
|
3769 |
-
msgid ""
|
3770 |
-
"You really should just re-create your import, and pick the right unique "
|
3771 |
-
"identifier to start with."
|
3772 |
-
msgstr ""
|
3773 |
-
"Debería de re-crear su importación y escoger el Identificador Único correcto "
|
3774 |
-
"para iniciar."
|
3775 |
-
|
3776 |
-
#: ../../views/admin/import/options/_reimport_template.php:67
|
3777 |
-
msgid ""
|
3778 |
-
"Drag an element, or combo of elements, to the box above. The Unique "
|
3779 |
-
"Identifier should be unique for each record in your file, and should stay "
|
3780 |
-
"the same even if your file is updated. Things like product IDs, titles, and "
|
3781 |
-
"SKUs are good Unique Identifiers because they probably won't change. Don't "
|
3782 |
-
"use a description or price, since that might be changed."
|
3783 |
-
msgstr ""
|
3784 |
-
"Arraste un elemento, o combos de elementos a la caja de encima. El "
|
3785 |
-
"Identificador Único debería de ser único para cada registro en su archivo y "
|
3786 |
-
"debería ser siempre el mismo aun cuando su archivo sea actualizados. Cosas "
|
3787 |
-
"como ID de productos, títulos y SKUs son buenos Identificadores Únicos por "
|
3788 |
-
"que probablemente nunca cambien. No utilice descripción o precio ya que esto "
|
3789 |
-
"puede cambiar."
|
3790 |
-
|
3791 |
-
#: ../../views/admin/import/options/_reimport_template.php:68
|
3792 |
-
#, php-format
|
3793 |
-
msgid ""
|
3794 |
-
"If you run this import again with an updated file, the Unique Identifier "
|
3795 |
-
"allows WP All Import to correctly link the records in your updated file with "
|
3796 |
-
"the %s it will create right now. If multiple records in this file have the "
|
3797 |
-
"same Unique Identifier, only the first will be created. The others will be "
|
3798 |
-
"detected as duplicates."
|
3799 |
-
msgstr ""
|
3800 |
-
"Si ejecuta esta importación otra vez con un archivo actualizado, el "
|
3801 |
-
"Identificador Único permite a WP All Import vincular correctamente los "
|
3802 |
-
"registros en su archivo actualizado con el %s ya que creará en el momento. "
|
3803 |
-
"Si múltiples registros en este archivo tienen el mismo Identificador Único, "
|
3804 |
-
"solo la primera será creada. Los otros serán detectados como duplicados."
|
3805 |
-
|
3806 |
-
#: ../../views/admin/import/options/_reimport_template.php:83
|
3807 |
-
#, php-format
|
3808 |
-
msgid "WP All Import will merge data into existing %s."
|
3809 |
-
msgstr "WP All Import va a mezclar datos en un %s existente."
|
3810 |
-
|
3811 |
-
#: ../../views/admin/import/options/_reimport_template.php:93
|
3812 |
-
#, php-format
|
3813 |
-
msgid "Records in your file will be matched with %ss on your site based on..."
|
3814 |
-
msgstr "Registros en su archivo serán emparejados con %ss en su sitio basado en...."
|
3815 |
-
|
3816 |
-
#: ../../views/admin/import/options/_reimport_template.php:103
|
3817 |
-
msgid "Custom field"
|
3818 |
-
msgstr "Campo Personalizado"
|
3819 |
-
|
3820 |
-
#: ../../views/admin/import/options/_settings_template.php:4
|
3821 |
-
msgid "Configure Advanced Settings"
|
3822 |
-
msgstr "Configurar Configuraciones Avanzadas"
|
3823 |
-
|
3824 |
-
#: ../../views/admin/import/options/_settings_template.php:11
|
3825 |
-
msgid "Import Speed Optimization"
|
3826 |
-
msgstr "Optimización de Velocidad de Importación"
|
3827 |
-
|
3828 |
-
#: ../../views/admin/import/options/_settings_template.php:15
|
3829 |
-
msgid "High Speed Small File Processing"
|
3830 |
-
msgstr "Procesamiento de Alta Velocidad de Archivo Pequeño"
|
3831 |
-
|
3832 |
-
#: ../../views/admin/import/options/_settings_template.php:15
|
3833 |
-
msgid ""
|
3834 |
-
"If the import takes longer than your server's timeout settings "
|
3835 |
-
"(max_execution_time, mod_fcgid read data timeout, etc.) it will fail."
|
3836 |
-
msgstr ""
|
3837 |
-
"Si el importe toma mas tiempo que la configuración del tiempo de espera del "
|
3838 |
-
"servidor (max_execution_time, mod_fcgid read data timeout, etc.) va a fallar."
|
3839 |
-
|
3840 |
-
#: ../../views/admin/import/options/_settings_template.php:19
|
3841 |
-
msgid "Iterative, Piece-by-Piece Processing"
|
3842 |
-
msgstr "Iterativo, Procesamiento Pieza por Pieza"
|
3843 |
-
|
3844 |
-
#: ../../views/admin/import/options/_settings_template.php:23
|
3845 |
-
msgid "In each iteration, process"
|
3846 |
-
msgstr "En cada iteración, proceso"
|
3847 |
-
|
3848 |
-
#: ../../views/admin/import/options/_settings_template.php:24
|
3849 |
-
msgid ""
|
3850 |
-
"WP All Import must be able to process this many records in less than your "
|
3851 |
-
"server's timeout settings. If your import fails before completion, to "
|
3852 |
-
"troubleshoot you should lower this number. If you are importing images, "
|
3853 |
-
"especially high resolution images, high numbers here are probably a bad idea,"
|
3854 |
-
" since downloading the images can take lots of time - for example, 20 posts "
|
3855 |
-
"with 5 images each = 100 images. At 500Kb per image that's 50Mb that needs "
|
3856 |
-
"to be downloaded. Can your server download that before timing out? If not, "
|
3857 |
-
"the import will fail."
|
3858 |
-
msgstr ""
|
3859 |
-
"WP All Import debe de poder procesar esta cantidad de registros en menor "
|
3860 |
-
"tiempo del tiempo de espera de tu servidor. Si su importe falla antes de "
|
3861 |
-
"ser completado para resolver problemas debería de bajar este numero. Si "
|
3862 |
-
"estas importando imágenes, especialmente si tienen alta resolución, números "
|
3863 |
-
"altos probablemte son mala idea, ya que descargar las imágenes puede tomar "
|
3864 |
-
"bastante tiempo- Por ejemplo, 20 entradas con 5 imágenes cada una = 100 "
|
3865 |
-
"imágenes. A 500kn por imagen se convierte en 50MB que necesitan ser "
|
3866 |
-
"descargados. Puede tu servidor descargar eso antes que se acabe el tiempo de "
|
3867 |
-
"espera? si no, la importación fallará."
|
3868 |
-
|
3869 |
-
#: ../../views/admin/import/options/_settings_template.php:30
|
3870 |
-
msgid ""
|
3871 |
-
"This option will decrease the amount of slowdown experienced at the end of "
|
3872 |
-
"large imports. The slowdown is partially caused by the need for WP All "
|
3873 |
-
"Import to read deeper and deeper into the file on each successive iteration. "
|
3874 |
-
"Splitting the file into pieces means that, for example, instead of having to "
|
3875 |
-
"read 19000 records into a 20000 record file when importing the last 1000 "
|
3876 |
-
"records, WP All Import will just split it into 20 chunks, and then read the "
|
3877 |
-
"last chunk from the beginning."
|
3878 |
-
msgstr ""
|
3879 |
-
"Esta opción reducirá la cantidad de baja velocidad experimentada al final de "
|
3880 |
-
"importaciones grandes. La baja velocidad es parcialmente causada por "
|
3881 |
-
"necesidad para WP All Import para leer mas a fondo en el archivo en cada "
|
3882 |
-
"iteración sucesiva. Separando el archivo en piezas significa que, por "
|
3883 |
-
"ejemplo, en vez de tener que leer 19,000 registros en un archivo de 20,000 "
|
3884 |
-
"registros cuando se importan los últimos 1000 registros, El Importador WP "
|
3885 |
-
"va a separar en 20 pedazos, después leer la ultima porción desde el inicio."
|
3886 |
-
|
3887 |
-
#: ../../views/admin/import/options/_settings_template.php:37
|
3888 |
-
msgid "Increase speed by disabling do_action calls in wp_insert_post during import."
|
3889 |
-
msgstr ""
|
3890 |
-
"Incrementar la velocidad deshabilitando llamadas do_action en wp_insert_post "
|
3891 |
-
"durante la importación"
|
3892 |
-
|
3893 |
-
#: ../../views/admin/import/options/_settings_template.php:38
|
3894 |
-
msgid ""
|
3895 |
-
"This option is for advanced users with knowledge of WordPress development. "
|
3896 |
-
"Your theme or plugins may require these calls when posts are created. Next "
|
3897 |
-
"action will be disabled: 'transition_post_status', 'save_post', "
|
3898 |
-
"'pre_post_update', 'add_attachment', 'edit_attachment', 'edit_post', "
|
3899 |
-
"'post_updated', 'wp_insert_post'. Verify your created posts work properly if "
|
3900 |
-
"you check this box."
|
3901 |
-
msgstr ""
|
3902 |
-
"Esta opción es para usuarios avanzados con conocimientos de desarrollador de "
|
3903 |
-
"Wordpress. Su tema o plugins puede requerir estas llamadas cuando las "
|
3904 |
-
"entradas son creadas. La siguiente acción va a ser deshabilitada: "
|
3905 |
-
"'transition_post_status', 'save_post', 'pre_post_update', 'add_attachment', "
|
3906 |
-
"'edit_attachment', 'edit_post', 'post_updated', 'wp_insert_post'. Verificar "
|
3907 |
-
"que sus entradas creadas funcionen correctamente si usted marca esa casilla."
|
3908 |
-
|
3909 |
-
#: ../../views/admin/import/options/_settings_template.php:42
|
3910 |
-
msgid "Post Type"
|
3911 |
-
msgstr "Tipo de Entrada"
|
3912 |
-
|
3913 |
-
#: ../../views/admin/import/options/_settings_template.php:43
|
3914 |
-
msgid ""
|
3915 |
-
"Editing this will change the post type of the posts processed by this import."
|
3916 |
-
" Re-run the import for the changes to take effect."
|
3917 |
-
msgstr ""
|
3918 |
-
"Editando esto va a cambiar el tipo de entrada de las entradas procesadas por "
|
3919 |
-
"esta importación. Re-ejecute la importación para que los cambios surjan "
|
3920 |
-
"efecto"
|
3921 |
-
|
3922 |
-
#: ../../views/admin/import/options/_settings_template.php:89
|
3923 |
-
msgid ""
|
3924 |
-
"Editing this can break your entire import. You will have to re-create it "
|
3925 |
-
"from scratch."
|
3926 |
-
msgstr ""
|
3927 |
-
"Editando esto puede quebrar el importe entero. Tendrá que recrearlo desde "
|
3928 |
-
"cero."
|
3929 |
-
|
3930 |
-
#: ../../views/admin/import/options/_settings_template.php:101
|
3931 |
-
msgid "Other"
|
3932 |
-
msgstr "Otro"
|
3933 |
-
|
3934 |
-
#: ../../views/admin/import/options/_settings_template.php:105
|
3935 |
-
msgid "Import only specified records"
|
3936 |
-
msgstr "Importar solamente registros especificos"
|
3937 |
-
|
3938 |
-
#: ../../views/admin/import/options/_settings_template.php:105
|
3939 |
-
msgid ""
|
3940 |
-
"Enter records or record ranges separated by commas, e.g. <b>1,5,7-10</b> "
|
3941 |
-
"would import the first, the fifth, and the seventh to tenth."
|
3942 |
-
msgstr ""
|
3943 |
-
"Ingrese registros o rangos de registro separado por comas, ejemplo <b>1,5,7-"
|
3944 |
-
"10</b> va a importar el primero, el quinto y el séptimo al decimo. "
|
3945 |
-
|
3946 |
-
#: ../../views/admin/import/options/_settings_template.php:116
|
3947 |
-
msgid "Delete source XML file after importing"
|
3948 |
-
msgstr "Eliminar archivo fuente XML después de importarlo"
|
3949 |
-
|
3950 |
-
#: ../../views/admin/import/options/_settings_template.php:116
|
3951 |
-
msgid ""
|
3952 |
-
"This setting takes effect only when script has access rights to perform the "
|
3953 |
-
"action, e.g. file is not deleted when pulled via HTTP or delete permission "
|
3954 |
-
"is not granted to the user that script is executed under."
|
3955 |
-
msgstr ""
|
3956 |
-
"Esta configuración tomara efecto solo cuando el script tenga derechos de "
|
3957 |
-
"acceso para realizar la acción, ejemplo archivo no se ha borrado cuando fue "
|
3958 |
-
"tirado via HTTP o eliminar permisos no esta autorizado para el usuario cuyo "
|
3959 |
-
"script se esta ejecutando."
|
3960 |
-
|
3961 |
-
#: ../../views/admin/import/options/_settings_template.php:123
|
3962 |
-
msgid "Auto-Cloak Links"
|
3963 |
-
msgstr "Links Auto-Capas"
|
3964 |
-
|
3965 |
-
#: ../../views/admin/import/options/_settings_template.php:123
|
3966 |
-
#, php-format
|
3967 |
-
msgid ""
|
3968 |
-
"Automatically process all links present in body of created post or page with "
|
3969 |
-
"<b>%s</b> plugin"
|
3970 |
-
msgstr ""
|
3971 |
-
"Procesar todos los links automáticamente presente en cuerpo de las entradas "
|
3972 |
-
"creadas o paginas con <b>%s</b> plugin"
|
3973 |
-
|
3974 |
-
#: ../../views/admin/import/options/_settings_template.php:128
|
3975 |
-
msgid "Friendly Name"
|
3976 |
-
msgstr "Nombre Amigable"
|
3977 |
-
|
3978 |
-
#: ../../views/admin/import/template/_custom_fields_template.php:15
|
3979 |
-
#, php-format
|
3980 |
-
msgid "Your website is using Custom Fields to store data for %s."
|
3981 |
-
msgstr ""
|
3982 |
-
"Su pagina web esta utilizando campos personalizados para guardarlos datos "
|
3983 |
-
"para %s."
|
3984 |
-
|
3985 |
-
#: ../../views/admin/import/template/_custom_fields_template.php:16
|
3986 |
-
msgid "See Detected Fields"
|
3987 |
-
msgstr "Ver Campos Detectados"
|
3988 |
-
|
3989 |
-
#: ../../views/admin/import/template/_custom_fields_template.php:18
|
3990 |
-
#, php-format
|
3991 |
-
msgid "No Custom Fields are present in your database for %s."
|
3992 |
-
msgstr "No hay Campos Personalizados presentes en su base de dato para %s"
|
3993 |
-
|
3994 |
-
#: ../../views/admin/import/template/_custom_fields_template.php:19
|
3995 |
-
#, php-format
|
3996 |
-
msgid ""
|
3997 |
-
"Manually create a %s, and fill out each field you want to import data to. WP "
|
3998 |
-
"All Import will then display these fields as available for import below."
|
3999 |
-
msgstr ""
|
4000 |
-
"Cree manualmente %s, y llene cada campo de como quiere importar la "
|
4001 |
-
"información. WP All Import va a mostrar estos campos como disponible para la "
|
4002 |
-
"importación de abajo."
|
4003 |
-
|
4004 |
-
#: ../../views/admin/import/template/_custom_fields_template.php:21 ../..
|
4005 |
-
#: /views/admin/import/template/_custom_fields_template.php:29
|
4006 |
-
msgid "Hide Notice"
|
4007 |
-
msgstr "Esconder Nota"
|
4008 |
-
|
4009 |
-
#: ../../views/admin/import/template/_custom_fields_template.php:26
|
4010 |
-
msgid "Clear All Fields"
|
4011 |
-
msgstr "Limpiar Todos Los Campos"
|
4012 |
-
|
4013 |
-
#: ../../views/admin/import/template/_custom_fields_template.php:28
|
4014 |
-
#, php-format
|
4015 |
-
msgid ""
|
4016 |
-
"If not all fields were detected, manually create a %s, and fill out each "
|
4017 |
-
"field you want to import data to. Then create a new import, and WP All "
|
4018 |
-
"Import will display these fields as available for import below."
|
4019 |
-
msgstr ""
|
4020 |
-
"Si no fueron detectados todos los campos, manualmente cree %s, y llene cada "
|
4021 |
-
"campo a acula le quiere importar información. Entonces cree una nueva "
|
4022 |
-
"importación y WP All Import mostrara estos campos como disponibles para la "
|
4023 |
-
"importación de abajo."
|
4024 |
-
|
4025 |
-
#: ../../views/admin/import/template/_custom_fields_template.php:55 ../..
|
4026 |
-
#: /views/admin/import/template/_custom_fields_template.php:264 ../..
|
4027 |
-
#: /views/admin/import/template/_custom_fields_template.php:398
|
4028 |
-
msgid "Click to specify"
|
4029 |
-
msgstr "Click para especificar"
|
4030 |
-
|
4031 |
-
#: ../../views/admin/import/template/_custom_fields_template.php:60 ../..
|
4032 |
-
#: /views/admin/import/template/_custom_fields_template.php:269 ../..
|
4033 |
-
#: /views/admin/import/template/_custom_fields_template.php:403
|
4034 |
-
msgid "Serialized"
|
4035 |
-
msgstr "Serializado"
|
4036 |
-
|
4037 |
-
#: ../../views/admin/import/template/_custom_fields_template.php:73 ../..
|
4038 |
-
#: /views/admin/import/template/_custom_fields_template.php:282 ../..
|
4039 |
-
#: /views/admin/import/template/_custom_fields_template.php:416
|
4040 |
-
msgid "Key"
|
4041 |
-
msgstr "Clave"
|
4042 |
-
|
4043 |
-
#: ../../views/admin/import/template/_custom_fields_template.php:144 ../..
|
4044 |
-
#: /views/admin/import/template/_custom_fields_template.php:524 ../..
|
4045 |
-
#: /views/admin/import/template/_custom_fields_template.php:524
|
4046 |
-
msgid "Add Custom Field"
|
4047 |
-
msgstr "Agregar Campo Personalizado"
|
4048 |
-
|
4049 |
-
#: ../../views/admin/import/template/_custom_fields_template.php:150 ../..
|
4050 |
-
#: /views/admin/import/template/_custom_fields_template.php:318 ../..
|
4051 |
-
#: /views/admin/import/template/_custom_fields_template.php:452
|
4052 |
-
msgid "Auto-Detect"
|
4053 |
-
msgstr "Auto-Detectar"
|
4054 |
-
|
4055 |
-
#: ../../views/admin/import/template/_custom_fields_template.php:155 ../..
|
4056 |
-
#: /views/admin/import/template/_custom_fields_template.php:323 ../..
|
4057 |
-
#: /views/admin/import/template/_custom_fields_template.php:457 ../..
|
4058 |
-
#: /views/admin/license/index.php:40
|
4059 |
-
msgid "Save"
|
4060 |
-
msgstr "Guardar"
|
4061 |
-
|
4062 |
-
#: ../../views/admin/import/template/_featured_template.php:8
|
4063 |
-
msgid "Show hints"
|
4064 |
-
msgstr "Mostrar consejos"
|
4065 |
-
|
4066 |
-
#: ../../views/admin/import/template/_featured_template.php:19
|
4067 |
-
msgid "Enter image URL one per line, or separate them with a "
|
4068 |
-
msgstr "Ingrese la URL de la imagen por línea, o sepárelas con un "
|
4069 |
-
|
4070 |
-
#: ../../views/admin/import/template/_featured_template.php:29 ../..
|
4071 |
-
#: /views/admin/import/template/_featured_template.php:39
|
4072 |
-
msgid "Enter image filenames one per line, or separate them with a "
|
4073 |
-
msgstr "Ingrese nombre de la imagen línea por línea, o sepárelas con un "
|
4074 |
-
|
4075 |
-
#: ../../views/admin/import/template/_featured_template.php:49
|
4076 |
-
msgid ""
|
4077 |
-
"Search through the Media Library for existing images before importing new "
|
4078 |
-
"images"
|
4079 |
-
msgstr ""
|
4080 |
-
"Busque atraves la biblioteca de medios las imágenes existentes antes de "
|
4081 |
-
"importar nuevas imagenes"
|
4082 |
-
|
4083 |
-
#: ../../views/admin/import/template/_featured_template.php:50
|
4084 |
-
msgid ""
|
4085 |
-
"If an image with the same file name is found in the Media Library then that "
|
4086 |
-
"image will be attached to this record instead of importing a new image. "
|
4087 |
-
"Disable this setting if your import has different images with the same file "
|
4088 |
-
"name."
|
4089 |
-
msgstr ""
|
4090 |
-
"Si un imagen con el mismo nombre es encontrada en la Biblioteca de Medios "
|
4091 |
-
"entonces la imagen será adjuntada a su registro en vez de importar una "
|
4092 |
-
"imagen nueva. Deshabilite esta configuración si tiene diferentes imágenes "
|
4093 |
-
"con el mismo nombre."
|
4094 |
-
|
4095 |
-
#: ../../views/admin/import/template/_featured_template.php:62
|
4096 |
-
msgid "Preview & Test"
|
4097 |
-
msgstr "Prueba y Vista Previa"
|
4098 |
-
|
4099 |
-
#: ../../views/admin/import/template/_featured_template.php:67
|
4100 |
-
msgid "Set the first image to the Featured Image (_thumbnail_id)"
|
4101 |
-
msgstr "Establezca la primer imagen a la Imagen Destacada (_thumbnail_id)"
|
4102 |
-
|
4103 |
-
#: ../../views/admin/import/template/_featured_template.php:72
|
4104 |
-
msgid "If no images are downloaded successfully, create entry as Draft."
|
4105 |
-
msgstr ""
|
4106 |
-
"Si no se descarga ninguna imagen satisfactoriamente, cree la entrada como "
|
4107 |
-
"un borrador."
|
4108 |
-
|
4109 |
-
#: ../../views/admin/import/template/_featured_template.php:83
|
4110 |
-
msgid "SEO & Advanced Options"
|
4111 |
-
msgstr "SEO y Opciones Avanzadas"
|
4112 |
-
|
4113 |
-
#: ../../views/admin/import/template/_featured_template.php:91
|
4114 |
-
msgid "Meta Data"
|
4115 |
-
msgstr "Meta Data"
|
4116 |
-
|
4117 |
-
#: ../../views/admin/import/template/_featured_template.php:95
|
4118 |
-
msgid "Set Title(s)"
|
4119 |
-
msgstr "Establecer Titulo(s)"
|
4120 |
-
|
4121 |
-
#: ../../views/admin/import/template/_featured_template.php:97 ../..
|
4122 |
-
#: /views/admin/import/template/_featured_template.php:108 ../..
|
4123 |
-
#: /views/admin/import/template/_featured_template.php:119
|
4124 |
-
msgid "Enter one per line, or separate them with a "
|
4125 |
-
msgstr "Ingrese uno por línea, o sepárales con un "
|
4126 |
-
|
4127 |
-
#: ../../views/admin/import/template/_featured_template.php:99
|
4128 |
-
msgid ""
|
4129 |
-
"The first title will be linked to the first image, the second title will be "
|
4130 |
-
"linked to the second image, ..."
|
4131 |
-
msgstr ""
|
4132 |
-
"El primer titulo será vinculado a la primer imagen, el segundo titulo será "
|
4133 |
-
"vinculado a la segunda imagen,...."
|
4134 |
-
|
4135 |
-
#: ../../views/admin/import/template/_featured_template.php:106
|
4136 |
-
msgid "Set Caption(s)"
|
4137 |
-
msgstr "Establezca Leyenda(s)"
|
4138 |
-
|
4139 |
-
#: ../../views/admin/import/template/_featured_template.php:110
|
4140 |
-
msgid ""
|
4141 |
-
"The first caption will be linked to the first image, the second caption will "
|
4142 |
-
"be linked to the second image, ..."
|
4143 |
-
msgstr ""
|
4144 |
-
"La primer leyenda será vinculada a la primer imagen, la segunda leyenda será "
|
4145 |
-
"vinculada a la segunda imagen, ..."
|
4146 |
-
|
4147 |
-
#: ../../views/admin/import/template/_featured_template.php:117
|
4148 |
-
msgid "Set Alt Text(s)"
|
4149 |
-
msgstr "Establezca Texto(s) Alternativo(s)"
|
4150 |
-
|
4151 |
-
#: ../../views/admin/import/template/_featured_template.php:121
|
4152 |
-
msgid ""
|
4153 |
-
"The first alt text will be linked to the first image, the second alt text "
|
4154 |
-
"will be linked to the second image, ..."
|
4155 |
-
msgstr ""
|
4156 |
-
"El primer texto alternativo será vinculado a la primer imagen, el segundo "
|
4157 |
-
"texto alternativo será vinculado a la segunda imagen, ...."
|
4158 |
-
|
4159 |
-
#: ../../views/admin/import/template/_featured_template.php:128
|
4160 |
-
msgid "Set Description(s)"
|
4161 |
-
msgstr "Establezca Descripción(es)"
|
4162 |
-
|
4163 |
-
#: ../../views/admin/import/template/_featured_template.php:139
|
4164 |
-
msgid ""
|
4165 |
-
"The first description will be linked to the first image, the second "
|
4166 |
-
"description will be linked to the second image, ..."
|
4167 |
-
msgstr ""
|
4168 |
-
"La primer descripción será vinculada a la primer imagen, la segunda "
|
4169 |
-
"descripción será vinculada a la segunda imagen, ...."
|
4170 |
-
|
4171 |
-
#: ../../views/admin/import/template/_featured_template.php:143 ../..
|
4172 |
-
#: /views/admin/settings/index.php:79
|
4173 |
-
msgid "Files"
|
4174 |
-
msgstr "Archivos"
|
4175 |
-
|
4176 |
-
#: ../../views/admin/import/template/_featured_template.php:149
|
4177 |
-
msgid "Change image file names to"
|
4178 |
-
msgstr "Cambiar el nombre de imagen a "
|
4179 |
-
|
4180 |
-
#: ../../views/admin/import/template/_featured_template.php:152
|
4181 |
-
msgid ""
|
4182 |
-
"Multiple image will have numbers appended, i.e. image-name-1.jpg, image-name-"
|
4183 |
-
"2.jpg "
|
4184 |
-
msgstr ""
|
4185 |
-
"Multiples imágenes tendrán números anexados, ejemplo: imagen-nombre-1.jpg, "
|
4186 |
-
"imagen-nombre-2.jpg"
|
4187 |
-
|
4188 |
-
#: ../../views/admin/import/template/_featured_template.php:158
|
4189 |
-
msgid "Change image file extensions"
|
4190 |
-
msgstr "Cambiar la extensión del archivo de la imagen"
|
4191 |
-
|
4192 |
-
#: ../../views/admin/import/template/_featured_template.php:176
|
4193 |
-
msgid ""
|
4194 |
-
"WP All Import will automatically ignore elements with blank image "
|
4195 |
-
"URLs/filenames."
|
4196 |
-
msgstr "WP All Import ignorará automáticamente elementos con URLs/nombres en blanco."
|
4197 |
-
|
4198 |
-
#: ../../views/admin/import/template/_featured_template.php:177
|
4199 |
-
msgid ""
|
4200 |
-
"WP All Import must download the images to your server. You can't have images "
|
4201 |
-
"in a Gallery that are referenced by external URL. That's just how WordPress "
|
4202 |
-
"works."
|
4203 |
-
msgstr ""
|
4204 |
-
"WP All Import debe descargar las imágenes a tu servidor. No puedes tener "
|
4205 |
-
"imágenes en una Galería que esta referenciado por un URL externo. Ese es el "
|
4206 |
-
"modo que Wordpress trabaja."
|
4207 |
-
|
4208 |
-
#: ../../views/admin/import/template/_featured_template.php:178
|
4209 |
-
#, php-format
|
4210 |
-
msgid ""
|
4211 |
-
"Importing a variable number of images can be done using a <a href=\"%s\" "
|
4212 |
-
"target=\"_blank\">FOREACH LOOP</a>"
|
4213 |
-
msgstr ""
|
4214 |
-
"Importando un numero variable de imágenes puede ser realizado utilizando un "
|
4215 |
-
"<a href=\"%s\" target=\"_blank\">FOREACH LOOP</a>"
|
4216 |
-
|
4217 |
-
#: ../../views/admin/import/template/_featured_template.php:179
|
4218 |
-
#, php-format
|
4219 |
-
msgid ""
|
4220 |
-
"For more information check out our <a href=\"%s\" "
|
4221 |
-
"target=\"_blank\">comprehensive documentation</a>"
|
4222 |
-
msgstr ""
|
4223 |
-
"Para mas información visita nuestra <a href=\"%s\" "
|
4224 |
-
"target=\"_blank\">Documentación Comprensiva</a>"
|
4225 |
-
|
4226 |
-
#: ../../views/admin/import/template/_nested_template.php:35
|
4227 |
-
msgid "Nested XML/CSV files"
|
4228 |
-
msgstr "Archivos XML/CSV alojados"
|
4229 |
-
|
4230 |
-
#: ../../views/admin/import/template/_nested_template.php:48
|
4231 |
-
msgid "remove"
|
4232 |
-
msgstr "remover"
|
4233 |
-
|
4234 |
-
#: ../../views/admin/import/template/_nested_template.php:69
|
4235 |
-
msgid "Specify the URL of the nested file to use."
|
4236 |
-
msgstr "Especificar la URL de los archivos alojados a usar"
|
4237 |
-
|
4238 |
-
#: ../../views/admin/import/template/_nested_template.php:73
|
4239 |
-
msgid "Add"
|
4240 |
-
msgstr "Agregar"
|
4241 |
-
|
4242 |
-
#: ../../views/admin/import/template/_other_template.php:5
|
4243 |
-
#, php-format
|
4244 |
-
msgid "Other %s Options"
|
4245 |
-
msgstr "Otra %s Opciones "
|
4246 |
-
|
4247 |
-
#: ../../views/admin/import/template/_other_template.php:17
|
4248 |
-
msgid "Post Status"
|
4249 |
-
msgstr "Estado de Entrada"
|
4250 |
-
|
4251 |
-
#: ../../views/admin/import/template/_other_template.php:20
|
4252 |
-
msgid "Published"
|
4253 |
-
msgstr "Publicada"
|
4254 |
-
|
4255 |
-
#: ../../views/admin/import/template/_other_template.php:24
|
4256 |
-
msgid "Draft"
|
4257 |
-
msgstr "Borrador"
|
4258 |
-
|
4259 |
-
#: ../../views/admin/import/template/_other_template.php:32
|
4260 |
-
msgid ""
|
4261 |
-
"The value of presented XPath should be one of the following: ('publish', "
|
4262 |
-
"'draft', 'trash')."
|
4263 |
-
msgstr ""
|
4264 |
-
"El valor del XPath presentado debería de ser uno de los siguientes: "
|
4265 |
-
"('publish', 'draft', 'trash')."
|
4266 |
-
|
4267 |
-
#: ../../views/admin/import/template/_other_template.php:41
|
4268 |
-
msgid "Post Dates"
|
4269 |
-
msgstr "Fechas de las Entradas"
|
4270 |
-
|
4271 |
-
#: ../../views/admin/import/template/_other_template.php:41
|
4272 |
-
msgid ""
|
4273 |
-
"Use any format supported by the PHP <b>strtotime</b> function. That means "
|
4274 |
-
"pretty much any human-readable date will work."
|
4275 |
-
msgstr ""
|
4276 |
-
"Utilizar cualquier formato soportado por la función <b>strtotime</b> PHP. "
|
4277 |
-
"Esto quiere decir que cualquier fecha legible por un humano va a funcionar."
|
4278 |
-
|
4279 |
-
#: ../../views/admin/import/template/_other_template.php:45
|
4280 |
-
msgid "As specified"
|
4281 |
-
msgstr "Como se Especificó"
|
4282 |
-
|
4283 |
-
#: ../../views/admin/import/template/_other_template.php:54
|
4284 |
-
msgid "Random dates"
|
4285 |
-
msgstr "Fechas al Azar"
|
4286 |
-
|
4287 |
-
#: ../../views/admin/import/template/_other_template.php:54
|
4288 |
-
msgid ""
|
4289 |
-
"Posts will be randomly assigned dates in this range. WordPress ensures posts "
|
4290 |
-
"with dates in the future will not appear until their date has been reached."
|
4291 |
-
msgstr ""
|
4292 |
-
"Entradas serán assigndas en fechas al azar en este rango. Wordpress asegura "
|
4293 |
-
"entradas con fechas en el futuro no aparecerán hasta que esa fecha sea "
|
4294 |
-
"alcanzada."
|
4295 |
-
|
4296 |
-
#: ../../views/admin/import/template/_other_template.php:58 ../..
|
4297 |
-
#: /views/admin/manage/delete.php:46
|
4298 |
-
msgid "and"
|
4299 |
-
msgstr "y"
|
4300 |
-
|
4301 |
-
#: ../../views/admin/import/template/_other_template.php:66
|
4302 |
-
msgid "Comments"
|
4303 |
-
msgstr "Comentarios"
|
4304 |
-
|
4305 |
-
#: ../../views/admin/import/template/_other_template.php:69 ../..
|
4306 |
-
#: /views/admin/import/template/_other_template.php:92
|
4307 |
-
msgid "Open"
|
4308 |
-
msgstr "Abierto"
|
4309 |
-
|
4310 |
-
#: ../../views/admin/import/template/_other_template.php:73 ../..
|
4311 |
-
#: /views/admin/import/template/_other_template.php:96
|
4312 |
-
msgid "Closed"
|
4313 |
-
msgstr "Cerrado"
|
4314 |
-
|
4315 |
-
#: ../../views/admin/import/template/_other_template.php:81 ../..
|
4316 |
-
#: /views/admin/import/template/_other_template.php:104
|
4317 |
-
msgid ""
|
4318 |
-
"The value of presented XPath should be one of the following: ('open', "
|
4319 |
-
"'closed')."
|
4320 |
-
msgstr ""
|
4321 |
-
"El valor de Xpath presentado debería de ser uno de los siguientes: ('open', "
|
4322 |
-
"'closed')."
|
4323 |
-
|
4324 |
-
#: ../../views/admin/import/template/_other_template.php:89
|
4325 |
-
msgid "Trackbacks and Pingbacks"
|
4326 |
-
msgstr "Trackbacks y Pingbacks "
|
4327 |
-
|
4328 |
-
#: ../../views/admin/import/template/_other_template.php:112
|
4329 |
-
msgid "Post Slug"
|
4330 |
-
msgstr "Slug de Entrada"
|
4331 |
-
|
4332 |
-
#: ../../views/admin/import/template/_other_template.php:120
|
4333 |
-
msgid "Post Author"
|
4334 |
-
msgstr "Autor de Entrada"
|
4335 |
-
|
4336 |
-
#: ../../views/admin/import/template/_other_template.php:122
|
4337 |
-
msgid ""
|
4338 |
-
"Assign the post to an existing user account by specifying the user ID, "
|
4339 |
-
"username, or e-mail address."
|
4340 |
-
msgstr ""
|
4341 |
-
"Asignar la entrada a una cuenta de usuario existente por medio de la "
|
4342 |
-
"especificación de ID del Usuario, nombre de usuario o dirección de correo "
|
4343 |
-
"electrónico"
|
4344 |
-
|
4345 |
-
#: ../../views/admin/import/template/_other_template.php:128
|
4346 |
-
msgid "Download & Import Attachments"
|
4347 |
-
msgstr "Descargar e Importar Archivos Adjuntos"
|
4348 |
-
|
4349 |
-
#: ../../views/admin/import/template/_other_template.php:129 ../..
|
4350 |
-
#: /views/admin/import/template/_taxonomies_template.php:65 ../..
|
4351 |
-
#: /views/admin/import/template/_taxonomies_template.php:122 ../..
|
4352 |
-
#: /views/admin/import/template/_taxonomies_template.php:134 ../..
|
4353 |
-
#: /views/admin/import/template/_taxonomies_template.php:212
|
4354 |
-
msgid "Separated by"
|
4355 |
-
msgstr "Separado por"
|
4356 |
-
|
4357 |
-
#: ../../views/admin/import/template/_other_template.php:137
|
4358 |
-
msgid "Search for existing attachments to prevent duplicates in media library"
|
4359 |
-
msgstr ""
|
4360 |
-
"Buscar archivos adjuntos existentes para prevenir duplicado la biblioteca "
|
4361 |
-
"multimedia"
|
4362 |
-
|
4363 |
-
#: ../../views/admin/import/template/_other_template.php:144
|
4364 |
-
msgid "Post Format"
|
4365 |
-
msgstr "Formato de Entrada"
|
4366 |
-
|
4367 |
-
#: ../../views/admin/import/template/_other_template.php:150
|
4368 |
-
msgid "Standard"
|
4369 |
-
msgstr "Estándar "
|
4370 |
-
|
4371 |
-
#: ../../views/admin/import/template/_other_template.php:182
|
4372 |
-
msgid "Page Template"
|
4373 |
-
msgstr "Plantilla de Pagina "
|
4374 |
-
|
4375 |
-
#: ../../views/admin/import/template/_other_template.php:185
|
4376 |
-
msgid "Select a template"
|
4377 |
-
msgstr "Seleccione una Plantilla"
|
4378 |
-
|
4379 |
-
#: ../../views/admin/import/template/_other_template.php:189
|
4380 |
-
msgid "Default"
|
4381 |
-
msgstr "Por Defecto"
|
4382 |
-
|
4383 |
-
#: ../../views/admin/import/template/_other_template.php:211
|
4384 |
-
msgid "Page Parent"
|
4385 |
-
msgstr "Pagina Padre"
|
4386 |
-
|
4387 |
-
#: ../../views/admin/import/template/_other_template.php:211
|
4388 |
-
msgid ""
|
4389 |
-
"Enter the slug of the desired page parent. If adding the child and parent "
|
4390 |
-
"pages in the same import, set 'Records per Iteration' to 1, run the import "
|
4391 |
-
"twice, or run separate imports for child and parent pages."
|
4392 |
-
msgstr ""
|
4393 |
-
"Ingrese el Slug de la pagina padre deseada. Si agregando la pagina hijo y "
|
4394 |
-
"padre en la misma importación, tiene que establecer 'Registros por "
|
4395 |
-
"iteración' a 1, ejecutar la importación dos veces, o ejecutar importaciones "
|
4396 |
-
"separadas para la pagina hijo y padre."
|
4397 |
-
|
4398 |
-
#: ../../views/admin/import/template/_other_template.php:215
|
4399 |
-
msgid "Select page parent"
|
4400 |
-
msgstr "Seleccione la pagina padre"
|
4401 |
-
|
4402 |
-
#: ../../views/admin/import/template/_other_template.php:218
|
4403 |
-
msgid "(no parent)"
|
4404 |
-
msgstr "(no hay padre)"
|
4405 |
-
|
4406 |
-
#: ../../views/admin/import/template/_other_template.php:237
|
4407 |
-
msgid "Post Parent"
|
4408 |
-
msgstr "Entrada Padre"
|
4409 |
-
|
4410 |
-
#: ../../views/admin/import/template/_other_template.php:237
|
4411 |
-
msgid ""
|
4412 |
-
"Enter the slug of the desired post parent. If adding the child and parent "
|
4413 |
-
"posts in the same import, set 'Records per Iteration' to 1, run the import "
|
4414 |
-
"twice, or run separate imports for child and parent posts."
|
4415 |
-
msgstr ""
|
4416 |
-
"Ingrese el Slug deseado para la entrada padre. Si esta agregando en la "
|
4417 |
-
"misma importación una entrada hijo y padre, tiene que establecer 'Registros "
|
4418 |
-
"por Iteración' a 1, ejecute la importación dos veces o ejecute la "
|
4419 |
-
"importación separada para la entrada hijo y entrada padre."
|
4420 |
-
|
4421 |
-
#: ../../views/admin/import/template/_other_template.php:241
|
4422 |
-
msgid "Set post parent"
|
4423 |
-
msgstr "Establecer entrada padre"
|
4424 |
-
|
4425 |
-
#: ../../views/admin/import/template/_other_template.php:265
|
4426 |
-
msgid "Menu Order"
|
4427 |
-
msgstr "Orden de Menús"
|
4428 |
-
|
4429 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:13
|
4430 |
-
msgid "Taxonomies, Categories, Tags"
|
4431 |
-
msgstr "Taxonomías, Categorías, Etiquetas"
|
4432 |
-
|
4433 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:17
|
4434 |
-
msgid "Show Hints"
|
4435 |
-
msgstr "Mostrar Consejos"
|
4436 |
-
|
4437 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:38
|
4438 |
-
#, php-format
|
4439 |
-
msgid "Each %s has just one %s"
|
4440 |
-
msgstr "Cada %s solo tiene un %s"
|
4441 |
-
|
4442 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:46 ../..
|
4443 |
-
#: /views/admin/import/template/_taxonomies_template.php:70
|
4444 |
-
#, php-format
|
4445 |
-
msgid "Try to match terms to existing child %s"
|
4446 |
-
msgstr "Intente coincidir términos a un %s hijo existente"
|
4447 |
-
|
4448 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:51 ../..
|
4449 |
-
#: /views/admin/import/template/_taxonomies_template.php:75
|
4450 |
-
#, php-format
|
4451 |
-
msgid "Only assign %s to the imported %s, not the entire hierarchy"
|
4452 |
-
msgstr "Solamente asigne %s al importado %s, no a la jerarquía entera"
|
4453 |
-
|
4454 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:52 ../..
|
4455 |
-
#: /views/admin/import/template/_taxonomies_template.php:76
|
4456 |
-
msgid ""
|
4457 |
-
"By default all categories above the matched category will also be assigned "
|
4458 |
-
"to the post. If enabled, only the imported category will be assigned to the "
|
4459 |
-
"post."
|
4460 |
-
msgstr ""
|
4461 |
-
"Por defecto todas las categorías que están por encima de la categoría "
|
4462 |
-
"coincidente será también asignada a la entrada. Si esta habilitado, "
|
4463 |
-
"solamente la categoría importada será asignada a la entrada."
|
4464 |
-
|
4465 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:60
|
4466 |
-
#, php-format
|
4467 |
-
msgid "Each %s has multiple %s"
|
4468 |
-
msgstr "Cada %s tiene multiple %s"
|
4469 |
-
|
4470 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:85
|
4471 |
-
#, php-format
|
4472 |
-
msgid ""
|
4473 |
-
"%ss have hierarchical (parent/child) %s (i.e. Sports > Golf > Clubs > "
|
4474 |
-
"Putters)"
|
4475 |
-
msgstr ""
|
4476 |
-
"%ss tienen jerarquía (padre/hijo) %s (ejemplo: Deportes > Golf > Clubs > "
|
4477 |
-
"Palos)"
|
4478 |
-
|
4479 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:90
|
4480 |
-
msgid ""
|
4481 |
-
"An element in my file contains the entire hierarchy (i.e. you have an "
|
4482 |
-
"element with a value = Sports > Golf > Clubs > Putters)"
|
4483 |
-
msgstr ""
|
4484 |
-
"Un elemento en mi archivo contiene la jerarquía entera (ejemplo, usted tiene "
|
4485 |
-
"un elemento con valor = Deportes > Golf > Clubs > Palos)"
|
4486 |
-
|
4487 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:127
|
4488 |
-
#, php-format
|
4489 |
-
msgid "Only assign %s to the bottom level term in the hierarchy"
|
4490 |
-
msgstr "Solamente asigne %s al término de nivel inferior en la jerarquía"
|
4491 |
-
|
4492 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:132
|
4493 |
-
msgid "Separate hierarchy groups via symbol"
|
4494 |
-
msgstr "Separar grupos de jerarquía vía simbolos"
|
4495 |
-
|
4496 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:140
|
4497 |
-
msgid "Add Another Hierarchy Group"
|
4498 |
-
msgstr "Agregar otro Grupo de Jerarquía"
|
4499 |
-
|
4500 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:147
|
4501 |
-
msgid "Manually design the hierarchy with drag & drop"
|
4502 |
-
msgstr "Diseñe manualmente la jerarquía con arrastrar y soltar"
|
4503 |
-
|
4504 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:149
|
4505 |
-
#, php-format
|
4506 |
-
msgid ""
|
4507 |
-
"Drag the <img src=\"%s\" class=\"wpallimport-drag-icon\"/> to the right to "
|
4508 |
-
"create a child, drag up and down to re-order."
|
4509 |
-
msgstr ""
|
4510 |
-
"Arrastre el <img src=\"%s\" class=\"wpallimport-drag-icon\"/> a la derecha para "
|
4511 |
-
"crear un hijo, arraste arriba y abajo para re-ordenar."
|
4512 |
-
|
4513 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:227
|
4514 |
-
#, php-format
|
4515 |
-
msgid "Enable Mapping for %s"
|
4516 |
-
msgstr "Habilitar Mapeo para %s"
|
4517 |
-
|
4518 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:306
|
4519 |
-
msgid "Apply mapping rules before splitting via separator symbol"
|
4520 |
-
msgstr "Aplicar reglas de mapeo antes de separar mediante símbolo separador"
|
4521 |
-
|
4522 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:321
|
4523 |
-
msgid "Show \"private\" taxonomies"
|
4524 |
-
msgstr "Mostar taxonomías \"privadas\""
|
4525 |
-
|
4526 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:332
|
4527 |
-
msgid "Taxonomies that don't already exist on your site will be created."
|
4528 |
-
msgstr "Taxonomías que no existen actualmente en tu sitio serán creadas."
|
4529 |
-
|
4530 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:333
|
4531 |
-
msgid ""
|
4532 |
-
"To import to existing parent taxonomies, use the existing taxonomy name or "
|
4533 |
-
"slug."
|
4534 |
-
msgstr ""
|
4535 |
-
"Para importar a taxonomías padres existentes, utilice el nombre o slug de "
|
4536 |
-
"taxonomía existente."
|
4537 |
-
|
4538 |
-
#: ../../views/admin/import/template/_taxonomies_template.php:334
|
4539 |
-
msgid ""
|
4540 |
-
"To import to existing hierarchical taxonomies, create the entire hierarchy "
|
4541 |
-
"using the taxonomy names or slugs."
|
4542 |
-
msgstr ""
|
4543 |
-
"Para importar a taxonomías jerárquicas existentes, crear la jerarquía entera "
|
4544 |
-
"utilizando nombres o slugs de taxonomía."
|
4545 |
-
|
4546 |
-
#: ../../views/admin/license/index.php:3
|
4547 |
-
msgid "WP All Import Licenses"
|
4548 |
-
msgstr "Licencias de WP All Import"
|
4549 |
-
|
4550 |
-
#: ../../views/admin/license/index.php:23 ../../views/admin/settings/index.php:163
|
4551 |
-
msgid "Active"
|
4552 |
-
msgstr "Activar"
|
4553 |
-
|
4554 |
-
#: ../../views/admin/license/index.php:24
|
4555 |
-
msgid "Deactivate License"
|
4556 |
-
msgstr "Desactivar Licencia"
|
4557 |
-
|
4558 |
-
#: ../../views/admin/license/index.php:26 ../../views/admin/settings/index.php:165
|
4559 |
-
msgid "Activate License"
|
4560 |
-
msgstr "Activar Licencia"
|
4561 |
-
|
4562 |
-
#: ../../views/admin/manage/bulk.php:10
|
4563 |
-
#, php-format
|
4564 |
-
msgid "Are you sure you want to delete <strong>%s</strong> selected %s?"
|
4565 |
-
msgstr "Esta seguro que desea eliminar <strong>%s</strong> %s seleccionados?"
|
4566 |
-
|
4567 |
-
#: ../../views/admin/manage/bulk.php:12
|
4568 |
-
msgid "Delete associated posts as well"
|
4569 |
-
msgstr "Eliminar entradas asociadas también "
|
4570 |
-
|
4571 |
-
#: ../../views/admin/manage/bulk.php:17 ../../views/admin/manage/delete.php:19
|
4572 |
-
msgid "Delete associated images from media gallery"
|
4573 |
-
msgstr "Eliminar imágenes asociadas de la biblioteca multimedia"
|
4574 |
-
|
4575 |
-
#: ../../views/admin/manage/bulk.php:22 ../../views/admin/manage/delete.php:24
|
4576 |
-
msgid "Delete associated files from media gallery"
|
4577 |
-
msgstr "Eliminar archivos asociados de la biblioteca multimedia"
|
4578 |
-
|
4579 |
-
#: ../../views/admin/manage/bulk.php:31 ../../views/admin/manage/delete.php:32
|
4580 |
-
#, php-format
|
4581 |
-
msgid ""
|
4582 |
-
"<p class=\"wpallimport-delete-posts-warning\"><strong>Important</strong>: this "
|
4583 |
-
"import was created automatically by WP All Export. All posts exported by the "
|
4584 |
-
"\"%s\" export job have been automatically associated with this import.</p>"
|
4585 |
-
msgstr ""
|
4586 |
-
"<p class=\"wpallimport-delete-posts-warning\"><strong>Important</strong>: esta "
|
4587 |
-
"importación fue creada automáticamente por El Exportador WP. Todos las "
|
4588 |
-
"entradas exportadas por el \"%s\" trabajo de exportación han sido asociados "
|
4589 |
-
"automáticamente con esta importación</p>"
|
4590 |
-
|
4591 |
-
#: ../../views/admin/manage/delete.php:1
|
4592 |
-
msgid "Delete Import"
|
4593 |
-
msgstr "Eliminar Importación"
|
4594 |
-
|
4595 |
-
#: ../../views/admin/manage/index.php:18 ../../views/admin/manage/index.php:20
|
4596 |
-
msgid "Search Imports"
|
4597 |
-
msgstr "Buscar Importaciones"
|
4598 |
-
|
4599 |
-
#: ../../views/admin/manage/index.php:28
|
4600 |
-
msgid "File"
|
4601 |
-
msgstr "Archivo"
|
4602 |
-
|
4603 |
-
#: ../../views/admin/manage/index.php:31
|
4604 |
-
msgid "Info & Options"
|
4605 |
-
msgstr "Info y Opciones"
|
4606 |
-
|
4607 |
-
#: ../../views/admin/manage/index.php:100
|
4608 |
-
#, php-format
|
4609 |
-
msgid "No previous imports found. <a href=\"%s\">Start a new import...</a>"
|
4610 |
-
msgstr ""
|
4611 |
-
"No se encontró ninguna importación previa. <a href=\"%s\">Inicie una nueva "
|
4612 |
-
"importación...</a>"
|
4613 |
-
|
4614 |
-
#: ../../views/admin/manage/index.php:182
|
4615 |
-
msgid "Edit Import"
|
4616 |
-
msgstr "Editar Importación"
|
4617 |
-
|
4618 |
-
#: ../../views/admin/manage/index.php:187
|
4619 |
-
msgid "Import Settings"
|
4620 |
-
msgstr "Configuración de Importación"
|
4621 |
-
|
4622 |
-
#: ../../views/admin/manage/index.php:228
|
4623 |
-
msgid "triggered with cron"
|
4624 |
-
msgstr "desencadenado con cron "
|
4625 |
-
|
4626 |
-
#: ../../views/admin/manage/index.php:235 ../../views/admin/manage/index.php:250 .
|
4627 |
-
#: ./../views/admin/manage/index.php:264
|
4628 |
-
#, php-format
|
4629 |
-
msgid "last activity %s ago"
|
4630 |
-
msgstr "útima actividad hace %s "
|
4631 |
-
|
4632 |
-
#: ../../views/admin/manage/index.php:242
|
4633 |
-
msgid "currently processing with cron"
|
4634 |
-
msgstr "actualmente procesando con cron"
|
4635 |
-
|
4636 |
-
#: ../../views/admin/manage/index.php:257
|
4637 |
-
msgid "Import currently in progress"
|
4638 |
-
msgstr "Importación actualmente en progreso"
|
4639 |
-
|
4640 |
-
#: ../../views/admin/manage/index.php:271 ../../views/admin/manage/index.php:275
|
4641 |
-
#, php-format
|
4642 |
-
msgid "Import Attempt at %s"
|
4643 |
-
msgstr "Intento de Importación a %s"
|
4644 |
-
|
4645 |
-
#: ../../views/admin/manage/index.php:276
|
4646 |
-
msgid "Import failed, please check logs"
|
4647 |
-
msgstr "Importación Falló, por favor revisar la bitácora"
|
4648 |
-
|
4649 |
-
#: ../../views/admin/manage/index.php:286
|
4650 |
-
#, php-format
|
4651 |
-
msgid "Last run: %s"
|
4652 |
-
msgstr "Ultima ejecución: %s"
|
4653 |
-
|
4654 |
-
#: ../../views/admin/manage/index.php:286
|
4655 |
-
msgid "never"
|
4656 |
-
msgstr "nunca "
|
4657 |
-
|
4658 |
-
#: ../../views/admin/manage/index.php:287
|
4659 |
-
#, php-format
|
4660 |
-
msgid "%d %s created"
|
4661 |
-
msgstr "%d %s creado"
|
4662 |
-
|
4663 |
-
#: ../../views/admin/manage/index.php:288
|
4664 |
-
#, php-format
|
4665 |
-
msgid "%d updated, %d skipped, %d deleted"
|
4666 |
-
msgstr "%d actualizado, %d omitido, %d eliminado"
|
4667 |
-
|
4668 |
-
#: ../../views/admin/manage/index.php:295
|
4669 |
-
msgid "settings edited since last run"
|
4670 |
-
msgstr "configuraciones editadas desde la ultima ejecución"
|
4671 |
-
|
4672 |
-
#: ../../views/admin/manage/index.php:307 ../../views/admin/manage/scheduling.php:2
|
4673 |
-
msgid "Cron Scheduling"
|
4674 |
-
msgstr "Programación de Cron"
|
4675 |
-
|
4676 |
-
#: ../../views/admin/manage/index.php:309
|
4677 |
-
msgid "History Logs"
|
4678 |
-
msgstr "Bitácora de Historial"
|
4679 |
-
|
4680 |
-
#: ../../views/admin/manage/index.php:319
|
4681 |
-
msgid "Run Import"
|
4682 |
-
msgstr "Ejecutar Importación"
|
4683 |
-
|
4684 |
-
#: ../../views/admin/manage/index.php:321
|
4685 |
-
msgid "Cancel Cron"
|
4686 |
-
msgstr "Cancelar Cron"
|
4687 |
-
|
4688 |
-
#: ../../views/admin/manage/index.php:323
|
4689 |
-
msgid "Cancel"
|
4690 |
-
msgstr "Cancelar"
|
4691 |
-
|
4692 |
-
#: ../../views/admin/manage/scheduling.php:8
|
4693 |
-
msgid ""
|
4694 |
-
"To schedule an import, you must create two cron jobs in your web hosting "
|
4695 |
-
"control panel. One cron job will be used to run the Trigger script, the "
|
4696 |
-
"other to run the Execution script."
|
4697 |
-
msgstr ""
|
4698 |
-
"Para programar una importación, debe de crear dos trabajos cron en su panel "
|
4699 |
-
"de control de alojamiento web. Un trabajo cron será utilizado para ejecutar "
|
4700 |
-
"la guía desencadenante, el otro ejecutara la guía de ejecución."
|
4701 |
-
|
4702 |
-
#: ../../views/admin/manage/scheduling.php:19
|
4703 |
-
msgid "Trigger Script"
|
4704 |
-
msgstr "Guía desencandenante"
|
4705 |
-
|
4706 |
-
#: ../../views/admin/manage/scheduling.php:21
|
4707 |
-
msgid "Every time you want to schedule the import, run the trigger script."
|
4708 |
-
msgstr "Cada vez que quiera programa la importación, ejecute la guía desencadenante. "
|
4709 |
-
|
4710 |
-
#: ../../views/admin/manage/scheduling.php:23
|
4711 |
-
msgid ""
|
4712 |
-
"To schedule the import to run once every 24 hours, run the trigger script "
|
4713 |
-
"every 24 hours. Most hosts require you to use “wget” to access a URL. Ask "
|
4714 |
-
"your host for details."
|
4715 |
-
msgstr ""
|
4716 |
-
"Para programar la importación cada 24 horas, ejecute la guía desencadenante "
|
4717 |
-
"cada 24 horas. La mayoría de los alojadores web requiere que utilice \"wget\" "
|
4718 |
-
"para ingresar a un URL. Consulte a su alojador web."
|
4719 |
-
|
4720 |
-
#: ../../views/admin/manage/scheduling.php:25 ../../views/admin/manage/scheduling.
|
4721 |
-
#: php:37
|
4722 |
-
msgid "Example:"
|
4723 |
-
msgstr "Ejemplo:"
|
4724 |
-
|
4725 |
-
#: ../../views/admin/manage/scheduling.php:29
|
4726 |
-
msgid "Execution Script"
|
4727 |
-
msgstr "Guía (script) de Ejecución"
|
4728 |
-
|
4729 |
-
#: ../../views/admin/manage/scheduling.php:31
|
4730 |
-
msgid ""
|
4731 |
-
"The Execution script actually executes the import, once it has been "
|
4732 |
-
"triggered with the Trigger script."
|
4733 |
-
msgstr ""
|
4734 |
-
"La guía de ejecución ejecuta la importación, una vez ha sido desencadenada "
|
4735 |
-
"con la guía de desencadenamiento. "
|
4736 |
-
|
4737 |
-
#: ../../views/admin/manage/scheduling.php:33
|
4738 |
-
msgid ""
|
4739 |
-
"It processes in iteration (only importing a few records each time it runs) "
|
4740 |
-
"to optimize server load. It is recommended you run the execution script "
|
4741 |
-
"every 2 minutes."
|
4742 |
-
msgstr ""
|
4743 |
-
"Lo procesar en iteraciones (solamente importando unos cuantos registros cada "
|
4744 |
-
"vez que ejecuta) para optimizar la carga del servidor. Es recomendable que "
|
4745 |
-
"ejecute la guía de ejecución cada 2 minutos."
|
4746 |
-
|
4747 |
-
#: ../../views/admin/manage/scheduling.php:35
|
4748 |
-
msgid ""
|
4749 |
-
"It also operates this way in case of unexpected crashes by your web host. If "
|
4750 |
-
"it crashes before the import is finished, the next run of the cron job two "
|
4751 |
-
"minutes later will continue it where it left off, ensuring reliability."
|
4752 |
-
msgstr ""
|
4753 |
-
"También opera en esta forma en cara de caídas inesperadas de su alojador web."
|
4754 |
-
" Si se cae antes de que la importación termine la siguiente vez que ejecute "
|
4755 |
-
"el trabajo cron dos minutos después va a continuar donde quedo, asegurando "
|
4756 |
-
"confiabilidad"
|
4757 |
-
|
4758 |
-
#: ../../views/admin/manage/scheduling.php:41
|
4759 |
-
msgid "Notes"
|
4760 |
-
msgstr "Notas"
|
4761 |
-
|
4762 |
-
#: ../../views/admin/manage/scheduling.php:44
|
4763 |
-
msgid ""
|
4764 |
-
"Your web host may require you to use a command other than wget, although "
|
4765 |
-
"wget is most common. In this case, you must asking your web hosting provider "
|
4766 |
-
"for help."
|
4767 |
-
msgstr ""
|
4768 |
-
"Su alojador web puede requerir que use un comando diferente a wget, a pesar "
|
4769 |
-
"de que wget es el mas común. En este caso, tiene que consultar a su "
|
4770 |
-
"alojador web por ayuda."
|
4771 |
-
|
4772 |
-
#: ../../views/admin/manage/scheduling.php:54
|
4773 |
-
msgid ""
|
4774 |
-
"To schedule this import with a cron job, you must use the \"Download from "
|
4775 |
-
"URL\" option on the Import Settings screen of WP All Import."
|
4776 |
-
msgstr ""
|
4777 |
-
"Para planificar o programar esta importación con un trabajo cron, debe de "
|
4778 |
-
"utilizar la opción \"Descargar desde URL\" en la pantalla de Configuración de "
|
4779 |
-
"Importación de WP All Import."
|
4780 |
-
|
4781 |
-
#: ../../views/admin/manage/scheduling.php:57
|
4782 |
-
msgid "Go to Import Settings now..."
|
4783 |
-
msgstr "Ir a Configuración de Importación ahora...."
|
4784 |
-
|
4785 |
-
#: ../../views/admin/manage/update.php:1
|
4786 |
-
msgid "Update Import"
|
4787 |
-
msgstr "Actualizar Importación"
|
4788 |
-
|
4789 |
-
#: ../../views/admin/manage/update.php:9
|
4790 |
-
#, php-format
|
4791 |
-
msgid "Are you sure you want to update <strong>%s</strong> import?"
|
4792 |
-
msgstr "Esta seguro que quiere actualizar <strong>%s</strong> importación?"
|
4793 |
-
|
4794 |
-
#: ../../views/admin/manage/update.php:10
|
4795 |
-
#, php-format
|
4796 |
-
msgid "Source path is <strong>%s</strong>"
|
4797 |
-
msgstr "La ruta fuente es <strong>%s</strong>"
|
4798 |
-
|
4799 |
-
#: ../../views/admin/manage/update.php:21
|
4800 |
-
msgid ""
|
4801 |
-
"Update feature is not available for this import since it has no external "
|
4802 |
-
"path linked."
|
4803 |
-
msgstr ""
|
4804 |
-
"Característica de actualización no esta disponible para esta importación por "
|
4805 |
-
"que no tiene una ruta externa vinculada."
|
4806 |
-
|
4807 |
-
#: ../../views/admin/settings/index.php:18
|
4808 |
-
msgid "Import/Export Templates"
|
4809 |
-
msgstr "Importar/Exportar Plantillas"
|
4810 |
-
|
4811 |
-
#: ../../views/admin/settings/index.php:32
|
4812 |
-
msgid "Delete Selected"
|
4813 |
-
msgstr "Eliminar Seleccionado"
|
4814 |
-
|
4815 |
-
#: ../../views/admin/settings/index.php:33
|
4816 |
-
msgid "Export Selected"
|
4817 |
-
msgstr "Exportar Seleccionado"
|
4818 |
-
|
4819 |
-
#: ../../views/admin/settings/index.php:36
|
4820 |
-
msgid "There are no templates saved"
|
4821 |
-
msgstr "No hay plantillas guardadas"
|
4822 |
-
|
4823 |
-
#: ../../views/admin/settings/index.php:41
|
4824 |
-
msgid "Import Templates"
|
4825 |
-
msgstr "Importar Plantillas"
|
4826 |
-
|
4827 |
-
#: ../../views/admin/settings/index.php:49
|
4828 |
-
msgid "Cron Imports"
|
4829 |
-
msgstr "Importaciones Cron"
|
4830 |
-
|
4831 |
-
#: ../../views/admin/settings/index.php:54
|
4832 |
-
msgid "Secret Key"
|
4833 |
-
msgstr "Clave Secreta"
|
4834 |
-
|
4835 |
-
#: ../../views/admin/settings/index.php:57
|
4836 |
-
msgid "Changing this will require you to re-create your existing cron jobs."
|
4837 |
-
msgstr "Cambiando esto va a requerir que vuelva a hacer sus trabajos cron."
|
4838 |
-
|
4839 |
-
#: ../../views/admin/settings/index.php:61
|
4840 |
-
msgid "Cron Processing Time Limit"
|
4841 |
-
msgstr "Limite de tiempo de procesamiento Cron"
|
4842 |
-
|
4843 |
-
#: ../../views/admin/settings/index.php:64
|
4844 |
-
msgid "Leave blank to use your server's limit on script run times."
|
4845 |
-
msgstr ""
|
4846 |
-
"Deje en blanco para utilizar el limite del servidor en guias de tiempos de "
|
4847 |
-
"ejecución"
|
4848 |
-
|
4849 |
-
#: ../../views/admin/settings/index.php:68
|
4850 |
-
msgid "Cron Sleep"
|
4851 |
-
msgstr "Descanso de Cron"
|
4852 |
-
|
4853 |
-
#: ../../views/admin/settings/index.php:71
|
4854 |
-
msgid ""
|
4855 |
-
"Sleep the specified number of seconds between each post created, updated, or "
|
4856 |
-
"deleted with cron. Leave blank to not sleep. Only necessary on servers that "
|
4857 |
-
"are slowed down by the cron job because they have very minimal processing "
|
4858 |
-
"power and resources."
|
4859 |
-
msgstr ""
|
4860 |
-
"Descansar el numero especifico de segundos en cada entrada creada, "
|
4861 |
-
"actualizada o eliminado con cron. Dejar en blanco para no descansar. "
|
4862 |
-
"Solamente necesario en servidores que son lentos por el trabajo cron por que "
|
4863 |
-
"tiene poder de procesamiento mínimo y recursos. "
|
4864 |
-
|
4865 |
-
#: ../../views/admin/settings/index.php:84 ../../views/admin/settings/index.php:87
|
4866 |
-
msgid "Secure Mode"
|
4867 |
-
msgstr "Modo seguro"
|
4868 |
-
|
4869 |
-
#: ../../views/admin/settings/index.php:89
|
4870 |
-
msgid "Randomize folder names"
|
4871 |
-
msgstr "Poner nombres de carpetas al azar"
|
4872 |
-
|
4873 |
-
#: ../../views/admin/settings/index.php:95
|
4874 |
-
#, php-format
|
4875 |
-
msgid ""
|
4876 |
-
"Imported files, chunks, logs and temporary files will be placed in a folder "
|
4877 |
-
"with a randomized name inside of %s."
|
4878 |
-
msgstr ""
|
4879 |
-
"Archivos importados, pedazos, bitácoras y archivos temporales serán puestos "
|
4880 |
-
"en una carpeta con nombres al azar de %s."
|
4881 |
-
|
4882 |
-
#: ../../views/admin/settings/index.php:100
|
4883 |
-
msgid "Log Storage"
|
4884 |
-
msgstr "Bitácora de Almacenamiento"
|
4885 |
-
|
4886 |
-
#: ../../views/admin/settings/index.php:103
|
4887 |
-
msgid "Number of logs to store for each import. Enter 0 to never store logs."
|
4888 |
-
msgstr ""
|
4889 |
-
"Número de bitácoras para almacenar en cada importación. Ingrese un 0 para "
|
4890 |
-
"nunca guardar bitácoras. "
|
4891 |
-
|
4892 |
-
#: ../../views/admin/settings/index.php:107
|
4893 |
-
msgid "Clean Up Temp Files"
|
4894 |
-
msgstr "Limpiar archivos temporales"
|
4895 |
-
|
4896 |
-
#: ../../views/admin/settings/index.php:109
|
4897 |
-
msgid "Clean Up"
|
4898 |
-
msgstr "Limpiar"
|
4899 |
-
|
4900 |
-
#: ../../views/admin/settings/index.php:110
|
4901 |
-
msgid ""
|
4902 |
-
"Attempt to remove temp files left over by imports that were improperly "
|
4903 |
-
"terminated."
|
4904 |
-
msgstr ""
|
4905 |
-
"Intentar remover archivos temporales que fueron dejados por importaciones "
|
4906 |
-
"que fueron impropiamente terminadas."
|
4907 |
-
|
4908 |
-
#: ../../views/admin/settings/index.php:118
|
4909 |
-
msgid "Advanced Settings"
|
4910 |
-
msgstr "Configuraciones Avanzadas"
|
4911 |
-
|
4912 |
-
#: ../../views/admin/settings/index.php:123
|
4913 |
-
msgid "Chunk Size"
|
4914 |
-
msgstr "Tamaño de Pedazo"
|
4915 |
-
|
4916 |
-
#: ../../views/admin/settings/index.php:126
|
4917 |
-
msgid "Split file into chunks containing the specified number of records."
|
4918 |
-
msgstr "Separar el archivo en pedazos conteniendo el numero especifico de registros."
|
4919 |
-
|
4920 |
-
#: ../../views/admin/settings/index.php:130
|
4921 |
-
msgid "WP_IMPORTING"
|
4922 |
-
msgstr "WP_IMPORTING"
|
4923 |
-
|
4924 |
-
#: ../../views/admin/settings/index.php:134
|
4925 |
-
msgid "Enable WP_IMPORTING"
|
4926 |
-
msgstr "Activar WP_IMPORTING"
|
4927 |
-
|
4928 |
-
#: ../../views/admin/settings/index.php:136
|
4929 |
-
msgid "Setting this constant avoids triggering pingback."
|
4930 |
-
msgstr "Configurando esta constante evita desencadenar pingback."
|
4931 |
-
|
4932 |
-
#: ../../views/admin/settings/index.php:140
|
4933 |
-
msgid "Add Port To URL"
|
4934 |
-
msgstr "Agregar puerto a la URL"
|
4935 |
-
|
4936 |
-
#: ../../views/admin/settings/index.php:143
|
4937 |
-
msgid ""
|
4938 |
-
"Specify the port number to add if you're having problems continuing to Step "
|
4939 |
-
"2 and are running things on a custom port. Default is blank."
|
4940 |
-
msgstr ""
|
4941 |
-
"Especificar el numero de puerto para agregar si esta teniendo problemas "
|
4942 |
-
"continuando al Paso 2 y esta ejecutando en un puerto personalizado. Por "
|
4943 |
-
"defecto es en blanco."
|
4944 |
-
|
4945 |
-
#: ../../views/admin/settings/index.php:150
|
4946 |
-
msgid "Licenses"
|
4947 |
-
msgstr "Licencias"
|
4948 |
-
|
4949 |
-
#: ../../views/admin/settings/index.php:157
|
4950 |
-
msgid "License Key"
|
4951 |
-
msgstr "Clave de Licencia"
|
4952 |
-
|
4953 |
-
#: ../../views/admin/settings/index.php:170
|
4954 |
-
msgid ""
|
4955 |
-
"A license key is required to access plugin updates. You can use your license "
|
4956 |
-
"key on an unlimited number of websites. Do not distribute your license key "
|
4957 |
-
"to 3rd parties. You can get your license key in the <a target=\"_blank\" "
|
4958 |
-
"href=\"http://www.wpallimport.com/portal\">customer portal</a>."
|
4959 |
-
msgstr ""
|
4960 |
-
"Una clave de licencia es requerida para acceder a actualizaciones del plugin."
|
4961 |
-
" También puede usar su clave de licencia en un número ilimitado de sitios "
|
4962 |
-
"web. No distribuya su clave de licencia a 3ras personas. Puede obtener su "
|
4963 |
-
"licencia en el <a target=\"_blank\" href=\"http://www.wpallimport."
|
4964 |
-
"com/portal\">portal del cliente</a>."
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"MIME-Version: 1.0\n"
|
4 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
5 |
+
"Content-Transfer-Encoding: 8bit\n"
|
6 |
+
"X-Generator: POEditor.com\n"
|
7 |
+
"Project-Id-Version: WP All Import Pro\n"
|
8 |
+
"Language: es\n"
|
9 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
10 |
+
|
11 |
+
#: actions/admin_menu.php:12
|
12 |
+
msgid "New Import"
|
13 |
+
msgstr "Nueva Importación"
|
14 |
+
|
15 |
+
#: actions/admin_menu.php:13 views/admin/import/process.php:71
|
16 |
+
#: views/admin/manage/index.php:5
|
17 |
+
msgid "Manage Imports"
|
18 |
+
msgstr "Manejar Importaciones"
|
19 |
+
|
20 |
+
#: actions/admin_menu.php:14 views/admin/settings/index.php:7
|
21 |
+
msgid "Settings"
|
22 |
+
msgstr "Configuración"
|
23 |
+
|
24 |
+
#: actions/admin_menu.php:16
|
25 |
+
msgid "History"
|
26 |
+
msgstr "Historial"
|
27 |
+
|
28 |
+
#: actions/admin_menu.php:22 controllers/admin/license.php:18
|
29 |
+
#: controllers/admin/settings.php:50 views/admin/import/confirm.php:11
|
30 |
+
#: views/admin/import/element.php:8 views/admin/import/index.php:43
|
31 |
+
#: views/admin/import/options.php:18 views/admin/import/process.php:8
|
32 |
+
#: views/admin/import/template.php:9 views/admin/manage/index.php:4
|
33 |
+
#: views/admin/settings/index.php:6
|
34 |
+
msgid "WP All Import"
|
35 |
+
msgstr "WP All Import"
|
36 |
+
|
37 |
+
#: actions/admin_menu.php:22
|
38 |
+
msgid "All Import"
|
39 |
+
msgstr "All Import"
|
40 |
+
|
41 |
+
#: actions/admin_notices.php:12
|
42 |
+
msgid "<b>%s Plugin</b>: Please update your WP All Import WooCommerce add-on to the latest version"
|
43 |
+
msgstr "<b>%s Plugin</b>: Por favor actualice el add-on de Woocommerce para WP All Import a la última versión."
|
44 |
+
|
45 |
+
#: actions/admin_notices.php:39
|
46 |
+
msgid "<b>%s Plugin</b>: Please update your WP All Import ACF add-on to the latest version"
|
47 |
+
msgstr "<b>%s Plugin</b>: Por favor actualice el ACF add-on para WP All Import a su última versión"
|
48 |
+
|
49 |
+
#: actions/admin_notices.php:56
|
50 |
+
msgid "<b>%s Plugin</b>: Please update your WP All Import Linkcloak add-on to the latest version"
|
51 |
+
msgstr "<b>%s Plugin</b>: Por favor actualice el Linkcloak add-on para WP All Import a su última versión"
|
52 |
+
|
53 |
+
#: actions/admin_notices.php:73
|
54 |
+
msgid "<b>%s Plugin</b>: Please update your WP All Import User add-on to the latest version"
|
55 |
+
msgstr "<b>%s Plugin</b>: Por favor actualice el User add-on para el WP All Import a su última versión"
|
56 |
+
|
57 |
+
#: actions/admin_notices.php:90
|
58 |
+
msgid "<b>%s Plugin</b>: The WPML Add-On Plugin is no longer compatible with this version of WP All Import - please contact support@wpallimport.com and we will supply the latest version of WP All Import that is compatible with the WPML Add-On."
|
59 |
+
msgstr "<b>%s Plugin</b>: El WPML Add-On Plugin ya no es compatible con esta versión de WP All Import - por favor contáctenos a support@wpallimport.com y nosotros le proveeremos la ultima versión de WP All Import que es compatible con el WPML Add-On."
|
60 |
+
|
61 |
+
#: actions/admin_notices.php:119 controllers/admin/import.php:1547
|
62 |
+
#: controllers/admin/import.php:1789 controllers/admin/import.php:2339
|
63 |
+
msgid "<strong>Warning:</strong> your title is blank."
|
64 |
+
msgstr "<strong>Advertencia:</strong> su título está en blanco."
|
65 |
+
|
66 |
+
#: actions/admin_notices.php:122 controllers/admin/import.php:1554
|
67 |
+
msgid "<strong>Warning:</strong> your content is blank."
|
68 |
+
msgstr "<strong>Advertencia: </strong> su contenido esta en blanco."
|
69 |
+
|
70 |
+
#: actions/wp_ajax_auto_detect_cf.php:5 actions/wp_ajax_auto_detect_cf.php:9
|
71 |
+
#: actions/wp_ajax_auto_detect_sf.php:5 actions/wp_ajax_auto_detect_sf.php:9
|
72 |
+
#: actions/wp_ajax_delete_import.php:5 actions/wp_ajax_delete_import.php:9
|
73 |
+
#: actions/wp_ajax_dismiss_notifications.php:5
|
74 |
+
#: actions/wp_ajax_dismiss_notifications.php:9
|
75 |
+
#: actions/wp_ajax_get_bundle_post_type.php:6
|
76 |
+
#: actions/wp_ajax_get_bundle_post_type.php:10
|
77 |
+
#: actions/wp_ajax_import_failed.php:5 actions/wp_ajax_import_failed.php:9
|
78 |
+
#: actions/wp_ajax_nested_merge.php:6 actions/wp_ajax_nested_merge.php:10
|
79 |
+
#: actions/wp_ajax_nested_xpath.php:6 actions/wp_ajax_nested_xpath.php:10
|
80 |
+
#: actions/wp_ajax_parse_nested_file.php:10
|
81 |
+
#: actions/wp_ajax_parse_nested_file.php:14
|
82 |
+
#: actions/wp_ajax_save_import_functions.php:6
|
83 |
+
#: actions/wp_ajax_save_import_functions.php:10
|
84 |
+
#: actions/wp_ajax_test_images.php:6 actions/wp_ajax_test_images.php:10
|
85 |
+
#: actions/wp_ajax_unmerge_file.php:5 actions/wp_ajax_unmerge_file.php:9
|
86 |
+
#: actions/wp_ajax_upload_resource.php:6 actions/wp_ajax_upload_resource.php:10
|
87 |
+
#: controllers/admin/history.php:74 controllers/admin/import.php:591
|
88 |
+
#: controllers/admin/import.php:899 controllers/admin/import.php:1037
|
89 |
+
#: controllers/admin/import.php:1177 controllers/admin/import.php:1333
|
90 |
+
#: controllers/admin/import.php:2589 controllers/admin/manage.php:136
|
91 |
+
#: controllers/admin/manage.php:179 controllers/admin/manage.php:293
|
92 |
+
#: controllers/admin/manage.php:545 controllers/admin/settings.php:427
|
93 |
+
msgid "Security check"
|
94 |
+
msgstr "Control de Seguridad"
|
95 |
+
|
96 |
+
#: actions/wp_ajax_auto_detect_cf.php:71 models/import/record.php:1572
|
97 |
+
#: views/admin/import/element.php:21
|
98 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:8
|
99 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:7
|
100 |
+
#: views/admin/import/process.php:40
|
101 |
+
#: views/admin/import/template/_custom_fields_template.php:7
|
102 |
+
#: views/admin/import/template/_other_template.php:6
|
103 |
+
#: views/admin/import/template/_term_meta_template.php:7
|
104 |
+
#: views/admin/import/template/_term_other_template.php:7
|
105 |
+
msgid "Taxonomy Term"
|
106 |
+
msgstr ""
|
107 |
+
|
108 |
+
#: actions/wp_ajax_auto_detect_cf.php:77
|
109 |
+
msgid "No Custom Fields are present in your database for %s"
|
110 |
+
msgstr "No hay campos personalizados presentes en su base de dato para %s"
|
111 |
+
|
112 |
+
#: actions/wp_ajax_auto_detect_cf.php:80
|
113 |
+
msgid "%s field was automatically detected."
|
114 |
+
msgstr "%s campo fue detectado automáticamente."
|
115 |
+
|
116 |
+
#: actions/wp_ajax_auto_detect_cf.php:82
|
117 |
+
msgid "%s fields were automatically detected."
|
118 |
+
msgstr "%s campos fuer detectados automáticamente."
|
119 |
+
|
120 |
+
#: actions/wp_ajax_delete_import.php:32 controllers/admin/manage.php:608
|
121 |
+
msgid "Import deleted"
|
122 |
+
msgstr "Importación eliminada"
|
123 |
+
|
124 |
+
#: actions/wp_ajax_delete_import.php:36 controllers/admin/manage.php:612
|
125 |
+
msgid "All associated posts deleted."
|
126 |
+
msgstr ""
|
127 |
+
|
128 |
+
#: actions/wp_ajax_delete_import.php:40 controllers/admin/manage.php:616
|
129 |
+
msgid "Import and all associated posts deleted."
|
130 |
+
msgstr ""
|
131 |
+
|
132 |
+
#: actions/wp_ajax_delete_import.php:44 controllers/admin/manage.php:597
|
133 |
+
msgid "Nothing to delete."
|
134 |
+
msgstr ""
|
135 |
+
|
136 |
+
#: actions/wp_ajax_delete_import.php:66
|
137 |
+
msgid "Import #%d - %d records deleted"
|
138 |
+
msgstr ""
|
139 |
+
|
140 |
+
#: actions/wp_ajax_get_bundle_post_type.php:73
|
141 |
+
#: actions/wp_ajax_upload_resource.php:141 controllers/admin/settings.php:610
|
142 |
+
msgid "<p class=\"wpallimport-bundle-notice\">The import bundle you are using requires WooCommerce.</p><a class=\"upgrade_link\" href=\"https://wordpress.org/plugins/woocommerce/\" target=\"_blank\">Get WooCommerce</a>."
|
143 |
+
msgstr ""
|
144 |
+
|
145 |
+
#: actions/wp_ajax_get_bundle_post_type.php:79
|
146 |
+
#: actions/wp_ajax_upload_resource.php:147 controllers/admin/settings.php:616
|
147 |
+
msgid "<p class=\"wpallimport-bundle-notice\">The import bundle you are using requires the Pro version of the WooCommerce Add-On.</p><a href=\"http://www.wpallimport.com/checkout/?edd_action=add_to_cart&download_id=1529&edd_options%5Bprice_id%5D=1\" class=\"upgrade_link\" target=\"_blank\">Purchase the WooCommerce Add-On</a>."
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: actions/wp_ajax_get_bundle_post_type.php:84
|
151 |
+
#: actions/wp_ajax_upload_resource.php:152 controllers/admin/settings.php:621
|
152 |
+
msgid "<p class=\"wpallimport-bundle-notice\">The import bundle you are using requires the Pro version of the WooCommerce Add-On, but you have the free version installed.</p><a href=\"http://www.wpallimport.com/checkout/?edd_action=add_to_cart&download_id=1529&edd_options%5Bprice_id%5D=1\" target=\"_blank\" class=\"upgrade_link\">Purchase the WooCommerce Add-On</a>."
|
153 |
+
msgstr ""
|
154 |
+
|
155 |
+
#: actions/wp_ajax_get_bundle_post_type.php:94
|
156 |
+
#: actions/wp_ajax_upload_resource.php:162 controllers/admin/settings.php:631
|
157 |
+
msgid "<p class=\"wpallimport-bundle-notice\">The import bundle you are using requires the User Import Add-On.</p><a href=\"http://www.wpallimport.com/checkout/?edd_action=add_to_cart&download_id=1921&edd_options%5Bprice_id%5D=1\" target=\"_blank\" class=\"upgrade_link\">Purchase the User Import Add-On</a>."
|
158 |
+
msgstr ""
|
159 |
+
|
160 |
+
#: actions/wp_ajax_nested_xpath.php:51
|
161 |
+
msgid "XPath is required"
|
162 |
+
msgstr "XPath es requerido"
|
163 |
+
|
164 |
+
#: actions/wp_ajax_nested_xpath.php:65
|
165 |
+
#: actions/wp_ajax_parse_nested_file.php:159
|
166 |
+
msgid "Elements found"
|
167 |
+
msgstr "Elementos encontrados"
|
168 |
+
|
169 |
+
#: actions/wp_ajax_nested_xpath.php:65
|
170 |
+
#: actions/wp_ajax_parse_nested_file.php:159
|
171 |
+
msgid "Elements not found"
|
172 |
+
msgstr "Elementos no encontrados"
|
173 |
+
|
174 |
+
#: actions/wp_ajax_save_import_functions.php:31
|
175 |
+
#: actions/wp_ajax_save_import_functions.php:52
|
176 |
+
msgid "PHP code must be wrapped in \"<?php\" and \"?>\""
|
177 |
+
msgstr ""
|
178 |
+
|
179 |
+
#: actions/wp_ajax_save_import_functions.php:38
|
180 |
+
#: actions/wp_ajax_save_import_functions.php:61
|
181 |
+
msgid "File has been successfully updated."
|
182 |
+
msgstr ""
|
183 |
+
|
184 |
+
#: actions/wp_ajax_test_images.php:32
|
185 |
+
msgid "Uploads folder `%s` is not writable."
|
186 |
+
msgstr "Carpeta de archivos`%s` no es modificable."
|
187 |
+
|
188 |
+
#: actions/wp_ajax_test_images.php:46
|
189 |
+
msgid "Use image name instead of URL `%s`."
|
190 |
+
msgstr "Utilice imagen en vez de un URL `%s`."
|
191 |
+
|
192 |
+
#: actions/wp_ajax_test_images.php:53
|
193 |
+
msgid "File `%s` isn't readable"
|
194 |
+
msgstr "Archivo `%s` no es legible"
|
195 |
+
|
196 |
+
#: actions/wp_ajax_test_images.php:57
|
197 |
+
msgid "File `%s` doesn't exist"
|
198 |
+
msgstr "Archivo `%s` no existe"
|
199 |
+
|
200 |
+
#: actions/wp_ajax_test_images.php:63
|
201 |
+
msgid "%d image was successfully retrieved from `%s`"
|
202 |
+
msgstr "%d Imagen fue recuperada con éxito desde `%s`"
|
203 |
+
|
204 |
+
#: actions/wp_ajax_test_images.php:67
|
205 |
+
msgid "%d images were successfully retrieved from `%s`"
|
206 |
+
msgstr "%d imágenes fueron recuperadas con éxito desde `%s`"
|
207 |
+
|
208 |
+
#: actions/wp_ajax_test_images.php:95
|
209 |
+
msgid "Image `%s` not found in media library."
|
210 |
+
msgstr ""
|
211 |
+
|
212 |
+
#: actions/wp_ajax_test_images.php:102
|
213 |
+
msgid "%d image was successfully founded in media gallery"
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: actions/wp_ajax_test_images.php:106
|
217 |
+
msgid "%d images were successfully founded in media gallery"
|
218 |
+
msgstr ""
|
219 |
+
|
220 |
+
#: actions/wp_ajax_test_images.php:120
|
221 |
+
msgid "URL `%s` is not valid."
|
222 |
+
msgstr "URL `%s` no es válida."
|
223 |
+
|
224 |
+
#: actions/wp_ajax_test_images.php:135
|
225 |
+
msgid "File `%s` cannot be saved locally"
|
226 |
+
msgstr "Archivo `%s` no se puede guardar localmente"
|
227 |
+
|
228 |
+
#: actions/wp_ajax_test_images.php:137
|
229 |
+
msgid "File `%s` is not a valid image."
|
230 |
+
msgstr "Archivo `%s` no es una imagen válida."
|
231 |
+
|
232 |
+
#: actions/wp_ajax_test_images.php:148
|
233 |
+
msgid "%d image was successfully downloaded in %s seconds"
|
234 |
+
msgstr "%d imagen fue descargada con éxito en %s segundos "
|
235 |
+
|
236 |
+
#: actions/wp_ajax_test_images.php:152
|
237 |
+
msgid "%d images were successfully downloaded in %s seconds"
|
238 |
+
msgstr "%d imágenes fueron descargadas con éxito en %s segundos"
|
239 |
+
|
240 |
+
#: actions/wp_ajax_upload_resource.php:124
|
241 |
+
msgid "Please verify that the URL returns a valid import file."
|
242 |
+
msgstr ""
|
243 |
+
|
244 |
+
#: actions/wp_loaded.php:38
|
245 |
+
msgid "Cleanup completed."
|
246 |
+
msgstr ""
|
247 |
+
|
248 |
+
#: actions/wp_loaded.php:44
|
249 |
+
msgid "Missing import ID."
|
250 |
+
msgstr ""
|
251 |
+
|
252 |
+
#: actions/wp_loaded.php:72
|
253 |
+
msgid "Other imports are currently in process [%s]."
|
254 |
+
msgstr "Actualmente hay otras importaciones en proceso [%s]."
|
255 |
+
|
256 |
+
#: actions/wp_loaded.php:82
|
257 |
+
msgid "Scheduling update is not working with \"upload\" import type. Import #%s."
|
258 |
+
msgstr "La programación de actualización no esta funcionando con \"subir\" el tipo de importación. Importación #%s."
|
259 |
+
|
260 |
+
#: actions/wp_loaded.php:95 actions/wp_loaded.php:167
|
261 |
+
msgid "Import #%s is currently in manually process. Request skipped."
|
262 |
+
msgstr "Importación #%s actualmente esta en proceso manual. Solicitud omitida."
|
263 |
+
|
264 |
+
#: actions/wp_loaded.php:118 views/admin/history/index.php:170
|
265 |
+
msgid "triggered by cron"
|
266 |
+
msgstr "Activado por cron"
|
267 |
+
|
268 |
+
#: actions/wp_loaded.php:124
|
269 |
+
msgid "#%s Cron job triggered."
|
270 |
+
msgstr "#%s Trabajo cron activado."
|
271 |
+
|
272 |
+
#: actions/wp_loaded.php:131
|
273 |
+
msgid "Import #%s currently in process. Request skipped."
|
274 |
+
msgstr "Impotación #%s actualmente en proceso. Solicitud Omitida."
|
275 |
+
|
276 |
+
#: actions/wp_loaded.php:140
|
277 |
+
msgid "Import #%s already triggered. Request skipped."
|
278 |
+
msgstr "Importación #%s actualmente activada. Solicitud omitida."
|
279 |
+
|
280 |
+
#: actions/wp_loaded.php:160
|
281 |
+
msgid "Import #%s is not triggered. Request skipped."
|
282 |
+
msgstr "Importación #%s no se ha activado. Solicitud omitida."
|
283 |
+
|
284 |
+
#: actions/wp_loaded.php:198 views/admin/history/index.php:167
|
285 |
+
msgid "cron processing"
|
286 |
+
msgstr "Procesamiento de cron"
|
287 |
+
|
288 |
+
#: actions/wp_loaded.php:230 models/import/record.php:633
|
289 |
+
msgid "Import #%s complete"
|
290 |
+
msgstr "Importación #%s completada"
|
291 |
+
|
292 |
+
#: actions/wp_loaded.php:239
|
293 |
+
msgid "Records Processed %s. Records Count %s."
|
294 |
+
msgstr "Registros Procesados %s. Conteo de Registros %s."
|
295 |
+
|
296 |
+
#: actions/wp_loaded.php:251
|
297 |
+
msgid "Import #%s already processing. Request skipped."
|
298 |
+
msgstr "Importación #%s actualmente procesando. Solicitud omitida."
|
299 |
+
|
300 |
+
#: actions/wp_loaded.php:275
|
301 |
+
msgid "Import #%s canceled"
|
302 |
+
msgstr ""
|
303 |
+
|
304 |
+
#: classes/api.php:113 views/admin/import/template/_other_template.php:39
|
305 |
+
#: views/admin/import/template/_other_template.php:88
|
306 |
+
#: views/admin/import/template/_other_template.php:111
|
307 |
+
#: views/admin/import/template/_other_template.php:178
|
308 |
+
#: views/admin/import/template/_other_template.php:208
|
309 |
+
#: views/admin/import/template/_other_template.php:236
|
310 |
+
#: views/admin/import/template/_other_template.php:262
|
311 |
+
msgid "Set with XPath"
|
312 |
+
msgstr "Definido con XPath"
|
313 |
+
|
314 |
+
#: classes/api.php:129
|
315 |
+
#: views/admin/import/template/_custom_fields_template.php:69
|
316 |
+
#: views/admin/import/template/_custom_fields_template.php:278
|
317 |
+
#: views/admin/import/template/_custom_fields_template.php:412
|
318 |
+
#: views/admin/import/template/_term_meta_template.php:69
|
319 |
+
#: views/admin/import/template/_term_meta_template.php:278
|
320 |
+
#: views/admin/import/template/_term_meta_template.php:412
|
321 |
+
msgid "Field Options..."
|
322 |
+
msgstr "Opciones de Campo..."
|
323 |
+
|
324 |
+
#: classes/api.php:132
|
325 |
+
#: views/admin/import/template/_custom_fields_template.php:75
|
326 |
+
#: views/admin/import/template/_custom_fields_template.php:284
|
327 |
+
#: views/admin/import/template/_custom_fields_template.php:418
|
328 |
+
#: views/admin/import/template/_term_meta_template.php:75
|
329 |
+
#: views/admin/import/template/_term_meta_template.php:284
|
330 |
+
#: views/admin/import/template/_term_meta_template.php:418
|
331 |
+
msgid "Mapping"
|
332 |
+
msgstr "Mapeo"
|
333 |
+
|
334 |
+
#: classes/api.php:141
|
335 |
+
#: views/admin/import/template/_custom_fields_template.php:182
|
336 |
+
#: views/admin/import/template/_custom_fields_template.php:350
|
337 |
+
#: views/admin/import/template/_custom_fields_template.php:484
|
338 |
+
#: views/admin/import/template/_taxonomies_template.php:233
|
339 |
+
#: views/admin/import/template/_term_meta_template.php:182
|
340 |
+
#: views/admin/import/template/_term_meta_template.php:350
|
341 |
+
#: views/admin/import/template/_term_meta_template.php:484
|
342 |
+
msgid "In Your File"
|
343 |
+
msgstr "En Su Archivo"
|
344 |
+
|
345 |
+
#: classes/api.php:142
|
346 |
+
#: views/admin/import/template/_custom_fields_template.php:183
|
347 |
+
#: views/admin/import/template/_custom_fields_template.php:351
|
348 |
+
#: views/admin/import/template/_custom_fields_template.php:485
|
349 |
+
#: views/admin/import/template/_taxonomies_template.php:234
|
350 |
+
#: views/admin/import/template/_term_meta_template.php:183
|
351 |
+
#: views/admin/import/template/_term_meta_template.php:351
|
352 |
+
#: views/admin/import/template/_term_meta_template.php:485
|
353 |
+
msgid "Translated To"
|
354 |
+
msgstr "Traducido al "
|
355 |
+
|
356 |
+
#: classes/api.php:221
|
357 |
+
#: views/admin/import/template/_custom_fields_template.php:156
|
358 |
+
#: views/admin/import/template/_custom_fields_template.php:245
|
359 |
+
#: views/admin/import/template/_custom_fields_template.php:324
|
360 |
+
#: views/admin/import/template/_custom_fields_template.php:380
|
361 |
+
#: views/admin/import/template/_custom_fields_template.php:458
|
362 |
+
#: views/admin/import/template/_custom_fields_template.php:514
|
363 |
+
#: views/admin/import/template/_term_meta_template.php:156
|
364 |
+
#: views/admin/import/template/_term_meta_template.php:245
|
365 |
+
#: views/admin/import/template/_term_meta_template.php:324
|
366 |
+
#: views/admin/import/template/_term_meta_template.php:380
|
367 |
+
#: views/admin/import/template/_term_meta_template.php:458
|
368 |
+
#: views/admin/import/template/_term_meta_template.php:514
|
369 |
+
msgid "Add Another"
|
370 |
+
msgstr "Agregar Otro"
|
371 |
+
|
372 |
+
#: classes/api.php:227
|
373 |
+
#: views/admin/import/template/_custom_fields_template.php:251
|
374 |
+
#: views/admin/import/template/_custom_fields_template.php:386
|
375 |
+
#: views/admin/import/template/_custom_fields_template.php:520
|
376 |
+
#: views/admin/import/template/_term_meta_template.php:251
|
377 |
+
#: views/admin/import/template/_term_meta_template.php:386
|
378 |
+
#: views/admin/import/template/_term_meta_template.php:520
|
379 |
+
msgid "Save Rules"
|
380 |
+
msgstr "Guardar Reglas"
|
381 |
+
|
382 |
+
#: classes/api.php:258
|
383 |
+
msgid "Download image hosted elsewhere"
|
384 |
+
msgstr "Descargar imagen alojada en otro lugar"
|
385 |
+
|
386 |
+
#: classes/api.php:259 classes/api.php:279
|
387 |
+
#: views/admin/import/template/_featured_template.php:16
|
388 |
+
#: views/admin/import/template/_featured_template.php:26
|
389 |
+
msgid "http:// or https://"
|
390 |
+
msgstr "http:// o https://"
|
391 |
+
|
392 |
+
#: classes/api.php:264
|
393 |
+
msgid "Use image(s) currently uploaded in %s"
|
394 |
+
msgstr "Utilizar imagen(es) actualmente subidas en %s"
|
395 |
+
|
396 |
+
#: classes/api.php:278
|
397 |
+
msgid "Download file hosted elsewhere"
|
398 |
+
msgstr "Descarga archivo alojado en otros lugares"
|
399 |
+
|
400 |
+
#: classes/api.php:284
|
401 |
+
msgid "Use file(s) currently uploaded in %s"
|
402 |
+
msgstr "Utilizar archivo(s) actualmente subidos en %s"
|
403 |
+
|
404 |
+
#: classes/api.php:398 models/import/record.php:2710
|
405 |
+
msgid "- Searching for existing image `%s` in `%s` folder"
|
406 |
+
msgstr "-Buscando imagen existente `%s` en `%s` carpeta"
|
407 |
+
|
408 |
+
#: classes/api.php:405 classes/api.php:476 models/import/record.php:2717
|
409 |
+
#: models/import/record.php:2801 models/import/record.php:3064
|
410 |
+
msgid "- <b>WARNING</b>: Can't detect attachment file type %s"
|
411 |
+
msgstr "- <b>ADVERTENCIA</b>: No se puede detectar el tipo de archivo adjunto %s"
|
412 |
+
|
413 |
+
#: classes/api.php:410 classes/api.php:481 models/import/record.php:2723
|
414 |
+
#: models/import/record.php:2807
|
415 |
+
msgid "- File `%s` has been successfully found"
|
416 |
+
msgstr "-Archivo `%s` ha sido encontrado exitosamente"
|
417 |
+
|
418 |
+
#: classes/api.php:416 classes/api.php:467 models/import/record.php:2631
|
419 |
+
#: models/import/record.php:2734 models/import/record.php:2760
|
420 |
+
#: models/import/record.php:2794
|
421 |
+
msgid "- <b>WARNING</b>: File %s is not a valid image and cannot be set as featured one"
|
422 |
+
msgstr "- <b>ADERTENCIA</b>: Archivo %s no es una imagen válida y no puede ser puesta como descatada"
|
423 |
+
|
424 |
+
#: classes/api.php:419 models/import/record.php:2730
|
425 |
+
msgid "- Image `%s` has been successfully found"
|
426 |
+
msgstr "- Imagen `%s` ha sido encontrada con éxito"
|
427 |
+
|
428 |
+
#: classes/api.php:429 models/import/record.php:2743
|
429 |
+
msgid "- Downloading image from `%s`"
|
430 |
+
msgstr "- Descargando imagen desde `%s`"
|
431 |
+
|
432 |
+
#: classes/api.php:432
|
433 |
+
msgid "- Downloading file from `%s`"
|
434 |
+
msgstr "- Descargando archivo desde `%s`"
|
435 |
+
|
436 |
+
#: classes/api.php:444 classes/api.php:471 models/import/record.php:2756
|
437 |
+
#: models/import/record.php:2792
|
438 |
+
msgid "- Image `%s` has been successfully downloaded"
|
439 |
+
msgstr "- Imagen `%s` ha sido descargada con éxito"
|
440 |
+
|
441 |
+
#: classes/api.php:450 models/import/record.php:2767
|
442 |
+
msgid "- File `%s` has been successfully downloaded"
|
443 |
+
msgstr "- Archivo `%s` ha sido descargado con éxito"
|
444 |
+
|
445 |
+
#: classes/api.php:461 models/import/record.php:2784
|
446 |
+
msgid "- <b>WARNING</b>: File %s cannot be saved locally as %s"
|
447 |
+
msgstr "- <b>ADVERTENCIA</b>: Archivo %s no puede ser guardado localmente como %s"
|
448 |
+
|
449 |
+
#: classes/api.php:495 models/import/record.php:2845
|
450 |
+
msgid "- Creating an attachment for image `%s`"
|
451 |
+
msgstr "- Creando un archivo adjunto para la imagen `%s`"
|
452 |
+
|
453 |
+
#: classes/api.php:498
|
454 |
+
msgid "- Creating an attachment for file `%s`"
|
455 |
+
msgstr "- Creando un archivo adjunto para el archivo `%s`"
|
456 |
+
|
457 |
+
#: classes/api.php:517 models/import/record.php:2872
|
458 |
+
#: models/import/record.php:3086
|
459 |
+
msgid "- <b>WARNING</b>"
|
460 |
+
msgstr "- <b>ADVERTENCIA</b>"
|
461 |
+
|
462 |
+
#: classes/api.php:521 models/import/record.php:2932
|
463 |
+
msgid "- Attachment has been successfully created for image `%s`"
|
464 |
+
msgstr "- Archivo adjunto ha sido creado con éxito para la imagen `%s`"
|
465 |
+
|
466 |
+
#: classes/render.php:68 classes/render.php:88 classes/render.php:166
|
467 |
+
#: classes/render.php:186
|
468 |
+
msgid "<strong>%s</strong> %s more"
|
469 |
+
msgstr "<strong>%s</strong> %s más"
|
470 |
+
|
471 |
+
#: classes/render.php:68 classes/render.php:88 classes/render.php:166
|
472 |
+
#: classes/render.php:186 views/admin/import/evaluate.php:5
|
473 |
+
#: views/admin/import/evaluate_variations.php:3
|
474 |
+
msgid "element"
|
475 |
+
msgid_plural "elements"
|
476 |
+
msgstr[0] ""
|
477 |
+
msgstr[1] ""
|
478 |
+
|
479 |
+
#: classes/render.php:94 classes/render.php:192
|
480 |
+
msgid "more"
|
481 |
+
msgstr "más"
|
482 |
+
|
483 |
+
#: classes/updater.php:66
|
484 |
+
msgid "View WP All Import Pro Changelog"
|
485 |
+
msgstr ""
|
486 |
+
|
487 |
+
#: classes/updater.php:66
|
488 |
+
msgid "Changelog"
|
489 |
+
msgstr ""
|
490 |
+
|
491 |
+
#: classes/updater.php:261
|
492 |
+
msgid "There is a new version of %1$s available. <a target=\"_blank\" class=\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
|
493 |
+
msgstr "Hay nueva versión de %1$s disponible. <a target=\"_blank\" class=\"thickbox\" href=\"%2$s\">Ver detalles de la versión %3$s </a>."
|
494 |
+
|
495 |
+
#: classes/updater.php:268
|
496 |
+
msgid "There is a new version of %1$s available. <a target=\"_blank\" class=\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s\">update now</a>."
|
497 |
+
msgstr "Hay un nueva versión de %1$s disponible. <a target=\"_blank\" class=\"thickbox\" href=\"%2$s\">Ver detalles de la versión %3$s </a> or <a href=\"%4$s\">actualizar ahora</a>."
|
498 |
+
|
499 |
+
#: classes/updater.php:456
|
500 |
+
msgid "You do not have permission to install plugin updates"
|
501 |
+
msgstr "Usted no tiene permisos para instalar actualizaciones del plugin"
|
502 |
+
|
503 |
+
#: classes/updater.php:456
|
504 |
+
msgid "Error"
|
505 |
+
msgstr "Error"
|
506 |
+
|
507 |
+
#: classes/upload.php:50
|
508 |
+
msgid "Please specify a file to import.<br/><br/>If you are uploading the file from your computer, please wait for it to finish uploading (progress bar at 100%), before trying to continue."
|
509 |
+
msgstr "Por favor especifique un archivo a importar. <br/><br/>Si esta subiendo el archivo desde su computadora, por favor espera a que termine la carga (barra de progreso al 100%), antes de que intente continuar."
|
510 |
+
|
511 |
+
#: classes/upload.php:52
|
512 |
+
msgid "Uploaded file is empty"
|
513 |
+
msgstr "Archivo subido esta vacío"
|
514 |
+
|
515 |
+
#: classes/upload.php:54 controllers/admin/settings.php:466
|
516 |
+
msgid "Uploaded file must be XML, CSV, ZIP, GZIP, GZ, JSON, SQL, TXT, DAT or PSV"
|
517 |
+
msgstr "El archivo cargado tiene que ser XML, CSV, ZIP, GZIP, GZ, JSON, SQL, TXT, DAT o PSV"
|
518 |
+
|
519 |
+
#: classes/upload.php:61 classes/upload.php:149 classes/upload.php:357
|
520 |
+
#: classes/upload.php:428 classes/upload.php:690 classes/upload.php:761
|
521 |
+
msgid "WP All Import couldn't find a file to import inside your ZIP.<br/><br/>Either the .ZIP file is broken, or doesn't contain a file with an extension of XML, CSV, PSV, DAT, or TXT. <br/>Please attempt to unzip your .ZIP file on your computer to ensure it is a valid .ZIP file which can actually be unzipped, and that it contains a file which WP All Import can import."
|
522 |
+
msgstr "WP All Import no pudo encontrar un archivo para importar dentro del ZIP.<br/><br/>Ya sea que el archivo .ZIP esta dañado, o no contiene un archivo con una extensión de XML, CSV, PSV, DAT, o TXT. <br/>Por favor intente descomprimir tu archivo .ZIP en su computadora para asegurarse que es un achivo .ZIP válido que puede ser descomprimido, y que contiene un archivo que el Importador WP puede utilizar."
|
523 |
+
|
524 |
+
#: classes/upload.php:129 classes/upload.php:169 classes/upload.php:408
|
525 |
+
#: classes/upload.php:677 classes/upload.php:741 classes/upload.php:781
|
526 |
+
#: classes/upload.php:808 classes/upload.php:847 classes/upload.php:871
|
527 |
+
#: classes/upload.php:895 classes/upload.php:967
|
528 |
+
msgid "WP All Import can't access your WordPress uploads folder."
|
529 |
+
msgstr "WP All Import no puede acceder a su carpeta de cargas de Wordpress."
|
530 |
+
|
531 |
+
#: classes/upload.php:236 classes/upload.php:500 classes/upload.php:602
|
532 |
+
#: classes/upload.php:834 classes/upload.php:992
|
533 |
+
msgid "Can not import this file. JSON to XML convertation failed."
|
534 |
+
msgstr "No se puede importar este archivo .JSON a XML falló la conversión. "
|
535 |
+
|
536 |
+
#: classes/upload.php:326 classes/upload.php:673
|
537 |
+
msgid "Please specify a file to import."
|
538 |
+
msgstr "Por favor especifique el archivo a importar."
|
539 |
+
|
540 |
+
#: classes/upload.php:328
|
541 |
+
msgid "The URL to your file is not valid.<br/><br/>Please make sure the URL starts with http:// or https://. To import from https://, your server must have OpenSSL installed."
|
542 |
+
msgstr "La URL para su archivo no es válida.<br/><br/>Por favor asegurese que el URL inicie con http:// o https://. Para importar desde https://, tu servidor debe tener OpenSSL instalado."
|
543 |
+
|
544 |
+
#: classes/upload.php:330
|
545 |
+
msgid "Uploads folder "
|
546 |
+
msgstr ""
|
547 |
+
|
548 |
+
#: classes/upload.php:350
|
549 |
+
msgid "Failed upload ZIP archive"
|
550 |
+
msgstr "Falló la carga del archivo ZIP"
|
551 |
+
|
552 |
+
#: classes/upload.php:461 classes/upload.php:565
|
553 |
+
msgid "WP All Import was not able to download your file.<br/><br/>Please make sure the URL to your file is valid.<br/>You can test this by pasting it into your browser.<br/>Other reasons for this error can include some server setting on your host restricting access to this particular URL or external URLs in general, or some setting on the server hosting the file you are trying to access preventing your server from accessing it."
|
554 |
+
msgstr "WP All Import no fue capaz de descargar su archivo.<br/><br/>Asegúrese que la URL para su archivo es válida.<br/>Puede probarlo copiando el URL en su navegador.<br/>Otras razones para este error pueden incluir algunas configuraciones de servidor que restringe acceso a este URL en particular o URLS externos en general, o algunas configuraciones en el servidor que aloja el archivo impiden que el servidor que desea acceder lo pueda ver."
|
555 |
+
|
556 |
+
#: controllers/admin/addons.php:21
|
557 |
+
msgid "WooCommerce Addon"
|
558 |
+
msgstr "Addon de WooCommerce"
|
559 |
+
|
560 |
+
#: controllers/admin/addons.php:22 controllers/admin/addons.php:76
|
561 |
+
msgid "Import Products from any XML or CSV to WooCommerce"
|
562 |
+
msgstr "Importar Productos desde cualquier archivo XML o CSV a WooCommerce"
|
563 |
+
|
564 |
+
#: controllers/admin/addons.php:32
|
565 |
+
msgid "ACF Addon"
|
566 |
+
msgstr "Addon ACF"
|
567 |
+
|
568 |
+
#: controllers/admin/addons.php:33
|
569 |
+
msgid "Import to advanced custom fields"
|
570 |
+
msgstr "Importar a campos personalizados avanzados"
|
571 |
+
|
572 |
+
#: controllers/admin/addons.php:43
|
573 |
+
msgid "WPML Addon"
|
574 |
+
msgstr "Addon WPML"
|
575 |
+
|
576 |
+
#: controllers/admin/addons.php:44
|
577 |
+
msgid "Import to WPML"
|
578 |
+
msgstr "Importar a WPML"
|
579 |
+
|
580 |
+
#: controllers/admin/addons.php:54
|
581 |
+
msgid "User Addon"
|
582 |
+
msgstr "Addon Usuario"
|
583 |
+
|
584 |
+
#: controllers/admin/addons.php:55
|
585 |
+
msgid "Import Users"
|
586 |
+
msgstr "Importar Usuarios"
|
587 |
+
|
588 |
+
#: controllers/admin/addons.php:65
|
589 |
+
msgid "Link cloaking Addon"
|
590 |
+
msgstr "Addon de Link cloaking"
|
591 |
+
|
592 |
+
#: controllers/admin/addons.php:66
|
593 |
+
msgid "Affiliate link cloaking"
|
594 |
+
msgstr "Afilare link cloaking"
|
595 |
+
|
596 |
+
#: controllers/admin/addons.php:75
|
597 |
+
msgid "WooCommerce Addon - free edition"
|
598 |
+
msgstr "Add-on de Woocommerce - Edición gratis"
|
599 |
+
|
600 |
+
#: controllers/admin/addons.php:84
|
601 |
+
msgid "WooCommerce Tabs Addon"
|
602 |
+
msgstr "Add-on de Tabs de WooCommerce"
|
603 |
+
|
604 |
+
#: controllers/admin/addons.php:85
|
605 |
+
msgid "Import data to WooCommerce tabs"
|
606 |
+
msgstr "Importar información a las tabs de WooCommerce"
|
607 |
+
|
608 |
+
#: controllers/admin/history.php:31
|
609 |
+
msgid "Import is not specified."
|
610 |
+
msgstr "La importación no ha sido especificada."
|
611 |
+
|
612 |
+
#: controllers/admin/history.php:57 controllers/admin/manage.php:60
|
613 |
+
msgid "«"
|
614 |
+
msgstr "«"
|
615 |
+
|
616 |
+
#: controllers/admin/history.php:58 controllers/admin/manage.php:61
|
617 |
+
msgid "»"
|
618 |
+
msgstr "»"
|
619 |
+
|
620 |
+
#: controllers/admin/history.php:92
|
621 |
+
msgid "Log file does not exists."
|
622 |
+
msgstr "El archivo de registros no existe."
|
623 |
+
|
624 |
+
#: controllers/admin/history.php:112
|
625 |
+
msgid "History deleted"
|
626 |
+
msgstr "Historial eliminado"
|
627 |
+
|
628 |
+
#: controllers/admin/history.php:139 controllers/admin/manage.php:652
|
629 |
+
msgid "%d %s deleted"
|
630 |
+
msgstr "%d %s eliminado"
|
631 |
+
|
632 |
+
#: controllers/admin/history.php:139
|
633 |
+
msgid "history"
|
634 |
+
msgid_plural "histories"
|
635 |
+
msgstr[0] ""
|
636 |
+
msgstr[1] ""
|
637 |
+
|
638 |
+
#: controllers/admin/import.php:75
|
639 |
+
msgid "WP All Import lost track of where you are.<br/><br/>Maybe you cleared your cookies or maybe it is just a temporary issue on your or your web host's end.<br/>If you can't do an import without seeing this error, change your session settings on the All Import -> Settings page."
|
640 |
+
msgstr "WP All Import perdió la pista donde estabas.<br/><br/>Puede ser que has eliminado los cookies o solamente es un error temporal en su alojador web.<br/>Si no puede realizar una importación sin ver este error, cambie la configuración de sesión del Importador WP en ->página de configuración. "
|
641 |
+
|
642 |
+
#: controllers/admin/import.php:92 controllers/admin/import.php:684
|
643 |
+
msgid "There are no elements to import based on your XPath.<br/><br/>If you are in Step 2, you probably specified filtering options that don’t match any elements present in your file.<br/>If you are seeing this error elsewhere, it means that while the XPath expression for your initial import matched some elements in your file previously, there are now zero elements in the file that match this expression.<br/>You can edit the XPath for your import by going to the Manage Imports -> Import Settings page."
|
644 |
+
msgstr "No hay elementos a importar basados en tu XPath.<br/><br/>Si te encuentras en el Paso 2, probablemente has filtrado opciones que no coinciden con varios elementos presentes en tu archivo.<br/>Si estas viendo este error en algún otro lado, significa que mientras la expresión XPath de tu importación inicial coincidía previamente con algunos de tus archivos, ahora no existen elementos en el archivo que coincidan con esta expresión.<br/>Puedes editar el XPath para tu importación por medio de la sección de Manejar Importaciones -> en la pagina de Configuración de Importación."
|
645 |
+
|
646 |
+
#: controllers/admin/import.php:151
|
647 |
+
msgid "The import associated with this export has been deleted."
|
648 |
+
msgstr "La importación asociada con esta exportación ha sido elminada."
|
649 |
+
|
650 |
+
#: controllers/admin/import.php:151
|
651 |
+
msgid "Please re-run your export by clicking Run Export on the All Export -> Manage Exports page. Then try your import again."
|
652 |
+
msgstr "Por favor reinicie su exportación dando click en Iniciar Exportación en Todas las Exportaciones -> en la pagina de Manejar Exportaciones. Entonces intente nuevamente su importación."
|
653 |
+
|
654 |
+
#: controllers/admin/import.php:156
|
655 |
+
msgid "This import has been deleted."
|
656 |
+
msgstr "Esta importación ha sido eliminada."
|
657 |
+
|
658 |
+
#: controllers/admin/import.php:177
|
659 |
+
msgid "Required PHP components are missing.<br/><br/>WP All Import requires DOMDocument, XMLReader, and XMLWriter PHP modules to be installed.<br/>These are standard features of PHP, and are necessary for WP All Import to read the files you are trying to import.<br/>Please contact your web hosting provider and ask them to install and activate the DOMDocument, XMLReader, and XMLWriter PHP modules."
|
660 |
+
msgstr "Componentes PHP requeridos están faltantes.<br/><br>WP All Import requiere de módulos PHP DOMDocument, XMLReader y XMLWriter para ser instalado.<br/>Estas son características estándar de PHP, son necesarias para que el Importador WP lea estos archivos que estas intentando de importar.<br/>Por favor contacte su proveedor de alojamiento web y consulteles que le instalen y activen los módulos PHP de DOMDocument, XMLReader y XMLWriter."
|
661 |
+
|
662 |
+
#: controllers/admin/import.php:252
|
663 |
+
msgid "Select an item type to import the data"
|
664 |
+
msgstr "Seleccione un tipo de elemento para importar los datos"
|
665 |
+
|
666 |
+
#: controllers/admin/import.php:256
|
667 |
+
msgid "Previous import for update must be selected to proceed with a new one"
|
668 |
+
msgstr "Importación previa para actualizar debe de ser seleccionada para proceder con una nueva"
|
669 |
+
|
670 |
+
#: controllers/admin/import.php:260
|
671 |
+
msgid "Select a taxonomy to import the data"
|
672 |
+
msgstr ""
|
673 |
+
|
674 |
+
#: controllers/admin/import.php:303
|
675 |
+
msgid "File is no longer in the correct format"
|
676 |
+
msgstr "El archivo no se encuentra actualmente en el formato correcto"
|
677 |
+
|
678 |
+
#: controllers/admin/import.php:306 controllers/admin/import.php:349
|
679 |
+
msgid "Certain columns are required to be present in your file to enable it to be re-imported with WP All Import. These columns are missing. Re-export your file using WP All Export, and don't delete any of the columns when editing it. Then, re-import will work correctly."
|
680 |
+
msgstr "Ciertas columnas requieren de estar presentes en su archivo para habilitar la re-importación con WP All Import. Estas columnas están faltantes. Re-exporte su archivo utilizando WP All Export y no elimine ninguna de las columnas mientras lo esta editando. Entonces el re-importe funcionara correctamente."
|
681 |
+
|
682 |
+
#: controllers/admin/import.php:309
|
683 |
+
msgid "The import template you are using requires User Import Add-On.<br/><a href=\"http://www.wpallimport.com/add-ons/user-import/?utm_source=wordpress.org&utm_medium=wpai-import-template&utm_campaign=free+wp+all+export+plugin\" target=\"_blank\">Purchase the User Import Add-On</a>"
|
684 |
+
msgstr "La plantilla de importación que esta utilizando requiere el User Import Add-On.<br/><a href=\"http://www.wpallimport.com/add-ons/user-import/?utm_source=wordpress.org&utm_medium=wpai-import-template&utm_campaign=free+wp+all+export+plugin\" target=\"_blank\">Compre el User Import Add-On</a>"
|
685 |
+
|
686 |
+
#: controllers/admin/import.php:384
|
687 |
+
msgid "Unable to download feed resource."
|
688 |
+
msgstr "No se pudo descargar el recurso de información."
|
689 |
+
|
690 |
+
#: controllers/admin/import.php:461 controllers/admin/import.php:485
|
691 |
+
#: controllers/admin/settings.php:705
|
692 |
+
msgid "Please confirm you are importing a valid feed.<br/> Often, feed providers distribute feeds with invalid data, improperly wrapped HTML, line breaks where they should not be, faulty character encodings, syntax errors in the XML, and other issues.<br/><br/>WP All Import has checks in place to automatically fix some of the most common problems, but we can’t catch every single one.<br/><br/>It is also possible that there is a bug in WP All Import, and the problem is not with the feed.<br/><br/>If you need assistance, please contact support – <a href=\"mailto:support@wpallimport.com\">support@wpallimport.com</a> – with your XML/CSV file. We will identify the problem and release a bug fix if necessary."
|
693 |
+
msgstr "Por favor confirmar si es está importando información válida.<br/> A menudo los proveedores de información distribuye información con dato inválidos, HTML indebidamente envuelto, saltos de línea donde no deben ir, codificaciones de caracteres defectuosos, errores de sintaxis en el archivo XML, y otros detalles.<br/><br/>WP All Import hace revisiones para reparar los problemas mas comunes, pero no se puede encontrar cada uno de ellos.<br/><br/>También es posible que el Importador WP tenga algún bug, y el problema no se encuentre en la información.<br/><br/>Si necesita asistencia, por favor contacte a soporte – <a href=\"mailto:support@wpallimport.com\">support@wpallimport.com</a> – con su archivo XML/CSV . Nosotros vamos a identificar el problema y sacar una reparación si es necesario."
|
694 |
+
|
695 |
+
#: controllers/admin/import.php:480
|
696 |
+
msgid "WP All Import unable to detect file type.<br/><br/>WP All Import not able to determine what type of file you are importing. Make sure your file extension is correct for the file type you are importing.<br/> Please choose the correct file type from the dropdown below, or try adding &type=xml or &type=csv to the end of the URL, for example http://example.com/export-products.php?&type=xml"
|
697 |
+
msgstr "WP All Import no pudo detectar el tipo de archivo.<br/><br/>El Importador WP no fue capaz de determinar que tipo de archivo está importando. Asegúrese que la extensión de su archivo es correcta para el tipo de archivo que esta intentando importar.<br/> Por favor escoja el tipo de archivo correcto desde el menú desplegable de abajo, o intente agregando &type=XML o &type=csv al final del URL, por ejemplo http://example.com/export-products.php?&type=xml"
|
698 |
+
|
699 |
+
#: controllers/admin/import.php:513
|
700 |
+
msgid "No elements selected"
|
701 |
+
msgstr "Ningún elemento seleccionado"
|
702 |
+
|
703 |
+
#: controllers/admin/import.php:518 controllers/admin/import.php:747
|
704 |
+
msgid "Your XPath is not valid.<br/><br/>Click \"get default XPath\" to get the default XPath."
|
705 |
+
msgstr "Su XPath es inválido.<br/><br/>Haga click en \"obtener el XPath por defecto\" para obtener el XPath por defecto."
|
706 |
+
|
707 |
+
#: controllers/admin/import.php:522 controllers/admin/import.php:753
|
708 |
+
msgid "XPath must match only elements"
|
709 |
+
msgstr "El XPath debe de coincidir solo elementos"
|
710 |
+
|
711 |
+
#: controllers/admin/import.php:552
|
712 |
+
msgid "Warning: No matching elements found for XPath expression from the import being updated. It probably means that new XML file has different format. Though you can update XPath, procceed only if you sure about update operation being valid."
|
713 |
+
msgstr "Advertencia: No se encontraron elementos que coincidan para la expresión XPath desde la importación que esta siendo actualizada. Esto probablemente significa que el nuevo archivo XML tiene formato diferente. Sin embargo puede actualizar el XPath, proceda solamente si está seguro que la operación de actualización es válida."
|
714 |
+
|
715 |
+
#: controllers/admin/import.php:594 controllers/admin/import.php:740
|
716 |
+
msgid "Your XPath is empty.<br/><br/>Please enter an XPath expression, or click \"get default XPath\" to get the default XPath."
|
717 |
+
msgstr "Su XPath está vacío.<br/><br/>Por favor ingrese un expresión XPath, o de click en \"obtener XPath por defecto\" para obtener el XPath por defecto."
|
718 |
+
|
719 |
+
#: controllers/admin/import.php:749
|
720 |
+
msgid "No matching variations found for XPath specified"
|
721 |
+
msgstr "No se encontraron variaciones que coincidan para el XPath especificado"
|
722 |
+
|
723 |
+
#: controllers/admin/import.php:990 controllers/admin/import.php:1006
|
724 |
+
#: controllers/admin/import.php:1137
|
725 |
+
msgid "WP All Import lost track of where you are.<br/><br/>Maybe you cleared your cookies or maybe it is just a temporary issue on your web host's end.<br/>If you can't do an import without seeing this error, change your session settings on the All Import -> Settings page."
|
726 |
+
msgstr "WP All Import perdió la pista donde estabas.<br/><br/>Puede ser que has eliminado los cookies o solamente es un error temporal en su alojador web.<br/>Si no puede realizar una importación sin ver este error, cambie la configuración de sesión del Importador WP en ->página de configuración. "
|
727 |
+
|
728 |
+
#: controllers/admin/import.php:992
|
729 |
+
msgid "<strong>Warning</strong>: your title is blank."
|
730 |
+
msgstr "<strong>Advertencia:</strong> su título está en blanco."
|
731 |
+
|
732 |
+
#: controllers/admin/import.php:997
|
733 |
+
msgid "<strong>Warning</strong>: resulting post title is empty"
|
734 |
+
msgstr "<strong>Advertencia</strong>: El titulo del post resultante esta vacío"
|
735 |
+
|
736 |
+
#: controllers/admin/import.php:1002
|
737 |
+
msgid "Error parsing title: %s"
|
738 |
+
msgstr "Error analizando el título: %s"
|
739 |
+
|
740 |
+
#: controllers/admin/import.php:1008
|
741 |
+
msgid "<strong>Warning</strong>: your content is blank."
|
742 |
+
msgstr "<strong>Advertencia:</strong> su contenido esta en blanco."
|
743 |
+
|
744 |
+
#: controllers/admin/import.php:1013
|
745 |
+
msgid "<strong>Warning</strong>: resulting post content is empty"
|
746 |
+
msgstr "<strong>Advertencia</strong>: El titulo del post resultante esta vacío"
|
747 |
+
|
748 |
+
#: controllers/admin/import.php:1018
|
749 |
+
msgid "Error parsing content: %s"
|
750 |
+
msgstr "Error analizando contenido: %s"
|
751 |
+
|
752 |
+
#: controllers/admin/import.php:1157 controllers/admin/import.php:1313
|
753 |
+
#: controllers/admin/import.php:1446
|
754 |
+
msgid "Error parsing: %s"
|
755 |
+
msgstr "Error analizando: %s"
|
756 |
+
|
757 |
+
#: controllers/admin/import.php:1269 controllers/admin/import.php:1425
|
758 |
+
msgid "Error parsing: String could not be parsed as XML"
|
759 |
+
msgstr "Error analizando: La cadena no puede ser analizada como XML"
|
760 |
+
|
761 |
+
#: controllers/admin/import.php:1310 controllers/admin/import.php:1443
|
762 |
+
msgid "There is no data to preview"
|
763 |
+
msgstr "No existen datos para mostrar previamente"
|
764 |
+
|
765 |
+
#: controllers/admin/import.php:1506
|
766 |
+
msgid "You've reached your max_input_vars limit of %d. Please increase this."
|
767 |
+
msgstr ""
|
768 |
+
|
769 |
+
#: controllers/admin/import.php:1563 views/admin/import/template.php:71
|
770 |
+
msgid "Excerpt"
|
771 |
+
msgstr "Extracto"
|
772 |
+
|
773 |
+
#: controllers/admin/import.php:1567 controllers/admin/import.php:1571
|
774 |
+
#: models/import/record.php:1340
|
775 |
+
#: views/admin/import/options/_reimport_options.php:143
|
776 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:106
|
777 |
+
#: views/admin/import/template.php:116
|
778 |
+
msgid "Images"
|
779 |
+
msgstr "Imagenes"
|
780 |
+
|
781 |
+
#: controllers/admin/import.php:1577
|
782 |
+
msgid "Images meta "
|
783 |
+
msgstr ""
|
784 |
+
|
785 |
+
#: controllers/admin/import.php:1592
|
786 |
+
msgid "Custom Field Name"
|
787 |
+
msgstr "Campo Personalizado de Nombre"
|
788 |
+
|
789 |
+
#: controllers/admin/import.php:1596
|
790 |
+
msgid "Custom Field Value"
|
791 |
+
msgstr "Campo Personalizado de Valor"
|
792 |
+
|
793 |
+
#: controllers/admin/import.php:1609
|
794 |
+
msgid "Both name and value must be set for all woocommerce attributes"
|
795 |
+
msgstr "Tanto nombre y valor se deben establecer para todos los atributos de woocommerce"
|
796 |
+
|
797 |
+
#: controllers/admin/import.php:1612
|
798 |
+
msgid "Attribute Field Name"
|
799 |
+
msgstr "Campo de Nombre de Atributo"
|
800 |
+
|
801 |
+
#: controllers/admin/import.php:1615
|
802 |
+
msgid "Attribute Field Value"
|
803 |
+
msgstr "Campo de Atributo de Valor"
|
804 |
+
|
805 |
+
#: controllers/admin/import.php:1626
|
806 |
+
msgid "Tags"
|
807 |
+
msgstr "Etiquetas"
|
808 |
+
|
809 |
+
#: controllers/admin/import.php:1629 views/admin/history/index.php:33
|
810 |
+
msgid "Date"
|
811 |
+
msgstr "Fecha"
|
812 |
+
|
813 |
+
#: controllers/admin/import.php:1631 controllers/admin/import.php:1632
|
814 |
+
msgid "Start Date"
|
815 |
+
msgstr "Fecha de Inicio"
|
816 |
+
|
817 |
+
#: controllers/admin/import.php:1666
|
818 |
+
msgid "Template updated"
|
819 |
+
msgstr "Plantilla Actualizada"
|
820 |
+
|
821 |
+
#: controllers/admin/import.php:1766
|
822 |
+
msgid "%s template is invalid: %s"
|
823 |
+
msgstr "%s plantilla es inválida: %s"
|
824 |
+
|
825 |
+
#: controllers/admin/import.php:1878
|
826 |
+
msgid "Records to import must be specified or uncheck `Import only specified records` option to process all records"
|
827 |
+
msgstr "Los registros a importar deben de ser especificados o desmarcar la opción `Importar registros específicos solamente` para proceder con todos los registros"
|
828 |
+
|
829 |
+
#: controllers/admin/import.php:1883
|
830 |
+
msgid "Wrong format of `Import only specified records` value"
|
831 |
+
msgstr "Formato incorrecto de valor `Importar registros específicos solamente`"
|
832 |
+
|
833 |
+
#: controllers/admin/import.php:1886
|
834 |
+
msgid "One of the numbers in `Import only specified records` value exceeds record quantity in XML file"
|
835 |
+
msgstr "Un de los números en el valor de `Importar registros específicos solamente` excede la cantidad de registros en el archivo XML"
|
836 |
+
|
837 |
+
#: controllers/admin/import.php:1893
|
838 |
+
msgid "Expression for `Post Unique Key` must be set, use the same expression as specified for post title if you are not sure what to put there"
|
839 |
+
msgstr "La expresión para `Publicar Clave Unica` debe de ser establecida, utilice la misma expresión como se especifica el titulo de la publicación si no esta seguro de que puede poner "
|
840 |
+
|
841 |
+
#: controllers/admin/import.php:1895
|
842 |
+
msgid "Post Unique Key"
|
843 |
+
msgstr "Publicar Clave Unica"
|
844 |
+
|
845 |
+
#: controllers/admin/import.php:1899
|
846 |
+
msgid "Custom field name must be specified."
|
847 |
+
msgstr "Campo de nombre personalizado debe ser especificado."
|
848 |
+
|
849 |
+
#: controllers/admin/import.php:1901
|
850 |
+
msgid "Custom field value must be specified."
|
851 |
+
msgstr "Campo de valor personalizado debe de ser especificado"
|
852 |
+
|
853 |
+
#: controllers/admin/import.php:1905
|
854 |
+
msgid "Post ID must be specified."
|
855 |
+
msgstr ""
|
856 |
+
|
857 |
+
#: controllers/admin/import.php:1909
|
858 |
+
msgid "Term name must be specified."
|
859 |
+
msgstr ""
|
860 |
+
|
861 |
+
#: controllers/admin/import.php:1912
|
862 |
+
msgid "Term slug must be specified."
|
863 |
+
msgstr ""
|
864 |
+
|
865 |
+
#: controllers/admin/import.php:1991
|
866 |
+
msgid "WP All Import doesn't support this import type."
|
867 |
+
msgstr "WP All Import no admite este tipo de importación. "
|
868 |
+
|
869 |
+
#: controllers/admin/import.php:2039
|
870 |
+
msgid "<strong>Warning:</strong> this file does not have the same structure as the last file associated with this import. WP All Import won't be able to import this file with your current settings. Probably you'll need to adjust your XPath in the \"Configure Advanced Settings\" box below, and reconfigure your import by clicking \"Edit\" on the Manage Imports page."
|
871 |
+
msgstr "<strong>ADVERTENCIA:</strong> este archivo no tiene la misma estructura que el último archivo asociado a esta importación. WP All Import no podrá importar este archivo con la configuración actual. Probablemente usted necesitará ajustar su XPath en el cuadro \"Configurar avanzada de configuración\" abajo y reconfigurar su importación haciendo clic en \"Editar\" en la página administrar las importaciones."
|
872 |
+
|
873 |
+
#: controllers/admin/import.php:2084
|
874 |
+
msgid "Root element not found for uploaded feed."
|
875 |
+
msgstr "Elemento raíz no encontrado para cargar información."
|
876 |
+
|
877 |
+
#: controllers/admin/import.php:2136
|
878 |
+
msgid "Import updated"
|
879 |
+
msgstr "Importación actualizada"
|
880 |
+
|
881 |
+
#: controllers/admin/import.php:2136
|
882 |
+
msgid "Import created"
|
883 |
+
msgstr "Importación creada"
|
884 |
+
|
885 |
+
#: controllers/admin/import.php:2238
|
886 |
+
msgid "Configuration updated"
|
887 |
+
msgstr "Configuración actualizada"
|
888 |
+
|
889 |
+
#: controllers/admin/import.php:2417 controllers/admin/import.php:2737
|
890 |
+
#: controllers/admin/import.php:2876
|
891 |
+
#: views/admin/import/options/_reimport_taxonomies_options.php:7
|
892 |
+
#: views/admin/import/options/_reimport_taxonomies_template.php:6
|
893 |
+
#: views/admin/import/template/_custom_fields_template.php:6
|
894 |
+
#: views/admin/import/template/_term_meta_template.php:6
|
895 |
+
#: views/admin/import/template/_term_other_template.php:6
|
896 |
+
#: views/admin/manage/delete.php:45 views/admin/manage/index.php:284
|
897 |
+
msgid "Taxonomy Terms"
|
898 |
+
msgstr ""
|
899 |
+
|
900 |
+
#: controllers/admin/import.php:2443 controllers/admin/import.php:2745
|
901 |
+
#: controllers/admin/import.php:2883 models/import/record.php:650
|
902 |
+
msgid "%d %s created %d updated %d deleted %d skipped"
|
903 |
+
msgstr "%d %s creada %d actualizada %d eliminada %d omitida"
|
904 |
+
|
905 |
+
#: controllers/admin/import.php:2890
|
906 |
+
msgid "Canceled"
|
907 |
+
msgstr "Cancelada"
|
908 |
+
|
909 |
+
#: controllers/admin/import.php:2890
|
910 |
+
msgid "Complete"
|
911 |
+
msgstr "Completada"
|
912 |
+
|
913 |
+
#: controllers/admin/license.php:43
|
914 |
+
msgid "Licenses saved"
|
915 |
+
msgstr "Licencias guardadas"
|
916 |
+
|
917 |
+
#: controllers/admin/manage.php:257
|
918 |
+
msgid "The other two files in this zip are the export file containing all of your data and the import template for WP All Import. \n"
|
919 |
+
"\n"
|
920 |
+
"To import this data, create a new import with WP All Import and upload this zip file."
|
921 |
+
msgstr ""
|
922 |
+
|
923 |
+
#: controllers/admin/manage.php:312 views/admin/manage/index.php:272
|
924 |
+
msgid "Import canceled"
|
925 |
+
msgstr "Importación cancelada"
|
926 |
+
|
927 |
+
#: controllers/admin/manage.php:377
|
928 |
+
msgid "This import appears to be using FTP. Unfortunately WP All Import no longer supports the FTP protocol. Please contact <a href=\"mailto:support@wpallimport.com\">support@wpallimport.com</a> if you have any questions."
|
929 |
+
msgstr "Esta importación parece estar utilizando FTP. Desafortunadamente el WP All Import no admite el protocolo FTP. Por favor contacte <a href=\"mailto:support@wpallimport.com\">support@wpallimport.com</a> si usted tiene alguna consulta."
|
930 |
+
|
931 |
+
#: controllers/admin/manage.php:477
|
932 |
+
msgid "No matching elements found for Root element and XPath expression specified"
|
933 |
+
msgstr "No se encontraron elementos que coincidan para el elemento de raíz y la expresión XPath especificada"
|
934 |
+
|
935 |
+
#: controllers/admin/manage.php:573
|
936 |
+
msgid "File does not exists."
|
937 |
+
msgstr "El archivo no existe."
|
938 |
+
|
939 |
+
#: controllers/admin/manage.php:652 views/admin/manage/bulk.php:10
|
940 |
+
msgid "import"
|
941 |
+
msgid_plural "imports"
|
942 |
+
msgstr[0] ""
|
943 |
+
msgstr[1] ""
|
944 |
+
|
945 |
+
#: controllers/admin/settings.php:60
|
946 |
+
msgid "History File Count must be a non-negative integer"
|
947 |
+
msgstr "El historial de conteo de archivos debe ser un entero no negativo"
|
948 |
+
|
949 |
+
#: controllers/admin/settings.php:63
|
950 |
+
msgid "History Age must be a non-negative integer"
|
951 |
+
msgstr "El historial de tiempo debe ser un entero no negativo"
|
952 |
+
|
953 |
+
#: controllers/admin/settings.php:83
|
954 |
+
msgid "Settings saved"
|
955 |
+
msgstr "Configuraciones guardadas"
|
956 |
+
|
957 |
+
#: controllers/admin/settings.php:114
|
958 |
+
msgid "Unknown File extension. Only txt files are permitted"
|
959 |
+
msgstr "Extensión de arhivo desconocida. Solo arhivos txt son permitidos"
|
960 |
+
|
961 |
+
#: controllers/admin/settings.php:127
|
962 |
+
msgid "%d template imported"
|
963 |
+
msgid_plural "%d templates imported"
|
964 |
+
msgstr[0] ""
|
965 |
+
msgstr[1] ""
|
966 |
+
|
967 |
+
#: controllers/admin/settings.php:129
|
968 |
+
msgid "Wrong imported data format"
|
969 |
+
msgstr "Formato de datos importados incorrecto"
|
970 |
+
|
971 |
+
#: controllers/admin/settings.php:131
|
972 |
+
msgid "File is empty or doesn't exests"
|
973 |
+
msgstr "El archivo esta vacío o no existe"
|
974 |
+
|
975 |
+
#: controllers/admin/settings.php:134
|
976 |
+
msgid "Undefined entry!"
|
977 |
+
msgstr "Entrada indefinida!"
|
978 |
+
|
979 |
+
#: controllers/admin/settings.php:136
|
980 |
+
msgid "Please select file."
|
981 |
+
msgstr "Por favor seleccione el archivo."
|
982 |
+
|
983 |
+
#: controllers/admin/settings.php:142
|
984 |
+
msgid "Templates must be selected"
|
985 |
+
msgstr "Plantillas debe de ser seleccionada"
|
986 |
+
|
987 |
+
#: controllers/admin/settings.php:151
|
988 |
+
msgid "%d template deleted"
|
989 |
+
msgid_plural "%d templates deleted"
|
990 |
+
msgstr[0] ""
|
991 |
+
msgstr[1] ""
|
992 |
+
|
993 |
+
#: controllers/admin/settings.php:279
|
994 |
+
msgid "Files not found"
|
995 |
+
msgstr "Archivos no encontrados"
|
996 |
+
|
997 |
+
#: controllers/admin/settings.php:287
|
998 |
+
msgid "Clean Up has been successfully completed."
|
999 |
+
msgstr "La limpieza ha sido completada satisfactoriamente."
|
1000 |
+
|
1001 |
+
#: controllers/admin/settings.php:445
|
1002 |
+
msgid "Uploads folder is not writable."
|
1003 |
+
msgstr "La carpeta de cargas no es modificable."
|
1004 |
+
|
1005 |
+
#: controllers/admin/settings.php:502
|
1006 |
+
msgid "Failed to open temp directory."
|
1007 |
+
msgstr "No se pudo abrir el directorio temporal."
|
1008 |
+
|
1009 |
+
#: controllers/admin/settings.php:527 controllers/admin/settings.php:552
|
1010 |
+
msgid "Failed to open input stream."
|
1011 |
+
msgstr "No se pudo abrir el flujo de entrada"
|
1012 |
+
|
1013 |
+
#: controllers/admin/settings.php:534 controllers/admin/settings.php:559
|
1014 |
+
msgid "Failed to open output stream."
|
1015 |
+
msgstr "No se pudo abrir el flujo de salida."
|
1016 |
+
|
1017 |
+
#: controllers/admin/settings.php:538
|
1018 |
+
msgid "Failed to move uploaded file."
|
1019 |
+
msgstr "No se pudo mover el archivo cargado."
|
1020 |
+
|
1021 |
+
#: controllers/admin/settings.php:713
|
1022 |
+
#: views/admin/import/options/_import_file.php:51
|
1023 |
+
msgid "This %s file has errors and is not valid."
|
1024 |
+
msgstr ""
|
1025 |
+
|
1026 |
+
#: filters/pmxi_custom_types.php:8
|
1027 |
+
msgid "WooCommerce Products"
|
1028 |
+
msgstr ""
|
1029 |
+
|
1030 |
+
#: filters/pmxi_custom_types.php:9
|
1031 |
+
msgid "WooCommerce Orders"
|
1032 |
+
msgstr ""
|
1033 |
+
|
1034 |
+
#: filters/pmxi_custom_types.php:10
|
1035 |
+
msgid "WooCommerce Coupons"
|
1036 |
+
msgstr ""
|
1037 |
+
|
1038 |
+
#: helpers/import_custom_meta_box.php:25
|
1039 |
+
msgid "Custom fields can be used to add extra metadata to a post that you can <a href=\"http://codex.wordpress.org/Using_Custom_Fields\" target=\"_blank\">use in your theme</a>."
|
1040 |
+
msgstr "Campos personalizados pueden ser utilizados para agregar datos extras a una entrada que puedes <a href=\"http://codex.wordpress.org/Using_Custom_Fields\" target=\"_blank\">utilizar en tu tema</a>."
|
1041 |
+
|
1042 |
+
#: helpers/reverse_taxonomies_html.php:18
|
1043 |
+
#: views/admin/import/template/_taxonomies_template.php:41
|
1044 |
+
#: views/admin/import/template/_taxonomies_template.php:63
|
1045 |
+
#: views/admin/import/template/_taxonomies_template.php:97
|
1046 |
+
#: views/admin/import/template/_taxonomies_template.php:107
|
1047 |
+
#: views/admin/import/template/_taxonomies_template.php:116
|
1048 |
+
#: views/admin/import/template/_taxonomies_template.php:164
|
1049 |
+
#: views/admin/import/template/_taxonomies_template.php:182
|
1050 |
+
#: views/admin/import/template/_taxonomies_template.php:189
|
1051 |
+
#: views/admin/import/template/_taxonomies_template.php:201
|
1052 |
+
msgid "Assign post to the taxonomy."
|
1053 |
+
msgstr "Asignar un entrada a la taxonomía."
|
1054 |
+
|
1055 |
+
#: helpers/wp_all_import_addon_notifications.php:108
|
1056 |
+
msgid "Make imports easier with the <strong>Advanced Custom Fields Add-On</strong> for WP All Import: <a href=\"%s\" target=\"_blank\">Read More</a>"
|
1057 |
+
msgstr "Realice importaciones mas sencillas con el <strong>Advanced Custom Fields Add-On</strong> para WP All Import: <a href=\"%s\" target=\"_blank\">Read More</a>"
|
1058 |
+
|
1059 |
+
#: helpers/wp_all_import_addon_notifications.php:124
|
1060 |
+
msgid "WP All Export"
|
1061 |
+
msgstr ""
|
1062 |
+
|
1063 |
+
#: helpers/wp_all_import_addon_notifications.php:125
|
1064 |
+
msgid "Export anything in WordPress to CSV, XML, or Excel."
|
1065 |
+
msgstr ""
|
1066 |
+
|
1067 |
+
#: helpers/wp_all_import_addon_notifications.php:128
|
1068 |
+
#: views/admin/import/confirm.php:53 views/admin/import/index.php:356
|
1069 |
+
#: views/admin/import/index.php:373 views/admin/import/options.php:70
|
1070 |
+
#: views/admin/import/options/_import_file.php:40
|
1071 |
+
#: views/admin/import/options/_import_file.php:57
|
1072 |
+
#: views/admin/import/process.php:86 views/admin/import/process.php:120
|
1073 |
+
msgid "Read More"
|
1074 |
+
msgstr ""
|
1075 |
+
|
1076 |
+
#: helpers/wp_all_import_addon_notifications.php:141
|
1077 |
+
msgid "Make imports easier with the <strong>free %s Add-On</strong> for WP All Import: <a href=\"%s\" target=\"_blank\">Get Add-On</a>"
|
1078 |
+
msgstr "Realice importaciones mas facilmente con el <strong>Add-On %s gratuito</strong> para WP All Import: <a href=\"%s\" target=\"_blank\">Obtener el Add-On</a>"
|
1079 |
+
|
1080 |
+
#: helpers/wp_all_import_is_json.php:13
|
1081 |
+
msgid "Maximum stack depth exceeded"
|
1082 |
+
msgstr "Superó el máximo de profundidad de pila"
|
1083 |
+
|
1084 |
+
#: helpers/wp_all_import_is_json.php:16
|
1085 |
+
msgid "Underflow or the modes mismatch"
|
1086 |
+
msgstr "Las funciones no coinciden"
|
1087 |
+
|
1088 |
+
#: helpers/wp_all_import_is_json.php:19
|
1089 |
+
msgid "Unexpected control character found"
|
1090 |
+
msgstr "Se encontró un carácter de control inesperado"
|
1091 |
+
|
1092 |
+
#: helpers/wp_all_import_is_json.php:22
|
1093 |
+
msgid "Syntax error, malformed JSON"
|
1094 |
+
msgstr "Error de sintaxis, JSON malformado"
|
1095 |
+
|
1096 |
+
#: helpers/wp_all_import_is_json.php:25
|
1097 |
+
msgid "Malformed UTF-8 characters, possibly incorrectly encoded"
|
1098 |
+
msgstr "Caracteres UTF-8 malformados, posiblemente codificado incorrectamente"
|
1099 |
+
|
1100 |
+
#: helpers/wp_all_import_is_json.php:28
|
1101 |
+
msgid "Unknown json error"
|
1102 |
+
msgstr "Error json desconocido"
|
1103 |
+
|
1104 |
+
#: helpers/wp_all_import_template_notifications.php:14
|
1105 |
+
msgid "The import template you are using requires the %s. If you continue without it your data may import incorrectly.<br/><br/><a href=\"%s\" target=\"_blank\">"
|
1106 |
+
msgstr ""
|
1107 |
+
|
1108 |
+
#: helpers/wp_all_import_template_notifications.php:23
|
1109 |
+
msgid "The import template you are using requires the User Import Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href=\"http://www.wpallimport.com/add-ons/user-import/?utm_source=wordpress.org&utm_medium=wpai-import-template&utm_campaign=free+wp+all+export+plugin\" target=\"_blank\">Purchase the User Import Add-On</a>."
|
1110 |
+
msgstr "La plantilla de importación que esta utilizando requiere el User Import Add-On. Si continua sin el, su información puede importarse incorrectamente.<br/><br/><a href=\"http://www.wpallimport.com/add-ons/user-import/?utm_source=wordpress.org&utm_medium=wpai-import-template&utm_campaign=free+wp+all+export+plugin\" target=\"_blank\">Comprar el User Import Add-On</a>."
|
1111 |
+
|
1112 |
+
#: helpers/wp_all_import_template_notifications.php:27
|
1113 |
+
msgid "The import template you are using requires the WooCommerce Import Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href=\"http://www.wpallimport.com/woocommerce-product-import/\" target=\"_blank\">Purchase the WooCommerce Import Add-On</a>."
|
1114 |
+
msgstr "La plantilla de importación que esta utilizando requiere el WooCommerce Import Add-On. Si continua sin el, su información puede importarse incorrectamente.<br/><br/><a href=\"http://www.wpallimport.com/woocommerce-product-import/\" target=\"_blank\">Comprar el WooCommerce Import Add-On</a>."
|
1115 |
+
|
1116 |
+
#: helpers/wp_all_import_template_notifications.php:32
|
1117 |
+
msgid "The import template you are using requires the Realia Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress.org/plugins/realia-xml-csv-property-listings-import/\" target=\"_blank\">Download the Realia Add-On</a>."
|
1118 |
+
msgstr "La plantilla de importación que esta utilizando requiere el Realia Add-On. Si continua sin el, su información puede importarse incorrectamente.<br/><br/><a href=\"https://wordpress.org/plugins/realia-xml-csv-property-listings-import/\" target=\"_blank\">Descargar el Realia Add-On</a>."
|
1119 |
+
|
1120 |
+
#: helpers/wp_all_import_template_notifications.php:39
|
1121 |
+
msgid "The import template you are using requires the WP Residence Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress.org/plugins/wp-residence-add-on-for-wp-all-import/\" target=\"_blank\">Download the WP Residence Add-On</a>."
|
1122 |
+
msgstr "La plantilla de importación que esta utilizando requiere el WP Residence Add-On. Si continua sin el, su información puede importarse incorrectamente.<br/><br/><a href=\"https://wordpress.org/plugins/wp-residence-add-on-for-wp-all-import/\" target=\"_blank\">Descargar el WP Residence Add-On</a>."
|
1123 |
+
|
1124 |
+
#: helpers/wp_all_import_template_notifications.php:46
|
1125 |
+
msgid "The import template you are using requires the RealHomes Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress.org/plugins/realhomes-xml-csv-property-listings-import/\" target=\"_blank\">Download the RealHomes Add-On</a>."
|
1126 |
+
msgstr "La plantilla de importación que esta utilizando requiere el RealHomes Add-On. Si continua sin el, su información puede importarse incorrectamente.<br/><br/><a href=\"https://wordpress.org/plugins/realhomes-xml-csv-property-listings-import/\" target=\"_blank\">Descargar el RealHomes Add-On</a>."
|
1127 |
+
|
1128 |
+
#: helpers/wp_all_import_template_notifications.php:52
|
1129 |
+
msgid "The import template you are using requires the Jobify Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress.org/plugins/jobify-xml-csv-listings-import/\" target=\"_blank\">Download the Jobify Add-On</a>."
|
1130 |
+
msgstr "La plantilla de importación que esta utilizando requiere el Jobify Add-On. Si continua sin el, su información puede importarse incorrectamente.<br/><br/><a href=\"https://wordpress.org/plugins/jobify-xml-csv-listings-import/\" target=\"_blank\">Descargar el Jobify Add-On</a>."
|
1131 |
+
|
1132 |
+
#: helpers/wp_all_import_template_notifications.php:58
|
1133 |
+
msgid "The import template you are using requires the Listify Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress.org/plugins/listify-xml-csv-listings-import/\" target=\"_blank\">Download the Listify Add-On</a>."
|
1134 |
+
msgstr "La plantilla de importación que esta utilizando requiere el Listify Add-On. Si continua sin el, su información puede importarse incorrectamente.<br/><br/><a href=\"https://wordpress.org/plugins/listify-xml-csv-listings-import/\" target=\"_blank\">Descargar el Listify Add-On</a>."
|
1135 |
+
|
1136 |
+
#: helpers/wp_all_import_template_notifications.php:64
|
1137 |
+
msgid "The import template you are using requires the Reales WP Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress.org/plugins/reales-wp-xml-csv-property-listings-import/\" target=\"_blank\">Download the Reales WP Add-On</a>."
|
1138 |
+
msgstr "La plantilla de importación que esta utilizando requiere el Reales WP Add-On. Si continua sin el, su información puede importarse incorrectamente.<br/><br/><a href=\"https://wordpress.org/plugins/reales-wp-xml-csv-property-listings-import/\" target=\"_blank\">Descargar el Reales WP Add-On</a>."
|
1139 |
+
|
1140 |
+
#: helpers/wp_all_import_template_notifications.php:74
|
1141 |
+
msgid "The import template you are using requires the WP Job Manager Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress.org/plugins/wp-job-manager-xml-csv-listings-import/\" target=\"_blank\">Download the WP Job Manager Add-On</a>."
|
1142 |
+
msgstr "La plantilla de importación que esta utilizando requiere el WP Job Manager Add-On. Si continua sin el, su información puede importarse incorrectamente.<br/><br/><a href=\"https://wordpress.org/plugins/wp-job-manager-xml-csv-listings-import/\" target=\"_blank\">Descargar el WP Job Manager Add-On</a>."
|
1143 |
+
|
1144 |
+
#: helpers/wp_all_import_template_notifications.php:80
|
1145 |
+
msgid "The import template you are using requires the Yoast SEO Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress.org/plugins/yoast-seo-settings-xml-csv-import/\" target=\"_blank\">Download the Yoast SEO Add-On</a>."
|
1146 |
+
msgstr "La plantilla de importación que esta utilizando requiere el Yoast SEO Add-On. Si continua sin el, su información puede importarse incorrectamente.<br/><br/><a href=\"https://wordpress.org/plugins/yoast-seo-settings-xml-csv-import/\" target=\"_blank\">Descargar el Yoast SEO Add-On</a>."
|
1147 |
+
|
1148 |
+
#: helpers/wp_all_import_template_notifications.php:86
|
1149 |
+
msgid "The import template you are using requires the Listable Add-On. If you continue without it your data may import incorrectly.<br/><br/><a href=\"https://wordpress.org/plugins/import-xml-csv-listings-to-listable-theme/\" target=\"_blank\">Download the Listable Add-On</a>."
|
1150 |
+
msgstr ""
|
1151 |
+
|
1152 |
+
#: helpers/wp_all_import_template_notifications.php:91
|
1153 |
+
msgid "The import template you are using requires an Add-On for WP All Import. If you continue without using this Add-On your data may import incorrectly."
|
1154 |
+
msgstr "La plantilla de importación que esta utilizando requiere un Add-On para WP All Import. Si usted continua sin este Add-On su información podrá importarse incorrectamente."
|
1155 |
+
|
1156 |
+
#: helpers/wp_all_import_template_notifications.php:103
|
1157 |
+
msgid "<strong>Warning:</strong>"
|
1158 |
+
msgstr "<strong>Advertencia:</strong>"
|
1159 |
+
|
1160 |
+
#: models/import/record.php:44
|
1161 |
+
msgid "WP All Import can't read your file.<br/><br/>Probably, you are trying to import an invalid XML feed. Try opening the XML feed in a web browser (Google Chrome is recommended for opening XML files) to see if there is an error message.<br/>Alternatively, run the feed through a validator: http://validator.w3.org/<br/>99% of the time, the reason for this error is because your XML feed isn't valid.<br/>If you are 100% sure you are importing a valid XML feed, please contact WP All Import support."
|
1162 |
+
msgstr "WP All Import no puede leer su archivo.<br/><br/>Probablemente, esta intentando importar información XML inválida. Intente abrir la inforamación XML feed en un navegador (Google Chrome es recomendado para abrir archivos XML) para ver si encuentra algún mensaje de error.<br/>Alternativamente, ejecute la información mediante un validador: http://validator.w3.org/<br/>99% del tiempo la razon para este error es por que la información XML no es válida.<br/>Si usted esta 100% seguro que está importando información XML válida, por favor contacte a soporte de WP All Import."
|
1163 |
+
|
1164 |
+
#: models/import/record.php:56
|
1165 |
+
msgid "Invalid XML"
|
1166 |
+
msgstr "XML inválido"
|
1167 |
+
|
1168 |
+
#: models/import/record.php:59
|
1169 |
+
msgid "Line"
|
1170 |
+
msgstr "Linea"
|
1171 |
+
|
1172 |
+
#: models/import/record.php:60
|
1173 |
+
msgid "Column"
|
1174 |
+
msgstr "Columna"
|
1175 |
+
|
1176 |
+
#: models/import/record.php:61
|
1177 |
+
msgid "Code"
|
1178 |
+
msgstr "Código"
|
1179 |
+
|
1180 |
+
#: models/import/record.php:72
|
1181 |
+
msgid "Required PHP components are missing."
|
1182 |
+
msgstr "Componentes PHP requeridos están faltantes."
|
1183 |
+
|
1184 |
+
#: models/import/record.php:73
|
1185 |
+
msgid "WP All Import requires the SimpleXML PHP module to be installed. This is a standard feature of PHP, and is necessary for WP All Import to read the files you are trying to import.<br/>Please contact your web hosting provider and ask them to install and activate the SimpleXML PHP module."
|
1186 |
+
msgstr "WP All Import requiere de módulos SimpeXML PHP para ser instalado. Esta es una característica estándar de PHP y es necesario para que el Importador WP pueda leer los archivos que esta intentando importar. <br/>Por favor contacte a su proveedor de alojamiento web and y pidales que le instale y active el modulo SimpleXML PHP."
|
1187 |
+
|
1188 |
+
#: models/import/record.php:117
|
1189 |
+
msgid "This import appears to be using FTP. Unfortunately WP All Import no longer supports the FTP protocol. Please contact <a href=\"mailto:support@wpallimport.com\">%s</a> if you have any questions."
|
1190 |
+
msgstr "Esta importación parece estar utilizando FTP. Desafortunadamente el WP All Import no admite el protocolo FTP. Por favor contacte <a href=\"mailto:support@wpallimport.com\">%s</a> si usted tiene alguna consulta."
|
1191 |
+
|
1192 |
+
#: models/import/record.php:267
|
1193 |
+
msgid "#%s No matching elements found for Root element and XPath expression specified"
|
1194 |
+
msgstr "#%s No se encontraron elementos que coincidan para el elemento de raíz y la expresión XPath especificada"
|
1195 |
+
|
1196 |
+
#: models/import/record.php:533
|
1197 |
+
msgid "Deleted missing records %s for import #%s"
|
1198 |
+
msgstr ""
|
1199 |
+
|
1200 |
+
#: models/import/record.php:596
|
1201 |
+
msgid "Updating stock status for missing records %s for import #%s"
|
1202 |
+
msgstr ""
|
1203 |
+
|
1204 |
+
#: models/import/record.php:624
|
1205 |
+
msgid "import finished & cron un-triggered<br>%s %s created %s updated %s deleted %s skipped"
|
1206 |
+
msgstr "importación finalizada y cron no desencadenado<br>%s %s creada %s actualizada %s eliminada %s omitida"
|
1207 |
+
|
1208 |
+
#: models/import/record.php:657
|
1209 |
+
msgid "Records Processed %s. Records imported %s of %s."
|
1210 |
+
msgstr ""
|
1211 |
+
|
1212 |
+
#: models/import/record.php:676
|
1213 |
+
msgid "#%s source file not found"
|
1214 |
+
msgstr "#%s archivo de origen no encontrado"
|
1215 |
+
|
1216 |
+
#: models/import/record.php:729
|
1217 |
+
msgid "Composing titles..."
|
1218 |
+
msgstr "Escribiendo títulos..."
|
1219 |
+
|
1220 |
+
#: models/import/record.php:739
|
1221 |
+
msgid "Composing parent terms..."
|
1222 |
+
msgstr ""
|
1223 |
+
|
1224 |
+
#: models/import/record.php:748
|
1225 |
+
msgid "Composing terms slug..."
|
1226 |
+
msgstr ""
|
1227 |
+
|
1228 |
+
#: models/import/record.php:758
|
1229 |
+
msgid "Composing excerpts..."
|
1230 |
+
msgstr "Escribiendo extractos..."
|
1231 |
+
|
1232 |
+
#: models/import/record.php:769
|
1233 |
+
msgid "Composing statuses..."
|
1234 |
+
msgstr "Escribiendo estados...."
|
1235 |
+
|
1236 |
+
#: models/import/record.php:780
|
1237 |
+
msgid "Composing comment statuses..."
|
1238 |
+
msgstr "Escribiendo estados de comentarios...."
|
1239 |
+
|
1240 |
+
#: models/import/record.php:791
|
1241 |
+
msgid "Composing ping statuses..."
|
1242 |
+
msgstr "Escribiendo estados de ping..."
|
1243 |
+
|
1244 |
+
#: models/import/record.php:802
|
1245 |
+
msgid "Composing post formats..."
|
1246 |
+
msgstr "Escribiendo formatos de publicaciones..."
|
1247 |
+
|
1248 |
+
#: models/import/record.php:814
|
1249 |
+
msgid "Composing duplicate indicators..."
|
1250 |
+
msgstr ""
|
1251 |
+
|
1252 |
+
#: models/import/record.php:827
|
1253 |
+
msgid "Composing page templates..."
|
1254 |
+
msgstr "Escribiendo plantillas de páginas...."
|
1255 |
+
|
1256 |
+
#: models/import/record.php:838
|
1257 |
+
msgid "Composing post types..."
|
1258 |
+
msgstr "Escribiendo tipos de publicaciones..."
|
1259 |
+
|
1260 |
+
#: models/import/record.php:852
|
1261 |
+
msgid "Composing page parent..."
|
1262 |
+
msgstr "Escribiendo pagina padre..."
|
1263 |
+
|
1264 |
+
#: models/import/record.php:912
|
1265 |
+
msgid "Composing authors..."
|
1266 |
+
msgstr "Escribiendo autores...."
|
1267 |
+
|
1268 |
+
#: models/import/record.php:953
|
1269 |
+
msgid "Composing slugs..."
|
1270 |
+
msgstr "Escribiendo slug..."
|
1271 |
+
|
1272 |
+
#: models/import/record.php:962
|
1273 |
+
msgid "Composing menu order..."
|
1274 |
+
msgstr "Escribiendo orden de los menús..."
|
1275 |
+
|
1276 |
+
#: models/import/record.php:971
|
1277 |
+
msgid "Composing contents..."
|
1278 |
+
msgstr "Escribiendo contenidos..."
|
1279 |
+
|
1280 |
+
#: models/import/record.php:984
|
1281 |
+
msgid "Composing dates..."
|
1282 |
+
msgstr "Escribiendo fechas...."
|
1283 |
+
|
1284 |
+
#: models/import/record.php:992 models/import/record.php:1005
|
1285 |
+
#: models/import/record.php:1011
|
1286 |
+
msgid "<b>WARNING</b>: unrecognized date format `%s`, assigning current date"
|
1287 |
+
msgstr "<b>ADVERTENCIA</b>: formato de fecha no reconocido `%s`, asignando fecha actual"
|
1288 |
+
|
1289 |
+
#: models/import/record.php:1027
|
1290 |
+
msgid "Composing terms for `%s` taxonomy..."
|
1291 |
+
msgstr "Escribiendo termino para `%s` taxonomía..."
|
1292 |
+
|
1293 |
+
#: models/import/record.php:1239
|
1294 |
+
msgid "Composing custom parameters..."
|
1295 |
+
msgstr "Escribiendo parámetros personalizados..."
|
1296 |
+
|
1297 |
+
#: models/import/record.php:1346 models/import/record.php:1464
|
1298 |
+
msgid "<b>WARNING</b>"
|
1299 |
+
msgstr "<b>ADVERTENCIA</b>"
|
1300 |
+
|
1301 |
+
#: models/import/record.php:1347
|
1302 |
+
msgid "<b>WARNING</b>: No featured images will be created. Uploads folder is not found."
|
1303 |
+
msgstr "<b>ADVERTENCIA</b>: Ninguna imagen destaca será creada. Carpeta de cargas no ha sido encontrada."
|
1304 |
+
|
1305 |
+
#: models/import/record.php:1358
|
1306 |
+
msgid "Composing URLs for "
|
1307 |
+
msgstr ""
|
1308 |
+
|
1309 |
+
#: models/import/record.php:1389 models/import/record.php:1401
|
1310 |
+
#: models/import/record.php:1413 models/import/record.php:1425
|
1311 |
+
#: models/import/record.php:1437 models/import/record.php:1448
|
1312 |
+
msgid "Composing "
|
1313 |
+
msgstr ""
|
1314 |
+
|
1315 |
+
#: models/import/record.php:1465
|
1316 |
+
msgid "<b>WARNING</b>: No attachments will be created"
|
1317 |
+
msgstr "<b>ADVERTENCIA</b>: Ningún archivo adjunto será creado"
|
1318 |
+
|
1319 |
+
#: models/import/record.php:1468
|
1320 |
+
msgid "Composing URLs for attachments files..."
|
1321 |
+
msgstr "Escribiendo URLs para archivos adjuntos..."
|
1322 |
+
|
1323 |
+
#: models/import/record.php:1497
|
1324 |
+
msgid "Composing unique keys..."
|
1325 |
+
msgstr "Escribiendo claves únicas..."
|
1326 |
+
|
1327 |
+
#: models/import/record.php:1505
|
1328 |
+
msgid "Processing posts..."
|
1329 |
+
msgstr "Procesando entradas..."
|
1330 |
+
|
1331 |
+
#: models/import/record.php:1511
|
1332 |
+
msgid "Data parsing via add-ons..."
|
1333 |
+
msgstr "Análisis de datos vía add-ons..."
|
1334 |
+
|
1335 |
+
#: models/import/record.php:1554
|
1336 |
+
msgid "Calculate specified records to import..."
|
1337 |
+
msgstr "Calculando registros específicos para importar..."
|
1338 |
+
|
1339 |
+
#: models/import/record.php:1581
|
1340 |
+
msgid "---"
|
1341 |
+
msgstr "---"
|
1342 |
+
|
1343 |
+
#: models/import/record.php:1582
|
1344 |
+
msgid "Record #%s"
|
1345 |
+
msgstr "Registros #%s"
|
1346 |
+
|
1347 |
+
#: models/import/record.php:1589 models/import/record.php:1779
|
1348 |
+
msgid "<b>SKIPPED</b>: by specified records option"
|
1349 |
+
msgstr "<b>OMITIDO</b>: por opción de registro específicos "
|
1350 |
+
|
1351 |
+
#: models/import/record.php:1598
|
1352 |
+
msgid "<b>ACTION</b>: pmxi_before_post_import ..."
|
1353 |
+
msgstr "<b>ACCION</b>:pmxi_before_post_import ..."
|
1354 |
+
|
1355 |
+
#: models/import/record.php:1606
|
1356 |
+
msgid "<b>WARNING</b>: title is empty."
|
1357 |
+
msgstr "<b>WARNING</b>: titulo esta vacío."
|
1358 |
+
|
1359 |
+
#: models/import/record.php:1627
|
1360 |
+
msgid "Combine all data for user %s..."
|
1361 |
+
msgstr "Combinar toda la información para usuario %s..."
|
1362 |
+
|
1363 |
+
#: models/import/record.php:1647
|
1364 |
+
msgid "Combine all data for term %s..."
|
1365 |
+
msgstr ""
|
1366 |
+
|
1367 |
+
#: models/import/record.php:1665
|
1368 |
+
msgid "Combine all data for post `%s`..."
|
1369 |
+
msgstr "Combinar toda la información para entrada `%s`... "
|
1370 |
+
|
1371 |
+
#: models/import/record.php:1694
|
1372 |
+
msgid "Find corresponding article among previously imported for post `%s`..."
|
1373 |
+
msgstr "Encontrar artículo correspondiente entre las entradas previamente importadas `%s`..."
|
1374 |
+
|
1375 |
+
#: models/import/record.php:1702
|
1376 |
+
msgid "Duplicate post was found for post %s with unique key `%s`..."
|
1377 |
+
msgstr "Entrada duplicada fue encontrada para entrada %s con clave única `%s`..."
|
1378 |
+
|
1379 |
+
#: models/import/record.php:1716
|
1380 |
+
msgid "Duplicate post wasn't found with unique key `%s`..."
|
1381 |
+
msgstr "Entrada duplicada no fue encontrada con clave única `%s`..."
|
1382 |
+
|
1383 |
+
#: models/import/record.php:1730
|
1384 |
+
msgid "Find corresponding article among database for post `%s`..."
|
1385 |
+
msgstr "Encontrar articulo correspondiente entre la base de datos para entrada `%s`..."
|
1386 |
+
|
1387 |
+
#: models/import/record.php:1743
|
1388 |
+
msgid "Duplicate post was found for post `%s`..."
|
1389 |
+
msgstr "Entrada duplicada fue encontrada para entrada `%s`..."
|
1390 |
+
|
1391 |
+
#: models/import/record.php:1757
|
1392 |
+
msgid "Duplicate post wasn't found for post `%s`..."
|
1393 |
+
msgstr ""
|
1394 |
+
|
1395 |
+
#: models/import/record.php:1800
|
1396 |
+
msgid "<b>SKIPPED</b>: By filter wp_all_import_is_post_to_update `%s`"
|
1397 |
+
msgstr "<b>OMITIDO</b>: por filtro wp_all_import_is_post_to_update `%s`"
|
1398 |
+
|
1399 |
+
#: models/import/record.php:1817
|
1400 |
+
msgid "<b>SKIPPED</b>: Previously imported record found for `%s`"
|
1401 |
+
msgstr "<b>SKIPPED</b>: Registros previamente importados encontrados para `%s`"
|
1402 |
+
|
1403 |
+
#: models/import/record.php:1846
|
1404 |
+
msgid "Preserve description of already existing taxonomy term for `%s`"
|
1405 |
+
msgstr ""
|
1406 |
+
|
1407 |
+
#: models/import/record.php:1850
|
1408 |
+
msgid "Preserve name of already existing taxonomy term for `%s`"
|
1409 |
+
msgstr ""
|
1410 |
+
|
1411 |
+
#: models/import/record.php:1854
|
1412 |
+
msgid "Preserve slug of already existing taxonomy term for `%s`"
|
1413 |
+
msgstr ""
|
1414 |
+
|
1415 |
+
#: models/import/record.php:1862
|
1416 |
+
msgid "Preserve parent of already existing taxonomy term for `%s`"
|
1417 |
+
msgstr ""
|
1418 |
+
|
1419 |
+
#: models/import/record.php:1868
|
1420 |
+
msgid "Preserve taxonomies of already existing article for `%s`"
|
1421 |
+
msgstr "Conservar taxonomías para artículos actualmente existentes para `%s`"
|
1422 |
+
|
1423 |
+
#: models/import/record.php:1873
|
1424 |
+
msgid "<b>WARNING</b>: Unable to get current taxonomies for article #%d, updating with those read from XML file"
|
1425 |
+
msgstr "<b>ADVERTENCIA</b>: No se pudo obtener taxonomías actuales para artículo #%d, actualizando con la lectura del archivo XML"
|
1426 |
+
|
1427 |
+
#: models/import/record.php:1890
|
1428 |
+
msgid "Preserve date of already existing article for `%s`"
|
1429 |
+
msgstr "Conservar fecha de artículos existentes para `%s`"
|
1430 |
+
|
1431 |
+
#: models/import/record.php:1894
|
1432 |
+
msgid "Preserve status of already existing article for `%s`"
|
1433 |
+
msgstr "Conservar estado de artículos existentes para `%s`"
|
1434 |
+
|
1435 |
+
#: models/import/record.php:1898
|
1436 |
+
msgid "Preserve content of already existing article for `%s`"
|
1437 |
+
msgstr "Conservar contenido de artículos existentes para `%s`"
|
1438 |
+
|
1439 |
+
#: models/import/record.php:1902
|
1440 |
+
msgid "Preserve title of already existing article for `%s`"
|
1441 |
+
msgstr "Conservar títulos de artículos ya existentes para `%s`"
|
1442 |
+
|
1443 |
+
#: models/import/record.php:1906
|
1444 |
+
msgid "Preserve slug of already existing article for `%s`"
|
1445 |
+
msgstr "Conservar slug de artículos ya existentes para `%s`"
|
1446 |
+
|
1447 |
+
#: models/import/record.php:1926
|
1448 |
+
msgid "Preserve excerpt of already existing article for `%s`"
|
1449 |
+
msgstr "Conservar extracto de articulo ya existente para `%s`"
|
1450 |
+
|
1451 |
+
#: models/import/record.php:1930
|
1452 |
+
msgid "Preserve menu order of already existing article for `%s`"
|
1453 |
+
msgstr "Conservar orden de menus de artículos ya existentes para `%s`"
|
1454 |
+
|
1455 |
+
#: models/import/record.php:1934
|
1456 |
+
msgid "Preserve post parent of already existing article for `%s`"
|
1457 |
+
msgstr "Conservar entradas padres de artículos ya existentes para `%s`"
|
1458 |
+
|
1459 |
+
#: models/import/record.php:1938
|
1460 |
+
msgid "Preserve post type of already existing article for `%s`"
|
1461 |
+
msgstr ""
|
1462 |
+
|
1463 |
+
#: models/import/record.php:1942
|
1464 |
+
msgid "Preserve comment status of already existing article for `%s`"
|
1465 |
+
msgstr ""
|
1466 |
+
|
1467 |
+
#: models/import/record.php:1946
|
1468 |
+
msgid "Preserve post author of already existing article for `%s`"
|
1469 |
+
msgstr "Conservar autor de entradas de artículos ya existentes para `%s`"
|
1470 |
+
|
1471 |
+
#: models/import/record.php:1962 models/import/record.php:1981
|
1472 |
+
msgid "Deleting images for `%s`"
|
1473 |
+
msgstr "Eliminando imágenes para `%s`"
|
1474 |
+
|
1475 |
+
#: models/import/record.php:1976
|
1476 |
+
msgid "Deleting attachments for `%s`"
|
1477 |
+
msgstr "Eliminando archivos adjuntos para `%s`"
|
1478 |
+
|
1479 |
+
#: models/import/record.php:2004
|
1480 |
+
msgid "Applying filter `pmxi_article_data` for `%s`"
|
1481 |
+
msgstr "Aplicando filtro `pmxi_article_data` para `%s`"
|
1482 |
+
|
1483 |
+
#: models/import/record.php:2012
|
1484 |
+
msgid "<b>SKIPPED</b>: by do not create new posts option."
|
1485 |
+
msgstr "<b>OMITIDO</b>: por no crear opción de nuevas entradas."
|
1486 |
+
|
1487 |
+
#: models/import/record.php:2084
|
1488 |
+
msgid "<b>WARNING</b>: Unable to create cloaked link for %s"
|
1489 |
+
msgstr "<b>ADVERTENCIA</b>: No se ha podido crear enlace encubierto para %s"
|
1490 |
+
|
1491 |
+
#: models/import/record.php:2111
|
1492 |
+
msgid "<b>SKIPPED</b>: By filter wp_all_import_is_post_to_create `%s`"
|
1493 |
+
msgstr ""
|
1494 |
+
|
1495 |
+
#: models/import/record.php:2122
|
1496 |
+
msgid "<b>ERROR</b> Sorry, that email address `%s` is already used!"
|
1497 |
+
msgstr ""
|
1498 |
+
|
1499 |
+
#: models/import/record.php:2132 models/import/record.php:2162
|
1500 |
+
msgid "<b>CREATING</b> `%s` `%s`"
|
1501 |
+
msgstr "<b>CREANDO</b> `%s` `%s`"
|
1502 |
+
|
1503 |
+
#: models/import/record.php:2135 models/import/record.php:2165
|
1504 |
+
msgid "<b>UPDATING</b> `%s` `%s`"
|
1505 |
+
msgstr "<b>ACTUALIZANDO</b> `%s` `%s`"
|
1506 |
+
|
1507 |
+
#: models/import/record.php:2148 models/import/record.php:2173
|
1508 |
+
#: models/import/record.php:2178 models/import/record.php:3369
|
1509 |
+
msgid "<b>ERROR</b>"
|
1510 |
+
msgstr "<b>ERROR</b>"
|
1511 |
+
|
1512 |
+
#: models/import/record.php:2201
|
1513 |
+
msgid "Associate post `%s` with current import ..."
|
1514 |
+
msgstr "Entradas asociadas `%s` con el importe actual..."
|
1515 |
+
|
1516 |
+
#: models/import/record.php:2207
|
1517 |
+
msgid "Associate post `%s` with post format %s ..."
|
1518 |
+
msgstr "Entradas asociadas `%s` con el formato de la entrada `%s`..."
|
1519 |
+
|
1520 |
+
#: models/import/record.php:2219
|
1521 |
+
msgid "<b>CUSTOM FIELDS:</b>"
|
1522 |
+
msgstr "<b>CAMPOS PERSONALIZADOS:</b>"
|
1523 |
+
|
1524 |
+
#: models/import/record.php:2267
|
1525 |
+
msgid "- Custom field %s has been deleted for `%s` attempted to `update all custom fields` setting ..."
|
1526 |
+
msgstr "- Campo personalizado %s ha sido eliminado para `%s` intentando configurar `actualizar todos los campos personalizados` ..."
|
1527 |
+
|
1528 |
+
#: models/import/record.php:2285
|
1529 |
+
msgid "- Custom field %s has been deleted for `%s` attempted to `update only these custom fields: %s, leave rest alone` setting ..."
|
1530 |
+
msgstr "- Campo personalizado %s ha sido eliminado para `%s` intentando configurar `actualizar solo estos campos personalizados: %s, dejar el resto igual` ...."
|
1531 |
+
|
1532 |
+
#: models/import/record.php:2304
|
1533 |
+
msgid "- Custom field %s has been deleted for `%s` attempted to `leave these fields alone: %s, update all other Custom Fields` setting ..."
|
1534 |
+
msgstr "- Campo personalizado %s ha sido eliminado para`%s` intentando configurar `dejar estos campos si editar: %s, actualizar todos los otros campos personalizados` ..."
|
1535 |
+
|
1536 |
+
#: models/import/record.php:2374
|
1537 |
+
msgid "- Custom field `%s` has been skipped attempted to record matching options ..."
|
1538 |
+
msgstr "- Campo personalizado `%s` ha sido omitido intentando guarda opciones que coindicen ..."
|
1539 |
+
|
1540 |
+
#: models/import/record.php:2382
|
1541 |
+
msgid "- <b>ACTION</b>: pmxi_custom_field"
|
1542 |
+
msgstr "- <b>ACCION</b>: pmxi_custom_field"
|
1543 |
+
|
1544 |
+
#: models/import/record.php:2421
|
1545 |
+
msgid "- Custom field `%s` has been updated with value `%s` for post `%s` ..."
|
1546 |
+
msgstr "-Campo personalizado '%s' se ha actualizado con valor de '%s' para entrada '%s'..."
|
1547 |
+
|
1548 |
+
#: models/import/record.php:2422
|
1549 |
+
msgid "- <b>ACTION</b>: pmxi_update_post_meta"
|
1550 |
+
msgstr "- <b>ACCION</b>: pmxi_update_post_meta"
|
1551 |
+
|
1552 |
+
#: models/import/record.php:2462
|
1553 |
+
msgid "<b>IMAGES:</b>"
|
1554 |
+
msgstr "<b>IMAGENES:</b>"
|
1555 |
+
|
1556 |
+
#: models/import/record.php:2466
|
1557 |
+
msgid "<b>ERROR</b>: Target directory %s is not writable"
|
1558 |
+
msgstr "<b>ERROR</b>: Directorio de destino %s no es modificable"
|
1559 |
+
|
1560 |
+
#: models/import/record.php:2495
|
1561 |
+
msgid "- Keep existing and add newest images ..."
|
1562 |
+
msgstr "- Mantener existentes y agregar imágenes mas nuevas ..."
|
1563 |
+
|
1564 |
+
#: models/import/record.php:2581
|
1565 |
+
msgid "- Importing image `%s` for `%s` ..."
|
1566 |
+
msgstr "- Importando imagen `%s` para `%s` ..."
|
1567 |
+
|
1568 |
+
#: models/import/record.php:2610 models/import/record.php:2688
|
1569 |
+
msgid "- <b>WARNING</b>: Image %s not found in media gallery."
|
1570 |
+
msgstr ""
|
1571 |
+
|
1572 |
+
#: models/import/record.php:2614 models/import/record.php:2692
|
1573 |
+
msgid "- Using existing image `%s` for post `%s` ..."
|
1574 |
+
msgstr ""
|
1575 |
+
|
1576 |
+
#: models/import/record.php:2625
|
1577 |
+
msgid "- found base64_encoded image"
|
1578 |
+
msgstr "- imagen base64_encoded encontrada"
|
1579 |
+
|
1580 |
+
#: models/import/record.php:2899
|
1581 |
+
msgid "- <b>ACTION</b>: "
|
1582 |
+
msgstr ""
|
1583 |
+
|
1584 |
+
#: models/import/record.php:2928
|
1585 |
+
msgid "- Attachment has been successfully updated for image `%s`"
|
1586 |
+
msgstr ""
|
1587 |
+
|
1588 |
+
#: models/import/record.php:2946
|
1589 |
+
msgid "- Post `%s` saved as Draft, because no images are downloaded successfully"
|
1590 |
+
msgstr "- Entrada `%s` guardada como borrador por que ninguna imagen ha sido descargada satisfactoriamente"
|
1591 |
+
|
1592 |
+
#: models/import/record.php:2955
|
1593 |
+
msgid "Post `%s` saved as Draft, because no images are downloaded successfully"
|
1594 |
+
msgstr "Entrada `%s` guardada como borrador por que ninguna imagen ha sido descargada satisfactoriamente"
|
1595 |
+
|
1596 |
+
#: models/import/record.php:2994
|
1597 |
+
msgid "Images import skipped for post `%s` according to 'pmxi_is_images_to_update' filter..."
|
1598 |
+
msgstr ""
|
1599 |
+
|
1600 |
+
#: models/import/record.php:3006
|
1601 |
+
msgid "<b>ATTACHMENTS:</b>"
|
1602 |
+
msgstr "<b>ARCHIVOS ADJUNTOS:</b>"
|
1603 |
+
|
1604 |
+
#: models/import/record.php:3009
|
1605 |
+
msgid "- <b>ERROR</b>: Target directory %s is not writable"
|
1606 |
+
msgstr "- <b>ERROR</b>: Directorio de destino %s no es modificable"
|
1607 |
+
|
1608 |
+
#: models/import/record.php:3018
|
1609 |
+
msgid "- Importing attachments for `%s` ..."
|
1610 |
+
msgstr "- Importando archivos adjuntos para `%s` ..."
|
1611 |
+
|
1612 |
+
#: models/import/record.php:3043
|
1613 |
+
msgid "- Using existing file `%s` for post `%s` ..."
|
1614 |
+
msgstr ""
|
1615 |
+
|
1616 |
+
#: models/import/record.php:3052
|
1617 |
+
msgid "- Filename for attachment was generated as %s"
|
1618 |
+
msgstr "- El nombre del archivo para archivo adjunto fue generado como %s"
|
1619 |
+
|
1620 |
+
#: models/import/record.php:3059
|
1621 |
+
msgid "- <b>WARNING</b>: Attachment file %s cannot be saved locally as %s"
|
1622 |
+
msgstr "- <b>ADVERTENCIA</b>: Archivo adjunto %s no puede ser guardado localmente como %s"
|
1623 |
+
|
1624 |
+
#: models/import/record.php:3060
|
1625 |
+
msgid "- <b>WP Error</b>: %s"
|
1626 |
+
msgstr "- <b>Error WP</b>: %s"
|
1627 |
+
|
1628 |
+
#: models/import/record.php:3074
|
1629 |
+
msgid "- File %s has been successfully downloaded"
|
1630 |
+
msgstr "- Archivo %s ha sido descargado satisfactoriamente"
|
1631 |
+
|
1632 |
+
#: models/import/record.php:3090
|
1633 |
+
msgid "- Attachment has been successfully created for post `%s`"
|
1634 |
+
msgstr "- Archivo adjunto ha sido creado satisfactoriamente para entrada `%s`"
|
1635 |
+
|
1636 |
+
#: models/import/record.php:3091 models/import/record.php:3116
|
1637 |
+
msgid "- <b>ACTION</b>: pmxi_attachment_uploaded"
|
1638 |
+
msgstr "- <b>ACCION</b>: pmxi_attachment_uploaded"
|
1639 |
+
|
1640 |
+
#: models/import/record.php:3110
|
1641 |
+
msgid "- Attachment has been successfully updated for file `%s`"
|
1642 |
+
msgstr ""
|
1643 |
+
|
1644 |
+
#: models/import/record.php:3114
|
1645 |
+
msgid "- Attachment has been successfully created for file `%s`"
|
1646 |
+
msgstr ""
|
1647 |
+
|
1648 |
+
#: models/import/record.php:3127
|
1649 |
+
msgid "Attachments import skipped for post `%s` according to 'pmxi_is_attachments_to_update' filter..."
|
1650 |
+
msgstr ""
|
1651 |
+
|
1652 |
+
#: models/import/record.php:3134
|
1653 |
+
msgid "<b>TAXONOMIES:</b>"
|
1654 |
+
msgstr "<b>TAXONOMIAS:</b>"
|
1655 |
+
|
1656 |
+
#: models/import/record.php:3143
|
1657 |
+
msgid "- Importing taxonomy `%s` ..."
|
1658 |
+
msgstr "- Importando taxonomía `%s` ..."
|
1659 |
+
|
1660 |
+
#: models/import/record.php:3146
|
1661 |
+
msgid "- Auto-nest enabled with separator `%s` ..."
|
1662 |
+
msgstr "- Auto-nido habilitado con separador `%s` ..."
|
1663 |
+
|
1664 |
+
#: models/import/record.php:3152
|
1665 |
+
msgid "- %s %s `%s` has been skipped attempted to `Leave these taxonomies alone, update all others`..."
|
1666 |
+
msgstr "- %s %s `%s` ha sido omitido intentando `Dejar estas taxonomías sin tocas, actualiza todas las demas`..."
|
1667 |
+
|
1668 |
+
#: models/import/record.php:3157
|
1669 |
+
msgid "- %s %s `%s` has been skipped attempted to `Update only these taxonomies, leave the rest alone`..."
|
1670 |
+
msgstr "- %s %s `%s` ha sido omitido intentando `Actualizar solo estas taxonomias, dejar el resto sin tocar`..."
|
1671 |
+
|
1672 |
+
#: models/import/record.php:3196
|
1673 |
+
msgid "- Creating parent %s %s `%s` ..."
|
1674 |
+
msgstr "- Creando padre %s %s `%s` ..."
|
1675 |
+
|
1676 |
+
#: models/import/record.php:3199
|
1677 |
+
msgid "- Creating child %s %s for %s named `%s` ..."
|
1678 |
+
msgstr "- Creando hijo %s %s para %s llamado `%s` ..."
|
1679 |
+
|
1680 |
+
#: models/import/record.php:3206
|
1681 |
+
msgid "- <b>WARNING</b>: `%s`"
|
1682 |
+
msgstr "- <b>ADVERTENCIA</b>: `%s`"
|
1683 |
+
|
1684 |
+
#: models/import/record.php:3227
|
1685 |
+
msgid "- Attempted to create parent %s %s `%s`, duplicate detected. Importing %s to existing `%s` %s, ID %d, slug `%s` ..."
|
1686 |
+
msgstr "- Intentando crear padre %s %s `%s`, duplicado detectado. Importando %s a un existente `%s` %s, ID %d, slug `%s` ..."
|
1687 |
+
|
1688 |
+
#: models/import/record.php:3230
|
1689 |
+
msgid "- Attempted to create child %s %s `%s`, duplicate detected. Importing %s to existing `%s` %s, ID %d, slug `%s` ..."
|
1690 |
+
msgstr "- Intentando crear hijo %s %s `%s`, duplicado encontrado. Importando %s a un existente `%s` %s, ID %d, slug `%s` ..."
|
1691 |
+
|
1692 |
+
#: models/import/record.php:3245
|
1693 |
+
msgid "- %s %s `%s` has been skipped attempted to `Do not update Taxonomies (incl. Categories and Tags)`..."
|
1694 |
+
msgstr "- %s %s `%s` ha sido omitido intento para `No actualizar Taxonomías (incl. Categorias and Etiquetas)`..."
|
1695 |
+
|
1696 |
+
#: models/import/record.php:3264
|
1697 |
+
msgid "<b>CREATED</b> `%s` `%s` (ID: %s)"
|
1698 |
+
msgstr "<b>CREADO</b> `%s` `%s` (ID: %s)"
|
1699 |
+
|
1700 |
+
#: models/import/record.php:3266
|
1701 |
+
msgid "<b>UPDATED</b> `%s` `%s` (ID: %s)"
|
1702 |
+
msgstr "<b>ACTUALIZADO</b> `%s` `%s` (ID: %s)"
|
1703 |
+
|
1704 |
+
#: models/import/record.php:3309
|
1705 |
+
msgid "<b>ACTION</b>: pmxi_saved_post"
|
1706 |
+
msgstr "<b>ACCION</b>: pmxi_saved_post"
|
1707 |
+
|
1708 |
+
#: models/import/record.php:3316
|
1709 |
+
msgid "<span class=\"processing_info\"><span class=\"created_count\">%s</span><span class=\"updated_count\">%s</span><span class=\"percents_count\">%s</span></span>"
|
1710 |
+
msgstr "<span class=\"processing_info\"><span class=\"created_count\">%s</span><span class=\"updated_count\">%
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|